diff --git a/examples/mano_hand_retargeter/README.md b/examples/mano_hand_retargeter/README.md new file mode 100644 index 000000000..e2cbd1560 --- /dev/null +++ b/examples/mano_hand_retargeter/README.md @@ -0,0 +1,190 @@ +# MANO Hand Retargeting + +## Setup + +```bash +./scripts/setup_venv_isaac.sh +source venv_isaac/bin/activate +``` + +The pinned dependency list is in `requirements-venv_isaac.txt`. + + +Set your IsaacLab checkout path (needed for replay scripts that launch Isaac Sim via `isaaclab.sh`): + +```bash +export ISAACLAB_PATH=/home/lduan/Documents/IsaacLab +``` + +Work from this directory: + +```bash +cd examples/mano_hand_retargeter/ +``` + +## 1) Export OpenXR-26 joints (no global translation/orientation) + +```bash +python export_openxr26_from_world_results.py \ + --world_results ./hand_reconstruction_results/meta_776_30fps_000300_world_results.npz \ + --out_dir ./outputs/retarget_meta/openxr26_single_hand_zero_global \ + --zero_global \ + --split_by_handedness +``` + +Outputs: +- `./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz` +- `./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz` + +## 2) Find optimized input hand rotation (grid search) + +Empirically best rotations: +- **Right**: `0,-90,0` +- **Left**: `0,90,0` + +Right-hand grid search: + +```bash +python3 retarget_openxr26_with_g1_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz \ + --output ./outputs/retarget_meta/openxr26_single_hand_zero_global/g1_cmds_right \ + --left-hand-urdf ./_DATA/G1_left_hand.urdf \ + --right-hand-urdf ./_DATA/G1_right_hand.urdf \ + --grid-search-rot \ + --grid-hand right \ + --grid-step 10 \ + --grid-pivot wrist \ + --grid-out-dir ./outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right \ + --grid-topk-viz 5 \ + --seq-track 0 +``` + +Left-hand grid search: + +```bash +python3 retarget_openxr26_with_g1_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz \ + --output ./outputs/retarget_meta/openxr26_single_hand_zero_global/g1_cmds_left \ + --left-hand-urdf ./_DATA/G1_left_hand.urdf \ + --right-hand-urdf ./_DATA/G1_right_hand.urdf \ + --grid-search-rot \ + --grid-hand left \ + --grid-step 10 \ + --grid-pivot wrist \ + --grid-out-dir ./outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left \ + --grid-topk-viz 5 \ + --seq-track 0 +``` + +## 3) Apply rotation and retarget (save trajectory NPZ) + +Left hand: + +```bash +python3 retarget_openxr26_with_g1_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz \ + --output ./outputs/retarget_meta/openxr26_single_hand_zero_global/g1_cmds_left \ + --left-hand-urdf ./_DATA/G1_left_hand.urdf \ + --right-hand-urdf ./_DATA/G1_right_hand.urdf \ + --single-hand left \ + --apply-rot 0,90,0 \ + --apply-rot-hand left \ + --apply-rot-pivot wrist \ + --seq-track 0 \ + --save-traj-npz ./outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz +``` + +Right hand: + +```bash +python3 retarget_openxr26_with_g1_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz \ + --output ./outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right \ + --left-hand-urdf ./_DATA/G1_left_hand.urdf \ + --right-hand-urdf ./_DATA/G1_right_hand.urdf \ + --single-hand right \ + --apply-rot 0,-90,0 \ + --apply-rot-hand right \ + --apply-rot-pivot wrist \ + --seq-track 0 \ + --save-traj-npz ./outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz +``` + +## 4) Replay robot hand (no world trajectory) + +Isaac Sim/Kit can be sensitive to pickled object arrays in `.npz`. Convert the saved trajectories to a no-pickle format: + +```bash +python convert_traj_npz_no_pickle.py \ + --in ./outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz \ + --out ./outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot_nopickle.npz \ +&& \ +python convert_traj_npz_no_pickle.py \ + --in ./outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz \ + --out ./outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot_nopickle.npz +``` + +Replay: + +```bash +../../scripts/run_hand_retarget_no_global.sh +``` + +## 5) Apply world orientation + translation to the trajectories + +Left: + +```bash +python apply_world_pose_to_traj_npz.py \ + --traj_npz_in ./outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz \ + --traj_npz_out ./outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz \ + --world_results ./hand_reconstruction_results/meta_776_30fps_000300_world_results.npz \ + --hand left \ + --split_npz ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz \ + --seq_track 0 \ + --apply_to both \ + --to_isaac_world \ + --pre_rot 0,0,0 +``` + +Right: + +```bash +python apply_world_pose_to_traj_npz.py \ + --traj_npz_in ./outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz \ + --traj_npz_out ./outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz \ + --world_results ./hand_reconstruction_results/meta_776_30fps_000300_world_results.npz \ + --hand right \ + --split_npz ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz \ + --seq_track 0 \ + --apply_to both \ + --to_isaac_world \ + --pre_rot 0,0,0 +``` + +## 6) Replay robot hand (with world trajectory) + +Convert to no-pickle: + +```bash +python convert_traj_npz_no_pickle.py \ + --in ./outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz \ + --out ./outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ +&& \ +python convert_traj_npz_no_pickle.py \ + --in ./outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz \ + --out ./outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz +``` + +Replay: + +```bash +../../scripts/run_hand_retarget_global.sh +``` + +Replay with object: + +```bash +../../scripts/run_hand_retarget_global_with_object.sh +``` + diff --git a/examples/mano_hand_retargeter/README_Sharpa.md b/examples/mano_hand_retargeter/README_Sharpa.md new file mode 100644 index 000000000..aff79fdf1 --- /dev/null +++ b/examples/mano_hand_retargeter/README_Sharpa.md @@ -0,0 +1,191 @@ +# MANO Hand Retargeting + +## Setup + +```bash +./scripts/setup_venv_isaac.sh +source venv_isaac/bin/activate +``` + +The pinned dependency list is in `requirements-venv_isaac.txt`. + + +Set your IsaacLab checkout path (needed for replay scripts that launch Isaac Sim via `isaaclab.sh`): + +```bash +export ISAACLAB_PATH=/home/lduan/Documents/IsaacLab +``` + +Work from this directory: + +```bash +cd examples/mano_hand_retargeter/ +``` + +## 1) Export OpenXR-26 joints (no global translation/orientation) + +```bash +python export_openxr26_from_world_results.py \ + --world_results ./hand_reconstruction_results/meta_776_30fps_000300_world_results.npz \ + --out_dir ./outputs/retarget_meta/openxr26_single_hand_zero_global \ + --zero_global \ + --split_by_handedness +``` + +Outputs: +- `./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz` +- `./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz` + +## 2) Find optimized input hand rotation (grid search) + +Empirically best rotations: +- **Right**: `-180,-180,0` +- **Left**: `-180,0,0` + +Right-hand grid search: + +```bash +python3 retarget_openxr26_with_sharpa_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz \ + --output ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/sharpa_cmds_right \ + --left-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf \ + --right-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf \ + --grid-search-rot \ + --grid-hand right \ + --grid-step 10 \ + --grid-pivot wrist \ + --grid-out-dir ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_sharpa_right \ + --grid-topk-viz 5 \ + --seq-track 0 +``` + +Left-hand grid search: + +```bash +python3 retarget_openxr26_with_sharpa_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz \ + --output ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/sharpa_cmds_left \ + --left-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf \ + --right-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf \ + --grid-search-rot \ + --grid-hand left \ + --grid-step 10 \ + --grid-pivot wrist \ + --grid-out-dir ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_sharpa_left \ + --grid-topk-viz 5 \ + --seq-track 0 +``` + +## 3) Apply rotation and retarget (save trajectory NPZ) + +Left hand: + +```bash +python3 retarget_openxr26_with_sharpa_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz \ + --output ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/sharpa_cmds_left \ + --left-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf \ + --right-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf \ + --single-hand left \ + --apply-rot=-180,0,0 \ + --apply-rot-hand left \ + --apply-rot-pivot wrist \ + --seq-track 0 \ + --save-traj-npz ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz +``` + +Right hand: + +```bash +python3 retarget_openxr26_with_sharpa_upper_body.py \ + --input ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz \ + --output ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/sharpa_cmds_right \ + --left-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf \ + --right-hand-urdf ./_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf \ + --single-hand right \ + --apply-rot=-180,-180,0 \ + --apply-rot-hand right \ + --apply-rot-pivot wrist \ + --seq-track 0 \ + --save-traj-npz ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz +``` + +## 4) Replay robot hand (no world trajectory) + +Isaac Sim/Kit can be sensitive to pickled object arrays in `.npz`. Convert the saved trajectories to a no-pickle format: + +```bash +python convert_traj_npz_no_pickle.py \ + --in ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz \ + --out ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot_nopickle.npz \ +&& \ +python convert_traj_npz_no_pickle.py \ + --in ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz \ + --out ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot_nopickle.npz +``` + +Replay: + +```bash +../../scripts/run_sharpa_hand_retarget_no_global.sh +``` + +## 5) Apply world orientation + translation to the trajectories + +Left: + +```bash +python apply_world_pose_to_traj_npz.py \ + --traj_npz_in ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz \ + --traj_npz_out ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz \ + --world_results ./hand_reconstruction_results/meta_776_30fps_000300_world_results.npz \ + --hand left \ + --split_npz ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz \ + --seq_track 0 \ + --apply_to both \ + --to_isaac_world \ + --pre_rot 180,0,90 +``` + +Right: + +```bash +python apply_world_pose_to_traj_npz.py \ + --traj_npz_in ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz \ + --traj_npz_out ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz \ + --world_results ./hand_reconstruction_results/meta_776_30fps_000300_world_results.npz \ + --hand right \ + --split_npz ./outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz \ + --seq_track 0 \ + --apply_to both \ + --to_isaac_world \ + --pre_rot=-180,0,90 +``` + +## 6) Replay robot hand (with world trajectory) + +Convert to no-pickle: + +```bash +python convert_traj_npz_no_pickle.py \ + --in ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz \ + --out ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ +&& \ +python convert_traj_npz_no_pickle.py \ + --in ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz \ + --out ./outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz +``` + +Replay: + +```bash +../../scripts/run_sharpa_hand_retarget_global.sh +``` + +Replay with object: + +```bash +../../scripts/run_sharpa_hand_retarget_global_with_object.sh +``` + + diff --git a/examples/mano_hand_retargeter/_DATA/G1_left_hand.urdf b/examples/mano_hand_retargeter/_DATA/G1_left_hand.urdf new file mode 100644 index 000000000..4e066b054 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/G1_left_hand.urdf @@ -0,0 +1,443 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/G1_right_hand.urdf b/examples/mano_hand_retargeter/_DATA/G1_right_hand.urdf new file mode 100644 index 000000000..f3d87cce7 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/G1_right_hand.urdf @@ -0,0 +1,443 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/MUJOCO_LOG.TXT b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/MUJOCO_LOG.TXT new file mode 100644 index 000000000..a58f7a62a --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/MUJOCO_LOG.TXT @@ -0,0 +1,3 @@ +Fri Dec 5 15:38:54 2025 +WARNING: Read error while reading 'src' + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/README.md b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/README.md new file mode 100644 index 000000000..573df8da9 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/README.md @@ -0,0 +1,34 @@ +# Sharpa HA4 Hand URDF and XML Files + +## Model Description + +1. All model files under the `meshes` folder are simplified versions. If you need to modify the models for use, please contact lei.su@sharpa.com. +2. Each fingertip has three coordinate frames: + - `XXX_DP` frame: satisfies the MDH convention, + - `XXX_elastomer` frame: used for tactile sensors, + - `XXX_fingertip` frame: used for IK fingertip position annotation. + Please choose according to your needs. + +## Dynamics Parameter Description + +### Isaac Lab Dynamics +1. The dynamics parameters for Isaac Lab have already been configured in the USD files. You can directly use `IdealPDActuator` with both `stiffness` and `damping` set to `None`. +2. The calibration method uses simulated trajectories to align with the trajectories of the real hardware. + +### XML Parameter Description +1. Currently, `armature`, `frictionloss`, `actuatorfrcrange`, and `damping` are set based on Isaac Gym calibration results. These may not be fully accurate for dynamics and will be refined in future work. +2. For rigid body collision parameters, everything is set to default except for the fingertip elastomer, which has a modified `solref` to make it softer and more elastic. Please contact lei.su@sharpa.com if you notice any issues. +3. MuJoCo dynamics parameters have not yet been calibrated. If you need to use them, you can temporarily use the Isaac Lab version. + +## RViz Instructions +1. Install ROS 2 and RViz2. +2. In the `HA4_URDF_XML` folder, run: + +```bash +colcon build +source install/setup.bash +ros2 launch left_sharpa_ha4 display.launch.py # View left hand URDF in RViz +ros2 launch right_sharpa_ha4 display.launch.py # View right hand URDF in RViz +``` + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/dual_hand.usda b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/dual_hand.usda new file mode 100644 index 000000000..0122f758c --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/dual_hand.usda @@ -0,0 +1,689 @@ +#usda 1.0 +( + customLayerData = { + dictionary cameraSettings = { + dictionary Front = { + double3 position = (5, 0, 0) + double radius = 5 + } + dictionary Perspective = { + double3 position = (0.6485985731789655, 0.6485985731789683, 0.6485986770392166) + double3 target = (-3.978038420893171e-8, -3.9780381433374146e-8, 7.95607677517296e-8) + } + dictionary Right = { + double3 position = (0, -5, 0) + double radius = 5 + } + dictionary Top = { + double3 position = (0, 0, 5) + double radius = 5 + } + string boundCamera = "/OmniverseKit_Persp" + } + dictionary omni_layer = { + string authoring_layer = "./dual_hand.usda" + dictionary locked = { + } + dictionary muteness = { + } + } + dictionary renderSettings = { + } + } + defaultPrim = "World" + endTimeCode = 1000000 + metersPerUnit = 1 + startTimeCode = 0 + timeCodesPerSecond = 60 + upAxis = "Z" +) + +def Xform "World" +{ + def "left_sharpa_ha4_test" ( + prepend references = @./left_sharpa_ha4/left_sharpa_ha4_test.usda@ + ) + { + string isaac:namespace ( + displayName = "Namespace" + doc = "Namespace of the prim in Isaac Sim" + ) + quatd xformOp:orient = (1, 0, 0, 0) + double3 xformOp:scale = (1, 1, 1) + double3 xformOp:translate = (0, -0.23619005616541736, 0) + uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] + + over "left_hand_C_MC" + { + } + + over "left_index_MCP_VL" + { + } + + over "left_index_PP" + { + } + + over "left_index_MP" + { + } + + over "left_index_DP" + { + } + + over "left_index_elastomer" + { + } + + over "left_index_fingertip" + { + } + + over "left_middle_MCP_VL" + { + } + + over "left_middle_PP" + { + } + + over "left_middle_MP" + { + } + + over "left_middle_DP" + { + } + + over "left_middle_elastomer" + { + } + + over "left_middle_fingertip" + { + } + + over "left_pinky_MC" + { + } + + over "left_pinky_MCP_VL" + { + } + + over "left_pinky_PP" + { + } + + over "left_pinky_MP" + { + } + + over "left_pinky_DP" + { + } + + over "left_pinky_elastomer" + { + } + + over "left_pinky_fingertip" + { + } + + over "left_ring_MCP_VL" + { + } + + over "left_ring_PP" + { + } + + over "left_ring_MP" + { + } + + over "left_ring_DP" + { + } + + over "left_ring_elastomer" + { + } + + over "left_ring_fingertip" + { + } + + over "left_thumb_CMC_VL" + { + } + + over "left_thumb_MC" + { + } + + over "left_thumb_MCP_VL" + { + } + + over "left_thumb_PP" + { + } + + over "left_thumb_DP" + { + } + + over "left_thumb_elastomer" + { + } + + over "left_thumb_fingertip" + { + } + + over "joints" + { + over "left_index_MCP_FE" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_MCP_FE" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_CMC" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_MCP_FE" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_CMC_FE" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_index_MCP_AA" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_MCP_AA" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_MCP_FE" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_MCP_AA" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_CMC_AA" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_index_PIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_PIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_MCP_AA" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_PIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_MCP_FE" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_index_DIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_DIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_PIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_DIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_MCP_AA" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_DIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_IP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + } + } + + def "right_sharpa_ha4_test" ( + prepend references = @./right_sharpa_ha4/right_sharpa_ha4_test.usda@ + ) + { + string isaac:namespace ( + displayName = "Namespace" + doc = "Namespace of the prim in Isaac Sim" + ) + quatd xformOp:orient = (1, 0, 0, 0) + double3 xformOp:scale = (1, 1, 1) + double3 xformOp:translate = (0, 0.1510222006489751, 0) + uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] + + over "right_hand_C_MC" + { + } + + over "right_index_MCP_VL" + { + } + + over "right_index_PP" + { + } + + over "right_index_MP" + { + } + + over "right_index_DP" + { + } + + over "right_index_elastomer" + { + } + + over "right_index_fingertip" + { + } + + over "right_middle_MCP_VL" + { + } + + over "right_middle_PP" + { + } + + over "right_middle_MP" + { + } + + over "right_middle_DP" + { + } + + over "right_middle_elastomer" + { + } + + over "right_middle_fingertip" + { + } + + over "right_pinky_MC" + { + } + + over "right_pinky_MCP_VL" + { + } + + over "right_pinky_PP" + { + } + + over "right_pinky_MP" + { + } + + over "right_pinky_DP" + { + } + + over "right_pinky_elastomer" + { + } + + over "right_pinky_fingertip" + { + } + + over "right_ring_MCP_VL" + { + } + + over "right_ring_PP" + { + } + + over "right_ring_MP" + { + } + + over "right_ring_DP" + { + } + + over "right_ring_elastomer" + { + } + + over "right_ring_fingertip" + { + } + + over "right_thumb_CMC_VL" + { + } + + over "right_thumb_MC" + { + } + + over "right_thumb_MCP_VL" + { + } + + over "right_thumb_PP" + { + } + + over "right_thumb_DP" + { + } + + over "right_thumb_elastomer" + { + } + + over "right_thumb_fingertip" + { + } + + over "joints" + { + over "right_index_MCP_FE" + { + float state:angular:physics:position = -3.800001 + float state:angular:physics:velocity = 0 + } + + over "right_middle_MCP_FE" + { + float state:angular:physics:position = 3.5000002 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_CMC" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_MCP_FE" + { + float state:angular:physics:position = 8.700001 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_CMC_FE" + { + float state:angular:physics:position = 33.099102 + float state:angular:physics:velocity = 0 + } + + over "right_index_MCP_AA" + { + float state:angular:physics:position = -4.399983 + float state:angular:physics:velocity = 0 + } + + over "right_middle_MCP_AA" + { + float state:angular:physics:position = 1.1539258e-10 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_MCP_FE" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_MCP_AA" + { + float state:angular:physics:position = -3.5627862e-11 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_CMC_AA" + { + float state:angular:physics:position = -0.49843994 + float state:angular:physics:velocity = 0 + } + + over "right_index_PIP" + { + float state:angular:physics:position = -9.034831e-8 + float state:angular:physics:velocity = 0 + } + + over "right_middle_PIP" + { + float state:angular:physics:position = 4.7883027e-8 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_MCP_AA" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_PIP" + { + float state:angular:physics:position = 1.7674981e-7 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_MCP_FE" + { + float state:angular:physics:position = -5.699822 + float state:angular:physics:velocity = 0 + } + + over "right_index_DIP" + { + float state:angular:physics:position = -1.01797416e-13 + float state:angular:physics:velocity = 0 + } + + over "right_middle_DIP" + { + float state:angular:physics:position = 2.6441964e-13 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_PIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_DIP" + { + float state:angular:physics:position = 7.3598766e-13 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_MCP_AA" + { + float state:angular:physics:position = -0.093833774 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_DIP" + { + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_IP" + { + float state:angular:physics:position = 34.20038 + float state:angular:physics:velocity = 0 + } + } + } +} + +def Xform "Environment" +{ + quatd xformOp:orient = (1, 0, 0, 0) + double3 xformOp:scale = (1, 1, 1) + double3 xformOp:translate = (0, 0, 0) + uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] + + def DistantLight "defaultLight" ( + prepend apiSchemas = ["ShapingAPI"] + ) + { + float inputs:angle = 1 + float inputs:intensity = 3000 + float inputs:shaping:cone:angle = 180 + float inputs:shaping:cone:softness + float inputs:shaping:focus + color3f inputs:shaping:focusTint + asset inputs:shaping:ies:file + quatd xformOp:orient = (0.6532814824381883, 0.2705980500730985, 0.27059805007309845, 0.6532814824381882) + double3 xformOp:scale = (1, 1, 1) + double3 xformOp:translate = (0, 0, 0) + uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] + } +} + +def "Render" ( + hide_in_stage_window = true + no_delete = true +) +{ + def "OmniverseKit" + { + def "HydraTextures" ( + hide_in_stage_window = true + no_delete = true + ) + { + def RenderProduct "omni_kit_widget_viewport_ViewportTexture_0" ( + prepend apiSchemas = ["OmniRtxSettingsCommonAdvancedAPI_1", "OmniRtxSettingsRtAdvancedAPI_1", "OmniRtxSettingsPtAdvancedAPI_1", "OmniRtxPostColorGradingAPI_1", "OmniRtxPostChromaticAberrationAPI_1", "OmniRtxPostBloomPhysicalAPI_1", "OmniRtxPostMatteObjectAPI_1", "OmniRtxPostCompositingAPI_1", "OmniRtxPostDofAPI_1", "OmniRtxPostMotionBlurAPI_1", "OmniRtxPostTvNoiseAPI_1", "OmniRtxPostTonemapIrayReinhardAPI_1", "OmniRtxPostDebugSettingsAPI_1", "OmniRtxDebugSettingsAPI_1"] + hide_in_stage_window = true + no_delete = true + ) + { + rel camera = + token omni:rtx:background:source:texture:textureMode = "repeatMirrored" + token omni:rtx:background:source:type = "domeLight" + string omni:rtx:material:db:rtSensorNameToIdMap = "DefaultMaterial:0;AsphaltStandardMaterial:1;AsphaltWeatheredMaterial:2;VegetationGrassMaterial:3;WaterStandardMaterial:4;GlassStandardMaterial:5;FiberGlassMaterial:6;MetalAlloyMaterial:7;MetalAluminumMaterial:8;MetalAluminumOxidizedMaterial:9;PlasticStandardMaterial:10;RetroMarkingsMaterial:11;RetroSignMaterial:12;RubberStandardMaterial:13;SoilClayMaterial:14;ConcreteRoughMaterial:15;ConcreteSmoothMaterial:16;OakTreeBarkMaterial:17;FabricStandardMaterial:18;PlexiGlassStandardMaterial:19;MetalSilverMaterial:20" + bool omni:rtx:post:registeredCompositing:invertColorCorrection = 1 + bool omni:rtx:post:registeredCompositing:invertToneMap = 1 + bool omni:rtx:pt:lightcache:cached:dontResolveConflicts = 1 + int omni:rtx:pt:maxSamplesPerLaunch = 2073600 + int omni:rtx:pt:mgpu:maxPixelsPerRegionExponent = 12 + color3f omni:rtx:rt:ambientLight:color = (0.1, 0.1, 0.1) + bool omni:rtx:rt:demoire = 0 + bool omni:rtx:rt:ecoMode:enabled + bool omni:rtx:rt:lightcache:spatialCache:dontResolveConflicts = 1 + uint omni:rtx:viewTile:limit = 4294967295 + rel orderedVars = + custom bool overrideClipRange = 0 + uniform int2 resolution = (1280, 720) + } + } + } + + def RenderSettings "OmniverseGlobalRenderSettings" ( + prepend apiSchemas = ["OmniRtxSettingsGlobalRtAdvancedAPI_1", "OmniRtxSettingsGlobalPtAdvancedAPI_1"] + no_delete = true + ) + { + rel products = + } + + def "Vars" + { + def RenderVar "LdrColor" ( + hide_in_stage_window = true + no_delete = true + ) + { + uniform string sourceName = "LdrColor" + } + } +} + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/CMakeLists.txt b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/CMakeLists.txt new file mode 100644 index 000000000..abf3fc1f3 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 3.5) +project(left_sharpa_ha4) + +find_package(ament_cmake REQUIRED) + +# Install resource directories +foreach(dir config launch meshes) + install(DIRECTORY ${dir}/ + DESTINATION share/${PROJECT_NAME}/${dir}) +endforeach() + +install(FILES + "left_sharpa_ha4_v2_1.urdf" + "left_sharpa_ha4_v2_1.xml" + DESTINATION share/${PROJECT_NAME} +) + +ament_package() diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/_wrapper_sharpa_with_ball.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/_wrapper_sharpa_with_ball.xml new file mode 100644 index 000000000..b9f95e392 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/_wrapper_sharpa_with_ball.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/joint_names_Left_Sharpa_HA4.yaml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/joint_names_Left_Sharpa_HA4.yaml new file mode 100644 index 000000000..33ced50a2 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/joint_names_Left_Sharpa_HA4.yaml @@ -0,0 +1 @@ +controller_joint_names: ['', 'left_thumb_CMC_FE', 'left_thumb_CMC_AA', 'left_thumb_MCP_FE', 'left_thumb_MCP_AA', 'left_thumb_IP', 'left_index_MCP_FE', 'left_index_MCP_AA', 'left_index_PIP', 'left_index_DIP', 'left_middle_MCP_FE', 'left_middle_MCP_AA', 'left_middle_PIP', 'left_middle_DIP', 'left_ring_MCP_FE', 'left_ring_MCP_AA', 'left_ring_PIP', 'left_ring_DIP', 'left_pinky_CMC', 'left_pinky_MCP_FE', 'left_pinky_MCP_AA', 'left_pinky_PIP', 'left_pinky_DIP', ] diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/sharpa.rviz b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/sharpa.rviz new file mode 100644 index 000000000..93e63448b --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/sharpa.rviz @@ -0,0 +1,88 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /RobotModel1 + Splitter Ratio: 0.5 + Tree Height: 539 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 +Toolbars: + toolButtonStyle: 2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Class: rviz_default_plugins/RobotModel + Description File: "" + Description Source: Topic + Description Topic: + Value: /robot_description + Enabled: true + Name: RobotModel + Value: true + Visual Enabled: true + - Alpha: 1 + Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + Marker Scale: 0.2 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: False + Tree: + {} + Update Interval: 0 + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: left_hand_C_MC + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 2.7338 + Focal Point: + X: 0.11 + Y: 0.02 + Z: 0.0 + Name: Current View + Near Clip Distance: 0.01 + Pitch: 0.479797 + Target Frame: + Value: Orbit (rviz) + Yaw: 4.71239 diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/display.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/display.launch.py new file mode 100644 index 000000000..56c4838b3 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/display.launch.py @@ -0,0 +1,49 @@ +from launch import LaunchDescription +from launch_ros.actions import Node +from launch.substitutions import LaunchConfiguration +from launch.actions import DeclareLaunchArgument +from ament_index_python.packages import get_package_share_directory +import os + +def generate_launch_description(): + # Get package path + pkg_share = get_package_share_directory('left_sharpa_ha4') # <-- rename to your ROS2 package name + + # Launch arguments + gui_arg = DeclareLaunchArgument( + 'gui', + default_value='false', + description='Flag to enable joint_state_publisher_gui' + ) + + # URDF file + urdf_file = os.path.join(pkg_share, 'left_sharpa_ha4_v2_1.urdf') + + # Nodes + joint_state_publisher_node = Node( + package='joint_state_publisher_gui', + executable='joint_state_publisher_gui', + name='joint_state_publisher_gui', + condition=None, # could use IfCondition(LaunchConfiguration('gui')) + ) + + robot_state_publisher_node = Node( + package='robot_state_publisher', + executable='robot_state_publisher', + name='robot_state_publisher', + parameters=[{'robot_description': open(urdf_file).read()}] + ) + + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz2', + arguments=['-d', os.path.join(pkg_share, 'config/sharpa.rviz')] + ) + + return LaunchDescription([ + gui_arg, + joint_state_publisher_node, + robot_state_publisher_node, + rviz_node + ]) diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/gazebo.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/gazebo.launch.py new file mode 100644 index 000000000..7417e053b --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/gazebo.launch.py @@ -0,0 +1,37 @@ +from launch import LaunchDescription +from launch_ros.actions import Node +from ament_index_python.packages import get_package_share_directory +import os + +def generate_launch_description(): + pkg_share = get_package_share_directory('left_sharpa_ha4') # <-- match your ROS2 package name + urdf_file = os.path.join(pkg_share, 'left_sharpa_ha4_v2_1.urdf') + + return LaunchDescription([ + # Start Gazebo empty world + Node( + package='gazebo_ros', + executable='gazebo', + output='screen', + arguments=['-s', 'libgazebo_ros_factory.so'] + ), + + # Static transform base_link -> base_footprint + Node( + package='tf2_ros', + executable='static_transform_publisher', + arguments=['0', '0', '0', '0', '0', '0', 'base_link', 'base_footprint'] + ), + + # Spawn URDF model into Gazebo + Node( + package='gazebo_ros', + executable='spawn_entity.py', + arguments=['-file', urdf_file, '-entity', 'Left_Sharpa_HA4'], + output='screen' + ) + + # ROS2 doesn’t really have a built-in launch equivalent for: + # rostopic pub /calibrated std_msgs/Bool true + # If you still need that, you’d create a small Python node to publish it. + ]) diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_overlay.usda b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_overlay.usda new file mode 100644 index 000000000..3f908c293 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_overlay.usda @@ -0,0 +1,1404 @@ +#usda 1.0 +( + customLayerData = { + dictionary cameraSettings = { + dictionary Front = { + double3 position = (5, 0, 0) + double radius = 5 + } + dictionary Perspective = { + double3 position = (0.3642364258154257, 0.18295400341906148, 0.28166772313460614) + double3 target = (-0.03366031396867497, -0.03429448972587143, 0.06761431336145654) + } + dictionary Right = { + double3 position = (0, -5, 0) + double radius = 5 + } + dictionary Top = { + double3 position = (0, 0, 5) + double radius = 5 + } + string boundCamera = "/OmniverseKit_Persp" + } + dictionary omni_layer = { + string authoring_layer = "./left_sharpa_ha4_overlay.usda" + dictionary locked = { + } + dictionary muteness = { + } + } + dictionary renderSettings = { + } + } + defaultPrim = "Left_Sharpa_HA4" + endTimeCode = 1000000 + metersPerUnit = 1 + startTimeCode = 0 + timeCodesPerSecond = 60 + upAxis = "Z" +) + +def "Render" ( + hide_in_stage_window = true + no_delete = true +) +{ + def "OmniverseKit" + { + def "HydraTextures" ( + hide_in_stage_window = true + no_delete = true + ) + { + def RenderProduct "omni_kit_widget_viewport_ViewportTexture_0" ( + prepend apiSchemas = ["OmniRtxSettingsCommonAdvancedAPI_1", "OmniRtxSettingsRtAdvancedAPI_1", "OmniRtxSettingsPtAdvancedAPI_1", "OmniRtxPostColorGradingAPI_1", "OmniRtxPostChromaticAberrationAPI_1", "OmniRtxPostBloomPhysicalAPI_1", "OmniRtxPostMatteObjectAPI_1", "OmniRtxPostCompositingAPI_1", "OmniRtxPostDofAPI_1", "OmniRtxPostMotionBlurAPI_1", "OmniRtxPostTvNoiseAPI_1", "OmniRtxPostTonemapIrayReinhardAPI_1", "OmniRtxPostDebugSettingsAPI_1", "OmniRtxDebugSettingsAPI_1"] + hide_in_stage_window = true + no_delete = true + ) + { + rel camera = + token omni:rtx:background:source:texture:textureMode = "repeatMirrored" + token omni:rtx:background:source:type = "domeLight" + bool omni:rtx:dlss:frameGeneration = 0 + string omni:rtx:material:db:rtSensorNameToIdMap = "DefaultMaterial:0;AsphaltStandardMaterial:1;AsphaltWeatheredMaterial:2;VegetationGrassMaterial:3;WaterStandardMaterial:4;GlassStandardMaterial:5;FiberGlassMaterial:6;MetalAlloyMaterial:7;MetalAluminumMaterial:8;MetalAluminumOxidizedMaterial:9;PlasticStandardMaterial:10;RetroMarkingsMaterial:11;RetroSignMaterial:12;RubberStandardMaterial:13;SoilClayMaterial:14;ConcreteRoughMaterial:15;ConcreteSmoothMaterial:16;OakTreeBarkMaterial:17;FabricStandardMaterial:18;PlexiGlassStandardMaterial:19;MetalSilverMaterial:20" + bool omni:rtx:material:db:syncLoads = 1 + bool omni:rtx:post:registeredCompositing:invertColorCorrection = 1 + bool omni:rtx:post:registeredCompositing:invertToneMap = 1 + bool omni:rtx:pt:lightcache:cached:dontResolveConflicts = 1 + int omni:rtx:pt:maxSamplesPerLaunch = 2073600 + int omni:rtx:pt:mgpu:maxPixelsPerRegionExponent = 12 + color3f omni:rtx:rt:ambientLight:color = (0.1, 0.1, 0.1) + bool omni:rtx:rt:demoire = 0 + bool omni:rtx:rt:ecoMode:enabled + bool omni:rtx:rt:lightcache:spatialCache:dontResolveConflicts = 1 + bool omni:rtx:scene:hydra:materialSyncLoads = 1 + bool omni:rtx:scene:hydra:mdlMaterialWarmup = 1 + uint omni:rtx:viewTile:limit = 4294967295 + rel orderedVars = + custom bool overrideClipRange = 0 + uniform int2 resolution = (1280, 720) + } + } + } + + def RenderSettings "OmniverseGlobalRenderSettings" ( + prepend apiSchemas = ["OmniRtxSettingsGlobalRtAdvancedAPI_1", "OmniRtxSettingsGlobalPtAdvancedAPI_1"] + no_delete = true + ) + { + rel products = + } + + def "Vars" + { + def RenderVar "LdrColor" ( + hide_in_stage_window = true + no_delete = true + ) + { + uniform string sourceName = "LdrColor" + } + } +} + +over "Left_Sharpa_HA4" ( + prepend apiSchemas = ["PhysicsArticulationRootAPI", "PhysxArticulationAPI"] + prepend references = @./left_sharpa_ha4_v2_1/left_sharpa_ha4_v2_1.usd@ +) +{ + string isaac:namespace ( + displayName = "Namespace" + doc = "Namespace of the prim in Isaac Sim" + ) + + over "root_joint" ( + delete apiSchemas = ["PhysicsArticulationRootAPI", "PhysxArticulationAPI"] + ) + { + } + + over "left_hand_C_MC" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = [ + , + , + , + , + , + ] + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_hand_C_MC" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_index_MCP_VL" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_index_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_middle_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_pinky_MC" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_pinky_MC" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_pinky_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = [ + , + , + ] + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_ring_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_thumb_MC" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = [ + , + , + ] + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_thumb_MC" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_thumb_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:filteredPairs = + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_thumb_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + def OmniGraph "ActionGraph" + { + token evaluationMode = "Automatic" + token evaluator:type = "execution" + token fabricCacheBacking = "Shared" + int2 fileFormatVersion = (1, 9) + token pipelineStage = "pipelineStageSimulation" + + def OmniGraphNode "ros2_publish_joint_state" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + custom uint64 inputs:context + custom uint inputs:execIn ( + customData = { + bool isExecution = 1 + } + ) + prepend uint inputs:execIn.connect = + custom string inputs:nodeNamespace + custom string inputs:qosProfile + custom uint64 inputs:queueSize + custom rel inputs:targetPrim = ( + customData = { + dictionary omni = { + dictionary graph = { + string relType = "target" + } + } + } + ) + custom double inputs:timeStamp + prepend double inputs:timeStamp.connect = + custom string inputs:topicName = "/isaacsim/left_sharpa_ha4_joint_states" + token node:type = "isaacsim.ros2.bridge.ROS2PublishJointState" + int node:typeVersion = 1 + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (699, 157) + } + + def OmniGraphNode "ros2_subscribe_joint_state" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + custom uint64 inputs:context + custom uint inputs:execIn ( + customData = { + bool isExecution = 1 + } + ) + prepend uint inputs:execIn.connect = + custom string inputs:nodeNamespace + custom string inputs:qosProfile + custom uint64 inputs:queueSize + custom string inputs:topicName = "/isaacsim/left_sharpa_ha4_joint_actions" + token node:type = "isaacsim.ros2.bridge.ROS2SubscribeJointState" + int node:typeVersion = 2 + custom double[] outputs:effortCommand + custom uint outputs:execOut ( + customData = { + bool isExecution = 1 + } + ) + custom token[] outputs:jointNames + custom double[] outputs:positionCommand + custom double outputs:timeStamp + custom double[] outputs:velocityCommand + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (389, 506) + } + + def OmniGraphNode "on_tick" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + custom uint inputs:framePeriod = 1 + custom bool inputs:onlyPlayback + token node:type = "omni.graph.action.OnTick" + int node:typeVersion = 2 + custom double outputs:absoluteSimTime + custom double outputs:deltaSeconds + custom double outputs:frame + custom bool outputs:isPlaying + custom uint outputs:tick ( + customData = { + bool isExecution = 1 + } + ) + custom double outputs:time + custom double outputs:timeSinceStart + custom double state:accumulatedSeconds + custom uint state:frameCount + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (283.9323, 169.43248) + } + + def OmniGraphNode "articulation_controller" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + custom double[] inputs:effortCommand + prepend double[] inputs:effortCommand.connect = + custom uint inputs:execIn ( + customData = { + bool isExecution = 1 + } + ) + prepend uint inputs:execIn.connect = + custom int[] inputs:jointIndices + custom token[] inputs:jointNames + prepend token[] inputs:jointNames.connect = + custom double[] inputs:positionCommand + prepend double[] inputs:positionCommand.connect = + custom string inputs:robotPath + custom rel inputs:targetPrim = ( + customData = { + dictionary omni = { + dictionary graph = { + string relType = "target" + } + } + } + ) + custom double[] inputs:velocityCommand + prepend double[] inputs:velocityCommand.connect = + token node:type = "isaacsim.core.nodes.IsaacArticulationController" + int node:typeVersion = 1 + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (781, 497) + } + + def OmniGraphNode "on_playback_tick" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + token node:type = "omni.graph.action.OnPlaybackTick" + int node:typeVersion = 2 + custom double outputs:deltaSeconds + custom double outputs:frame + custom uint outputs:tick ( + customData = { + bool isExecution = 1 + } + ) + custom double outputs:time + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (119.9443, 632.9849) + } + } + + over "left_index_MP" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_index_DP" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_index_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_index_fingertip" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "left_middle_MCP_VL" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_middle_MP" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_middle_DP" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_middle_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_middle_fingertip" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "left_pinky_MCP_VL" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_pinky_MP" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_pinky_DP" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_pinky_elastomer" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_pinky_fingertip" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "left_ring_MCP_VL" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_ring_MP" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_ring_DP" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_ring_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_ring_fingertip" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "left_thumb_CMC_VL" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "left_thumb_MCP_VL" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "left_thumb_DP" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "left_thumb_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_thumb_elastomer" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "thumb_elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "left_thumb_fingertip" + { + rel physics:simulationOwner + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "joints" + { + over "left_index_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + float drive:angular:physics:targetPosition = 17 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_CMC" + { + float drive:angular:physics:damping = 6.85E-4 + float drive:angular:physics:stiffness = 0.02409 + float physics:lowerLimit = 0 + float physics:upperLimit = 15.000033 + float physxJoint:armature = 0.00012 + float physxJoint:jointFriction = 0.013 + float physxJoint:maxJointVelocity = 2009.6014 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_CMC_FE" + { + float drive:angular:physics:damping = 4.206E-3 + float drive:angular:physics:stiffness = 0.12138 + float drive:angular:physics:targetPosition = -10 + float physics:lowerLimit = -9.998114 + float physics:upperLimit = 110.00216 + float physxJoint:armature = 0.0032 + float physxJoint:jointFriction = 0.132 + float physxJoint:maxJointVelocity = 678.426 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_index_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_CMC_AA" + { + float drive:angular:physics:damping = 7.8826E-3 + float drive:angular:physics:stiffness = 0.2304 + float drive:angular:physics:targetPosition = 20 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.0032 + float physxJoint:jointFriction = 0.132 + float physxJoint:maxJointVelocity = 678.426 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_index_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + float physics:lowerLimit = -30.000067 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_index_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_middle_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_ring_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_pinky_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "left_thumb_IP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + float physics:lowerLimit = 0 + float physics:upperLimit = 100 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + } +} + +def PhysicsScene "physicsScene" ( + prepend apiSchemas = ["PhysxSceneAPI"] +) +{ +} + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf new file mode 100644 index 000000000..7a14b6b83 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf @@ -0,0 +1,1449 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.xml new file mode 100644 index 000000000..235fc6468 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.xml @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_base.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_base.usd new file mode 100644 index 000000000..e6d064609 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_base.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_physics.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_physics.usd new file mode 100644 index 000000000..e1c23acf9 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_physics.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_robot.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_robot.usd new file mode 100644 index 000000000..255fc2408 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_robot.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_sensor.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_sensor.usd new file mode 100644 index 000000000..abd7eb5a5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/left_sharpa_ha4_v2_1_sensor.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/left_sharpa_ha4_v2_1.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/left_sharpa_ha4_v2_1.usd new file mode 100644 index 000000000..b735790a0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/left_sharpa_ha4_v2_1.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/MCP_VL.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/MCP_VL.STL new file mode 100644 index 000000000..f94f1cb77 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/MCP_VL.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/elastomer.STL new file mode 100644 index 000000000..dd464b71f Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/elastomer_surface.STL new file mode 100644 index 000000000..e9d6713d5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_DP.STL new file mode 100644 index 000000000..2cad29773 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_DP_visual.STL new file mode 100644 index 000000000..41714d322 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MCP_VL_visual.STL new file mode 100644 index 000000000..fec8facc6 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MP.STL new file mode 100644 index 000000000..56eaa1ed6 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MP_visual.STL new file mode 100644 index 000000000..c03a7768e Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_MP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_PP.STL new file mode 100644 index 000000000..9305c67c5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_PP_visual.STL new file mode 100644 index 000000000..dc8ce85f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_hand_C_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_hand_C_MC.STL new file mode 100644 index 000000000..9e972ff92 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_hand_C_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_hand_C_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_hand_C_MC_visual.STL new file mode 100644 index 000000000..c11c14617 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_hand_C_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_pinky_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_pinky_MC.STL new file mode 100644 index 000000000..5959485f2 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_pinky_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_pinky_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_pinky_MC_visual.STL new file mode 100644 index 000000000..5cffb6f75 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_pinky_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_CMC_VL.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_CMC_VL.STL new file mode 100644 index 000000000..34c051e67 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_CMC_VL.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_DP.STL new file mode 100644 index 000000000..ee856b86e Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_DP_visual.STL new file mode 100644 index 000000000..025636087 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MC.STL new file mode 100644 index 000000000..785b7486f Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MCP_VL_visual.STL new file mode 100644 index 000000000..6e9c0ed18 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MC_visual.STL new file mode 100644 index 000000000..7beb79bd5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_PP.STL new file mode 100644 index 000000000..48125faa5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_PP_visual.STL new file mode 100644 index 000000000..7416f3476 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/left_thumb_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/thumb_elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/thumb_elastomer.STL new file mode 100644 index 000000000..49d59beb5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/thumb_elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/thumb_elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/thumb_elastomer_surface.STL new file mode 100644 index 000000000..9afcb28d8 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/thumb_elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/package.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/package.xml new file mode 100644 index 000000000..67c9075d8 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/package.xml @@ -0,0 +1,29 @@ + + + left_sharpa_ha4 + 1.0.0 + + URDF Description package for HA4.0-R-version5-0808. + This package contains configuration data, 3D models, and launch files + for HA4.0-R-version5-0808 robot. + + + TODO + TODO + BSD + + + ament_cmake + + + robot_state_publisher + rviz2 + joint_state_publisher_gui + gazebo_ros + + + + ament_cmake + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/CMakeLists.txt b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/CMakeLists.txt new file mode 100644 index 000000000..48b325122 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 3.5) +project(right_sharpa_ha4) + +find_package(ament_cmake REQUIRED) + +# Install resource directories +foreach(dir config launch meshes) + install(DIRECTORY ${dir}/ + DESTINATION share/${PROJECT_NAME}/${dir}) +endforeach() + +install(FILES + "right_sharpa_ha4_v2_1.urdf" + "right_sharpa_ha4_v2_1.xml" + DESTINATION share/${PROJECT_NAME} +) + +ament_package() diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/_wrapper_sharpa_with_ball.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/_wrapper_sharpa_with_ball.xml new file mode 100644 index 000000000..120057b99 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/_wrapper_sharpa_with_ball.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/joint_names_Right_Sharpa_HA4.yaml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/joint_names_Right_Sharpa_HA4.yaml new file mode 100644 index 000000000..e510e3449 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/joint_names_Right_Sharpa_HA4.yaml @@ -0,0 +1 @@ +controller_joint_names: ['', 'right_thumb_CMC_FE', 'right_thumb_CMC_AA', 'right_thumb_MCP_FE', 'right_thumb_MCP_AA', 'right_thumb_IP', 'right_index_MCP_FE', 'right_index_MCP_AA', 'right_index_PIP', 'right_index_DIP', 'right_middle_MCP_FE', 'right_middle_MCP_AA', 'right_middle_PIP', 'right_middle_DIP', 'right_ring_MCP_FE', 'right_ring_MCP_AA', 'right_ring_PIP', 'right_ring_DIP', 'right_pinky_CMC', 'right_pinky_MCP_FE', 'right_pinky_MCP_AA', 'right_pinky_PIP', 'right_pinky_DIP', ] diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/sharpa.rviz b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/sharpa.rviz new file mode 100644 index 000000000..558a6f98e --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/sharpa.rviz @@ -0,0 +1,88 @@ +Panels: + - Class: rviz_common/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /RobotModel1 + Splitter Ratio: 0.5 + Tree Height: 539 + - Class: rviz_common/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 +Toolbars: + toolButtonStyle: 2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Class: rviz_default_plugins/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 10 + Reference Frame: + Value: true + - Class: rviz_default_plugins/RobotModel + Description File: "" + Description Source: Topic + Description Topic: + Value: /robot_description + Enabled: true + Name: RobotModel + Value: true + Visual Enabled: true + - Alpha: 1 + Class: rviz_default_plugins/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + Marker Scale: 0.2 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: False + Tree: + {} + Update Interval: 0 + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: right_hand_C_MC + Frame Rate: 30 + Name: root + Tools: + - Class: rviz_default_plugins/Interact + Hide Inactive Objects: true + - Class: rviz_default_plugins/MoveCamera + - Class: rviz_default_plugins/Select + Value: true + Views: + Current: + Class: rviz_default_plugins/Orbit + Distance: 2.7338 + Focal Point: + X: 0.11 + Y: 0.02 + Z: 0.0 + Name: Current View + Near Clip Distance: 0.01 + Pitch: 0.479797 + Target Frame: + Value: Orbit (rviz) + Yaw: 4.71239 diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/display.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/display.launch.py new file mode 100644 index 000000000..3460aae58 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/display.launch.py @@ -0,0 +1,49 @@ +from launch import LaunchDescription +from launch_ros.actions import Node +from launch.substitutions import LaunchConfiguration +from launch.actions import DeclareLaunchArgument +from ament_index_python.packages import get_package_share_directory +import os + +def generate_launch_description(): + # Get package path + pkg_share = get_package_share_directory('right_sharpa_ha4') # <-- rename to your ROS2 package name + + # Launch arguments + gui_arg = DeclareLaunchArgument( + 'gui', + default_value='false', + description='Flag to enable joint_state_publisher_gui' + ) + + # URDF file + urdf_file = os.path.join(pkg_share, 'right_sharpa_ha4_v2_1.urdf') + + # Nodes + joint_state_publisher_node = Node( + package='joint_state_publisher_gui', + executable='joint_state_publisher_gui', + name='joint_state_publisher_gui', + condition=None, # could use IfCondition(LaunchConfiguration('gui')) + ) + + robot_state_publisher_node = Node( + package='robot_state_publisher', + executable='robot_state_publisher', + name='robot_state_publisher', + parameters=[{'robot_description': open(urdf_file).read()}] + ) + + rviz_node = Node( + package='rviz2', + executable='rviz2', + name='rviz2', + arguments=['-d', os.path.join(pkg_share, 'config/sharpa.rviz')] + ) + + return LaunchDescription([ + gui_arg, + joint_state_publisher_node, + robot_state_publisher_node, + rviz_node + ]) diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/gazebo.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/gazebo.launch.py new file mode 100644 index 000000000..f0dd2064e --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/gazebo.launch.py @@ -0,0 +1,37 @@ +from launch import LaunchDescription +from launch_ros.actions import Node +from ament_index_python.packages import get_package_share_directory +import os + +def generate_launch_description(): + pkg_share = get_package_share_directory('right_sharpa_ha4') # <-- match your ROS2 package name + urdf_file = os.path.join(pkg_share, 'right_sharpa_ha4_v2_1.urdf') + + return LaunchDescription([ + # Start Gazebo empty world + Node( + package='gazebo_ros', + executable='gazebo', + output='screen', + arguments=['-s', 'libgazebo_ros_factory.so'] + ), + + # Static transform base_link -> base_footprint + Node( + package='tf2_ros', + executable='static_transform_publisher', + arguments=['0', '0', '0', '0', '0', '0', 'base_link', 'base_footprint'] + ), + + # Spawn URDF model into Gazebo + Node( + package='gazebo_ros', + executable='spawn_entity.py', + arguments=['-file', urdf_file, '-entity', 'Right_Sharpa_HA4'], + output='screen' + ) + + # ROS2 doesn’t really have a built-in launch equivalent for: + # rostopic pub /calibrated std_msgs/Bool true + # If you still need that, you’d create a small Python node to publish it. + ]) diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/MCP_VL.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/MCP_VL.STL new file mode 100644 index 000000000..d12d9f345 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/MCP_VL.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/elastomer.STL new file mode 100644 index 000000000..dd464b71f Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/elastomer_surface.STL new file mode 100644 index 000000000..e9d6713d5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_DP.STL new file mode 100644 index 000000000..2cad29773 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_DP_visual.STL new file mode 100644 index 000000000..41714d322 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MCP_VL_visual.STL new file mode 100644 index 000000000..6c296133e Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MP.STL new file mode 100644 index 000000000..0f4ac46c6 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MP_visual.STL new file mode 100644 index 000000000..d17763d61 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_MP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_PP.STL new file mode 100644 index 000000000..81016f8f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_PP_visual.STL new file mode 100644 index 000000000..4e391ee4c Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_hand_C_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_hand_C_MC.STL new file mode 100644 index 000000000..53b224a1f Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_hand_C_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_hand_C_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_hand_C_MC_visual.STL new file mode 100644 index 000000000..70399fb5f Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_hand_C_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_pinky_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_pinky_MC.STL new file mode 100644 index 000000000..a0476b816 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_pinky_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_pinky_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_pinky_MC_visual.STL new file mode 100644 index 000000000..abaa67a72 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_pinky_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_CMC_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_CMC_VL_visual.STL new file mode 100644 index 000000000..14b2d3bc5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_CMC_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_DP.STL new file mode 100644 index 000000000..ee856b86e Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_DP_visual.STL new file mode 100644 index 000000000..025636087 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MC.STL new file mode 100644 index 000000000..df77b3a89 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MCP_VL_visual.STL new file mode 100644 index 000000000..5a4fbb3e9 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MC_visual.STL new file mode 100644 index 000000000..86b5e87de Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_PP.STL new file mode 100644 index 000000000..47a58f188 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_PP_visual.STL new file mode 100644 index 000000000..a0054c2c2 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/right_thumb_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/thumb_elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/thumb_elastomer.STL new file mode 100644 index 000000000..49d59beb5 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/thumb_elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/thumb_elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/thumb_elastomer_surface.STL new file mode 100644 index 000000000..9afcb28d8 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/thumb_elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/package.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/package.xml new file mode 100644 index 000000000..1e8f22536 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/package.xml @@ -0,0 +1,29 @@ + + + right_sharpa_ha4 + 1.0.0 + + URDF Description package for HA4.0-R-version5-0808. + This package contains configuration data, 3D models, and launch files + for HA4.0-R-version5-0808 robot. + + + TODO + TODO + BSD + + + ament_cmake + + + robot_state_publisher + rviz2 + joint_state_publisher_gui + gazebo_ros + + + + ament_cmake + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_overlay.usda b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_overlay.usda new file mode 100644 index 000000000..e6c878118 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_overlay.usda @@ -0,0 +1,1638 @@ +#usda 1.0 +( + customLayerData = { + dictionary cameraSettings = { + dictionary Front = { + double3 position = (5, 0, 0) + double radius = 5 + } + dictionary Perspective = { + double3 position = (0.4645072518352042, 0.08642932307878715, 0.3199192101670027) + double3 target = (-0.09247662130247108, -0.07681331044695835, 0.037344566395135836) + } + dictionary Right = { + double3 position = (0, -5, 0) + double radius = 5 + } + dictionary Top = { + double3 position = (0, 0, 5) + double radius = 5 + } + string boundCamera = "/OmniverseKit_Persp" + } + dictionary omni_layer = { + string authoring_layer = "./right_sharpa_ha4_overlay.usda" + dictionary locked = { + } + dictionary muteness = { + } + } + dictionary renderSettings = { + } + } + defaultPrim = "Right_Sharpa_HA4" + endTimeCode = 1000000 + metersPerUnit = 1 + startTimeCode = 0 + timeCodesPerSecond = 60 + upAxis = "Z" +) + +def "Render" ( + hide_in_stage_window = true + no_delete = true +) +{ + def "OmniverseKit" + { + def "HydraTextures" ( + hide_in_stage_window = true + no_delete = true + ) + { + def RenderProduct "omni_kit_widget_viewport_ViewportTexture_0" ( + prepend apiSchemas = ["OmniRtxSettingsCommonAdvancedAPI_1", "OmniRtxSettingsRtAdvancedAPI_1", "OmniRtxSettingsPtAdvancedAPI_1", "OmniRtxPostColorGradingAPI_1", "OmniRtxPostChromaticAberrationAPI_1", "OmniRtxPostBloomPhysicalAPI_1", "OmniRtxPostMatteObjectAPI_1", "OmniRtxPostCompositingAPI_1", "OmniRtxPostDofAPI_1", "OmniRtxPostMotionBlurAPI_1", "OmniRtxPostTvNoiseAPI_1", "OmniRtxPostTonemapIrayReinhardAPI_1", "OmniRtxPostDebugSettingsAPI_1", "OmniRtxDebugSettingsAPI_1"] + hide_in_stage_window = true + no_delete = true + ) + { + rel camera = + token omni:rtx:background:source:texture:textureMode = "repeatMirrored" + token omni:rtx:background:source:type = "domeLight" + string omni:rtx:material:db:rtSensorNameToIdMap = "DefaultMaterial:0;AsphaltStandardMaterial:1;AsphaltWeatheredMaterial:2;VegetationGrassMaterial:3;WaterStandardMaterial:4;GlassStandardMaterial:5;FiberGlassMaterial:6;MetalAlloyMaterial:7;MetalAluminumMaterial:8;MetalAluminumOxidizedMaterial:9;PlasticStandardMaterial:10;RetroMarkingsMaterial:11;RetroSignMaterial:12;RubberStandardMaterial:13;SoilClayMaterial:14;ConcreteRoughMaterial:15;ConcreteSmoothMaterial:16;OakTreeBarkMaterial:17;FabricStandardMaterial:18;PlexiGlassStandardMaterial:19;MetalSilverMaterial:20" + bool omni:rtx:post:registeredCompositing:invertColorCorrection = 1 + bool omni:rtx:post:registeredCompositing:invertToneMap = 1 + bool omni:rtx:pt:lightcache:cached:dontResolveConflicts = 1 + int omni:rtx:pt:maxSamplesPerLaunch = 2073600 + int omni:rtx:pt:mgpu:maxPixelsPerRegionExponent = 12 + color3f omni:rtx:rt:ambientLight:color = (0.1, 0.1, 0.1) + bool omni:rtx:rt:demoire = 0 + bool omni:rtx:rt:ecoMode:enabled + bool omni:rtx:rt:lightcache:spatialCache:dontResolveConflicts = 1 + uint omni:rtx:viewTile:limit = 4294967295 + rel orderedVars = + custom bool overrideClipRange = 0 + uniform int2 resolution = (1280, 720) + } + } + } + + def RenderSettings "OmniverseGlobalRenderSettings" ( + prepend apiSchemas = ["OmniRtxSettingsGlobalRtAdvancedAPI_1", "OmniRtxSettingsGlobalPtAdvancedAPI_1"] + no_delete = true + ) + { + rel products = + } + + def "Vars" + { + def RenderVar "LdrColor" ( + hide_in_stage_window = true + no_delete = true + ) + { + uniform string sourceName = "LdrColor" + } + } +} + +over "Right_Sharpa_HA4" ( + prepend apiSchemas = ["PhysicsArticulationRootAPI", "PhysxArticulationAPI"] + prepend references = @./right_sharpa_ha4_v2_1/right_sharpa_ha4_v2_1.usd@ +) +{ + string isaac:namespace ( + displayName = "Namespace" + doc = "Namespace of the prim in Isaac Sim" + ) + + over "right_index_DP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (-0.000004297829, -0.010216036, 0.00015998533) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (-0.000007899501, -7.3819857e-9, -7.8965064e-7) + quatd xformOp:orient = (-0.4925278078002141, 0.5004398812552283, 0.5073604573366594, 0.49956145780464695) + double3 xformOp:translate = (-0.00009565753862261772, 0.03153330832719803, 0.17418263852596283) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_middle_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.000003826203450348614, 0.7071068705878245, -0.0000011967522068832974, 0.7071066917738946) + double3 xformOp:translate = (7.566995918750763e-9, 0.009999992325901985, 0.09869998693466187) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_middle_DP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.49999839812154734, 0.500001735984642, 0.4999999180429495, 0.49999994784527213) + double3 xformOp:translate = (2.584420144557953e-8, 0.010000275447964668, 0.17719998955726624) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_middle_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.49999999627103403, 0.5000016801052273, 0.499998252838076, -0.5000000707797824) + double3 xformOp:translate = (2.537854015827179e-8, 0.010000274516642094, 0.17719997465610504) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_middle_MP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.49999832361576135, 0.5000017806879502, 0.4999999329439898, 0.4999999627463118) + double3 xformOp:translate = (1.979060471057892e-8, 0.010000167414546013, 0.14569999277591705) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_pinky_MC" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.000003634020686080366, 0, -2.491287887079955e-8, 0.9999999999933967) + double3 xformOp:translate = (0.01135999709367752, -0.02630000188946724, 0.08669999241828918) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_pinky_MC" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_pinky_MP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.500003758795947, -0.49999799206439965, -0.5000018365639017, -0.49999641254134836) + double3 xformOp:translate = (0.0030002067796885967, -0.031100071966648102, 0.13369998335838318) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_pinky_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = [ + , + , + ] + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.0000026849209264123054, 0.7071080626803121, 0.0000025814296612864796, 0.7071054996806512) + double3 xformOp:translate = (0.003000030992552638, -0.031100066378712654, 0.08669999241828918) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "root_joint" ( + delete apiSchemas = ["PhysicsArticulationRootAPI", "PhysxArticulationAPI"] + ) + { + } + + over "right_index_MP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (-0.000004297174, -0.0102130845, 0.000159939) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (-0.0000027524652, -1.6515711e-9, -2.854492e-7) + quatd xformOp:orient = (-0.49252782156903935, 0.5004397773081385, 0.5073604728099234, 0.49956153264470693) + double3 xformOp:translate = (0.00034385465551167727, 0.031038416549563408, 0.14268960058689117) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_hand_C_MC" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = [ + , + , + , + , + , + ] + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (1, 0, 0, 0) + double3 xformOp:translate = (-4.656612873077393e-10, 6.51925802230835e-9, 1.4901161193847656e-8) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_hand_C_MC" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_index_MCP_VL" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (-1.09194306e-10, -0.000031379648, 1.1228791e-10) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (-6.6538155e-12, 1.6853015e-15, 4.7632936e-10) + quatd xformOp:orient = (-0.49649554199040996, 0.496498989667775, 0.503478425595938, 0.5034783063866441) + double3 xformOp:translate = (0.0009999868925660849, 0.030299996957182884, 0.09569999575614929) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_index_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (-0.0000020299358, -0.000031379634, -2.823082e-8) + rel physics:filteredPairs = + rel physics:simulationOwner + vector3f physics:velocity = (-1.3341944e-8, 8.636375e-10, -6.13865e-10) + quatd xformOp:orient = (0.005595998929966426, 0.7021314528192497, 0.005513466917763243, 0.7120040094272309) + double3 xformOp:translate = (0.0009999900357797742, 0.030299996957182884, 0.09570000320672989) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_ring_MCP_VL" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.49999827891173065, 0.5000018551938327, 0.4999999776474943, 0.49999988824052577) + double3 xformOp:translate = (0.0015000051353126764, -0.010299994610249996, 0.09269998222589493) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_thumb_CMC_VL" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (-0.00010429583, 0.0000021578796, -14.326288) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.0000025707351358120703, 0.7096409347111695, 0.7045635129418814, -0.000002577715857211837) + double3 xformOp:translate = (0.009999996051192284, 0.025999993085861206, 0.021200008690357208) + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "right_thumb_MCP_VL" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (12.439632, -0.39234993, -13.986829) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0.012923664, -0.010629566, 0.012014322) + quatd xformOp:orient = (0.11413018974064675, 0.6997538323137522, 0.4437029732145318, 0.5481300443440095) + double3 xformOp:translate = (0.01576908491551876, 0.0784514769911766, 0.06000249832868576) + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "right_index_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (-0.000004297829, -0.010216036, 0.00015998533) + rel physics:simulationOwner + vector3f physics:velocity = (-0.000008902855, 2.307326e-9, -1.9788345e-7) + quatd xformOp:orient = (-0.49258437274537653, 0.5074170410248345, 0.49950312344346226, -0.5003850636008943) + double3 xformOp:translate = (-0.00009565893560647964, 0.03153330832719803, 0.17418265342712402) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_index_fingertip" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (-0.000004297829, -0.010216036, 0.00015998533) + rel physics:simulationOwner + vector3f physics:velocity = (-0.000011429001, -3.1037366e-9, -6.1127486e-7) + quatd xformOp:orient = (0.999944813769955, -0.007855505154241703, -0.006975460328445394, -0.000058365639856042216) + double3 xformOp:translate = (-0.00045846053399145603, 0.031942032277584076, 0.2001858949661255) + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "right_middle_MCP_VL" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.49999827891173065, 0.5000018551938327, 0.4999999776474943, 0.49999988824052577) + double3 xformOp:translate = (6.752088665962219e-9, 0.009999992325901985, 0.09869998693466187) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_middle_fingertip" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.9999999999972607, -0.0000016954459171010224, 3.20151265968512e-8, -0.0000016133644074300929) + double3 xformOp:translate = (2.7706846594810486e-8, 0.01000036671757698, 0.20320923626422882) + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "right_pinky_MCP_VL" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.5000037140935115, -0.4999981261747108, -0.5000017918603917, -0.499996367837677) + double3 xformOp:translate = (0.003000030992552638, -0.031100066378712654, 0.08669999241828918) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "MCP_VL" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_pinky_DP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.5000037774222856, -0.4999980255919022, -0.500001840289111, -0.49999635666187336) + double3 xformOp:translate = (0.0030003199353814125, -0.031100085005164146, 0.16519998013973236) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_pinky_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.4999982453589982, -0.4999962337256837, -0.5000001378300616, 0.5000053830389969) + double3 xformOp:translate = (0.0030003199353814125, -0.031100083142518997, 0.16519998013973236) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_pinky_fingertip" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.9999999999865955, 1.372161766587077e-7, 0.0000035373960948154, 0.0000037784917697279363) + double3 xformOp:translate = (0.003000505967065692, -0.031099993735551834, 0.19120898842811584) + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "right_ring_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.000003826203450348614, 0.7071068705878245, -0.0000011967522068832974, 0.7071066917738946) + double3 xformOp:translate = (0.0015000082785263658, -0.010299994610249996, 0.09269998967647552) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_ring_MP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.49999832361576135, 0.5000017806879502, 0.4999999329439898, 0.4999999627463118) + double3 xformOp:translate = (0.0015000205021351576, -0.010299820452928543, 0.13969998061656952) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_MP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_ring_DP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (-0.49999839812154734, 0.500001735984642, 0.4999999180429495, 0.49999994784527213) + double3 xformOp:translate = (0.0015000265557318926, -0.010299711488187313, 0.1711999773979187) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_ring_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.5000000186143236, -0.5000017322575758, -0.4999963976418286, 0.5000018514668659) + double3 xformOp:translate = (0.001500026322901249, -0.010299709625542164, 0.1711999773979187) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_thumb_MC" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (13.229949, -0.09502969, -14.326347) + rel physics:filteredPairs = [ + , + , + ] + rel physics:simulationOwner + vector3f physics:velocity = (0.008778232, -0.005328706, 0.00814179) + quatd xformOp:orient = (0.29135131850381135, 0.6463710472692131, 0.2867172870850989, 0.6442919181122422) + double3 xformOp:translate = (0.005000123754143715, 0.026035893708467484, 0.021200047805905342) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_thumb_MC" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_thumb_PP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (12.513415, -0.47869146, -13.890676) + rel physics:filteredPairs = + rel physics:simulationOwner + vector3f physics:velocity = (0.01713206, -0.013255437, 0.015895959) + quatd xformOp:orient = (0.5755037045240243, 0.41409738085455083, -0.07384238608549584, 0.7013316956089508) + double3 xformOp:translate = (0.01576908677816391, 0.0784514769911766, 0.06000249832868576) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_thumb_PP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_thumb_DP" ( + prepend apiSchemas = ["PhysicsFilteredPairsAPI"] + ) + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (12.513398, -0.47869894, -13.890667) + rel physics:filteredPairs = None + rel physics:simulationOwner + vector3f physics:velocity = (0.023226649, -0.017139966, 0.02152017) + quatd xformOp:orient = (0.11413018762799731, 0.6997538280717122, 0.443702910920075, 0.5481301006257867) + double3 xformOp:translate = (0.01597820594906807, 0.10754866898059845, 0.0859699696302414) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "right_thumb_DP" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_thumb_fingertip" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (12.513398, -0.47869894, -13.890667) + rel physics:simulationOwner + vector3f physics:velocity = (0.025315125, -0.02109033, 0.023537705) + quatd xformOp:orient = (0.7887277990480648, -0.3547271763894021, -0.20310394327212572, -0.4591577915781357) + double3 xformOp:translate = (0.016126401722431183, 0.12814871966838837, 0.10435429960489273) + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "right_thumb_elastomer" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (12.513398, -0.47869894, -13.890667) + rel physics:simulationOwner + vector3f physics:velocity = (0.023630312, -0.018768745, 0.021939924) + quatd xformOp:orient = (-0.34502668297369055, 0.9028580483922964, 0.08897237025506402, -0.24059893977451832) + double3 xformOp:translate = (0.01597820594906807, 0.10754866898059845, 0.0859699696302414) + + over "visuals" ( + instanceable = false + ) + { + } + + over "collisions" ( + instanceable = false + ) + { + over "thumb_elastomer" + { + over "mesh" + { + rel physics:simulationOwner + } + } + } + } + + over "right_ring_fingertip" + { + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + vector3f physics:angularVelocity = (0, 0, 0) + rel physics:simulationOwner + vector3f physics:velocity = (0, 0, 0) + quatd xformOp:orient = (0.9999999999905121, -0.000003524992345080886, 0.0000018873843886759876, -0.0000017285598134578839) + double3 xformOp:translate = (0.0015001241117715836, -0.010299524292349815, 0.1972092241048813) + + over "visuals" ( + instanceable = false + ) + { + } + } + + over "joints" + { + over "right_index_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + float drive:angular:physics:targetPosition = -0.8 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = -0.79999834 + float state:angular:physics:velocity = 0 + } + + over "right_middle_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_CMC" + { + float drive:angular:physics:damping = 6.85E-4 + float drive:angular:physics:stiffness = 0.02409 + float physics:lowerLimit = 0 + float physics:upperLimit = 15.000033 + float physxJoint:armature = 0.00012 + float physxJoint:jointFriction = 0.013 + float physxJoint:maxJointVelocity = 2009.6014 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_CMC_FE" + { + float drive:angular:physics:damping = 4.206E-3 + float drive:angular:physics:stiffness = 0.12138 + float physics:lowerLimit = -9.998114 + float physics:upperLimit = 110.00216 + float physxJoint:armature = 0.0032 + float physxJoint:jointFriction = 0.132 + float physxJoint:maxJointVelocity = 678.426 + float state:angular:physics:position = 0.41161048 + float state:angular:physics:velocity = 0 + } + + over "right_index_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float drive:angular:physics:targetPosition = -0.90000004 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = -0.9 + float state:angular:physics:velocity = 0 + } + + over "right_middle_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = -10 + float physics:upperLimit = 90.000206 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_CMC_AA" + { + float drive:angular:physics:damping = 7.8826E-3 + float drive:angular:physics:stiffness = 0.2304 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.0032 + float physxJoint:jointFriction = 0.132 + float physxJoint:maxJointVelocity = 678.426 + float state:angular:physics:position = -3.2539024 + float state:angular:physics:velocity = 0 + } + + over "right_index_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + float drive:angular:physics:targetPosition = 0 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0.0004472393 + float state:angular:physics:velocity = 0 + } + + over "right_middle_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_MCP_FE" + { + float drive:angular:physics:damping = 0.0031940 + float drive:angular:physics:stiffness = 0.083078 + float physics:lowerLimit = -30.000067 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = -0.000015151084 + float state:angular:physics:velocity = 0 + } + + over "right_index_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 8.924762e-8 + float state:angular:physics:velocity = 0 + } + + over "right_middle_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_PIP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + float physics:lowerLimit = 0 + float physics:upperLimit = 99.99832 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float physxJoint:maxJointVelocity = 665.6805 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_ring_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_MCP_AA" + { + float drive:angular:physics:damping = 3.63E-3 + float drive:angular:physics:stiffness = 0.11557 + float physics:lowerLimit = -20.001955 + float physics:upperLimit = 20.001955 + float physxJoint:armature = 0.00265 + float physxJoint:jointFriction = 0.104 + float physxJoint:maxJointVelocity = 921.14 + float state:angular:physics:position = -0.0000028634383 + float state:angular:physics:velocity = 0 + } + + over "right_pinky_DIP" + { + float drive:angular:physics:damping = 5.50E-4 + float drive:angular:physics:stiffness = 0.01578 + string isaac:nameOverride ( + displayName = "Name Override" + doc = "Name override for prim lookup in base name search" + ) + float physics:lowerLimit = 0 + float physics:upperLimit = 80.00209 + float physxJoint:armature = 0.00042 + float physxJoint:jointFriction = 0.000418 + float physxJoint:maxJointVelocity = 840.2969 + float state:angular:physics:position = 0 + float state:angular:physics:velocity = 0 + } + + over "right_thumb_IP" + { + float drive:angular:physics:damping = 6.98E-4 + float drive:angular:physics:stiffness = 0.01584 + float physics:lowerLimit = 0 + float physics:upperLimit = 100 + float physxJoint:armature = 0.00061 + float physxJoint:jointFriction = 0.02476 + float state:angular:physics:position = -2.8107083e-8 + float state:angular:physics:velocity = 0 + } + } + + def OmniGraph "ActionGraph" + { + token evaluationMode = "Automatic" + token evaluator:type = "execution" + token fabricCacheBacking = "Shared" + int2 fileFormatVersion = (1, 9) + token pipelineStage = "pipelineStageSimulation" + + def OmniGraphNode "ros2_publish_joint_state" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + custom uint64 inputs:context + custom uint inputs:execIn ( + customData = { + bool isExecution = 1 + } + ) + prepend uint inputs:execIn.connect = + custom string inputs:nodeNamespace + custom string inputs:qosProfile + custom uint64 inputs:queueSize + custom rel inputs:targetPrim = ( + customData = { + dictionary omni = { + dictionary graph = { + string relType = "target" + } + } + } + ) + custom double inputs:timeStamp + prepend double inputs:timeStamp.connect = + custom string inputs:topicName = "/isaacsim/right_sharpa_ha4_joint_states" + token node:type = "isaacsim.ros2.bridge.ROS2PublishJointState" + int node:typeVersion = 1 + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (773, 130) + } + + def OmniGraphNode "ros2_subscribe_joint_state" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + instanceable = false + ) + { + custom uint64 inputs:context + custom uint inputs:execIn ( + customData = { + bool isExecution = 1 + } + ) + prepend uint inputs:execIn.connect = + custom string inputs:nodeNamespace + custom string inputs:qosProfile + custom uint64 inputs:queueSize + custom string inputs:topicName = "/isaacsim/right_sharpa_ha4_joint_actions" + token node:type = "isaacsim.ros2.bridge.ROS2SubscribeJointState" + int node:typeVersion = 2 + custom double[] outputs:effortCommand + custom uint outputs:execOut ( + customData = { + bool isExecution = 1 + } + ) + custom token[] outputs:jointNames + custom double[] outputs:positionCommand + custom double outputs:timeStamp + custom double[] outputs:velocityCommand + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (382, 401) + } + + def OmniGraphNode "articulation_controller" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + custom double[] inputs:effortCommand + custom uint inputs:execIn ( + customData = { + bool isExecution = 1 + } + ) + prepend uint inputs:execIn.connect = + custom int[] inputs:jointIndices + custom token[] inputs:jointNames + prepend token[] inputs:jointNames.connect = + custom double[] inputs:positionCommand + prepend double[] inputs:positionCommand.connect = + custom string inputs:robotPath + custom rel inputs:targetPrim = ( + customData = { + dictionary omni = { + dictionary graph = { + string relType = "target" + } + } + } + ) + custom double[] inputs:velocityCommand + token node:type = "isaacsim.core.nodes.IsaacArticulationController" + int node:typeVersion = 1 + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (733, 459) + } + + def OmniGraphNode "on_tick" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + custom uint inputs:framePeriod = 1 + custom bool inputs:onlyPlayback + token node:type = "omni.graph.action.OnTick" + int node:typeVersion = 2 + custom double outputs:absoluteSimTime + custom double outputs:deltaSeconds + custom double outputs:frame + custom bool outputs:isPlaying + custom uint outputs:tick ( + customData = { + bool isExecution = 1 + } + ) + custom double outputs:time + custom double outputs:timeSinceStart + custom double state:accumulatedSeconds + custom uint state:frameCount + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (368, 127) + } + + def OmniGraphNode "on_playback_tick" ( + prepend apiSchemas = ["NodeGraphNodeAPI"] + ) + { + token node:type = "omni.graph.action.OnPlaybackTick" + int node:typeVersion = 2 + custom double outputs:deltaSeconds + custom double outputs:frame + custom uint outputs:tick ( + customData = { + bool isExecution = 1 + } + ) + custom double outputs:time + uniform token ui:nodegraph:node:expansionState = "open" + uniform float2 ui:nodegraph:node:pos = (30.814236, 441.02084) + } + } +} + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf new file mode 100644 index 000000000..88f63a58e --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf @@ -0,0 +1,1447 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.xml new file mode 100644 index 000000000..ccc66e11f --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.xml @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_base.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_base.usd new file mode 100644 index 000000000..fea276ab3 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_base.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_physics.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_physics.usd new file mode 100644 index 000000000..428af7c5a Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_physics.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_robot.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_robot.usd new file mode 100644 index 000000000..386127f11 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_robot.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_sensor.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_sensor.usd new file mode 100644 index 000000000..ab811a701 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/right_sharpa_ha4_v2_1_sensor.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/right_sharpa_ha4_v2_1.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/right_sharpa_ha4_v2_1.usd new file mode 100644 index 000000000..004cce85d Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/right_sharpa_ha4_v2_1.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/._Sharpa_HA4_URDF_USD_V2.2.3 b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/._Sharpa_HA4_URDF_USD_V2.2.3 new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/._Sharpa_HA4_URDF_USD_V2.2.3 differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._MUJOCO_LOG.TXT b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._MUJOCO_LOG.TXT new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._MUJOCO_LOG.TXT differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._README.md b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._README.md new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._README.md differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._src b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._src new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/._src differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._dual_hand.usda b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._dual_hand.usda new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._dual_hand.usda differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._left_sharpa_ha4 b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._left_sharpa_ha4 new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._left_sharpa_ha4 differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._right_sharpa_ha4 b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._right_sharpa_ha4 new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/._right_sharpa_ha4 differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._CMakeLists.txt b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._CMakeLists.txt new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._CMakeLists.txt differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/.__wrapper_sharpa_with_ball.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/.__wrapper_sharpa_with_ball.xml new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/.__wrapper_sharpa_with_ball.xml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._config b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._config new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._config differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._launch b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._launch new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._launch differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_overlay.usda b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_overlay.usda new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_overlay.usda differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1 b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1 new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1 differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1.urdf b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1.urdf new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1.urdf differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1.xml new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._left_sharpa_ha4_v2_1.xml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._meshes b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._meshes new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._meshes differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._package.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._package.xml new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/._package.xml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/._joint_names_Left_Sharpa_HA4.yaml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/._joint_names_Left_Sharpa_HA4.yaml new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/._joint_names_Left_Sharpa_HA4.yaml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/._sharpa.rviz b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/._sharpa.rviz new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/config/._sharpa.rviz differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/._display.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/._display.launch.py new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/._display.launch.py differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/._gazebo.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/._gazebo.launch.py new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/launch/._gazebo.launch.py differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/._configuration b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/._configuration new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/._configuration differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/._left_sharpa_ha4_v2_1.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/._left_sharpa_ha4_v2_1.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/._left_sharpa_ha4_v2_1.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_base.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_base.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_base.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_physics.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_physics.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_physics.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_robot.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_robot.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_robot.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_sensor.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_sensor.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1/configuration/._left_sharpa_ha4_v2_1_sensor.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._MCP_VL.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._MCP_VL.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._MCP_VL.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._elastomer.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._elastomer_surface.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_DP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_DP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MCP_VL_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_MP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_PP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_PP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_hand_C_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_hand_C_MC.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_hand_C_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_hand_C_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_hand_C_MC_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_hand_C_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_pinky_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_pinky_MC.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_pinky_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_pinky_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_pinky_MC_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_pinky_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_CMC_VL.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_CMC_VL.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_CMC_VL.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_DP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_DP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MC.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MCP_VL_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MC_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_PP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_PP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._left_thumb_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._thumb_elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._thumb_elastomer.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._thumb_elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._thumb_elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._thumb_elastomer_surface.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes/._thumb_elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._CMakeLists.txt b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._CMakeLists.txt new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._CMakeLists.txt differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/.__wrapper_sharpa_with_ball.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/.__wrapper_sharpa_with_ball.xml new file mode 100644 index 000000000..593afd90d Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/.__wrapper_sharpa_with_ball.xml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._config b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._config new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._config differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._launch b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._launch new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._launch differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._meshes b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._meshes new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._meshes differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._package.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._package.xml new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._package.xml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_overlay.usda b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_overlay.usda new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_overlay.usda differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1 b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1 new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1 differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1.urdf b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1.urdf new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1.urdf differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1.xml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1.xml new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/._right_sharpa_ha4_v2_1.xml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/._joint_names_Right_Sharpa_HA4.yaml b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/._joint_names_Right_Sharpa_HA4.yaml new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/._joint_names_Right_Sharpa_HA4.yaml differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/._sharpa.rviz b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/._sharpa.rviz new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/config/._sharpa.rviz differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/._display.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/._display.launch.py new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/._display.launch.py differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/._gazebo.launch.py b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/._gazebo.launch.py new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/launch/._gazebo.launch.py differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._MCP_VL.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._MCP_VL.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._MCP_VL.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._elastomer.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._elastomer_surface.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_DP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_DP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MCP_VL_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_MP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_PP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_PP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_hand_C_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_hand_C_MC.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_hand_C_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_hand_C_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_hand_C_MC_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_hand_C_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_pinky_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_pinky_MC.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_pinky_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_pinky_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_pinky_MC_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_pinky_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_CMC_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_CMC_VL_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_CMC_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_DP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_DP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_DP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_DP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_DP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_DP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MC.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MC.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MC.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MCP_VL_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MCP_VL_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MCP_VL_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MC_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MC_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_MC_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_PP.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_PP.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_PP.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_PP_visual.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_PP_visual.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._right_thumb_PP_visual.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._thumb_elastomer.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._thumb_elastomer.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._thumb_elastomer.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._thumb_elastomer_surface.STL b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._thumb_elastomer_surface.STL new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes/._thumb_elastomer_surface.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/._configuration b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/._configuration new file mode 100755 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/._configuration differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/._right_sharpa_ha4_v2_1.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/._right_sharpa_ha4_v2_1.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/._right_sharpa_ha4_v2_1.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_base.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_base.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_base.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_physics.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_physics.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_physics.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_robot.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_robot.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_robot.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_sensor.usd b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_sensor.usd new file mode 100644 index 000000000..0914b30f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/__MACOSX/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1/configuration/._right_sharpa_ha4_v2_1_sensor.usd differ diff --git a/examples/mano_hand_retargeter/_DATA/box.obj b/examples/mano_hand_retargeter/_DATA/box.obj new file mode 100644 index 000000000..7e1f7bc85 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/box.obj @@ -0,0 +1,150151 @@ +# Captured with Scaniverse (https://scaniverse.com) +# +# Version: 5.1.0 (583) +# Mode: Detail (583) +# Unit: meter +# Latitude: 37.3728689 +# Longitude: -121.9680536 +# Elevation: 24.47657 +# Rotation: 152.06482 deg + +mtllib Scaniverse_2025_12_11_123445.mtl + +v -0.13062 0.07897 0.16932 +v -0.13084 0.07841 0.17067 +v -0.13062 0.07917 0.17003 +v -0.13114 0.07765 0.17016 +v -0.13065 0.08023 0.17132 +v -0.13057 0.07988 0.16954 +v -0.13117 0.07712 0.17099 +v -0.13113 0.07817 0.16812 +v -0.13079 0.07851 0.17271 +v -0.13073 0.07905 0.16849 +v -0.13148 0.07687 0.16993 +v -0.13090 0.07789 0.17185 +v -0.13125 0.07758 0.16957 +v -0.13068 0.08099 0.17293 +v -0.13057 0.08075 0.16852 +v -0.13142 0.07627 0.17058 +v -0.13096 0.07659 0.17284 +v -0.13140 0.07760 0.16810 +v -0.13079 0.07882 0.16700 +v -0.13063 0.08164 0.17528 +v -0.13063 0.08312 0.17194 +v -0.13049 0.08002 0.16707 +v -0.13155 0.07629 0.16955 +v -0.13149 0.07687 0.16912 +v -0.13133 0.07753 0.16622 +v -0.13109 0.07817 0.16651 +v -0.13076 0.07725 0.17389 +v -0.13056 0.08651 0.17388 +v -0.13062 0.07739 0.17555 +v -0.13068 0.08344 0.16874 +v -0.13050 0.08137 0.16699 +v -0.13146 0.07495 0.16845 +v -0.13133 0.07535 0.17171 +v -0.13150 0.07686 0.16779 +v -0.13053 0.07936 0.16652 +v -0.13073 0.07514 0.17396 +v -0.13060 0.08318 0.17677 +v -0.13050 0.08126 0.17911 +v -0.13069 0.08549 0.17151 +v -0.13038 0.08077 0.16657 +v -0.13143 0.07498 0.17068 +v -0.13119 0.07772 0.16536 +v -0.13142 0.07627 0.16529 +v -0.13042 0.07988 0.16611 +v -0.13084 0.07822 0.16451 +v -0.13052 0.08634 0.17697 +v -0.13058 0.07723 0.17859 +v -0.13087 0.08933 0.17183 +v -0.13099 0.08683 0.16616 +v -0.13067 0.08283 0.16531 +v -0.13127 0.07312 0.17100 +v -0.13107 0.07389 0.17286 +v -0.13134 0.07717 0.16514 +v -0.13045 0.07982 0.16533 +v -0.13061 0.07922 0.16457 +v -0.13038 0.07429 0.17650 +v -0.13065 0.08989 0.17452 +v -0.13054 0.07971 0.18108 +v -0.13122 0.08964 0.16710 +v -0.13045 0.08062 0.16496 +v -0.13107 0.06990 0.16785 +v -0.13082 0.07362 0.17423 +v -0.13126 0.07326 0.16374 +v -0.13091 0.07774 0.16383 +v -0.13123 0.07688 0.16400 +v -0.13076 0.07860 0.16324 +v -0.13050 0.07339 0.17612 +v -0.13028 0.08404 0.18162 +v -0.13057 0.08916 0.17926 +v -0.13046 0.08162 0.18137 +v -0.13045 0.07615 0.18038 +v -0.13038 0.07419 0.17817 +v -0.13090 0.09107 0.17046 +v -0.13101 0.09046 0.17015 +v -0.13133 0.09040 0.16660 +v -0.13103 0.08606 0.16363 +v -0.13082 0.08263 0.16289 +v -0.13108 0.06985 0.17204 +v -0.13109 0.07223 0.17324 +v -0.13133 0.07519 0.16314 +v -0.13125 0.07598 0.16259 +v -0.13065 0.08044 0.16344 +v -0.13040 0.07178 0.17945 +v -0.13031 0.08498 0.18113 +v -0.13053 0.09236 0.17873 +v -0.13057 0.08153 0.18315 +v -0.13036 0.07427 0.18270 +v -0.13065 0.09220 0.17242 +v -0.13102 0.08867 0.16333 +v -0.13114 0.09065 0.16768 +v -0.13061 0.06458 0.16938 +v -0.13101 0.06941 0.16145 +v -0.13100 0.07043 0.17552 +v -0.13114 0.07456 0.16162 +v -0.13095 0.07748 0.16323 +v -0.13082 0.07785 0.16343 +v -0.13109 0.07678 0.16263 +v -0.13083 0.08062 0.16137 +v -0.13064 0.07066 0.17755 +v -0.13040 0.08760 0.18159 +v -0.13032 0.08360 0.18365 +v -0.13046 0.09224 0.18070 +v -0.13068 0.08080 0.18390 +v -0.13053 0.07835 0.18282 +v -0.13032 0.07320 0.18103 +v -0.13099 0.09236 0.16689 +v -0.13098 0.09172 0.16274 +v -0.13099 0.08704 0.16157 +v -0.13109 0.08579 0.16213 +v -0.13049 0.06367 0.17122 +v -0.13063 0.06463 0.16516 +v -0.13101 0.06930 0.17501 +v -0.13103 0.07142 0.16026 +v -0.13111 0.07333 0.16123 +v -0.13101 0.07649 0.16162 +v -0.13086 0.07796 0.16166 +v -0.13050 0.06816 0.17991 +v -0.13034 0.08796 0.18428 +v -0.13034 0.08554 0.18482 +v -0.13042 0.09794 0.17528 +v -0.13052 0.09392 0.17986 +v -0.13073 0.08159 0.18441 +v -0.13049 0.08322 0.18451 +v -0.13048 0.07717 0.18435 +v -0.13024 0.07192 0.18224 +v -0.13089 0.09339 0.16694 +v -0.13079 0.08864 0.16040 +v -0.13117 0.09167 0.16510 +v -0.13125 0.09130 0.16582 +v -0.13102 0.08386 0.16030 +v -0.13038 0.06113 0.17083 +v -0.13082 0.06657 0.17447 +v -0.13036 0.06094 0.16611 +v -0.13108 0.07004 0.15933 +v -0.13071 0.06463 0.16075 +v -0.13066 0.06793 0.17777 +v -0.13078 0.06695 0.17623 +v -0.13093 0.07537 0.16060 +v -0.13093 0.07400 0.16020 +v -0.13081 0.07932 0.15935 +v -0.13033 0.08967 0.18252 +v -0.13044 0.09707 0.17614 +v -0.13058 0.09503 0.17342 +v -0.13062 0.09491 0.18161 +v -0.13049 0.09624 0.17852 +v -0.13077 0.08171 0.18569 +v -0.13051 0.07231 0.18707 +v -0.13057 0.07923 0.18577 +v -0.13098 0.09316 0.16594 +v -0.13062 0.09363 0.17201 +v -0.13083 0.09264 0.15981 +v -0.13101 0.09322 0.16454 +v -0.13086 0.08708 0.16015 +v -0.13096 0.08593 0.15962 +v -0.13109 0.08382 0.15800 +v -0.13042 0.06091 0.16875 +v -0.13044 0.06234 0.17316 +v -0.13065 0.06436 0.17460 +v -0.13033 0.06083 0.16303 +v -0.13096 0.07278 0.15977 +v -0.13098 0.07179 0.15876 +v -0.13096 0.06657 0.15823 +v -0.13078 0.07665 0.15986 +v -0.13057 0.06636 0.17859 +v -0.13040 0.06825 0.18349 +v -0.13024 0.08976 0.18409 +v -0.13045 0.08690 0.18604 +v -0.13039 0.08579 0.18559 +v -0.13023 0.10188 0.17697 +v -0.13049 0.09911 0.17300 +v -0.13036 0.09138 0.18183 +v -0.13042 0.09286 0.18232 +v -0.13055 0.09639 0.18069 +v -0.13070 0.08290 0.18584 +v -0.13048 0.07777 0.18679 +v -0.13039 0.06906 0.18495 +v -0.13087 0.09507 0.16650 +v -0.13084 0.09515 0.16828 +v -0.13069 0.09159 0.15855 +v -0.13091 0.09486 0.16128 +v -0.13085 0.09617 0.16277 +v -0.13070 0.08728 0.15906 +v -0.13106 0.08494 0.15882 +v -0.13055 0.05804 0.16919 +v -0.13059 0.05819 0.17434 +v -0.13071 0.06452 0.17665 +v -0.13021 0.05837 0.16456 +v -0.13035 0.05930 0.16681 +v -0.13099 0.07153 0.15733 +v -0.13107 0.06940 0.15708 +v -0.13078 0.06354 0.15897 +v -0.13035 0.05980 0.16084 +v -0.13061 0.07462 0.15897 +v -0.13074 0.07367 0.15889 +v -0.13064 0.07745 0.15787 +v -0.13091 0.08135 0.15603 +v -0.13059 0.06399 0.17992 +v -0.13057 0.06571 0.18101 +v -0.13037 0.08863 0.18621 +v -0.13017 0.09159 0.18365 +v -0.13060 0.08498 0.18627 +v -0.13032 0.09929 0.17871 +v -0.13034 0.10092 0.17369 +v -0.13077 0.09848 0.17069 +v -0.13063 0.09462 0.18340 +v -0.13069 0.09610 0.18291 +v -0.13067 0.08216 0.18724 +v -0.13033 0.07926 0.18892 +v -0.13031 0.07401 0.19080 +v -0.13047 0.07086 0.18821 +v -0.13048 0.08858 0.15702 +v -0.13078 0.09358 0.15759 +v -0.13103 0.09644 0.15752 +v -0.13107 0.08521 0.15779 +v -0.13054 0.05777 0.17148 +v -0.13059 0.06057 0.17552 +v -0.13015 0.05852 0.16215 +v -0.13080 0.07246 0.15722 +v -0.13110 0.06567 0.15661 +v -0.13042 0.07471 0.15738 +v -0.13118 0.08438 0.15618 +v -0.13028 0.06717 0.18602 +v -0.13002 0.09109 0.18600 +v -0.12994 0.09190 0.18588 +v -0.13065 0.08614 0.18745 +v -0.13002 0.10313 0.18005 +v -0.13039 0.10339 0.17328 +v -0.13049 0.10070 0.17148 +v -0.13007 0.09302 0.18574 +v -0.13060 0.09686 0.18341 +v -0.13029 0.09905 0.18054 +v -0.13076 0.08444 0.18752 +v -0.13088 0.09564 0.16749 +v -0.13048 0.09197 0.15638 +v -0.13095 0.09536 0.15733 +v -0.13107 0.09790 0.15689 +v -0.13070 0.09789 0.16393 +v -0.13072 0.08678 0.15712 +v -0.13057 0.05745 0.16766 +v -0.13081 0.05545 0.16975 +v -0.13058 0.05962 0.17604 +v -0.13065 0.05560 0.17386 +v -0.13066 0.06272 0.17875 +v -0.13026 0.05728 0.16268 +v -0.13095 0.07014 0.15496 +v -0.13053 0.07344 0.15604 +v -0.13110 0.06846 0.15557 +v -0.13089 0.06263 0.15799 +v -0.13018 0.05816 0.16113 +v -0.13045 0.07610 0.15442 +v -0.13119 0.08411 0.15493 +v -0.13022 0.06391 0.18840 +v -0.13037 0.08921 0.18743 +v -0.13014 0.10598 0.17826 +v -0.13024 0.10606 0.17628 +v -0.13053 0.10145 0.16939 +v -0.13078 0.09863 0.16866 +v -0.13050 0.09595 0.18551 +v -0.13046 0.08156 0.18924 +v -0.13021 0.06781 0.19207 +v -0.13021 0.07785 0.19438 +v -0.13020 0.06561 0.19145 +v -0.13063 0.10031 0.16713 +v -0.13025 0.08920 0.15472 +v -0.13080 0.09568 0.15649 +v -0.13077 0.10155 0.15885 +v -0.13028 0.08807 0.15428 +v -0.13107 0.08551 0.15592 +v -0.13082 0.05583 0.16868 +v -0.13068 0.05572 0.17175 +v -0.13051 0.06016 0.17775 +v -0.13057 0.05697 0.17539 +v -0.13035 0.05718 0.16450 +v -0.13010 0.05791 0.16167 +v -0.13124 0.06577 0.15527 +v -0.13134 0.06239 0.15533 +v -0.13041 0.05803 0.16014 +v -0.13074 0.08107 0.15145 +v -0.13040 0.07462 0.15629 +v -0.13105 0.08401 0.15321 +v -0.13129 0.08510 0.15526 +v -0.13041 0.06126 0.18150 +v -0.13035 0.06162 0.18462 +v -0.13005 0.09111 0.18774 +v -0.13015 0.09393 0.18775 +v -0.13044 0.08928 0.18881 +v -0.13031 0.09972 0.18376 +v -0.13008 0.10537 0.17968 +v -0.13035 0.10550 0.17340 +v -0.13051 0.09805 0.18488 +v -0.13045 0.08586 0.19020 +v -0.13030 0.08057 0.19115 +v -0.13034 0.08305 0.19097 +v -0.13004 0.07021 0.19543 +v -0.13000 0.07427 0.19625 +v -0.13010 0.09129 0.15375 +v -0.13029 0.09422 0.15443 +v -0.13044 0.09880 0.15359 +v -0.13093 0.09990 0.15748 +v -0.13060 0.10166 0.16575 +v -0.13066 0.10214 0.16115 +v -0.13073 0.08659 0.15602 +v -0.13078 0.05587 0.16730 +v -0.13077 0.05391 0.17066 +v -0.13099 0.05457 0.16855 +v -0.13042 0.05750 0.17691 +v -0.13072 0.05408 0.17241 +v -0.13072 0.05342 0.17310 +v -0.13066 0.05551 0.16542 +v -0.13048 0.05598 0.16237 +v -0.13027 0.05735 0.16125 +v -0.13066 0.07129 0.15212 +v -0.13108 0.06902 0.15207 +v -0.13127 0.06708 0.15248 +v -0.13117 0.06088 0.15645 +v -0.13069 0.05944 0.15877 +v -0.13023 0.05783 0.16082 +v -0.13039 0.07750 0.14867 +v -0.13116 0.08491 0.15433 +v -0.13007 0.06212 0.19049 +v -0.13014 0.09257 0.18951 +v -0.13042 0.08984 0.18860 +v -0.13019 0.09426 0.19027 +v -0.13039 0.08929 0.19057 +v -0.13016 0.10361 0.18482 +v -0.13001 0.10793 0.18081 +v -0.13009 0.10622 0.18246 +v -0.12998 0.10878 0.17828 +v -0.13040 0.10463 0.17173 +v -0.13011 0.10896 0.17505 +v -0.13038 0.09660 0.18819 +v -0.13061 0.09845 0.18621 +v -0.12999 0.06746 0.20066 +v -0.13002 0.06100 0.19852 +v -0.13005 0.07755 0.19746 +v -0.13003 0.08269 0.19601 +v -0.13012 0.08920 0.15257 +v -0.13056 0.09627 0.15525 +v -0.13088 0.09911 0.15612 +v -0.13101 0.10178 0.15656 +v -0.13047 0.10362 0.16731 +v -0.13077 0.10354 0.15850 +v -0.13044 0.08727 0.15399 +v -0.13090 0.08605 0.15531 +v -0.13097 0.05513 0.16798 +v -0.13000 0.05651 0.17918 +v -0.13035 0.05377 0.17666 +v -0.13023 0.05929 0.18125 +v -0.13042 0.07346 0.15187 +v -0.13149 0.06601 0.14908 +v -0.13126 0.06034 0.15502 +v -0.13074 0.05753 0.15869 +v -0.13049 0.08074 0.14776 +v -0.13107 0.08418 0.15104 +v -0.13100 0.08538 0.15354 +v -0.13099 0.08575 0.15448 +v -0.13037 0.06061 0.18427 +v -0.12998 0.05903 0.18933 +v -0.13021 0.09127 0.18911 +v -0.13021 0.09543 0.18956 +v -0.13033 0.09074 0.19006 +v -0.13025 0.10233 0.18603 +v -0.13042 0.10386 0.16936 +v -0.13017 0.10696 0.17255 +v -0.13059 0.09826 0.18742 +v -0.13024 0.08494 0.19295 +v -0.13031 0.08714 0.19291 +v -0.12990 0.06940 0.20036 +v -0.12990 0.07263 0.19922 +v -0.13002 0.08058 0.19732 +v -0.12977 0.09221 0.15055 +v -0.13088 0.10040 0.15583 +v -0.13110 0.10373 0.15556 +v -0.13045 0.10347 0.16433 +v -0.13056 0.10568 0.16002 +v -0.13099 0.05464 0.16734 +v -0.13096 0.05334 0.16763 +v -0.13057 0.05234 0.17213 +v -0.13109 0.05464 0.16798 +v -0.13013 0.05492 0.17834 +v -0.13038 0.05272 0.17584 +v -0.13027 0.05900 0.18369 +v -0.13075 0.05383 0.16465 +v -0.13067 0.05565 0.16062 +v -0.13063 0.07181 0.15037 +v -0.13135 0.06774 0.15035 +v -0.13150 0.06167 0.14831 +v -0.13095 0.05917 0.15726 +v -0.13144 0.06105 0.15131 +v -0.13110 0.05819 0.15504 +v -0.13063 0.05657 0.15974 +v -0.13039 0.07629 0.14770 +v -0.13026 0.07888 0.14614 +v -0.13089 0.08345 0.14816 +v -0.13111 0.08513 0.15161 +v -0.13094 0.08582 0.15250 +v -0.13017 0.05952 0.18616 +v -0.12989 0.05864 0.19402 +v -0.13042 0.09292 0.19306 +v -0.13028 0.09822 0.18992 +v -0.13038 0.09156 0.19245 +v -0.13028 0.10196 0.18912 +v -0.13007 0.10605 0.18492 +v -0.13001 0.10794 0.18190 +v -0.12956 0.11141 0.18001 +v -0.12990 0.11023 0.17703 +v -0.13025 0.10518 0.16907 +v -0.12995 0.10958 0.17382 +v -0.13013 0.10610 0.17048 +v -0.13059 0.09936 0.18745 +v -0.12983 0.07113 0.20291 +v -0.12997 0.06378 0.20008 +v -0.12996 0.07542 0.20168 +v -0.12999 0.07958 0.20055 +v -0.12981 0.08257 0.19835 +v -0.13016 0.08904 0.15048 +v -0.13042 0.08767 0.15179 +v -0.13104 0.10198 0.15571 +v -0.13032 0.10484 0.16671 +v -0.13051 0.10363 0.16215 +v -0.13084 0.10492 0.15673 +v -0.13071 0.05259 0.16992 +v -0.12981 0.05566 0.18188 +v -0.13020 0.05225 0.17836 +v -0.13042 0.05183 0.17394 +v -0.13071 0.05425 0.16171 +v -0.13047 0.07529 0.14759 +v -0.13115 0.06936 0.15020 +v -0.13145 0.06256 0.14476 +v -0.13143 0.06818 0.14917 +v -0.13135 0.05860 0.15047 +v -0.13107 0.05659 0.15230 +v -0.13092 0.05724 0.15727 +v -0.13080 0.05536 0.15903 +v -0.13051 0.07662 0.14685 +v -0.13024 0.08054 0.14533 +v -0.13045 0.07738 0.14606 +v -0.13114 0.08548 0.15050 +v -0.13121 0.08534 0.14919 +v -0.13073 0.08644 0.15336 +v -0.12970 0.05255 0.18638 +v -0.12962 0.05425 0.19338 +v -0.12972 0.05728 0.19757 +v -0.13026 0.09619 0.19206 +v -0.13023 0.09791 0.19074 +v -0.13009 0.10468 0.18629 +v -0.12973 0.11155 0.17535 +v -0.12971 0.10846 0.17033 +v -0.13042 0.09980 0.18904 +v -0.13006 0.08509 0.19593 +v -0.13025 0.08888 0.19657 +v -0.12997 0.06782 0.20392 +v -0.12994 0.06078 0.19996 +v -0.12997 0.06561 0.20132 +v -0.12983 0.07381 0.20281 +v -0.12985 0.08156 0.19944 +v -0.12976 0.08412 0.19783 +v -0.12934 0.09734 0.14904 +v -0.13014 0.08966 0.14916 +v -0.13078 0.10398 0.15208 +v -0.13102 0.10336 0.15454 +v -0.13017 0.10587 0.16522 +v -0.13012 0.10743 0.16347 +v -0.13050 0.10721 0.15876 +v -0.13024 0.10822 0.16060 +v -0.13068 0.10641 0.15529 +v -0.13091 0.05346 0.16614 +v -0.13061 0.05127 0.16785 +v -0.13018 0.04835 0.16922 +v -0.12986 0.05442 0.18083 +v -0.13032 0.05131 0.17551 +v -0.13024 0.04991 0.17721 +v -0.13004 0.05696 0.18454 +v -0.13071 0.05226 0.16331 +v -0.13106 0.07134 0.14771 +v -0.13146 0.05894 0.14942 +v -0.13149 0.06798 0.14749 +v -0.13140 0.05818 0.14443 +v -0.13094 0.05550 0.15658 +v -0.13011 0.07908 0.14457 +v -0.13017 0.07838 0.14411 +v -0.13028 0.08166 0.14386 +v -0.13098 0.08641 0.15052 +v -0.13125 0.08573 0.14826 +v -0.12950 0.05106 0.18962 +v -0.12952 0.05413 0.19715 +v -0.12973 0.05845 0.19978 +v -0.13036 0.09621 0.19386 +v -0.13018 0.09955 0.19133 +v -0.12988 0.10698 0.18682 +v -0.12945 0.11175 0.18230 +v -0.12958 0.11191 0.17744 +v -0.12977 0.10735 0.16944 +v -0.12964 0.11089 0.17176 +v -0.12993 0.06699 0.20581 +v -0.12976 0.06172 0.20165 +v -0.12982 0.06306 0.20221 +v -0.12994 0.07964 0.20400 +v -0.12979 0.07701 0.20465 +v -0.12974 0.08250 0.20146 +v -0.12956 0.08305 0.19998 +v -0.12948 0.08399 0.19929 +v -0.12995 0.10230 0.14767 +v -0.12893 0.09460 0.14691 +v -0.13052 0.08781 0.15018 +v -0.12999 0.09024 0.14811 +v -0.13102 0.10468 0.15448 +v -0.12976 0.10738 0.16866 +v -0.13031 0.10875 0.15828 +v -0.13033 0.10927 0.15457 +v -0.13074 0.05228 0.16549 +v -0.12989 0.05303 0.18202 +v -0.13017 0.04951 0.17442 +v -0.13016 0.05036 0.17979 +v -0.12992 0.05458 0.18452 +v -0.13077 0.05195 0.16024 +v -0.13067 0.07560 0.14651 +v -0.13135 0.06671 0.14495 +v -0.13130 0.06286 0.14153 +v -0.13120 0.07120 0.14615 +v -0.13133 0.05712 0.14747 +v -0.13091 0.05271 0.15583 +v -0.13072 0.07658 0.14499 +v -0.13010 0.08001 0.14389 +v -0.13043 0.08299 0.14287 +v -0.13114 0.08671 0.14897 +v -0.13099 0.08536 0.14420 +v -0.12985 0.05163 0.18401 +v -0.12950 0.05207 0.19645 +v -0.12950 0.04999 0.19103 +v -0.12950 0.05652 0.20098 +v -0.13030 0.09437 0.19557 +v -0.13018 0.09801 0.19230 +v -0.13023 0.10159 0.19031 +v -0.13000 0.10513 0.18928 +v -0.12928 0.11307 0.18183 +v -0.12888 0.11483 0.17959 +v -0.12928 0.11479 0.17523 +v -0.12960 0.10922 0.16960 +v -0.12944 0.11397 0.17450 +v -0.12987 0.08575 0.19766 +v -0.13007 0.08770 0.19747 +v -0.12947 0.07461 0.20605 +v -0.12986 0.06400 0.20363 +v -0.12963 0.07035 0.20681 +v -0.12996 0.06472 0.20567 +v -0.12956 0.05887 0.20169 +v -0.12988 0.08301 0.20421 +v -0.12954 0.08497 0.19896 +v -0.12908 0.09824 0.14525 +v -0.12946 0.09170 0.14685 +v -0.13061 0.08880 0.14786 +v -0.13099 0.10493 0.15311 +v -0.13072 0.10667 0.14817 +v -0.13006 0.11046 0.16272 +v -0.13085 0.10659 0.15361 +v -0.13058 0.10832 0.15332 +v -0.13050 0.05037 0.16448 +v -0.13014 0.04823 0.16511 +v -0.12989 0.05318 0.18365 +v -0.13004 0.04629 0.17221 +v -0.13024 0.04688 0.18036 +v -0.13064 0.04960 0.16078 +v -0.13102 0.07449 0.14491 +v -0.13125 0.06999 0.14488 +v -0.13129 0.05883 0.13979 +v -0.13100 0.05426 0.14957 +v -0.13017 0.07885 0.14346 +v -0.13043 0.07750 0.14373 +v -0.13022 0.08007 0.14257 +v -0.13024 0.08156 0.14246 +v -0.13087 0.08745 0.14914 +v -0.13140 0.08666 0.14763 +v -0.12997 0.04798 0.18426 +v -0.12915 0.05030 0.19965 +v -0.12961 0.05130 0.19443 +v -0.12963 0.04691 0.18974 +v -0.13003 0.09136 0.19888 +v -0.13027 0.09784 0.19573 +v -0.13024 0.09861 0.19485 +v -0.13010 0.09905 0.19270 +v -0.13006 0.10283 0.19235 +v -0.12980 0.10790 0.19242 +v -0.12956 0.11047 0.18584 +v -0.12878 0.11524 0.18095 +v -0.12928 0.11412 0.18462 +v -0.12905 0.11497 0.17691 +v -0.12956 0.11164 0.17060 +v -0.12936 0.11354 0.17202 +v -0.13010 0.10119 0.19293 +v -0.12970 0.08870 0.20052 +v -0.12970 0.06724 0.21010 +v -0.13004 0.06506 0.20776 +v -0.12955 0.06112 0.20446 +v -0.12925 0.05816 0.20395 +v -0.12970 0.07741 0.20639 +v -0.12983 0.08400 0.20644 +v -0.12977 0.08414 0.20364 +v -0.12933 0.08402 0.20037 +v -0.12938 0.08489 0.19992 +v -0.12979 0.10198 0.14191 +v -0.12887 0.09535 0.14407 +v -0.12906 0.09309 0.14485 +v -0.13018 0.08989 0.14707 +v -0.13098 0.10605 0.15259 +v -0.13059 0.10800 0.14219 +v -0.13098 0.10680 0.15078 +v -0.12978 0.10974 0.16552 +v -0.12992 0.11254 0.16233 +v -0.13001 0.10941 0.16370 +v -0.13016 0.11051 0.15780 +v -0.13031 0.10984 0.15288 +v -0.13010 0.04762 0.16684 +v -0.13012 0.04742 0.17526 +v -0.13006 0.04681 0.16975 +v -0.13012 0.04857 0.18208 +v -0.13024 0.04570 0.17746 +v -0.13072 0.04917 0.15718 +v -0.13136 0.05694 0.14446 +v -0.13112 0.06799 0.14313 +v -0.13105 0.06735 0.14126 +v -0.13124 0.05637 0.14203 +v -0.13123 0.06280 0.13931 +v -0.13123 0.07113 0.14339 +v -0.13108 0.05368 0.14513 +v -0.13057 0.04688 0.15456 +v -0.13079 0.07611 0.14388 +v -0.13043 0.08258 0.14129 +v -0.13081 0.08495 0.14121 +v -0.13139 0.08691 0.14653 +v -0.12989 0.04568 0.18571 +v -0.12959 0.05105 0.19560 +v -0.12956 0.04774 0.19204 +v -0.12922 0.05332 0.20311 +v -0.12985 0.09346 0.20201 +v -0.13014 0.09716 0.19781 +v -0.12994 0.10488 0.19240 +v -0.12944 0.11294 0.18496 +v -0.12882 0.11528 0.18206 +v -0.12904 0.11480 0.18319 +v -0.12893 0.11664 0.17560 +v -0.12858 0.11897 0.17909 +v -0.12915 0.11542 0.17373 +v -0.12959 0.11213 0.16846 +v -0.12961 0.08645 0.19942 +v -0.12941 0.07448 0.20697 +v -0.12958 0.07034 0.20884 +v -0.13000 0.06429 0.20778 +v -0.12977 0.07869 0.20791 +v -0.12975 0.08090 0.20847 +v -0.12957 0.08425 0.20194 +v -0.12956 0.09729 0.14050 +v -0.12957 0.09158 0.14505 +v -0.13124 0.08778 0.14715 +v -0.13053 0.08980 0.14572 +v -0.12999 0.09073 0.14558 +v -0.13090 0.10983 0.14655 +v -0.13108 0.10874 0.14915 +v -0.12999 0.11152 0.16416 +v -0.13020 0.11098 0.15401 +v -0.13096 0.10663 0.15277 +v -0.13087 0.10732 0.15280 +v -0.13032 0.11053 0.15145 +v -0.13045 0.04898 0.16290 +v -0.13005 0.04737 0.16567 +v -0.13012 0.04217 0.17314 +v -0.13006 0.04425 0.17030 +v -0.13025 0.04673 0.18198 +v -0.13024 0.04306 0.17522 +v -0.13062 0.04658 0.15841 +v -0.13128 0.07405 0.14014 +v -0.13111 0.06613 0.13990 +v -0.13119 0.05645 0.13868 +v -0.13130 0.05962 0.13757 +v -0.13081 0.05150 0.14755 +v -0.13057 0.04864 0.14847 +v -0.13083 0.07647 0.14216 +v -0.13049 0.07827 0.14216 +v -0.13058 0.07700 0.14289 +v -0.13035 0.08130 0.14135 +v -0.13115 0.08707 0.14276 +v -0.13131 0.08696 0.14478 +v -0.12933 0.04670 0.19876 +v -0.12959 0.04837 0.19506 +v -0.12951 0.04247 0.19124 +v -0.12964 0.04191 0.18717 +v -0.12915 0.05490 0.20450 +v -0.12912 0.04991 0.19976 +v -0.13030 0.09958 0.19626 +v -0.13016 0.10236 0.19589 +v -0.12988 0.10787 0.19432 +v -0.12945 0.11194 0.18759 +v -0.12866 0.11622 0.18121 +v -0.12931 0.11342 0.18771 +v -0.12909 0.11482 0.18466 +v -0.12943 0.11397 0.16984 +v -0.12909 0.11594 0.17122 +v -0.12953 0.08717 0.20075 +v -0.12953 0.07253 0.20851 +v -0.12993 0.06496 0.20940 +v -0.12948 0.07062 0.21089 +v -0.12917 0.05827 0.20512 +v -0.12964 0.07654 0.20894 +v -0.12967 0.08652 0.20514 +v -0.12963 0.08342 0.20937 +v -0.12945 0.08580 0.20111 +v -0.13002 0.10137 0.13775 +v -0.13038 0.10431 0.13693 +v -0.12938 0.09386 0.14247 +v -0.12960 0.09218 0.14372 +v -0.13137 0.08809 0.14633 +v -0.13089 0.11141 0.14441 +v -0.13106 0.10809 0.15067 +v -0.12977 0.11161 0.16617 +v -0.12981 0.11279 0.16448 +v -0.12996 0.11445 0.15777 +v -0.13000 0.11494 0.15647 +v -0.12999 0.11466 0.15309 +v -0.13013 0.11239 0.15053 +v -0.13040 0.04714 0.16282 +v -0.13004 0.04590 0.16886 +v -0.13031 0.04683 0.16401 +v -0.13016 0.04635 0.16654 +v -0.13010 0.04514 0.16917 +v -0.13012 0.04325 0.18267 +v -0.13049 0.04669 0.16102 +v -0.13118 0.07496 0.14095 +v -0.13130 0.07012 0.13860 +v -0.13099 0.05427 0.13974 +v -0.13133 0.06458 0.13694 +v -0.13052 0.04937 0.14400 +v -0.13048 0.04651 0.15290 +v -0.13081 0.07980 0.13933 +v -0.13070 0.08299 0.13966 +v -0.13098 0.08614 0.14072 +v -0.13146 0.08785 0.14516 +v -0.13146 0.08760 0.14649 +v -0.12947 0.04040 0.19449 +v -0.12963 0.04119 0.18844 +v -0.12993 0.04136 0.18376 +v -0.12949 0.04528 0.19604 +v -0.12917 0.05168 0.20469 +v -0.12905 0.04749 0.20301 +v -0.12914 0.05695 0.20455 +v -0.12954 0.08772 0.20219 +v -0.12982 0.09554 0.20273 +v -0.13007 0.10064 0.19775 +v -0.13014 0.10394 0.19703 +v -0.13024 0.10100 0.19619 +v -0.12942 0.11206 0.19366 +v -0.12858 0.11630 0.18321 +v -0.12900 0.11464 0.18632 +v -0.12867 0.11581 0.18422 +v -0.12847 0.11981 0.17768 +v -0.12850 0.11844 0.18130 +v -0.12870 0.11835 0.17598 +v -0.12961 0.11313 0.16693 +v -0.12857 0.11930 0.17347 +v -0.12956 0.07465 0.20946 +v -0.12982 0.06268 0.20884 +v -0.12987 0.06618 0.21120 +v -0.12953 0.06899 0.21152 +v -0.12954 0.07356 0.21038 +v -0.12992 0.06448 0.21045 +v -0.12938 0.05998 0.20675 +v -0.12968 0.07760 0.21224 +v -0.12966 0.08669 0.20768 +v -0.12961 0.08029 0.21236 +v -0.12953 0.08657 0.20322 +v -0.13009 0.09907 0.13674 +v -0.13079 0.10796 0.13580 +v -0.12975 0.09456 0.14075 +v -0.13105 0.08983 0.14391 +v -0.13032 0.09135 0.14300 +v -0.13130 0.08845 0.14575 +v -0.13085 0.11188 0.14596 +v -0.13079 0.11266 0.14266 +v -0.13107 0.11011 0.14821 +v -0.13104 0.10967 0.14950 +v -0.12968 0.11425 0.16293 +v -0.12982 0.11411 0.16117 +v -0.13011 0.11327 0.15465 +v -0.13087 0.10854 0.15137 +v -0.12992 0.11429 0.15129 +v -0.13035 0.11179 0.14968 +v -0.13059 0.04441 0.16505 +v -0.13011 0.04286 0.17152 +v -0.13012 0.03988 0.17478 +v -0.13037 0.04264 0.16898 +v -0.13002 0.03953 0.17781 +v -0.13050 0.04289 0.15697 +v -0.13055 0.04464 0.15990 +v -0.13113 0.07833 0.13777 +v -0.13132 0.06936 0.13746 +v -0.13138 0.06004 0.13576 +v -0.13108 0.05404 0.13547 +v -0.13142 0.06702 0.13576 +v -0.13142 0.06330 0.13611 +v -0.13140 0.07700 0.13544 +v -0.13028 0.04900 0.14092 +v -0.13049 0.04421 0.15358 +v -0.13046 0.04677 0.15031 +v -0.13088 0.07777 0.14047 +v -0.13073 0.08113 0.13909 +v -0.13085 0.08383 0.13857 +v -0.13130 0.08838 0.14425 +v -0.13115 0.08845 0.14126 +v -0.12959 0.03803 0.19300 +v -0.12979 0.03849 0.18858 +v -0.12979 0.03976 0.18577 +v -0.12906 0.05201 0.20618 +v -0.12884 0.05501 0.20687 +v -0.12979 0.09379 0.20324 +v -0.12991 0.10065 0.19924 +v -0.13011 0.10209 0.19745 +v -0.12971 0.11011 0.19539 +v -0.12925 0.11404 0.18974 +v -0.13019 0.10465 0.19828 +v -0.12845 0.11757 0.18303 +v -0.12897 0.11465 0.18749 +v -0.12841 0.11605 0.18540 +v -0.12826 0.12041 0.17961 +v -0.12831 0.11990 0.18029 +v -0.12946 0.11422 0.16694 +v -0.12869 0.11851 0.17029 +v -0.12971 0.06760 0.21224 +v -0.12934 0.06979 0.21275 +v -0.12929 0.07110 0.21253 +v -0.12900 0.05732 0.20590 +v -0.12904 0.05789 0.20709 +v -0.12957 0.07521 0.21092 +v -0.12971 0.08862 0.20794 +v -0.12933 0.08580 0.21114 +v -0.12967 0.08820 0.20533 +v -0.13014 0.10102 0.13612 +v -0.13005 0.09628 0.13831 +v -0.13036 0.10224 0.13437 +v -0.13086 0.10743 0.13411 +v -0.13080 0.11077 0.13736 +v -0.12969 0.09365 0.14146 +v -0.13004 0.09527 0.13939 +v -0.12990 0.09263 0.14211 +v -0.13106 0.08911 0.14501 +v -0.13086 0.11298 0.14497 +v -0.13074 0.11164 0.14769 +v -0.13095 0.11272 0.14404 +v -0.13074 0.11171 0.14013 +v -0.13116 0.10976 0.14890 +v -0.12922 0.11530 0.16582 +v -0.12945 0.11621 0.16030 +v -0.12963 0.11577 0.15834 +v -0.12972 0.11589 0.15206 +v -0.12994 0.11499 0.14809 +v -0.12968 0.11608 0.14989 +v -0.13055 0.04524 0.16167 +v -0.13060 0.04523 0.16310 +v -0.13016 0.04028 0.17258 +v -0.13023 0.04223 0.17026 +v -0.12993 0.03986 0.18124 +v -0.13136 0.07250 0.13611 +v -0.13066 0.05153 0.13884 +v -0.13164 0.06692 0.13481 +v -0.13169 0.06551 0.13450 +v -0.13041 0.04613 0.14582 +v -0.13037 0.04567 0.15191 +v -0.13083 0.08143 0.13770 +v -0.13127 0.08875 0.14287 +v -0.13103 0.08727 0.13908 +v -0.13092 0.08465 0.13772 +v -0.13138 0.08839 0.14506 +v -0.12910 0.04278 0.20314 +v -0.12942 0.03837 0.19583 +v -0.12945 0.03634 0.19551 +v -0.12972 0.03759 0.19136 +v -0.12987 0.03960 0.18376 +v -0.12897 0.04932 0.20779 +v -0.12884 0.05293 0.20734 +v -0.12893 0.05634 0.20643 +v -0.12982 0.09386 0.20507 +v -0.12974 0.09865 0.20391 +v -0.12989 0.10249 0.20023 +v -0.13012 0.10370 0.19850 +v -0.12933 0.11278 0.19679 +v -0.12991 0.10956 0.19705 +v -0.12915 0.11514 0.19035 +v -0.13003 0.10805 0.19656 +v -0.12904 0.11463 0.18857 +v -0.12844 0.11684 0.18406 +v -0.12848 0.11568 0.18737 +v -0.12859 0.11553 0.18638 +v -0.12842 0.11971 0.17580 +v -0.12820 0.12054 0.17788 +v -0.12840 0.11792 0.18438 +v -0.12839 0.11948 0.18161 +v -0.12822 0.12054 0.17078 +v -0.12974 0.06269 0.21099 +v -0.12999 0.06489 0.21173 +v -0.12989 0.06644 0.21287 +v -0.12944 0.07651 0.21505 +v -0.12955 0.07815 0.21426 +v -0.12932 0.08363 0.21348 +v -0.13036 0.10029 0.13464 +v -0.13040 0.09827 0.13549 +v -0.13061 0.10428 0.13272 +v -0.13083 0.11078 0.13301 +v -0.13008 0.09338 0.14087 +v -0.13029 0.09403 0.13985 +v -0.13086 0.09050 0.14264 +v -0.13062 0.09145 0.14183 +v -0.13062 0.11317 0.14624 +v -0.13086 0.11371 0.14398 +v -0.13060 0.11370 0.14062 +v -0.13102 0.11042 0.14874 +v -0.12880 0.11827 0.16541 +v -0.12898 0.11837 0.16332 +v -0.12951 0.11681 0.15518 +v -0.12981 0.11568 0.15440 +v -0.13017 0.11438 0.14699 +v -0.13064 0.04396 0.16341 +v -0.13013 0.03696 0.17439 +v -0.13007 0.03749 0.17631 +v -0.13034 0.04042 0.16917 +v -0.12980 0.03778 0.17920 +v -0.13056 0.04243 0.15380 +v -0.13040 0.04096 0.15911 +v -0.13055 0.04303 0.16244 +v -0.13128 0.07844 0.13506 +v -0.13148 0.06822 0.13566 +v -0.13144 0.06993 0.13567 +v -0.13158 0.06329 0.13435 +v -0.13115 0.05610 0.13210 +v -0.13105 0.05267 0.13418 +v -0.13147 0.07097 0.13419 +v -0.13011 0.04343 0.14193 +v -0.13044 0.04457 0.14982 +v -0.13111 0.08027 0.13605 +v -0.13102 0.08451 0.13643 +v -0.13123 0.08949 0.14330 +v -0.13117 0.08953 0.14233 +v -0.13111 0.08979 0.13950 +v -0.12899 0.04381 0.20452 +v -0.12967 0.03539 0.19400 +v -0.12997 0.03619 0.19023 +v -0.12990 0.03733 0.18751 +v -0.12987 0.03715 0.18561 +v -0.12895 0.04758 0.20575 +v -0.12890 0.05126 0.20839 +v -0.12854 0.05380 0.20867 +v -0.12867 0.05541 0.20841 +v -0.12963 0.10222 0.20702 +v -0.12911 0.11446 0.19360 +v -0.12897 0.11524 0.18953 +v -0.13013 0.10706 0.19927 +v -0.13008 0.10569 0.20054 +v -0.12871 0.11546 0.18847 +v -0.12836 0.11658 0.18699 +v -0.12805 0.12069 0.17578 +v -0.12792 0.12080 0.18009 +v -0.12804 0.12086 0.17941 +v -0.12839 0.11926 0.18449 +v -0.12832 0.11972 0.18273 +v -0.12797 0.12050 0.18120 +v -0.12823 0.12063 0.17338 +v -0.12872 0.11825 0.16701 +v -0.12897 0.05772 0.21217 +v -0.12991 0.06724 0.21361 +v -0.12927 0.07123 0.21370 +v -0.12933 0.07282 0.21288 +v -0.12940 0.07942 0.21472 +v -0.12970 0.09063 0.20948 +v -0.12988 0.09348 0.20634 +v -0.12925 0.08572 0.21311 +v -0.13050 0.09644 0.13659 +v -0.13050 0.09513 0.13800 +v -0.13040 0.10262 0.13316 +v -0.13083 0.10787 0.13107 +v -0.13076 0.10594 0.13133 +v -0.13082 0.11275 0.13543 +v -0.13064 0.11357 0.13794 +v -0.13055 0.09456 0.13864 +v -0.13071 0.09200 0.14096 +v -0.13077 0.11403 0.14441 +v -0.13053 0.11452 0.14302 +v -0.13069 0.11080 0.14946 +v -0.12891 0.11872 0.16137 +v -0.12924 0.11720 0.15743 +v -0.12916 0.11858 0.15022 +v -0.12987 0.11554 0.14710 +v -0.13015 0.03699 0.17168 +v -0.12983 0.03780 0.18144 +v -0.13053 0.04084 0.15459 +v -0.13040 0.04013 0.15622 +v -0.13143 0.07690 0.13294 +v -0.13029 0.04858 0.13965 +v -0.13158 0.06301 0.13315 +v -0.13110 0.05403 0.13389 +v -0.13079 0.05030 0.13594 +v -0.13184 0.06767 0.13331 +v -0.13174 0.06818 0.13388 +v -0.13149 0.07264 0.13152 +v -0.13008 0.04301 0.14036 +v -0.13009 0.04185 0.14210 +v -0.13051 0.04249 0.15096 +v -0.13043 0.04395 0.14765 +v -0.13112 0.08162 0.13511 +v -0.13099 0.09038 0.14152 +v -0.13097 0.08853 0.13746 +v -0.13091 0.08625 0.13692 +v -0.12921 0.03776 0.20063 +v -0.12903 0.04199 0.20560 +v -0.12886 0.04588 0.20526 +v -0.12928 0.03618 0.19738 +v -0.12936 0.03394 0.19650 +v -0.12892 0.04687 0.20800 +v -0.12886 0.04865 0.20984 +v -0.12974 0.09671 0.20809 +v -0.12980 0.10258 0.20370 +v -0.12954 0.11217 0.19894 +v -0.12902 0.11466 0.19602 +v -0.12995 0.11007 0.19947 +v -0.12871 0.11631 0.19001 +v -0.12909 0.11535 0.19078 +v -0.13013 0.10903 0.20124 +v -0.12849 0.11635 0.18897 +v -0.12834 0.11672 0.18543 +v -0.12743 0.12175 0.17609 +v -0.12780 0.12121 0.17858 +v -0.12837 0.11860 0.18587 +v -0.12826 0.11994 0.18191 +v -0.12792 0.12136 0.17166 +v -0.12796 0.12117 0.16926 +v -0.12883 0.05662 0.21009 +v -0.12897 0.05830 0.21462 +v -0.12977 0.06524 0.21448 +v -0.12996 0.06667 0.21418 +v -0.12978 0.06788 0.21433 +v -0.12932 0.07008 0.21403 +v -0.12937 0.07456 0.21432 +v -0.12933 0.07804 0.21593 +v -0.12936 0.08879 0.21291 +v -0.12981 0.09243 0.20882 +v -0.12912 0.08497 0.21494 +v -0.12918 0.08156 0.21528 +v -0.13063 0.10177 0.13263 +v -0.13062 0.09954 0.13403 +v -0.13087 0.09583 0.13610 +v -0.13029 0.09584 0.13766 +v -0.13080 0.10303 0.13136 +v -0.13075 0.10965 0.12989 +v -0.13086 0.10517 0.12974 +v -0.13079 0.11366 0.13477 +v -0.13076 0.09275 0.14004 +v -0.13076 0.09371 0.13922 +v -0.13087 0.09124 0.14125 +v -0.13023 0.11508 0.14533 +v -0.13037 0.11482 0.13950 +v -0.13033 0.11484 0.14120 +v -0.12864 0.11937 0.16402 +v -0.12825 0.11994 0.16713 +v -0.12854 0.11987 0.16241 +v -0.12894 0.11857 0.15929 +v -0.12871 0.11950 0.15704 +v -0.12900 0.11907 0.15319 +v -0.12928 0.11841 0.14799 +v -0.13027 0.03362 0.17774 +v -0.13008 0.03470 0.17312 +v -0.12990 0.03708 0.17817 +v -0.12992 0.03488 0.18101 +v -0.13064 0.03807 0.15230 +v -0.13005 0.03584 0.16347 +v -0.13017 0.03678 0.15560 +v -0.13116 0.07896 0.13253 +v -0.13144 0.07526 0.13265 +v -0.13117 0.07994 0.13461 +v -0.13017 0.04564 0.13930 +v -0.13143 0.06083 0.13033 +v -0.13118 0.05573 0.13021 +v -0.13114 0.05070 0.13284 +v -0.13120 0.05104 0.13186 +v -0.13151 0.07050 0.13291 +v -0.13011 0.04175 0.13973 +v -0.13064 0.04121 0.15094 +v -0.13053 0.04292 0.14951 +v -0.13122 0.08426 0.13475 +v -0.13115 0.09072 0.13753 +v -0.13099 0.09132 0.14043 +v -0.13100 0.08537 0.13546 +v -0.12910 0.04010 0.20243 +v -0.12891 0.04424 0.20631 +v -0.12912 0.03996 0.20401 +v -0.12923 0.03402 0.19826 +v -0.12994 0.03346 0.19267 +v -0.13010 0.03515 0.18887 +v -0.12997 0.03459 0.18573 +v -0.12990 0.03399 0.18337 +v -0.12867 0.05275 0.20944 +v -0.12871 0.05171 0.21028 +v -0.12849 0.05427 0.20894 +v -0.12972 0.09946 0.20976 +v -0.12983 0.10468 0.20405 +v -0.12887 0.11527 0.19837 +v -0.12873 0.11615 0.19485 +v -0.12851 0.11752 0.19641 +v -0.12880 0.11664 0.19256 +v -0.13011 0.10859 0.20214 +v -0.12838 0.11703 0.18832 +v -0.12807 0.12108 0.17352 +v -0.12725 0.12134 0.18140 +v -0.12749 0.12143 0.17941 +v -0.12775 0.12158 0.17464 +v -0.12781 0.12117 0.17766 +v -0.12828 0.11976 0.18529 +v -0.12812 0.12030 0.18336 +v -0.12797 0.12049 0.18234 +v -0.12783 0.12154 0.17273 +v -0.12873 0.05535 0.21082 +v -0.12882 0.05587 0.21330 +v -0.12901 0.06114 0.21834 +v -0.12993 0.06722 0.21436 +v -0.12953 0.06926 0.21506 +v -0.12933 0.07218 0.21476 +v -0.12943 0.07184 0.21569 +v -0.12935 0.07520 0.21609 +v -0.12931 0.07327 0.21439 +v -0.12928 0.07667 0.21729 +v -0.12889 0.08020 0.21686 +v -0.12942 0.09306 0.21282 +v -0.12954 0.09369 0.21115 +v -0.12918 0.08690 0.21445 +v -0.13093 0.10091 0.13210 +v -0.13107 0.09834 0.13344 +v -0.13096 0.09719 0.13439 +v -0.13113 0.09472 0.13666 +v -0.13087 0.09455 0.13769 +v -0.13085 0.10601 0.12925 +v -0.13082 0.10699 0.12788 +v -0.13066 0.11056 0.12949 +v -0.13062 0.11441 0.13591 +v -0.13075 0.11328 0.13252 +v -0.13119 0.09319 0.13894 +v -0.13024 0.11550 0.14387 +v -0.13046 0.11501 0.13733 +v -0.12990 0.11653 0.14340 +v -0.12840 0.11978 0.16528 +v -0.12841 0.12028 0.16093 +v -0.12865 0.11998 0.16016 +v -0.12863 0.11965 0.15855 +v -0.12886 0.11954 0.15463 +v -0.12866 0.12021 0.15275 +v -0.12880 0.11971 0.15038 +v -0.12991 0.11648 0.14494 +v -0.13027 0.03280 0.17666 +v -0.12995 0.03442 0.16917 +v -0.13073 0.03848 0.15084 +v -0.13045 0.03848 0.15411 +v -0.12991 0.03445 0.15780 +v -0.13130 0.07671 0.13090 +v -0.13027 0.04649 0.13829 +v -0.13156 0.06522 0.13126 +v -0.13144 0.06319 0.12977 +v -0.13114 0.04697 0.13227 +v -0.13172 0.06762 0.13252 +v -0.13134 0.07498 0.12963 +v -0.13145 0.07052 0.13085 +v -0.13019 0.04295 0.13805 +v -0.13019 0.04041 0.14267 +v -0.13068 0.04072 0.14951 +v -0.13107 0.08089 0.13277 +v -0.13116 0.08310 0.13339 +v -0.13087 0.08970 0.13583 +v -0.13117 0.09189 0.13899 +v -0.13074 0.08772 0.13590 +v -0.13076 0.08659 0.13515 +v -0.12895 0.04557 0.21016 +v -0.12940 0.03872 0.20615 +v -0.12937 0.03190 0.19640 +v -0.12856 0.05042 0.21240 +v -0.12860 0.05508 0.20945 +v -0.12943 0.09661 0.21289 +v -0.12955 0.10276 0.20997 +v -0.12963 0.10509 0.20610 +v -0.12982 0.11194 0.20135 +v -0.12934 0.11368 0.20084 +v -0.12991 0.11218 0.20288 +v -0.12880 0.11669 0.19128 +v -0.12847 0.11760 0.18965 +v -0.12838 0.11827 0.18861 +v -0.12836 0.11902 0.18745 +v -0.12714 0.12231 0.17531 +v -0.12721 0.12197 0.17709 +v -0.12719 0.12181 0.17850 +v -0.12815 0.12033 0.18434 +v -0.12824 0.11976 0.18650 +v -0.12748 0.12204 0.17163 +v -0.12754 0.12200 0.17044 +v -0.12778 0.12101 0.16703 +v -0.12886 0.05647 0.21594 +v -0.12881 0.05728 0.21736 +v -0.12955 0.06686 0.21778 +v -0.12983 0.06701 0.21510 +v -0.12966 0.06826 0.21584 +v -0.12937 0.07357 0.21574 +v -0.12906 0.07748 0.21837 +v -0.12855 0.07953 0.21892 +v -0.12928 0.09084 0.21541 +v -0.12893 0.08270 0.21667 +v -0.12883 0.08671 0.21781 +v -0.13104 0.10168 0.13102 +v -0.13130 0.09878 0.13274 +v -0.13107 0.09626 0.13484 +v -0.13118 0.10228 0.12923 +v -0.13060 0.10989 0.12681 +v -0.13063 0.11283 0.13110 +v -0.13115 0.10424 0.12744 +v -0.13058 0.11496 0.13366 +v -0.13062 0.11463 0.13298 +v -0.13104 0.09322 0.13923 +v -0.12985 0.11653 0.14164 +v -0.12817 0.12059 0.16341 +v -0.12841 0.12004 0.16452 +v -0.12789 0.12084 0.16556 +v -0.12816 0.12074 0.16239 +v -0.12822 0.12082 0.15686 +v -0.12852 0.12035 0.15575 +v -0.12864 0.12043 0.15409 +v -0.12872 0.12011 0.14779 +v -0.12923 0.11944 0.14476 +v -0.13011 0.03099 0.17838 +v -0.13009 0.03390 0.17918 +v -0.12983 0.03193 0.17122 +v -0.12990 0.03206 0.18227 +v -0.13077 0.03645 0.15165 +v -0.13045 0.03680 0.15338 +v -0.12984 0.03307 0.16032 +v -0.13008 0.03435 0.15470 +v -0.13081 0.08064 0.12831 +v -0.13085 0.04667 0.13457 +v -0.13038 0.04429 0.13695 +v -0.13156 0.06932 0.13186 +v -0.13149 0.06004 0.12695 +v -0.13146 0.05869 0.12787 +v -0.13112 0.05279 0.12920 +v -0.13117 0.04948 0.13124 +v -0.13125 0.07184 0.12731 +v -0.13045 0.03921 0.13745 +v -0.13046 0.03776 0.13955 +v -0.13042 0.03954 0.14558 +v -0.13120 0.08484 0.13353 +v -0.13101 0.08564 0.13438 +v -0.13115 0.09184 0.13593 +v -0.13130 0.09275 0.13743 +v -0.12933 0.03678 0.20455 +v -0.12928 0.03503 0.20036 +v -0.12916 0.04256 0.21028 +v -0.12951 0.03869 0.20853 +v -0.12974 0.03138 0.19332 +v -0.12930 0.03161 0.19983 +v -0.12997 0.03198 0.19181 +v -0.13009 0.03407 0.18758 +v -0.12989 0.03240 0.18470 +v -0.12887 0.04679 0.21122 +v -0.12867 0.05407 0.21036 +v -0.12856 0.04836 0.21290 +v -0.12867 0.05223 0.21137 +v -0.12930 0.09980 0.21439 +v -0.12943 0.10593 0.20801 +v -0.12953 0.10264 0.21204 +v -0.12976 0.10719 0.20479 +v -0.12838 0.11799 0.19811 +v -0.12902 0.11530 0.20258 +v -0.12839 0.11847 0.19466 +v -0.12849 0.11910 0.19192 +v -0.12975 0.11212 0.20501 +v -0.12763 0.12186 0.17367 +v -0.12752 0.12106 0.18310 +v -0.12667 0.12207 0.18012 +v -0.12752 0.12207 0.17434 +v -0.12688 0.12237 0.17633 +v -0.12715 0.12180 0.17909 +v -0.12791 0.12065 0.18522 +v -0.12807 0.12035 0.18600 +v -0.12796 0.12070 0.18375 +v -0.12726 0.12225 0.17270 +v -0.12737 0.12218 0.16960 +v -0.12770 0.12166 0.16910 +v -0.12893 0.05408 0.21519 +v -0.12852 0.05704 0.21966 +v -0.12893 0.06548 0.22452 +v -0.12968 0.06970 0.21758 +v -0.12956 0.07090 0.21627 +v -0.12936 0.07473 0.21720 +v -0.12925 0.07619 0.21823 +v -0.12941 0.09365 0.21443 +v -0.12869 0.08463 0.21941 +v -0.13135 0.10020 0.13109 +v -0.13126 0.09976 0.13208 +v -0.13124 0.09762 0.13303 +v -0.13122 0.09491 0.13574 +v -0.13111 0.09570 0.13540 +v -0.13117 0.09603 0.13368 +v -0.13117 0.09398 0.13744 +v -0.13092 0.10592 0.12583 +v -0.13038 0.11265 0.12872 +v -0.12991 0.11711 0.13856 +v -0.12991 0.11734 0.13494 +v -0.13032 0.11517 0.13039 +v -0.13116 0.09282 0.13918 +v -0.12774 0.12129 0.16085 +v -0.12801 0.12090 0.15815 +v -0.12824 0.12111 0.15471 +v -0.12837 0.12093 0.15367 +v -0.12841 0.12076 0.15202 +v -0.12903 0.11960 0.14655 +v -0.12844 0.12058 0.14863 +v -0.12995 0.03384 0.16746 +v -0.12997 0.03105 0.18064 +v -0.12975 0.02844 0.17403 +v -0.12968 0.03070 0.16955 +v -0.13089 0.03440 0.15082 +v -0.13062 0.03599 0.15255 +v -0.12991 0.03323 0.16204 +v -0.12981 0.03281 0.15878 +v -0.13005 0.03362 0.15559 +v -0.13117 0.07624 0.12743 +v -0.13137 0.06673 0.12938 +v -0.13134 0.06189 0.12564 +v -0.13113 0.05463 0.12789 +v -0.13086 0.04426 0.13369 +v -0.13111 0.04637 0.13049 +v -0.13119 0.07427 0.12588 +v -0.13109 0.06890 0.12566 +v -0.13057 0.04288 0.13563 +v -0.13061 0.03963 0.13542 +v -0.13062 0.03649 0.14264 +v -0.13071 0.03707 0.14930 +v -0.13084 0.08289 0.12904 +v -0.13116 0.08565 0.13125 +v -0.13060 0.08820 0.13498 +v -0.13087 0.09246 0.13299 +v -0.13127 0.09302 0.13854 +v -0.13059 0.08740 0.13503 +v -0.13061 0.08743 0.13339 +v -0.12941 0.03418 0.20244 +v -0.12930 0.03346 0.20015 +v -0.12911 0.04441 0.21241 +v -0.12938 0.03513 0.20537 +v -0.12958 0.03474 0.20825 +v -0.12941 0.02951 0.19515 +v -0.12934 0.02771 0.19881 +v -0.12994 0.03213 0.18888 +v -0.12860 0.04983 0.21503 +v -0.12941 0.09575 0.21496 +v -0.12946 0.10523 0.20990 +v -0.12954 0.10517 0.21202 +v -0.12939 0.10905 0.20714 +v -0.12986 0.11244 0.20233 +v -0.12825 0.11866 0.19660 +v -0.12837 0.11837 0.19939 +v -0.12964 0.11339 0.20291 +v -0.12882 0.11621 0.20184 +v -0.12842 0.11933 0.19317 +v -0.12827 0.11886 0.19560 +v -0.12831 0.11912 0.18978 +v -0.12843 0.11906 0.19108 +v -0.12963 0.11057 0.20589 +v -0.12942 0.11390 0.20708 +v -0.12835 0.11928 0.18812 +v -0.12814 0.12000 0.18764 +v -0.12687 0.12155 0.18320 +v -0.12664 0.12207 0.17938 +v -0.12653 0.12204 0.18078 +v -0.12696 0.12262 0.17403 +v -0.12637 0.12275 0.17576 +v -0.12675 0.12233 0.17769 +v -0.12795 0.12078 0.18437 +v -0.12793 0.12049 0.18679 +v -0.12670 0.12294 0.17002 +v -0.12697 0.12252 0.17164 +v -0.12699 0.12222 0.16681 +v -0.12716 0.12240 0.16899 +v -0.12892 0.05559 0.21681 +v -0.12869 0.05585 0.21841 +v -0.12837 0.05790 0.22220 +v -0.12956 0.06948 0.22070 +v -0.12853 0.06036 0.22456 +v -0.12955 0.07340 0.21745 +v -0.12974 0.07152 0.21786 +v -0.12922 0.07660 0.21967 +v -0.12936 0.09239 0.21586 +v -0.12877 0.09099 0.22057 +v -0.12857 0.08715 0.22276 +v -0.13147 0.10006 0.13039 +v -0.13146 0.09920 0.13155 +v -0.13145 0.09814 0.13168 +v -0.13131 0.09424 0.13615 +v -0.13120 0.09569 0.13493 +v -0.13123 0.09539 0.13479 +v -0.13118 0.10236 0.12720 +v -0.13068 0.10863 0.12433 +v -0.13027 0.11435 0.12764 +v -0.12990 0.11713 0.13677 +v -0.12966 0.11823 0.13323 +v -0.12961 0.11856 0.13973 +v -0.12928 0.11924 0.14210 +v -0.12758 0.12154 0.16267 +v -0.12759 0.12143 0.15917 +v -0.12771 0.12151 0.15727 +v -0.12799 0.12143 0.15626 +v -0.12816 0.12121 0.15237 +v -0.12821 0.12095 0.15067 +v -0.12849 0.12094 0.14623 +v -0.12824 0.12109 0.14753 +v -0.12898 0.12035 0.14487 +v -0.12998 0.03347 0.16391 +v -0.12973 0.02883 0.18075 +v -0.12962 0.02741 0.17790 +v -0.12965 0.02917 0.17115 +v -0.12979 0.02986 0.18268 +v -0.12979 0.03098 0.18447 +v -0.13085 0.03481 0.15186 +v -0.12986 0.03260 0.16130 +v -0.12989 0.03214 0.15955 +v -0.12990 0.03273 0.15749 +v -0.13029 0.03372 0.15426 +v -0.13109 0.07699 0.12430 +v -0.13120 0.06542 0.12688 +v -0.13121 0.06096 0.12498 +v -0.13125 0.05804 0.12591 +v -0.13108 0.05532 0.12565 +v -0.13080 0.04998 0.12712 +v -0.13101 0.04944 0.12886 +v -0.13095 0.04130 0.13072 +v -0.13099 0.04620 0.12792 +v -0.13107 0.07287 0.12330 +v -0.13103 0.07064 0.12431 +v -0.13066 0.03615 0.13530 +v -0.13056 0.03560 0.13866 +v -0.13052 0.03799 0.14638 +v -0.13120 0.08554 0.13262 +v -0.13107 0.08590 0.13343 +v -0.13057 0.08949 0.13351 +v -0.13127 0.09375 0.13546 +v -0.13133 0.09308 0.13634 +v -0.12947 0.03318 0.20177 +v -0.12924 0.04132 0.21150 +v -0.12911 0.04388 0.21296 +v -0.12957 0.03684 0.20919 +v -0.12940 0.02819 0.19283 +v -0.12935 0.02908 0.19732 +v -0.12972 0.03029 0.19115 +v -0.12926 0.02983 0.20129 +v -0.12935 0.03224 0.20102 +v -0.12862 0.04874 0.21611 +v -0.12931 0.09946 0.21566 +v -0.12944 0.10284 0.21566 +v -0.12915 0.10871 0.21063 +v -0.12918 0.10953 0.20899 +v -0.12811 0.11899 0.19801 +v -0.12837 0.11869 0.20016 +v -0.12916 0.11489 0.20672 +v -0.12815 0.11837 0.20571 +v -0.12817 0.11953 0.19423 +v -0.12808 0.11941 0.19520 +v -0.12832 0.11978 0.19180 +v -0.12946 0.11256 0.20771 +v -0.12695 0.12254 0.17345 +v -0.12586 0.12237 0.18036 +v -0.12667 0.12273 0.17473 +v -0.12688 0.12256 0.17525 +v -0.12636 0.12272 0.17652 +v -0.12634 0.12237 0.17849 +v -0.12744 0.12110 0.18545 +v -0.12761 0.12093 0.18651 +v -0.12658 0.12269 0.17246 +v -0.12741 0.12177 0.16776 +v -0.12660 0.12267 0.16512 +v -0.12877 0.05234 0.21849 +v -0.12820 0.05546 0.22165 +v -0.12824 0.05623 0.22143 +v -0.12920 0.07201 0.22543 +v -0.12852 0.06175 0.22757 +v -0.12981 0.07272 0.21854 +v -0.12936 0.07530 0.21864 +v -0.12906 0.07768 0.22148 +v -0.12854 0.08140 0.21992 +v -0.12921 0.09231 0.21762 +v -0.12947 0.09316 0.21612 +v -0.12862 0.08408 0.22234 +v -0.13148 0.09893 0.13031 +v -0.13128 0.09658 0.13212 +v -0.13115 0.09433 0.13394 +v -0.13091 0.10205 0.12368 +v -0.13132 0.10104 0.12862 +v -0.13076 0.10523 0.12323 +v -0.13061 0.11081 0.12394 +v -0.13057 0.11117 0.12567 +v -0.13024 0.11436 0.12870 +v -0.12947 0.11952 0.13654 +v -0.13016 0.11653 0.13154 +v -0.12943 0.11982 0.13473 +v -0.12893 0.12037 0.14276 +v -0.12691 0.12225 0.16455 +v -0.12688 0.12232 0.16216 +v -0.12694 0.12210 0.16000 +v -0.12702 0.12205 0.15801 +v -0.12785 0.12176 0.15464 +v -0.12758 0.12193 0.15386 +v -0.12789 0.12143 0.14859 +v -0.12775 0.12167 0.15117 +v -0.12992 0.03212 0.16714 +v -0.13001 0.03299 0.16537 +v -0.12959 0.02583 0.17298 +v -0.12953 0.02861 0.16925 +v -0.12961 0.02699 0.17121 +v -0.13054 0.03462 0.14748 +v -0.13099 0.03374 0.15181 +v -0.13064 0.03486 0.15276 +v -0.13001 0.03184 0.16048 +v -0.13000 0.03210 0.16181 +v -0.13001 0.03172 0.15854 +v -0.13039 0.03204 0.15482 +v -0.13021 0.03222 0.15597 +v -0.13069 0.08123 0.12489 +v -0.13109 0.06491 0.12517 +v -0.13078 0.06508 0.12296 +v -0.13077 0.05196 0.12489 +v -0.13077 0.04132 0.13371 +v -0.13093 0.04059 0.12787 +v -0.13113 0.07479 0.12363 +v -0.13089 0.06890 0.12332 +v -0.13060 0.03480 0.14116 +v -0.13048 0.03504 0.14496 +v -0.13100 0.08462 0.13019 +v -0.13122 0.08541 0.13321 +v -0.13110 0.08670 0.13155 +v -0.13051 0.08989 0.13193 +v -0.13071 0.08752 0.13231 +v -0.12931 0.03253 0.20396 +v -0.12947 0.03852 0.21088 +v -0.12868 0.04694 0.21577 +v -0.12941 0.03301 0.20708 +v -0.12947 0.03606 0.21132 +v -0.12923 0.02588 0.19374 +v -0.12888 0.02711 0.20624 +v -0.12867 0.05028 0.21769 +v -0.12945 0.09679 0.21670 +v -0.12938 0.10695 0.21496 +v -0.12787 0.11960 0.19693 +v -0.12811 0.11922 0.19928 +v -0.12875 0.11611 0.20663 +v -0.12838 0.11877 0.20111 +v -0.12836 0.11805 0.20334 +v -0.12794 0.12028 0.19383 +v -0.12813 0.11983 0.19084 +v -0.12803 0.12034 0.19212 +v -0.12945 0.11392 0.20846 +v -0.12809 0.12006 0.18918 +v -0.12771 0.12074 0.18761 +v -0.12684 0.12262 0.17292 +v -0.12590 0.12229 0.18130 +v -0.12526 0.12257 0.17924 +v -0.12629 0.12218 0.18082 +v -0.12620 0.12294 0.17448 +v -0.12614 0.12284 0.17630 +v -0.12604 0.12273 0.17742 +v -0.12592 0.12326 0.17099 +v -0.12621 0.12299 0.17140 +v -0.12659 0.12296 0.16918 +v -0.12663 0.12278 0.16820 +v -0.12621 0.12309 0.16631 +v -0.12863 0.05395 0.21968 +v -0.12844 0.05945 0.22695 +v -0.12820 0.05634 0.22358 +v -0.12978 0.07210 0.22029 +v -0.12978 0.07071 0.21899 +v -0.12989 0.07345 0.21923 +v -0.12879 0.07942 0.22209 +v -0.12954 0.07583 0.22192 +v -0.12979 0.07442 0.22046 +v -0.12878 0.08091 0.22351 +v -0.12865 0.08997 0.22298 +v -0.12895 0.09423 0.22067 +v -0.12858 0.08548 0.22502 +v -0.13146 0.09983 0.12959 +v -0.13140 0.09730 0.13044 +v -0.13112 0.09484 0.13241 +v -0.13102 0.10053 0.12510 +v -0.13128 0.09853 0.12729 +v -0.13058 0.10803 0.12311 +v -0.13054 0.11451 0.12466 +v -0.13016 0.11497 0.12818 +v -0.12999 0.11749 0.12956 +v -0.12945 0.11986 0.13774 +v -0.12935 0.12015 0.13261 +v -0.12931 0.12025 0.13985 +v -0.12902 0.12051 0.14139 +v -0.12647 0.12278 0.16252 +v -0.12761 0.12197 0.15607 +v -0.12865 0.12113 0.14490 +v -0.12755 0.12184 0.14751 +v -0.12859 0.12128 0.14384 +v -0.13012 0.03161 0.16243 +v -0.12922 0.02563 0.18384 +v -0.12921 0.02306 0.17640 +v -0.12961 0.02755 0.16970 +v -0.13073 0.03372 0.14956 +v -0.13088 0.03307 0.15079 +v -0.13082 0.03402 0.15263 +v -0.13009 0.03132 0.15971 +v -0.13007 0.03199 0.15735 +v -0.13059 0.03218 0.15398 +v -0.13084 0.08466 0.12803 +v -0.13091 0.07911 0.12407 +v -0.13091 0.06750 0.12404 +v -0.13080 0.05823 0.12378 +v -0.13064 0.06414 0.12206 +v -0.13107 0.05607 0.12503 +v -0.13063 0.05315 0.12366 +v -0.13064 0.04979 0.12451 +v -0.13083 0.04266 0.12613 +v -0.13096 0.03845 0.12941 +v -0.13091 0.07432 0.12209 +v -0.13083 0.07068 0.12279 +v -0.13051 0.03317 0.13858 +v -0.13080 0.08603 0.12819 +v -0.13050 0.08852 0.13249 +v -0.13054 0.09087 0.12979 +v -0.12933 0.03310 0.20564 +v -0.12931 0.03151 0.20239 +v -0.12927 0.03849 0.21267 +v -0.12901 0.04175 0.21395 +v -0.12870 0.04604 0.21672 +v -0.12950 0.03322 0.20877 +v -0.12933 0.02768 0.18770 +v -0.12912 0.02526 0.19126 +v -0.12910 0.02241 0.19636 +v -0.12897 0.02172 0.20272 +v -0.12900 0.02885 0.20473 +v -0.12950 0.10099 0.21767 +v -0.12951 0.09838 0.21778 +v -0.12915 0.10932 0.21521 +v -0.12904 0.11126 0.21379 +v -0.12928 0.10609 0.21694 +v -0.12769 0.11986 0.19804 +v -0.12808 0.11950 0.20038 +v -0.12932 0.11469 0.20792 +v -0.12897 0.11597 0.20926 +v -0.12809 0.11835 0.20850 +v -0.12809 0.11901 0.20330 +v -0.12776 0.12034 0.19414 +v -0.12812 0.12009 0.19318 +v -0.12774 0.12028 0.19452 +v -0.12760 0.12021 0.19520 +v -0.12795 0.12008 0.19009 +v -0.12811 0.12009 0.19143 +v -0.12932 0.11345 0.21013 +v -0.12782 0.12062 0.18832 +v -0.12627 0.12282 0.17316 +v -0.12605 0.12193 0.18408 +v -0.12652 0.12162 0.18587 +v -0.12369 0.12292 0.18078 +v -0.12528 0.12300 0.17556 +v -0.12712 0.12131 0.18656 +v -0.12727 0.12112 0.18811 +v -0.12557 0.12354 0.16935 +v -0.12545 0.12303 0.17244 +v -0.12592 0.12337 0.16888 +v -0.12608 0.12309 0.16419 +v -0.12599 0.12327 0.16525 +v -0.12842 0.05393 0.22222 +v -0.12971 0.07411 0.22198 +v -0.12842 0.05976 0.22938 +v -0.12992 0.07286 0.21942 +v -0.12886 0.07890 0.22377 +v -0.12940 0.07641 0.22368 +v -0.12872 0.08304 0.22405 +v -0.12934 0.09378 0.21778 +v -0.12871 0.08998 0.22417 +v -0.12853 0.09176 0.22339 +v -0.12852 0.09312 0.22334 +v -0.12856 0.08773 0.22518 +v -0.13103 0.09458 0.12990 +v -0.13081 0.09859 0.12351 +v -0.13057 0.10148 0.12095 +v -0.13051 0.11087 0.12213 +v -0.13024 0.10720 0.12113 +v -0.13013 0.11646 0.12718 +v -0.12908 0.12095 0.13674 +v -0.12923 0.12051 0.13512 +v -0.12969 0.11887 0.13040 +v -0.12924 0.12072 0.13414 +v -0.12833 0.12145 0.14200 +v -0.12594 0.12296 0.16148 +v -0.12643 0.12248 0.15915 +v -0.12670 0.12250 0.15667 +v -0.12719 0.12238 0.15501 +v -0.12725 0.12229 0.15588 +v -0.12700 0.12239 0.15227 +v -0.12816 0.12175 0.14545 +v -0.12766 0.12197 0.14632 +v -0.12690 0.12231 0.14914 +v -0.12726 0.12220 0.15000 +v -0.12994 0.02854 0.16663 +v -0.13013 0.03140 0.16487 +v -0.12934 0.02219 0.17268 +v -0.12958 0.02450 0.17156 +v -0.12971 0.02831 0.16827 +v -0.13045 0.03151 0.14876 +v -0.13105 0.03295 0.15187 +v -0.13102 0.03318 0.15258 +v -0.13026 0.03093 0.16088 +v -0.13021 0.03056 0.15910 +v -0.13042 0.03076 0.15762 +v -0.13073 0.03331 0.15332 +v -0.13045 0.03085 0.15664 +v -0.13049 0.03126 0.15415 +v -0.13080 0.08538 0.12556 +v -0.13105 0.07784 0.12367 +v -0.13082 0.07977 0.12288 +v -0.13104 0.07678 0.12314 +v -0.13037 0.06305 0.12118 +v -0.13049 0.06738 0.12191 +v -0.13083 0.05517 0.12423 +v -0.13072 0.05229 0.12401 +v -0.13069 0.04827 0.12503 +v -0.13045 0.05159 0.12316 +v -0.13070 0.04088 0.12517 +v -0.13077 0.04471 0.12477 +v -0.13075 0.03798 0.12530 +v -0.13058 0.07132 0.12168 +v -0.13053 0.06909 0.12166 +v -0.13069 0.03145 0.13252 +v -0.13017 0.03006 0.14037 +v -0.13026 0.03174 0.14457 +v -0.13066 0.08702 0.12822 +v -0.13051 0.08851 0.13143 +v -0.13042 0.08914 0.13043 +v -0.13075 0.08762 0.13079 +v -0.12912 0.03084 0.20581 +v -0.12863 0.04468 0.21737 +v -0.12871 0.04895 0.21830 +v -0.12914 0.03103 0.20742 +v -0.12913 0.03267 0.21217 +v -0.12904 0.02505 0.18910 +v -0.12916 0.02232 0.19220 +v -0.12855 0.02482 0.20978 +v -0.12880 0.02681 0.20827 +v -0.12866 0.05038 0.21915 +v -0.12944 0.09522 0.21753 +v -0.12949 0.10226 0.21701 +v -0.12916 0.11229 0.21196 +v -0.12949 0.10213 0.21852 +v -0.12911 0.10956 0.21643 +v -0.12741 0.12031 0.19641 +v -0.12770 0.11994 0.19935 +v -0.12926 0.11515 0.20871 +v -0.12859 0.11675 0.20881 +v -0.12824 0.11898 0.20211 +v -0.12810 0.11956 0.20101 +v -0.12782 0.11921 0.20689 +v -0.12782 0.11932 0.20490 +v -0.12767 0.12061 0.19337 +v -0.12762 0.12051 0.19082 +v -0.12943 0.11451 0.20873 +v -0.12945 0.11425 0.20917 +v -0.12787 0.12044 0.18914 +v -0.12497 0.12244 0.18295 +v -0.12442 0.12278 0.17860 +v -0.12446 0.12313 0.17524 +v -0.12531 0.12326 0.17124 +v -0.12517 0.12346 0.17035 +v -0.12587 0.12334 0.16747 +v -0.12555 0.12350 0.16622 +v -0.12841 0.05277 0.22327 +v -0.12830 0.05497 0.22399 +v -0.12839 0.05753 0.22692 +v -0.12953 0.07508 0.22420 +v -0.12990 0.07340 0.22004 +v -0.12843 0.05697 0.22827 +v -0.12959 0.07550 0.22286 +v -0.12901 0.08161 0.22524 +v -0.12881 0.09630 0.22331 +v -0.12867 0.08386 0.22540 +v -0.12850 0.08584 0.22615 +v -0.13097 0.09560 0.12600 +v -0.13013 0.10438 0.11980 +v -0.13063 0.11428 0.12297 +v -0.13025 0.10920 0.12119 +v -0.13006 0.11724 0.12611 +v -0.12996 0.11837 0.12861 +v -0.12914 0.12076 0.13808 +v -0.12914 0.12068 0.13601 +v -0.12904 0.12110 0.13720 +v -0.12933 0.12012 0.13146 +v -0.12899 0.12121 0.13352 +v -0.12901 0.12105 0.14041 +v -0.12872 0.12129 0.14120 +v -0.12572 0.12333 0.16260 +v -0.12625 0.12267 0.16025 +v -0.12592 0.12275 0.15757 +v -0.12658 0.12269 0.15448 +v -0.12652 0.12271 0.15339 +v -0.12702 0.12238 0.15103 +v -0.12833 0.12176 0.14459 +v -0.12699 0.12237 0.14650 +v -0.12638 0.12252 0.14785 +v -0.12805 0.12194 0.14335 +v -0.13018 0.03036 0.16322 +v -0.12879 0.01975 0.18159 +v -0.12873 0.01766 0.17389 +v -0.12976 0.02554 0.16917 +v -0.13084 0.03196 0.15155 +v -0.13026 0.03049 0.16061 +v -0.13025 0.03083 0.15829 +v -0.13044 0.03084 0.15507 +v -0.13080 0.03159 0.15273 +v -0.13080 0.03240 0.15332 +v -0.13077 0.08347 0.12413 +v -0.13105 0.07828 0.12304 +v -0.13076 0.08144 0.12349 +v -0.12964 0.05796 0.11998 +v -0.13023 0.06526 0.12071 +v -0.13008 0.06748 0.12058 +v -0.12995 0.05553 0.12128 +v -0.13073 0.04474 0.12390 +v -0.13038 0.04856 0.12313 +v -0.13054 0.04260 0.12392 +v -0.13081 0.03552 0.12750 +v -0.13072 0.07665 0.12167 +v -0.12954 0.07203 0.11833 +v -0.13050 0.03063 0.13595 +v -0.13069 0.08681 0.12648 +v -0.13069 0.09183 0.12697 +v -0.13033 0.08910 0.12923 +v -0.12864 0.03880 0.21680 +v -0.12885 0.03523 0.21597 +v -0.12863 0.04266 0.21660 +v -0.12846 0.04450 0.21993 +v -0.12904 0.03076 0.20985 +v -0.12877 0.03240 0.21584 +v -0.12907 0.02301 0.19038 +v -0.12864 0.01676 0.19850 +v -0.12912 0.02067 0.19306 +v -0.12851 0.01943 0.20606 +v -0.12874 0.02795 0.20987 +v -0.12844 0.04855 0.22117 +v -0.12951 0.10046 0.21896 +v -0.12943 0.09839 0.21897 +v -0.12902 0.11222 0.21616 +v -0.12904 0.11254 0.21366 +v -0.12907 0.10659 0.22178 +v -0.12884 0.10955 0.22048 +v -0.12710 0.12056 0.19777 +v -0.12778 0.11994 0.20051 +v -0.12924 0.11548 0.20953 +v -0.12856 0.11677 0.20997 +v -0.12769 0.11999 0.20099 +v -0.12763 0.11988 0.20945 +v -0.12785 0.11948 0.20389 +v -0.12785 0.11961 0.20275 +v -0.12679 0.12096 0.19538 +v -0.12740 0.12080 0.19002 +v -0.12731 0.12093 0.19264 +v -0.12715 0.12089 0.19100 +v -0.12917 0.11401 0.21213 +v -0.12926 0.11490 0.21020 +v -0.12541 0.12301 0.17371 +v -0.12508 0.12223 0.18556 +v -0.12660 0.12154 0.18805 +v -0.12526 0.12358 0.16961 +v -0.12507 0.12357 0.16703 +v -0.12382 0.12340 0.17141 +v -0.12553 0.12351 0.16490 +v -0.12837 0.05032 0.22312 +v -0.12848 0.05502 0.22714 +v -0.12900 0.07982 0.22500 +v -0.12911 0.08113 0.22534 +v -0.12854 0.09015 0.22739 +v -0.12862 0.09129 0.22492 +v -0.12860 0.09323 0.22600 +v -0.12898 0.09793 0.22219 +v -0.12870 0.09555 0.22558 +v -0.12833 0.08662 0.22886 +v -0.13072 0.09702 0.12270 +v -0.13047 0.09752 0.12152 +v -0.13009 0.10108 0.11857 +v -0.13033 0.11695 0.12329 +v -0.13039 0.11110 0.12118 +v -0.13051 0.11355 0.12149 +v -0.12982 0.10847 0.11980 +v -0.12968 0.10637 0.11844 +v -0.13023 0.11655 0.12525 +v -0.12874 0.12135 0.13559 +v -0.12861 0.12159 0.13701 +v -0.12909 0.12122 0.13408 +v -0.12909 0.12098 0.13267 +v -0.12932 0.12009 0.13010 +v -0.12960 0.11960 0.12917 +v -0.12831 0.12169 0.14110 +v -0.12522 0.12357 0.16425 +v -0.12546 0.12308 0.16026 +v -0.12447 0.12348 0.16095 +v -0.12595 0.12283 0.15967 +v -0.12571 0.12285 0.15869 +v -0.12659 0.12269 0.15557 +v -0.12590 0.12292 0.15574 +v -0.12616 0.12289 0.15248 +v -0.12642 0.12282 0.15203 +v -0.12790 0.12214 0.14496 +v -0.12753 0.12228 0.14556 +v -0.12830 0.12181 0.14404 +v -0.12634 0.12273 0.15053 +v -0.12571 0.12285 0.14910 +v -0.12761 0.12209 0.14235 +v -0.12892 0.02230 0.18497 +v -0.12867 0.01803 0.17686 +v -0.12966 0.02351 0.17038 +v -0.12884 0.01695 0.17204 +v -0.12884 0.02373 0.18721 +v -0.12957 0.02562 0.14465 +v -0.13106 0.03255 0.15235 +v -0.13101 0.03272 0.15294 +v -0.13016 0.02895 0.15968 +v -0.13031 0.02980 0.15808 +v -0.13045 0.03014 0.15736 +v -0.13029 0.02947 0.15254 +v -0.13090 0.08545 0.12391 +v -0.13099 0.07776 0.12271 +v -0.13068 0.08134 0.12234 +v -0.13071 0.07850 0.12181 +v -0.12955 0.05610 0.11996 +v -0.12939 0.05960 0.11860 +v -0.12938 0.06475 0.11793 +v -0.12998 0.05289 0.12156 +v -0.12991 0.05004 0.12145 +v -0.13058 0.03889 0.12389 +v -0.13045 0.04066 0.12365 +v -0.13057 0.04433 0.12342 +v -0.13052 0.03418 0.12453 +v -0.12945 0.07761 0.11800 +v -0.12948 0.06961 0.11866 +v -0.12992 0.07471 0.11919 +v -0.13055 0.02857 0.13316 +v -0.13065 0.02929 0.13170 +v -0.13023 0.02809 0.13639 +v -0.13037 0.08825 0.12755 +v -0.13028 0.08864 0.12869 +v -0.13051 0.08831 0.13026 +v -0.13039 0.08923 0.12788 +v -0.12850 0.04104 0.21705 +v -0.12845 0.04272 0.21860 +v -0.12835 0.04663 0.22137 +v -0.12856 0.02900 0.21423 +v -0.12884 0.02313 0.18852 +v -0.12928 0.02083 0.19031 +v -0.12876 0.01944 0.20273 +v -0.12810 0.02067 0.21274 +v -0.12956 0.10111 0.21864 +v -0.12906 0.11354 0.21437 +v -0.12884 0.11347 0.21874 +v -0.12893 0.11353 0.21716 +v -0.12665 0.12094 0.19795 +v -0.12922 0.11545 0.20995 +v -0.12797 0.11961 0.20214 +v -0.12755 0.12004 0.20202 +v -0.12758 0.11968 0.20641 +v -0.12721 0.12041 0.20760 +v -0.12785 0.11906 0.21154 +v -0.12839 0.11693 0.21119 +v -0.12746 0.11991 0.20482 +v -0.12669 0.12121 0.19409 +v -0.12914 0.11471 0.21122 +v -0.12573 0.12196 0.18706 +v -0.12378 0.12350 0.17039 +v -0.12395 0.12356 0.16967 +v -0.12459 0.12312 0.17336 +v -0.12505 0.12368 0.16483 +v -0.12831 0.05058 0.22486 +v -0.12838 0.05301 0.22542 +v -0.12867 0.08341 0.22649 +v -0.12879 0.09810 0.22395 +v -0.12826 0.08449 0.23011 +v -0.13074 0.09479 0.12383 +v -0.13075 0.09280 0.12470 +v -0.13009 0.09948 0.11853 +v -0.12996 0.10310 0.11878 +v -0.13029 0.11568 0.12065 +v -0.12998 0.10983 0.11993 +v -0.12956 0.10803 0.11884 +v -0.12958 0.10584 0.11790 +v -0.12981 0.11893 0.12773 +v -0.12996 0.11824 0.12385 +v -0.12870 0.12137 0.13847 +v -0.12874 0.12150 0.14007 +v -0.12898 0.12093 0.13150 +v -0.12888 0.12092 0.13054 +v -0.12862 0.12156 0.13278 +v -0.12888 0.12146 0.13406 +v -0.12973 0.11940 0.12849 +v -0.12865 0.12151 0.14075 +v -0.12735 0.12217 0.14098 +v -0.12394 0.12382 0.16290 +v -0.12467 0.12320 0.15819 +v -0.12499 0.12309 0.15688 +v -0.12568 0.12304 0.15387 +v -0.12590 0.12301 0.15328 +v -0.12784 0.12223 0.14395 +v -0.12607 0.12274 0.14649 +v -0.12708 0.12261 0.14513 +v -0.12491 0.12307 0.14773 +v -0.12739 0.12249 0.14385 +v -0.13010 0.02583 0.16635 +v -0.13005 0.02794 0.16542 +v -0.12887 0.01983 0.18490 +v -0.12889 0.02232 0.18667 +v -0.12839 0.01487 0.18241 +v -0.12937 0.02079 0.17120 +v -0.12852 0.01457 0.17407 +v -0.12850 0.01604 0.17538 +v -0.12984 0.02230 0.16831 +v -0.13004 0.02776 0.16377 +v -0.13080 0.08478 0.12287 +v -0.13088 0.08667 0.12443 +v -0.13075 0.08234 0.12277 +v -0.13075 0.08713 0.12550 +v -0.13047 0.08054 0.12128 +v -0.12926 0.05616 0.11873 +v -0.12942 0.06220 0.11829 +v -0.12923 0.05800 0.11848 +v -0.12930 0.06635 0.11807 +v -0.12958 0.05170 0.12036 +v -0.12945 0.05380 0.11948 +v -0.13002 0.04696 0.12145 +v -0.12978 0.04768 0.12073 +v -0.13054 0.03653 0.12416 +v -0.13016 0.04162 0.12253 +v -0.13005 0.04347 0.12176 +v -0.13055 0.03152 0.12540 +v -0.13010 0.08109 0.12002 +v -0.12883 0.07020 0.11766 +v -0.12940 0.07434 0.11805 +v -0.12960 0.02495 0.13849 +v -0.13052 0.08829 0.12667 +v -0.13035 0.08833 0.12844 +v -0.13070 0.09064 0.12553 +v -0.12862 0.03366 0.21813 +v -0.12842 0.04173 0.21767 +v -0.12847 0.04317 0.22174 +v -0.12837 0.03010 0.21860 +v -0.12877 0.02278 0.18771 +v -0.12907 0.02101 0.18840 +v -0.12849 0.01615 0.20093 +v -0.12874 0.01662 0.19547 +v -0.12918 0.01922 0.18936 +v -0.12808 0.02403 0.21523 +v -0.12798 0.01645 0.21007 +v -0.12819 0.01474 0.20354 +v -0.12838 0.04788 0.22311 +v -0.12906 0.10230 0.22277 +v -0.12898 0.11442 0.21561 +v -0.12882 0.10981 0.22368 +v -0.12868 0.11269 0.22081 +v -0.12682 0.12068 0.19987 +v -0.12704 0.12043 0.20125 +v -0.12901 0.11555 0.21085 +v -0.12725 0.12045 0.20929 +v -0.12765 0.11975 0.21053 +v -0.12749 0.11998 0.20390 +v -0.12570 0.12172 0.19593 +v -0.12657 0.12128 0.19063 +v -0.12672 0.12123 0.19229 +v -0.12908 0.11490 0.21248 +v -0.12909 0.11462 0.21410 +v -0.12416 0.12361 0.16802 +v -0.12234 0.12377 0.17014 +v -0.12236 0.12373 0.17291 +v -0.12840 0.05275 0.22648 +v -0.12845 0.05447 0.22862 +v -0.12829 0.08679 0.23153 +v -0.12845 0.09462 0.22851 +v -0.12868 0.09957 0.22558 +v -0.12873 0.10030 0.22465 +v -0.12985 0.09424 0.11943 +v -0.13040 0.09491 0.12171 +v -0.13024 0.09843 0.11987 +v -0.12992 0.09996 0.11795 +v -0.12965 0.10478 0.11823 +v -0.12994 0.10184 0.11823 +v -0.13020 0.11730 0.12274 +v -0.13023 0.11405 0.11982 +v -0.12998 0.11084 0.11925 +v -0.12961 0.10889 0.11910 +v -0.12956 0.10737 0.11808 +v -0.12940 0.10648 0.11768 +v -0.12972 0.11922 0.12642 +v -0.12814 0.12187 0.13632 +v -0.12827 0.12176 0.13802 +v -0.12862 0.12160 0.13456 +v -0.12885 0.12127 0.13215 +v -0.12916 0.12052 0.12921 +v -0.12835 0.12176 0.13373 +v -0.12945 0.12008 0.12835 +v -0.12849 0.12172 0.14005 +v -0.12429 0.12377 0.16463 +v -0.12330 0.12366 0.15937 +v -0.12325 0.12353 0.15621 +v -0.12518 0.12318 0.15256 +v -0.12541 0.12309 0.15076 +v -0.12435 0.12334 0.15038 +v -0.12634 0.12268 0.14212 +v -0.12871 0.01760 0.18391 +v -0.12841 0.01379 0.17730 +v -0.12974 0.02064 0.16852 +v -0.12953 0.01897 0.16878 +v -0.12864 0.01415 0.17093 +v -0.12910 0.02244 0.15178 +v -0.12999 0.02742 0.15676 +v -0.12981 0.02594 0.16030 +v -0.13095 0.08564 0.12299 +v -0.13075 0.08335 0.12309 +v -0.12922 0.06038 0.11787 +v -0.12914 0.05880 0.11775 +v -0.12957 0.06804 0.11905 +v -0.12920 0.06533 0.11763 +v -0.12931 0.06377 0.11770 +v -0.12994 0.04532 0.12103 +v -0.12956 0.04846 0.11973 +v -0.12951 0.05064 0.11992 +v -0.12998 0.03974 0.12206 +v -0.13012 0.03729 0.12245 +v -0.13025 0.03444 0.12301 +v -0.13032 0.03164 0.12345 +v -0.12961 0.07948 0.11852 +v -0.12955 0.07599 0.11829 +v -0.12892 0.07189 0.11753 +v -0.12900 0.06830 0.11791 +v -0.12936 0.07284 0.11796 +v -0.13047 0.02659 0.13020 +v -0.13026 0.02554 0.13404 +v -0.13052 0.02785 0.12768 +v -0.12921 0.02059 0.13941 +v -0.12972 0.02525 0.13717 +v -0.12831 0.03655 0.21989 +v -0.12836 0.03797 0.21930 +v -0.12834 0.04034 0.21945 +v -0.12846 0.01298 0.19894 +v -0.12847 0.01204 0.19865 +v -0.12781 0.01572 0.21290 +v -0.12779 0.01926 0.21801 +v -0.12889 0.10828 0.22394 +v -0.12868 0.11125 0.22219 +v -0.12893 0.10256 0.22432 +v -0.12880 0.11438 0.21798 +v -0.12846 0.11407 0.22167 +v -0.12876 0.11478 0.21688 +v -0.12581 0.12142 0.19865 +v -0.12722 0.12025 0.20307 +v -0.12697 0.12043 0.20639 +v -0.12729 0.12036 0.20998 +v -0.12673 0.12085 0.20773 +v -0.12853 0.11674 0.21293 +v -0.12742 0.12003 0.21155 +v -0.12885 0.11573 0.21176 +v -0.12633 0.12101 0.20600 +v -0.12344 0.12335 0.17462 +v -0.12284 0.12366 0.16935 +v -0.12275 0.12361 0.16615 +v -0.12837 0.04436 0.22376 +v -0.12838 0.09179 0.23054 +v -0.12849 0.09802 0.22825 +v -0.13067 0.09265 0.12326 +v -0.13076 0.09092 0.12409 +v -0.12978 0.09645 0.11844 +v -0.12991 0.09770 0.11861 +v -0.12987 0.09881 0.11806 +v -0.12969 0.10104 0.11768 +v -0.12956 0.10262 0.11773 +v -0.13011 0.11736 0.12132 +v -0.12998 0.11253 0.11847 +v -0.13007 0.11520 0.11865 +v -0.12953 0.10850 0.11801 +v -0.12906 0.10457 0.11730 +v -0.12942 0.12020 0.12715 +v -0.12973 0.11939 0.12538 +v -0.12782 0.12196 0.13496 +v -0.12807 0.12197 0.13698 +v -0.12803 0.12186 0.13871 +v -0.12867 0.12143 0.13167 +v -0.12838 0.12154 0.13110 +v -0.12858 0.12123 0.12970 +v -0.12945 0.12011 0.12892 +v -0.12829 0.12173 0.13194 +v -0.12778 0.12202 0.13266 +v -0.12756 0.12211 0.13961 +v -0.12294 0.12394 0.16417 +v -0.12317 0.12376 0.16037 +v -0.12639 0.12289 0.14483 +v -0.12491 0.12309 0.14632 +v -0.12310 0.12359 0.14712 +v -0.12666 0.12276 0.14335 +v -0.12575 0.12270 0.14036 +v -0.13003 0.02439 0.16572 +v -0.12911 0.01910 0.18809 +v -0.12858 0.01441 0.18499 +v -0.12830 0.01270 0.18105 +v -0.12901 0.01553 0.16873 +v -0.12855 0.01277 0.17278 +v -0.12985 0.02106 0.16718 +v -0.12880 0.02037 0.14747 +v -0.12980 0.02481 0.16287 +v -0.13063 0.08574 0.12162 +v -0.13046 0.08369 0.12135 +v -0.13089 0.08683 0.12296 +v -0.13084 0.08879 0.12460 +v -0.12913 0.05402 0.11789 +v -0.12890 0.05672 0.11774 +v -0.12898 0.06126 0.11737 +v -0.12920 0.05973 0.11763 +v -0.12897 0.05816 0.11760 +v -0.12904 0.06709 0.11769 +v -0.12915 0.06416 0.11730 +v -0.12917 0.06250 0.11757 +v -0.12931 0.05224 0.11880 +v -0.12967 0.04637 0.11971 +v -0.12933 0.05117 0.11894 +v -0.12971 0.04158 0.12111 +v -0.12966 0.04437 0.11983 +v -0.13042 0.02878 0.12351 +v -0.12937 0.08094 0.11766 +v -0.12924 0.07889 0.11744 +v -0.12911 0.07708 0.11749 +v -0.12890 0.07552 0.11740 +v -0.12862 0.07356 0.11725 +v -0.13032 0.02432 0.13201 +v -0.13053 0.02734 0.12414 +v -0.12872 0.01846 0.14409 +v -0.12828 0.03544 0.22159 +v -0.12825 0.02969 0.22104 +v -0.12847 0.04173 0.22263 +v -0.12800 0.02541 0.21896 +v -0.12821 0.01265 0.20173 +v -0.12857 0.01386 0.19150 +v -0.12861 0.01444 0.19480 +v -0.12784 0.01316 0.20771 +v -0.12781 0.01321 0.21142 +v -0.12787 0.02195 0.21990 +v -0.12905 0.11537 0.21462 +v -0.12881 0.10575 0.22467 +v -0.12883 0.10775 0.22529 +v -0.12868 0.11082 0.22487 +v -0.12856 0.11438 0.21971 +v -0.12876 0.11544 0.21577 +v -0.12593 0.12100 0.20111 +v -0.12618 0.12099 0.20304 +v -0.12687 0.12068 0.21032 +v -0.12656 0.12095 0.20876 +v -0.12815 0.11806 0.21406 +v -0.12743 0.12017 0.21073 +v -0.12760 0.11957 0.21276 +v -0.12665 0.12074 0.20407 +v -0.12897 0.11556 0.21382 +v -0.12284 0.12366 0.16809 +v -0.12198 0.12386 0.16849 +v -0.12812 0.04929 0.22775 +v -0.12823 0.04603 0.22578 +v -0.12822 0.05153 0.22817 +v -0.12813 0.09538 0.23185 +v -0.12815 0.09761 0.23107 +v -0.12883 0.10263 0.22692 +v -0.13030 0.09220 0.12099 +v -0.12976 0.09479 0.11872 +v -0.12943 0.09956 0.11735 +v -0.12993 0.11862 0.12289 +v -0.13016 0.11655 0.11944 +v -0.12990 0.11153 0.11833 +v -0.12964 0.10941 0.11841 +v -0.12952 0.10730 0.11781 +v -0.12940 0.10781 0.11760 +v -0.12861 0.10707 0.11701 +v -0.12949 0.12034 0.12592 +v -0.12966 0.12054 0.12420 +v -0.12713 0.12225 0.13617 +v -0.12767 0.12210 0.13742 +v -0.12848 0.12142 0.13041 +v -0.12892 0.12088 0.12842 +v -0.12732 0.12216 0.13384 +v -0.12195 0.12388 0.15983 +v -0.12292 0.12374 0.15825 +v -0.12537 0.12310 0.14491 +v -0.12551 0.12312 0.14357 +v -0.12479 0.12312 0.14197 +v -0.12984 0.02187 0.16660 +v -0.12884 0.01704 0.18572 +v -0.12840 0.01144 0.18294 +v -0.12833 0.01196 0.18020 +v -0.12967 0.01990 0.16704 +v -0.12951 0.01831 0.16773 +v -0.12875 0.01378 0.16944 +v -0.12854 0.01251 0.17435 +v -0.12864 0.01134 0.16987 +v -0.12872 0.02006 0.14948 +v -0.12932 0.02273 0.15764 +v -0.12939 0.02173 0.16020 +v -0.13092 0.08867 0.12380 +v -0.12957 0.08250 0.11785 +v -0.12913 0.05512 0.11796 +v -0.12915 0.05226 0.11761 +v -0.12882 0.05752 0.11756 +v -0.12898 0.05577 0.11757 +v -0.12875 0.05996 0.11717 +v -0.12896 0.05881 0.11729 +v -0.12895 0.06338 0.11715 +v -0.12939 0.04696 0.11755 +v -0.12935 0.04989 0.11835 +v -0.12963 0.03787 0.12094 +v -0.12978 0.03497 0.12132 +v -0.12937 0.04006 0.12029 +v -0.12948 0.04249 0.11978 +v -0.12967 0.03159 0.12055 +v -0.12925 0.07975 0.11754 +v -0.12929 0.07817 0.11762 +v -0.13027 0.02158 0.13084 +v -0.12946 0.02182 0.13724 +v -0.13008 0.02312 0.13387 +v -0.13049 0.02597 0.12346 +v -0.12871 0.01606 0.14145 +v -0.12833 0.03900 0.22058 +v -0.12818 0.03726 0.22274 +v -0.12836 0.03339 0.22094 +v -0.12806 0.02742 0.22033 +v -0.12896 0.01704 0.18795 +v -0.12793 0.01179 0.20638 +v -0.12814 0.00927 0.20334 +v -0.12852 0.01208 0.19622 +v -0.12778 0.01338 0.20963 +v -0.12774 0.01389 0.21426 +v -0.12775 0.01965 0.22135 +v -0.12908 0.11525 0.21428 +v -0.12883 0.10828 0.22601 +v -0.12844 0.11316 0.22361 +v -0.12888 0.10429 0.22583 +v -0.12832 0.11563 0.21893 +v -0.12832 0.11732 0.21485 +v -0.12717 0.12048 0.21087 +v -0.12553 0.12164 0.20757 +v -0.12865 0.11635 0.21444 +v -0.12708 0.12039 0.21260 +v -0.12572 0.12142 0.20456 +v -0.12231 0.12368 0.16755 +v -0.12824 0.04249 0.22564 +v -0.12794 0.05052 0.23026 +v -0.12828 0.10064 0.23185 +v -0.12842 0.10179 0.23118 +v -0.13074 0.09109 0.12321 +v -0.12979 0.09198 0.11867 +v -0.12958 0.09470 0.11799 +v -0.12958 0.09321 0.11787 +v -0.13072 0.08924 0.12191 +v -0.12937 0.09728 0.11753 +v -0.12864 0.10143 0.11682 +v -0.12995 0.11839 0.12018 +v -0.12962 0.12003 0.12126 +v -0.12990 0.11483 0.11817 +v -0.12954 0.11217 0.11755 +v -0.12976 0.11026 0.11815 +v -0.12993 0.11733 0.11862 +v -0.12932 0.10902 0.11751 +v -0.12949 0.10844 0.11764 +v -0.12912 0.12077 0.12750 +v -0.12907 0.12110 0.12659 +v -0.12670 0.12232 0.13521 +v -0.12680 0.12234 0.13822 +v -0.12797 0.12176 0.13026 +v -0.12838 0.12140 0.12849 +v -0.12716 0.12218 0.13133 +v -0.12665 0.12242 0.13259 +v -0.12180 0.12390 0.16531 +v -0.12184 0.12394 0.15784 +v -0.12244 0.12367 0.15384 +v -0.12234 0.12369 0.15248 +v -0.12379 0.12341 0.14532 +v -0.12357 0.12328 0.14018 +v -0.12959 0.02194 0.16321 +v -0.12848 0.01234 0.18592 +v -0.12838 0.01037 0.18127 +v -0.12914 0.01623 0.16661 +v -0.12872 0.01244 0.16762 +v -0.12862 0.01164 0.17277 +v -0.12875 0.01903 0.15031 +v -0.12867 0.01860 0.14841 +v -0.12868 0.01756 0.14665 +v -0.12880 0.01930 0.15481 +v -0.13062 0.08755 0.12125 +v -0.12986 0.08558 0.11863 +v -0.13089 0.08903 0.12287 +v -0.12969 0.08489 0.11794 +v -0.12886 0.05490 0.11717 +v -0.12906 0.05296 0.11739 +v -0.12826 0.05685 0.11709 +v -0.12871 0.05616 0.11719 +v -0.12871 0.06219 0.11701 +v -0.12859 0.05805 0.11714 +v -0.12925 0.05109 0.11788 +v -0.12938 0.04539 0.11765 +v -0.12939 0.04838 0.11795 +v -0.12937 0.04144 0.12007 +v -0.12934 0.04287 0.11806 +v -0.13021 0.02754 0.12233 +v -0.12933 0.08180 0.11742 +v -0.12881 0.08110 0.11700 +v -0.12884 0.07869 0.11706 +v -0.13041 0.02375 0.12606 +v -0.12995 0.02047 0.13422 +v -0.12956 0.01990 0.13634 +v -0.12905 0.01651 0.13854 +v -0.12857 0.01577 0.14354 +v -0.12830 0.03889 0.22241 +v -0.12782 0.03463 0.22512 +v -0.12796 0.02923 0.22289 +v -0.12785 0.02739 0.22284 +v -0.12783 0.02484 0.22158 +v -0.12804 0.01003 0.20506 +v -0.12849 0.00940 0.19760 +v -0.12861 0.01388 0.18799 +v -0.12846 0.01266 0.19312 +v -0.12785 0.01228 0.20717 +v -0.12773 0.01200 0.20801 +v -0.12767 0.01672 0.21941 +v -0.12785 0.01194 0.21127 +v -0.12803 0.00961 0.21280 +v -0.12763 0.01786 0.22134 +v -0.12794 0.02207 0.22208 +v -0.12890 0.10674 0.22598 +v -0.12839 0.11274 0.22820 +v -0.12875 0.10927 0.22700 +v -0.12900 0.10656 0.22686 +v -0.12821 0.11715 0.21633 +v -0.12815 0.11502 0.22333 +v -0.12512 0.12148 0.20251 +v -0.12681 0.12065 0.21184 +v -0.12507 0.12144 0.21033 +v -0.12771 0.11922 0.21420 +v -0.12720 0.12013 0.21307 +v -0.12536 0.12164 0.20609 +v -0.12196 0.12377 0.16627 +v -0.12814 0.04661 0.22834 +v -0.12813 0.04459 0.22776 +v -0.12790 0.05187 0.23118 +v -0.12809 0.09792 0.23289 +v -0.12818 0.09961 0.23294 +v -0.12865 0.10253 0.22902 +v -0.12978 0.08994 0.11817 +v -0.12956 0.09579 0.11786 +v -0.12960 0.12098 0.12320 +v -0.12994 0.11840 0.11929 +v -0.12958 0.11406 0.11767 +v -0.12947 0.11666 0.11769 +v -0.12976 0.11097 0.11771 +v -0.12923 0.12160 0.12518 +v -0.12943 0.12134 0.12446 +v -0.12545 0.12259 0.13532 +v -0.12794 0.12173 0.12931 +v -0.12872 0.12125 0.12765 +v -0.12601 0.12247 0.13394 +v -0.12504 0.12278 0.13809 +v -0.12339 0.12347 0.14267 +v -0.12946 0.02022 0.16369 +v -0.12832 0.00849 0.18204 +v -0.12851 0.01016 0.17787 +v -0.12856 0.01165 0.17540 +v -0.12900 0.01667 0.16363 +v -0.12881 0.01351 0.16568 +v -0.12880 0.01057 0.17358 +v -0.12862 0.00998 0.17235 +v -0.12879 0.02037 0.15145 +v -0.12857 0.01607 0.14456 +v -0.12902 0.01979 0.15807 +v -0.12875 0.01945 0.15213 +v -0.12937 0.01973 0.16118 +v -0.12959 0.08408 0.11775 +v -0.12869 0.05358 0.11692 +v -0.12887 0.05212 0.11687 +v -0.12877 0.05562 0.11703 +v -0.12908 0.05097 0.11705 +v -0.12889 0.04538 0.11687 +v -0.12926 0.04757 0.11725 +v -0.12925 0.04891 0.11739 +v -0.12925 0.05064 0.11737 +v -0.12921 0.03848 0.11923 +v -0.12913 0.03510 0.11919 +v -0.12926 0.03404 0.11932 +v -0.12922 0.04100 0.11905 +v -0.12963 0.02745 0.11990 +v -0.12919 0.08319 0.11728 +v -0.12920 0.08126 0.11728 +v -0.13033 0.02005 0.12710 +v -0.13029 0.01730 0.12879 +v -0.13042 0.02442 0.12387 +v -0.12878 0.01414 0.13987 +v -0.12869 0.01412 0.14312 +v -0.12761 0.03180 0.22547 +v -0.12772 0.02552 0.22318 +v -0.12803 0.03895 0.22642 +v -0.12784 0.02369 0.22221 +v -0.12805 0.00923 0.20715 +v -0.12816 0.00684 0.20257 +v -0.12831 0.00733 0.20025 +v -0.12824 0.00757 0.19159 +v -0.12840 0.00646 0.19543 +v -0.12784 0.01181 0.20745 +v -0.12771 0.01318 0.21902 +v -0.12783 0.01037 0.21712 +v -0.12727 0.01721 0.22514 +v -0.12763 0.02057 0.22464 +v -0.12806 0.11514 0.22656 +v -0.12895 0.10729 0.22782 +v -0.12887 0.10469 0.22780 +v -0.12804 0.11786 0.21748 +v -0.12811 0.11643 0.22036 +v -0.12784 0.11870 0.21669 +v -0.12473 0.12190 0.20473 +v -0.12611 0.12101 0.21110 +v -0.12767 0.11932 0.21589 +v -0.12723 0.11998 0.21435 +v -0.12667 0.12075 0.21256 +v -0.12662 0.12068 0.21327 +v -0.12793 0.04822 0.22999 +v -0.12787 0.04068 0.23022 +v -0.12781 0.04984 0.23157 +v -0.12805 0.10085 0.23373 +v -0.12853 0.10363 0.23010 +v -0.12922 0.09123 0.11742 +v -0.12913 0.09443 0.11736 +v -0.12953 0.09391 0.11774 +v -0.12971 0.12022 0.12004 +v -0.12954 0.12084 0.12144 +v -0.12948 0.11091 0.11729 +v -0.12861 0.11371 0.11703 +v -0.12960 0.11023 0.11749 +v -0.12983 0.11889 0.11856 +v -0.12975 0.11844 0.11814 +v -0.12799 0.10936 0.11680 +v -0.12886 0.12194 0.12580 +v -0.12713 0.12212 0.12963 +v -0.12768 0.12196 0.12804 +v -0.12634 0.12255 0.13213 +v -0.12581 0.12257 0.13268 +v -0.12826 0.00859 0.18714 +v -0.12845 0.00855 0.17886 +v -0.12868 0.01101 0.17449 +v -0.12839 0.00752 0.16663 +v -0.12868 0.01218 0.16395 +v -0.12839 0.00773 0.17160 +v -0.12875 0.01773 0.14867 +v -0.12867 0.01514 0.14469 +v -0.12874 0.01694 0.15742 +v -0.12869 0.01787 0.15331 +v -0.12903 0.01837 0.15955 +v -0.12977 0.08729 0.11803 +v -0.12930 0.08561 0.11744 +v -0.12928 0.04292 0.11748 +v -0.12883 0.04206 0.11679 +v -0.12920 0.04996 0.11721 +v -0.12916 0.03997 0.11931 +v -0.12906 0.03611 0.11852 +v -0.12907 0.03255 0.11803 +v -0.12921 0.04111 0.11725 +v -0.12903 0.03057 0.11740 +v -0.13028 0.02226 0.12397 +v -0.12994 0.01565 0.13110 +v -0.12963 0.02391 0.11994 +v -0.13019 0.02428 0.12229 +v -0.12937 0.01443 0.13570 +v -0.12868 0.01334 0.14158 +v -0.12755 0.03310 0.22794 +v -0.12759 0.02973 0.22557 +v -0.12775 0.02842 0.22435 +v -0.12775 0.02682 0.22444 +v -0.12791 0.01082 0.20796 +v -0.12804 0.00578 0.20700 +v -0.12839 0.00606 0.19684 +v -0.12832 0.00738 0.19335 +v -0.12797 0.00994 0.20982 +v -0.12756 0.01606 0.22157 +v -0.12756 0.01424 0.22179 +v -0.12802 0.00909 0.21177 +v -0.12791 0.00920 0.21529 +v -0.12784 0.02271 0.22348 +v -0.12796 0.11657 0.23232 +v -0.12796 0.11621 0.22874 +v -0.12859 0.11009 0.22878 +v -0.12896 0.10607 0.22781 +v -0.12785 0.11846 0.22325 +v -0.12786 0.11745 0.22463 +v -0.12619 0.12100 0.21253 +v -0.12471 0.12148 0.21114 +v -0.12740 0.11982 0.21514 +v -0.12673 0.12048 0.21463 +v -0.12794 0.04631 0.23012 +v -0.12783 0.04433 0.23078 +v -0.12802 0.09885 0.23403 +v -0.12805 0.10325 0.23355 +v -0.12805 0.09962 0.23437 +v -0.12824 0.10474 0.23184 +v -0.12958 0.08960 0.11768 +v -0.12919 0.12216 0.12360 +v -0.12961 0.12140 0.11910 +v -0.12942 0.12149 0.12173 +v -0.12876 0.11129 0.11697 +v -0.12914 0.11013 0.11712 +v -0.12968 0.12065 0.11860 +v -0.12948 0.11954 0.11781 +v -0.12839 0.12187 0.12685 +v -0.12897 0.12236 0.12469 +v -0.12895 0.12223 0.12529 +v -0.12435 0.12277 0.13290 +v -0.12570 0.12249 0.13011 +v -0.12583 0.12256 0.13179 +v -0.12889 0.01657 0.16126 +v -0.12825 0.00687 0.18261 +v -0.12847 0.00637 0.17976 +v -0.12855 0.00978 0.17552 +v -0.12835 0.00710 0.16961 +v -0.12870 0.01004 0.17391 +v -0.12847 0.00816 0.17358 +v -0.12893 0.01692 0.14891 +v -0.12879 0.01746 0.15199 +v -0.12892 0.01609 0.14707 +v -0.12862 0.01670 0.15452 +v -0.12838 0.05057 0.11642 +v -0.12926 0.04216 0.11760 +v -0.12879 0.04841 0.11667 +v -0.12909 0.03920 0.11787 +v -0.12889 0.03430 0.11770 +v -0.12911 0.02748 0.11766 +v -0.13018 0.01701 0.12645 +v -0.13018 0.01940 0.12441 +v -0.12970 0.01198 0.12767 +v -0.12900 0.02426 0.11705 +v -0.13029 0.02341 0.12306 +v -0.12873 0.01265 0.14052 +v -0.12918 0.01205 0.13744 +v -0.12892 0.01212 0.14294 +v -0.12900 0.01311 0.14464 +v -0.12729 0.03049 0.22785 +v -0.12786 0.02535 0.22548 +v -0.12780 0.03778 0.22984 +v -0.12802 0.00641 0.20866 +v -0.12820 0.00559 0.20391 +v -0.12835 0.00568 0.20021 +v -0.12844 0.00501 0.19655 +v -0.12827 0.00646 0.18941 +v -0.12843 0.00519 0.19158 +v -0.12842 0.00549 0.19374 +v -0.12776 0.00989 0.21999 +v -0.12769 0.01169 0.22130 +v -0.12781 0.00635 0.21347 +v -0.12765 0.00677 0.21846 +v -0.12740 0.02053 0.22823 +v -0.12710 0.01524 0.22577 +v -0.12774 0.02306 0.22620 +v -0.12786 0.11733 0.23093 +v -0.12849 0.10932 0.23051 +v -0.12787 0.11806 0.22077 +v -0.12739 0.11964 0.21723 +v -0.12569 0.12123 0.21241 +v -0.12391 0.12176 0.21017 +v -0.12736 0.12000 0.21567 +v -0.12603 0.12100 0.21419 +v -0.12823 0.10774 0.23246 +v -0.12969 0.08850 0.11786 +v -0.12909 0.08831 0.11715 +v -0.12913 0.12236 0.12410 +v -0.12912 0.12215 0.12274 +v -0.12936 0.12187 0.12091 +v -0.12853 0.12254 0.12525 +v -0.12815 0.12231 0.12641 +v -0.12627 0.12240 0.12874 +v -0.12779 0.12231 0.12685 +v -0.12826 0.00656 0.18669 +v -0.12845 0.00648 0.17719 +v -0.12840 0.00751 0.17531 +v -0.12873 0.01529 0.16087 +v -0.12840 0.00820 0.16313 +v -0.12850 0.00544 0.16785 +v -0.12837 0.00599 0.17096 +v -0.12835 0.00624 0.17250 +v -0.12889 0.01738 0.15059 +v -0.12864 0.01443 0.15493 +v -0.12879 0.01652 0.15236 +v -0.12865 0.01591 0.15339 +v -0.12958 0.08737 0.11762 +v -0.12897 0.05005 0.11672 +v -0.12884 0.03605 0.11737 +v -0.12878 0.03279 0.11708 +v -0.12892 0.02912 0.11706 +v -0.12986 0.01330 0.12701 +v -0.13004 0.02230 0.12205 +v -0.12948 0.01330 0.13369 +v -0.12942 0.01141 0.13170 +v -0.12903 0.02093 0.11744 +v -0.12870 0.01237 0.14128 +v -0.12930 0.01080 0.13543 +v -0.12751 0.03107 0.22910 +v -0.12754 0.02931 0.22657 +v -0.12770 0.02791 0.22553 +v -0.12783 0.02447 0.22494 +v -0.12776 0.03654 0.23213 +v -0.12802 0.00791 0.20974 +v -0.12811 0.00478 0.20820 +v -0.12811 0.00525 0.20564 +v -0.12834 0.00528 0.20217 +v -0.12858 0.00463 0.19498 +v -0.12759 0.00656 0.22025 +v -0.12751 0.01145 0.22348 +v -0.12788 0.00572 0.21160 +v -0.12769 0.00638 0.21650 +v -0.12700 0.01769 0.22848 +v -0.12693 0.01646 0.22759 +v -0.12771 0.11851 0.23208 +v -0.12762 0.11824 0.22926 +v -0.12776 0.11783 0.22675 +v -0.12755 0.11909 0.22075 +v -0.12769 0.11922 0.22265 +v -0.12762 0.11882 0.22456 +v -0.12720 0.11995 0.21850 +v -0.12715 0.12011 0.21625 +v -0.12587 0.12116 0.21324 +v -0.12418 0.12154 0.21258 +v -0.12364 0.12164 0.21133 +v -0.12664 0.12060 0.21592 +v -0.12907 0.12249 0.12377 +v -0.12896 0.12255 0.12341 +v -0.12949 0.12104 0.11830 +v -0.12913 0.12222 0.12165 +v -0.12905 0.12254 0.12427 +v -0.12455 0.12277 0.12837 +v -0.12419 0.12267 0.13040 +v -0.12608 0.12262 0.12752 +v -0.12699 0.12263 0.12667 +v -0.12841 0.00549 0.18174 +v -0.12829 0.00548 0.18424 +v -0.12871 0.00493 0.17761 +v -0.12869 0.01322 0.16074 +v -0.12838 0.00757 0.16472 +v -0.12863 0.01106 0.16146 +v -0.12839 0.00580 0.16659 +v -0.12837 0.00582 0.16949 +v -0.12843 0.00584 0.17415 +v -0.12927 0.01421 0.14761 +v -0.12936 0.01415 0.14934 +v -0.12865 0.01389 0.15762 +v -0.12950 0.01186 0.15022 +v -0.12899 0.04011 0.11697 +v -0.12886 0.03841 0.11703 +v -0.12842 0.03100 0.11647 +v -0.12826 0.03454 0.11652 +v -0.12855 0.02726 0.11636 +v -0.12899 0.02608 0.11700 +v -0.12971 0.01243 0.12453 +v -0.12986 0.01496 0.12377 +v -0.13000 0.01919 0.12248 +v -0.12933 0.00995 0.12906 +v -0.12860 0.02108 0.11638 +v -0.12896 0.01136 0.13986 +v -0.12925 0.01106 0.13684 +v -0.12927 0.01087 0.14478 +v -0.12898 0.01104 0.14167 +v -0.12763 0.02969 0.22891 +v -0.12754 0.02937 0.22774 +v -0.12787 0.02487 0.22983 +v -0.12785 0.02699 0.22844 +v -0.12806 0.00477 0.20732 +v -0.12800 0.00515 0.20987 +v -0.12828 0.00463 0.20486 +v -0.12821 0.00449 0.20664 +v -0.12848 0.00459 0.20281 +v -0.12857 0.00455 0.19998 +v -0.12842 0.00509 0.20103 +v -0.12863 0.00441 0.18850 +v -0.12836 0.00503 0.18988 +v -0.12877 0.00414 0.19344 +v -0.12868 0.00386 0.19594 +v -0.12728 0.01292 0.22461 +v -0.12749 0.00760 0.22361 +v -0.12759 0.00995 0.22300 +v -0.12788 0.00495 0.21287 +v -0.12765 0.00542 0.21797 +v -0.12772 0.00506 0.21916 +v -0.12775 0.00559 0.21446 +v -0.12687 0.01549 0.22816 +v -0.12761 0.11895 0.23034 +v -0.12681 0.12039 0.21717 +v -0.12477 0.12146 0.21440 +v -0.12613 0.12092 0.21709 +v -0.12892 0.12264 0.12401 +v -0.12867 0.12273 0.12291 +v -0.12921 0.12239 0.12030 +v -0.12918 0.12226 0.11844 +v -0.12873 0.12268 0.12190 +v -0.12904 0.12251 0.12115 +v -0.12897 0.12108 0.11761 +v -0.12835 0.12284 0.12434 +v -0.12781 0.12268 0.12589 +v -0.12868 0.00458 0.18067 +v -0.12839 0.00462 0.18672 +v -0.12837 0.00639 0.17555 +v -0.12864 0.00511 0.17566 +v -0.12897 0.00413 0.17923 +v -0.12846 0.00581 0.16534 +v -0.12837 0.00642 0.16379 +v -0.12870 0.01027 0.16008 +v -0.12860 0.00497 0.16649 +v -0.12853 0.00488 0.16905 +v -0.12861 0.00477 0.17191 +v -0.12871 0.00457 0.17018 +v -0.12841 0.00525 0.17290 +v -0.12930 0.01433 0.15022 +v -0.12887 0.01420 0.15267 +v -0.12865 0.01267 0.15577 +v -0.12854 0.03694 0.11663 +v -0.12818 0.03901 0.11629 +v -0.12883 0.02548 0.11650 +v -0.12984 0.01777 0.12218 +v -0.12923 0.01939 0.11875 +v -0.12926 0.01032 0.13383 +v -0.12908 0.00822 0.13107 +v -0.12899 0.00758 0.12558 +v -0.12908 0.00842 0.12304 +v -0.12846 0.02394 0.11619 +v -0.12883 0.01947 0.11661 +v -0.12911 0.01138 0.13829 +v -0.12914 0.00961 0.13747 +v -0.12914 0.01033 0.14283 +v -0.12773 0.03065 0.23042 +v -0.12768 0.02838 0.22698 +v -0.12820 0.00425 0.20744 +v -0.12846 0.00366 0.20922 +v -0.12856 0.00422 0.20385 +v -0.12830 0.00435 0.20569 +v -0.12886 0.00409 0.20147 +v -0.12864 0.00406 0.19756 +v -0.12854 0.00433 0.19015 +v -0.12900 0.00355 0.19211 +v -0.12921 0.00335 0.19497 +v -0.12856 0.00400 0.19665 +v -0.12710 0.01406 0.22669 +v -0.12743 0.00593 0.22247 +v -0.12749 0.01058 0.22495 +v -0.12797 0.00438 0.21170 +v -0.12779 0.00462 0.21641 +v -0.12752 0.00493 0.22124 +v -0.12765 0.00512 0.21552 +v -0.12687 0.01644 0.23014 +v -0.12746 0.11929 0.23144 +v -0.12749 0.11874 0.22774 +v -0.12724 0.11928 0.22902 +v -0.12750 0.11911 0.22569 +v -0.12723 0.11972 0.22039 +v -0.12721 0.11980 0.22182 +v -0.12732 0.11966 0.22387 +v -0.12653 0.12065 0.21838 +v -0.12552 0.12124 0.21495 +v -0.12527 0.12133 0.21730 +v -0.12864 0.12281 0.12357 +v -0.12929 0.12236 0.11944 +v -0.12816 0.12283 0.12500 +v -0.12503 0.12291 0.12675 +v -0.12626 0.12300 0.12564 +v -0.12726 0.12287 0.12563 +v -0.12877 0.00419 0.18186 +v -0.12854 0.00466 0.18275 +v -0.12853 0.00402 0.18585 +v -0.12904 0.00413 0.17647 +v -0.12923 0.00377 0.17758 +v -0.12876 0.01183 0.15874 +v -0.12832 0.00610 0.16243 +v -0.12829 0.00641 0.16152 +v -0.12909 0.00403 0.16716 +v -0.12898 0.00405 0.16867 +v -0.12872 0.00453 0.17316 +v -0.12949 0.01159 0.14862 +v -0.12943 0.01070 0.14568 +v -0.12879 0.01195 0.15405 +v -0.12875 0.01196 0.15681 +v -0.12930 0.01100 0.15150 +v -0.12944 0.01330 0.12156 +v -0.12903 0.01698 0.11839 +v -0.12897 0.00801 0.13749 +v -0.12900 0.00752 0.12869 +v -0.12910 0.01025 0.12115 +v -0.12752 0.02096 0.11577 +v -0.12896 0.01888 0.11723 +v -0.12840 0.01839 0.11604 +v -0.12909 0.01017 0.13963 +v -0.12921 0.00877 0.14273 +v -0.12911 0.00968 0.14128 +v -0.12777 0.02856 0.22862 +v -0.12842 0.00382 0.20799 +v -0.12805 0.00412 0.21023 +v -0.12789 0.00462 0.21085 +v -0.12864 0.00382 0.20506 +v -0.12869 0.00365 0.20611 +v -0.12883 0.00394 0.20279 +v -0.12904 0.00352 0.19855 +v -0.12855 0.00401 0.18740 +v -0.12881 0.00377 0.19098 +v -0.12951 0.00312 0.19334 +v -0.12902 0.00330 0.19600 +v -0.12886 0.00347 0.19666 +v -0.12753 0.00902 0.22564 +v -0.12735 0.00533 0.22421 +v -0.12822 0.00393 0.21257 +v -0.12806 0.00406 0.21388 +v -0.12804 0.00403 0.21780 +v -0.12785 0.00397 0.22064 +v -0.12772 0.00462 0.21484 +v -0.12708 0.01455 0.23104 +v -0.12716 0.01323 0.22917 +v -0.12749 0.11927 0.23050 +v -0.12750 0.11944 0.23291 +v -0.12697 0.11983 0.22974 +v -0.12736 0.11946 0.22554 +v -0.12683 0.12040 0.21924 +v -0.12725 0.11982 0.22287 +v -0.12448 0.12158 0.21611 +v -0.12641 0.12071 0.21935 +v -0.12818 0.12298 0.12332 +v -0.12820 0.12302 0.12230 +v -0.12869 0.12291 0.12074 +v -0.12900 0.12284 0.11988 +v -0.12881 0.12300 0.11914 +v -0.12767 0.12295 0.12490 +v -0.12378 0.12309 0.12587 +v -0.12903 0.00371 0.18103 +v -0.12894 0.00389 0.18030 +v -0.12852 0.00455 0.18391 +v -0.12860 0.00408 0.18490 +v -0.12866 0.00372 0.18676 +v -0.12837 0.00568 0.17506 +v -0.12938 0.00381 0.17537 +v -0.12954 0.00330 0.17845 +v -0.12868 0.00482 0.16361 +v -0.12842 0.00694 0.16061 +v -0.12890 0.01073 0.15806 +v -0.12905 0.00425 0.16547 +v -0.12935 0.00363 0.17131 +v -0.12900 0.00431 0.17428 +v -0.12949 0.01102 0.14742 +v -0.12939 0.00993 0.14611 +v -0.12882 0.01108 0.15550 +v -0.12950 0.01086 0.14994 +v -0.12873 0.00649 0.13490 +v -0.12888 0.00721 0.13324 +v -0.12895 0.00612 0.12983 +v -0.12888 0.00682 0.12699 +v -0.12896 0.00602 0.12421 +v -0.12893 0.00843 0.12072 +v -0.12889 0.01897 0.11668 +v -0.12905 0.00841 0.13900 +v -0.12928 0.00835 0.14441 +v -0.12859 0.00366 0.20716 +v -0.12835 0.00349 0.21042 +v -0.12906 0.00351 0.20382 +v -0.12962 0.00327 0.20259 +v -0.12913 0.00327 0.19747 +v -0.12901 0.00359 0.18994 +v -0.12898 0.00350 0.18757 +v -0.12925 0.00314 0.19164 +v -0.12745 0.00673 0.22771 +v -0.12739 0.00488 0.22227 +v -0.12737 0.00447 0.22319 +v -0.12738 0.00560 0.22566 +v -0.12756 0.00874 0.22741 +v -0.12804 0.00396 0.21092 +v -0.12850 0.00347 0.21153 +v -0.12841 0.00339 0.21643 +v -0.12769 0.00445 0.21547 +v -0.12824 0.00360 0.21944 +v -0.12762 0.00396 0.22162 +v -0.12718 0.01512 0.23303 +v -0.12720 0.11970 0.23052 +v -0.12728 0.11976 0.23255 +v -0.12695 0.11975 0.22808 +v -0.12714 0.11955 0.22710 +v -0.12708 0.11974 0.22641 +v -0.12693 0.12016 0.22125 +v -0.12669 0.12034 0.22055 +v -0.12679 0.12024 0.22254 +v -0.12700 0.12004 0.22401 +v -0.12503 0.12105 0.22023 +v -0.12894 0.12288 0.11845 +v -0.12488 0.12317 0.12535 +v -0.12293 0.12311 0.12634 +v -0.12900 0.00371 0.18299 +v -0.12935 0.00334 0.18188 +v -0.12944 0.00334 0.18021 +v -0.12889 0.00338 0.18607 +v -0.12966 0.00340 0.17644 +v -0.12950 0.00330 0.17930 +v -0.12841 0.00546 0.16115 +v -0.12845 0.00493 0.16217 +v -0.12863 0.00804 0.15901 +v -0.12936 0.00353 0.16796 +v -0.12984 0.00344 0.16574 +v -0.12957 0.00340 0.16989 +v -0.12918 0.00381 0.17251 +v -0.12926 0.00379 0.17341 +v -0.12936 0.00965 0.14926 +v -0.12888 0.01089 0.15413 +v -0.12921 0.00954 0.15152 +v -0.12898 0.01228 0.11968 +v -0.12877 0.01789 0.11639 +v -0.12875 0.00652 0.13657 +v -0.12895 0.00600 0.13183 +v -0.12891 0.00573 0.12803 +v -0.12883 0.00606 0.12584 +v -0.12885 0.00596 0.12231 +v -0.12881 0.00954 0.11948 +v -0.12889 0.00654 0.12090 +v -0.12730 0.01783 0.11549 +v -0.12912 0.00807 0.14101 +v -0.12895 0.00651 0.13883 +v -0.12943 0.00594 0.14193 +v -0.12927 0.00318 0.20502 +v -0.12891 0.00339 0.20552 +v -0.12953 0.00334 0.20114 +v -0.12953 0.00324 0.18916 +v -0.12938 0.00329 0.18828 +v -0.12927 0.00322 0.19078 +v -0.12728 0.01159 0.22985 +v -0.12744 0.00423 0.22227 +v -0.12741 0.00400 0.22455 +v -0.12734 0.00471 0.22509 +v -0.12910 0.00314 0.21301 +v -0.12784 0.00397 0.21494 +v -0.12788 0.00395 0.21570 +v -0.12838 0.00336 0.21749 +v -0.12853 0.00323 0.21830 +v -0.12796 0.00334 0.22155 +v -0.12714 0.01396 0.23249 +v -0.12706 0.11985 0.23152 +v -0.12705 0.12021 0.23318 +v -0.12655 0.12022 0.22856 +v -0.12682 0.12013 0.22576 +v -0.12650 0.12047 0.22166 +v -0.12706 0.11988 0.22540 +v -0.12295 0.12176 0.21734 +v -0.12591 0.12084 0.21986 +v -0.12398 0.12139 0.21884 +v -0.12748 0.12321 0.12280 +v -0.12774 0.12328 0.12142 +v -0.12867 0.12317 0.11990 +v -0.12418 0.12354 0.12407 +v -0.12255 0.12332 0.12538 +v -0.12508 0.12363 0.12303 +v -0.12955 0.00312 0.18133 +v -0.12909 0.00346 0.18423 +v -0.12927 0.00312 0.18678 +v -0.12999 0.00330 0.17414 +v -0.12936 0.00382 0.16430 +v -0.12888 0.00410 0.16212 +v -0.12863 0.00567 0.15900 +v -0.12865 0.00743 0.15693 +v -0.12983 0.00319 0.16856 +v -0.12984 0.00325 0.16742 +v -0.12975 0.00334 0.17277 +v -0.12922 0.00749 0.14715 +v -0.12917 0.00989 0.15245 +v -0.12885 0.00923 0.15465 +v -0.12855 0.01628 0.11662 +v -0.12882 0.00588 0.13355 +v -0.12869 0.00569 0.13551 +v -0.12884 0.00659 0.13296 +v -0.12915 0.00473 0.13032 +v -0.12900 0.00493 0.12911 +v -0.12882 0.00571 0.12675 +v -0.12904 0.00513 0.12545 +v -0.12914 0.00483 0.12303 +v -0.12880 0.00753 0.11907 +v -0.12780 0.01595 0.11547 +v -0.12938 0.00616 0.14469 +v -0.12931 0.00333 0.20351 +v -0.12743 0.00842 0.22929 +v -0.12741 0.00507 0.22780 +v -0.12764 0.00330 0.22366 +v -0.12745 0.00413 0.22593 +v -0.12730 0.00986 0.23068 +v -0.12852 0.00325 0.21403 +v -0.12813 0.00349 0.21454 +v -0.12815 0.00343 0.21527 +v -0.12771 0.00343 0.22245 +v -0.12622 0.12057 0.23000 +v -0.12691 0.12011 0.23228 +v -0.12680 0.12000 0.22733 +v -0.12655 0.12025 0.22671 +v -0.12645 0.12031 0.22762 +v -0.12604 0.12068 0.22269 +v -0.12670 0.12033 0.22377 +v -0.12659 0.12033 0.22484 +v -0.12597 0.12075 0.22133 +v -0.12241 0.12171 0.21943 +v -0.12809 0.12332 0.12021 +v -0.12843 0.12330 0.11963 +v -0.12148 0.12361 0.12482 +v -0.12948 0.00312 0.18344 +v -0.12937 0.00372 0.16321 +v -0.12854 0.00458 0.16152 +v -0.12892 0.00420 0.16061 +v -0.13019 0.00323 0.16382 +v -0.12897 0.00743 0.15033 +v -0.12843 0.01048 0.11804 +v -0.12862 0.01282 0.11810 +v -0.12875 0.00550 0.13463 +v -0.12874 0.00550 0.13734 +v -0.12873 0.00531 0.13627 +v -0.12915 0.00483 0.13239 +v -0.12917 0.00460 0.12815 +v -0.12885 0.00538 0.12619 +v -0.12916 0.00480 0.12675 +v -0.12937 0.00455 0.12434 +v -0.12877 0.00580 0.12116 +v -0.12892 0.00507 0.12218 +v -0.12926 0.00531 0.11935 +v -0.12906 0.00619 0.14019 +v -0.12992 0.00433 0.14403 +v -0.12719 0.01175 0.23251 +v -0.12719 0.00702 0.23078 +v -0.12720 0.00526 0.23025 +v -0.12745 0.00382 0.22290 +v -0.12754 0.00330 0.22450 +v -0.12592 0.12069 0.22867 +v -0.12626 0.12051 0.22574 +v -0.12344 0.12144 0.22143 +v -0.12676 0.12345 0.12056 +v -0.12789 0.12332 0.11939 +v -0.12244 0.12371 0.12352 +v -0.12942 0.00351 0.16197 +v -0.12860 0.00540 0.15644 +v -0.12908 0.00411 0.15918 +v -0.12858 0.00694 0.15520 +v -0.12898 0.00607 0.14863 +v -0.12951 0.00506 0.14589 +v -0.12866 0.00677 0.15314 +v -0.12838 0.01436 0.11670 +v -0.12901 0.00487 0.13400 +v -0.12909 0.00505 0.13823 +v -0.12861 0.00536 0.13681 +v -0.12893 0.00487 0.13520 +v -0.12946 0.00416 0.13104 +v -0.12912 0.00447 0.12946 +v -0.12920 0.00437 0.12895 +v -0.12962 0.00427 0.12544 +v -0.12905 0.00526 0.12059 +v -0.12891 0.00521 0.12145 +v -0.12928 0.00448 0.12200 +v -0.12963 0.00412 0.12350 +v -0.12829 0.00804 0.11766 +v -0.12887 0.00626 0.11798 +v -0.12785 0.01409 0.11582 +v -0.12933 0.00498 0.13966 +v -0.13046 0.00403 0.14231 +v -0.12713 0.00956 0.23255 +v -0.12746 0.00374 0.22937 +v -0.12760 0.00359 0.22698 +v -0.12771 0.00319 0.22521 +v -0.12568 0.12081 0.22677 +v -0.12470 0.12114 0.22286 +v -0.12495 0.12119 0.22447 +v -0.12588 0.12076 0.22474 +v -0.12579 0.12361 0.12160 +v -0.12204 0.12374 0.12300 +v -0.12901 0.00422 0.15783 +v -0.12975 0.00335 0.15981 +v -0.12922 0.00524 0.14745 +v -0.12896 0.00547 0.14971 +v -0.12876 0.00568 0.15129 +v -0.12802 0.01229 0.11664 +v -0.12901 0.00479 0.13724 +v -0.12879 0.00502 0.13679 +v -0.12925 0.00446 0.13621 +v -0.12961 0.00400 0.13027 +v -0.12958 0.00415 0.13271 +v -0.12943 0.00414 0.12951 +v -0.12963 0.00403 0.12860 +v -0.12962 0.00413 0.12758 +v -0.12994 0.00391 0.12427 +v -0.12972 0.00401 0.12269 +v -0.12824 0.00947 0.11762 +v -0.12868 0.00727 0.11822 +v -0.12935 0.00470 0.12016 +v -0.12952 0.00462 0.11778 +v -0.12959 0.00472 0.14063 +v -0.13026 0.00360 0.14529 +v -0.13021 0.00412 0.14092 +v -0.13084 0.00348 0.14347 +v -0.12688 0.00681 0.23331 +v -0.12716 0.00383 0.23190 +v -0.12778 0.00319 0.22802 +v -0.12775 0.00318 0.22619 +v -0.12485 0.12115 0.22761 +v -0.12515 0.12106 0.22587 +v -0.12181 0.12194 0.22274 +v -0.12946 0.00347 0.16068 +v -0.12845 0.00582 0.15478 +v -0.12896 0.00419 0.15668 +v -0.12954 0.00349 0.15861 +v -0.12911 0.00498 0.14853 +v -0.12974 0.00409 0.14674 +v -0.12869 0.00504 0.15256 +v -0.12769 0.01001 0.11690 +v -0.12928 0.00431 0.13523 +v -0.12958 0.00423 0.13757 +v -0.12940 0.00453 0.13860 +v -0.13003 0.00374 0.13101 +v -0.13005 0.00391 0.12654 +v -0.13077 0.00358 0.12500 +v -0.12949 0.00438 0.12091 +v -0.13012 0.00375 0.12179 +v -0.13037 0.00364 0.12338 +v -0.12983 0.00412 0.11987 +v -0.13008 0.00391 0.11867 +v -0.12899 0.00498 0.11689 +v -0.12978 0.00421 0.13988 +v -0.13007 0.00359 0.14449 +v -0.13090 0.00360 0.14144 +v -0.13193 0.00321 0.14194 +v -0.13028 0.00351 0.14417 +v -0.12704 0.00487 0.23170 +v -0.12847 0.00486 0.15509 +v -0.12879 0.00430 0.15579 +v -0.12929 0.00369 0.15708 +v -0.12958 0.00343 0.15770 +v -0.12848 0.00519 0.15394 +v -0.12950 0.00423 0.14786 +v -0.12913 0.00465 0.15053 +v -0.12953 0.00425 0.14909 +v -0.12883 0.00479 0.15154 +v -0.12730 0.01132 0.11611 +v -0.12748 0.01241 0.11584 +v -0.12988 0.00403 0.13884 +v -0.12980 0.00392 0.13512 +v -0.13031 0.00367 0.12859 +v -0.13037 0.00360 0.13235 +v -0.13023 0.00363 0.12255 +v -0.12729 0.00851 0.11680 +v -0.12841 0.00628 0.11703 +v -0.12998 0.00387 0.11710 +v -0.12957 0.00432 0.13948 +v -0.13054 0.00337 0.14666 +v -0.13025 0.00338 0.14456 +v -0.13127 0.00340 0.14051 +v -0.13076 0.00326 0.14440 +v -0.12691 0.00546 0.23288 +v -0.12386 0.12149 0.22554 +v -0.12228 0.12184 0.22525 +v -0.12951 0.00358 0.15614 +v -0.13005 0.00365 0.14740 +v -0.12879 0.00437 0.15358 +v -0.12889 0.00451 0.15199 +v -0.12766 0.01190 0.11607 +v -0.13010 0.00373 0.13387 +v -0.13043 0.00361 0.13621 +v -0.13128 0.00325 0.13239 +v -0.13129 0.00333 0.12678 +v -0.13177 0.00324 0.12351 +v -0.13054 0.00349 0.12020 +v -0.13087 0.00339 0.12236 +v -0.12756 0.00685 0.11676 +v -0.13040 0.00350 0.11740 +v -0.12828 0.00565 0.11665 +v -0.13057 0.00364 0.13958 +v -0.13111 0.00313 0.14592 +v -0.12678 0.00601 0.23391 +v -0.12738 0.00321 0.23193 +v -0.12680 0.00481 0.23396 +v -0.12264 0.12191 0.22700 +v -0.12855 0.00447 0.15443 +v -0.12866 0.00422 0.15502 +v -0.12905 0.00385 0.15526 +v -0.12971 0.00332 0.15702 +v -0.13012 0.00314 0.15709 +v -0.13002 0.00369 0.14815 +v -0.13014 0.00375 0.15029 +v -0.12929 0.00421 0.15144 +v -0.12920 0.00413 0.15252 +v -0.13042 0.00357 0.13758 +v -0.13074 0.00344 0.13464 +v -0.13171 0.00321 0.12909 +v -0.13206 0.00325 0.12507 +v -0.12835 0.00602 0.11674 +v -0.13098 0.00319 0.11863 +v -0.13109 0.00313 0.14845 +v -0.13179 0.00322 0.13897 +v -0.12664 0.00692 0.23451 +v -0.12738 0.00317 0.23267 +v -0.12719 0.00351 0.23367 +v -0.12968 0.00353 0.15485 +v -0.13060 0.00342 0.14882 +v -0.12950 0.00373 0.15358 +v -0.12895 0.00397 0.15445 +v -0.13085 0.00341 0.13833 +v -0.13096 0.00329 0.13741 +v -0.13155 0.00321 0.13617 +v -0.12650 0.00586 0.23481 +v -0.13152 0.00315 0.14952 +v -0.13015 0.00360 0.15194 +v -0.12979 0.00364 0.15271 +v -0.13160 0.00319 0.13749 +v -0.13051 0.00327 0.15404 +v -0.13138 0.00321 0.15139 +v -0.13219 0.00313 0.13617 +v 0.02426 0.00544 0.11307 +v 0.02316 0.00573 0.11343 +v 0.02430 0.00623 0.11353 +v 0.02334 0.00509 0.11282 +v 0.02339 0.00648 0.11376 +v 0.02514 0.00568 0.11315 +v 0.02270 0.00531 0.11307 +v 0.02350 0.00480 0.11238 +v 0.02435 0.00766 0.11367 +v 0.02267 0.00621 0.11375 +v 0.02502 0.00518 0.11273 +v 0.02595 0.00646 0.11334 +v 0.02247 0.00483 0.11242 +v 0.02171 0.00584 0.11342 +v 0.02464 0.00487 0.11237 +v 0.02282 0.00695 0.11386 +v 0.02575 0.00535 0.11267 +v 0.02478 0.00447 0.11136 +v 0.02345 0.00453 0.11169 +v 0.02256 0.00825 0.11376 +v 0.02686 0.00840 0.11356 +v 0.02225 0.00645 0.11380 +v 0.02689 0.00544 0.11263 +v 0.02103 0.00484 0.11259 +v 0.02629 0.00482 0.11177 +v 0.02240 0.00437 0.11140 +v 0.02181 0.00709 0.11381 +v 0.02288 0.00964 0.11355 +v 0.02713 0.01061 0.11332 +v 0.02697 0.00700 0.11354 +v 0.02717 0.00626 0.11331 +v 0.02024 0.00538 0.11323 +v 0.02079 0.00443 0.11200 +v 0.02637 0.00446 0.11065 +v 0.02135 0.00824 0.11375 +v 0.02807 0.00701 0.11358 +v 0.02024 0.00720 0.11372 +v 0.02822 0.00564 0.11301 +v 0.02716 0.00486 0.11181 +v 0.02040 0.00603 0.11358 +v 0.01995 0.00484 0.11267 +v 0.02837 0.00469 0.11135 +v 0.02207 0.00421 0.11072 +v 0.02164 0.00424 0.11122 +v 0.01945 0.00936 0.11356 +v 0.02619 0.01377 0.11284 +v 0.02792 0.00499 0.11210 +v 0.01932 0.00599 0.11359 +v 0.01894 0.00518 0.11305 +v 0.01918 0.00460 0.11206 +v 0.02101 0.00418 0.11052 +v 0.02039 0.00430 0.11155 +v 0.02894 0.00492 0.11229 +v 0.01764 0.00691 0.11378 +v 0.02392 0.01511 0.11258 +v 0.01776 0.00573 0.11362 +v 0.01755 0.00486 0.11243 +v 0.01926 0.00435 0.11100 +v 0.01756 0.00949 0.11358 +v 0.02547 0.01692 0.11249 +v 0.01953 0.01509 0.11259 +v 0.01789 0.00534 0.11332 +v 0.01823 0.00450 0.11132 +v 0.01625 0.01399 0.11292 +v 0.01545 0.00848 0.11378 +v 0.02258 0.01915 0.11197 +v 0.02115 0.01803 0.11212 +v 0.01684 0.00549 0.11347 +v 0.01675 0.00448 0.11063 +v 0.01572 0.00665 0.11400 +v 0.02324 0.02021 0.11194 +v 0.01849 0.01714 0.11239 +v 0.01619 0.00601 0.11389 +v 0.01521 0.00458 0.11170 +v 0.01628 0.00499 0.11299 +v 0.01257 0.00866 0.11381 +v 0.01398 0.00628 0.11391 +v 0.02178 0.02045 0.11185 +v 0.01928 0.01924 0.11216 +v 0.01584 0.01717 0.11257 +v 0.01546 0.00547 0.11362 +v 0.01590 0.00514 0.11339 +v 0.01043 0.00999 0.11362 +v 0.01532 0.00602 0.11398 +v 0.02279 0.02158 0.11186 +v 0.02061 0.01980 0.11193 +v 0.01665 0.01928 0.11244 +v 0.01331 0.01611 0.11276 +v 0.01532 0.00492 0.11283 +v 0.01361 0.00432 0.11102 +v 0.00964 0.00861 0.11390 +v 0.01311 0.01278 0.11315 +v 0.01181 0.00643 0.11403 +v 0.02330 0.02220 0.11197 +v 0.02198 0.02253 0.11185 +v 0.02092 0.02175 0.11187 +v 0.01749 0.02068 0.11233 +v 0.01941 0.02183 0.11207 +v 0.01420 0.01789 0.11244 +v 0.01499 0.01855 0.11241 +v 0.01411 0.00473 0.11246 +v 0.00994 0.00734 0.11404 +v 0.00784 0.01177 0.11345 +v 0.00848 0.01186 0.11343 +v 0.01240 0.00554 0.11393 +v 0.01430 0.00526 0.11338 +v 0.01616 0.02098 0.11236 +v 0.00981 0.01495 0.11312 +v 0.01365 0.01955 0.11219 +v 0.01235 0.00446 0.11240 +v 0.00727 0.00874 0.11390 +v 0.01030 0.00576 0.11399 +v 0.01125 0.00538 0.11386 +v 0.01340 0.00546 0.11378 +v 0.02248 0.02511 0.11200 +v 0.02070 0.02352 0.11194 +v 0.01696 0.02220 0.11238 +v 0.00903 0.01925 0.11257 +v 0.01508 0.02089 0.11224 +v 0.01329 0.00499 0.11328 +v 0.01293 0.00415 0.11063 +v 0.00690 0.00693 0.11397 +v 0.00280 0.00894 0.11385 +v 0.00549 0.01658 0.11298 +v 0.00915 0.00609 0.11403 +v 0.01181 0.00500 0.11360 +v 0.01256 0.00509 0.11364 +v 0.01892 0.02439 0.11209 +v 0.01478 0.02394 0.11223 +v 0.01433 0.02016 0.11212 +v 0.01205 0.02078 0.11221 +v 0.01068 0.00409 0.11098 +v 0.01228 0.00473 0.11311 +v 0.00803 0.00631 0.11400 +v 0.00572 0.00788 0.11397 +v 0.00206 0.01139 0.11344 +v 0.00159 0.01274 0.11331 +v 0.00948 0.00547 0.11395 +v 0.01044 0.00510 0.11370 +v 0.01098 0.00480 0.11331 +v 0.02009 0.02637 0.11196 +v 0.01632 0.02456 0.11226 +v 0.00576 0.02101 0.11255 +v 0.01367 0.02100 0.11203 +v 0.00849 0.02102 0.11244 +v 0.01453 0.02249 0.11221 +v 0.01156 0.00450 0.11263 +v 0.00668 0.00580 0.11372 +v 0.00517 0.00653 0.11387 +v 0.00000 0.00930 0.11381 +v 0.00398 0.00782 0.11397 +v 0.00086 0.01826 0.11305 +v 0.00893 0.00522 0.11379 +v 0.00965 0.00505 0.11366 +v 0.00819 0.00545 0.11381 +v 0.01163 0.00472 0.11323 +v 0.02054 0.02872 0.11187 +v 0.01517 0.02732 0.11185 +v 0.00130 0.02380 0.11258 +v 0.01177 0.02263 0.11227 +v 0.01362 0.02328 0.11223 +v 0.01018 0.00444 0.11239 +v -0.00291 0.01098 0.11370 +v 0.00021 0.00701 0.11413 +v 0.00217 0.00653 0.11412 +v -0.00253 0.01587 0.11339 +v 0.00850 0.00470 0.11324 +v 0.01768 0.02763 0.11195 +v 0.01375 0.02467 0.11215 +v 0.00680 0.02555 0.11220 +v 0.00916 0.02427 0.11231 +v 0.00895 0.00420 0.11109 +v 0.00758 0.00491 0.11331 +v 0.00551 0.00541 0.11342 +v 0.00371 0.00635 0.11394 +v -0.00184 0.00798 0.11396 +v -0.00453 0.01359 0.11360 +v -0.00475 0.02074 0.11313 +v 0.00835 0.00493 0.11352 +v 0.01771 0.02994 0.11185 +v 0.01352 0.02791 0.11171 +v 0.01618 0.02907 0.11182 +v 0.00166 0.02972 0.11206 +v 0.01110 0.02550 0.11221 +v 0.00608 0.00421 0.11111 +v 0.00767 0.00445 0.11258 +v 0.00652 0.00510 0.11328 +v 0.00433 0.00552 0.11354 +v -0.00492 0.00911 0.11394 +v -0.00214 0.00610 0.11388 +v 0.00101 0.00613 0.11433 +v -0.00546 0.01281 0.11365 +v 0.00300 0.00545 0.11375 +v -0.00609 0.01683 0.11356 +v -0.00483 0.02773 0.11239 +v 0.02220 0.03316 0.11171 +v 0.01236 0.02670 0.11198 +v 0.01438 0.02774 0.11174 +v 0.01472 0.02893 0.11170 +v 0.00763 0.03050 0.11182 +v 0.01027 0.02735 0.11217 +v 0.00699 0.00431 0.11207 +v 0.00677 0.00460 0.11274 +v 0.00588 0.00485 0.11293 +v 0.00499 0.00480 0.11287 +v -0.00785 0.01163 0.11370 +v -0.00486 0.00745 0.11407 +v -0.00033 0.00566 0.11415 +v -0.00420 0.00633 0.11398 +v 0.00043 0.00596 0.11435 +v 0.00141 0.00559 0.11421 +v -0.00719 0.01432 0.11360 +v -0.00796 0.01903 0.11340 +v -0.00813 0.01651 0.11366 +v -0.00996 0.02408 0.11289 +v 0.01544 0.03269 0.11186 +v 0.01510 0.03038 0.11180 +v 0.01152 0.02867 0.11198 +v 0.00492 0.03196 0.11186 +v 0.00873 0.02914 0.11200 +v -0.00323 0.03333 0.11186 +v 0.00601 0.00444 0.11221 +v 0.00367 0.00424 0.11084 +v 0.00370 0.00478 0.11298 +v -0.00762 0.00955 0.11390 +v -0.00630 0.00767 0.11402 +v -0.00105 0.00509 0.11372 +v -0.00382 0.00537 0.11358 +v 0.00082 0.00565 0.11438 +v -0.00970 0.01324 0.11353 +v 0.00286 0.00488 0.11340 +v -0.01098 0.02918 0.11222 +v 0.01526 0.03561 0.11189 +v 0.01300 0.03051 0.11189 +v 0.00251 0.03426 0.11177 +v 0.00591 0.03347 0.11186 +v 0.01016 0.03162 0.11202 +v -0.00760 0.03211 0.11195 +v 0.01052 0.02993 0.11203 +v 0.00469 0.00447 0.11236 +v 0.00417 0.00440 0.11204 +v 0.00119 0.00420 0.11085 +v -0.01164 0.01085 0.11381 +v -0.00546 0.00647 0.11401 +v 0.00040 0.00548 0.11431 +v -0.00264 0.00493 0.11329 +v -0.00036 0.00512 0.11399 +v -0.00470 0.00557 0.11375 +v 0.00083 0.00522 0.11415 +v -0.01265 0.01281 0.11354 +v -0.00903 0.01513 0.11348 +v 0.00147 0.00504 0.11381 +v -0.01140 0.02129 0.11307 +v -0.01000 0.01873 0.11329 +v -0.01311 0.02594 0.11265 +v 0.01211 0.03423 0.11205 +v 0.01780 0.03791 0.11191 +v 0.00825 0.03514 0.11200 +v -0.00693 0.03479 0.11180 +v -0.00146 0.03727 0.11165 +v 0.00299 0.00444 0.11218 +v 0.00270 0.00466 0.11305 +v -0.00808 0.00731 0.11392 +v -0.01007 0.00839 0.11399 +v -0.00500 0.00591 0.11394 +v -0.00675 0.00625 0.11378 +v 0.00017 0.00507 0.11404 +v -0.00151 0.00462 0.11314 +v -0.00027 0.00481 0.11375 +v -0.00396 0.00464 0.11291 +v -0.00479 0.00498 0.11322 +v -0.01167 0.01579 0.11322 +v -0.01004 0.01698 0.11333 +v 0.00157 0.00454 0.11277 +v -0.01213 0.02314 0.11300 +v -0.01479 0.02772 0.11237 +v -0.01027 0.03237 0.11194 +v 0.01237 0.03881 0.11192 +v 0.00576 0.03542 0.11181 +v 0.01071 0.03518 0.11211 +v -0.00901 0.03420 0.11191 +v -0.00545 0.03654 0.11179 +v 0.00484 0.03896 0.11156 +v -0.01258 0.00816 0.11414 +v -0.01436 0.00996 0.11401 +v -0.00561 0.00552 0.11360 +v -0.00069 0.00454 0.11321 +v -0.00236 0.00444 0.11285 +v -0.00321 0.00434 0.11265 +v 0.00064 0.00475 0.11361 +v -0.01351 0.01848 0.11280 +v -0.01349 0.02273 0.11283 +v -0.01253 0.02026 0.11289 +v -0.01346 0.01962 0.11274 +v -0.01371 0.02973 0.11218 +v -0.01527 0.02586 0.11254 +v -0.01459 0.02467 0.11267 +v -0.01211 0.03095 0.11195 +v 0.01494 0.04164 0.11201 +v 0.00913 0.03940 0.11184 +v -0.00813 0.03559 0.11188 +v -0.00524 0.03837 0.11188 +v -0.00145 0.04013 0.11146 +v -0.00138 0.00424 0.11224 +v 0.00008 0.00440 0.11282 +v -0.00946 0.00652 0.11385 +v -0.00821 0.00568 0.11344 +v -0.01130 0.00610 0.11389 +v -0.01949 0.01116 0.11384 +v -0.00680 0.00516 0.11310 +v 0.00016 0.00475 0.11377 +v -0.00023 0.00442 0.11313 +v -0.00486 0.00442 0.11238 +v -0.00393 0.00419 0.11207 +v -0.00574 0.00474 0.11277 +v -0.01430 0.01552 0.11317 +v -0.01512 0.02926 0.11237 +v -0.01649 0.02629 0.11223 +v -0.01160 0.03268 0.11201 +v -0.01065 0.03394 0.11214 +v 0.00957 0.04215 0.11187 +v 0.00639 0.04034 0.11158 +v -0.00949 0.03505 0.11209 +v -0.00709 0.03743 0.11202 +v -0.00408 0.03949 0.11173 +v -0.00618 0.03774 0.11191 +v 0.00062 0.04274 0.11148 +v -0.00238 0.00407 0.11203 +v -0.00341 0.00399 0.11110 +v -0.01493 0.00773 0.11439 +v -0.01354 0.00623 0.11431 +v -0.00273 0.00416 0.11248 +v -0.00298 0.00407 0.11205 +v -0.01571 0.01908 0.11268 +v -0.01429 0.02192 0.11257 +v -0.01522 0.02418 0.11253 +v -0.01615 0.02878 0.11242 +v -0.01476 0.03022 0.11238 +v -0.01394 0.03039 0.11214 +v -0.01668 0.02776 0.11226 +v -0.01667 0.02482 0.11216 +v -0.01265 0.03168 0.11201 +v 0.00467 0.04248 0.11155 +v -0.00824 0.03786 0.11235 +v -0.00633 0.03957 0.11227 +v -0.00669 0.03860 0.11215 +v -0.00333 0.04053 0.11144 +v -0.00229 0.04145 0.11135 +v -0.00491 0.00403 0.11119 +v -0.00968 0.00540 0.11345 +v -0.00785 0.00469 0.11247 +v -0.01282 0.00500 0.11394 +v -0.01755 0.00815 0.11432 +v -0.02121 0.01648 0.11322 +v -0.00666 0.00444 0.11215 +v -0.00571 0.00427 0.11191 +v -0.01556 0.02153 0.11246 +v -0.01490 0.02258 0.11242 +v -0.01594 0.02990 0.11260 +v -0.01759 0.02659 0.11200 +v -0.01794 0.02522 0.11209 +v -0.01297 0.03223 0.11218 +v -0.01156 0.03459 0.11255 +v -0.01032 0.03519 0.11241 +v 0.00701 0.04267 0.11173 +v -0.00513 0.04056 0.11204 +v -0.00430 0.04066 0.11161 +v -0.00184 0.04255 0.11144 +v 0.00221 0.04408 0.11151 +v -0.00760 0.00395 0.11042 +v -0.00640 0.00402 0.11102 +v -0.00890 0.00486 0.11281 +v -0.01061 0.00495 0.11327 +v -0.01494 0.00645 0.11449 +v -0.01177 0.00460 0.11331 +v -0.01388 0.00512 0.11420 +v -0.01600 0.00709 0.11448 +v -0.01965 0.00779 0.11429 +v -0.02194 0.01299 0.11363 +v -0.01947 0.02105 0.11254 +v -0.01562 0.02387 0.11238 +v -0.01739 0.02842 0.11233 +v -0.01703 0.02942 0.11261 +v -0.01398 0.03109 0.11225 +v -0.01513 0.03085 0.11267 +v -0.01646 0.02311 0.11228 +v 0.00524 0.04452 0.11169 +v -0.01056 0.03611 0.11266 +v -0.00734 0.04027 0.11243 +v -0.00559 0.04156 0.11227 +v -0.00383 0.04141 0.11137 +v -0.00043 0.04432 0.11172 +v -0.00319 0.04183 0.11139 +v 0.00147 0.04545 0.11175 +v 0.00428 0.04425 0.11155 +v -0.00975 0.00468 0.11278 +v -0.00905 0.00423 0.11156 +v -0.00751 0.00420 0.11153 +v -0.01484 0.00541 0.11434 +v -0.01255 0.00450 0.11367 +v -0.01382 0.00445 0.11371 +v -0.01740 0.00589 0.11447 +v -0.02173 0.00827 0.11412 +v -0.01891 0.00615 0.11448 +v -0.02576 0.01389 0.11361 +v -0.02476 0.00985 0.11388 +v -0.02701 0.01786 0.11327 +v -0.01611 0.03100 0.11297 +v -0.01923 0.02733 0.11210 +v -0.01368 0.03248 0.11251 +v -0.01295 0.03372 0.11262 +v 0.00505 0.04679 0.11189 +v -0.01008 0.03788 0.11268 +v -0.00923 0.03964 0.11262 +v -0.00459 0.04118 0.11180 +v -0.00528 0.04103 0.11220 +v -0.00416 0.04121 0.11149 +v -0.00061 0.04536 0.11199 +v -0.00266 0.04285 0.11161 +v 0.00349 0.04734 0.11190 +v -0.01052 0.00401 0.11123 +v -0.01062 0.00432 0.11244 +v -0.01586 0.00596 0.11450 +v -0.01262 0.00423 0.11335 +v -0.01300 0.00441 0.11370 +v -0.01442 0.00482 0.11412 +v -0.02079 0.00625 0.11426 +v -0.02406 0.02439 0.11223 +v -0.01861 0.02874 0.11248 +v -0.01796 0.03052 0.11300 +v -0.01491 0.03243 0.11308 +v -0.02104 0.02618 0.11203 +v -0.01454 0.03238 0.11287 +v -0.01238 0.03474 0.11274 +v -0.01214 0.03648 0.11280 +v -0.00911 0.04215 0.11260 +v -0.00453 0.04184 0.11196 +v -0.00536 0.04365 0.11232 +v -0.00394 0.04173 0.11158 +v -0.00340 0.04215 0.11153 +v 0.00200 0.04830 0.11210 +v -0.01385 0.00382 0.11207 +v -0.01173 0.00393 0.11164 +v -0.01150 0.00414 0.11248 +v -0.01614 0.00507 0.11426 +v -0.01222 0.00407 0.11270 +v -0.01321 0.00416 0.11340 +v -0.01511 0.00454 0.11377 +v -0.01850 0.00507 0.11438 +v -0.02398 0.00762 0.11410 +v -0.02246 0.00639 0.11414 +v -0.01966 0.00559 0.11434 +v -0.03120 0.01481 0.11389 +v -0.02668 0.01084 0.11383 +v -0.02836 0.02645 0.11211 +v -0.01832 0.02976 0.11287 +v -0.01681 0.03121 0.11308 +v -0.01543 0.03205 0.11313 +v -0.02031 0.02849 0.11232 +v -0.02150 0.02800 0.11206 +v -0.01472 0.03365 0.11295 +v -0.01347 0.03490 0.11286 +v -0.01148 0.03991 0.11273 +v -0.00794 0.04440 0.11259 +v -0.00435 0.04288 0.11210 +v -0.00547 0.04559 0.11242 +v 0.00077 0.04682 0.11204 +v -0.00295 0.04374 0.11194 +v -0.00354 0.04256 0.11176 +v 0.00344 0.05008 0.11216 +v -0.01483 0.00381 0.11132 +v -0.01111 0.00404 0.11201 +v -0.01296 0.00398 0.11287 +v -0.01363 0.00401 0.11297 +v -0.01450 0.00407 0.11288 +v -0.01722 0.00454 0.11424 +v -0.01911 0.00526 0.11435 +v -0.01786 0.00475 0.11441 +v -0.02621 0.00833 0.11395 +v -0.02071 0.00507 0.11411 +v -0.03307 0.01768 0.11372 +v -0.02309 0.02764 0.11196 +v -0.03157 0.02181 0.11305 +v -0.02494 0.02681 0.11196 +v -0.02005 0.02924 0.11261 +v -0.01924 0.03090 0.11302 +v -0.01787 0.03222 0.11311 +v -0.01625 0.03217 0.11318 +v -0.01538 0.03272 0.11316 +v -0.02230 0.02783 0.11191 +v -0.01569 0.03755 0.11292 +v -0.01135 0.04340 0.11258 +v -0.00951 0.04455 0.11261 +v -0.00415 0.04463 0.11225 +v -0.00148 0.04633 0.11237 +v -0.00313 0.04535 0.11230 +v -0.00026 0.04801 0.11239 +v 0.00021 0.04979 0.11246 +v 0.00515 0.05204 0.11228 +v -0.01302 0.00387 0.11237 +v -0.01669 0.00374 0.11181 +v -0.01636 0.00428 0.11371 +v -0.01570 0.00401 0.11280 +v -0.01940 0.00467 0.11399 +v -0.01827 0.00431 0.11411 +v -0.02616 0.00635 0.11380 +v -0.02408 0.00600 0.11390 +v -0.02297 0.00541 0.11391 +v -0.03145 0.01314 0.11398 +v -0.03287 0.01441 0.11394 +v -0.02862 0.00898 0.11395 +v -0.03109 0.02644 0.11229 +v -0.02652 0.02822 0.11197 +v -0.01969 0.03009 0.11293 +v -0.02158 0.02944 0.11252 +v -0.02249 0.02860 0.11209 +v -0.01535 0.03618 0.11294 +v -0.01444 0.04161 0.11265 +v -0.00700 0.04588 0.11262 +v -0.00840 0.04609 0.11273 +v 0.00043 0.05151 0.11249 +v 0.00296 0.05239 0.11234 +v -0.01975 0.00357 0.11060 +v -0.01805 0.00371 0.11202 +v -0.01719 0.00399 0.11375 +v -0.01779 0.00431 0.11432 +v -0.02769 0.00730 0.11391 +v -0.02179 0.00476 0.11380 +v -0.02038 0.00468 0.11396 +v -0.03128 0.01099 0.11398 +v -0.03333 0.01942 0.11368 +v -0.03441 0.01670 0.11376 +v -0.02450 0.02830 0.11194 +v -0.03481 0.02425 0.11278 +v -0.02928 0.02787 0.11201 +v -0.02758 0.02854 0.11196 +v -0.02064 0.03045 0.11281 +v -0.02074 0.03269 0.11284 +v -0.01648 0.03354 0.11311 +v -0.01776 0.03774 0.11278 +v -0.01840 0.04099 0.11257 +v -0.01334 0.04450 0.11250 +v -0.01139 0.04586 0.11251 +v -0.00649 0.04630 0.11259 +v -0.00988 0.04598 0.11261 +v -0.00475 0.04648 0.11254 +v -0.00300 0.04663 0.11258 +v -0.00241 0.04822 0.11289 +v -0.00231 0.05031 0.11282 +v 0.00399 0.05525 0.11233 +v -0.02388 0.00348 0.11061 +v -0.02112 0.00366 0.11182 +v -0.01761 0.00376 0.11292 +v -0.01687 0.00386 0.11301 +v -0.01769 0.00406 0.11407 +v -0.01854 0.00396 0.11324 +v -0.02534 0.00482 0.11328 +v -0.02807 0.00595 0.11371 +v -0.02372 0.00471 0.11336 +v -0.02101 0.00440 0.11363 +v -0.02022 0.00427 0.11356 +v -0.03294 0.01327 0.11393 +v -0.03399 0.01878 0.11380 +v -0.03385 0.01981 0.11360 +v -0.03536 0.01486 0.11361 +v -0.03499 0.01725 0.11361 +v -0.03106 0.00819 0.11408 +v -0.02936 0.00706 0.11393 +v -0.02364 0.02909 0.11212 +v -0.02307 0.02869 0.11204 +v -0.03234 0.02761 0.11232 +v -0.03461 0.02081 0.11327 +v -0.02823 0.02803 0.11189 +v -0.02646 0.02972 0.11215 +v -0.01822 0.03491 0.11292 +v -0.02307 0.03048 0.11247 +v -0.01616 0.04512 0.11254 +v -0.00688 0.04708 0.11289 +v -0.00598 0.04667 0.11268 +v -0.00931 0.04700 0.11280 +v 0.00058 0.05467 0.11245 +v -0.00189 0.05269 0.11268 +v -0.02536 0.00337 0.11085 +v -0.02248 0.00360 0.11121 +v -0.01966 0.00376 0.11211 +v -0.01741 0.00379 0.11341 +v -0.01762 0.00383 0.11374 +v -0.01800 0.00391 0.11377 +v -0.01961 0.00409 0.11321 +v -0.02699 0.00498 0.11330 +v -0.02201 0.00431 0.11330 +v -0.02261 0.00413 0.11300 +v -0.03390 0.01199 0.11393 +v -0.03493 0.01358 0.11372 +v -0.03478 0.01872 0.11360 +v -0.03263 0.00978 0.11409 +v -0.02507 0.03023 0.11227 +v -0.03394 0.02813 0.11252 +v -0.03611 0.02123 0.11299 +v -0.03060 0.02860 0.11219 +v -0.02829 0.02870 0.11195 +v -0.02786 0.02964 0.11215 +v -0.02169 0.03158 0.11275 +v -0.02372 0.03871 0.11225 +v -0.01947 0.04492 0.11254 +v -0.01348 0.04626 0.11246 +v -0.01034 0.04657 0.11258 +v -0.00825 0.04770 0.11304 +v -0.00467 0.04773 0.11303 +v -0.00424 0.04708 0.11276 +v -0.00337 0.04771 0.11289 +v -0.00377 0.04877 0.11302 +v -0.00501 0.05093 0.11298 +v 0.00206 0.05693 0.11236 +v -0.02475 0.00354 0.11157 +v -0.02351 0.00387 0.11227 +v -0.02068 0.00406 0.11323 +v -0.02203 0.00384 0.11235 +v -0.01783 0.00379 0.11345 +v -0.02643 0.00400 0.11240 +v -0.02497 0.00383 0.11261 +v -0.02986 0.00549 0.11362 +v -0.02833 0.00478 0.11318 +v -0.03630 0.01686 0.11330 +v -0.03674 0.01400 0.11359 +v -0.03089 0.00664 0.11402 +v -0.03363 0.00799 0.11431 +v -0.03671 0.02691 0.11286 +v -0.03157 0.02949 0.11234 +v -0.03593 0.01948 0.11322 +v -0.03677 0.02239 0.11282 +v -0.02915 0.02908 0.11213 +v -0.02777 0.03090 0.11236 +v -0.02423 0.03149 0.11246 +v -0.02148 0.04222 0.11240 +v -0.01758 0.04615 0.11260 +v -0.01471 0.04689 0.11261 +v -0.01257 0.04715 0.11253 +v -0.01067 0.04712 0.11266 +v -0.00708 0.04801 0.11313 +v -0.00836 0.04856 0.11320 +v -0.00442 0.05462 0.11267 +v -0.00062 0.05844 0.11236 +v 0.00495 0.05844 0.11220 +v -0.02637 0.00350 0.11090 +v -0.02543 0.00367 0.11214 +v -0.02745 0.00437 0.11291 +v -0.02532 0.00401 0.11274 +v -0.03611 0.00975 0.11431 +v -0.03601 0.01234 0.11387 +v -0.03691 0.01553 0.11334 +v -0.03223 0.00723 0.11420 +v -0.03775 0.02525 0.11292 +v -0.03613 0.02932 0.11281 +v -0.03298 0.02961 0.11243 +v -0.03686 0.01990 0.11295 +v -0.03745 0.02095 0.11279 +v -0.03714 0.02348 0.11281 +v -0.02976 0.03008 0.11237 +v -0.02644 0.03201 0.11241 +v -0.02377 0.03326 0.11253 +v -0.02398 0.04104 0.11228 +v -0.01989 0.04663 0.11270 +v -0.01595 0.04690 0.11268 +v -0.02225 0.04373 0.11246 +v -0.01366 0.04703 0.11251 +v -0.00579 0.04842 0.11311 +v -0.00726 0.04907 0.11319 +v -0.01175 0.04821 0.11280 +v -0.00279 0.05763 0.11248 +v -0.00740 0.05485 0.11271 +v 0.00151 0.05891 0.11239 +v 0.00266 0.05882 0.11233 +v 0.00801 0.05574 0.11227 +v -0.02461 0.00374 0.11235 +v -0.02795 0.00405 0.11242 +v -0.03200 0.00547 0.11395 +v -0.02959 0.00421 0.11250 +v -0.03775 0.01802 0.11288 +v -0.03832 0.01243 0.11393 +v -0.03880 0.01532 0.11332 +v -0.03694 0.01782 0.11304 +v -0.03535 0.00709 0.11453 +v -0.03360 0.00638 0.11432 +v -0.04009 0.02621 0.11330 +v -0.03908 0.02933 0.11313 +v -0.03186 0.03172 0.11247 +v -0.03823 0.02228 0.11271 +v -0.02888 0.03104 0.11244 +v -0.02871 0.03204 0.11244 +v -0.02577 0.03385 0.11241 +v -0.03034 0.03626 0.11230 +v -0.01895 0.04774 0.11291 +v -0.01677 0.04809 0.11298 +v -0.01468 0.04759 0.11283 +v -0.01282 0.04830 0.11288 +v -0.00899 0.04976 0.11317 +v -0.01154 0.04972 0.11299 +v -0.00752 0.05077 0.11310 +v -0.00196 0.05916 0.11256 +v 0.00065 0.06015 0.11255 +v 0.00294 0.06005 0.11227 +v 0.00857 0.06064 0.11205 +v -0.02736 0.00369 0.11163 +v -0.03095 0.00464 0.11332 +v -0.03703 0.00758 0.11469 +v -0.04007 0.02468 0.11314 +v -0.03865 0.02388 0.11287 +v -0.03690 0.03069 0.11288 +v -0.03815 0.02018 0.11269 +v -0.02997 0.04026 0.11234 +v -0.02508 0.04400 0.11245 +v -0.02212 0.04528 0.11269 +v -0.02060 0.04802 0.11295 +v -0.01579 0.04844 0.11307 +v -0.01502 0.04818 0.11304 +v -0.00824 0.05748 0.11261 +v -0.00944 0.05154 0.11301 +v -0.00498 0.05955 0.11254 +v 0.00191 0.06042 0.11245 +v 0.00386 0.06127 0.11202 +v 0.00571 0.06099 0.11198 +v 0.01178 0.05918 0.11214 +v -0.02919 0.00374 0.11133 +v -0.03081 0.00373 0.11134 +v -0.03234 0.00432 0.11332 +v -0.03115 0.00406 0.11259 +v -0.03989 0.00987 0.11460 +v -0.03938 0.01854 0.11276 +v -0.04089 0.01485 0.11349 +v -0.03365 0.00479 0.11403 +v -0.03496 0.00570 0.11446 +v -0.04052 0.00773 0.11504 +v -0.03685 0.00614 0.11470 +v -0.04181 0.02532 0.11352 +v -0.03475 0.03139 0.11276 +v -0.03927 0.03457 0.11275 +v -0.03095 0.03363 0.11240 +v -0.03946 0.02202 0.11254 +v -0.03930 0.02283 0.11268 +v -0.03270 0.03909 0.11241 +v -0.02730 0.04200 0.11241 +v -0.02406 0.04431 0.11251 +v -0.01823 0.04819 0.11303 +v -0.01990 0.04917 0.11304 +v -0.01664 0.04957 0.11311 +v -0.01407 0.04801 0.11293 +v -0.01369 0.04903 0.11305 +v -0.01098 0.05598 0.11274 +v -0.01201 0.05356 0.11286 +v -0.00060 0.06087 0.11274 +v -0.00330 0.06212 0.11291 +v 0.00204 0.06218 0.11256 +v 0.00298 0.06127 0.11226 +v 0.00746 0.06273 0.11201 +v 0.01397 0.05572 0.11223 +v 0.01170 0.06298 0.11217 +v -0.03197 0.00358 0.11079 +v -0.03265 0.00478 0.11389 +v -0.04305 0.01098 0.11459 +v -0.04115 0.01819 0.11281 +v -0.03871 0.00639 0.11497 +v -0.04032 0.02345 0.11285 +v -0.04192 0.02460 0.11352 +v -0.04332 0.02690 0.11345 +v -0.04186 0.03273 0.11299 +v -0.03325 0.03300 0.11255 +v -0.04042 0.02122 0.11252 +v -0.03728 0.03541 0.11258 +v -0.03420 0.03698 0.11241 +v -0.03194 0.04146 0.11253 +v -0.02936 0.04230 0.11259 +v -0.03026 0.04298 0.11273 +v -0.02548 0.04627 0.11279 +v -0.02275 0.04759 0.11311 +v -0.02395 0.04615 0.11294 +v -0.01864 0.04904 0.11314 +v -0.02159 0.04923 0.11308 +v -0.01526 0.04942 0.11313 +v -0.01452 0.04856 0.11311 +v -0.01430 0.05128 0.11300 +v -0.00693 0.06067 0.11269 +v -0.01106 0.05741 0.11276 +v -0.00566 0.06322 0.11293 +v 0.00513 0.06239 0.11198 +v 0.00314 0.06236 0.11239 +v 0.01040 0.06293 0.11212 +v 0.01437 0.05885 0.11218 +v 0.01350 0.06114 0.11225 +v -0.03234 0.00372 0.11196 +v -0.03582 0.00330 0.11064 +v -0.04164 0.01991 0.11266 +v -0.04395 0.01599 0.11350 +v -0.03506 0.00499 0.11433 +v -0.03641 0.00492 0.11444 +v -0.04110 0.00574 0.11521 +v -0.03820 0.00496 0.11472 +v -0.04209 0.02424 0.11340 +v -0.04367 0.02485 0.11336 +v -0.04388 0.03871 0.11285 +v -0.04004 0.02250 0.11255 +v -0.03810 0.04058 0.11263 +v -0.03320 0.04339 0.11266 +v -0.03052 0.04132 0.11248 +v -0.02790 0.04644 0.11277 +v -0.02691 0.04817 0.11299 +v -0.02045 0.05107 0.11305 +v -0.02010 0.05498 0.11285 +v -0.01301 0.05660 0.11278 +v -0.00061 0.06333 0.11292 +v -0.00249 0.06602 0.11313 +v 0.00422 0.06281 0.11222 +v 0.00520 0.06312 0.11198 +v 0.00971 0.06459 0.11227 +v 0.01463 0.06037 0.11230 +v 0.01574 0.05890 0.11231 +v 0.01225 0.06431 0.11244 +v 0.01300 0.06305 0.11232 +v -0.03525 0.00348 0.11213 +v -0.03317 0.00365 0.11241 +v -0.03343 0.00395 0.11321 +v -0.03278 0.00383 0.11280 +v -0.04603 0.00747 0.11537 +v -0.04465 0.01858 0.11313 +v -0.04561 0.01460 0.11398 +v -0.03461 0.00443 0.11411 +v -0.04364 0.00560 0.11533 +v -0.03880 0.00543 0.11502 +v -0.04257 0.02338 0.11296 +v -0.04331 0.02389 0.11315 +v -0.04563 0.02635 0.11345 +v -0.04705 0.03012 0.11319 +v -0.04113 0.04126 0.11271 +v -0.04757 0.03825 0.11293 +v -0.04188 0.02285 0.11270 +v -0.04011 0.04432 0.11281 +v -0.03554 0.04593 0.11281 +v -0.03026 0.04249 0.11271 +v -0.03256 0.04660 0.11276 +v -0.02484 0.04821 0.11312 +v -0.02372 0.05128 0.11314 +v -0.01555 0.05528 0.11282 +v -0.01126 0.06024 0.11307 +v -0.00897 0.06502 0.11319 +v -0.01330 0.05821 0.11288 +v 0.00295 0.06455 0.11284 +v -0.00474 0.06733 0.11323 +v 0.00409 0.06447 0.11270 +v 0.00747 0.06464 0.11222 +v 0.01528 0.05974 0.11224 +v 0.01663 0.05808 0.11234 +v 0.01487 0.06161 0.11252 +v -0.03728 0.00324 0.11211 +v -0.03424 0.00422 0.11396 +v -0.04737 0.01062 0.11497 +v -0.04236 0.02208 0.11268 +v -0.04454 0.02048 0.11289 +v -0.03551 0.00426 0.11399 +v -0.03733 0.00423 0.11431 +v -0.04235 0.00495 0.11519 +v -0.04044 0.00495 0.11516 +v -0.03936 0.00450 0.11478 +v -0.04422 0.02352 0.11307 +v -0.04522 0.02448 0.11327 +v -0.04337 0.04200 0.11283 +v -0.03147 0.04991 0.11292 +v -0.02971 0.05147 0.11313 +v -0.02479 0.04951 0.11321 +v -0.01822 0.05756 0.11283 +v -0.01287 0.05996 0.11313 +v -0.01062 0.06296 0.11313 +v -0.01093 0.06811 0.11350 +v -0.01402 0.05740 0.11277 +v 0.00081 0.06581 0.11309 +v -0.00364 0.06946 0.11344 +v 0.00472 0.06442 0.11253 +v 0.00589 0.06500 0.11243 +v 0.01042 0.06571 0.11244 +v 0.01143 0.06596 0.11262 +v 0.01575 0.06071 0.11254 +v 0.01708 0.05928 0.11254 +v 0.01656 0.06018 0.11262 +v 0.01376 0.06414 0.11265 +v 0.01550 0.06306 0.11283 +v -0.04081 0.00319 0.11151 +v -0.04444 0.00343 0.11265 +v -0.03681 0.00343 0.11300 +v -0.03403 0.00364 0.11259 +v -0.03430 0.00378 0.11322 +v -0.04824 0.00853 0.11544 +v -0.04584 0.00496 0.11538 +v -0.04697 0.02069 0.11315 +v -0.05111 0.01300 0.11460 +v -0.04887 0.01799 0.11361 +v -0.03652 0.00409 0.11404 +v -0.03466 0.00404 0.11377 +v -0.03805 0.00402 0.11427 +v -0.04165 0.00487 0.11513 +v -0.04319 0.00439 0.11492 +v -0.04097 0.00452 0.11490 +v -0.04009 0.00458 0.11497 +v -0.03888 0.00401 0.11424 +v -0.04333 0.02303 0.11289 +v -0.04706 0.02570 0.11333 +v -0.05047 0.03236 0.11302 +v -0.05005 0.04067 0.11304 +v -0.04084 0.04656 0.11305 +v -0.03559 0.05011 0.11295 +v -0.02721 0.05237 0.11324 +v -0.02530 0.05528 0.11299 +v -0.01759 0.05809 0.11285 +v -0.02085 0.05754 0.11277 +v -0.01435 0.06238 0.11325 +v -0.01509 0.06735 0.11355 +v 0.00402 0.06840 0.11308 +v -0.00056 0.07025 0.11340 +v -0.00712 0.06831 0.11340 +v 0.00434 0.06541 0.11277 +v 0.00712 0.06686 0.11267 +v 0.00970 0.06737 0.11281 +v 0.01378 0.06524 0.11279 +v 0.01621 0.06185 0.11290 +v -0.04274 0.00339 0.11242 +v -0.03962 0.00329 0.11242 +v -0.04672 0.00318 0.11105 +v -0.03611 0.00368 0.11346 +v -0.03851 0.00353 0.11342 +v -0.03535 0.00372 0.11320 +v -0.04966 0.00675 0.11560 +v -0.05012 0.00957 0.11534 +v -0.04780 0.00526 0.11542 +v -0.04450 0.00441 0.11514 +v -0.04435 0.02227 0.11287 +v -0.04659 0.02141 0.11304 +v -0.03721 0.00380 0.11392 +v -0.03762 0.00387 0.11414 +v -0.04202 0.00439 0.11485 +v -0.04039 0.00403 0.11446 +v -0.04994 0.03025 0.11306 +v -0.04655 0.02416 0.11325 +v -0.05352 0.03694 0.11305 +v -0.04515 0.04473 0.11302 +v -0.04353 0.04672 0.11318 +v -0.04032 0.04850 0.11315 +v -0.03655 0.05321 0.11303 +v -0.03053 0.05330 0.11321 +v -0.02287 0.05709 0.11286 +v -0.01599 0.06047 0.11309 +v -0.01936 0.05968 0.11308 +v -0.01297 0.06990 0.11376 +v 0.00545 0.06692 0.11279 +v -0.00392 0.07327 0.11393 +v -0.00609 0.07060 0.11365 +v -0.00865 0.07004 0.11372 +v 0.01829 0.06078 0.11323 +v 0.01512 0.06446 0.11287 +v 0.01750 0.06200 0.11314 +v 0.01713 0.06101 0.11296 +v -0.04089 0.00337 0.11283 +v -0.04695 0.00334 0.11269 +v -0.04302 0.00363 0.11358 +v -0.03785 0.00368 0.11387 +v -0.04693 0.00442 0.11524 +v -0.04554 0.00406 0.11498 +v -0.04774 0.02282 0.11321 +v -0.04882 0.02122 0.11328 +v -0.05374 0.01766 0.11374 +v -0.05196 0.01011 0.11530 +v -0.03834 0.00374 0.11399 +v -0.04288 0.00386 0.11420 +v -0.04416 0.00397 0.11473 +v -0.04022 0.00366 0.11376 +v -0.04585 0.02287 0.11309 +v -0.05165 0.02749 0.11317 +v -0.05532 0.03146 0.11311 +v -0.04695 0.04613 0.11317 +v -0.04240 0.04752 0.11330 +v -0.04109 0.05200 0.11316 +v -0.03382 0.05492 0.11321 +v -0.02931 0.05268 0.11333 +v -0.02830 0.05482 0.11318 +v -0.02496 0.05803 0.11287 +v -0.02245 0.05865 0.11295 +v -0.01910 0.06529 0.11351 +v -0.01042 0.07067 0.11392 +v -0.01439 0.07105 0.11384 +v 0.00545 0.06985 0.11313 +v 0.00140 0.07312 0.11348 +v -0.00439 0.07196 0.11379 +v -0.00171 0.07392 0.11386 +v -0.00716 0.07063 0.11369 +v 0.01724 0.06399 0.11300 +v -0.04158 0.00358 0.11352 +v -0.04592 0.00360 0.11381 +v -0.04565 0.00378 0.11456 +v -0.04922 0.00524 0.11549 +v -0.05147 0.00817 0.11560 +v -0.04629 0.00419 0.11515 +v -0.04776 0.00412 0.11479 +v -0.05128 0.02052 0.11335 +v -0.05579 0.01289 0.11452 +v -0.04140 0.00395 0.11432 +v -0.04963 0.02414 0.11327 +v -0.05501 0.02856 0.11320 +v -0.05800 0.03168 0.11319 +v -0.04479 0.04820 0.11325 +v -0.03847 0.05613 0.11289 +v -0.03552 0.05478 0.11312 +v -0.02876 0.05335 0.11336 +v -0.03049 0.05445 0.11323 +v -0.02725 0.05657 0.11296 +v -0.02625 0.05741 0.11284 +v -0.02076 0.06052 0.11319 +v -0.01909 0.06993 0.11378 +v -0.01045 0.07163 0.11405 +v -0.00711 0.07201 0.11405 +v -0.00417 0.07548 0.11398 +v 0.01886 0.06136 0.11334 +v -0.04825 0.00335 0.11315 +v -0.04754 0.00362 0.11388 +v -0.04896 0.00452 0.11514 +v -0.05036 0.00480 0.11526 +v -0.05230 0.00676 0.11567 +v -0.04683 0.00403 0.11493 +v -0.05059 0.02194 0.11325 +v -0.05345 0.02169 0.11312 +v -0.05948 0.01578 0.11398 +v -0.05356 0.00847 0.11547 +v -0.05543 0.01034 0.11502 +v -0.05160 0.02400 0.11317 +v -0.05340 0.02686 0.11314 +v -0.05967 0.03780 0.11336 +v -0.05659 0.03015 0.11309 +v -0.04813 0.04928 0.11333 +v -0.04417 0.05022 0.11330 +v -0.04219 0.05442 0.11318 +v -0.03622 0.05694 0.11315 +v -0.03268 0.05644 0.11326 +v -0.02983 0.05697 0.11306 +v -0.02395 0.06016 0.11311 +v -0.02606 0.05810 0.11276 +v -0.02343 0.06396 0.11347 +v -0.02418 0.06950 0.11390 +v -0.00668 0.07314 0.11424 +v -0.01041 0.07354 0.11408 +v -0.01718 0.07467 0.11399 +v 0.00023 0.07753 0.11372 +v -0.00491 0.07396 0.11409 +v -0.00176 0.07816 0.11382 +v 0.01839 0.06141 0.11330 +v -0.04955 0.00328 0.11302 +v -0.04686 0.00382 0.11445 +v -0.05156 0.00558 0.11558 +v -0.04842 0.00388 0.11447 +v -0.05228 0.02243 0.11312 +v -0.05786 0.01947 0.11348 +v -0.06135 0.01143 0.11451 +v -0.05754 0.00921 0.11512 +v -0.05620 0.02646 0.11295 +v -0.06039 0.03044 0.11334 +v -0.05819 0.02902 0.11304 +v -0.05729 0.02880 0.11302 +v -0.04471 0.05444 0.11333 +v -0.03859 0.05651 0.11287 +v -0.03530 0.05939 0.11334 +v -0.02778 0.05841 0.11296 +v -0.02582 0.05929 0.11297 +v -0.02412 0.07306 0.11398 +v -0.01286 0.07500 0.11400 +v -0.02447 0.07772 0.11414 +v 0.00177 0.07608 0.11357 +v -0.00368 0.07933 0.11381 +v -0.04974 0.00360 0.11399 +v -0.04963 0.00414 0.11479 +v -0.05201 0.00460 0.11525 +v -0.05342 0.00527 0.11542 +v -0.05422 0.00663 0.11558 +v -0.05368 0.02334 0.11292 +v -0.05502 0.02279 0.11303 +v -0.06077 0.01936 0.11349 +v -0.05880 0.00790 0.11529 +v -0.06495 0.01019 0.11454 +v -0.05647 0.00725 0.11536 +v -0.05383 0.02365 0.11294 +v -0.05715 0.02783 0.11295 +v -0.06207 0.03327 0.11347 +v -0.04295 0.05662 0.11334 +v -0.03711 0.05827 0.11320 +v -0.03257 0.05959 0.11334 +v -0.02747 0.06098 0.11324 +v -0.02683 0.06426 0.11357 +v -0.02940 0.07163 0.11410 +v -0.00723 0.07571 0.11406 +v -0.00943 0.07766 0.11404 +v -0.01523 0.07808 0.11416 +v -0.01994 0.07796 0.11416 +v -0.00071 0.07939 0.11385 +v -0.00350 0.08016 0.11384 +v -0.05090 0.00331 0.11347 +v -0.05038 0.00393 0.11456 +v -0.05133 0.00405 0.11481 +v -0.05966 0.02157 0.11339 +v -0.06258 0.01627 0.11394 +v -0.06232 0.00904 0.11480 +v -0.06740 0.01112 0.11449 +v -0.05758 0.02562 0.11298 +v -0.05855 0.02779 0.11307 +v -0.06267 0.03065 0.11355 +v -0.04481 0.05658 0.11349 +v -0.03924 0.05751 0.11305 +v -0.03818 0.05963 0.11335 +v -0.03535 0.06286 0.11362 +v -0.03100 0.06892 0.11398 +v -0.02818 0.07438 0.11410 +v -0.02698 0.07702 0.11412 +v -0.01240 0.07863 0.11411 +v -0.01769 0.07821 0.11423 +v -0.02355 0.07910 0.11426 +v 0.00108 0.07947 0.11386 +v -0.00685 0.07853 0.11399 +v -0.00532 0.08007 0.11406 +v -0.05217 0.00364 0.11437 +v -0.05342 0.00329 0.11340 +v -0.05362 0.00425 0.11493 +v -0.05221 0.00398 0.11482 +v -0.05524 0.00563 0.11534 +v -0.05823 0.02375 0.11319 +v -0.06170 0.02117 0.11346 +v -0.06320 0.01965 0.11357 +v -0.06049 0.00652 0.11544 +v -0.06363 0.00770 0.11493 +v -0.06665 0.00848 0.11476 +v -0.05876 0.00635 0.11537 +v -0.06039 0.02711 0.11334 +v -0.06480 0.03205 0.11356 +v -0.06315 0.02781 0.11356 +v -0.04170 0.06151 0.11376 +v -0.04117 0.05949 0.11351 +v -0.03421 0.06688 0.11392 +v -0.02919 0.06441 0.11369 +v -0.03205 0.07187 0.11426 +v -0.03160 0.07533 0.11417 +v -0.02624 0.07873 0.11416 +v -0.01030 0.07978 0.11422 +v -0.01511 0.07951 0.11431 +v -0.01985 0.07894 0.11428 +v -0.02443 0.07978 0.11444 +v 0.00117 0.08116 0.11409 +v -0.00480 0.08126 0.11418 +v -0.05498 0.00337 0.11329 +v -0.05472 0.00473 0.11509 +v -0.05652 0.00550 0.11514 +v -0.06041 0.02432 0.11344 +v -0.06178 0.02405 0.11357 +v -0.06577 0.01737 0.11396 +v -0.06223 0.00687 0.11516 +v -0.06999 0.00726 0.11500 +v -0.05774 0.00551 0.11510 +v -0.06695 0.03348 0.11369 +v -0.03794 0.06345 0.11375 +v -0.03479 0.06927 0.11424 +v -0.02938 0.07707 0.11422 +v -0.02547 0.07865 0.11415 +v -0.02699 0.07925 0.11422 +v -0.00782 0.07884 0.11405 +v -0.01098 0.08034 0.11428 +v -0.00833 0.07963 0.11424 +v -0.01832 0.07963 0.11447 +v -0.02555 0.07928 0.11430 +v -0.02287 0.08093 0.11459 +v -0.00191 0.08252 0.11406 +v 0.00191 0.08140 0.11409 +v -0.00674 0.07957 0.11415 +v -0.00591 0.08088 0.11440 +v -0.00337 0.08203 0.11406 +v -0.05376 0.00373 0.11438 +v -0.05429 0.00348 0.11392 +v -0.05488 0.00396 0.11442 +v -0.05583 0.00468 0.11485 +v -0.06373 0.02108 0.11348 +v -0.06458 0.02285 0.11350 +v -0.06532 0.02109 0.11358 +v -0.06795 0.01408 0.11430 +v -0.05988 0.00584 0.11538 +v -0.06196 0.00545 0.11521 +v -0.06555 0.00607 0.11501 +v -0.06359 0.00564 0.11516 +v -0.07148 0.01261 0.11448 +v -0.06803 0.00687 0.11492 +v -0.05920 0.00505 0.11505 +v -0.06139 0.02505 0.11358 +v -0.06585 0.03087 0.11352 +v -0.04066 0.06197 0.11373 +v -0.03866 0.06834 0.11427 +v -0.04037 0.07171 0.11444 +v -0.03805 0.07671 0.11435 +v -0.03317 0.07707 0.11426 +v -0.02933 0.07841 0.11434 +v -0.00929 0.08059 0.11452 +v -0.01158 0.08121 0.11461 +v -0.01824 0.08101 0.11477 +v -0.02527 0.08058 0.11466 +v -0.02059 0.08054 0.11457 +v -0.00038 0.08455 0.11414 +v 0.00257 0.08462 0.11413 +v -0.00668 0.08089 0.11463 +v -0.00624 0.08183 0.11456 +v -0.00466 0.08266 0.11426 +v -0.05775 0.00318 0.11220 +v -0.05659 0.00337 0.11292 +v -0.05709 0.00460 0.11463 +v -0.06396 0.02530 0.11363 +v -0.06782 0.02029 0.11384 +v -0.06943 0.01793 0.11417 +v -0.06065 0.00607 0.11542 +v -0.07315 0.00857 0.11492 +v -0.07005 0.00520 0.11497 +v -0.05815 0.00451 0.11457 +v -0.06749 0.02556 0.11376 +v -0.06848 0.03117 0.11362 +v -0.03164 0.07811 0.11438 +v -0.02889 0.07967 0.11448 +v -0.01051 0.08121 0.11465 +v -0.00739 0.08053 0.11455 +v -0.01404 0.08032 0.11449 +v -0.01668 0.08101 0.11471 +v -0.02211 0.08243 0.11481 +v -0.00284 0.08392 0.11415 +v -0.05637 0.00390 0.11399 +v -0.06604 0.02289 0.11352 +v -0.07206 0.01456 0.11435 +v -0.07162 0.01705 0.11436 +v -0.06064 0.00505 0.11518 +v -0.06295 0.00442 0.11511 +v -0.06478 0.00491 0.11512 +v -0.06725 0.00488 0.11481 +v -0.07230 0.00564 0.11508 +v -0.07468 0.01186 0.11454 +v -0.06860 0.00495 0.11481 +v -0.05906 0.00409 0.11441 +v -0.06880 0.02871 0.11365 +v -0.06870 0.03239 0.11368 +v -0.03641 0.08038 0.11443 +v -0.03065 0.08033 0.11466 +v -0.02807 0.08067 0.11465 +v -0.02641 0.08056 0.11459 +v -0.00949 0.08122 0.11474 +v -0.00872 0.08117 0.11479 +v -0.01557 0.08057 0.11461 +v -0.01388 0.08107 0.11479 +v -0.01156 0.08205 0.11482 +v -0.01713 0.08218 0.11487 +v -0.02009 0.08169 0.11479 +v -0.02296 0.08386 0.11495 +v 0.00101 0.08723 0.11424 +v -0.00317 0.08622 0.11425 +v -0.00757 0.08142 0.11478 +v -0.00512 0.08361 0.11434 +v -0.05803 0.00373 0.11365 +v -0.07095 0.02198 0.11386 +v -0.06876 0.02251 0.11374 +v -0.05994 0.00422 0.11477 +v -0.06169 0.00403 0.11479 +v -0.06398 0.00438 0.11516 +v -0.06587 0.00457 0.11490 +v -0.07404 0.00580 0.11515 +v -0.07557 0.01089 0.11458 +v -0.06947 0.00424 0.11469 +v -0.07132 0.00419 0.11494 +v -0.07026 0.02762 0.11363 +v -0.07176 0.03049 0.11367 +v -0.04279 0.08119 0.11442 +v -0.03260 0.07944 0.11452 +v -0.02910 0.08097 0.11468 +v -0.02649 0.08187 0.11474 +v -0.01032 0.08190 0.11480 +v -0.01326 0.08176 0.11495 +v -0.01827 0.08236 0.11492 +v -0.01567 0.08154 0.11486 +v -0.02068 0.08332 0.11488 +v -0.00443 0.08508 0.11423 +v -0.00751 0.08227 0.11477 +v -0.06007 0.00331 0.11370 +v -0.05925 0.00354 0.11376 +v -0.06706 0.02359 0.11362 +v -0.07662 0.01480 0.11446 +v -0.07316 0.01673 0.11436 +v -0.07501 0.01896 0.11420 +v -0.06070 0.00406 0.11482 +v -0.06298 0.00356 0.11470 +v -0.06355 0.00384 0.11505 +v -0.06486 0.00408 0.11492 +v -0.06822 0.00382 0.11423 +v -0.06692 0.00404 0.11460 +v -0.07387 0.00491 0.11514 +v -0.07549 0.00612 0.11510 +v -0.07601 0.00719 0.11498 +v -0.07048 0.00400 0.11480 +v -0.07246 0.00401 0.11481 +v -0.05972 0.00370 0.11428 +v -0.06907 0.02413 0.11368 +v -0.07179 0.03198 0.11367 +v -0.04148 0.08331 0.11450 +v -0.03519 0.08359 0.11465 +v -0.00897 0.08200 0.11485 +v -0.00905 0.08142 0.11487 +v -0.01374 0.08203 0.11509 +v -0.01317 0.08299 0.11497 +v -0.01048 0.08371 0.11478 +v -0.01747 0.08402 0.11490 +v -0.01524 0.08279 0.11498 +v -0.02499 0.08458 0.11489 +v -0.01923 0.08473 0.11488 +v -0.00165 0.08740 0.11436 +v -0.00520 0.08639 0.11424 +v -0.00594 0.08516 0.11431 +v -0.06121 0.00329 0.11390 +v -0.07508 0.02418 0.11382 +v -0.06087 0.00365 0.11452 +v -0.06226 0.00332 0.11420 +v -0.06414 0.00377 0.11497 +v -0.06581 0.00372 0.11444 +v -0.06748 0.00418 0.11464 +v -0.07333 0.00438 0.11501 +v -0.07528 0.00496 0.11504 +v -0.07828 0.01050 0.11463 +v -0.07815 0.00725 0.11492 +v -0.07001 0.00351 0.11425 +v -0.07116 0.00371 0.11488 +v -0.07163 0.00355 0.11463 +v -0.07127 0.02610 0.11351 +v -0.07313 0.02982 0.11354 +v -0.03966 0.08482 0.11465 +v -0.04350 0.08279 0.11444 +v -0.02876 0.08395 0.11474 +v -0.03319 0.08687 0.11472 +v -0.02402 0.08660 0.11499 +v -0.01993 0.08706 0.11482 +v -0.00071 0.08877 0.11454 +v -0.00398 0.08773 0.11448 +v -0.00813 0.08335 0.11471 +v -0.00821 0.08547 0.11444 +v -0.07158 0.02496 0.11358 +v -0.07673 0.02017 0.11413 +v -0.06306 0.00315 0.11404 +v -0.06377 0.00349 0.11478 +v -0.06456 0.00342 0.11439 +v -0.06683 0.00351 0.11404 +v -0.07439 0.00409 0.11492 +v -0.07700 0.00546 0.11496 +v -0.08100 0.01579 0.11454 +v -0.06936 0.00328 0.11367 +v -0.07095 0.00353 0.11465 +v -0.07358 0.00358 0.11459 +v -0.07253 0.00319 0.11405 +v -0.07260 0.02683 0.11353 +v -0.04165 0.08463 0.11464 +v -0.04325 0.08389 0.11461 +v -0.04458 0.08238 0.11456 +v -0.03692 0.08596 0.11467 +v -0.01388 0.08491 0.11486 +v -0.02769 0.08628 0.11494 +v -0.02565 0.08682 0.11502 +v -0.01434 0.08790 0.11468 +v 0.00162 0.09040 0.11450 +v -0.00260 0.08958 0.11483 +v -0.00727 0.08752 0.11412 +v -0.00556 0.08753 0.11431 +v -0.06366 0.00324 0.11433 +v -0.06576 0.00312 0.11331 +v -0.07540 0.00383 0.11473 +v -0.07664 0.00397 0.11458 +v -0.07995 0.00654 0.11504 +v -0.08257 0.01148 0.11472 +v -0.07906 0.00507 0.11496 +v -0.07120 0.00320 0.11402 +v -0.04214 0.08537 0.11487 +v -0.04289 0.08496 0.11485 +v -0.04419 0.08350 0.11464 +v -0.03941 0.08654 0.11468 +v -0.03127 0.08880 0.11485 +v -0.03709 0.08823 0.11475 +v -0.01220 0.08753 0.11456 +v -0.02544 0.09177 0.11508 +v -0.01909 0.09093 0.11482 +v 0.00342 0.08968 0.11427 +v -0.00423 0.08927 0.11477 +v -0.00546 0.08855 0.11460 +v -0.00895 0.08809 0.11427 +v -0.06736 0.00321 0.11332 +v -0.07472 0.00332 0.11442 +v -0.07794 0.00431 0.11473 +v -0.08539 0.00933 0.11500 +v -0.08504 0.01415 0.11474 +v -0.04178 0.08623 0.11506 +v -0.04027 0.08641 0.11468 +v -0.03847 0.08747 0.11480 +v -0.03496 0.09042 0.11477 +v -0.03590 0.08897 0.11470 +v -0.02940 0.09249 0.11506 +v -0.01611 0.08984 0.11479 +v 0.00149 0.09165 0.11465 +v 0.00294 0.09145 0.11459 +v -0.00403 0.09156 0.11494 +v -0.00649 0.08805 0.11428 +v -0.00734 0.08832 0.11422 +v -0.07578 0.00320 0.11418 +v -0.07805 0.00341 0.11414 +v -0.08322 0.00545 0.11529 +v -0.08106 0.00520 0.11516 +v -0.07919 0.00391 0.11467 +v -0.04090 0.08646 0.11485 +v -0.04294 0.08622 0.11529 +v -0.04345 0.08557 0.11516 +v -0.04025 0.08701 0.11475 +v -0.03990 0.08747 0.11488 +v -0.03368 0.09223 0.11484 +v -0.03842 0.08837 0.11488 +v -0.03719 0.08941 0.11476 +v -0.01346 0.08923 0.11470 +v -0.02736 0.09614 0.11521 +v -0.01609 0.09433 0.11495 +v 0.00116 0.09329 0.11474 +v -0.00574 0.08993 0.11494 +v -0.00016 0.09606 0.11482 +v -0.00624 0.08931 0.11483 +v -0.00813 0.08900 0.11442 +v -0.01113 0.08896 0.11443 +v -0.08614 0.00642 0.11519 +v -0.08051 0.00436 0.11501 +v -0.08724 0.01187 0.11497 +v -0.04151 0.08711 0.11519 +v -0.04243 0.08752 0.11548 +v -0.04456 0.08550 0.11537 +v -0.04069 0.08702 0.11482 +v -0.03936 0.08827 0.11505 +v -0.03589 0.09211 0.11488 +v -0.03692 0.09008 0.11485 +v -0.03857 0.08910 0.11505 +v -0.03216 0.09561 0.11505 +v -0.02370 0.09749 0.11517 +v -0.03097 0.09753 0.11514 +v -0.01356 0.09160 0.11493 +v -0.01921 0.09642 0.11503 +v 0.00290 0.09383 0.11479 +v -0.00707 0.09261 0.11498 +v -0.00606 0.09490 0.11495 +v -0.00899 0.08953 0.11446 +v -0.00730 0.08919 0.11458 +v -0.01019 0.08913 0.11424 +v -0.07936 0.00334 0.11428 +v -0.08824 0.00969 0.11505 +v -0.08357 0.00412 0.11536 +v -0.08246 0.00421 0.11534 +v -0.08160 0.00383 0.11512 +v -0.08068 0.00334 0.11453 +v -0.04369 0.08676 0.11548 +v -0.04584 0.08445 0.11540 +v -0.04057 0.08866 0.11556 +v -0.03658 0.09115 0.11496 +v -0.03509 0.09326 0.11503 +v -0.03837 0.08974 0.11508 +v -0.03751 0.09116 0.11521 +v -0.01216 0.08989 0.11472 +v -0.03359 0.09488 0.11500 +v -0.02795 0.09845 0.11532 +v -0.02150 0.09753 0.11510 +v -0.01256 0.09097 0.11491 +v -0.01159 0.09397 0.11499 +v -0.01583 0.09862 0.11507 +v 0.00211 0.09434 0.11471 +v -0.00729 0.09031 0.11489 +v -0.00310 0.09899 0.11494 +v -0.00821 0.09037 0.11484 +v -0.00981 0.08932 0.11426 +v -0.01075 0.08987 0.11450 +v -0.09060 0.00718 0.11508 +v -0.08594 0.00454 0.11520 +v -0.08974 0.01120 0.11506 +v -0.04142 0.08781 0.11545 +v -0.04423 0.08995 0.11577 +v -0.04533 0.08560 0.11557 +v -0.04539 0.08685 0.11566 +v -0.03910 0.08992 0.11547 +v -0.03625 0.09363 0.11547 +v -0.03314 0.09632 0.11521 +v -0.03218 0.09704 0.11513 +v -0.02723 0.09981 0.11551 +v -0.02275 0.09903 0.11527 +v -0.03070 0.09966 0.11520 +v -0.01132 0.09672 0.11499 +v -0.02013 0.09946 0.11528 +v 0.00154 0.09660 0.11487 +v 0.00381 0.09511 0.11494 +v -0.00806 0.09109 0.11496 +v -0.00977 0.09470 0.11484 +v 0.00094 0.09826 0.11487 +v -0.00741 0.09678 0.11497 +v -0.00901 0.09077 0.11484 +v -0.08755 0.00475 0.11516 +v -0.09156 0.00933 0.11504 +v -0.08229 0.00372 0.11530 +v -0.08477 0.00374 0.11526 +v -0.08161 0.00328 0.11483 +v -0.09067 0.01305 0.11518 +v -0.04142 0.08889 0.11570 +v -0.04651 0.08574 0.11564 +v -0.04032 0.08966 0.11576 +v -0.03765 0.09212 0.11553 +v -0.03431 0.09457 0.11507 +v -0.01115 0.09082 0.11480 +v -0.03489 0.09608 0.11553 +v -0.03178 0.09856 0.11520 +v -0.02479 0.09898 0.11540 +v -0.02846 0.10049 0.11545 +v -0.01050 0.09191 0.11493 +v -0.01744 0.10145 0.11533 +v -0.01285 0.10207 0.11520 +v 0.00310 0.09652 0.11504 +v -0.00906 0.09187 0.11496 +v -0.00148 0.09910 0.11497 +v -0.00613 0.10139 0.11516 +v -0.00995 0.09073 0.11474 +v -0.08921 0.00506 0.11508 +v -0.09247 0.00753 0.11511 +v -0.08335 0.00349 0.11530 +v -0.08595 0.00321 0.11494 +v -0.08708 0.00395 0.11508 +v -0.08222 0.00334 0.11506 +v -0.09279 0.01366 0.11520 +v -0.09276 0.01110 0.11507 +v -0.04903 0.08827 0.11571 +v -0.04059 0.09129 0.11591 +v -0.03922 0.09065 0.11575 +v -0.03646 0.09475 0.11576 +v -0.03741 0.09350 0.11576 +v -0.03327 0.09813 0.11544 +v -0.02555 0.10029 0.11581 +v -0.02721 0.10078 0.11567 +v -0.02406 0.09984 0.11559 +v -0.02179 0.10089 0.11564 +v -0.03183 0.10132 0.11545 +v -0.02903 0.10131 0.11544 +v -0.01961 0.10132 0.11544 +v -0.00982 0.09884 0.11519 +v 0.00051 0.10035 0.11504 +v -0.00141 0.10012 0.11511 +v -0.00436 0.10368 0.11526 +v -0.00857 0.10009 0.11525 +v -0.09069 0.00560 0.11505 +v -0.08885 0.00399 0.11500 +v -0.08809 0.00346 0.11494 +v -0.04101 0.09685 0.11591 +v -0.03922 0.09126 0.11587 +v -0.03534 0.09514 0.11554 +v -0.03684 0.09409 0.11578 +v -0.03887 0.09291 0.11589 +v -0.03319 0.10023 0.11549 +v -0.02779 0.10173 0.11556 +v -0.02367 0.10074 0.11572 +v -0.02261 0.10053 0.11558 +v -0.03061 0.10115 0.11538 +v -0.01842 0.10410 0.11546 +v -0.01318 0.10573 0.11544 +v 0.00280 0.09981 0.11511 +v -0.00264 0.10099 0.11512 +v -0.00594 0.10462 0.11525 +v -0.00830 0.10274 0.11528 +v -0.08984 0.00387 0.11480 +v -0.09250 0.00544 0.11516 +v -0.09552 0.01031 0.11522 +v -0.08722 0.00315 0.11484 +v -0.09397 0.01287 0.11526 +v -0.05251 0.10266 0.11577 +v -0.03604 0.09553 0.11576 +v -0.03786 0.09473 0.11593 +v -0.03861 0.09439 0.11596 +v -0.03525 0.09789 0.11565 +v -0.02426 0.10035 0.11578 +v -0.02674 0.10139 0.11580 +v -0.02224 0.10225 0.11563 +v -0.02983 0.10267 0.11557 +v -0.03281 0.10260 0.11572 +v -0.02915 0.10214 0.11546 +v -0.02828 0.10258 0.11542 +v -0.00923 0.10584 0.11540 +v 0.00102 0.10211 0.11512 +v -0.00178 0.10371 0.11524 +v -0.00452 0.10553 0.11527 +v -0.09128 0.00418 0.11487 +v -0.08890 0.00334 0.11481 +v -0.09407 0.00514 0.11536 +v -0.09569 0.00597 0.11546 +v -0.09604 0.01312 0.11534 +v -0.05185 0.10656 0.11578 +v -0.03793 0.09546 0.11597 +v -0.03682 0.09631 0.11581 +v -0.03535 0.10088 0.11571 +v -0.02476 0.10082 0.11586 +v -0.02645 0.10297 0.11562 +v -0.03054 0.10386 0.11587 +v -0.02759 0.10397 0.11534 +v -0.02300 0.10702 0.11542 +v -0.01474 0.10683 0.11552 +v -0.01035 0.10750 0.11559 +v 0.00513 0.10438 0.11502 +v -0.00345 0.10649 0.11539 +v -0.00548 0.10630 0.11518 +v -0.09068 0.00328 0.11445 +v -0.09242 0.00385 0.11493 +v -0.09326 0.00439 0.11520 +v -0.09784 0.01027 0.11528 +v -0.09652 0.01563 0.11519 +v -0.04161 0.10542 0.11588 +v -0.05383 0.10627 0.11583 +v -0.02474 0.10187 0.11578 +v -0.02896 0.10446 0.11582 +v -0.02880 0.10322 0.11549 +v -0.03526 0.10565 0.11589 +v -0.02785 0.10427 0.11540 +v -0.02501 0.10448 0.11557 +v -0.01791 0.10916 0.11544 +v -0.01169 0.10766 0.11568 +v -0.01094 0.10978 0.11581 +v -0.00272 0.10829 0.11551 +v -0.00698 0.10589 0.11530 +v -0.00479 0.10657 0.11511 +v -0.00440 0.10680 0.11519 +v -0.09164 0.00331 0.11454 +v -0.09517 0.00429 0.11538 +v -0.09405 0.00413 0.11525 +v -0.09769 0.00638 0.11545 +v -0.09929 0.01368 0.11528 +v -0.04726 0.10856 0.11586 +v -0.05329 0.10802 0.11592 +v -0.02671 0.10459 0.11553 +v -0.02979 0.10487 0.11597 +v -0.03092 0.10603 0.11600 +v -0.02745 0.10488 0.11551 +v -0.02510 0.10689 0.11542 +v -0.02182 0.11039 0.11537 +v -0.01483 0.10921 0.11558 +v -0.01230 0.10869 0.11576 +v -0.00750 0.10921 0.11557 +v 0.00114 0.10632 0.11522 +v -0.00420 0.10765 0.11539 +v -0.00593 0.10739 0.11532 +v -0.00490 0.10700 0.11517 +v -0.09337 0.00354 0.11495 +v -0.09230 0.00319 0.11461 +v -0.09685 0.00448 0.11539 +v -0.09894 0.01215 0.11524 +v -0.10014 0.00616 0.11546 +v -0.04398 0.11080 0.11588 +v -0.05033 0.10798 0.11581 +v -0.05481 0.10744 0.11608 +v -0.05201 0.10807 0.11580 +v -0.02822 0.10465 0.11561 +v -0.02908 0.10502 0.11589 +v -0.03451 0.11074 0.11600 +v -0.04078 0.11068 0.11587 +v -0.02633 0.10582 0.11554 +v -0.02514 0.10793 0.11534 +v -0.01929 0.11263 0.11539 +v -0.02416 0.10954 0.11544 +v -0.01570 0.11255 0.11537 +v -0.00804 0.11107 0.11563 +v 0.00521 0.10858 0.11518 +v 0.00085 0.10976 0.11533 +v -0.00435 0.10891 0.11561 +v -0.09276 0.00326 0.11478 +v -0.09447 0.00343 0.11497 +v -0.09597 0.00376 0.11533 +v -0.10056 0.01088 0.11513 +v -0.10346 0.00544 0.11547 +v -0.09915 0.00422 0.11522 +v -0.10039 0.01270 0.11508 +v -0.04538 0.11196 0.11592 +v -0.04959 0.11037 0.11594 +v -0.05319 0.10898 0.11609 +v -0.02718 0.10573 0.11563 +v -0.02899 0.10663 0.11601 +v -0.02788 0.10630 0.11588 +v -0.02662 0.10689 0.11561 +v -0.02485 0.10837 0.11541 +v -0.02239 0.11266 0.11535 +v -0.02387 0.11118 0.11538 +v -0.01245 0.11102 0.11571 +v -0.00891 0.11332 0.11555 +v -0.00645 0.10990 0.11561 +v -0.00591 0.10849 0.11546 +v -0.00186 0.10912 0.11550 +v -0.00356 0.11009 0.11569 +v -0.09529 0.00348 0.11521 +v -0.09665 0.00347 0.11507 +v -0.10194 0.00836 0.11529 +v -0.10124 0.00461 0.11544 +v -0.09768 0.00362 0.11507 +v -0.10136 0.01572 0.11492 +v -0.04350 0.11203 0.11581 +v -0.05156 0.10948 0.11598 +v -0.02927 0.10577 0.11600 +v -0.04124 0.11328 0.11591 +v -0.02896 0.10939 0.11598 +v -0.02519 0.10978 0.11561 +v -0.02698 0.10815 0.11576 +v -0.02224 0.11409 0.11537 +v -0.01867 0.11423 0.11554 +v -0.02467 0.11051 0.11550 +v -0.00687 0.11385 0.11551 +v -0.00654 0.11172 0.11562 +v 0.00003 0.11450 0.11535 +v -0.00157 0.11175 0.11548 +v -0.00473 0.10976 0.11574 +v -0.09514 0.00318 0.11501 +v -0.09585 0.00326 0.11505 +v -0.10197 0.01350 0.11485 +v -0.10359 0.01205 0.11484 +v -0.10415 0.00697 0.11537 +v -0.10277 0.00432 0.11546 +v -0.10099 0.00341 0.11510 +v -0.09847 0.00321 0.11469 +v -0.04472 0.11290 0.11591 +v -0.04929 0.11223 0.11610 +v -0.04359 0.11296 0.11574 +v -0.03651 0.11385 0.11612 +v -0.03230 0.11559 0.11597 +v -0.02851 0.10782 0.11598 +v -0.02401 0.11213 0.11539 +v -0.02336 0.11346 0.11548 +v -0.02442 0.11117 0.11541 +v -0.00674 0.11510 0.11551 +v -0.00494 0.11178 0.11582 +v -0.00433 0.11099 0.11581 +v -0.10465 0.00539 0.11545 +v -0.10201 0.00367 0.11537 +v -0.10406 0.00422 0.11536 +v -0.09957 0.00324 0.11478 +v -0.10459 0.01436 0.11472 +v -0.04601 0.11261 0.11601 +v -0.04786 0.11349 0.11614 +v -0.04336 0.11417 0.11599 +v -0.03579 0.11429 0.11614 +v -0.03964 0.11475 0.11614 +v -0.02802 0.10653 0.11596 +v -0.02696 0.10958 0.11590 +v -0.02746 0.10851 0.11587 +v -0.02558 0.11055 0.11575 +v -0.01997 0.11569 0.11566 +v -0.02449 0.11502 0.11590 +v -0.00479 0.11408 0.11533 +v -0.00584 0.11276 0.11556 +v -0.00292 0.11355 0.11543 +v -0.00354 0.11178 0.11567 +v -0.10686 0.01123 0.11497 +v -0.10588 0.00568 0.11550 +v -0.10271 0.00335 0.11534 +v -0.10344 0.00335 0.11526 +v -0.04552 0.11360 0.11612 +v -0.04830 0.11513 0.11624 +v -0.04496 0.11516 0.11630 +v -0.03799 0.11629 0.11639 +v -0.03542 0.11695 0.11614 +v -0.02654 0.11394 0.11596 +v -0.02549 0.11163 0.11579 +v -0.02557 0.11297 0.11584 +v -0.02069 0.11631 0.11576 +v -0.02318 0.11615 0.11590 +v -0.00410 0.11568 0.11539 +v -0.00437 0.11270 0.11559 +v -0.00235 0.11526 0.11537 +v -0.10537 0.00708 0.11538 +v -0.10541 0.00423 0.11530 +v -0.04647 0.11352 0.11616 +v -0.04666 0.11503 0.11637 +v -0.04279 0.11537 0.11629 +v -0.03941 0.11610 0.11636 +v -0.03294 0.11719 0.11605 +v -0.02879 0.11534 0.11602 +v -0.01878 0.11706 0.11583 +v -0.02475 0.11651 0.11612 +v -0.02536 0.11600 0.11608 +v -0.10714 0.00799 0.11533 +v -0.10686 0.00462 0.11556 +v -0.10765 0.00569 0.11564 +v -0.04605 0.11407 0.11628 +v -0.04828 0.11656 0.11630 +v -0.04195 0.11624 0.11648 +v -0.04367 0.11647 0.11646 +v -0.03755 0.11732 0.11631 +v -0.03976 0.11752 0.11637 +v -0.03393 0.11781 0.11605 +v -0.02210 0.11722 0.11595 +v -0.02027 0.11757 0.11581 +v -0.02368 0.11752 0.11602 +v -0.11124 0.00753 0.11535 +v -0.10661 0.00373 0.11527 +v -0.10571 0.00322 0.11480 +v -0.04573 0.11652 0.11641 +v -0.04443 0.11658 0.11649 +v -0.03629 0.11870 0.11601 +v -0.04104 0.11699 0.11651 +v -0.03133 0.11860 0.11615 +v -0.03539 0.12002 0.11582 +v -0.03294 0.11905 0.11605 +v -0.02853 0.11737 0.11622 +v -0.01942 0.11935 0.11574 +v -0.02388 0.11971 0.11597 +v -0.02579 0.11765 0.11614 +v -0.10888 0.00662 0.11549 +v -0.10756 0.00398 0.11557 +v -0.10796 0.00460 0.11569 +v -0.04815 0.11741 0.11627 +v -0.04300 0.11750 0.11646 +v -0.04407 0.11778 0.11639 +v -0.03865 0.12004 0.11602 +v -0.04087 0.12000 0.11609 +v -0.03442 0.12061 0.11577 +v -0.03354 0.12068 0.11589 +v -0.02155 0.11877 0.11584 +v -0.01655 0.11993 0.11580 +v -0.11021 0.00516 0.11546 +v -0.10772 0.00328 0.11524 +v -0.10673 0.00312 0.11483 +v -0.04585 0.11799 0.11632 +v -0.05406 0.11696 0.11634 +v -0.03696 0.12061 0.11589 +v -0.03196 0.11969 0.11620 +v -0.02975 0.11935 0.11620 +v -0.03543 0.12138 0.11585 +v -0.03280 0.12026 0.11608 +v -0.02828 0.11953 0.11614 +v -0.02051 0.12053 0.11568 +v -0.01789 0.12008 0.11576 +v -0.02235 0.11999 0.11587 +v -0.02590 0.11956 0.11611 +v -0.11184 0.00504 0.11542 +v -0.10831 0.00393 0.11557 +v -0.04821 0.11998 0.11603 +v -0.05041 0.11830 0.11621 +v -0.04445 0.12033 0.11590 +v -0.03994 0.12077 0.11610 +v -0.03815 0.12100 0.11600 +v -0.04249 0.12002 0.11608 +v -0.03086 0.12026 0.11632 +v -0.03463 0.12127 0.11573 +v -0.03412 0.12125 0.11583 +v -0.03278 0.12097 0.11621 +v -0.01972 0.12078 0.11572 +v -0.01744 0.12092 0.11596 +v -0.01880 0.12078 0.11585 +v -0.02362 0.12063 0.11606 +v -0.02461 0.12021 0.11605 +v -0.10933 0.00379 0.11539 +v -0.11101 0.00358 0.11520 +v -0.10851 0.00334 0.11538 +v -0.04619 0.11999 0.11599 +v -0.05238 0.11844 0.11625 +v -0.03913 0.12120 0.11619 +v -0.04091 0.12106 0.11621 +v -0.03659 0.12164 0.11603 +v -0.03770 0.12127 0.11598 +v -0.04166 0.12082 0.11614 +v -0.03194 0.12062 0.11632 +v -0.02909 0.12033 0.11619 +v -0.02996 0.12059 0.11633 +v -0.03459 0.12172 0.11589 +v -0.03343 0.12164 0.11629 +v -0.02725 0.11989 0.11612 +v -0.02155 0.12084 0.11583 +v -0.02023 0.12129 0.11574 +v -0.01640 0.12095 0.11597 +v -0.02255 0.12100 0.11606 +v -0.02535 0.12067 0.11617 +v -0.05053 0.12035 0.11595 +v -0.04738 0.12039 0.11600 +v -0.05578 0.11784 0.11629 +v -0.04347 0.12120 0.11597 +v -0.04537 0.12101 0.11585 +v -0.04014 0.12136 0.11626 +v -0.03736 0.12159 0.11609 +v -0.03605 0.12223 0.11649 +v -0.03823 0.12166 0.11633 +v -0.04247 0.12129 0.11620 +v -0.03131 0.12113 0.11653 +v -0.02822 0.12058 0.11621 +v -0.03045 0.12071 0.11637 +v -0.03506 0.12180 0.11583 +v -0.03228 0.12143 0.11652 +v -0.02655 0.12031 0.11616 +v -0.02087 0.12136 0.11579 +v -0.01961 0.12161 0.11603 +v -0.01666 0.12148 0.11623 +v -0.01564 0.12070 0.11594 +v -0.01846 0.12168 0.11629 +v -0.02313 0.12154 0.11647 +v -0.02425 0.12087 0.11608 +v -0.02619 0.12082 0.11632 +v -0.02479 0.12100 0.11620 +v -0.04926 0.12037 0.11601 +v -0.04826 0.12085 0.11603 +v -0.04651 0.12102 0.11599 +v -0.05420 0.11933 0.11616 +v -0.04453 0.12129 0.11587 +v -0.04480 0.12092 0.11575 +v -0.03995 0.12173 0.11649 +v -0.04096 0.12170 0.11659 +v -0.04166 0.12147 0.11638 +v -0.03714 0.12202 0.11640 +v -0.03510 0.12212 0.11610 +v -0.03919 0.12184 0.11666 +v -0.03052 0.12120 0.11660 +v -0.02859 0.12105 0.11632 +v -0.03434 0.12220 0.11631 +v -0.03240 0.12202 0.11691 +v -0.02718 0.12069 0.11628 +v -0.02172 0.12145 0.11604 +v -0.02043 0.12170 0.11591 +v -0.01736 0.12189 0.11656 +v -0.01545 0.12148 0.11632 +v -0.02422 0.12143 0.11642 +v -0.02543 0.12121 0.11639 +v -0.02518 0.12100 0.11621 +v -0.05016 0.12096 0.11597 +v -0.04740 0.12124 0.11609 +v -0.05309 0.12061 0.11608 +v -0.04383 0.12179 0.11617 +v -0.04315 0.12174 0.11623 +v -0.04638 0.12161 0.11622 +v -0.03529 0.12249 0.11652 +v -0.03785 0.12252 0.11748 +v -0.03820 0.12213 0.11692 +v -0.04230 0.12189 0.11664 +v -0.03133 0.12170 0.11680 +v -0.02791 0.12129 0.11655 +v -0.02968 0.12126 0.11658 +v -0.03383 0.12226 0.11662 +v -0.03333 0.12240 0.11716 +v -0.02099 0.12182 0.11610 +v -0.02034 0.12209 0.11639 +v -0.01938 0.12210 0.11655 +v -0.01617 0.12195 0.11672 +v -0.01845 0.12220 0.11682 +v -0.02190 0.12178 0.11637 +v -0.02439 0.12186 0.11672 +v -0.02667 0.12157 0.11679 +v -0.04902 0.12128 0.11617 +v -0.04808 0.12154 0.11625 +v -0.04346 0.12163 0.11603 +v -0.04464 0.12190 0.11622 +v -0.04268 0.12177 0.11639 +v -0.04513 0.12161 0.11601 +v -0.04124 0.12229 0.11736 +v -0.03951 0.12223 0.11724 +v -0.04168 0.12196 0.11682 +v -0.03546 0.12264 0.11701 +v -0.03481 0.12249 0.11646 +v -0.03632 0.12267 0.11750 +v -0.03039 0.12178 0.11701 +v -0.02688 0.12204 0.11725 +v -0.02936 0.12179 0.11703 +v -0.03433 0.12258 0.11688 +v -0.03221 0.12250 0.11767 +v -0.01714 0.12233 0.11708 +v -0.02312 0.12220 0.11713 +v -0.02561 0.12181 0.11689 +v -0.05072 0.12136 0.11613 +v -0.04741 0.12172 0.11633 +v -0.04483 0.12207 0.11640 +v -0.04309 0.12220 0.11677 +v -0.03474 0.12271 0.11695 +v -0.03829 0.12286 0.11822 +v -0.04223 0.12236 0.11732 +v -0.03299 0.12285 0.11857 +v -0.03188 0.12226 0.11725 +v -0.02160 0.12228 0.11699 +v -0.01866 0.12263 0.11762 +v -0.01836 0.12257 0.11742 +v -0.01698 0.12254 0.11756 +v -0.02487 0.12246 0.11742 +v -0.05256 0.12137 0.11627 +v -0.04938 0.12178 0.11651 +v -0.04864 0.12190 0.11662 +v -0.04753 0.12197 0.11663 +v -0.04640 0.12217 0.11681 +v -0.04053 0.12254 0.11787 +v -0.03481 0.12276 0.11738 +v -0.03603 0.12307 0.11907 +v -0.04022 0.12276 0.11838 +v -0.02711 0.12240 0.11773 +v -0.03044 0.12220 0.11749 +v -0.03404 0.12274 0.11766 +v -0.03074 0.12257 0.11808 +v -0.02064 0.12260 0.11757 +v -0.02293 0.12266 0.11776 +v -0.02379 0.12278 0.11801 +v -0.02588 0.12226 0.11740 +v -0.05234 0.12203 0.11676 +v -0.05095 0.12195 0.11662 +v -0.04478 0.12299 0.11780 +v -0.04521 0.12252 0.11715 +v -0.04212 0.12264 0.11793 +v -0.03819 0.12353 0.12068 +v -0.04093 0.12307 0.11957 +v -0.02526 0.12282 0.11813 +v -0.02870 0.12250 0.11794 +v -0.03138 0.12289 0.11911 +v -0.02247 0.12306 0.11843 +v -0.01746 0.12277 0.11818 +v -0.02043 0.12295 0.11869 +v -0.05288 0.12199 0.11684 +v -0.04935 0.12232 0.11724 +v -0.04773 0.12237 0.11736 +v -0.04656 0.12264 0.11779 +v -0.04137 0.12294 0.11884 +v -0.02721 0.12273 0.11842 +v -0.02936 0.12268 0.11832 +v -0.03107 0.12317 0.12068 +v -0.02932 0.12276 0.11862 +v -0.02313 0.12304 0.11861 +v -0.05014 0.12248 0.11744 +v -0.04395 0.12303 0.11829 +v -0.04267 0.12287 0.11849 +v -0.03338 0.12335 0.12168 +v -0.04242 0.12305 0.11977 +v -0.02551 0.12308 0.11895 +v -0.02216 0.12324 0.11944 +v -0.01892 0.12347 0.12150 +v -0.04493 0.12312 0.11825 +v -0.02725 0.12297 0.11938 +v -0.02921 0.12299 0.12002 +v -0.03142 0.12339 0.12305 +v -0.02414 0.12337 0.11998 +v -0.04364 0.12303 0.11915 +v -0.02633 0.12332 0.12100 +v -0.03006 0.12333 0.12247 +v -0.02061 0.12365 0.12206 +v -0.02785 0.12305 0.12037 +v -0.02882 0.12316 0.12166 +v -0.02995 0.12344 0.12363 +v -0.02602 0.12360 0.12225 +v -0.02831 0.12307 0.12144 +v -0.02858 0.12339 0.12271 +v -0.02778 0.12330 0.12203 +v -0.02810 0.12352 0.12372 +v -0.02756 0.12351 0.12280 +v 0.10347 0.03415 0.20235 +v 0.10338 0.03527 0.20183 +v 0.10340 0.03581 0.20299 +v 0.10347 0.03419 0.20100 +v 0.10326 0.03661 0.20137 +v 0.10339 0.03410 0.20423 +v 0.10348 0.03301 0.20165 +v 0.10328 0.03522 0.20060 +v 0.10319 0.03862 0.20174 +v 0.10348 0.03657 0.20805 +v 0.10363 0.03331 0.20030 +v 0.10342 0.03421 0.19991 +v 0.10320 0.03770 0.20083 +v 0.10312 0.03948 0.20278 +v 0.10303 0.03567 0.19954 +v 0.10304 0.02868 0.20195 +v 0.10323 0.03334 0.20984 +v 0.10345 0.03837 0.20715 +v 0.10362 0.03273 0.20077 +v 0.10309 0.03509 0.19935 +v 0.10326 0.03948 0.20022 +v 0.10314 0.04002 0.20159 +v 0.10320 0.04007 0.20479 +v 0.10337 0.03965 0.20689 +v 0.10358 0.03145 0.19994 +v 0.10356 0.03336 0.19839 +v 0.10325 0.03423 0.19872 +v 0.10296 0.03683 0.19845 +v 0.10303 0.04034 0.20278 +v 0.10294 0.03478 0.19766 +v 0.10326 0.03960 0.20815 +v 0.10370 0.03272 0.19916 +v 0.10303 0.03462 0.19846 +v 0.10284 0.03726 0.19698 +v 0.10326 0.04102 0.20036 +v 0.10309 0.04140 0.20152 +v 0.10318 0.04329 0.20437 +v 0.10325 0.04017 0.20618 +v 0.10373 0.03156 0.19727 +v 0.10319 0.04029 0.20743 +v 0.10378 0.03217 0.19829 +v 0.10376 0.03268 0.19826 +v 0.10319 0.03408 0.19749 +v 0.10291 0.03511 0.19618 +v 0.10326 0.04146 0.19846 +v 0.10305 0.04234 0.20293 +v 0.10323 0.04204 0.20548 +v 0.10320 0.04130 0.20620 +v 0.10317 0.02894 0.19693 +v 0.10371 0.03270 0.19707 +v 0.10262 0.03787 0.19290 +v 0.10309 0.04237 0.19615 +v 0.10311 0.04200 0.20048 +v 0.10332 0.04190 0.19920 +v 0.10291 0.04298 0.20194 +v 0.10305 0.04351 0.20282 +v 0.10315 0.04395 0.20606 +v 0.10309 0.04125 0.20694 +v 0.10375 0.03207 0.19680 +v 0.10265 0.02548 0.19524 +v 0.10356 0.03076 0.19619 +v 0.10327 0.03360 0.19630 +v 0.10274 0.03423 0.19259 +v 0.10316 0.04294 0.19764 +v 0.10295 0.04246 0.20103 +v 0.10317 0.04234 0.19964 +v 0.10318 0.04285 0.19839 +v 0.10323 0.04441 0.20381 +v 0.10322 0.04512 0.20465 +v 0.10300 0.04325 0.20760 +v 0.10242 0.02145 0.19857 +v 0.10301 0.02862 0.19320 +v 0.10358 0.03260 0.19595 +v 0.10300 0.03348 0.19386 +v 0.10286 0.04237 0.19281 +v 0.10268 0.03470 0.19223 +v 0.10305 0.04446 0.19530 +v 0.10283 0.04296 0.20035 +v 0.10288 0.04339 0.20146 +v 0.10313 0.04587 0.20279 +v 0.10303 0.04545 0.20817 +v 0.10373 0.03173 0.19584 +v 0.10240 0.02182 0.20227 +v 0.10239 0.02214 0.19415 +v 0.10265 0.02580 0.19241 +v 0.10357 0.03107 0.19482 +v 0.10321 0.03260 0.19354 +v 0.10298 0.04474 0.19370 +v 0.10273 0.04234 0.18860 +v 0.10294 0.03340 0.19170 +v 0.10244 0.03534 0.19085 +v 0.10300 0.04366 0.19776 +v 0.10289 0.04333 0.19957 +v 0.10302 0.04725 0.20572 +v 0.10233 0.01934 0.20229 +v 0.10239 0.02263 0.20526 +v 0.10225 0.01921 0.19543 +v 0.10249 0.02458 0.19266 +v 0.10273 0.02654 0.19141 +v 0.10332 0.03125 0.19338 +v 0.10353 0.03197 0.19454 +v 0.10293 0.04518 0.19147 +v 0.10236 0.03813 0.18849 +v 0.10318 0.03260 0.19216 +v 0.10271 0.03400 0.19067 +v 0.10229 0.03624 0.18973 +v 0.10262 0.04433 0.19887 +v 0.10292 0.04531 0.19563 +v 0.10280 0.04615 0.19392 +v 0.10276 0.04424 0.20018 +v 0.10312 0.04721 0.20317 +v 0.10295 0.04841 0.20792 +v 0.10372 0.03188 0.19536 +v 0.10222 0.01973 0.20405 +v 0.10243 0.01826 0.20115 +v 0.10228 0.01909 0.19700 +v 0.10242 0.02012 0.19302 +v 0.10241 0.02256 0.19256 +v 0.10276 0.02719 0.19102 +v 0.10276 0.02526 0.19066 +v 0.10258 0.02443 0.19162 +v 0.10272 0.02914 0.18934 +v 0.10296 0.04629 0.19278 +v 0.10293 0.04545 0.18911 +v 0.10243 0.03955 0.18673 +v 0.10325 0.03251 0.19150 +v 0.10290 0.03320 0.19019 +v 0.10234 0.03501 0.18955 +v 0.10267 0.04484 0.19784 +v 0.10258 0.04549 0.19927 +v 0.10279 0.04960 0.20057 +v 0.10287 0.05018 0.20205 +v 0.10271 0.05073 0.20378 +v 0.10228 0.01870 0.20359 +v 0.10240 0.01797 0.20317 +v 0.10238 0.01827 0.19896 +v 0.10230 0.01884 0.20555 +v 0.10231 0.01588 0.19743 +v 0.10251 0.02173 0.19218 +v 0.10234 0.01843 0.19303 +v 0.10257 0.02316 0.19148 +v 0.10279 0.02847 0.19061 +v 0.10270 0.02657 0.19093 +v 0.10278 0.02625 0.19041 +v 0.10299 0.03094 0.19017 +v 0.10297 0.04643 0.19225 +v 0.10306 0.04585 0.18752 +v 0.10286 0.04637 0.19023 +v 0.10234 0.03626 0.18803 +v 0.10240 0.03802 0.18669 +v 0.10260 0.04093 0.18573 +v 0.10320 0.03187 0.19144 +v 0.10306 0.03290 0.19090 +v 0.10281 0.03371 0.18923 +v 0.10235 0.03524 0.18862 +v 0.10252 0.04579 0.19807 +v 0.10252 0.04678 0.19466 +v 0.10261 0.04594 0.19668 +v 0.10277 0.04694 0.19279 +v 0.10255 0.01711 0.20244 +v 0.10253 0.01697 0.20085 +v 0.10229 0.02010 0.20675 +v 0.10221 0.01793 0.19388 +v 0.10280 0.02026 0.19093 +v 0.10278 0.01893 0.19061 +v 0.10284 0.02715 0.18964 +v 0.10297 0.02551 0.18917 +v 0.10280 0.02379 0.19034 +v 0.10285 0.03001 0.18870 +v 0.10281 0.04664 0.19129 +v 0.10290 0.04654 0.18844 +v 0.10296 0.04448 0.18706 +v 0.10242 0.03703 0.18710 +v 0.10252 0.03860 0.18570 +v 0.10248 0.03958 0.18568 +v 0.10282 0.04311 0.18447 +v 0.10311 0.03227 0.19058 +v 0.10299 0.03248 0.18946 +v 0.10251 0.03457 0.18899 +v 0.10250 0.04772 0.19302 +v 0.10255 0.04757 0.19847 +v 0.10283 0.05205 0.20131 +v 0.10279 0.05241 0.20217 +v 0.10247 0.01725 0.20530 +v 0.10266 0.01643 0.20371 +v 0.10244 0.01602 0.19898 +v 0.10236 0.01869 0.20819 +v 0.10227 0.01580 0.19452 +v 0.10287 0.02203 0.19041 +v 0.10245 0.01693 0.19199 +v 0.10282 0.02872 0.18850 +v 0.10297 0.03134 0.18874 +v 0.10293 0.04670 0.19234 +v 0.10278 0.04705 0.19202 +v 0.10297 0.04655 0.18727 +v 0.10295 0.04568 0.18612 +v 0.10278 0.04703 0.18923 +v 0.10262 0.04718 0.19052 +v 0.10250 0.03540 0.18774 +v 0.10267 0.03591 0.18687 +v 0.10271 0.03708 0.18579 +v 0.10265 0.03958 0.18486 +v 0.10283 0.04203 0.18400 +v 0.10305 0.03349 0.18809 +v 0.10253 0.03475 0.18830 +v 0.10277 0.03437 0.18820 +v 0.10248 0.04671 0.19723 +v 0.10242 0.04784 0.19360 +v 0.10239 0.04717 0.19560 +v 0.10246 0.04800 0.19220 +v 0.10261 0.04972 0.19862 +v 0.10280 0.05192 0.19979 +v 0.10275 0.05259 0.20399 +v 0.10268 0.01532 0.20755 +v 0.10262 0.01536 0.20056 +v 0.10250 0.01936 0.21139 +v 0.10219 0.01382 0.19579 +v 0.10292 0.02013 0.18981 +v 0.10298 0.02086 0.18964 +v 0.10250 0.01569 0.19031 +v 0.10307 0.02650 0.18740 +v 0.10301 0.02296 0.18883 +v 0.10291 0.02948 0.18715 +v 0.10298 0.03119 0.18709 +v 0.10251 0.04755 0.19134 +v 0.10273 0.04713 0.18812 +v 0.10297 0.04492 0.18586 +v 0.10310 0.03839 0.18341 +v 0.10283 0.04369 0.18306 +v 0.10307 0.03233 0.18791 +v 0.10239 0.04911 0.19298 +v 0.10238 0.04838 0.19439 +v 0.10236 0.04780 0.19614 +v 0.10298 0.05471 0.19929 +v 0.10298 0.05358 0.20834 +v 0.10304 0.05610 0.20328 +v 0.10260 0.01598 0.20549 +v 0.10241 0.01069 0.19963 +v 0.10249 0.01719 0.20952 +v 0.10230 0.01427 0.19303 +v 0.10208 0.01170 0.19580 +v 0.10307 0.02388 0.18738 +v 0.10265 0.04712 0.18516 +v 0.10253 0.04775 0.18727 +v 0.10281 0.04431 0.18418 +v 0.10273 0.04574 0.18405 +v 0.10252 0.04744 0.18968 +v 0.10221 0.04803 0.19049 +v 0.10301 0.03501 0.18679 +v 0.10305 0.03569 0.18580 +v 0.10306 0.03708 0.18453 +v 0.10290 0.04022 0.18363 +v 0.10298 0.04166 0.18239 +v 0.10319 0.03444 0.18696 +v 0.10335 0.03410 0.18657 +v 0.10229 0.04937 0.19177 +v 0.10273 0.05206 0.19761 +v 0.10255 0.05054 0.19690 +v 0.10311 0.05807 0.20151 +v 0.10265 0.01422 0.20505 +v 0.10258 0.01388 0.20228 +v 0.10260 0.01258 0.20126 +v 0.10244 0.01615 0.21055 +v 0.10261 0.01555 0.18723 +v 0.10281 0.01919 0.18492 +v 0.10233 0.01368 0.19103 +v 0.10306 0.02719 0.18578 +v 0.10292 0.03002 0.18565 +v 0.10222 0.04858 0.19133 +v 0.10276 0.04711 0.18692 +v 0.10324 0.03599 0.18469 +v 0.10321 0.03739 0.18360 +v 0.10273 0.04494 0.17903 +v 0.10258 0.05181 0.19101 +v 0.10315 0.05531 0.19603 +v 0.10341 0.05851 0.19759 +v 0.10334 0.05773 0.20793 +v 0.10313 0.05907 0.20329 +v 0.10270 0.01341 0.20642 +v 0.10234 0.00999 0.19860 +v 0.10229 0.00986 0.20160 +v 0.10236 0.01465 0.21094 +v 0.10251 0.01670 0.21365 +v 0.10219 0.01108 0.19417 +v 0.10268 0.01685 0.18549 +v 0.10240 0.01432 0.18880 +v 0.10289 0.02100 0.18457 +v 0.10229 0.01144 0.19225 +v 0.10288 0.02372 0.18343 +v 0.10297 0.03122 0.18484 +v 0.10331 0.03365 0.18609 +v 0.10258 0.04661 0.18185 +v 0.10259 0.04774 0.18586 +v 0.10227 0.04802 0.18879 +v 0.10221 0.04791 0.18966 +v 0.10210 0.04929 0.19075 +v 0.10328 0.03466 0.18606 +v 0.10330 0.03499 0.18530 +v 0.10312 0.03918 0.18271 +v 0.10326 0.03760 0.18295 +v 0.10328 0.03653 0.18383 +v 0.10295 0.04136 0.17702 +v 0.10220 0.04969 0.19124 +v 0.10333 0.05904 0.19940 +v 0.10313 0.05912 0.20192 +v 0.10267 0.01301 0.20720 +v 0.10247 0.01224 0.20334 +v 0.10210 0.01027 0.19576 +v 0.10251 0.00866 0.19975 +v 0.10241 0.00919 0.20055 +v 0.10243 0.01152 0.20283 +v 0.10258 0.01284 0.20894 +v 0.10273 0.01432 0.18377 +v 0.10254 0.01429 0.18661 +v 0.10274 0.01714 0.18320 +v 0.10291 0.01923 0.18218 +v 0.10223 0.01280 0.18786 +v 0.10223 0.01155 0.19093 +v 0.10292 0.02891 0.18413 +v 0.10276 0.02704 0.18261 +v 0.10294 0.03062 0.18160 +v 0.10250 0.04842 0.18380 +v 0.10230 0.04841 0.18777 +v 0.10244 0.04912 0.18617 +v 0.10201 0.04820 0.18998 +v 0.10196 0.04862 0.19019 +v 0.10334 0.03527 0.18465 +v 0.10322 0.03793 0.18191 +v 0.10331 0.03645 0.18273 +v 0.10333 0.03539 0.18352 +v 0.10289 0.04193 0.17367 +v 0.10225 0.04901 0.17976 +v 0.10361 0.05783 0.19548 +v 0.10328 0.05986 0.19992 +v 0.10321 0.06028 0.20650 +v 0.10300 0.06281 0.20215 +v 0.10252 0.01178 0.20572 +v 0.10207 0.00853 0.19572 +v 0.10246 0.00844 0.19848 +v 0.10223 0.00829 0.20157 +v 0.10219 0.01008 0.20317 +v 0.10242 0.01326 0.21119 +v 0.10249 0.01338 0.21297 +v 0.10201 0.00932 0.19468 +v 0.10269 0.01517 0.18332 +v 0.10295 0.02231 0.18241 +v 0.10290 0.02252 0.18319 +v 0.10214 0.01152 0.18891 +v 0.10207 0.01029 0.19118 +v 0.10271 0.02503 0.18137 +v 0.10331 0.03418 0.18479 +v 0.10317 0.03330 0.18317 +v 0.10335 0.03438 0.18554 +v 0.10211 0.04875 0.18865 +v 0.10202 0.04859 0.18951 +v 0.10204 0.04946 0.19010 +v 0.10308 0.03552 0.17873 +v 0.10292 0.04006 0.17599 +v 0.10264 0.04666 0.17618 +v 0.10334 0.05604 0.19309 +v 0.10375 0.05791 0.19398 +v 0.10373 0.05890 0.19516 +v 0.10343 0.06047 0.19668 +v 0.10317 0.06230 0.20620 +v 0.10308 0.06245 0.20033 +v 0.10272 0.01209 0.20811 +v 0.10266 0.01157 0.20727 +v 0.10237 0.01107 0.20478 +v 0.10229 0.00868 0.19744 +v 0.10251 0.00794 0.20047 +v 0.10267 0.00765 0.19936 +v 0.10198 0.00860 0.20279 +v 0.10271 0.01195 0.21083 +v 0.10265 0.01534 0.21670 +v 0.10187 0.00885 0.19396 +v 0.10272 0.01404 0.18283 +v 0.10272 0.01319 0.18440 +v 0.10246 0.01271 0.18618 +v 0.10262 0.01636 0.18180 +v 0.10277 0.02185 0.18074 +v 0.10281 0.02306 0.18182 +v 0.10213 0.01082 0.18890 +v 0.10274 0.02729 0.18050 +v 0.10313 0.03391 0.18074 +v 0.10222 0.04974 0.18009 +v 0.10268 0.05189 0.18452 +v 0.10230 0.04944 0.18750 +v 0.10277 0.03776 0.17477 +v 0.10276 0.04684 0.17225 +v 0.10228 0.04961 0.17827 +v 0.10344 0.05638 0.19078 +v 0.10250 0.05110 0.18768 +v 0.10360 0.05970 0.19583 +v 0.10308 0.06463 0.20087 +v 0.10314 0.06446 0.20341 +v 0.10252 0.01052 0.20688 +v 0.10232 0.01038 0.20588 +v 0.10182 0.00769 0.19437 +v 0.10223 0.00781 0.19627 +v 0.10250 0.00769 0.19753 +v 0.10275 0.00730 0.19837 +v 0.10199 0.00714 0.20262 +v 0.10239 0.00712 0.20149 +v 0.10188 0.00893 0.20402 +v 0.10262 0.01221 0.21256 +v 0.10254 0.01239 0.21409 +v 0.10271 0.01308 0.18293 +v 0.10259 0.01416 0.18197 +v 0.10225 0.01471 0.17963 +v 0.10260 0.01980 0.17968 +v 0.10238 0.01092 0.18668 +v 0.10157 0.00831 0.19117 +v 0.10188 0.00949 0.18910 +v 0.10254 0.02331 0.17725 +v 0.10302 0.03329 0.17728 +v 0.10287 0.03790 0.17146 +v 0.10256 0.04869 0.17469 +v 0.10285 0.04362 0.16997 +v 0.10243 0.04937 0.17678 +v 0.10359 0.05806 0.19208 +v 0.10344 0.05553 0.18895 +v 0.10378 0.05865 0.19368 +v 0.10370 0.05941 0.19499 +v 0.10316 0.06233 0.19809 +v 0.10348 0.06059 0.19541 +v 0.10304 0.06439 0.19908 +v 0.10325 0.06631 0.20525 +v 0.10289 0.01098 0.20936 +v 0.10285 0.01025 0.20912 +v 0.10181 0.00862 0.20496 +v 0.10287 0.00685 0.20017 +v 0.10314 0.00658 0.19907 +v 0.10163 0.00749 0.20393 +v 0.10289 0.01082 0.21177 +v 0.10270 0.01332 0.21660 +v 0.10144 0.00725 0.19268 +v 0.10280 0.01240 0.18338 +v 0.10275 0.01165 0.18456 +v 0.10288 0.02933 0.17705 +v 0.10238 0.05112 0.17872 +v 0.10261 0.05307 0.18075 +v 0.10281 0.03560 0.17545 +v 0.10293 0.04125 0.17180 +v 0.10289 0.03580 0.17386 +v 0.10255 0.04939 0.17284 +v 0.10282 0.04609 0.16948 +v 0.10250 0.05111 0.17638 +v 0.10353 0.05834 0.19073 +v 0.10372 0.05694 0.18929 +v 0.10335 0.05526 0.18680 +v 0.10363 0.05974 0.19431 +v 0.10329 0.06153 0.19696 +v 0.10325 0.06146 0.19554 +v 0.10325 0.06641 0.20181 +v 0.10305 0.06607 0.19972 +v 0.10336 0.06830 0.20848 +v 0.10286 0.01073 0.21047 +v 0.10248 0.00915 0.20792 +v 0.10211 0.00914 0.20619 +v 0.10209 0.00661 0.19470 +v 0.10256 0.00686 0.19661 +v 0.10283 0.00678 0.19756 +v 0.10306 0.00657 0.19820 +v 0.10234 0.00644 0.20220 +v 0.10172 0.00622 0.20371 +v 0.10284 0.00648 0.20082 +v 0.10268 0.01057 0.21361 +v 0.10265 0.01118 0.21528 +v 0.10168 0.00671 0.19370 +v 0.10235 0.01174 0.18052 +v 0.10254 0.01172 0.18211 +v 0.10208 0.01725 0.17600 +v 0.10235 0.01006 0.18547 +v 0.10138 0.00733 0.18956 +v 0.10113 0.00673 0.19106 +v 0.10282 0.02789 0.17276 +v 0.10308 0.03225 0.17516 +v 0.10306 0.05512 0.18219 +v 0.10278 0.04050 0.16793 +v 0.10311 0.03521 0.17102 +v 0.10252 0.05048 0.17543 +v 0.10260 0.04872 0.16919 +v 0.10280 0.04472 0.16789 +v 0.10354 0.05917 0.19201 +v 0.10368 0.05755 0.18983 +v 0.10371 0.05676 0.18789 +v 0.10288 0.06569 0.19539 +v 0.10313 0.06262 0.19701 +v 0.10347 0.06013 0.19381 +v 0.10275 0.06716 0.19672 +v 0.10326 0.06970 0.20672 +v 0.10312 0.06786 0.20342 +v 0.10264 0.00904 0.21031 +v 0.10171 0.00767 0.20607 +v 0.10233 0.00661 0.19567 +v 0.10329 0.00633 0.19984 +v 0.10336 0.00596 0.19753 +v 0.10279 0.00626 0.20154 +v 0.10214 0.00617 0.20291 +v 0.10140 0.00638 0.20460 +v 0.10326 0.00616 0.20067 +v 0.10146 0.00720 0.20503 +v 0.10270 0.00991 0.21309 +v 0.10146 0.00619 0.19284 +v 0.10269 0.01137 0.18305 +v 0.10224 0.01231 0.17943 +v 0.10196 0.01414 0.17685 +v 0.10211 0.01929 0.17281 +v 0.10269 0.01111 0.18398 +v 0.10155 0.00762 0.18776 +v 0.10117 0.00608 0.19185 +v 0.10306 0.03064 0.17425 +v 0.10219 0.02262 0.16887 +v 0.10305 0.03364 0.17473 +v 0.10286 0.03514 0.17489 +v 0.10247 0.05266 0.17858 +v 0.10256 0.05437 0.17904 +v 0.10329 0.05585 0.18439 +v 0.10286 0.03927 0.16668 +v 0.10300 0.03646 0.16903 +v 0.10333 0.03275 0.17247 +v 0.10249 0.04982 0.17086 +v 0.10258 0.05122 0.17270 +v 0.10270 0.04254 0.16683 +v 0.10269 0.04785 0.16712 +v 0.10270 0.05300 0.17403 +v 0.10330 0.05929 0.19057 +v 0.10357 0.05855 0.18958 +v 0.10377 0.05787 0.18895 +v 0.10351 0.05710 0.18641 +v 0.10303 0.06346 0.19622 +v 0.10303 0.06258 0.19594 +v 0.10280 0.06252 0.19460 +v 0.10266 0.06822 0.19723 +v 0.10323 0.07008 0.20868 +v 0.10297 0.06836 0.20121 +v 0.10226 0.00752 0.20996 +v 0.10250 0.00612 0.19527 +v 0.10199 0.00603 0.19358 +v 0.10294 0.00635 0.19710 +v 0.10271 0.00611 0.19598 +v 0.10348 0.00617 0.19923 +v 0.10377 0.00565 0.19818 +v 0.10269 0.00585 0.20258 +v 0.10148 0.00583 0.20436 +v 0.10232 0.00554 0.20366 +v 0.10264 0.01034 0.21557 +v 0.10236 0.00780 0.21543 +v 0.10250 0.00806 0.21204 +v 0.10217 0.01020 0.18094 +v 0.10242 0.01048 0.18282 +v 0.10222 0.01126 0.17948 +v 0.10164 0.01322 0.17455 +v 0.10194 0.01721 0.17212 +v 0.10222 0.02080 0.17105 +v 0.10227 0.00966 0.18389 +v 0.10142 0.00655 0.18842 +v 0.10105 0.00610 0.19020 +v 0.10099 0.00596 0.19093 +v 0.10200 0.00880 0.18604 +v 0.10318 0.03091 0.17266 +v 0.10242 0.02478 0.16952 +v 0.10246 0.05331 0.17894 +v 0.10341 0.05680 0.18271 +v 0.10271 0.04084 0.16585 +v 0.10337 0.03426 0.16880 +v 0.10345 0.03241 0.17179 +v 0.10248 0.05304 0.16732 +v 0.10271 0.04986 0.16606 +v 0.10256 0.04660 0.16481 +v 0.10294 0.05647 0.17585 +v 0.10305 0.05985 0.19009 +v 0.10375 0.05791 0.18791 +v 0.10313 0.06045 0.19275 +v 0.10270 0.06495 0.19355 +v 0.10277 0.06767 0.19547 +v 0.10264 0.06990 0.19505 +v 0.10312 0.06977 0.21093 +v 0.10307 0.07130 0.20699 +v 0.10183 0.00681 0.20751 +v 0.10144 0.00650 0.20572 +v 0.10269 0.00578 0.19439 +v 0.10312 0.00592 0.19666 +v 0.10385 0.00587 0.19983 +v 0.10383 0.00545 0.19681 +v 0.10305 0.00576 0.20229 +v 0.10152 0.00560 0.20509 +v 0.10200 0.00537 0.20411 +v 0.10349 0.00582 0.20160 +v 0.10246 0.00781 0.21368 +v 0.10178 0.00571 0.19260 +v 0.10136 0.00581 0.19233 +v 0.10203 0.01299 0.17726 +v 0.10214 0.01094 0.17809 +v 0.10176 0.01546 0.17275 +v 0.10210 0.01862 0.17057 +v 0.10207 0.00879 0.18462 +v 0.10147 0.00673 0.18751 +v 0.10145 0.00604 0.18929 +v 0.10108 0.00569 0.19056 +v 0.10180 0.00763 0.18573 +v 0.10320 0.03038 0.17104 +v 0.10217 0.02149 0.16939 +v 0.10227 0.02297 0.16773 +v 0.10276 0.02754 0.16950 +v 0.10269 0.05487 0.17767 +v 0.10292 0.05605 0.17966 +v 0.10352 0.05725 0.18364 +v 0.10335 0.05806 0.18527 +v 0.10288 0.03910 0.16464 +v 0.10315 0.03701 0.16684 +v 0.10331 0.03523 0.16687 +v 0.10267 0.05173 0.16654 +v 0.10247 0.05310 0.16865 +v 0.10258 0.05383 0.16984 +v 0.10270 0.05379 0.17140 +v 0.10256 0.04236 0.16307 +v 0.10260 0.04939 0.16331 +v 0.10276 0.05175 0.16534 +v 0.10283 0.05533 0.17088 +v 0.10332 0.05913 0.18935 +v 0.10362 0.05871 0.18829 +v 0.10343 0.05819 0.18645 +v 0.10256 0.06676 0.19116 +v 0.10267 0.06270 0.19397 +v 0.10260 0.06907 0.19235 +v 0.10279 0.06173 0.19272 +v 0.10256 0.07053 0.19883 +v 0.10250 0.07020 0.19671 +v 0.10327 0.06825 0.21128 +v 0.10310 0.07090 0.20924 +v 0.10279 0.07211 0.20429 +v 0.10283 0.07083 0.20178 +v 0.10205 0.00658 0.20966 +v 0.10227 0.00671 0.21121 +v 0.10303 0.00567 0.19547 +v 0.10273 0.00546 0.19294 +v 0.10307 0.00569 0.19602 +v 0.10398 0.00576 0.20090 +v 0.10411 0.00555 0.19889 +v 0.10443 0.00527 0.19847 +v 0.10342 0.00573 0.19700 +v 0.10333 0.00545 0.20323 +v 0.10217 0.00521 0.20455 +v 0.10244 0.00635 0.21470 +v 0.10246 0.00746 0.21283 +v 0.10147 0.00563 0.19185 +v 0.10202 0.00904 0.18243 +v 0.10194 0.00883 0.17857 +v 0.10209 0.01210 0.17699 +v 0.10168 0.01370 0.17272 +v 0.10213 0.01738 0.16954 +v 0.10194 0.01593 0.17091 +v 0.10232 0.01930 0.16887 +v 0.10141 0.00635 0.18792 +v 0.10160 0.00686 0.18654 +v 0.10165 0.00593 0.18846 +v 0.10124 0.00571 0.19001 +v 0.10235 0.02024 0.16824 +v 0.10217 0.02125 0.16818 +v 0.10245 0.02486 0.16738 +v 0.10220 0.02176 0.16771 +v 0.10291 0.05650 0.17896 +v 0.10314 0.05786 0.17984 +v 0.10350 0.05786 0.18283 +v 0.10322 0.03765 0.16582 +v 0.10272 0.03997 0.16355 +v 0.10345 0.03190 0.17097 +v 0.10330 0.03354 0.16710 +v 0.10251 0.05327 0.16547 +v 0.10243 0.05486 0.16822 +v 0.10278 0.05137 0.16435 +v 0.10256 0.04714 0.16345 +v 0.10308 0.05848 0.17600 +v 0.10292 0.05690 0.17724 +v 0.10293 0.05971 0.18873 +v 0.10355 0.05839 0.18732 +v 0.10261 0.06347 0.19215 +v 0.10267 0.07006 0.19380 +v 0.10256 0.07078 0.19535 +v 0.10326 0.06911 0.21425 +v 0.10301 0.07058 0.21071 +v 0.10299 0.07298 0.20768 +v 0.10147 0.00586 0.20618 +v 0.10202 0.00570 0.20845 +v 0.10256 0.00653 0.21273 +v 0.10343 0.00538 0.19427 +v 0.10503 0.00540 0.20123 +v 0.10454 0.00553 0.19991 +v 0.10499 0.00507 0.19688 +v 0.10364 0.00556 0.20247 +v 0.10267 0.00522 0.20418 +v 0.10439 0.00552 0.20201 +v 0.10177 0.00545 0.19134 +v 0.10172 0.00771 0.18189 +v 0.10182 0.00879 0.17708 +v 0.10183 0.01031 0.17571 +v 0.10190 0.01175 0.17561 +v 0.10179 0.01226 0.17309 +v 0.10172 0.01463 0.17189 +v 0.10178 0.00760 0.18293 +v 0.10148 0.00618 0.18786 +v 0.10168 0.00614 0.18692 +v 0.10217 0.00549 0.18878 +v 0.10100 0.00577 0.19020 +v 0.10176 0.00555 0.18964 +v 0.10175 0.00681 0.18552 +v 0.10187 0.00775 0.18454 +v 0.10330 0.03100 0.16951 +v 0.10242 0.02287 0.16651 +v 0.10239 0.02181 0.16691 +v 0.10275 0.02795 0.16698 +v 0.10334 0.05886 0.18401 +v 0.10348 0.05838 0.18338 +v 0.10319 0.05912 0.18640 +v 0.10314 0.03791 0.16442 +v 0.10334 0.03700 0.16550 +v 0.10340 0.03337 0.16902 +v 0.10325 0.03475 0.16519 +v 0.10242 0.05446 0.16466 +v 0.10263 0.05081 0.16295 +v 0.10260 0.05269 0.16412 +v 0.10266 0.04413 0.16072 +v 0.10273 0.04880 0.16138 +v 0.10292 0.05706 0.17149 +v 0.10282 0.06089 0.19063 +v 0.10330 0.05916 0.18766 +v 0.10241 0.06932 0.18558 +v 0.10240 0.06437 0.18734 +v 0.10271 0.07138 0.19365 +v 0.10271 0.07226 0.19304 +v 0.10237 0.07133 0.19735 +v 0.10261 0.07254 0.20107 +v 0.10239 0.07119 0.19625 +v 0.10300 0.07123 0.21212 +v 0.10297 0.07270 0.20955 +v 0.10273 0.07386 0.20400 +v 0.10162 0.00557 0.20672 +v 0.10209 0.00590 0.21059 +v 0.10200 0.00570 0.20970 +v 0.10176 0.00567 0.20744 +v 0.10245 0.00578 0.21145 +v 0.10379 0.00531 0.19607 +v 0.10377 0.00510 0.19265 +v 0.10439 0.00515 0.19593 +v 0.10557 0.00499 0.19793 +v 0.10429 0.00529 0.20370 +v 0.10156 0.00532 0.20593 +v 0.10187 0.00508 0.20543 +v 0.10293 0.00501 0.20498 +v 0.10296 0.00560 0.21363 +v 0.10294 0.00524 0.19169 +v 0.10175 0.00746 0.18004 +v 0.10192 0.00704 0.17811 +v 0.10179 0.01195 0.17452 +v 0.10189 0.01329 0.17177 +v 0.10264 0.01829 0.16760 +v 0.10215 0.01607 0.16966 +v 0.10208 0.01505 0.17050 +v 0.10239 0.01954 0.16819 +v 0.10166 0.00640 0.18627 +v 0.10199 0.00567 0.18770 +v 0.10165 0.00547 0.19043 +v 0.10235 0.02098 0.16736 +v 0.10243 0.02366 0.16598 +v 0.10246 0.02487 0.16579 +v 0.10294 0.05803 0.17800 +v 0.10303 0.05793 0.17925 +v 0.10325 0.05960 0.18156 +v 0.10315 0.05948 0.18484 +v 0.10329 0.05962 0.18264 +v 0.10286 0.03107 0.16452 +v 0.10254 0.05671 0.16570 +v 0.10253 0.05251 0.16318 +v 0.10261 0.05078 0.16122 +v 0.10274 0.04720 0.16143 +v 0.10296 0.05835 0.17708 +v 0.10303 0.05997 0.17449 +v 0.10276 0.05791 0.16904 +v 0.10306 0.05956 0.18812 +v 0.10259 0.06114 0.18816 +v 0.10264 0.06233 0.19126 +v 0.10269 0.07218 0.19421 +v 0.10329 0.07096 0.21666 +v 0.10289 0.07377 0.21150 +v 0.10299 0.07464 0.20864 +v 0.10212 0.00543 0.20964 +v 0.10195 0.00532 0.20754 +v 0.10291 0.00564 0.21215 +v 0.10430 0.00512 0.19401 +v 0.10565 0.00527 0.20288 +v 0.10522 0.00531 0.20036 +v 0.10512 0.00517 0.19903 +v 0.10568 0.00495 0.19579 +v 0.10227 0.00498 0.20514 +v 0.10304 0.00563 0.21277 +v 0.10271 0.00551 0.21457 +v 0.10318 0.00512 0.19047 +v 0.10174 0.00665 0.18216 +v 0.10171 0.00672 0.18027 +v 0.10168 0.00758 0.17665 +v 0.10161 0.00851 0.17552 +v 0.10175 0.01021 0.17449 +v 0.10206 0.01253 0.17122 +v 0.10183 0.01119 0.17347 +v 0.10222 0.01403 0.17031 +v 0.10258 0.01929 0.16772 +v 0.10264 0.01768 0.16734 +v 0.10230 0.01675 0.16859 +v 0.10186 0.00656 0.18411 +v 0.10188 0.00602 0.18602 +v 0.10326 0.00512 0.18884 +v 0.10279 0.00522 0.18794 +v 0.10276 0.01983 0.16701 +v 0.10264 0.02262 0.16536 +v 0.10266 0.02181 0.16601 +v 0.10268 0.02097 0.16647 +v 0.10246 0.02559 0.16482 +v 0.10297 0.05914 0.17965 +v 0.10310 0.05951 0.18041 +v 0.10302 0.06050 0.18394 +v 0.10266 0.06069 0.18765 +v 0.10300 0.03421 0.16232 +v 0.10234 0.05392 0.16240 +v 0.10237 0.05629 0.16179 +v 0.10245 0.05258 0.16215 +v 0.10257 0.05171 0.16149 +v 0.10283 0.04645 0.15992 +v 0.10297 0.04841 0.16010 +v 0.10272 0.04949 0.16044 +v 0.10290 0.06030 0.17655 +v 0.10296 0.05981 0.18730 +v 0.10263 0.07311 0.19086 +v 0.10226 0.06435 0.18451 +v 0.10252 0.06202 0.18618 +v 0.10276 0.07192 0.19373 +v 0.10248 0.07382 0.19610 +v 0.10243 0.07406 0.19843 +v 0.10266 0.07329 0.19418 +v 0.10329 0.07277 0.21686 +v 0.10251 0.07617 0.20184 +v 0.10290 0.07716 0.20589 +v 0.10193 0.00504 0.20631 +v 0.10179 0.00526 0.20701 +v 0.10219 0.00554 0.21088 +v 0.10220 0.00544 0.21031 +v 0.10256 0.00527 0.20875 +v 0.10245 0.00517 0.20777 +v 0.10318 0.00524 0.21135 +v 0.10461 0.00502 0.19277 +v 0.10371 0.00509 0.19121 +v 0.10643 0.00513 0.20172 +v 0.10600 0.00509 0.20018 +v 0.10671 0.00489 0.19694 +v 0.10520 0.00518 0.20444 +v 0.10244 0.00485 0.20599 +v 0.10342 0.00528 0.21299 +v 0.10351 0.00509 0.21362 +v 0.10173 0.00670 0.18307 +v 0.10184 0.00666 0.17958 +v 0.10167 0.00658 0.17582 +v 0.10198 0.01104 0.17230 +v 0.10307 0.01929 0.16637 +v 0.10294 0.01838 0.16619 +v 0.10233 0.01538 0.16885 +v 0.10237 0.01478 0.16964 +v 0.10220 0.00558 0.18661 +v 0.10276 0.00525 0.18654 +v 0.10196 0.00609 0.18518 +v 0.10249 0.02729 0.16406 +v 0.10250 0.02358 0.16515 +v 0.10248 0.02421 0.16472 +v 0.10281 0.05930 0.17849 +v 0.10324 0.06119 0.18144 +v 0.10320 0.06086 0.18096 +v 0.10316 0.06085 0.18270 +v 0.10269 0.06141 0.18447 +v 0.10265 0.03166 0.16176 +v 0.10259 0.05888 0.16213 +v 0.10277 0.05908 0.16716 +v 0.10267 0.05139 0.16022 +v 0.10269 0.04466 0.15701 +v 0.10284 0.06134 0.17148 +v 0.10302 0.06060 0.17477 +v 0.10267 0.07534 0.18822 +v 0.10239 0.06290 0.18532 +v 0.10227 0.06505 0.18255 +v 0.10330 0.07124 0.21954 +v 0.10305 0.07520 0.20953 +v 0.10300 0.07522 0.21233 +v 0.10276 0.07701 0.20391 +v 0.10299 0.07673 0.20874 +v 0.10247 0.00537 0.21094 +v 0.10252 0.00529 0.20962 +v 0.10223 0.00498 0.20692 +v 0.10345 0.00524 0.21233 +v 0.10544 0.00502 0.19306 +v 0.10455 0.00506 0.19035 +v 0.10426 0.00500 0.18749 +v 0.10191 0.00618 0.18302 +v 0.10196 0.00615 0.18133 +v 0.10195 0.00626 0.18032 +v 0.10231 0.00613 0.17916 +v 0.10158 0.00724 0.17562 +v 0.10204 0.00630 0.17689 +v 0.10161 0.00847 0.17288 +v 0.10182 0.01011 0.17293 +v 0.10224 0.01312 0.17030 +v 0.10196 0.01049 0.17186 +v 0.10241 0.01619 0.16750 +v 0.10268 0.01736 0.16591 +v 0.10241 0.01438 0.16944 +v 0.10247 0.00555 0.18547 +v 0.10329 0.00504 0.18728 +v 0.10216 0.00587 0.18464 +v 0.10241 0.02853 0.16254 +v 0.10312 0.02089 0.16538 +v 0.10271 0.02298 0.16415 +v 0.10248 0.02447 0.16389 +v 0.10239 0.02540 0.16350 +v 0.10303 0.06128 0.18008 +v 0.10291 0.06123 0.18338 +v 0.10244 0.05592 0.16003 +v 0.10272 0.05946 0.15987 +v 0.10288 0.06049 0.16667 +v 0.10278 0.06238 0.17003 +v 0.10249 0.05391 0.16106 +v 0.10272 0.05304 0.16010 +v 0.10280 0.04626 0.15782 +v 0.10300 0.04802 0.15942 +v 0.10290 0.04887 0.15989 +v 0.10272 0.04992 0.15923 +v 0.10288 0.06286 0.17326 +v 0.10287 0.06250 0.17463 +v 0.10280 0.07466 0.18114 +v 0.10234 0.06269 0.18411 +v 0.10227 0.06337 0.18293 +v 0.10232 0.06636 0.18088 +v 0.10241 0.07516 0.19611 +v 0.10244 0.07717 0.19865 +v 0.10341 0.07508 0.21685 +v 0.10303 0.08001 0.20514 +v 0.10297 0.07888 0.20862 +v 0.10288 0.00525 0.21064 +v 0.10320 0.00513 0.20863 +v 0.10311 0.00499 0.20732 +v 0.10442 0.00482 0.21227 +v 0.10586 0.00513 0.20576 +v 0.10417 0.00494 0.21281 +v 0.10202 0.00602 0.18227 +v 0.10231 0.00615 0.17796 +v 0.10152 0.00699 0.17396 +v 0.10195 0.00616 0.17603 +v 0.10176 0.00633 0.17515 +v 0.10151 0.00764 0.17394 +v 0.10229 0.01326 0.16914 +v 0.10218 0.01208 0.17014 +v 0.10311 0.01937 0.16569 +v 0.10289 0.01809 0.16575 +v 0.10225 0.01424 0.16744 +v 0.10224 0.00587 0.18382 +v 0.10343 0.00512 0.18605 +v 0.10241 0.02718 0.16257 +v 0.10287 0.02219 0.16478 +v 0.10286 0.06063 0.17772 +v 0.10292 0.06058 0.17897 +v 0.10313 0.06133 0.18231 +v 0.10300 0.06184 0.18122 +v 0.10234 0.06257 0.18294 +v 0.10231 0.02850 0.16188 +v 0.10255 0.05785 0.15801 +v 0.10267 0.06037 0.16243 +v 0.10274 0.05299 0.15896 +v 0.10277 0.04706 0.15710 +v 0.10300 0.04851 0.15914 +v 0.10267 0.05185 0.15856 +v 0.10274 0.06376 0.17182 +v 0.10281 0.06295 0.17632 +v 0.10225 0.06997 0.18101 +v 0.10297 0.07810 0.18474 +v 0.10257 0.07616 0.19114 +v 0.10222 0.06318 0.18367 +v 0.10242 0.06392 0.18114 +v 0.10224 0.06842 0.18015 +v 0.10240 0.06457 0.18080 +v 0.10303 0.07717 0.21179 +v 0.10309 0.07649 0.21373 +v 0.10288 0.08054 0.20246 +v 0.10307 0.07971 0.20641 +v 0.10289 0.07897 0.21085 +v 0.10394 0.00510 0.20990 +v 0.10372 0.00509 0.21076 +v 0.10414 0.00500 0.20683 +v 0.10663 0.00514 0.18906 +v 0.10201 0.00596 0.18273 +v 0.10219 0.00590 0.18171 +v 0.10218 0.00596 0.18076 +v 0.10259 0.00578 0.18024 +v 0.10272 0.00576 0.17831 +v 0.10265 0.00568 0.17648 +v 0.10155 0.00752 0.17290 +v 0.10169 0.00891 0.17188 +v 0.10203 0.01102 0.16933 +v 0.10290 0.01863 0.16511 +v 0.10218 0.01518 0.16531 +v 0.10235 0.00581 0.18289 +v 0.10258 0.00558 0.18447 +v 0.10234 0.02820 0.16156 +v 0.10300 0.02159 0.16449 +v 0.10241 0.02479 0.16363 +v 0.10266 0.02408 0.16297 +v 0.10252 0.02650 0.16194 +v 0.10289 0.06241 0.18005 +v 0.10291 0.06200 0.17862 +v 0.10241 0.02980 0.16082 +v 0.10265 0.05405 0.15936 +v 0.10248 0.05663 0.15746 +v 0.10269 0.06137 0.16116 +v 0.10264 0.05970 0.15754 +v 0.10278 0.06230 0.16473 +v 0.10286 0.06239 0.16749 +v 0.10266 0.04369 0.15524 +v 0.10262 0.04966 0.15806 +v 0.10274 0.06424 0.16842 +v 0.10265 0.06610 0.17425 +v 0.10227 0.06984 0.17840 +v 0.10314 0.07722 0.18052 +v 0.10271 0.07795 0.18809 +v 0.10257 0.07713 0.18970 +v 0.10256 0.06262 0.18210 +v 0.10237 0.06639 0.17827 +v 0.10254 0.06474 0.17956 +v 0.10227 0.07705 0.19502 +v 0.10317 0.07702 0.21541 +v 0.10277 0.08331 0.19823 +v 0.10322 0.08370 0.20473 +v 0.10330 0.08201 0.20636 +v 0.10288 0.07975 0.21128 +v 0.10334 0.08207 0.20757 +v 0.10454 0.00506 0.20814 +v 0.10490 0.00482 0.21144 +v 0.10521 0.00479 0.21241 +v 0.10579 0.00506 0.20732 +v 0.10571 0.00509 0.18618 +v 0.10442 0.00510 0.18527 +v 0.10253 0.00575 0.18121 +v 0.10253 0.00575 0.18207 +v 0.10319 0.00555 0.17929 +v 0.10166 0.00632 0.17385 +v 0.10222 0.00580 0.17543 +v 0.10149 0.00744 0.17160 +v 0.10220 0.01194 0.16919 +v 0.10306 0.02027 0.16465 +v 0.10251 0.01751 0.16407 +v 0.10161 0.01210 0.16488 +v 0.10203 0.01166 0.16821 +v 0.10296 0.00553 0.18365 +v 0.10333 0.00530 0.18468 +v 0.10239 0.02745 0.16158 +v 0.10285 0.02145 0.16316 +v 0.10279 0.02289 0.16305 +v 0.10262 0.06311 0.18103 +v 0.10250 0.05554 0.15766 +v 0.10260 0.05798 0.15594 +v 0.10269 0.05360 0.15853 +v 0.10264 0.04648 0.15566 +v 0.10243 0.04902 0.15644 +v 0.10260 0.06573 0.16956 +v 0.10273 0.07302 0.17588 +v 0.10289 0.07596 0.17825 +v 0.10314 0.07838 0.18131 +v 0.10289 0.07940 0.18641 +v 0.10238 0.07859 0.19007 +v 0.10267 0.06360 0.17997 +v 0.10224 0.06899 0.17670 +v 0.10233 0.07754 0.19307 +v 0.10243 0.07953 0.19529 +v 0.10302 0.07882 0.21335 +v 0.10299 0.07873 0.21417 +v 0.10337 0.07606 0.21736 +v 0.10299 0.08620 0.20084 +v 0.10308 0.08076 0.20935 +v 0.10505 0.00494 0.20985 +v 0.10314 0.00550 0.18091 +v 0.10359 0.00538 0.17838 +v 0.10315 0.00546 0.17745 +v 0.10172 0.00637 0.17305 +v 0.10198 0.00591 0.17490 +v 0.10287 0.00542 0.17510 +v 0.10165 0.00652 0.17200 +v 0.10143 0.00776 0.17016 +v 0.10272 0.01940 0.16326 +v 0.10212 0.01601 0.16294 +v 0.10179 0.01378 0.16286 +v 0.10321 0.00554 0.18224 +v 0.10261 0.02884 0.15915 +v 0.10279 0.02306 0.16191 +v 0.10264 0.02669 0.16100 +v 0.10285 0.06340 0.17828 +v 0.10242 0.05610 0.15567 +v 0.10265 0.06264 0.16103 +v 0.10263 0.06143 0.15924 +v 0.10274 0.05941 0.15558 +v 0.10273 0.06400 0.16558 +v 0.10264 0.04613 0.15440 +v 0.10234 0.05077 0.15527 +v 0.10234 0.06765 0.16770 +v 0.10260 0.06760 0.17176 +v 0.10265 0.06500 0.17672 +v 0.10247 0.07039 0.17552 +v 0.10286 0.07692 0.17782 +v 0.10307 0.07819 0.18003 +v 0.10311 0.07963 0.18314 +v 0.10263 0.07875 0.18829 +v 0.10306 0.07990 0.18500 +v 0.10230 0.07796 0.19176 +v 0.10244 0.06814 0.17524 +v 0.10302 0.07817 0.21688 +v 0.10255 0.08275 0.19331 +v 0.10282 0.08687 0.19681 +v 0.10310 0.08728 0.20314 +v 0.10344 0.08369 0.20796 +v 0.10292 0.08171 0.21081 +v 0.10281 0.08050 0.21219 +v 0.10623 0.00484 0.21006 +v 0.10449 0.00510 0.18431 +v 0.10440 0.00522 0.17957 +v 0.10362 0.00523 0.17619 +v 0.10187 0.00597 0.17361 +v 0.10228 0.00565 0.17447 +v 0.10144 0.00684 0.17125 +v 0.10144 0.00826 0.16882 +v 0.10123 0.00796 0.16757 +v 0.10236 0.01829 0.16152 +v 0.10157 0.01221 0.16377 +v 0.10152 0.01043 0.16598 +v 0.10437 0.00529 0.18246 +v 0.10273 0.02715 0.16003 +v 0.10278 0.02528 0.16168 +v 0.10268 0.05389 0.15776 +v 0.10248 0.05461 0.15568 +v 0.10255 0.05650 0.15499 +v 0.10257 0.06208 0.15992 +v 0.10269 0.06454 0.16280 +v 0.10264 0.06297 0.15964 +v 0.10287 0.05792 0.15448 +v 0.10280 0.06121 0.15494 +v 0.10245 0.04833 0.15579 +v 0.10262 0.04434 0.15285 +v 0.10261 0.05315 0.15714 +v 0.10240 0.04908 0.15477 +v 0.10253 0.06869 0.17215 +v 0.10280 0.07638 0.17647 +v 0.10252 0.07099 0.17409 +v 0.10305 0.07736 0.17929 +v 0.10294 0.07902 0.18019 +v 0.10321 0.07913 0.18131 +v 0.10276 0.07953 0.18719 +v 0.10291 0.08024 0.18571 +v 0.10233 0.07970 0.18909 +v 0.10236 0.07966 0.19095 +v 0.10238 0.06922 0.17548 +v 0.10274 0.08038 0.21563 +v 0.10288 0.07796 0.21923 +v 0.10277 0.08572 0.19495 +v 0.10276 0.08763 0.19795 +v 0.10305 0.08779 0.20157 +v 0.10317 0.08689 0.20577 +v 0.10407 0.00519 0.17710 +v 0.10461 0.00522 0.17839 +v 0.10196 0.00593 0.17238 +v 0.10217 0.00575 0.17298 +v 0.10375 0.00517 0.17485 +v 0.10303 0.00531 0.17292 +v 0.10161 0.00627 0.17107 +v 0.10141 0.00659 0.17033 +v 0.10138 0.00709 0.16952 +v 0.10263 0.02106 0.16119 +v 0.10190 0.01519 0.16078 +v 0.10166 0.01230 0.16228 +v 0.10143 0.01048 0.16447 +v 0.10281 0.02710 0.15872 +v 0.10282 0.02482 0.16019 +v 0.10280 0.02583 0.16054 +v 0.10254 0.05502 0.15438 +v 0.10273 0.06597 0.15845 +v 0.10273 0.06525 0.15764 +v 0.10300 0.05822 0.15364 +v 0.10275 0.06281 0.15555 +v 0.10251 0.06670 0.16634 +v 0.10253 0.04127 0.15267 +v 0.10271 0.04632 0.15283 +v 0.10251 0.05343 0.15571 +v 0.10229 0.05053 0.15479 +v 0.10239 0.06973 0.16929 +v 0.10251 0.07572 0.17413 +v 0.10250 0.06962 0.17383 +v 0.10243 0.07241 0.17262 +v 0.10277 0.07775 0.17777 +v 0.10305 0.08007 0.18237 +v 0.10299 0.08041 0.18412 +v 0.10267 0.08011 0.18687 +v 0.10245 0.07969 0.18820 +v 0.10225 0.08077 0.18974 +v 0.10254 0.08154 0.21365 +v 0.10280 0.08014 0.21754 +v 0.10264 0.08565 0.19256 +v 0.10271 0.08734 0.19331 +v 0.10274 0.08830 0.20016 +v 0.10261 0.08847 0.19517 +v 0.10286 0.08868 0.20163 +v 0.10293 0.08852 0.20429 +v 0.10313 0.08682 0.20852 +v 0.10323 0.08429 0.20933 +v 0.10543 0.00513 0.18338 +v 0.10597 0.00515 0.18199 +v 0.10587 0.00521 0.17841 +v 0.10488 0.00500 0.17566 +v 0.10214 0.00572 0.17145 +v 0.10398 0.00512 0.17335 +v 0.10141 0.00689 0.16836 +v 0.10117 0.00848 0.16645 +v 0.10225 0.01796 0.15940 +v 0.10239 0.02005 0.15891 +v 0.10143 0.01022 0.16289 +v 0.10274 0.02818 0.15734 +v 0.10265 0.02243 0.15925 +v 0.10250 0.05394 0.15402 +v 0.10274 0.05542 0.15278 +v 0.10254 0.06924 0.16573 +v 0.10288 0.06184 0.15180 +v 0.10253 0.04257 0.15180 +v 0.10273 0.04603 0.15138 +v 0.10262 0.04782 0.15335 +v 0.10226 0.05137 0.15351 +v 0.10240 0.07003 0.16711 +v 0.10240 0.07167 0.17081 +v 0.10252 0.07774 0.17524 +v 0.10259 0.07847 0.17723 +v 0.10266 0.07969 0.17974 +v 0.10267 0.08088 0.18126 +v 0.10257 0.08096 0.18627 +v 0.10266 0.08128 0.18515 +v 0.10214 0.08096 0.18855 +v 0.10223 0.08237 0.18946 +v 0.10269 0.08136 0.21613 +v 0.10257 0.08164 0.21516 +v 0.10264 0.08823 0.19339 +v 0.10257 0.08841 0.19845 +v 0.10249 0.08876 0.19663 +v 0.10282 0.08896 0.20333 +v 0.10286 0.08919 0.20561 +v 0.10305 0.08876 0.20685 +v 0.10249 0.08376 0.21347 +v 0.10262 0.08473 0.21267 +v 0.10519 0.00513 0.17712 +v 0.10241 0.00554 0.17230 +v 0.10489 0.00504 0.17448 +v 0.10407 0.00488 0.17081 +v 0.10186 0.00584 0.17083 +v 0.10165 0.00600 0.17036 +v 0.10141 0.00637 0.16981 +v 0.10164 0.00620 0.16929 +v 0.10120 0.00682 0.16727 +v 0.10096 0.00738 0.16649 +v 0.10182 0.01338 0.16022 +v 0.10183 0.01484 0.15947 +v 0.10169 0.01095 0.16096 +v 0.10105 0.00788 0.16503 +v 0.10289 0.03129 0.15571 +v 0.10271 0.02703 0.15649 +v 0.10263 0.02314 0.15590 +v 0.10237 0.07258 0.16212 +v 0.10259 0.06757 0.15705 +v 0.10263 0.06706 0.15523 +v 0.10291 0.05775 0.15043 +v 0.10300 0.05911 0.15254 +v 0.10272 0.06338 0.15224 +v 0.10254 0.04419 0.15069 +v 0.10261 0.04076 0.15134 +v 0.10285 0.04724 0.15185 +v 0.10252 0.04915 0.15253 +v 0.10230 0.05120 0.15123 +v 0.10226 0.07339 0.16796 +v 0.10217 0.07395 0.17070 +v 0.10244 0.07832 0.17330 +v 0.10272 0.08139 0.18387 +v 0.10275 0.08107 0.18232 +v 0.10217 0.08088 0.18772 +v 0.10258 0.08718 0.19030 +v 0.10276 0.08778 0.19245 +v 0.10226 0.08917 0.19800 +v 0.10237 0.08946 0.19370 +v 0.10241 0.08932 0.19503 +v 0.10247 0.08945 0.20089 +v 0.10213 0.09077 0.20289 +v 0.10260 0.08987 0.20509 +v 0.10314 0.08567 0.20978 +v 0.10307 0.08867 0.20778 +v 0.10283 0.08531 0.21140 +v 0.10294 0.00527 0.17168 +v 0.10583 0.00507 0.17465 +v 0.10479 0.00501 0.17308 +v 0.10244 0.00543 0.17046 +v 0.10143 0.00620 0.17009 +v 0.10196 0.00591 0.16819 +v 0.10147 0.00638 0.16777 +v 0.10179 0.01186 0.16076 +v 0.10248 0.02051 0.15800 +v 0.10229 0.01744 0.15800 +v 0.10144 0.00929 0.16103 +v 0.10120 0.00838 0.16354 +v 0.10289 0.03024 0.15466 +v 0.10284 0.02887 0.15381 +v 0.10260 0.02539 0.15549 +v 0.10263 0.02200 0.15714 +v 0.10244 0.05307 0.15175 +v 0.10292 0.05983 0.15024 +v 0.10253 0.05424 0.15009 +v 0.10263 0.06347 0.15112 +v 0.10254 0.04228 0.15008 +v 0.10273 0.03961 0.15060 +v 0.10254 0.04603 0.14978 +v 0.10290 0.04721 0.15117 +v 0.10287 0.04768 0.15132 +v 0.10239 0.08001 0.17611 +v 0.10245 0.07962 0.17805 +v 0.10249 0.08049 0.17994 +v 0.10258 0.08201 0.18178 +v 0.10224 0.08146 0.18708 +v 0.10235 0.08201 0.18623 +v 0.10250 0.08230 0.18428 +v 0.10207 0.08166 0.18805 +v 0.10271 0.08320 0.21620 +v 0.10220 0.08279 0.18743 +v 0.10236 0.08945 0.20034 +v 0.10216 0.09047 0.19601 +v 0.10233 0.09005 0.20163 +v 0.10193 0.09126 0.20401 +v 0.10285 0.08993 0.20680 +v 0.10263 0.08858 0.21026 +v 0.10294 0.08959 0.20741 +v 0.10285 0.08926 0.20840 +v 0.10259 0.08516 0.21389 +v 0.10253 0.08591 0.21293 +v 0.10487 0.00482 0.17030 +v 0.10154 0.00607 0.16988 +v 0.10230 0.00557 0.16939 +v 0.10100 0.00696 0.16650 +v 0.10159 0.00612 0.16722 +v 0.10101 0.00688 0.16564 +v 0.10200 0.01229 0.15918 +v 0.10189 0.01358 0.15900 +v 0.10191 0.01457 0.15864 +v 0.10200 0.01142 0.15937 +v 0.10154 0.00955 0.15994 +v 0.10121 0.00681 0.16378 +v 0.10298 0.03451 0.15333 +v 0.10261 0.02619 0.15229 +v 0.10265 0.02047 0.15502 +v 0.10250 0.02327 0.15303 +v 0.10247 0.07135 0.15445 +v 0.10255 0.06905 0.15308 +v 0.10260 0.06637 0.15315 +v 0.10277 0.05792 0.14865 +v 0.10265 0.06212 0.14874 +v 0.10260 0.06297 0.14977 +v 0.10248 0.06576 0.15189 +v 0.10249 0.04278 0.14956 +v 0.10291 0.03724 0.15181 +v 0.10247 0.04442 0.14917 +v 0.10294 0.04741 0.15142 +v 0.10263 0.04870 0.15129 +v 0.10241 0.05002 0.15083 +v 0.10231 0.07656 0.16341 +v 0.10226 0.07613 0.16701 +v 0.10233 0.07719 0.17065 +v 0.10240 0.08025 0.17508 +v 0.10241 0.08051 0.17874 +v 0.10234 0.08092 0.17953 +v 0.10252 0.08173 0.18085 +v 0.10209 0.08167 0.18755 +v 0.10268 0.08530 0.21495 +v 0.10234 0.08614 0.18576 +v 0.10256 0.08878 0.19103 +v 0.10221 0.09019 0.20038 +v 0.10227 0.09070 0.19390 +v 0.10179 0.09265 0.20344 +v 0.10208 0.09109 0.20126 +v 0.10202 0.09131 0.20558 +v 0.10571 0.00498 0.17225 +v 0.10524 0.00486 0.17108 +v 0.10425 0.00486 0.16969 +v 0.10297 0.00519 0.16950 +v 0.10183 0.00583 0.16987 +v 0.10292 0.00530 0.16861 +v 0.10127 0.00641 0.16643 +v 0.10100 0.00700 0.16486 +v 0.10251 0.01852 0.15697 +v 0.10232 0.01600 0.15688 +v 0.10258 0.02016 0.15691 +v 0.10126 0.00785 0.15996 +v 0.10132 0.00759 0.16174 +v 0.10284 0.03286 0.15116 +v 0.10262 0.02797 0.15092 +v 0.10256 0.02141 0.15433 +v 0.10231 0.07433 0.16008 +v 0.10245 0.06765 0.15191 +v 0.10246 0.05806 0.14647 +v 0.10246 0.05553 0.14809 +v 0.10258 0.06108 0.14727 +v 0.10237 0.06411 0.14989 +v 0.10246 0.06444 0.15097 +v 0.10254 0.04294 0.14862 +v 0.10277 0.04155 0.14816 +v 0.10298 0.03559 0.15122 +v 0.10239 0.04760 0.14907 +v 0.10232 0.04591 0.14813 +v 0.10250 0.04867 0.15008 +v 0.10233 0.05133 0.14915 +v 0.10229 0.07759 0.16846 +v 0.10259 0.08002 0.17180 +v 0.10232 0.08216 0.17564 +v 0.10251 0.08018 0.17373 +v 0.10253 0.08312 0.18089 +v 0.10239 0.08303 0.18485 +v 0.10291 0.08642 0.21644 +v 0.10244 0.09029 0.18689 +v 0.10251 0.08988 0.18937 +v 0.10208 0.09028 0.19745 +v 0.10212 0.09029 0.19880 +v 0.10214 0.09183 0.19485 +v 0.10178 0.09221 0.20545 +v 0.10191 0.09259 0.20163 +v 0.10262 0.09045 0.20790 +v 0.10238 0.09103 0.20739 +v 0.10248 0.09044 0.20920 +v 0.10248 0.08653 0.21455 +v 0.10224 0.09003 0.21222 +v 0.10489 0.00487 0.16854 +v 0.10259 0.00546 0.16767 +v 0.10194 0.00578 0.16679 +v 0.10114 0.00649 0.16482 +v 0.10222 0.01191 0.15758 +v 0.10225 0.01320 0.15714 +v 0.10234 0.01469 0.15657 +v 0.10199 0.01053 0.15759 +v 0.10125 0.00776 0.15851 +v 0.10158 0.00625 0.16232 +v 0.10304 0.03493 0.15233 +v 0.10261 0.03038 0.14987 +v 0.10258 0.02722 0.14997 +v 0.10255 0.02374 0.15150 +v 0.10240 0.02048 0.15236 +v 0.10270 0.01893 0.15568 +v 0.10241 0.02140 0.15281 +v 0.10259 0.07131 0.15277 +v 0.10212 0.07708 0.15500 +v 0.10234 0.06832 0.15007 +v 0.10231 0.05636 0.14628 +v 0.10256 0.06299 0.14735 +v 0.10242 0.06402 0.14849 +v 0.10211 0.06539 0.14990 +v 0.10280 0.03890 0.14957 +v 0.10217 0.07805 0.16562 +v 0.10204 0.07811 0.15691 +v 0.10236 0.08148 0.17459 +v 0.10246 0.08218 0.17842 +v 0.10247 0.08227 0.17984 +v 0.10240 0.08485 0.18135 +v 0.10291 0.08545 0.21771 +v 0.10231 0.08569 0.18270 +v 0.10229 0.08783 0.18200 +v 0.10200 0.09237 0.19716 +v 0.10198 0.09209 0.19999 +v 0.10231 0.09322 0.19247 +v 0.10204 0.09146 0.19600 +v 0.10215 0.09526 0.19370 +v 0.10162 0.09356 0.20503 +v 0.10182 0.09660 0.20080 +v 0.10177 0.09252 0.20684 +v 0.10216 0.09172 0.20792 +v 0.10220 0.09096 0.21088 +v 0.10229 0.08756 0.21473 +v 0.10223 0.08803 0.21380 +v 0.10398 0.00497 0.16868 +v 0.10339 0.00516 0.16755 +v 0.10138 0.00620 0.16546 +v 0.10247 0.01657 0.15532 +v 0.10158 0.00907 0.15686 +v 0.10134 0.00711 0.16033 +v 0.10137 0.00825 0.15737 +v 0.10126 0.00724 0.15947 +v 0.10174 0.00640 0.16082 +v 0.10140 0.00624 0.16313 +v 0.10149 0.00614 0.16415 +v 0.10278 0.03320 0.14876 +v 0.10263 0.02764 0.14956 +v 0.10265 0.02536 0.15052 +v 0.10246 0.02236 0.15177 +v 0.10256 0.01971 0.15318 +v 0.10246 0.07230 0.15292 +v 0.10262 0.07200 0.15148 +v 0.10224 0.07462 0.15393 +v 0.10253 0.07178 0.15038 +v 0.10224 0.05616 0.14423 +v 0.10248 0.06000 0.14362 +v 0.10221 0.05369 0.14565 +v 0.10257 0.06486 0.14562 +v 0.10220 0.06475 0.14994 +v 0.10225 0.06445 0.14903 +v 0.10269 0.04200 0.14737 +v 0.10273 0.03798 0.14839 +v 0.10220 0.04918 0.14697 +v 0.10260 0.04310 0.14683 +v 0.10208 0.07887 0.16369 +v 0.10194 0.08106 0.15895 +v 0.10223 0.07912 0.16736 +v 0.10257 0.08069 0.17074 +v 0.10258 0.08079 0.17203 +v 0.10213 0.08389 0.17437 +v 0.10270 0.08420 0.17898 +v 0.10270 0.08382 0.17849 +v 0.10294 0.08760 0.21800 +v 0.10252 0.08842 0.21639 +v 0.10231 0.09242 0.18355 +v 0.10249 0.09166 0.18896 +v 0.10234 0.09132 0.20899 +v 0.10213 0.09202 0.21030 +v 0.10222 0.09222 0.21302 +v 0.10214 0.08930 0.21382 +v 0.10423 0.00499 0.16747 +v 0.10584 0.00503 0.16681 +v 0.10268 0.00539 0.16677 +v 0.10180 0.00579 0.16482 +v 0.10220 0.01192 0.15588 +v 0.10240 0.01328 0.15486 +v 0.10182 0.01027 0.15495 +v 0.10131 0.00730 0.15711 +v 0.10132 0.00712 0.15835 +v 0.10198 0.00592 0.16155 +v 0.10155 0.00607 0.16352 +v 0.10167 0.00591 0.16273 +v 0.10283 0.03460 0.14944 +v 0.10264 0.03073 0.14855 +v 0.10265 0.02083 0.15033 +v 0.10280 0.02483 0.14919 +v 0.10255 0.02001 0.15146 +v 0.10254 0.01807 0.15224 +v 0.10232 0.07321 0.15358 +v 0.10213 0.07560 0.15238 +v 0.10234 0.06860 0.14806 +v 0.10234 0.07068 0.14741 +v 0.10225 0.06575 0.14846 +v 0.10269 0.04066 0.14700 +v 0.10236 0.04710 0.14517 +v 0.10265 0.04441 0.14419 +v 0.10182 0.08023 0.16489 +v 0.10188 0.08133 0.16158 +v 0.10213 0.08333 0.17300 +v 0.10228 0.08522 0.17609 +v 0.10249 0.08331 0.17732 +v 0.10245 0.08186 0.17021 +v 0.10238 0.08644 0.18018 +v 0.10297 0.08697 0.21835 +v 0.10213 0.08982 0.17962 +v 0.10227 0.09451 0.18982 +v 0.10219 0.09626 0.19176 +v 0.10198 0.09685 0.19535 +v 0.10149 0.09441 0.20580 +v 0.10155 0.09335 0.20713 +v 0.10186 0.09262 0.20823 +v 0.10210 0.09279 0.21184 +v 0.10222 0.08864 0.21484 +v 0.10222 0.09033 0.21453 +v 0.10352 0.00516 0.16642 +v 0.10281 0.00529 0.16612 +v 0.10236 0.01537 0.15359 +v 0.10130 0.00777 0.15636 +v 0.10141 0.00877 0.15463 +v 0.10151 0.00671 0.15953 +v 0.10139 0.00686 0.15887 +v 0.10264 0.00567 0.16093 +v 0.10224 0.00569 0.16220 +v 0.10209 0.00569 0.16410 +v 0.10275 0.03537 0.14769 +v 0.10272 0.03080 0.14718 +v 0.10279 0.02788 0.14802 +v 0.10277 0.02211 0.14964 +v 0.10275 0.02376 0.14963 +v 0.10214 0.07344 0.15154 +v 0.10238 0.07290 0.15049 +v 0.10210 0.07408 0.15128 +v 0.10213 0.07913 0.15218 +v 0.10201 0.08156 0.15347 +v 0.10228 0.07297 0.14822 +v 0.10216 0.05331 0.14411 +v 0.10234 0.05700 0.14069 +v 0.10277 0.06470 0.14140 +v 0.10261 0.04188 0.14564 +v 0.10250 0.03895 0.14548 +v 0.10228 0.04833 0.14360 +v 0.10183 0.08239 0.16074 +v 0.10237 0.08157 0.16856 +v 0.10196 0.08101 0.16595 +v 0.10218 0.08347 0.17048 +v 0.10205 0.08461 0.17085 +v 0.10205 0.08676 0.17311 +v 0.10230 0.08738 0.17839 +v 0.10260 0.08902 0.21750 +v 0.10284 0.08823 0.21897 +v 0.10213 0.09270 0.18119 +v 0.10230 0.09294 0.18576 +v 0.10221 0.09445 0.18713 +v 0.10206 0.09729 0.19294 +v 0.10151 0.09510 0.20770 +v 0.10218 0.09208 0.20866 +v 0.10190 0.09277 0.20943 +v 0.10236 0.08907 0.21595 +v 0.10240 0.09354 0.21586 +v 0.10226 0.09385 0.21381 +v 0.10256 0.00545 0.16510 +v 0.10210 0.01184 0.15375 +v 0.10188 0.01219 0.15114 +v 0.10121 0.00772 0.15508 +v 0.10121 0.00824 0.15387 +v 0.10231 0.00597 0.15951 +v 0.10130 0.00701 0.15640 +v 0.10156 0.00648 0.15706 +v 0.10171 0.00645 0.15838 +v 0.10196 0.00574 0.16307 +v 0.10288 0.03337 0.14634 +v 0.10272 0.02892 0.14743 +v 0.10277 0.02608 0.14805 +v 0.10261 0.02038 0.14917 +v 0.10270 0.02276 0.14817 +v 0.10261 0.01990 0.15001 +v 0.10227 0.07363 0.14948 +v 0.10220 0.07634 0.14966 +v 0.10214 0.07817 0.14988 +v 0.10196 0.08226 0.15577 +v 0.10248 0.06953 0.14602 +v 0.10247 0.06805 0.14656 +v 0.10225 0.07170 0.14592 +v 0.10231 0.05471 0.14228 +v 0.10234 0.05717 0.13810 +v 0.10294 0.06885 0.14354 +v 0.10217 0.05094 0.14429 +v 0.10245 0.04624 0.14348 +v 0.10222 0.03952 0.14009 +v 0.10183 0.08102 0.16346 +v 0.10156 0.08282 0.16320 +v 0.10181 0.08391 0.15971 +v 0.10179 0.08157 0.16445 +v 0.10234 0.08663 0.17696 +v 0.10241 0.08253 0.16924 +v 0.10229 0.08818 0.17755 +v 0.10205 0.09400 0.18484 +v 0.10214 0.09301 0.18015 +v 0.10205 0.09968 0.19457 +v 0.10219 0.09573 0.18840 +v 0.10208 0.09770 0.19286 +v 0.10169 0.09919 0.20782 +v 0.10144 0.09397 0.20746 +v 0.10158 0.09352 0.20841 +v 0.10164 0.09379 0.20963 +v 0.10241 0.09025 0.21677 +v 0.10197 0.09440 0.21221 +v 0.10407 0.00528 0.16420 +v 0.10355 0.00525 0.16523 +v 0.10155 0.01012 0.15186 +v 0.10122 0.00723 0.15567 +v 0.10121 0.00732 0.15418 +v 0.10340 0.00548 0.15973 +v 0.10293 0.00542 0.16283 +v 0.10307 0.00537 0.16423 +v 0.10259 0.03672 0.14571 +v 0.10260 0.03055 0.14442 +v 0.10272 0.02826 0.14717 +v 0.10265 0.02498 0.14697 +v 0.10239 0.01860 0.14953 +v 0.10220 0.07485 0.14916 +v 0.10204 0.08071 0.14856 +v 0.10194 0.08156 0.15046 +v 0.10202 0.08367 0.15445 +v 0.10182 0.08405 0.15694 +v 0.10241 0.07050 0.14522 +v 0.10221 0.07356 0.14651 +v 0.10218 0.05235 0.14183 +v 0.10213 0.05396 0.13985 +v 0.10270 0.06825 0.14499 +v 0.10295 0.06823 0.14199 +v 0.10242 0.05948 0.13599 +v 0.10234 0.04627 0.14185 +v 0.10248 0.04490 0.14157 +v 0.10244 0.04286 0.14080 +v 0.10167 0.08353 0.16217 +v 0.10207 0.08298 0.16619 +v 0.10185 0.08260 0.16491 +v 0.10203 0.08467 0.16870 +v 0.10188 0.08676 0.17060 +v 0.10229 0.08865 0.17607 +v 0.10255 0.08951 0.21860 +v 0.10233 0.08955 0.17725 +v 0.10185 0.09471 0.18208 +v 0.10242 0.09031 0.17669 +v 0.10216 0.10085 0.19728 +v 0.10206 0.09778 0.18937 +v 0.10212 0.09564 0.18657 +v 0.10188 0.10388 0.20256 +v 0.10169 0.09567 0.21054 +v 0.10174 0.09415 0.21087 +v 0.10238 0.09643 0.21594 +v 0.10245 0.09041 0.21844 +v 0.10207 0.09612 0.21348 +v 0.10406 0.00527 0.16251 +v 0.10119 0.00680 0.15505 +v 0.10120 0.00837 0.15213 +v 0.10115 0.00768 0.15326 +v 0.10245 0.00586 0.15839 +v 0.10142 0.00647 0.15586 +v 0.10221 0.00593 0.15746 +v 0.10308 0.00560 0.15879 +v 0.10422 0.00527 0.16041 +v 0.10264 0.03341 0.14414 +v 0.10224 0.03738 0.14118 +v 0.10251 0.02687 0.14501 +v 0.10230 0.02221 0.14536 +v 0.10217 0.07607 0.14785 +v 0.10206 0.07889 0.14790 +v 0.10199 0.08384 0.15069 +v 0.10195 0.08384 0.15542 +v 0.10205 0.08453 0.15311 +v 0.10263 0.06951 0.14481 +v 0.10211 0.07439 0.14396 +v 0.10228 0.07132 0.14418 +v 0.10212 0.05439 0.13679 +v 0.10288 0.06939 0.14293 +v 0.10294 0.06758 0.14060 +v 0.10280 0.06644 0.13869 +v 0.10238 0.05818 0.13637 +v 0.10215 0.05078 0.14043 +v 0.10203 0.03909 0.13661 +v 0.10171 0.08346 0.16367 +v 0.10180 0.08608 0.16064 +v 0.10173 0.08782 0.15747 +v 0.10237 0.08233 0.16841 +v 0.10190 0.08559 0.16928 +v 0.10191 0.08921 0.17165 +v 0.10207 0.09037 0.17307 +v 0.10220 0.08399 0.16785 +v 0.10248 0.08952 0.21961 +v 0.10196 0.09465 0.18452 +v 0.10181 0.09554 0.18084 +v 0.10217 0.09444 0.17876 +v 0.10213 0.10067 0.19549 +v 0.10213 0.10264 0.19849 +v 0.10216 0.09837 0.18692 +v 0.10211 0.09742 0.18581 +v 0.10190 0.10019 0.19032 +v 0.10173 0.10645 0.20788 +v 0.10185 0.09724 0.21195 +v 0.10156 0.09458 0.20983 +v 0.10245 0.09578 0.21804 +v 0.10238 0.09285 0.21888 +v 0.10594 0.00513 0.16113 +v 0.10131 0.00920 0.15053 +v 0.10133 0.00681 0.15324 +v 0.10135 0.00654 0.15458 +v 0.10182 0.00604 0.15680 +v 0.10428 0.00538 0.15850 +v 0.10230 0.03420 0.14074 +v 0.10229 0.03064 0.13969 +v 0.10225 0.02725 0.14030 +v 0.10177 0.01849 0.14619 +v 0.10221 0.07478 0.14632 +v 0.10196 0.08261 0.14952 +v 0.10200 0.07984 0.14608 +v 0.10211 0.08456 0.15400 +v 0.10196 0.08528 0.15482 +v 0.10254 0.07019 0.14402 +v 0.10216 0.07259 0.14387 +v 0.10208 0.05178 0.13968 +v 0.10235 0.05692 0.13681 +v 0.10210 0.05286 0.13880 +v 0.10272 0.06992 0.14173 +v 0.10292 0.06900 0.14099 +v 0.10263 0.06396 0.13530 +v 0.10219 0.05789 0.13471 +v 0.10239 0.05747 0.13618 +v 0.10189 0.03693 0.13660 +v 0.10235 0.04889 0.13949 +v 0.10250 0.04539 0.13964 +v 0.10218 0.04083 0.13506 +v 0.10176 0.08495 0.16256 +v 0.10175 0.08682 0.15594 +v 0.10219 0.08350 0.16693 +v 0.10197 0.08448 0.16444 +v 0.10180 0.08628 0.16795 +v 0.10168 0.08719 0.16889 +v 0.10210 0.08517 0.16749 +v 0.10178 0.09579 0.18261 +v 0.10224 0.09304 0.17678 +v 0.10203 0.10157 0.19392 +v 0.10232 0.10220 0.19613 +v 0.10195 0.10065 0.18761 +v 0.10199 0.09747 0.18467 +v 0.10191 0.10269 0.19242 +v 0.10221 0.10475 0.19753 +v 0.10189 0.09980 0.21252 +v 0.10181 0.10779 0.20233 +v 0.10250 0.09818 0.21737 +v 0.10207 0.09789 0.21460 +v 0.10153 0.01153 0.14906 +v 0.10128 0.00641 0.15507 +v 0.10114 0.00808 0.15114 +v 0.10118 0.00724 0.15232 +v 0.10142 0.00659 0.15396 +v 0.10314 0.00558 0.15776 +v 0.10198 0.00594 0.15591 +v 0.10242 0.00571 0.15656 +v 0.10544 0.00532 0.15807 +v 0.10210 0.03496 0.13738 +v 0.10208 0.07588 0.14455 +v 0.10195 0.07799 0.14595 +v 0.10197 0.08489 0.14733 +v 0.10206 0.08273 0.14565 +v 0.10206 0.08511 0.15195 +v 0.10187 0.08557 0.14918 +v 0.10192 0.08617 0.15382 +v 0.10217 0.07216 0.14233 +v 0.10220 0.07137 0.14303 +v 0.10214 0.05608 0.13529 +v 0.10215 0.05277 0.13712 +v 0.10283 0.06902 0.13988 +v 0.10248 0.06114 0.13425 +v 0.10273 0.06877 0.13734 +v 0.10229 0.05947 0.13394 +v 0.10230 0.05074 0.13878 +v 0.10248 0.04680 0.13921 +v 0.10182 0.03739 0.13474 +v 0.10202 0.03870 0.13439 +v 0.10185 0.08636 0.16215 +v 0.10172 0.09054 0.15878 +v 0.10192 0.08981 0.15444 +v 0.10220 0.08464 0.16666 +v 0.10218 0.08515 0.16549 +v 0.10176 0.08627 0.16887 +v 0.10196 0.09163 0.17127 +v 0.10145 0.08942 0.16792 +v 0.10216 0.09232 0.17450 +v 0.10190 0.09737 0.18217 +v 0.10208 0.09616 0.17914 +v 0.10214 0.09514 0.17674 +v 0.10190 0.10040 0.18569 +v 0.10197 0.09891 0.18498 +v 0.10201 0.10358 0.18916 +v 0.10192 0.10288 0.19091 +v 0.10207 0.10684 0.19978 +v 0.10198 0.10184 0.21391 +v 0.10145 0.11161 0.20159 +v 0.10243 0.09796 0.22051 +v 0.10244 0.09893 0.21657 +v 0.10128 0.00971 0.14832 +v 0.10164 0.00617 0.15511 +v 0.10120 0.00800 0.14958 +v 0.10140 0.00652 0.15245 +v 0.10171 0.00624 0.15328 +v 0.10177 0.00616 0.15425 +v 0.10398 0.00544 0.15712 +v 0.10221 0.03010 0.13700 +v 0.10196 0.08223 0.14429 +v 0.10200 0.07956 0.14342 +v 0.10189 0.08572 0.15093 +v 0.10192 0.08610 0.15269 +v 0.10216 0.07695 0.14268 +v 0.10211 0.07507 0.14074 +v 0.10242 0.07094 0.14143 +v 0.10222 0.05168 0.13835 +v 0.10205 0.05446 0.13514 +v 0.10277 0.06997 0.14077 +v 0.10246 0.06108 0.13235 +v 0.10259 0.06459 0.13231 +v 0.10188 0.05741 0.13303 +v 0.10198 0.03568 0.13494 +v 0.10247 0.04982 0.13826 +v 0.10239 0.04788 0.13754 +v 0.10235 0.04557 0.13612 +v 0.10225 0.04380 0.13510 +v 0.10165 0.03649 0.13491 +v 0.10218 0.03895 0.13315 +v 0.10223 0.08658 0.16434 +v 0.10195 0.08832 0.16294 +v 0.10206 0.08675 0.16344 +v 0.10181 0.09166 0.16081 +v 0.10177 0.09074 0.15601 +v 0.10186 0.08736 0.15374 +v 0.10224 0.08556 0.16646 +v 0.10211 0.09319 0.17209 +v 0.10152 0.08793 0.16781 +v 0.10205 0.09803 0.17994 +v 0.10218 0.09670 0.17745 +v 0.10186 0.09481 0.17365 +v 0.10189 0.10595 0.19423 +v 0.10213 0.10282 0.19488 +v 0.10214 0.10669 0.19727 +v 0.10175 0.10334 0.18552 +v 0.10199 0.09953 0.18358 +v 0.10171 0.10606 0.19242 +v 0.10216 0.10750 0.19860 +v 0.10212 0.09963 0.21483 +v 0.10194 0.10447 0.21492 +v 0.10147 0.11172 0.20137 +v 0.10145 0.11247 0.20296 +v 0.10202 0.10801 0.19910 +v 0.10226 0.10053 0.21867 +v 0.10241 0.09940 0.21939 +v 0.10122 0.00695 0.15128 +v 0.10116 0.00748 0.15055 +v 0.10128 0.00665 0.15190 +v 0.10327 0.00551 0.15669 +v 0.10229 0.00586 0.15421 +v 0.10376 0.00548 0.15566 +v 0.10224 0.02935 0.13569 +v 0.10213 0.08846 0.14622 +v 0.10195 0.08474 0.14544 +v 0.10174 0.08740 0.15090 +v 0.10223 0.07270 0.13991 +v 0.10218 0.05198 0.13648 +v 0.10226 0.05171 0.13759 +v 0.10263 0.07038 0.14030 +v 0.10261 0.07030 0.13895 +v 0.10259 0.06900 0.13464 +v 0.10215 0.05915 0.13181 +v 0.10254 0.05061 0.13771 +v 0.10218 0.03422 0.13542 +v 0.10165 0.03628 0.13516 +v 0.10215 0.04087 0.13269 +v 0.10204 0.03804 0.13368 +v 0.10173 0.03667 0.13433 +v 0.10184 0.08962 0.16137 +v 0.10188 0.09604 0.15956 +v 0.10171 0.09388 0.15669 +v 0.10176 0.09295 0.15400 +v 0.10228 0.08650 0.16528 +v 0.10191 0.08652 0.16707 +v 0.10201 0.09341 0.17094 +v 0.10118 0.09177 0.16629 +v 0.10160 0.08806 0.16696 +v 0.10204 0.09760 0.17501 +v 0.10210 0.10543 0.19536 +v 0.10185 0.10171 0.18400 +v 0.10166 0.10616 0.18592 +v 0.10173 0.10622 0.19026 +v 0.10223 0.10005 0.21588 +v 0.10215 0.10111 0.21670 +v 0.10198 0.11087 0.21508 +v 0.10183 0.10889 0.20023 +v 0.10157 0.11158 0.20544 +v 0.10246 0.10091 0.22073 +v 0.10119 0.00846 0.14745 +v 0.10130 0.00712 0.14969 +v 0.10159 0.00618 0.15207 +v 0.10218 0.00584 0.15278 +v 0.10312 0.00558 0.15444 +v 0.10512 0.00543 0.15605 +v 0.10218 0.03219 0.13581 +v 0.10228 0.03136 0.13534 +v 0.10213 0.02640 0.13537 +v 0.10185 0.08780 0.14844 +v 0.10160 0.08458 0.14110 +v 0.10192 0.08116 0.14210 +v 0.10180 0.08680 0.15190 +v 0.10192 0.07771 0.13868 +v 0.10207 0.07876 0.14124 +v 0.10230 0.07153 0.14083 +v 0.10216 0.07422 0.13875 +v 0.10183 0.05582 0.13262 +v 0.10196 0.05217 0.13314 +v 0.10246 0.07117 0.13777 +v 0.10244 0.06097 0.13096 +v 0.10240 0.06745 0.12821 +v 0.10188 0.05775 0.13212 +v 0.10236 0.03427 0.13403 +v 0.10169 0.03617 0.13464 +v 0.10244 0.04952 0.13741 +v 0.10209 0.04558 0.13393 +v 0.10211 0.04311 0.13228 +v 0.10193 0.03708 0.13386 +v 0.10159 0.03619 0.13475 +v 0.10223 0.03728 0.13298 +v 0.10223 0.03896 0.13148 +v 0.10215 0.08756 0.16395 +v 0.10183 0.09023 0.16241 +v 0.10171 0.09247 0.16237 +v 0.10165 0.09490 0.15548 +v 0.10177 0.09379 0.15096 +v 0.10171 0.09154 0.14972 +v 0.10218 0.08608 0.16627 +v 0.10235 0.08718 0.16493 +v 0.10178 0.08785 0.16639 +v 0.10202 0.09420 0.17143 +v 0.10118 0.09063 0.16647 +v 0.10154 0.08882 0.16627 +v 0.10211 0.10085 0.18171 +v 0.10204 0.09947 0.17882 +v 0.10188 0.09768 0.17088 +v 0.10208 0.09846 0.17677 +v 0.10161 0.10776 0.19359 +v 0.10182 0.10772 0.19596 +v 0.10157 0.10460 0.18381 +v 0.10161 0.10690 0.18647 +v 0.10161 0.10748 0.18846 +v 0.10167 0.10943 0.19785 +v 0.10202 0.10257 0.21746 +v 0.10158 0.11344 0.20636 +v 0.10200 0.10459 0.21787 +v 0.10158 0.11086 0.19979 +v 0.10157 0.11315 0.20202 +v 0.10145 0.11343 0.20342 +v 0.10124 0.00931 0.14570 +v 0.10128 0.00735 0.14849 +v 0.10139 0.00641 0.15144 +v 0.10131 0.00683 0.15044 +v 0.10301 0.00553 0.15356 +v 0.10412 0.00542 0.15401 +v 0.10240 0.03114 0.13440 +v 0.10226 0.02925 0.13457 +v 0.10184 0.08941 0.14706 +v 0.10213 0.08842 0.14574 +v 0.10170 0.08339 0.14152 +v 0.10169 0.09069 0.14841 +v 0.10241 0.07131 0.13971 +v 0.10178 0.05663 0.13100 +v 0.10239 0.05054 0.13701 +v 0.10199 0.04995 0.13306 +v 0.10254 0.06163 0.12956 +v 0.10236 0.07540 0.13406 +v 0.10231 0.07373 0.13087 +v 0.10222 0.03600 0.13343 +v 0.10190 0.03642 0.13405 +v 0.10220 0.04906 0.13557 +v 0.10192 0.04737 0.13290 +v 0.10209 0.04084 0.13086 +v 0.10229 0.03790 0.13254 +v 0.10227 0.08758 0.16462 +v 0.10181 0.08947 0.16351 +v 0.10200 0.08850 0.16411 +v 0.10184 0.09843 0.15848 +v 0.10166 0.09808 0.16146 +v 0.10175 0.09149 0.16229 +v 0.10154 0.09836 0.15509 +v 0.10178 0.09541 0.15123 +v 0.10159 0.09580 0.15430 +v 0.10233 0.08753 0.16499 +v 0.10216 0.08699 0.16590 +v 0.10158 0.09423 0.16721 +v 0.10201 0.09448 0.17016 +v 0.10135 0.08927 0.16679 +v 0.10114 0.09087 0.16526 +v 0.10196 0.09660 0.16909 +v 0.10190 0.10004 0.17252 +v 0.10204 0.09914 0.17590 +v 0.10154 0.10429 0.18205 +v 0.10159 0.10618 0.18441 +v 0.10165 0.10758 0.18481 +v 0.10149 0.10878 0.19055 +v 0.10167 0.11371 0.20916 +v 0.10217 0.10586 0.21946 +v 0.10152 0.11218 0.20001 +v 0.10160 0.11343 0.20065 +v 0.10154 0.11322 0.20446 +v 0.10166 0.11348 0.20501 +v 0.10217 0.10272 0.22027 +v 0.10209 0.10215 0.21918 +v 0.10520 0.00534 0.15346 +v 0.10121 0.00785 0.14572 +v 0.10126 0.00739 0.14655 +v 0.10153 0.00634 0.15077 +v 0.10156 0.00665 0.14875 +v 0.10166 0.00647 0.14975 +v 0.10179 0.00600 0.15092 +v 0.10253 0.03208 0.13379 +v 0.10217 0.02927 0.13314 +v 0.10194 0.08940 0.14562 +v 0.10151 0.08424 0.14015 +v 0.10189 0.08737 0.14322 +v 0.10176 0.08183 0.13960 +v 0.10199 0.07658 0.13671 +v 0.10191 0.05265 0.13159 +v 0.10193 0.05388 0.13007 +v 0.10216 0.05086 0.13546 +v 0.10201 0.05046 0.13134 +v 0.10211 0.05790 0.12885 +v 0.10208 0.05745 0.12688 +v 0.10223 0.06400 0.12465 +v 0.10186 0.07216 0.12429 +v 0.10253 0.03447 0.13280 +v 0.10182 0.04569 0.13178 +v 0.10200 0.04475 0.13209 +v 0.10212 0.04341 0.13010 +v 0.10234 0.03711 0.13178 +v 0.10198 0.03863 0.12872 +v 0.10165 0.09044 0.16341 +v 0.10188 0.09644 0.15961 +v 0.10177 0.09909 0.15761 +v 0.10163 0.09599 0.16298 +v 0.10149 0.09159 0.16345 +v 0.10171 0.09617 0.14984 +v 0.10142 0.09623 0.14672 +v 0.10124 0.09280 0.16537 +v 0.10126 0.08986 0.16562 +v 0.10122 0.09203 0.16454 +v 0.10215 0.08794 0.16510 +v 0.10191 0.10266 0.18007 +v 0.10192 0.09967 0.17729 +v 0.10175 0.09907 0.16839 +v 0.10179 0.09991 0.17109 +v 0.10196 0.09946 0.17523 +v 0.10149 0.10898 0.19495 +v 0.10150 0.10969 0.19622 +v 0.10144 0.10493 0.18206 +v 0.10142 0.10536 0.18300 +v 0.10144 0.10851 0.18580 +v 0.10150 0.10959 0.18849 +v 0.10130 0.11105 0.19507 +v 0.10166 0.11463 0.21067 +v 0.10143 0.11468 0.20718 +v 0.10209 0.10418 0.21957 +v 0.10128 0.11313 0.19821 +v 0.10177 0.11405 0.20183 +v 0.10154 0.11368 0.20275 +v 0.10140 0.11394 0.20431 +v 0.10130 0.11451 0.20599 +v 0.10217 0.10322 0.22112 +v 0.10509 0.00560 0.14941 +v 0.10437 0.00538 0.15256 +v 0.10113 0.00826 0.14474 +v 0.10149 0.00674 0.14740 +v 0.10246 0.00575 0.15106 +v 0.10238 0.03090 0.13321 +v 0.10203 0.02560 0.13393 +v 0.10179 0.09063 0.14504 +v 0.10185 0.08855 0.14326 +v 0.10151 0.08496 0.13922 +v 0.10184 0.08788 0.14210 +v 0.10177 0.07848 0.13592 +v 0.10158 0.08346 0.13722 +v 0.10199 0.05200 0.13099 +v 0.10194 0.05465 0.12918 +v 0.10185 0.04777 0.13191 +v 0.10223 0.05985 0.12645 +v 0.10210 0.07740 0.12988 +v 0.10211 0.06591 0.12422 +v 0.10191 0.07691 0.12622 +v 0.10170 0.06934 0.12237 +v 0.10201 0.05649 0.12844 +v 0.10238 0.03606 0.13229 +v 0.10188 0.04703 0.13156 +v 0.10226 0.03699 0.13084 +v 0.10157 0.08991 0.16420 +v 0.10179 0.08907 0.16458 +v 0.10174 0.09947 0.16037 +v 0.10158 0.10125 0.16017 +v 0.10167 0.09941 0.16232 +v 0.10158 0.09367 0.16335 +v 0.10151 0.10117 0.15644 +v 0.10145 0.09874 0.15412 +v 0.10150 0.09790 0.15280 +v 0.10165 0.09732 0.15140 +v 0.10155 0.09331 0.14656 +v 0.10140 0.09357 0.16496 +v 0.10130 0.09042 0.16462 +v 0.10165 0.10296 0.17807 +v 0.10161 0.10117 0.17603 +v 0.10182 0.09781 0.16773 +v 0.10169 0.09922 0.16987 +v 0.10172 0.10169 0.16973 +v 0.10187 0.10067 0.17372 +v 0.10164 0.10448 0.17950 +v 0.10159 0.10733 0.18341 +v 0.10141 0.10577 0.18231 +v 0.10157 0.10805 0.18401 +v 0.10135 0.11231 0.19076 +v 0.10133 0.11294 0.19227 +v 0.10200 0.10378 0.21901 +v 0.10145 0.11568 0.20860 +v 0.10159 0.11526 0.21184 +v 0.10138 0.11457 0.19939 +v 0.10127 0.11169 0.19666 +v 0.10179 0.11480 0.20109 +v 0.10141 0.11451 0.20342 +v 0.10130 0.11439 0.20459 +v 0.10158 0.00681 0.14589 +v 0.10130 0.00728 0.14483 +v 0.10110 0.00855 0.14387 +v 0.10142 0.00691 0.14675 +v 0.10196 0.00603 0.15038 +v 0.10200 0.00625 0.14871 +v 0.10257 0.03277 0.13279 +v 0.10217 0.03072 0.13213 +v 0.10201 0.02901 0.13148 +v 0.10177 0.08983 0.14380 +v 0.10168 0.08788 0.14081 +v 0.10190 0.07812 0.13417 +v 0.10222 0.07662 0.13367 +v 0.10195 0.05255 0.12852 +v 0.10210 0.05105 0.12940 +v 0.10201 0.04853 0.12945 +v 0.10201 0.05893 0.12510 +v 0.10199 0.07842 0.13131 +v 0.10194 0.06589 0.12170 +v 0.10150 0.07699 0.12250 +v 0.10163 0.07146 0.12145 +v 0.10234 0.03541 0.13148 +v 0.10200 0.04534 0.13076 +v 0.10196 0.04681 0.13067 +v 0.10177 0.03939 0.12494 +v 0.10204 0.03524 0.12972 +v 0.10134 0.10244 0.15814 +v 0.10167 0.09761 0.16461 +v 0.10157 0.09499 0.16466 +v 0.10166 0.09734 0.15056 +v 0.10132 0.09851 0.14550 +v 0.10149 0.09561 0.14522 +v 0.10173 0.09644 0.16665 +v 0.10147 0.10254 0.17633 +v 0.10176 0.09915 0.16604 +v 0.10173 0.10069 0.16930 +v 0.10184 0.10262 0.17235 +v 0.10157 0.10576 0.17917 +v 0.10103 0.11118 0.18278 +v 0.10123 0.11311 0.18816 +v 0.10122 0.11340 0.19478 +v 0.10143 0.11637 0.21075 +v 0.10155 0.11547 0.21317 +v 0.10116 0.11530 0.20647 +v 0.10105 0.11641 0.20699 +v 0.10116 0.11328 0.19660 +v 0.10100 0.11548 0.19762 +v 0.10179 0.11455 0.20199 +v 0.10110 0.11499 0.20585 +v 0.10383 0.00567 0.14959 +v 0.10113 0.00768 0.14400 +v 0.10174 0.00646 0.14736 +v 0.10269 0.00589 0.14965 +v 0.10210 0.02965 0.13229 +v 0.10196 0.02637 0.13160 +v 0.10176 0.09213 0.14347 +v 0.10180 0.09364 0.14424 +v 0.10162 0.09007 0.14194 +v 0.10146 0.08557 0.13635 +v 0.10153 0.08829 0.13952 +v 0.10174 0.07960 0.13419 +v 0.10189 0.05366 0.12690 +v 0.10204 0.05008 0.12971 +v 0.10203 0.05615 0.12732 +v 0.10177 0.05519 0.12477 +v 0.10188 0.08083 0.12690 +v 0.10197 0.06260 0.12278 +v 0.10185 0.06743 0.12266 +v 0.10194 0.06361 0.12199 +v 0.10138 0.08061 0.12180 +v 0.10159 0.07389 0.12220 +v 0.10145 0.06950 0.12022 +v 0.10255 0.03422 0.13253 +v 0.10240 0.03431 0.13183 +v 0.10210 0.04483 0.12917 +v 0.10168 0.03612 0.12641 +v 0.10183 0.04179 0.12462 +v 0.10167 0.10081 0.16165 +v 0.10127 0.10310 0.15879 +v 0.10174 0.10040 0.16393 +v 0.10145 0.10326 0.15601 +v 0.10114 0.10081 0.15277 +v 0.10111 0.10063 0.15207 +v 0.10133 0.10035 0.14842 +v 0.10126 0.10092 0.14981 +v 0.10131 0.09876 0.14351 +v 0.10153 0.10501 0.17785 +v 0.10131 0.10424 0.17547 +v 0.10147 0.10244 0.17525 +v 0.10182 0.10052 0.16707 +v 0.10173 0.10183 0.16810 +v 0.10169 0.10264 0.17033 +v 0.10178 0.10154 0.17395 +v 0.10158 0.10745 0.18021 +v 0.10161 0.10806 0.18310 +v 0.10144 0.10923 0.18249 +v 0.10103 0.11586 0.18731 +v 0.10121 0.11490 0.19091 +v 0.10117 0.11654 0.19184 +v 0.10090 0.11764 0.20788 +v 0.10144 0.11631 0.21202 +v 0.10173 0.11494 0.21481 +v 0.10126 0.11698 0.21149 +v 0.10152 0.11597 0.20058 +v 0.10120 0.11598 0.19936 +v 0.10189 0.11514 0.20155 +v 0.10144 0.11519 0.20304 +v 0.10108 0.11576 0.20406 +v 0.10440 0.00569 0.14792 +v 0.10178 0.00652 0.14484 +v 0.10146 0.00688 0.14385 +v 0.10257 0.00599 0.14838 +v 0.10244 0.00609 0.14699 +v 0.10215 0.03279 0.13114 +v 0.10202 0.02862 0.12993 +v 0.10151 0.08535 0.13348 +v 0.10149 0.08847 0.13806 +v 0.10147 0.09030 0.14081 +v 0.10180 0.07948 0.13223 +v 0.10163 0.08271 0.13409 +v 0.10175 0.05086 0.12574 +v 0.10193 0.04985 0.12736 +v 0.10130 0.05572 0.12141 +v 0.10184 0.08156 0.12749 +v 0.10187 0.07953 0.12610 +v 0.10151 0.05863 0.12183 +v 0.10154 0.06840 0.12090 +v 0.10159 0.06166 0.12057 +v 0.10165 0.06714 0.12100 +v 0.10106 0.08143 0.12041 +v 0.10132 0.07361 0.12089 +v 0.10097 0.07084 0.11853 +v 0.10188 0.04400 0.12502 +v 0.10170 0.03825 0.12297 +v 0.10165 0.04042 0.12244 +v 0.10168 0.03409 0.12683 +v 0.10156 0.10285 0.16229 +v 0.10127 0.10543 0.15696 +v 0.10143 0.10362 0.16074 +v 0.10136 0.10305 0.15446 +v 0.10127 0.10069 0.14084 +v 0.10108 0.10321 0.14563 +v 0.10146 0.09702 0.14295 +v 0.10160 0.09512 0.14395 +v 0.10189 0.10099 0.16563 +v 0.10156 0.10327 0.16821 +v 0.10137 0.10435 0.16885 +v 0.10168 0.10439 0.17311 +v 0.10154 0.10879 0.17741 +v 0.10158 0.10843 0.18176 +v 0.10108 0.11152 0.18103 +v 0.10084 0.11704 0.18395 +v 0.10104 0.11646 0.18977 +v 0.10092 0.11585 0.19536 +v 0.10067 0.11884 0.21099 +v 0.10113 0.11728 0.21279 +v 0.10134 0.11695 0.21400 +v 0.10197 0.11484 0.21682 +v 0.10086 0.11753 0.20644 +v 0.10170 0.11583 0.20136 +v 0.10078 0.11753 0.19919 +v 0.10177 0.11541 0.20191 +v 0.10087 0.11699 0.20470 +v 0.10389 0.00572 0.14601 +v 0.10313 0.00587 0.14750 +v 0.10500 0.00571 0.14308 +v 0.10231 0.00617 0.14554 +v 0.10185 0.03135 0.13025 +v 0.10187 0.03015 0.13044 +v 0.10212 0.02685 0.12920 +v 0.10134 0.09365 0.14044 +v 0.10150 0.08700 0.13307 +v 0.10158 0.08962 0.13618 +v 0.10125 0.09212 0.13820 +v 0.10167 0.08167 0.13108 +v 0.10178 0.05340 0.12524 +v 0.10197 0.04740 0.12717 +v 0.10137 0.05439 0.12186 +v 0.10129 0.08351 0.12398 +v 0.10158 0.06119 0.12046 +v 0.10159 0.06580 0.12049 +v 0.10121 0.08252 0.12165 +v 0.10115 0.07592 0.12087 +v 0.10128 0.06808 0.11954 +v 0.10113 0.06880 0.11886 +v 0.10158 0.03501 0.12504 +v 0.10177 0.04289 0.12210 +v 0.10176 0.03304 0.12887 +v 0.10167 0.10251 0.16400 +v 0.10125 0.10620 0.15861 +v 0.10144 0.10516 0.16160 +v 0.10131 0.10536 0.15384 +v 0.10130 0.10590 0.15493 +v 0.10113 0.10091 0.15169 +v 0.10115 0.10279 0.15227 +v 0.10109 0.10319 0.14962 +v 0.10118 0.10196 0.14323 +v 0.10124 0.09918 0.14057 +v 0.10083 0.10641 0.14747 +v 0.10147 0.09516 0.14205 +v 0.10143 0.10687 0.17549 +v 0.10138 0.10393 0.17484 +v 0.10197 0.10162 0.16600 +v 0.10159 0.10537 0.17164 +v 0.10142 0.10467 0.17451 +v 0.10157 0.10594 0.17283 +v 0.10160 0.10901 0.18024 +v 0.10144 0.11049 0.18015 +v 0.10082 0.11364 0.17957 +v 0.10076 0.11687 0.18165 +v 0.10088 0.11766 0.18622 +v 0.10088 0.11706 0.18874 +v 0.10120 0.11614 0.19116 +v 0.10059 0.11839 0.19454 +v 0.10010 0.12133 0.20957 +v 0.10146 0.11721 0.21548 +v 0.10075 0.11831 0.21294 +v 0.10048 0.11964 0.20757 +v 0.10086 0.11803 0.20058 +v 0.10058 0.11798 0.19828 +v 0.10124 0.11674 0.20240 +v 0.10096 0.11686 0.20364 +v 0.10438 0.00573 0.14482 +v 0.10353 0.00581 0.13811 +v 0.10224 0.00615 0.14480 +v 0.10216 0.00624 0.14405 +v 0.10328 0.00584 0.14568 +v 0.10216 0.02514 0.13031 +v 0.10217 0.02756 0.12743 +v 0.10171 0.03071 0.12925 +v 0.10144 0.08557 0.12916 +v 0.10149 0.08412 0.12953 +v 0.10189 0.04872 0.12587 +v 0.10160 0.05090 0.12382 +v 0.10127 0.05842 0.12052 +v 0.10117 0.05333 0.12039 +v 0.10125 0.08484 0.12625 +v 0.10159 0.08310 0.12907 +v 0.10083 0.06741 0.11839 +v 0.10129 0.06690 0.11961 +v 0.10086 0.08373 0.11980 +v 0.10070 0.06900 0.11791 +v 0.10173 0.04636 0.12355 +v 0.10173 0.03706 0.12142 +v 0.10164 0.03888 0.12145 +v 0.10158 0.04090 0.12159 +v 0.10175 0.04491 0.12120 +v 0.10163 0.03410 0.12473 +v 0.10168 0.03225 0.12681 +v 0.10141 0.10454 0.16292 +v 0.10119 0.10689 0.15706 +v 0.10189 0.10192 0.16571 +v 0.10130 0.10199 0.14072 +v 0.10116 0.09930 0.13832 +v 0.10133 0.09699 0.14087 +v 0.10149 0.10607 0.17399 +v 0.10121 0.10617 0.16803 +v 0.10141 0.10796 0.17457 +v 0.10155 0.10941 0.18106 +v 0.10148 0.11120 0.17869 +v 0.10099 0.11278 0.17932 +v 0.10065 0.11687 0.17991 +v 0.10045 0.11860 0.18195 +v 0.10091 0.11701 0.18748 +v 0.10073 0.11897 0.18495 +v 0.10092 0.11790 0.19118 +v 0.10082 0.11817 0.19267 +v 0.10021 0.12118 0.21109 +v 0.10156 0.11674 0.21642 +v 0.10041 0.12048 0.20654 +v 0.10085 0.11813 0.20169 +v 0.10068 0.11901 0.20096 +v 0.10070 0.11794 0.20351 +v 0.10050 0.11962 0.20553 +v 0.10409 0.00578 0.14201 +v 0.10321 0.00593 0.14331 +v 0.10290 0.00595 0.14471 +v 0.10178 0.00644 0.14358 +v 0.10172 0.03140 0.12881 +v 0.10212 0.02565 0.12839 +v 0.10203 0.02920 0.12842 +v 0.10134 0.09024 0.13004 +v 0.10143 0.08765 0.12979 +v 0.10140 0.09242 0.13612 +v 0.10126 0.09412 0.13853 +v 0.10136 0.05231 0.12097 +v 0.10102 0.08402 0.12096 +v 0.10056 0.06341 0.11812 +v 0.09989 0.07159 0.11649 +v 0.10166 0.03523 0.12195 +v 0.10158 0.03898 0.12084 +v 0.10174 0.03291 0.12587 +v 0.10129 0.10524 0.16401 +v 0.10126 0.10735 0.16005 +v 0.10106 0.10424 0.15063 +v 0.10119 0.10768 0.15341 +v 0.10108 0.10749 0.15540 +v 0.10094 0.10495 0.14958 +v 0.10114 0.10150 0.13915 +v 0.10102 0.10584 0.14241 +v 0.10114 0.09821 0.13851 +v 0.10098 0.10539 0.14389 +v 0.10125 0.10551 0.16655 +v 0.10114 0.11048 0.16899 +v 0.10146 0.10813 0.17201 +v 0.10152 0.11060 0.17848 +v 0.10125 0.11014 0.17364 +v 0.10083 0.11373 0.17859 +v 0.10065 0.11662 0.17824 +v 0.10040 0.11847 0.18037 +v 0.10060 0.11819 0.18748 +v 0.10071 0.11894 0.18633 +v 0.10057 0.11827 0.18823 +v 0.10067 0.11781 0.18808 +v 0.10047 0.11910 0.19842 +v 0.10062 0.11950 0.19349 +v 0.10014 0.12132 0.20788 +v 0.09999 0.12265 0.21116 +v 0.10113 0.11804 0.21533 +v 0.10170 0.11631 0.21776 +v 0.10113 0.11785 0.21716 +v 0.10025 0.12160 0.21412 +v 0.10043 0.11901 0.20408 +v 0.10326 0.00587 0.14103 +v 0.10231 0.00620 0.14272 +v 0.10165 0.00664 0.14312 +v 0.10209 0.02601 0.12520 +v 0.10226 0.02850 0.12613 +v 0.10182 0.03059 0.12846 +v 0.10122 0.09675 0.13882 +v 0.10142 0.09284 0.13396 +v 0.10128 0.08501 0.12708 +v 0.10141 0.08687 0.12763 +v 0.10142 0.09457 0.13563 +v 0.10132 0.09643 0.13742 +v 0.10149 0.05119 0.12260 +v 0.10134 0.05114 0.12057 +v 0.10107 0.08657 0.12511 +v 0.09998 0.06754 0.11671 +v 0.10102 0.08582 0.12070 +v 0.10161 0.04726 0.12128 +v 0.10160 0.03661 0.12089 +v 0.10199 0.03171 0.12535 +v 0.10178 0.03343 0.12262 +v 0.10123 0.10757 0.16289 +v 0.10095 0.10877 0.15618 +v 0.10128 0.10709 0.15270 +v 0.10087 0.10657 0.14914 +v 0.10105 0.10545 0.14032 +v 0.10137 0.09892 0.13616 +v 0.10112 0.10087 0.13771 +v 0.10074 0.11011 0.14527 +v 0.10110 0.10794 0.16652 +v 0.10099 0.10937 0.16697 +v 0.10139 0.10840 0.17061 +v 0.10117 0.11033 0.17115 +v 0.10132 0.11207 0.17769 +v 0.10049 0.11724 0.17839 +v 0.10043 0.11806 0.17981 +v 0.10040 0.11987 0.18186 +v 0.10061 0.12151 0.18651 +v 0.10073 0.11889 0.19061 +v 0.10072 0.11942 0.19168 +v 0.10045 0.11971 0.19710 +v 0.10049 0.12109 0.19470 +v 0.09993 0.12280 0.21004 +v 0.10015 0.12245 0.21236 +v 0.10080 0.11909 0.21541 +v 0.10025 0.12180 0.20666 +v 0.10040 0.12172 0.20527 +v 0.10077 0.11822 0.20241 +v 0.10064 0.11916 0.20214 +v 0.10043 0.12163 0.19951 +v 0.10038 0.12077 0.20375 +v 0.10295 0.00597 0.14191 +v 0.10286 0.00593 0.13898 +v 0.10215 0.03029 0.12603 +v 0.10129 0.08891 0.12878 +v 0.10126 0.09214 0.12877 +v 0.10150 0.05023 0.12134 +v 0.10121 0.08678 0.12655 +v 0.10106 0.08772 0.12140 +v 0.09934 0.06717 0.11546 +v 0.10081 0.08667 0.11934 +v 0.09914 0.06937 0.11519 +v 0.10138 0.03760 0.12006 +v 0.10156 0.03526 0.12070 +v 0.10200 0.03212 0.12404 +v 0.10170 0.03374 0.12103 +v 0.10119 0.10690 0.16565 +v 0.10091 0.11034 0.15756 +v 0.10107 0.10976 0.16296 +v 0.10120 0.10765 0.15269 +v 0.10088 0.10904 0.15455 +v 0.10090 0.10770 0.14992 +v 0.10100 0.10277 0.13817 +v 0.10099 0.10733 0.14057 +v 0.10095 0.10783 0.14302 +v 0.10147 0.09713 0.13606 +v 0.10086 0.11076 0.15151 +v 0.10091 0.11192 0.16582 +v 0.10104 0.11164 0.17211 +v 0.10106 0.11255 0.17368 +v 0.10093 0.11379 0.17546 +v 0.10069 0.11584 0.17621 +v 0.10048 0.11741 0.17690 +v 0.10025 0.11869 0.17864 +v 0.10023 0.12073 0.17841 +v 0.10063 0.12026 0.18450 +v 0.10057 0.11857 0.18777 +v 0.10062 0.12037 0.18730 +v 0.10061 0.11940 0.18942 +v 0.10040 0.12121 0.19845 +v 0.10047 0.12180 0.19599 +v 0.10054 0.12100 0.19247 +v 0.10005 0.12224 0.20794 +v 0.09970 0.12331 0.21080 +v 0.10000 0.12296 0.21187 +v 0.10051 0.12067 0.21577 +v 0.10014 0.12270 0.21391 +v 0.10052 0.12134 0.20121 +v 0.10267 0.00603 0.14117 +v 0.10242 0.00615 0.14027 +v 0.10195 0.00629 0.13720 +v 0.10211 0.00640 0.14145 +v 0.10220 0.02819 0.12390 +v 0.10101 0.08923 0.12624 +v 0.10128 0.09407 0.13032 +v 0.10111 0.08884 0.12728 +v 0.10144 0.09803 0.13509 +v 0.10145 0.04745 0.12032 +v 0.10091 0.08764 0.12000 +v 0.09919 0.07104 0.11509 +v 0.10209 0.03078 0.12199 +v 0.10121 0.10828 0.16430 +v 0.10066 0.11034 0.15404 +v 0.10100 0.10973 0.16015 +v 0.10103 0.10825 0.15215 +v 0.10081 0.10990 0.15277 +v 0.10094 0.10349 0.13638 +v 0.10103 0.10782 0.13845 +v 0.10123 0.10126 0.13576 +v 0.10078 0.11005 0.14213 +v 0.10070 0.11274 0.14780 +v 0.10094 0.11089 0.16435 +v 0.10070 0.11444 0.16479 +v 0.10101 0.11264 0.16837 +v 0.10023 0.11804 0.17811 +v 0.10028 0.12133 0.18102 +v 0.10048 0.12138 0.18409 +v 0.10058 0.12131 0.18523 +v 0.10048 0.12140 0.18857 +v 0.10060 0.12122 0.19098 +v 0.10057 0.12024 0.18884 +v 0.10033 0.12215 0.19347 +v 0.10043 0.12170 0.19471 +v 0.09994 0.12286 0.20737 +v 0.09979 0.12339 0.20910 +v 0.09977 0.12333 0.21154 +v 0.10007 0.12306 0.21314 +v 0.10077 0.11960 0.21813 +v 0.10039 0.12194 0.21617 +v 0.10053 0.12102 0.21760 +v 0.10018 0.12288 0.21477 +v 0.10016 0.12240 0.20642 +v 0.10030 0.12209 0.20354 +v 0.10030 0.12239 0.20034 +v 0.10029 0.12228 0.19856 +v 0.10235 0.00610 0.13926 +v 0.10284 0.00622 0.13615 +v 0.10189 0.00631 0.13855 +v 0.10150 0.00722 0.14175 +v 0.10188 0.02426 0.12186 +v 0.10220 0.03000 0.12324 +v 0.10112 0.09157 0.12553 +v 0.10124 0.09477 0.12761 +v 0.10105 0.08870 0.12261 +v 0.09873 0.06768 0.11439 +v 0.10039 0.08803 0.11807 +v 0.10080 0.08932 0.12035 +v 0.09871 0.06927 0.11448 +v 0.09940 0.07190 0.11545 +v 0.10074 0.11219 0.15491 +v 0.10077 0.11361 0.15699 +v 0.10064 0.11417 0.16211 +v 0.10088 0.10964 0.15130 +v 0.10102 0.10568 0.13605 +v 0.10080 0.10946 0.14001 +v 0.10135 0.09995 0.13474 +v 0.10043 0.11510 0.14289 +v 0.10054 0.11393 0.14512 +v 0.10066 0.11347 0.14946 +v 0.10089 0.11285 0.17098 +v 0.10067 0.11504 0.17177 +v 0.10061 0.11636 0.17371 +v 0.10039 0.11844 0.17654 +v 0.10027 0.11943 0.17770 +v 0.10034 0.12131 0.18227 +v 0.10023 0.12153 0.17934 +v 0.10037 0.12198 0.18319 +v 0.10043 0.12218 0.18589 +v 0.10028 0.12230 0.18764 +v 0.10027 0.12245 0.19210 +v 0.10023 0.12260 0.19488 +v 0.09929 0.12378 0.21049 +v 0.09931 0.12381 0.21139 +v 0.09986 0.12347 0.21259 +v 0.09993 0.12337 0.21420 +v 0.10021 0.12276 0.20553 +v 0.10025 0.12289 0.20475 +v 0.10038 0.12208 0.20168 +v 0.10008 0.12289 0.19961 +v 0.10191 0.00637 0.13941 +v 0.10202 0.00651 0.13597 +v 0.10145 0.00646 0.13760 +v 0.10160 0.00696 0.14101 +v 0.10216 0.02889 0.12170 +v 0.10108 0.09296 0.12355 +v 0.10110 0.09016 0.12232 +v 0.10115 0.09662 0.12902 +v 0.10117 0.09812 0.12350 +v 0.10107 0.09885 0.12959 +v 0.10096 0.08942 0.12121 +v 0.09879 0.06591 0.11415 +v 0.10049 0.09008 0.11930 +v 0.09868 0.07065 0.11437 +v 0.09895 0.07174 0.11459 +v 0.10071 0.11252 0.15309 +v 0.10111 0.10470 0.13492 +v 0.10104 0.10662 0.13491 +v 0.10090 0.10997 0.13776 +v 0.10129 0.10307 0.13430 +v 0.10065 0.11215 0.14093 +v 0.10065 0.11520 0.14824 +v 0.10033 0.11797 0.16544 +v 0.10040 0.11882 0.17561 +v 0.10010 0.12220 0.18167 +v 0.10007 0.12198 0.17847 +v 0.10016 0.12210 0.18028 +v 0.10046 0.12188 0.18464 +v 0.10015 0.12249 0.18425 +v 0.10044 0.12210 0.18693 +v 0.10030 0.12227 0.18518 +v 0.10038 0.12201 0.19022 +v 0.10024 0.12271 0.19754 +v 0.10008 0.12298 0.19300 +v 0.10023 0.12263 0.19137 +v 0.09967 0.12356 0.20786 +v 0.09944 0.12380 0.20909 +v 0.09960 0.12368 0.21184 +v 0.09976 0.12365 0.21384 +v 0.10036 0.12242 0.21699 +v 0.10022 0.12279 0.21598 +v 0.10009 0.12317 0.21505 +v 0.09981 0.12324 0.20632 +v 0.10021 0.12262 0.20332 +v 0.10001 0.12310 0.20131 +v 0.10180 0.00664 0.14029 +v 0.10251 0.00637 0.13485 +v 0.10138 0.00662 0.13683 +v 0.10136 0.00659 0.13831 +v 0.10141 0.00741 0.14104 +v 0.10125 0.09745 0.12691 +v 0.09987 0.08979 0.11720 +v 0.10057 0.11542 0.15826 +v 0.10097 0.10927 0.13675 +v 0.10066 0.11036 0.14028 +v 0.10111 0.10054 0.12986 +v 0.10053 0.11386 0.13998 +v 0.10019 0.11651 0.14459 +v 0.10055 0.11555 0.14703 +v 0.10056 0.11401 0.15107 +v 0.10054 0.11713 0.16827 +v 0.10035 0.11658 0.16214 +v 0.10043 0.11686 0.17151 +v 0.10029 0.11919 0.17415 +v 0.10022 0.12145 0.17687 +v 0.10034 0.12184 0.18273 +v 0.10011 0.12235 0.18251 +v 0.09986 0.12302 0.18394 +v 0.10021 0.12258 0.18689 +v 0.10000 0.12285 0.18613 +v 0.10005 0.12274 0.18865 +v 0.09998 0.12311 0.19386 +v 0.09991 0.12328 0.19242 +v 0.10004 0.12320 0.19677 +v 0.09981 0.12329 0.19154 +v 0.09964 0.12346 0.20723 +v 0.09868 0.12408 0.21095 +v 0.09937 0.12396 0.21214 +v 0.09962 0.12376 0.21232 +v 0.09955 0.12380 0.21296 +v 0.10031 0.12276 0.21801 +v 0.09936 0.12383 0.21434 +v 0.09974 0.12357 0.21494 +v 0.10027 0.12301 0.20520 +v 0.09988 0.12344 0.20544 +v 0.10002 0.12322 0.20401 +v 0.10023 0.12272 0.20263 +v 0.09960 0.12370 0.19956 +v 0.09984 0.12348 0.19854 +v 0.10141 0.00683 0.13904 +v 0.10201 0.00669 0.13483 +v 0.10331 0.00613 0.13466 +v 0.10154 0.00703 0.13573 +v 0.10120 0.00653 0.13722 +v 0.10104 0.00697 0.13806 +v 0.10141 0.00738 0.14019 +v 0.10091 0.09337 0.12165 +v 0.10092 0.09621 0.12130 +v 0.10117 0.10019 0.12618 +v 0.10120 0.09993 0.12458 +v 0.09927 0.08813 0.11526 +v 0.09963 0.09285 0.11725 +v 0.10068 0.09371 0.12048 +v 0.10034 0.11648 0.15420 +v 0.10107 0.10547 0.13376 +v 0.10093 0.10826 0.13412 +v 0.10066 0.11216 0.13862 +v 0.10095 0.11011 0.13698 +v 0.10114 0.10307 0.13172 +v 0.10036 0.11700 0.14031 +v 0.10008 0.11714 0.14365 +v 0.10029 0.11640 0.14610 +v 0.10046 0.11649 0.14765 +v 0.10034 0.11655 0.14959 +v 0.10003 0.11923 0.16710 +v 0.09988 0.12019 0.16408 +v 0.10017 0.11838 0.17197 +v 0.09967 0.12298 0.18198 +v 0.09990 0.12270 0.18124 +v 0.10003 0.12235 0.17753 +v 0.09991 0.12263 0.17949 +v 0.10010 0.12258 0.18309 +v 0.09956 0.12327 0.18486 +v 0.09976 0.12317 0.18735 +v 0.10011 0.12260 0.18964 +v 0.09987 0.12329 0.19489 +v 0.09957 0.12367 0.19317 +v 0.09974 0.12361 0.19732 +v 0.10000 0.12287 0.19059 +v 0.09940 0.12378 0.20767 +v 0.09908 0.12400 0.20828 +v 0.09897 0.12411 0.20859 +v 0.09883 0.12410 0.21157 +v 0.09900 0.12405 0.21204 +v 0.09941 0.12388 0.21357 +v 0.10004 0.12318 0.21660 +v 0.10005 0.12329 0.21747 +v 0.09989 0.12337 0.21567 +v 0.09927 0.12372 0.20659 +v 0.09997 0.12347 0.20479 +v 0.09924 0.12384 0.20576 +v 0.09988 0.12330 0.20307 +v 0.09980 0.12339 0.20202 +v 0.09936 0.12392 0.20093 +v 0.10255 0.00639 0.13375 +v 0.10107 0.00727 0.13678 +v 0.10105 0.00676 0.13730 +v 0.10098 0.09774 0.12148 +v 0.10122 0.09939 0.12332 +v 0.09907 0.09073 0.11563 +v 0.10024 0.09359 0.11898 +v 0.09913 0.09157 0.11596 +v 0.10032 0.11610 0.15133 +v 0.10008 0.11826 0.16127 +v 0.10011 0.11825 0.15787 +v 0.10093 0.10851 0.13303 +v 0.10072 0.10986 0.13449 +v 0.10082 0.11033 0.13610 +v 0.10119 0.10461 0.12738 +v 0.10109 0.10375 0.12988 +v 0.10032 0.11546 0.13785 +v 0.10026 0.11729 0.14132 +v 0.10029 0.11369 0.13734 +v 0.09972 0.11864 0.14542 +v 0.10012 0.11932 0.16869 +v 0.10026 0.11850 0.16977 +v 0.10018 0.12119 0.17480 +v 0.09969 0.12307 0.18287 +v 0.09991 0.12268 0.18041 +v 0.09976 0.12291 0.17802 +v 0.10011 0.12199 0.17637 +v 0.09962 0.12308 0.17897 +v 0.09953 0.12343 0.18408 +v 0.09911 0.12370 0.18636 +v 0.09931 0.12362 0.18858 +v 0.09961 0.12331 0.18971 +v 0.09947 0.12372 0.19417 +v 0.09951 0.12375 0.19230 +v 0.09967 0.12363 0.19574 +v 0.09926 0.12368 0.19062 +v 0.09914 0.12383 0.20709 +v 0.09798 0.12424 0.21048 +v 0.09815 0.12420 0.21160 +v 0.09894 0.12404 0.21332 +v 0.10007 0.12336 0.21800 +v 0.09918 0.12385 0.21538 +v 0.09949 0.12392 0.20493 +v 0.09958 0.12383 0.20425 +v 0.09949 0.12377 0.20347 +v 0.09939 0.12399 0.19826 +v 0.09896 0.12425 0.20016 +v 0.10110 0.00779 0.13880 +v 0.10189 0.00712 0.13381 +v 0.10132 0.00762 0.13589 +v 0.10085 0.00719 0.13745 +v 0.10070 0.09821 0.11989 +v 0.10099 0.09968 0.12157 +v 0.10111 0.10303 0.12528 +v 0.10091 0.10348 0.12290 +v 0.09911 0.08876 0.11511 +v 0.09940 0.09533 0.11654 +v 0.09922 0.09236 0.11622 +v 0.10050 0.09518 0.11958 +v 0.09997 0.11779 0.15186 +v 0.09980 0.11959 0.15497 +v 0.10100 0.10552 0.13143 +v 0.10071 0.11177 0.13714 +v 0.10013 0.11638 0.13518 +v 0.09983 0.11917 0.14018 +v 0.10042 0.11302 0.13668 +v 0.09972 0.11902 0.14299 +v 0.09976 0.11954 0.14120 +v 0.09999 0.11763 0.14666 +v 0.10001 0.11786 0.14860 +v 0.09949 0.12216 0.16580 +v 0.09951 0.12226 0.16667 +v 0.09987 0.11967 0.16147 +v 0.10002 0.12030 0.17069 +v 0.09999 0.12200 0.17328 +v 0.09948 0.12323 0.18109 +v 0.09933 0.12337 0.18246 +v 0.09971 0.12300 0.17659 +v 0.09962 0.12314 0.18037 +v 0.09879 0.12380 0.18429 +v 0.09861 0.12390 0.18530 +v 0.09907 0.12387 0.18751 +v 0.09923 0.12390 0.19502 +v 0.09897 0.12402 0.19396 +v 0.09921 0.12401 0.19272 +v 0.09916 0.12390 0.19158 +v 0.09917 0.12405 0.19693 +v 0.09886 0.12400 0.20749 +v 0.09816 0.12416 0.20791 +v 0.09964 0.12367 0.21706 +v 0.09950 0.12370 0.21627 +v 0.10012 0.12323 0.21858 +v 0.09968 0.12367 0.21803 +v 0.09826 0.12409 0.21503 +v 0.09833 0.12403 0.20651 +v 0.09916 0.12415 0.20468 +v 0.09936 0.12379 0.20253 +v 0.09905 0.12409 0.20172 +v 0.09890 0.12427 0.19917 +v 0.09876 0.12433 0.20109 +v 0.10149 0.00765 0.13506 +v 0.10121 0.00842 0.13673 +v 0.10085 0.00755 0.13789 +v 0.10041 0.09713 0.11923 +v 0.09842 0.09081 0.11465 +v 0.09849 0.09171 0.11481 +v 0.09908 0.09375 0.11574 +v 0.09881 0.09299 0.11528 +v 0.09988 0.12001 0.16073 +v 0.09970 0.11934 0.15282 +v 0.09955 0.12128 0.15629 +v 0.10094 0.10747 0.12943 +v 0.10048 0.11132 0.13338 +v 0.10049 0.11225 0.13559 +v 0.10111 0.10672 0.12670 +v 0.10032 0.11396 0.13648 +v 0.10021 0.11510 0.13382 +v 0.10001 0.11733 0.13611 +v 0.10011 0.11776 0.13920 +v 0.09945 0.12130 0.14353 +v 0.09973 0.11889 0.14820 +v 0.09958 0.12217 0.16370 +v 0.09960 0.12281 0.16851 +v 0.09977 0.12114 0.16291 +v 0.09996 0.12160 0.17207 +v 0.10002 0.12212 0.17427 +v 0.10011 0.12210 0.17573 +v 0.09890 0.12362 0.18194 +v 0.09905 0.12361 0.18301 +v 0.09949 0.12334 0.17840 +v 0.09930 0.12351 0.17774 +v 0.10002 0.12242 0.17580 +v 0.09914 0.12362 0.18024 +v 0.09896 0.12375 0.18364 +v 0.09799 0.12415 0.18620 +v 0.09890 0.12391 0.18961 +v 0.09855 0.12418 0.18806 +v 0.09887 0.12411 0.19306 +v 0.09850 0.12412 0.19049 +v 0.09710 0.12419 0.21456 +v 0.09880 0.12399 0.21624 +v 0.09860 0.12412 0.20541 +v 0.09890 0.12407 0.20333 +v 0.09887 0.12424 0.19801 +v 0.09835 0.12449 0.19993 +v 0.09833 0.12452 0.20061 +v 0.10089 0.00771 0.13732 +v 0.10103 0.00828 0.13785 +v 0.09963 0.09758 0.11707 +v 0.10049 0.09952 0.11942 +v 0.10075 0.10407 0.12128 +v 0.10068 0.10317 0.12078 +v 0.09924 0.09607 0.11556 +v 0.09986 0.12022 0.15927 +v 0.09966 0.11913 0.15039 +v 0.09972 0.12082 0.15781 +v 0.09932 0.12224 0.15428 +v 0.10083 0.11014 0.13171 +v 0.10099 0.10772 0.12534 +v 0.10001 0.11717 0.13233 +v 0.09958 0.12088 0.14039 +v 0.09970 0.11926 0.13863 +v 0.09938 0.12186 0.14621 +v 0.09956 0.12019 0.14797 +v 0.09929 0.12298 0.16575 +v 0.09927 0.12301 0.16464 +v 0.09979 0.12210 0.16991 +v 0.09918 0.12337 0.16686 +v 0.09975 0.12252 0.16166 +v 0.09995 0.12228 0.17266 +v 0.09990 0.12253 0.17386 +v 0.09917 0.12364 0.17874 +v 0.09902 0.12379 0.17660 +v 0.09976 0.12296 0.17546 +v 0.09820 0.12398 0.18384 +v 0.09788 0.12407 0.18465 +v 0.09841 0.12418 0.18717 +v 0.09801 0.12412 0.18542 +v 0.09843 0.12420 0.18889 +v 0.09857 0.12417 0.19501 +v 0.09789 0.12429 0.19387 +v 0.09822 0.12428 0.19172 +v 0.09913 0.12395 0.21699 +v 0.09982 0.12354 0.21897 +v 0.09768 0.12412 0.21666 +v 0.09827 0.12422 0.20436 +v 0.09854 0.12422 0.20235 +v 0.09842 0.12436 0.20188 +v 0.09801 0.12443 0.19892 +v 0.09978 0.09983 0.11729 +v 0.10057 0.10095 0.11978 +v 0.09826 0.09132 0.11450 +v 0.09827 0.09321 0.11437 +v 0.09899 0.09512 0.11490 +v 0.09928 0.09730 0.11577 +v 0.09880 0.09410 0.11480 +v 0.09975 0.12150 0.16036 +v 0.09936 0.12048 0.15184 +v 0.09959 0.12177 0.15782 +v 0.09922 0.12269 0.15591 +v 0.09915 0.12150 0.15181 +v 0.10076 0.11203 0.13074 +v 0.10049 0.11160 0.13271 +v 0.10035 0.11308 0.13400 +v 0.10099 0.10799 0.12659 +v 0.10031 0.11509 0.13138 +v 0.09970 0.11863 0.13686 +v 0.09971 0.11892 0.13346 +v 0.09939 0.12183 0.14176 +v 0.09920 0.12305 0.14543 +v 0.09946 0.12063 0.14919 +v 0.09932 0.12309 0.16358 +v 0.09967 0.12256 0.16917 +v 0.09939 0.12321 0.16794 +v 0.09963 0.12291 0.17154 +v 0.09985 0.12258 0.17262 +v 0.09971 0.12296 0.17440 +v 0.09974 0.12287 0.17348 +v 0.09852 0.12387 0.18116 +v 0.09818 0.12392 0.18290 +v 0.09939 0.12351 0.17588 +v 0.09857 0.12399 0.17810 +v 0.09871 0.12397 0.17922 +v 0.09711 0.12418 0.18510 +v 0.09788 0.12436 0.18774 +v 0.09816 0.12426 0.18953 +v 0.09797 0.12436 0.18895 +v 0.09760 0.12434 0.19018 +v 0.09892 0.12392 0.21853 +v 0.09936 0.12381 0.21873 +v 0.09855 0.12407 0.21709 +v 0.09931 0.09887 0.11586 +v 0.10072 0.10560 0.12066 +v 0.10058 0.10440 0.12025 +v 0.10031 0.10312 0.11950 +v 0.09785 0.09147 0.11418 +v 0.09915 0.09627 0.11489 +v 0.09918 0.09713 0.11468 +v 0.09956 0.12195 0.15926 +v 0.09946 0.12225 0.15822 +v 0.09912 0.12299 0.15419 +v 0.10077 0.10941 0.12815 +v 0.10041 0.11333 0.13264 +v 0.10081 0.11115 0.12608 +v 0.10028 0.11582 0.12996 +v 0.09959 0.11942 0.13164 +v 0.09949 0.12175 0.13875 +v 0.09937 0.12223 0.14018 +v 0.09940 0.12044 0.13662 +v 0.09923 0.12252 0.14281 +v 0.09925 0.12263 0.14391 +v 0.09909 0.12309 0.14595 +v 0.09940 0.12264 0.14812 +v 0.09874 0.12381 0.16528 +v 0.09906 0.12370 0.16602 +v 0.09889 0.12364 0.16430 +v 0.09956 0.12288 0.16265 +v 0.09922 0.12349 0.16903 +v 0.09959 0.12297 0.16974 +v 0.09937 0.12342 0.16840 +v 0.09875 0.12382 0.16788 +v 0.09973 0.12232 0.16105 +v 0.09954 0.12327 0.17107 +v 0.09794 0.12397 0.18168 +v 0.09880 0.12384 0.18021 +v 0.09898 0.12389 0.17576 +v 0.09818 0.12414 0.17674 +v 0.09917 0.12364 0.17498 +v 0.09664 0.12428 0.18654 +v 0.09702 0.12440 0.19161 +v 0.09602 0.12408 0.21791 +v 0.09940 0.12367 0.21942 +v 0.09903 0.10028 0.11518 +v 0.09951 0.10143 0.11699 +v 0.10067 0.10709 0.12092 +v 0.09952 0.10353 0.11751 +v 0.09918 0.09796 0.11531 +v 0.09947 0.12273 0.16050 +v 0.09923 0.12169 0.15001 +v 0.09917 0.12311 0.15732 +v 0.09885 0.12358 0.15555 +v 0.09885 0.12264 0.15193 +v 0.10076 0.11238 0.13076 +v 0.10050 0.11290 0.12319 +v 0.09965 0.11903 0.12972 +v 0.09951 0.12061 0.13365 +v 0.09909 0.12284 0.14189 +v 0.09908 0.12333 0.14463 +v 0.09892 0.12361 0.14560 +v 0.09908 0.12306 0.14659 +v 0.09928 0.12273 0.14719 +v 0.09924 0.12257 0.14888 +v 0.09891 0.12393 0.16638 +v 0.09887 0.12370 0.16362 +v 0.09912 0.12356 0.16284 +v 0.09949 0.12325 0.16210 +v 0.09864 0.12400 0.16690 +v 0.09959 0.12302 0.16143 +v 0.09911 0.12393 0.17118 +v 0.09934 0.12340 0.17263 +v 0.09927 0.12357 0.17448 +v 0.09802 0.12404 0.18043 +v 0.09685 0.12410 0.18145 +v 0.09857 0.12409 0.17603 +v 0.09784 0.12416 0.17789 +v 0.09819 0.12413 0.17946 +v 0.09840 0.12415 0.17903 +v 0.09570 0.12418 0.18204 +v 0.09533 0.12426 0.18565 +v 0.09587 0.12441 0.19044 +v 0.09750 0.12438 0.18912 +v 0.09886 0.09950 0.11484 +v 0.10036 0.10535 0.11942 +v 0.10065 0.10611 0.12028 +v 0.10046 0.11031 0.12069 +v 0.09885 0.09851 0.11463 +v 0.09919 0.12292 0.15897 +v 0.09916 0.12306 0.15975 +v 0.09895 0.12243 0.15087 +v 0.09896 0.12358 0.15654 +v 0.09908 0.12314 0.15838 +v 0.09888 0.12350 0.15439 +v 0.09891 0.12322 0.15360 +v 0.10068 0.11305 0.12869 +v 0.10077 0.11253 0.12631 +v 0.10044 0.11154 0.12127 +v 0.09995 0.11767 0.12937 +v 0.09958 0.12172 0.12922 +v 0.09937 0.12280 0.13922 +v 0.09935 0.12203 0.13733 +v 0.09904 0.12304 0.14053 +v 0.09910 0.12305 0.14328 +v 0.09888 0.12331 0.14275 +v 0.09883 0.12360 0.14373 +v 0.09858 0.12385 0.14614 +v 0.09928 0.12300 0.14800 +v 0.09883 0.12402 0.16594 +v 0.09836 0.12399 0.16410 +v 0.09934 0.12366 0.17056 +v 0.09825 0.12412 0.16731 +v 0.09843 0.12411 0.17531 +v 0.09802 0.12419 0.17892 +v 0.09715 0.12421 0.17723 +v 0.09790 0.12423 0.17576 +v 0.09844 0.12403 0.17420 +v 0.09339 0.12430 0.18762 +v 0.09908 0.10121 0.11579 +v 0.10042 0.10697 0.11974 +v 0.10051 0.10884 0.12036 +v 0.09948 0.10662 0.11741 +v 0.09903 0.12339 0.16043 +v 0.09899 0.12282 0.14973 +v 0.09897 0.12377 0.15725 +v 0.09891 0.12355 0.15782 +v 0.09843 0.12399 0.15525 +v 0.09872 0.12385 0.15603 +v 0.09840 0.12354 0.15199 +v 0.09862 0.12312 0.15119 +v 0.10056 0.11431 0.12489 +v 0.10029 0.11396 0.12059 +v 0.10035 0.11606 0.12745 +v 0.09976 0.11917 0.12876 +v 0.10061 0.11429 0.12671 +v 0.09915 0.12309 0.13976 +v 0.09946 0.12289 0.13858 +v 0.09946 0.12252 0.13809 +v 0.09890 0.12322 0.14131 +v 0.09858 0.12359 0.14193 +v 0.09881 0.12383 0.14453 +v 0.09846 0.12409 0.14492 +v 0.09888 0.12353 0.14737 +v 0.09887 0.12349 0.14893 +v 0.09856 0.12412 0.16581 +v 0.09785 0.12414 0.16475 +v 0.09852 0.12415 0.16625 +v 0.09844 0.12399 0.16326 +v 0.09914 0.12368 0.16204 +v 0.09943 0.12343 0.16166 +v 0.09883 0.12409 0.17031 +v 0.09812 0.12413 0.16907 +v 0.09797 0.12422 0.16675 +v 0.09754 0.12422 0.16777 +v 0.09913 0.12354 0.16127 +v 0.09870 0.12405 0.17198 +v 0.09912 0.12399 0.17069 +v 0.09856 0.12399 0.17285 +v 0.09719 0.12416 0.17913 +v 0.09561 0.12414 0.17912 +v 0.09453 0.12431 0.18300 +v 0.09368 0.12436 0.18580 +v 0.10047 0.10820 0.11989 +v 0.10038 0.10963 0.11985 +v 0.10023 0.11271 0.11975 +v 0.09891 0.12336 0.15882 +v 0.09870 0.12354 0.15932 +v 0.09875 0.12358 0.16001 +v 0.09873 0.12310 0.15040 +v 0.09890 0.12401 0.15708 +v 0.09856 0.12369 0.15855 +v 0.09854 0.12379 0.15408 +v 0.09846 0.12410 0.15636 +v 0.09831 0.12393 0.15280 +v 0.10051 0.11503 0.12378 +v 0.09980 0.11989 0.12716 +v 0.09913 0.12334 0.13925 +v 0.09934 0.12313 0.13897 +v 0.09932 0.12288 0.13762 +v 0.09844 0.12374 0.14092 +v 0.09863 0.12368 0.13981 +v 0.09818 0.12404 0.14293 +v 0.09846 0.12409 0.14406 +v 0.09786 0.12436 0.14554 +v 0.09840 0.12403 0.14664 +v 0.09873 0.12387 0.14826 +v 0.09794 0.12420 0.16581 +v 0.09744 0.12422 0.16360 +v 0.09862 0.12399 0.16250 +v 0.09945 0.12338 0.16146 +v 0.09863 0.12430 0.17126 +v 0.09760 0.12426 0.17484 +v 0.09802 0.12425 0.17531 +v 0.09519 0.12434 0.17474 +v 0.09812 0.12416 0.17254 +v 0.09435 0.12417 0.17993 +v 0.09383 0.12429 0.18123 +v 0.10025 0.10858 0.11931 +v 0.10018 0.11072 0.11940 +v 0.09846 0.12383 0.16053 +v 0.09857 0.12359 0.14974 +v 0.09875 0.12409 0.15682 +v 0.09892 0.12400 0.15727 +v 0.09872 0.12404 0.15740 +v 0.09845 0.12395 0.15794 +v 0.09858 0.12364 0.15328 +v 0.09778 0.12427 0.15421 +v 0.09779 0.12405 0.15192 +v 0.09805 0.12383 0.15072 +v 0.09987 0.11978 0.12492 +v 0.09950 0.12202 0.12713 +v 0.09923 0.12335 0.13874 +v 0.09948 0.12295 0.13812 +v 0.09783 0.12417 0.14164 +v 0.09778 0.12438 0.14414 +v 0.09802 0.12423 0.14672 +v 0.09818 0.12416 0.14772 +v 0.09861 0.12405 0.14864 +v 0.09691 0.12426 0.16518 +v 0.09797 0.12420 0.16278 +v 0.09847 0.12406 0.16165 +v 0.09799 0.12430 0.17005 +v 0.09695 0.12433 0.16913 +v 0.09888 0.12434 0.17097 +v 0.09817 0.12428 0.17170 +v 0.09768 0.12424 0.17285 +v 0.09474 0.12430 0.17697 +v 0.09336 0.12425 0.17859 +v 0.09329 0.12446 0.18412 +v 0.09318 0.12452 0.18285 +v 0.09875 0.12417 0.15709 +v 0.09791 0.12409 0.15828 +v 0.09808 0.12408 0.15351 +v 0.09781 0.12433 0.15497 +v 0.09792 0.12427 0.15572 +v 0.09844 0.12422 0.15702 +v 0.09760 0.12422 0.15286 +v 0.09880 0.12370 0.13893 +v 0.09947 0.12315 0.13826 +v 0.09727 0.12457 0.14565 +v 0.09847 0.12417 0.14835 +v 0.09844 0.12399 0.14903 +v 0.09635 0.12429 0.16361 +v 0.09667 0.12438 0.16243 +v 0.09803 0.12423 0.16165 +v 0.09808 0.12435 0.17094 +v 0.09586 0.12434 0.16801 +v 0.09867 0.12438 0.17086 +v 0.09666 0.12432 0.17224 +v 0.09346 0.12454 0.17493 +v 0.09352 0.12421 0.18027 +v 0.09161 0.12464 0.18441 +v 0.09265 0.12452 0.18178 +v 0.09786 0.12400 0.15920 +v 0.09812 0.12401 0.14968 +v 0.09729 0.12446 0.15478 +v 0.09764 0.12428 0.15355 +v 0.09770 0.12431 0.15679 +v 0.09716 0.12430 0.15204 +v 0.09721 0.12424 0.15074 +v 0.09833 0.12400 0.13868 +v 0.09875 0.12376 0.13820 +v 0.09888 0.12348 0.13734 +v 0.09784 0.12419 0.13987 +v 0.09718 0.12445 0.14832 +v 0.09497 0.12431 0.16554 +v 0.09572 0.12441 0.16984 +v 0.09404 0.12443 0.17303 +v 0.09188 0.12469 0.17635 +v 0.09542 0.12431 0.17369 +v 0.09046 0.12464 0.17914 +v 0.09237 0.12465 0.18346 +v 0.09229 0.12473 0.18301 +v 0.09753 0.12414 0.16030 +v 0.09723 0.12432 0.15002 +v 0.09685 0.12422 0.15923 +v 0.09733 0.12428 0.15774 +v 0.09700 0.12439 0.15355 +v 0.09701 0.12439 0.15605 +v 0.09627 0.12443 0.15207 +v 0.09572 0.12442 0.16189 +v 0.09359 0.12447 0.17067 +v 0.09321 0.12437 0.16928 +v 0.09127 0.12454 0.18013 +v 0.09099 0.12473 0.18300 +v 0.09156 0.12464 0.18178 +v 0.09630 0.12433 0.16041 +v 0.09611 0.12441 0.15412 +v 0.09586 0.12432 0.15883 +v 0.09621 0.12446 0.15047 +v 0.09776 0.12423 0.13855 +v 0.09814 0.12394 0.13727 +v 0.09587 0.12436 0.15586 +v 0.09842 0.12373 0.13620 +v 0.09224 0.12465 0.17133 +v 0.00768 0.05368 0.23896 +v 0.00949 0.05331 0.23892 +v 0.00922 0.05594 0.23917 +v 0.00810 0.05232 0.23892 +v 0.01383 0.05460 0.23902 +v 0.00495 0.05391 0.23884 +v 0.01114 0.05157 0.23871 +v 0.00659 0.05139 0.23895 +v 0.01110 0.05643 0.23920 +v 0.00681 0.05756 0.23909 +v 0.00861 0.05111 0.23876 +v 0.00690 0.05120 0.23896 +v 0.01287 0.05649 0.23911 +v 0.01512 0.05011 0.23856 +v 0.00395 0.05233 0.23884 +v 0.00493 0.05812 0.23910 +v 0.00913 0.04790 0.23819 +v 0.00671 0.04993 0.23869 +v 0.01498 0.05591 0.23909 +v 0.01273 0.05876 0.23899 +v 0.00703 0.06073 0.23890 +v 0.01330 0.04834 0.23832 +v 0.01639 0.05501 0.23907 +v 0.00239 0.05415 0.23896 +v 0.00517 0.05099 0.23884 +v 0.00266 0.05542 0.23895 +v 0.01175 0.04764 0.23814 +v 0.01539 0.05768 0.23903 +v 0.01692 0.04783 0.23842 +v 0.02035 0.05261 0.23875 +v 0.00100 0.05316 0.23880 +v 0.00445 0.05034 0.23870 +v 0.00297 0.06115 0.23899 +v -0.00061 0.05580 0.23889 +v 0.00551 0.04754 0.23840 +v 0.00791 0.04672 0.23819 +v 0.01750 0.05665 0.23912 +v 0.00877 0.06189 0.23879 +v 0.01458 0.06183 0.23872 +v 0.01537 0.04617 0.23835 +v 0.02184 0.04829 0.23835 +v 0.01293 0.04720 0.23816 +v 0.00080 0.05465 0.23886 +v 0.00241 0.05115 0.23864 +v 0.00046 0.05845 0.23901 +v 0.00451 0.06517 0.23888 +v 0.00835 0.04420 0.23819 +v 0.01776 0.05903 0.23884 +v 0.01129 0.06391 0.23850 +v 0.01756 0.06109 0.23871 +v 0.01885 0.04473 0.23836 +v 0.02003 0.04617 0.23829 +v 0.01148 0.04334 0.23836 +v 0.02021 0.05507 0.23886 +v 0.02533 0.05149 0.23868 +v -0.00045 0.05275 0.23863 +v 0.00345 0.04879 0.23846 +v -0.00075 0.06114 0.23895 +v 0.00128 0.06529 0.23891 +v -0.00149 0.05705 0.23901 +v 0.00639 0.04458 0.23814 +v 0.02098 0.05713 0.23875 +v 0.01692 0.06635 0.23847 +v 0.01492 0.06539 0.23854 +v 0.01332 0.04531 0.23829 +v 0.01404 0.04271 0.23838 +v 0.02238 0.04458 0.23801 +v 0.02246 0.05478 0.23876 +v 0.02606 0.05050 0.23856 +v -0.00127 0.05008 0.23822 +v 0.00033 0.04924 0.23823 +v -0.00120 0.05862 0.23904 +v 0.00435 0.06878 0.23864 +v -0.00301 0.05450 0.23881 +v 0.00277 0.04428 0.23817 +v 0.00263 0.04647 0.23830 +v 0.00921 0.04120 0.23819 +v 0.00740 0.04252 0.23807 +v 0.01073 0.06527 0.23848 +v 0.02085 0.06533 0.23845 +v 0.02113 0.04238 0.23812 +v 0.01385 0.03684 0.23823 +v 0.02444 0.04634 0.23804 +v 0.02570 0.05204 0.23870 +v -0.00425 0.05126 0.23831 +v 0.00124 0.04766 0.23824 +v -0.00374 0.06148 0.23918 +v -0.00230 0.06344 0.23899 +v -0.00058 0.06845 0.23876 +v 0.00540 0.06722 0.23867 +v -0.00470 0.05624 0.23917 +v -0.00445 0.05788 0.23932 +v 0.00422 0.04198 0.23785 +v 0.01105 0.03945 0.23824 +v 0.02159 0.06171 0.23850 +v 0.00706 0.06804 0.23849 +v 0.02201 0.06365 0.23845 +v 0.01912 0.06650 0.23845 +v 0.01572 0.06872 0.23846 +v 0.02049 0.03819 0.23803 +v 0.02423 0.04278 0.23767 +v 0.02454 0.05690 0.23860 +v 0.02692 0.05193 0.23850 +v 0.02680 0.04507 0.23777 +v -0.00144 0.04846 0.23808 +v -0.00288 0.04945 0.23805 +v -0.00321 0.05966 0.23921 +v -0.00235 0.06735 0.23886 +v 0.00148 0.07020 0.23871 +v 0.00598 0.06942 0.23859 +v -0.00642 0.05432 0.23898 +v 0.00081 0.04456 0.23827 +v 0.00162 0.04236 0.23810 +v -0.00016 0.04609 0.23828 +v 0.00603 0.04113 0.23785 +v 0.00889 0.03909 0.23805 +v 0.02597 0.06769 0.23854 +v 0.02029 0.06840 0.23849 +v 0.01787 0.06732 0.23839 +v 0.02337 0.03880 0.23786 +v 0.01089 0.03711 0.23818 +v 0.01882 0.03456 0.23801 +v 0.02644 0.04063 0.23739 +v 0.02630 0.05371 0.23853 +v 0.02730 0.05061 0.23846 +v 0.02692 0.04897 0.23834 +v -0.00411 0.04907 0.23803 +v -0.00493 0.06002 0.23942 +v -0.00575 0.06293 0.23921 +v -0.00545 0.06773 0.23899 +v -0.00016 0.07028 0.23869 +v -0.00235 0.07016 0.23855 +v -0.00753 0.05205 0.23854 +v -0.00687 0.05662 0.23947 +v 0.00334 0.03968 0.23790 +v 0.00621 0.03960 0.23771 +v 0.00480 0.03987 0.23777 +v 0.02591 0.06388 0.23848 +v 0.02738 0.05902 0.23852 +v 0.01225 0.07231 0.23858 +v 0.01919 0.07077 0.23858 +v 0.02513 0.03693 0.23776 +v 0.01193 0.03427 0.23821 +v 0.02545 0.03341 0.23783 +v 0.01575 0.03354 0.23810 +v 0.02767 0.04222 0.23742 +v 0.02701 0.05586 0.23842 +v 0.02828 0.05140 0.23840 +v 0.02737 0.05277 0.23838 +v 0.02868 0.04870 0.23830 +v -0.00305 0.04838 0.23803 +v -0.00565 0.04928 0.23805 +v -0.00205 0.04660 0.23826 +v 0.00489 0.07291 0.23884 +v 0.00125 0.07379 0.23893 +v -0.00720 0.04992 0.23821 +v -0.01002 0.05385 0.23911 +v -0.00755 0.05781 0.23964 +v -0.00869 0.05570 0.23955 +v -0.00663 0.05863 0.23951 +v -0.00294 0.04427 0.23848 +v -0.00005 0.03943 0.23817 +v 0.00823 0.03709 0.23801 +v 0.00696 0.03875 0.23780 +v 0.01515 0.07139 0.23855 +v 0.02814 0.06681 0.23852 +v 0.02446 0.07042 0.23848 +v 0.00727 0.03551 0.23801 +v 0.02210 0.03021 0.23781 +v 0.01790 0.03158 0.23789 +v 0.02923 0.04411 0.23767 +v 0.02847 0.03909 0.23722 +v 0.02884 0.05268 0.23819 +v 0.02821 0.05009 0.23843 +v -0.00408 0.04773 0.23813 +v -0.00540 0.04837 0.23805 +v -0.00777 0.06068 0.23944 +v -0.00654 0.06695 0.23904 +v -0.00506 0.06973 0.23865 +v 0.00920 0.07537 0.23887 +v -0.00091 0.07258 0.23879 +v -0.00227 0.07142 0.23861 +v -0.00972 0.05082 0.23847 +v -0.00874 0.05725 0.23982 +v -0.00262 0.04163 0.23833 +v 0.00435 0.03797 0.23791 +v 0.00429 0.03632 0.23797 +v 0.00580 0.03891 0.23772 +v 0.00633 0.03908 0.23767 +v 0.02864 0.06424 0.23835 +v 0.02916 0.05824 0.23841 +v 0.01632 0.07653 0.23863 +v 0.02836 0.06544 0.23841 +v 0.02825 0.06823 0.23847 +v 0.02737 0.07055 0.23852 +v 0.02533 0.07502 0.23848 +v 0.02357 0.07494 0.23852 +v 0.01768 0.07231 0.23864 +v 0.02843 0.03878 0.23727 +v 0.02840 0.03350 0.23766 +v 0.00858 0.03229 0.23797 +v 0.02506 0.02838 0.23766 +v 0.02941 0.04136 0.23738 +v 0.03001 0.05349 0.23813 +v 0.02886 0.05070 0.23845 +v 0.03020 0.04723 0.23816 +v -0.00678 0.04851 0.23818 +v -0.00655 0.04929 0.23806 +v -0.00535 0.04549 0.23858 +v -0.01077 0.06289 0.23935 +v -0.00727 0.06923 0.23868 +v -0.00483 0.07074 0.23857 +v -0.00681 0.06960 0.23859 +v 0.00591 0.07624 0.23913 +v 0.00258 0.07680 0.23917 +v -0.00020 0.07606 0.23921 +v -0.00937 0.04934 0.23841 +v -0.01296 0.05146 0.23866 +v -0.01001 0.05646 0.23992 +v -0.00906 0.05830 0.23978 +v -0.00477 0.04160 0.23857 +v -0.00220 0.03801 0.23833 +v -0.00046 0.03651 0.23812 +v 0.00590 0.03759 0.23788 +v 0.02914 0.06056 0.23844 +v 0.03023 0.05714 0.23827 +v 0.02916 0.06702 0.23835 +v 0.02683 0.07316 0.23852 +v 0.02108 0.07682 0.23871 +v 0.01945 0.07564 0.23870 +v 0.02879 0.03646 0.23750 +v 0.02707 0.03139 0.23775 +v 0.01407 0.02729 0.23752 +v 0.00947 0.03096 0.23791 +v 0.00614 0.03223 0.23791 +v 0.02061 0.02746 0.23772 +v 0.02677 0.02935 0.23770 +v 0.01851 0.02945 0.23774 +v 0.03097 0.04267 0.23763 +v 0.03188 0.03985 0.23759 +v 0.03078 0.03774 0.23751 +v 0.03084 0.05154 0.23819 +v 0.03084 0.05519 0.23820 +v 0.03109 0.04418 0.23774 +v 0.02993 0.05033 0.23834 +v -0.00430 0.04637 0.23840 +v -0.00617 0.04659 0.23850 +v -0.00680 0.04442 0.23874 +v -0.00910 0.05967 0.23959 +v -0.00784 0.06791 0.23893 +v -0.00876 0.06653 0.23910 +v 0.00448 0.07693 0.23926 +v 0.00656 0.07934 0.23921 +v -0.00333 0.07572 0.23922 +v -0.00765 0.07115 0.23860 +v 0.01193 0.07987 0.23903 +v -0.01128 0.04971 0.23848 +v -0.00808 0.04859 0.23838 +v -0.01322 0.05481 0.23940 +v -0.01136 0.05600 0.23976 +v -0.01008 0.05741 0.24013 +v -0.00630 0.04227 0.23868 +v -0.00375 0.04103 0.23843 +v -0.00280 0.03985 0.23838 +v 0.00322 0.03427 0.23791 +v 0.02950 0.06339 0.23836 +v 0.02996 0.06476 0.23821 +v 0.03061 0.05878 0.23825 +v 0.03077 0.06624 0.23806 +v 0.02927 0.06922 0.23839 +v 0.02810 0.07187 0.23856 +v 0.02423 0.07691 0.23839 +v 0.02683 0.07495 0.23847 +v 0.02234 0.07707 0.23860 +v 0.02908 0.02840 0.23778 +v 0.02990 0.03404 0.23759 +v 0.01153 0.02895 0.23769 +v 0.00776 0.03088 0.23798 +v 0.00363 0.03337 0.23788 +v 0.02411 0.02639 0.23770 +v 0.02659 0.02703 0.23757 +v 0.03164 0.05338 0.23816 +v 0.03206 0.04550 0.23785 +v 0.03201 0.05012 0.23814 +v -0.00835 0.04689 0.23883 +v -0.00697 0.04574 0.23874 +v -0.01085 0.06012 0.23962 +v -0.00948 0.06860 0.23897 +v -0.01112 0.06860 0.23913 +v 0.00521 0.07852 0.23933 +v 0.00153 0.07767 0.23928 +v 0.00308 0.07936 0.23928 +v -0.00593 0.07881 0.23966 +v -0.00153 0.07807 0.23951 +v 0.01578 0.08202 0.23911 +v -0.01063 0.04864 0.23863 +v -0.00925 0.04830 0.23859 +v -0.01259 0.04930 0.23848 +v -0.01533 0.05352 0.23909 +v -0.01100 0.05705 0.24007 +v -0.01030 0.05875 0.23985 +v -0.00590 0.04018 0.23875 +v -0.00480 0.03993 0.23871 +v -0.00206 0.03485 0.23819 +v -0.00399 0.03897 0.23864 +v 0.02989 0.06172 0.23842 +v 0.03101 0.06031 0.23829 +v 0.03145 0.05740 0.23809 +v 0.03185 0.05558 0.23814 +v 0.01712 0.08055 0.23891 +v 0.02832 0.07386 0.23868 +v 0.02579 0.07659 0.23831 +v 0.01984 0.07865 0.23883 +v 0.02113 0.07837 0.23873 +v 0.03099 0.03045 0.23763 +v 0.01192 0.02563 0.23758 +v 0.00867 0.02905 0.23796 +v 0.00986 0.02900 0.23778 +v 0.00334 0.03219 0.23797 +v 0.02180 0.02563 0.23773 +v 0.02910 0.02797 0.23778 +v 0.03443 0.04072 0.23776 +v 0.03280 0.03702 0.23763 +v 0.03347 0.05162 0.23814 +v 0.03294 0.05429 0.23812 +v 0.03365 0.04400 0.23778 +v 0.03300 0.04734 0.23788 +v -0.00849 0.04310 0.23879 +v -0.00823 0.04549 0.23888 +v -0.01239 0.05986 0.23965 +v -0.00849 0.06994 0.23867 +v -0.01316 0.06673 0.23922 +v 0.00428 0.07868 0.23931 +v 0.00932 0.08372 0.23913 +v 0.00006 0.07917 0.23965 +v -0.00372 0.07844 0.23954 +v -0.00988 0.07490 0.23913 +v 0.01371 0.08214 0.23917 +v -0.01182 0.04867 0.23862 +v -0.01366 0.04964 0.23843 +v -0.01667 0.05650 0.23977 +v -0.01579 0.05137 0.23869 +v -0.01290 0.05650 0.23977 +v -0.01201 0.05750 0.23993 +v -0.01058 0.05799 0.24008 +v -0.01107 0.05765 0.24011 +v -0.00796 0.03977 0.23859 +v -0.00362 0.03714 0.23848 +v -0.00000 0.03330 0.23813 +v 0.03061 0.06280 0.23849 +v 0.03033 0.06384 0.23835 +v 0.03133 0.06545 0.23810 +v 0.03224 0.05876 0.23797 +v 0.01866 0.07989 0.23887 +v 0.03189 0.06869 0.23813 +v 0.03005 0.07077 0.23844 +v 0.02947 0.07294 0.23875 +v 0.02404 0.07832 0.23821 +v 0.02209 0.07846 0.23855 +v 0.02848 0.07511 0.23860 +v 0.02732 0.07600 0.23835 +v 0.03168 0.03313 0.23761 +v 0.03224 0.02559 0.23743 +v 0.01812 0.02497 0.23777 +v 0.01301 0.02498 0.23756 +v 0.00727 0.02958 0.23814 +v 0.00640 0.03032 0.23814 +v 0.02292 0.02507 0.23775 +v 0.02446 0.02485 0.23780 +v 0.02707 0.02586 0.23760 +v 0.03435 0.04568 0.23777 +v 0.03661 0.04704 0.23775 +v -0.01144 0.05852 0.23989 +v -0.01501 0.06101 0.23958 +v -0.00965 0.06980 0.23874 +v -0.00871 0.07038 0.23854 +v -0.01449 0.06814 0.23909 +v 0.00575 0.08268 0.23913 +v 0.01224 0.08341 0.23915 +v 0.00103 0.07896 0.23945 +v 0.00201 0.07908 0.23930 +v 0.00293 0.08150 0.23916 +v -0.00374 0.07978 0.23953 +v -0.00176 0.07962 0.23954 +v -0.01007 0.07211 0.23866 +v -0.00788 0.07712 0.23944 +v 0.01707 0.08239 0.23876 +v 0.01542 0.08224 0.23917 +v -0.01129 0.04801 0.23886 +v -0.01024 0.04769 0.23891 +v -0.00924 0.04684 0.23893 +v -0.01476 0.05001 0.23848 +v -0.01346 0.04861 0.23852 +v -0.01291 0.04833 0.23859 +v -0.01434 0.05666 0.23976 +v -0.01792 0.05518 0.23951 +v -0.01755 0.05295 0.23906 +v -0.00628 0.03905 0.23878 +v -0.00549 0.03932 0.23892 +v -0.00465 0.03888 0.23886 +v -0.00468 0.03563 0.23832 +v -0.00482 0.03811 0.23876 +v -0.00207 0.03287 0.23820 +v 0.03150 0.06191 0.23848 +v 0.03183 0.06671 0.23802 +v 0.03256 0.06053 0.23818 +v 0.03282 0.05684 0.23781 +v 0.03289 0.05599 0.23792 +v 0.01822 0.08132 0.23874 +v 0.02990 0.07445 0.23904 +v 0.02564 0.07824 0.23802 +v 0.02662 0.07743 0.23813 +v 0.01968 0.07993 0.23880 +v 0.02067 0.07962 0.23861 +v 0.03073 0.02561 0.23751 +v 0.03290 0.03079 0.23760 +v 0.01131 0.02335 0.23765 +v 0.00954 0.02696 0.23783 +v 0.00710 0.02828 0.23828 +v 0.00034 0.03152 0.23829 +v 0.00157 0.03035 0.23845 +v 0.02102 0.02339 0.23791 +v 0.02233 0.02405 0.23789 +v 0.02894 0.02511 0.23756 +v 0.03797 0.03756 0.23784 +v 0.03591 0.04228 0.23782 +v 0.03627 0.03264 0.23771 +v 0.03475 0.05295 0.23824 +v -0.01034 0.04503 0.23910 +v -0.01116 0.04122 0.23870 +v -0.01338 0.05757 0.23981 +v -0.01424 0.05773 0.23979 +v -0.00857 0.07072 0.23842 +v -0.01144 0.06993 0.23884 +v -0.01896 0.06674 0.23934 +v -0.01294 0.06924 0.23898 +v 0.01131 0.08530 0.23909 +v 0.00680 0.08616 0.23905 +v 0.00144 0.08031 0.23932 +v -0.00592 0.07995 0.23958 +v -0.00175 0.08090 0.23937 +v -0.01347 0.07474 0.23917 +v -0.00731 0.07933 0.23957 +v -0.01055 0.07702 0.23950 +v 0.01590 0.08264 0.23907 +v 0.01407 0.08390 0.23906 +v -0.01221 0.04788 0.23885 +v -0.01445 0.04885 0.23852 +v -0.01605 0.05752 0.23995 +v -0.01835 0.05662 0.23974 +v -0.01615 0.04990 0.23857 +v -0.01791 0.05059 0.23879 +v -0.00615 0.03743 0.23855 +v -0.00417 0.03382 0.23813 +v -0.00107 0.03144 0.23833 +v 0.03147 0.06310 0.23858 +v 0.03180 0.06468 0.23835 +v 0.03234 0.06583 0.23807 +v 0.03388 0.05909 0.23777 +v 0.03357 0.05763 0.23759 +v 0.03386 0.05528 0.23790 +v 0.01969 0.08053 0.23866 +v 0.03328 0.06803 0.23805 +v 0.03306 0.07239 0.23847 +v 0.03111 0.07309 0.23870 +v 0.03004 0.07390 0.23896 +v 0.02428 0.07912 0.23795 +v 0.02242 0.07946 0.23821 +v 0.02980 0.07511 0.23892 +v 0.02864 0.07759 0.23815 +v 0.03098 0.02362 0.23731 +v 0.03447 0.02904 0.23757 +v 0.01437 0.02387 0.23772 +v 0.00963 0.02433 0.23775 +v 0.01292 0.02260 0.23771 +v 0.00668 0.02866 0.23839 +v 0.00479 0.02910 0.23860 +v 0.01895 0.02323 0.23788 +v 0.02515 0.02303 0.23780 +v 0.02752 0.02365 0.23751 +v 0.03800 0.04085 0.23791 +v 0.03791 0.03569 0.23784 +v 0.03670 0.05068 0.23806 +v 0.03533 0.05387 0.23819 +v 0.03663 0.04532 0.23770 +v -0.01019 0.03867 0.23836 +v -0.01614 0.05856 0.23982 +v -0.00927 0.07061 0.23849 +v -0.01054 0.07086 0.23863 +v -0.02038 0.06149 0.23958 +v -0.01781 0.06795 0.23918 +v -0.01680 0.06988 0.23886 +v 0.00336 0.08390 0.23898 +v 0.01292 0.08527 0.23895 +v 0.01074 0.08617 0.23909 +v 0.00944 0.08696 0.23904 +v 0.00003 0.08146 0.23922 +v 0.00149 0.08208 0.23909 +v -0.00590 0.08234 0.23916 +v -0.01374 0.07245 0.23884 +v -0.01448 0.07771 0.23977 +v -0.00923 0.07885 0.23958 +v -0.01249 0.07787 0.23974 +v 0.01820 0.08224 0.23845 +v 0.01621 0.08333 0.23887 +v 0.01538 0.08356 0.23902 +v -0.01114 0.04740 0.23911 +v -0.01023 0.04687 0.23915 +v -0.01492 0.04878 0.23856 +v -0.01407 0.04829 0.23863 +v -0.01367 0.04779 0.23883 +v -0.01298 0.04724 0.23906 +v -0.01743 0.05803 0.23980 +v -0.02001 0.05590 0.23967 +v -0.02076 0.05270 0.23917 +v -0.00560 0.03854 0.23886 +v -0.00885 0.03593 0.23813 +v -0.00510 0.03889 0.23892 +v -0.00683 0.03291 0.23790 +v -0.00337 0.03203 0.23814 +v 0.03322 0.06239 0.23855 +v 0.03242 0.06286 0.23864 +v 0.03274 0.06435 0.23858 +v 0.03287 0.06629 0.23811 +v 0.03414 0.06107 0.23815 +v 0.03373 0.05657 0.23763 +v 0.01936 0.08151 0.23836 +v 0.03400 0.06935 0.23815 +v 0.03060 0.07474 0.23897 +v 0.02535 0.07971 0.23759 +v 0.02695 0.07872 0.23781 +v 0.03010 0.07637 0.23870 +v 0.02076 0.08073 0.23819 +v 0.03297 0.02424 0.23741 +v 0.03509 0.03076 0.23768 +v 0.03531 0.02733 0.23755 +v 0.01701 0.02278 0.23798 +v 0.00992 0.02155 0.23759 +v 0.00811 0.02637 0.23802 +v 0.00563 0.02766 0.23858 +v 0.00483 0.02848 0.23870 +v -0.00082 0.02976 0.23859 +v 0.00041 0.02944 0.23870 +v 0.00260 0.02943 0.23864 +v 0.02025 0.02211 0.23788 +v 0.02270 0.02282 0.23812 +v 0.02364 0.02236 0.23807 +v 0.04346 0.03967 0.23764 +v 0.04286 0.03314 0.23769 +v 0.03834 0.03192 0.23771 +v 0.03671 0.05277 0.23811 +v 0.03969 0.04794 0.23780 +v 0.03935 0.04543 0.23768 +v -0.01004 0.04627 0.23916 +v -0.01310 0.04452 0.23925 +v -0.01252 0.03760 0.23825 +v -0.01758 0.05969 0.23970 +v -0.01254 0.07121 0.23872 +v -0.01393 0.07058 0.23880 +v -0.02272 0.06484 0.23944 +v -0.02111 0.06865 0.23931 +v 0.01210 0.08673 0.23879 +v 0.00886 0.08855 0.23904 +v 0.00445 0.08775 0.23894 +v -0.00387 0.08233 0.23922 +v -0.00754 0.08065 0.23941 +v -0.00161 0.08341 0.23903 +v -0.01678 0.07330 0.23900 +v -0.01703 0.07662 0.23956 +v -0.00926 0.07977 0.23950 +v -0.01100 0.07883 0.23969 +v 0.01793 0.08310 0.23808 +v 0.01602 0.08403 0.23868 +v 0.01514 0.08454 0.23868 +v 0.01406 0.08545 0.23860 +v -0.01209 0.04701 0.23917 +v -0.01467 0.04794 0.23886 +v -0.01984 0.05749 0.23984 +v -0.01683 0.04885 0.23876 +v -0.01990 0.04978 0.23888 +v -0.00243 0.03048 0.23835 +v 0.03282 0.06548 0.23829 +v 0.03488 0.05721 0.23751 +v 0.03600 0.05924 0.23772 +v 0.03407 0.05711 0.23744 +v 0.03484 0.05568 0.23772 +v 0.03516 0.06787 0.23826 +v 0.03496 0.07145 0.23834 +v 0.03209 0.07508 0.23877 +v 0.02301 0.08133 0.23731 +v 0.02247 0.08056 0.23768 +v 0.03077 0.07591 0.23893 +v 0.03110 0.07822 0.23845 +v 0.02817 0.08009 0.23752 +v 0.02160 0.08086 0.23781 +v 0.03277 0.02267 0.23723 +v 0.03427 0.02548 0.23754 +v 0.03631 0.03013 0.23780 +v 0.03629 0.02848 0.23763 +v 0.01559 0.02191 0.23798 +v 0.00824 0.02306 0.23775 +v 0.01421 0.02000 0.23778 +v 0.00624 0.02666 0.23834 +v 0.00110 0.02873 0.23891 +v 0.01886 0.02171 0.23788 +v 0.02123 0.02183 0.23798 +v 0.01716 0.02161 0.23804 +v 0.02198 0.02204 0.23812 +v 0.02604 0.02025 0.23731 +v 0.02436 0.02132 0.23781 +v 0.02958 0.02042 0.23695 +v 0.04128 0.04449 0.23770 +v 0.03797 0.05133 0.23807 +v 0.03609 0.05425 0.23797 +v 0.03922 0.05026 0.23796 +v -0.01086 0.04651 0.23930 +v -0.01337 0.04031 0.23863 +v -0.01116 0.04561 0.23929 +v -0.02375 0.06953 0.23933 +v -0.02239 0.06197 0.23960 +v -0.02181 0.05981 0.23977 +v -0.01603 0.07166 0.23879 +v 0.00094 0.08438 0.23876 +v 0.01329 0.08622 0.23859 +v 0.01026 0.08824 0.23886 +v 0.01135 0.08725 0.23891 +v 0.00710 0.08815 0.23910 +v 0.00197 0.08613 0.23871 +v -0.00541 0.08403 0.23907 +v -0.00771 0.08266 0.23898 +v -0.00001 0.08372 0.23886 +v -0.01268 0.07895 0.23983 +v -0.01659 0.07863 0.23983 +v 0.01976 0.08209 0.23785 +v 0.01341 0.08567 0.23879 +v -0.01550 0.04688 0.23941 +v -0.01438 0.04731 0.23914 +v -0.01287 0.04644 0.23927 +v -0.02250 0.05656 0.23973 +v -0.01847 0.04893 0.23887 +v -0.01651 0.04769 0.23907 +v -0.02237 0.04937 0.23881 +v -0.00924 0.03225 0.23782 +v -0.00784 0.03078 0.23775 +v -0.00516 0.02987 0.23811 +v 0.03503 0.06269 0.23840 +v 0.03348 0.06361 0.23864 +v 0.03396 0.06586 0.23837 +v 0.03568 0.06125 0.23806 +v 0.03672 0.06997 0.23838 +v 0.03432 0.07507 0.23858 +v 0.02563 0.08113 0.23707 +v 0.03135 0.07673 0.23874 +v 0.02132 0.08200 0.23729 +v 0.03411 0.02398 0.23752 +v 0.03291 0.01945 0.23674 +v 0.03809 0.02685 0.23758 +v 0.03534 0.02544 0.23764 +v 0.00724 0.01938 0.23742 +v 0.01026 0.01760 0.23745 +v 0.00607 0.02495 0.23818 +v 0.00349 0.02732 0.23882 +v 0.00407 0.02600 0.23857 +v -0.00071 0.02841 0.23880 +v -0.00169 0.02817 0.23877 +v 0.00116 0.02824 0.23898 +v 0.00192 0.02837 0.23891 +v 0.01939 0.02049 0.23772 +v 0.02078 0.02080 0.23780 +v 0.02271 0.02197 0.23817 +v 0.02310 0.02113 0.23797 +v 0.04435 0.03414 0.23768 +v 0.04663 0.04305 0.23738 +v 0.04130 0.02901 0.23759 +v 0.03873 0.02853 0.23761 +v 0.03939 0.05185 0.23791 +v 0.03726 0.05502 0.23765 +v 0.04168 0.04754 0.23776 +v -0.01634 0.04384 0.23937 +v -0.01181 0.04606 0.23931 +v -0.01566 0.03817 0.23832 +v -0.01304 0.03437 0.23797 +v -0.02669 0.06515 0.23939 +v -0.02549 0.06238 0.23950 +v -0.01959 0.07203 0.23891 +v -0.02228 0.07004 0.23932 +v -0.01779 0.07141 0.23885 +v 0.01303 0.08728 0.23827 +v 0.01157 0.08786 0.23868 +v 0.00962 0.08970 0.23881 +v 0.00679 0.08981 0.23923 +v 0.00208 0.08844 0.23867 +v -0.00696 0.08314 0.23898 +v -0.00482 0.08498 0.23905 +v -0.00101 0.08638 0.23862 +v -0.02004 0.07503 0.23933 +v -0.01510 0.07917 0.23994 +v -0.01720 0.07848 0.23983 +v -0.01103 0.07949 0.23960 +v 0.01910 0.08295 0.23758 +v 0.01740 0.08405 0.23776 +v 0.01540 0.08554 0.23794 +v -0.01397 0.04643 0.23937 +v -0.02495 0.05370 0.23934 +v -0.02208 0.05820 0.23985 +v -0.01773 0.04786 0.23904 +v -0.02148 0.04846 0.23884 +v -0.02381 0.05009 0.23889 +v -0.01956 0.04838 0.23896 +v -0.00410 0.02805 0.23851 +v 0.03493 0.06456 0.23853 +v 0.03678 0.05696 0.23750 +v 0.03782 0.06168 0.23808 +v 0.03605 0.06665 0.23840 +v 0.03611 0.07588 0.23855 +v 0.03774 0.07087 0.23840 +v 0.03305 0.07693 0.23872 +v 0.02551 0.08356 0.23698 +v 0.03210 0.07818 0.23858 +v 0.03022 0.08083 0.23761 +v 0.03446 0.02238 0.23732 +v 0.03687 0.01971 0.23702 +v 0.03523 0.02393 0.23768 +v 0.03671 0.02588 0.23762 +v 0.00560 0.02002 0.23750 +v 0.00796 0.01791 0.23732 +v 0.01273 0.01738 0.23751 +v 0.00565 0.02242 0.23789 +v -0.00275 0.02845 0.23861 +v 0.02225 0.02129 0.23806 +v 0.02846 0.01708 0.23648 +v 0.02409 0.01861 0.23725 +v 0.03069 0.01768 0.23641 +v 0.04640 0.03875 0.23751 +v 0.04503 0.03213 0.23776 +v 0.04482 0.04599 0.23747 +v 0.04379 0.03037 0.23772 +v 0.04227 0.05017 0.23779 +v -0.01610 0.04080 0.23877 +v -0.01465 0.04577 0.23952 +v -0.01503 0.03560 0.23805 +v -0.02624 0.06910 0.23926 +v -0.02409 0.05926 0.23995 +v -0.02141 0.07047 0.23920 +v -0.02320 0.07121 0.23925 +v 0.00026 0.08757 0.23851 +v 0.01438 0.08693 0.23782 +v 0.01180 0.08900 0.23826 +v 0.01045 0.08955 0.23857 +v 0.00847 0.09025 0.23907 +v 0.00497 0.09019 0.23915 +v -0.00812 0.08422 0.23889 +v -0.00701 0.08533 0.23897 +v -0.00980 0.08184 0.23898 +v -0.00376 0.08548 0.23895 +v -0.01971 0.07310 0.23901 +v -0.01945 0.07748 0.23964 +v -0.01405 0.07984 0.23985 +v -0.01745 0.08015 0.23966 +v -0.01146 0.08116 0.23909 +v 0.01826 0.08363 0.23749 +v 0.02100 0.08275 0.23718 +v 0.01659 0.08500 0.23765 +v -0.01746 0.04695 0.23928 +v -0.01502 0.04644 0.23954 +v -0.02552 0.05663 0.23973 +v -0.02426 0.05812 0.23990 +v -0.02295 0.04832 0.23886 +v -0.01125 0.03135 0.23788 +v -0.00951 0.02998 0.23793 +v -0.00573 0.02839 0.23832 +v 0.03911 0.05736 0.23757 +v 0.03832 0.06766 0.23840 +v 0.03472 0.07727 0.23865 +v 0.03762 0.07319 0.23842 +v 0.02638 0.08145 0.23695 +v 0.03335 0.07838 0.23872 +v 0.03261 0.08085 0.23807 +v 0.02850 0.08172 0.23725 +v 0.03551 0.01773 0.23674 +v 0.04164 0.02758 0.23756 +v 0.03856 0.02567 0.23761 +v 0.03643 0.02431 0.23784 +v 0.01498 0.01784 0.23752 +v 0.00568 0.01812 0.23720 +v 0.01157 0.01554 0.23738 +v 0.00811 0.01607 0.23723 +v 0.00407 0.02336 0.23821 +v 0.00117 0.02738 0.23888 +v 0.00157 0.02614 0.23866 +v -0.00089 0.02736 0.23875 +v -0.00323 0.02704 0.23857 +v 0.01973 0.01889 0.23745 +v 0.01748 0.01989 0.23783 +v 0.02572 0.01739 0.23686 +v 0.02198 0.02003 0.23773 +v 0.03346 0.01803 0.23655 +v 0.04692 0.03295 0.23768 +v 0.04418 0.03135 0.23777 +v 0.04799 0.04095 0.23729 +v 0.04834 0.04437 0.23734 +v 0.04343 0.02891 0.23774 +v 0.03873 0.05510 0.23755 +v 0.04434 0.04977 0.23771 +v -0.01848 0.04263 0.23909 +v -0.01679 0.03586 0.23799 +v -0.01844 0.04006 0.23862 +v -0.01525 0.03361 0.23806 +v -0.02790 0.06212 0.23952 +v -0.02843 0.06631 0.23937 +v -0.02684 0.07186 0.23894 +v -0.02664 0.06075 0.23963 +v -0.02146 0.07189 0.23914 +v 0.01327 0.08878 0.23780 +v 0.00912 0.09096 0.23880 +v 0.00703 0.09147 0.23950 +v 0.00065 0.09019 0.23855 +v -0.00646 0.08661 0.23885 +v -0.00876 0.08374 0.23880 +v -0.00262 0.08689 0.23851 +v -0.02207 0.07377 0.23932 +v -0.02240 0.07677 0.23956 +v -0.01547 0.08066 0.23961 +v -0.01937 0.07910 0.23969 +v -0.01676 0.08080 0.23955 +v -0.01343 0.08082 0.23945 +v 0.01916 0.08364 0.23713 +v 0.01802 0.08442 0.23720 +v 0.01698 0.08602 0.23716 +v 0.01540 0.08632 0.23743 +v -0.02685 0.05091 0.23902 +v -0.02731 0.05545 0.23958 +v -0.02271 0.04693 0.23905 +v -0.01993 0.04641 0.23933 +v -0.02431 0.04807 0.23887 +v -0.01348 0.03227 0.23795 +v -0.00817 0.02788 0.23830 +v -0.00503 0.02709 0.23851 +v 0.03626 0.06359 0.23841 +v 0.03762 0.06508 0.23839 +v 0.04181 0.06031 0.23794 +v 0.03664 0.07801 0.23852 +v 0.03786 0.07624 0.23858 +v 0.04226 0.07017 0.23826 +v 0.03375 0.07785 0.23875 +v 0.02004 0.08461 0.23685 +v 0.03008 0.08250 0.23742 +v 0.03667 0.02135 0.23726 +v 0.03744 0.01651 0.23678 +v 0.04193 0.02643 0.23764 +v 0.03766 0.02466 0.23768 +v 0.00311 0.02005 0.23738 +v 0.00394 0.02173 0.23784 +v 0.00300 0.01610 0.23672 +v 0.01422 0.01564 0.23726 +v 0.00958 0.01570 0.23738 +v 0.00638 0.01544 0.23692 +v 0.00281 0.02410 0.23830 +v 0.02631 0.01519 0.23650 +v 0.03008 0.01650 0.23621 +v 0.02392 0.01567 0.23674 +v 0.02223 0.01756 0.23714 +v 0.03170 0.01660 0.23630 +v 0.04909 0.03525 0.23750 +v 0.04492 0.03106 0.23787 +v 0.04632 0.03087 0.23776 +v 0.04952 0.04184 0.23717 +v 0.04849 0.03848 0.23740 +v 0.04819 0.04755 0.23754 +v 0.04064 0.05395 0.23748 +v 0.04215 0.05187 0.23770 +v 0.04588 0.05177 0.23767 +v -0.01747 0.04363 0.23928 +v -0.01780 0.04567 0.23943 +v -0.01639 0.03432 0.23802 +v -0.02791 0.07015 0.23913 +v -0.02608 0.05863 0.23980 +v -0.02470 0.07206 0.23913 +v -0.00106 0.08733 0.23843 +v 0.01609 0.08923 0.23714 +v 0.01211 0.09095 0.23790 +v 0.00873 0.09281 0.23859 +v 0.00828 0.09136 0.23911 +v 0.00553 0.09217 0.23937 +v -0.00071 0.08832 0.23828 +v 0.00372 0.09201 0.23916 +v -0.00830 0.08622 0.23902 +v -0.00952 0.08406 0.23883 +v -0.01008 0.08323 0.23883 +v -0.01108 0.08225 0.23888 +v -0.00478 0.08677 0.23868 +v -0.01476 0.08129 0.23940 +v -0.01845 0.08151 0.23952 +v -0.01642 0.08174 0.23944 +v -0.01279 0.08199 0.23908 +v 0.01550 0.08704 0.23724 +v -0.02507 0.04883 0.23876 +v -0.02942 0.05302 0.23924 +v -0.02689 0.05692 0.23976 +v -0.01185 0.02941 0.23807 +v -0.01026 0.02843 0.23815 +v -0.00660 0.02724 0.23846 +v -0.00412 0.02740 0.23859 +v 0.04017 0.05512 0.23742 +v 0.04228 0.05693 0.23764 +v 0.04146 0.06354 0.23824 +v 0.03478 0.07855 0.23861 +v 0.03862 0.07551 0.23862 +v 0.04505 0.06466 0.23820 +v 0.03976 0.07257 0.23834 +v 0.02070 0.08773 0.23677 +v 0.03465 0.08113 0.23820 +v 0.03284 0.08235 0.23784 +v 0.03826 0.02255 0.23746 +v 0.03716 0.01392 0.23667 +v 0.04157 0.01989 0.23714 +v 0.03939 0.02411 0.23760 +v 0.01639 0.01669 0.23725 +v 0.00276 0.01648 0.23674 +v 0.01288 0.01371 0.23718 +v 0.00983 0.01429 0.23748 +v 0.00838 0.01454 0.23733 +v 0.00317 0.02291 0.23811 +v 0.00036 0.02402 0.23806 +v -0.00251 0.02533 0.23826 +v 0.04918 0.03240 0.23759 +v 0.04809 0.03121 0.23759 +v 0.04979 0.04066 0.23709 +v 0.05206 0.04389 0.23731 +v 0.04506 0.02972 0.23788 +v 0.04746 0.05037 0.23768 +v -0.01922 0.04535 0.23945 +v -0.01997 0.04068 0.23877 +v -0.01715 0.03510 0.23784 +v -0.01681 0.03259 0.23836 +v -0.01543 0.03220 0.23823 +v -0.03054 0.06551 0.23949 +v -0.02926 0.06006 0.23954 +v -0.03110 0.06846 0.23922 +v -0.02879 0.07153 0.23909 +v -0.02824 0.05713 0.23971 +v -0.02378 0.07439 0.23938 +v -0.02710 0.07253 0.23896 +v 0.01398 0.09082 0.23744 +v 0.01052 0.09176 0.23815 +v 0.00782 0.09203 0.23918 +v 0.00623 0.09275 0.23936 +v -0.00138 0.08885 0.23807 +v 0.00230 0.09390 0.23925 +v -0.00772 0.08745 0.23890 +v -0.00589 0.08747 0.23850 +v -0.00335 0.08773 0.23815 +v -0.02266 0.07840 0.23964 +v -0.02218 0.08140 0.23949 +v -0.02571 0.04859 0.23881 +v -0.02895 0.05005 0.23907 +v -0.02927 0.05642 0.23971 +v -0.02481 0.04665 0.23901 +v -0.02164 0.04574 0.23926 +v -0.01510 0.03027 0.23826 +v -0.00912 0.02642 0.23845 +v -0.00855 0.02498 0.23843 +v 0.04074 0.05596 0.23741 +v 0.04377 0.05932 0.23795 +v 0.04452 0.06174 0.23811 +v 0.04286 0.06495 0.23827 +v 0.03591 0.08008 0.23837 +v 0.03856 0.07780 0.23854 +v 0.04005 0.07635 0.23866 +v 0.04629 0.06635 0.23822 +v 0.04263 0.07405 0.23831 +v 0.02636 0.09073 0.23720 +v 0.03140 0.08589 0.23751 +v 0.03326 0.01443 0.23645 +v 0.03479 0.01389 0.23660 +v 0.03976 0.01193 0.23655 +v 0.04205 0.01751 0.23698 +v 0.04408 0.02785 0.23774 +v 0.04105 0.02459 0.23763 +v 0.00075 0.01879 0.23672 +v 0.00232 0.02239 0.23787 +v 0.00178 0.01440 0.23646 +v 0.00456 0.01494 0.23673 +v 0.01420 0.01394 0.23712 +v 0.01165 0.01365 0.23735 +v 0.01607 0.01472 0.23699 +v 0.00572 0.01430 0.23684 +v -0.00480 0.02529 0.23832 +v 0.01769 0.01542 0.23687 +v 0.01971 0.01548 0.23678 +v 0.02403 0.01384 0.23658 +v 0.02932 0.01427 0.23617 +v 0.03138 0.01436 0.23621 +v 0.05048 0.03290 0.23744 +v 0.05008 0.03801 0.23739 +v 0.04756 0.02954 0.23757 +v 0.05311 0.04617 0.23736 +v 0.04234 0.05334 0.23753 +v 0.04186 0.05438 0.23740 +v 0.04778 0.05195 0.23759 +v -0.02193 0.04380 0.23915 +v -0.02124 0.04270 0.23906 +v -0.01832 0.03555 0.23810 +v -0.01750 0.03447 0.23801 +v -0.02996 0.06172 0.23956 +v -0.03192 0.06956 0.23926 +v -0.02578 0.07398 0.23927 +v 0.01539 0.09485 0.23759 +v 0.01151 0.09312 0.23787 +v 0.00968 0.09307 0.23825 +v 0.00726 0.09206 0.23939 +v 0.00496 0.09336 0.23935 +v -0.00209 0.08982 0.23802 +v 0.00381 0.09369 0.23940 +v -0.00162 0.09303 0.23864 +v -0.01006 0.08613 0.23918 +v -0.00687 0.08771 0.23868 +v -0.01011 0.08747 0.23933 +v -0.01086 0.08441 0.23895 +v -0.01118 0.08309 0.23885 +v -0.00507 0.08797 0.23817 +v -0.00274 0.08841 0.23793 +v -0.02467 0.07759 0.23968 +v -0.01403 0.08256 0.23911 +v -0.02064 0.08195 0.23949 +v -0.01836 0.08334 0.23946 +v -0.03134 0.05107 0.23913 +v -0.03186 0.05419 0.23933 +v -0.02376 0.04484 0.23913 +v -0.01353 0.02882 0.23817 +v -0.01165 0.02812 0.23817 +v -0.01076 0.02704 0.23827 +v 0.04368 0.05771 0.23790 +v 0.04412 0.06300 0.23821 +v 0.04281 0.06393 0.23832 +v 0.03777 0.07989 0.23837 +v 0.04627 0.07025 0.23836 +v 0.04811 0.06796 0.23825 +v 0.04480 0.07288 0.23824 +v 0.02060 0.09240 0.23699 +v 0.03571 0.08212 0.23809 +v 0.03601 0.08349 0.23796 +v 0.03711 0.01171 0.23670 +v 0.04561 0.01730 0.23689 +v 0.04318 0.02594 0.23762 +v 0.00067 0.02122 0.23732 +v -0.00011 0.01549 0.23616 +v 0.00371 0.01398 0.23669 +v 0.01449 0.01230 0.23711 +v 0.01114 0.01129 0.23755 +v 0.00877 0.01223 0.23752 +v 0.01029 0.01250 0.23754 +v 0.00663 0.01214 0.23722 +v -0.00151 0.02210 0.23740 +v -0.00299 0.02282 0.23759 +v 0.02259 0.01399 0.23659 +v 0.02730 0.01418 0.23637 +v 0.03025 0.01354 0.23615 +v 0.04971 0.02903 0.23724 +v 0.05128 0.03053 0.23726 +v 0.05085 0.03619 0.23743 +v 0.04615 0.02917 0.23778 +v 0.05377 0.04118 0.23737 +v 0.05177 0.03822 0.23748 +v 0.04894 0.04955 0.23753 +v 0.05449 0.04352 0.23733 +v 0.04478 0.05329 0.23761 +v 0.04658 0.05258 0.23766 +v 0.04887 0.05155 0.23745 +v -0.02146 0.03996 0.23882 +v -0.01620 0.03150 0.23844 +v -0.01814 0.03409 0.23819 +v -0.03144 0.06233 0.23965 +v -0.03232 0.06788 0.23935 +v -0.03100 0.06040 0.23969 +v -0.02981 0.05964 0.23953 +v -0.03129 0.07138 0.23929 +v -0.03107 0.07297 0.23942 +v -0.02653 0.07700 0.23964 +v -0.02820 0.07486 0.23940 +v 0.00885 0.09449 0.23835 +v 0.00722 0.09299 0.23912 +v 0.00602 0.09428 0.23913 +v 0.00342 0.09429 0.23951 +v 0.00069 0.09659 0.23924 +v -0.00874 0.08847 0.23897 +v -0.01346 0.08330 0.23902 +v -0.00620 0.08811 0.23839 +v -0.00537 0.08861 0.23814 +v -0.00369 0.08860 0.23787 +v -0.00447 0.08834 0.23803 +v -0.02372 0.07918 0.23963 +v -0.01591 0.08338 0.23931 +v -0.02176 0.08623 0.23975 +v -0.02677 0.04579 0.23910 +v -0.02929 0.04835 0.23907 +v -0.03206 0.05215 0.23913 +v -0.03048 0.05718 0.23970 +v -0.03095 0.05611 0.23964 +v -0.01509 0.02731 0.23798 +v -0.00995 0.02546 0.23841 +v -0.00638 0.02403 0.23820 +v 0.04278 0.05455 0.23750 +v 0.04557 0.06085 0.23809 +v 0.04439 0.05474 0.23769 +v 0.04536 0.05938 0.23815 +v 0.04834 0.06285 0.23800 +v 0.03898 0.08163 0.23828 +v 0.04507 0.07475 0.23813 +v 0.04403 0.07643 0.23815 +v 0.03373 0.09206 0.23801 +v 0.02430 0.09468 0.23729 +v 0.03632 0.08648 0.23793 +v 0.04375 0.02055 0.23710 +v 0.03269 0.01251 0.23650 +v 0.03735 0.00774 0.23679 +v 0.04404 0.01438 0.23685 +v 0.03864 0.01008 0.23675 +v 0.04511 0.02603 0.23749 +v -0.00014 0.01943 0.23678 +v -0.00141 0.01772 0.23643 +v 0.00278 0.01275 0.23671 +v 0.00052 0.01391 0.23618 +v 0.00477 0.01419 0.23669 +v 0.01398 0.01078 0.23721 +v 0.01596 0.01295 0.23698 +v 0.01728 0.01387 0.23675 +v 0.01839 0.01435 0.23662 +v 0.02317 0.01242 0.23665 +v 0.02504 0.01284 0.23652 +v 0.02829 0.01278 0.23637 +v 0.02096 0.01374 0.23659 +v 0.05224 0.03268 0.23734 +v 0.04756 0.02715 0.23734 +v 0.05232 0.03963 0.23737 +v 0.05549 0.04635 0.23725 +v 0.05101 0.04907 0.23742 +v 0.04769 0.05374 0.23773 +v 0.04898 0.05268 0.23754 +v -0.02325 0.04197 0.23905 +v -0.02271 0.03907 0.23892 +v -0.01695 0.03168 0.23851 +v -0.01877 0.03321 0.23834 +v -0.01686 0.03074 0.23844 +v -0.03208 0.06493 0.23962 +v -0.03363 0.06637 0.23961 +v -0.03397 0.06843 0.23938 +v -0.03501 0.07117 0.23944 +v 0.02194 0.09671 0.23754 +v 0.01078 0.09566 0.23804 +v 0.00736 0.09460 0.23876 +v 0.00433 0.09461 0.23939 +v -0.00395 0.08988 0.23803 +v -0.00320 0.08907 0.23779 +v 0.00307 0.09434 0.23952 +v -0.00082 0.09782 0.23936 +v 0.00324 0.09589 0.23931 +v -0.01139 0.08721 0.23952 +v -0.00706 0.08876 0.23855 +v -0.01046 0.08848 0.23927 +v -0.01457 0.08512 0.23928 +v -0.02595 0.07830 0.23974 +v -0.02365 0.08130 0.23947 +v -0.02319 0.08489 0.23966 +v -0.01958 0.08528 0.23954 +v -0.01724 0.08583 0.23941 +v -0.02897 0.04543 0.23919 +v -0.03135 0.04828 0.23911 +v -0.03474 0.05088 0.23885 +v -0.03423 0.05713 0.23993 +v -0.02467 0.04289 0.23911 +v -0.01255 0.02696 0.23814 +v -0.01686 0.02902 0.23819 +v -0.01112 0.02530 0.23825 +v -0.01134 0.02013 0.23771 +v -0.00901 0.02192 0.23804 +v 0.04948 0.06182 0.23797 +v 0.04566 0.05729 0.23819 +v 0.04529 0.05844 0.23820 +v 0.03773 0.08394 0.23796 +v 0.04027 0.08054 0.23837 +v 0.04714 0.07121 0.23832 +v 0.04631 0.07414 0.23810 +v 0.04178 0.07805 0.23838 +v 0.02834 0.09794 0.23817 +v 0.03562 0.00728 0.23677 +v 0.04109 0.01141 0.23662 +v 0.04031 0.01039 0.23666 +v 0.04814 0.01370 0.23672 +v 0.04731 0.02072 0.23690 +v 0.04771 0.02424 0.23703 +v -0.00078 0.02073 0.23702 +v -0.00216 0.01580 0.23605 +v 0.00453 0.01230 0.23694 +v 0.00112 0.01270 0.23649 +v -0.00037 0.01393 0.23595 +v 0.01700 0.01029 0.23713 +v 0.01709 0.01145 0.23703 +v 0.01004 0.01107 0.23765 +v 0.01403 0.00917 0.23718 +v 0.00900 0.01129 0.23762 +v 0.00800 0.01084 0.23745 +v -0.00366 0.02168 0.23744 +v 0.01922 0.01354 0.23656 +v 0.02202 0.01310 0.23657 +v 0.02912 0.01117 0.23656 +v 0.03119 0.01132 0.23657 +v 0.05090 0.02938 0.23716 +v 0.05360 0.03009 0.23724 +v 0.05454 0.03520 0.23741 +v 0.04977 0.02448 0.23680 +v 0.05386 0.03828 0.23746 +v 0.05643 0.04150 0.23736 +v 0.04945 0.05172 0.23737 +v 0.05431 0.04830 0.23732 +v 0.05626 0.04396 0.23722 +v 0.05278 0.04976 0.23733 +v 0.04608 0.05434 0.23778 +v -0.02059 0.03560 0.23842 +v -0.01939 0.03433 0.23828 +v -0.01811 0.03186 0.23842 +v -0.03326 0.06085 0.24013 +v -0.03381 0.06448 0.23986 +v -0.03149 0.05759 0.23980 +v -0.03567 0.06944 0.23945 +v -0.03665 0.07223 0.23955 +v -0.03150 0.07451 0.23960 +v -0.02956 0.07651 0.23962 +v 0.02154 0.10288 0.23844 +v 0.01199 0.10264 0.23843 +v 0.00836 0.09678 0.23843 +v 0.00518 0.09588 0.23904 +v -0.00469 0.09223 0.23843 +v 0.00332 0.09466 0.23949 +v 0.00031 0.09823 0.23932 +v -0.00405 0.09527 0.23891 +v 0.00286 0.09715 0.23925 +v -0.01093 0.08791 0.23949 +v -0.00777 0.08979 0.23862 +v -0.00971 0.09008 0.23882 +v -0.00620 0.08879 0.23829 +v -0.02830 0.07789 0.23963 +v -0.02471 0.07983 0.23955 +v -0.02386 0.08310 0.23952 +v -0.02310 0.08644 0.23961 +v -0.01989 0.08699 0.23945 +v -0.02697 0.04393 0.23919 +v -0.03049 0.04583 0.23924 +v -0.03395 0.04823 0.23897 +v -0.03467 0.05291 0.23915 +v -0.03380 0.05917 0.24012 +v -0.01381 0.02532 0.23785 +v -0.01810 0.02696 0.23771 +v -0.00626 0.02130 0.23775 +v 0.04660 0.06043 0.23817 +v 0.04627 0.05827 0.23841 +v 0.04984 0.06818 0.23817 +v 0.04079 0.08301 0.23840 +v 0.03889 0.08431 0.23802 +v 0.04769 0.07679 0.23769 +v 0.04209 0.08088 0.23830 +v 0.03853 0.09042 0.23830 +v 0.03472 0.09668 0.23844 +v 0.03990 0.00784 0.23673 +v 0.03722 0.00632 0.23691 +v 0.04299 0.01021 0.23663 +v 0.04568 0.01153 0.23680 +v 0.05136 0.01837 0.23673 +v 0.04848 0.02294 0.23688 +v -0.00214 0.01993 0.23692 +v -0.00298 0.01774 0.23657 +v -0.00149 0.01426 0.23586 +v 0.00374 0.01107 0.23702 +v 0.00001 0.01310 0.23613 +v 0.01755 0.01256 0.23680 +v 0.01149 0.00904 0.23734 +v 0.00581 0.01091 0.23721 +v 0.01815 0.01338 0.23659 +v 0.02156 0.01222 0.23666 +v 0.02475 0.01169 0.23669 +v 0.02660 0.01073 0.23668 +v 0.01994 0.01236 0.23666 +v 0.05164 0.02865 0.23708 +v 0.05459 0.03174 0.23736 +v 0.05125 0.02614 0.23685 +v 0.05700 0.04944 0.23740 +v 0.05643 0.04586 0.23715 +v 0.05078 0.05146 0.23738 +v 0.05176 0.05018 0.23738 +v 0.04729 0.05712 0.23832 +v 0.05062 0.05319 0.23761 +v 0.05050 0.05215 0.23737 +v -0.02459 0.04070 0.23922 +v -0.02338 0.03772 0.23899 +v -0.02045 0.03248 0.23832 +v -0.01825 0.02954 0.23824 +v -0.03217 0.05932 0.23992 +v -0.03626 0.06743 0.23965 +v -0.03593 0.07389 0.23969 +v -0.03787 0.07065 0.23942 +v 0.00554 0.09734 0.23875 +v -0.00605 0.08999 0.23831 +v 0.00162 0.09812 0.23919 +v -0.00099 0.09917 0.23945 +v -0.00328 0.09750 0.23921 +v -0.01346 0.08836 0.23955 +v -0.01349 0.08764 0.23957 +v -0.00889 0.08948 0.23884 +v -0.01121 0.08946 0.23910 +v -0.02748 0.07911 0.23958 +v -0.02564 0.08137 0.23922 +v -0.02552 0.08473 0.23951 +v -0.02270 0.08817 0.23914 +v -0.02463 0.08569 0.23963 +v -0.02127 0.08756 0.23936 +v -0.01761 0.08756 0.23934 +v -0.01507 0.08673 0.23945 +v -0.02821 0.04342 0.23926 +v -0.02961 0.04368 0.23922 +v -0.03676 0.04879 0.23878 +v -0.03632 0.05135 0.23890 +v -0.03802 0.05653 0.23972 +v -0.03578 0.05993 0.24021 +v -0.02533 0.04217 0.23924 +v -0.01589 0.02386 0.23733 +v -0.01236 0.02135 0.23767 +v -0.01139 0.01743 0.23744 +v -0.00823 0.02013 0.23780 +v 0.05069 0.06056 0.23808 +v 0.04654 0.05903 0.23840 +v 0.05362 0.06831 0.23809 +v 0.04899 0.07339 0.23799 +v 0.04927 0.07184 0.23809 +v 0.04915 0.07623 0.23755 +v 0.03902 0.08901 0.23820 +v 0.03945 0.09283 0.23859 +v 0.03292 0.09877 0.23857 +v 0.03713 0.09466 0.23841 +v 0.03175 0.00824 0.23675 +v 0.03865 0.00707 0.23680 +v 0.03636 0.00557 0.23701 +v 0.04305 0.00683 0.23658 +v 0.04739 0.00995 0.23661 +v 0.05316 0.01438 0.23657 +v 0.04996 0.02095 0.23675 +v -0.00494 0.01546 0.23619 +v -0.00316 0.01438 0.23587 +v -0.00134 0.01301 0.23595 +v -0.00038 0.01206 0.23640 +v 0.02044 0.01097 0.23681 +v 0.01872 0.01200 0.23677 +v 0.00907 0.01058 0.23759 +v 0.00963 0.00969 0.23748 +v -0.00453 0.01920 0.23713 +v 0.01869 0.01273 0.23660 +v 0.02199 0.01100 0.23679 +v 0.02461 0.01078 0.23689 +v 0.02691 0.00892 0.23678 +v 0.05384 0.02753 0.23702 +v 0.05560 0.02950 0.23738 +v 0.05600 0.03223 0.23739 +v 0.05753 0.03947 0.23735 +v 0.05242 0.02320 0.23640 +v 0.05905 0.04207 0.23710 +v 0.05905 0.04369 0.23696 +v 0.05237 0.05201 0.23751 +v 0.04867 0.05735 0.23839 +v 0.05048 0.05601 0.23811 +v -0.02504 0.03861 0.23922 +v -0.02430 0.03693 0.23904 +v -0.02093 0.03473 0.23844 +v -0.02000 0.03095 0.23824 +v -0.03488 0.06187 0.24028 +v -0.03584 0.06354 0.24019 +v -0.03831 0.06874 0.23952 +v -0.03711 0.07399 0.23978 +v -0.04060 0.07150 0.23946 +v -0.03320 0.07596 0.23974 +v -0.03088 0.07766 0.23958 +v 0.01946 0.10855 0.23894 +v 0.02667 0.10337 0.23878 +v 0.00698 0.09893 0.23847 +v -0.00638 0.09180 0.23847 +v -0.00781 0.09634 0.23911 +v 0.00075 0.09942 0.23911 +v -0.00199 0.09806 0.23932 +v -0.00077 0.09949 0.23940 +v -0.00566 0.09702 0.23919 +v 0.00160 0.10071 0.23876 +v -0.01381 0.08931 0.23934 +v -0.00822 0.09075 0.23865 +v -0.01159 0.09090 0.23887 +v -0.02939 0.07856 0.23948 +v -0.02636 0.08079 0.23916 +v -0.02672 0.08264 0.23913 +v -0.02820 0.08020 0.23916 +v -0.02416 0.08671 0.23951 +v -0.02045 0.08842 0.23919 +v -0.01875 0.08871 0.23922 +v -0.02680 0.04277 0.23933 +v -0.03290 0.04421 0.23906 +v -0.03695 0.04402 0.23889 +v -0.01326 0.02327 0.23769 +v -0.01984 0.02917 0.23802 +v -0.01998 0.02382 0.23681 +v -0.01366 0.01966 0.23732 +v -0.01312 0.01821 0.23742 +v -0.00657 0.01924 0.23752 +v 0.05170 0.06223 0.23801 +v 0.04860 0.05906 0.23845 +v 0.04741 0.05854 0.23848 +v 0.05449 0.07155 0.23796 +v 0.04292 0.08382 0.23829 +v 0.04001 0.08469 0.23820 +v 0.05139 0.07155 0.23802 +v 0.04840 0.07948 0.23767 +v 0.04902 0.07741 0.23750 +v 0.04165 0.09061 0.23840 +v 0.04057 0.09186 0.23850 +v 0.03119 0.10036 0.23873 +v 0.03501 0.09817 0.23857 +v 0.03731 0.09653 0.23839 +v 0.04004 0.08684 0.23830 +v 0.03284 0.00617 0.23703 +v 0.03978 0.00637 0.23682 +v 0.03741 0.00509 0.23742 +v 0.03550 0.00543 0.23706 +v 0.03875 0.00578 0.23708 +v 0.04574 0.00901 0.23656 +v 0.04110 0.00591 0.23684 +v 0.05043 0.00784 0.23638 +v 0.05220 0.00898 0.23638 +v 0.05852 0.01657 0.23644 +v 0.05297 0.02079 0.23660 +v 0.05100 0.02203 0.23664 +v -0.00597 0.01728 0.23694 +v 0.02026 0.00855 0.23687 +v 0.02908 0.00788 0.23680 +v 0.02440 0.01021 0.23695 +v 0.05557 0.02821 0.23720 +v 0.05768 0.03480 0.23739 +v 0.05366 0.02470 0.23664 +v 0.05475 0.05188 0.23756 +v 0.05968 0.04643 0.23699 +v 0.04798 0.05806 0.23852 +v 0.05225 0.05515 0.23798 +v -0.02590 0.03944 0.23947 +v -0.02301 0.03382 0.23851 +v -0.02341 0.03005 0.23798 +v -0.03827 0.06578 0.23990 +v -0.03578 0.07563 0.23973 +v -0.03820 0.07373 0.23974 +v -0.04033 0.06978 0.23938 +v -0.03197 0.07765 0.23960 +v 0.01553 0.10841 0.23895 +v 0.02111 0.10696 0.23878 +v 0.02491 0.10527 0.23873 +v 0.02926 0.10176 0.23884 +v 0.00565 0.10131 0.23834 +v 0.00470 0.09858 0.23868 +v -0.00196 0.09922 0.23921 +v -0.00432 0.09835 0.23919 +v -0.00260 0.09843 0.23927 +v -0.01463 0.08804 0.23950 +v -0.01241 0.09057 0.23894 +v -0.01050 0.09136 0.23875 +v -0.00952 0.09204 0.23874 +v -0.02962 0.07978 0.23911 +v -0.02719 0.08554 0.23952 +v -0.02799 0.08322 0.23911 +v -0.02614 0.08714 0.23933 +v -0.02506 0.08631 0.23958 +v -0.01760 0.09069 0.23902 +v -0.02787 0.04219 0.23939 +v -0.02917 0.04191 0.23926 +v -0.03108 0.04144 0.23912 +v -0.04011 0.04581 0.23872 +v -0.03792 0.05063 0.23885 +v -0.04246 0.05611 0.23974 +v -0.03819 0.05967 0.24010 +v -0.02599 0.04098 0.23953 +v -0.02673 0.04172 0.23957 +v -0.01520 0.02112 0.23702 +v -0.02122 0.02691 0.23743 +v -0.01786 0.02072 0.23647 +v -0.01378 0.02126 0.23735 +v -0.01319 0.01631 0.23735 +v -0.01035 0.01661 0.23730 +v 0.05284 0.05991 0.23806 +v 0.05180 0.05947 0.23813 +v 0.05496 0.06787 0.23803 +v 0.04144 0.08463 0.23832 +v 0.05106 0.07360 0.23794 +v 0.04997 0.07529 0.23762 +v 0.05101 0.07690 0.23738 +v 0.03989 0.08808 0.23828 +v 0.04037 0.09304 0.23861 +v 0.03893 0.09549 0.23837 +v 0.03321 0.10019 0.23870 +v 0.03455 0.09930 0.23858 +v 0.03624 0.09772 0.23858 +v 0.03656 0.09754 0.23847 +v 0.03092 0.00620 0.23709 +v 0.03436 0.00607 0.23697 +v 0.03624 0.00486 0.23737 +v 0.03604 0.00522 0.23704 +v 0.04525 0.00695 0.23645 +v 0.04250 0.00589 0.23670 +v 0.04869 0.00844 0.23651 +v 0.04716 0.00766 0.23650 +v 0.05617 0.00871 0.23636 +v 0.05768 0.01395 0.23639 +v 0.05400 0.01889 0.23664 +v -0.00745 0.01503 0.23659 +v -0.00492 0.01444 0.23602 +v -0.00417 0.01298 0.23600 +v -0.00158 0.01202 0.23630 +v 0.05812 0.02937 0.23728 +v 0.05853 0.03194 0.23729 +v 0.05867 0.03714 0.23741 +v 0.05338 0.02271 0.23648 +v 0.05952 0.03921 0.23735 +v 0.06022 0.04320 0.23684 +v 0.05619 0.05319 0.23782 +v 0.06032 0.04997 0.23741 +v 0.06022 0.04431 0.23680 +v 0.04821 0.05869 0.23850 +v 0.04916 0.05818 0.23849 +v 0.05292 0.05635 0.23806 +v -0.02714 0.03868 0.23928 +v -0.02584 0.03666 0.23902 +v -0.03749 0.06189 0.24021 +v -0.03894 0.06334 0.24007 +v -0.04042 0.06867 0.23942 +v -0.03771 0.07552 0.23980 +v -0.04079 0.07395 0.23981 +v -0.04320 0.07073 0.23933 +v -0.03428 0.07688 0.23968 +v -0.03089 0.07894 0.23934 +v 0.01672 0.11039 0.23912 +v 0.01338 0.11011 0.23894 +v 0.02201 0.10828 0.23881 +v 0.02331 0.10580 0.23870 +v 0.02608 0.10475 0.23886 +v 0.02327 0.10474 0.23868 +v 0.02856 0.10349 0.23892 +v 0.00564 0.10005 0.23839 +v 0.00551 0.10499 0.23848 +v -0.00777 0.09260 0.23867 +v -0.00801 0.09789 0.23922 +v 0.00023 0.10083 0.23887 +v -0.00050 0.10000 0.23913 +v -0.00143 0.10005 0.23902 +v -0.00593 0.09792 0.23925 +v -0.00313 0.09895 0.23914 +v 0.00288 0.10180 0.23855 +v -0.01510 0.09004 0.23923 +v -0.01408 0.09088 0.23909 +v -0.01127 0.09242 0.23884 +v -0.02837 0.08135 0.23897 +v -0.02952 0.08076 0.23887 +v -0.02674 0.08648 0.23948 +v -0.02125 0.08951 0.23897 +v -0.02484 0.08838 0.23904 +v -0.01959 0.08995 0.23906 +v -0.03316 0.04195 0.23905 +v -0.03973 0.04327 0.23882 +v -0.03895 0.04852 0.23876 +v -0.03994 0.05085 0.23896 +v -0.03989 0.05991 0.24014 +v -0.02208 0.02002 0.23573 +v -0.02487 0.02474 0.23672 +v -0.01545 0.01684 0.23722 +v -0.01428 0.02051 0.23716 +v -0.01148 0.01537 0.23721 +v -0.00925 0.01548 0.23698 +v 0.05659 0.06192 0.23802 +v 0.05871 0.07120 0.23792 +v 0.05255 0.07286 0.23789 +v 0.04553 0.08501 0.23819 +v 0.04270 0.08496 0.23833 +v 0.04138 0.08644 0.23847 +v 0.04128 0.08902 0.23845 +v 0.04223 0.09265 0.23836 +v 0.03080 0.10203 0.23891 +v 0.03224 0.10143 0.23877 +v 0.03563 0.09927 0.23844 +v 0.03611 0.09814 0.23852 +v 0.03807 0.09776 0.23816 +v 0.04146 0.08760 0.23864 +v 0.03196 0.00515 0.23742 +v 0.03370 0.00547 0.23715 +v 0.04008 0.00546 0.23706 +v 0.03696 0.00456 0.23779 +v 0.03859 0.00476 0.23781 +v 0.03442 0.00499 0.23739 +v 0.04618 0.00750 0.23643 +v 0.04456 0.00563 0.23671 +v 0.04351 0.00556 0.23676 +v 0.04216 0.00510 0.23694 +v 0.05167 0.00718 0.23630 +v 0.04950 0.00699 0.23651 +v 0.05307 0.00657 0.23641 +v 0.05537 0.01209 0.23648 +v 0.05898 0.01447 0.23628 +v 0.05708 0.02073 0.23642 +v 0.05503 0.02165 0.23654 +v -0.00685 0.01393 0.23626 +v -0.00330 0.01172 0.23646 +v 0.02930 0.00568 0.23717 +v 0.05600 0.02484 0.23672 +v 0.05915 0.02748 0.23715 +v 0.05919 0.03454 0.23742 +v 0.05989 0.03629 0.23752 +v 0.05518 0.02302 0.23654 +v 0.06003 0.04102 0.23717 +v 0.05901 0.05302 0.23797 +v 0.06419 0.04824 0.23691 +v 0.06171 0.04489 0.23671 +v 0.05108 0.05784 0.23825 +v 0.05707 0.05465 0.23800 +v -0.02683 0.04026 0.23954 +v -0.02649 0.03526 0.23880 +v -0.02529 0.03363 0.23857 +v -0.02640 0.03180 0.23839 +v -0.04003 0.06631 0.23973 +v -0.03728 0.07643 0.23969 +v -0.03969 0.07499 0.23986 +v -0.04312 0.06885 0.23921 +v -0.04200 0.06828 0.23936 +v -0.03283 0.07949 0.23935 +v -0.03550 0.07774 0.23951 +v -0.03151 0.07955 0.23924 +v 0.01811 0.11045 0.23904 +v 0.01546 0.11093 0.23914 +v 0.01052 0.10910 0.23874 +v 0.02063 0.10964 0.23885 +v 0.02658 0.10526 0.23877 +v 0.03039 0.10277 0.23894 +v 0.02784 0.10467 0.23877 +v 0.00438 0.10071 0.23850 +v -0.00956 0.09458 0.23893 +v -0.00902 0.09774 0.23911 +v 0.00052 0.10213 0.23869 +v -0.00197 0.10051 0.23879 +v -0.00622 0.09868 0.23915 +v -0.00412 0.09995 0.23887 +v -0.01376 0.09142 0.23899 +v -0.02987 0.08249 0.23902 +v -0.02785 0.08631 0.23966 +v -0.02237 0.08932 0.23897 +v -0.02390 0.08932 0.23892 +v -0.02710 0.08812 0.23903 +v -0.02037 0.09176 0.23899 +v -0.02685 0.04120 0.23960 +v -0.02947 0.03939 0.23913 +v -0.03329 0.03875 0.23885 +v -0.03562 0.03953 0.23880 +v -0.04130 0.04384 0.23864 +v -0.03804 0.04198 0.23886 +v -0.04185 0.04738 0.23874 +v -0.04363 0.05774 0.23990 +v -0.04409 0.05281 0.23938 +v -0.04000 0.06120 0.24006 +v -0.01603 0.01955 0.23676 +v -0.01763 0.01872 0.23631 +v -0.01504 0.01957 0.23701 +v -0.01364 0.01402 0.23728 +v -0.01486 0.01561 0.23726 +v 0.05719 0.05770 0.23801 +v 0.05859 0.06755 0.23790 +v 0.05651 0.07345 0.23794 +v 0.05419 0.07322 0.23785 +v 0.05287 0.08286 0.23771 +v 0.05207 0.07576 0.23726 +v 0.05204 0.07422 0.23768 +v 0.05324 0.07905 0.23744 +v 0.04270 0.08935 0.23857 +v 0.04306 0.09154 0.23832 +v 0.04151 0.09409 0.23835 +v 0.04101 0.09590 0.23818 +v 0.03374 0.10122 0.23858 +v 0.03450 0.10065 0.23858 +v 0.03702 0.09851 0.23826 +v 0.03964 0.09853 0.23784 +v 0.03059 0.00465 0.23774 +v 0.03318 0.00487 0.23752 +v 0.04091 0.00485 0.23734 +v 0.03982 0.00471 0.23768 +v 0.03769 0.00428 0.23858 +v 0.03620 0.00427 0.23814 +v 0.03537 0.00478 0.23744 +v 0.04663 0.00652 0.23646 +v 0.04555 0.00570 0.23656 +v 0.04298 0.00503 0.23693 +v 0.04158 0.00502 0.23708 +v 0.05080 0.00657 0.23636 +v 0.04837 0.00641 0.23671 +v 0.05490 0.00716 0.23639 +v 0.05996 0.01267 0.23602 +v 0.06097 0.01633 0.23605 +v 0.05914 0.01821 0.23627 +v -0.00870 0.01376 0.23654 +v -0.00558 0.01316 0.23603 +v -0.00488 0.01219 0.23621 +v 0.06118 0.02144 0.23625 +v 0.06027 0.02847 0.23720 +v 0.06004 0.02976 0.23714 +v 0.06096 0.03201 0.23713 +v 0.06281 0.04039 0.23727 +v 0.06205 0.04228 0.23696 +v 0.05950 0.05457 0.23826 +v 0.06171 0.05249 0.23781 +v -0.02840 0.03660 0.23891 +v -0.02858 0.03043 0.23825 +v -0.04028 0.06477 0.23984 +v -0.04354 0.06605 0.23964 +v -0.03908 0.07623 0.23973 +v -0.04081 0.07502 0.23993 +v -0.04426 0.07298 0.23967 +v -0.04565 0.06951 0.23912 +v -0.04281 0.06734 0.23947 +v 0.01759 0.11129 0.23899 +v 0.01644 0.11147 0.23915 +v 0.01477 0.11170 0.23909 +v 0.01262 0.11138 0.23897 +v 0.02218 0.10952 0.23863 +v 0.02391 0.10757 0.23864 +v 0.02611 0.10612 0.23863 +v 0.02465 0.10684 0.23861 +v 0.02981 0.10383 0.23875 +v 0.00799 0.11069 0.23864 +v -0.00800 0.09837 0.23918 +v -0.00101 0.10082 0.23886 +v -0.00104 0.10212 0.23873 +v -0.00349 0.10077 0.23870 +v 0.00018 0.10435 0.23860 +v -0.01559 0.09189 0.23909 +v -0.01390 0.09253 0.23901 +v -0.02869 0.08576 0.23960 +v -0.02739 0.08716 0.23938 +v -0.02300 0.09105 0.23894 +v -0.02547 0.09014 0.23888 +v -0.02704 0.08885 0.23888 +v -0.01756 0.09457 0.23902 +v -0.04265 0.04547 0.23863 +v -0.04159 0.04235 0.23883 +v -0.04093 0.04121 0.23896 +v -0.04256 0.05993 0.23998 +v -0.04575 0.05501 0.23966 +v -0.04443 0.04821 0.23888 +v -0.02985 0.02849 0.23786 +v -0.02134 0.01666 0.23546 +v -0.02706 0.01967 0.23518 +v -0.01614 0.01801 0.23685 +v -0.01203 0.01337 0.23715 +v -0.01628 0.01607 0.23703 +v -0.01045 0.01334 0.23684 +v 0.05785 0.05988 0.23799 +v 0.06374 0.07061 0.23794 +v 0.06048 0.07383 0.23797 +v 0.05329 0.07415 0.23768 +v 0.04234 0.08734 0.23864 +v 0.05094 0.08743 0.23818 +v 0.05234 0.07542 0.23732 +v 0.05248 0.07622 0.23721 +v 0.05374 0.07680 0.23744 +v 0.04217 0.08826 0.23864 +v 0.04377 0.09310 0.23836 +v 0.04268 0.09470 0.23827 +v 0.03111 0.10285 0.23873 +v 0.03156 0.10214 0.23882 +v 0.03213 0.10235 0.23862 +v 0.03569 0.10070 0.23821 +v 0.03806 0.09938 0.23785 +v 0.03225 0.00423 0.23808 +v 0.03574 0.00445 0.23780 +v 0.03930 0.00430 0.23864 +v 0.03497 0.00440 0.23796 +v 0.04589 0.00615 0.23640 +v 0.04400 0.00482 0.23726 +v 0.04507 0.00506 0.23691 +v 0.04258 0.00474 0.23709 +v 0.04207 0.00459 0.23750 +v 0.05226 0.00576 0.23641 +v 0.04981 0.00577 0.23675 +v 0.05469 0.00583 0.23666 +v 0.05618 0.00775 0.23638 +v 0.05773 0.01146 0.23631 +v 0.06039 0.01914 0.23608 +v -0.00819 0.01245 0.23640 +v -0.00663 0.01242 0.23624 +v -0.00488 0.01139 0.23661 +v 0.05805 0.02229 0.23641 +v 0.06171 0.02673 0.23704 +v 0.06233 0.02402 0.23671 +v 0.06023 0.03541 0.23753 +v 0.06115 0.03501 0.23747 +v 0.06204 0.04370 0.23668 +v 0.06056 0.05454 0.23822 +v 0.06412 0.04505 0.23668 +v 0.06339 0.05267 0.23759 +v 0.05871 0.05671 0.23809 +v -0.02769 0.03310 0.23856 +v -0.03135 0.03622 0.23877 +v -0.02960 0.03215 0.23858 +v -0.04140 0.06168 0.23988 +v -0.04231 0.06503 0.23972 +v -0.04128 0.06325 0.23982 +v -0.03768 0.07722 0.23949 +v -0.04063 0.07597 0.23986 +v -0.04310 0.07458 0.23986 +v -0.04558 0.07178 0.23942 +v -0.04557 0.06799 0.23919 +v -0.04282 0.06834 0.23925 +v -0.03423 0.07990 0.23934 +v -0.03077 0.08129 0.23896 +v 0.01940 0.11106 0.23882 +v 0.01614 0.11190 0.23916 +v 0.01427 0.11240 0.23890 +v 0.01312 0.11236 0.23885 +v 0.01188 0.11193 0.23884 +v 0.02125 0.11054 0.23854 +v 0.02299 0.10896 0.23862 +v 0.02310 0.10818 0.23873 +v 0.02694 0.10612 0.23851 +v 0.02580 0.10691 0.23841 +v 0.02891 0.10515 0.23845 +v 0.00480 0.11083 0.23856 +v 0.01046 0.11174 0.23874 +v 0.00302 0.10348 0.23849 +v -0.01075 0.09695 0.23912 +v -0.00704 0.09896 0.23910 +v -0.00859 0.09915 0.23895 +v -0.00236 0.10077 0.23866 +v -0.00655 0.10065 0.23859 +v -0.00543 0.10136 0.23857 +v -0.01231 0.09494 0.23904 +v -0.03012 0.08474 0.23948 +v -0.02819 0.08658 0.23962 +v -0.02859 0.08861 0.23913 +v -0.02877 0.08777 0.23940 +v -0.02069 0.09611 0.23913 +v -0.03857 0.04010 0.23887 +v -0.04227 0.04330 0.23864 +v -0.04584 0.05676 0.23976 +v -0.04688 0.05082 0.23935 +v -0.04749 0.05303 0.23968 +v -0.02874 0.02649 0.23730 +v -0.02444 0.01680 0.23479 +v -0.01929 0.01604 0.23602 +v -0.02928 0.02285 0.23637 +v -0.01284 0.01223 0.23727 +v -0.01514 0.01370 0.23724 +v -0.01645 0.01410 0.23706 +v 0.05872 0.05826 0.23802 +v 0.06073 0.06549 0.23774 +v 0.05812 0.07496 0.23805 +v 0.05476 0.07431 0.23778 +v 0.04307 0.08835 0.23872 +v 0.05630 0.08788 0.23811 +v 0.04630 0.08886 0.23851 +v 0.05542 0.08094 0.23751 +v 0.05290 0.07581 0.23726 +v 0.05252 0.07591 0.23715 +v 0.05422 0.07797 0.23744 +v 0.04422 0.08987 0.23857 +v 0.04458 0.09157 0.23851 +v 0.04338 0.09900 0.23790 +v 0.03425 0.10216 0.23820 +v 0.03516 0.10190 0.23806 +v 0.03693 0.10038 0.23795 +v 0.03883 0.09975 0.23758 +v 0.03118 0.00394 0.23857 +v 0.03313 0.00426 0.23796 +v 0.03387 0.00428 0.23811 +v 0.03584 0.00388 0.23921 +v 0.04618 0.00571 0.23652 +v 0.04608 0.00507 0.23692 +v 0.04300 0.00463 0.23729 +v 0.05269 0.00517 0.23669 +v 0.05084 0.00570 0.23658 +v 0.04915 0.00485 0.23743 +v 0.04740 0.00589 0.23669 +v 0.05541 0.00651 0.23643 +v 0.05361 0.00532 0.23679 +v 0.05759 0.00820 0.23632 +v 0.05922 0.01044 0.23618 +v 0.06198 0.01369 0.23583 +v -0.00941 0.01269 0.23652 +v -0.00625 0.01161 0.23649 +v 0.06077 0.02013 0.23606 +v 0.06225 0.02961 0.23688 +v 0.06233 0.02818 0.23703 +v 0.06388 0.02109 0.23623 +v 0.06443 0.03789 0.23732 +v 0.06337 0.03285 0.23706 +v 0.06367 0.03912 0.23735 +v 0.06521 0.04126 0.23726 +v 0.06387 0.04368 0.23675 +v 0.05968 0.05521 0.23831 +v 0.05906 0.05558 0.23818 +v 0.06594 0.04503 0.23668 +v 0.06554 0.05359 0.23727 +v 0.06204 0.05440 0.23813 +v -0.03215 0.02902 0.23807 +v -0.03140 0.03165 0.23843 +v -0.04362 0.06526 0.23971 +v -0.04405 0.06744 0.23937 +v -0.03929 0.07715 0.23943 +v -0.03605 0.07858 0.23940 +v -0.04270 0.07569 0.23981 +v -0.04465 0.07460 0.23989 +v -0.04752 0.07080 0.23920 +v -0.04710 0.06837 0.23907 +v -0.03239 0.08260 0.23932 +v 0.01925 0.11249 0.23836 +v 0.01711 0.11202 0.23891 +v 0.01524 0.11253 0.23899 +v 0.02262 0.11011 0.23828 +v 0.02284 0.10957 0.23848 +v 0.02370 0.10892 0.23849 +v 0.02464 0.10762 0.23852 +v 0.02522 0.10766 0.23834 +v 0.03185 0.10363 0.23819 +v 0.03048 0.10448 0.23825 +v 0.00643 0.11256 0.23866 +v 0.00108 0.10858 0.23850 +v 0.00984 0.11297 0.23860 +v -0.01029 0.09863 0.23904 +v -0.00224 0.10492 0.23878 +v -0.00259 0.10155 0.23864 +v -0.00045 0.10643 0.23854 +v -0.01566 0.09547 0.23910 +v -0.02984 0.08624 0.23969 +v -0.02899 0.08658 0.23967 +v -0.02583 0.09367 0.23912 +v -0.02738 0.09092 0.23890 +v -0.02818 0.08949 0.23896 +v -0.01916 0.09719 0.23906 +v -0.03598 0.03388 0.23853 +v -0.03711 0.03726 0.23871 +v -0.04429 0.04381 0.23852 +v -0.04193 0.04125 0.23897 +v -0.04511 0.04157 0.23849 +v -0.04246 0.03908 0.23895 +v -0.04444 0.04569 0.23862 +v -0.04529 0.05952 0.23971 +v -0.04682 0.05592 0.23968 +v -0.04918 0.04696 0.23907 +v -0.04726 0.05476 0.23972 +v -0.04260 0.06070 0.23987 +v -0.01767 0.01718 0.23638 +v -0.03139 0.02761 0.23780 +v -0.02292 0.01457 0.23534 +v -0.02010 0.01483 0.23601 +v -0.02668 0.01651 0.23458 +v -0.02897 0.02050 0.23542 +v -0.01441 0.01161 0.23740 +v -0.01146 0.01195 0.23710 +v -0.01781 0.01516 0.23664 +v 0.06040 0.06011 0.23788 +v 0.06278 0.06267 0.23774 +v 0.06259 0.06548 0.23773 +v 0.06416 0.07374 0.23792 +v 0.05788 0.07708 0.23811 +v 0.05889 0.07786 0.23818 +v 0.05579 0.07550 0.23790 +v 0.05371 0.07528 0.23751 +v 0.05518 0.08981 0.23822 +v 0.05712 0.08570 0.23798 +v 0.04832 0.09075 0.23855 +v 0.05554 0.07932 0.23749 +v 0.05507 0.07831 0.23753 +v 0.04572 0.09333 0.23864 +v 0.04449 0.09435 0.23837 +v 0.04514 0.09546 0.23827 +v 0.04168 0.09962 0.23783 +v 0.03646 0.10196 0.23783 +v 0.03967 0.10013 0.23761 +v 0.03834 0.10117 0.23766 +v 0.03242 0.00380 0.23882 +v 0.03310 0.00401 0.23834 +v 0.03470 0.00398 0.23887 +v 0.04705 0.00540 0.23680 +v 0.04597 0.00457 0.23753 +v 0.04316 0.00443 0.23800 +v 0.05179 0.00519 0.23666 +v 0.04794 0.00526 0.23703 +v 0.05040 0.00508 0.23695 +v 0.05593 0.00591 0.23666 +v 0.05442 0.00472 0.23739 +v 0.05708 0.00657 0.23656 +v 0.06056 0.01196 0.23593 +v 0.06116 0.01187 0.23585 +v 0.06331 0.01580 0.23577 +v -0.00935 0.01195 0.23657 +v -0.00748 0.01142 0.23659 +v -0.00629 0.01084 0.23686 +v 0.06193 0.01916 0.23601 +v 0.06362 0.02651 0.23702 +v 0.06339 0.02525 0.23690 +v 0.06495 0.03419 0.23703 +v 0.06524 0.04362 0.23686 +v 0.06026 0.05597 0.23821 +v 0.06692 0.04597 0.23657 +v 0.06907 0.05050 0.23671 +v 0.06311 0.05466 0.23790 +v 0.06147 0.05554 0.23825 +v 0.06054 0.05744 0.23803 +v -0.03057 0.03327 0.23857 +v -0.04305 0.06171 0.23957 +v -0.04328 0.06369 0.23963 +v -0.04474 0.06479 0.23968 +v -0.04495 0.06632 0.23956 +v -0.03896 0.07805 0.23922 +v -0.03756 0.07890 0.23932 +v -0.04158 0.07691 0.23952 +v -0.04488 0.07518 0.23994 +v -0.04729 0.07436 0.23988 +v -0.04999 0.07199 0.23942 +v -0.04730 0.06946 0.23900 +v -0.04658 0.06681 0.23939 +v -0.03586 0.08050 0.23936 +v 0.02062 0.11205 0.23835 +v 0.01968 0.11212 0.23844 +v 0.01584 0.11278 0.23891 +v 0.01517 0.11335 0.23868 +v 0.01378 0.11388 0.23851 +v 0.01245 0.11366 0.23857 +v 0.01126 0.11310 0.23866 +v 0.02286 0.11101 0.23782 +v 0.02346 0.10954 0.23827 +v 0.02464 0.10829 0.23833 +v 0.03006 0.10609 0.23766 +v 0.02758 0.10769 0.23763 +v 0.02565 0.10829 0.23798 +v 0.00654 0.11353 0.23860 +v 0.00087 0.11200 0.23841 +v -0.01187 0.09768 0.23919 +v -0.00920 0.10007 0.23867 +v -0.01034 0.09952 0.23884 +v -0.00245 0.10618 0.23867 +v -0.00725 0.10229 0.23850 +v -0.01819 0.09858 0.23909 +v -0.01304 0.09780 0.23919 +v -0.03137 0.08581 0.23971 +v -0.02943 0.08740 0.23962 +v -0.02259 0.09510 0.23912 +v -0.02970 0.09140 0.23910 +v -0.03021 0.08811 0.23969 +v -0.02162 0.09856 0.23899 +v -0.03426 0.03100 0.23836 +v -0.04276 0.03659 0.23890 +v -0.04349 0.04148 0.23870 +v -0.04653 0.04544 0.23870 +v -0.04442 0.06045 0.23972 +v -0.04656 0.05879 0.23954 +v -0.04729 0.05688 0.23955 +v -0.04895 0.05351 0.23989 +v -0.05054 0.05126 0.23983 +v -0.04854 0.05428 0.23980 +v -0.03059 0.02558 0.23727 +v -0.02542 0.01488 0.23476 +v -0.02553 0.01594 0.23439 +v -0.02829 0.01774 0.23489 +v -0.02996 0.02008 0.23578 +v -0.02891 0.01969 0.23516 +v -0.01301 0.00945 0.23749 +v -0.01130 0.01102 0.23724 +v -0.01072 0.01192 0.23685 +v -0.01598 0.01224 0.23731 +v -0.01791 0.01361 0.23688 +v 0.06474 0.06808 0.23777 +v 0.06164 0.07599 0.23801 +v 0.06557 0.07514 0.23790 +v 0.05220 0.09142 0.23843 +v 0.05850 0.08958 0.23810 +v 0.05994 0.08567 0.23813 +v 0.04584 0.09116 0.23861 +v 0.05910 0.08206 0.23776 +v 0.05689 0.08016 0.23756 +v 0.05572 0.07667 0.23790 +v 0.04655 0.09267 0.23871 +v 0.04306 0.10070 0.23794 +v 0.04634 0.09623 0.23814 +v 0.03296 0.10448 0.23772 +v 0.03473 0.10339 0.23782 +v 0.03125 0.00370 0.23953 +v 0.03346 0.00384 0.23902 +v 0.04460 0.00436 0.23840 +v 0.04716 0.00480 0.23725 +v 0.05319 0.00463 0.23721 +v 0.05227 0.00472 0.23691 +v 0.05098 0.00481 0.23713 +v 0.04808 0.00463 0.23743 +v 0.05028 0.00457 0.23757 +v 0.05564 0.00504 0.23713 +v 0.05877 0.00706 0.23636 +v 0.06113 0.01041 0.23605 +v 0.06255 0.01226 0.23585 +v 0.06421 0.01310 0.23566 +v 0.06646 0.02870 0.23681 +v 0.06897 0.02709 0.23682 +v 0.06422 0.01808 0.23582 +v 0.06736 0.02385 0.23656 +v 0.06695 0.03202 0.23682 +v 0.06532 0.03637 0.23716 +v 0.06594 0.03926 0.23740 +v 0.06572 0.04320 0.23698 +v 0.06670 0.04321 0.23697 +v 0.06686 0.04482 0.23657 +v 0.06808 0.04747 0.23653 +v 0.06821 0.05350 0.23695 +v 0.06353 0.05614 0.23781 +v 0.06236 0.05555 0.23817 +v -0.03371 0.02772 0.23803 +v -0.04006 0.07777 0.23917 +v -0.04315 0.07702 0.23950 +v -0.04456 0.07576 0.23985 +v -0.04907 0.07404 0.23982 +v -0.04553 0.07528 0.23983 +v -0.04909 0.06916 0.23903 +v -0.04817 0.06732 0.23919 +v -0.03624 0.08450 0.23963 +v 0.02168 0.11157 0.23816 +v 0.01790 0.11311 0.23840 +v 0.01974 0.11342 0.23820 +v 0.02359 0.11017 0.23783 +v 0.02536 0.10911 0.23772 +v 0.02841 0.10710 0.23770 +v 0.02673 0.10834 0.23767 +v 0.03160 0.10470 0.23777 +v 0.03100 0.10551 0.23768 +v 0.00822 0.11397 0.23854 +v 0.00496 0.11383 0.23854 +v 0.00321 0.11363 0.23843 +v -0.00108 0.10949 0.23847 +v 0.01110 0.11445 0.23833 +v -0.01255 0.09956 0.23905 +v -0.00741 0.10101 0.23851 +v -0.00406 0.10454 0.23868 +v -0.00423 0.10643 0.23865 +v -0.00246 0.10808 0.23858 +v -0.01516 0.09904 0.23929 +v -0.03052 0.08709 0.23980 +v -0.03292 0.08668 0.23986 +v -0.02268 0.09730 0.23914 +v -0.02423 0.09668 0.23924 +v -0.02937 0.09284 0.23910 +v -0.03101 0.09165 0.23932 +v -0.03105 0.09012 0.23957 +v -0.02007 0.09958 0.23895 +v -0.03993 0.03482 0.23865 +v -0.04610 0.04236 0.23848 +v -0.04373 0.04008 0.23883 +v -0.04389 0.03776 0.23895 +v -0.04618 0.06032 0.23963 +v -0.04790 0.05553 0.23962 +v -0.05314 0.04505 0.23909 +v -0.04897 0.04262 0.23861 +v -0.03223 0.02614 0.23767 +v -0.03158 0.02409 0.23723 +v -0.02443 0.01344 0.23536 +v -0.02134 0.01303 0.23621 +v -0.01926 0.01356 0.23661 +v -0.02897 0.01889 0.23515 +v -0.02833 0.01640 0.23501 +v -0.03172 0.02173 0.23702 +v -0.01442 0.00844 0.23759 +v -0.01041 0.01120 0.23700 +v -0.01718 0.01128 0.23747 +v -0.01706 0.01297 0.23712 +v 0.06196 0.06076 0.23784 +v 0.06247 0.05779 0.23788 +v 0.06571 0.06578 0.23767 +v 0.06805 0.07052 0.23759 +v 0.06343 0.07656 0.23804 +v 0.06977 0.07405 0.23773 +v 0.05814 0.07844 0.23816 +v 0.06005 0.07835 0.23811 +v 0.05571 0.09223 0.23824 +v 0.06002 0.08802 0.23819 +v 0.05178 0.09317 0.23852 +v 0.05863 0.08117 0.23769 +v 0.05632 0.07847 0.23772 +v 0.05655 0.07927 0.23759 +v 0.04697 0.09383 0.23868 +v 0.04429 0.09992 0.23793 +v 0.04211 0.10206 0.23793 +v 0.04080 0.10211 0.23774 +v 0.04471 0.09825 0.23795 +v 0.03806 0.10445 0.23763 +v 0.04695 0.00428 0.23800 +v 0.05265 0.00465 0.23700 +v 0.05182 0.00463 0.23711 +v 0.04838 0.00427 0.23791 +v 0.05011 0.00421 0.23846 +v 0.05699 0.00506 0.23721 +v 0.05557 0.00440 0.23790 +v 0.05342 0.00428 0.23807 +v 0.05849 0.00549 0.23695 +v 0.06013 0.00664 0.23630 +v 0.06117 0.00751 0.23617 +v 0.06498 0.01396 0.23562 +v -0.00815 0.01008 0.23704 +v 0.06636 0.03008 0.23677 +v 0.06688 0.02588 0.23687 +v 0.06732 0.01727 0.23547 +v 0.06948 0.01966 0.23567 +v 0.06672 0.03774 0.23726 +v 0.06845 0.03402 0.23676 +v 0.06668 0.03498 0.23687 +v 0.06695 0.04019 0.23753 +v 0.06753 0.04465 0.23665 +v 0.06902 0.04594 0.23655 +v 0.06974 0.04737 0.23646 +v 0.07082 0.05416 0.23704 +v 0.06778 0.05539 0.23720 +v 0.06580 0.05684 0.23755 +v -0.03542 0.02893 0.23823 +v -0.04374 0.06249 0.23950 +v -0.04430 0.06216 0.23948 +v -0.04605 0.06537 0.23968 +v -0.04023 0.07835 0.23913 +v -0.03855 0.08079 0.23937 +v -0.04180 0.07779 0.23933 +v -0.04838 0.07458 0.23998 +v -0.04676 0.07523 0.23978 +v -0.05061 0.07375 0.23968 +v -0.05227 0.07005 0.23921 +v -0.04741 0.06561 0.23970 +v 0.02145 0.11360 0.23809 +v 0.01617 0.11317 0.23868 +v 0.01612 0.11425 0.23830 +v 0.01329 0.11570 0.23800 +v 0.02259 0.11237 0.23785 +v 0.02394 0.11077 0.23739 +v 0.02974 0.10709 0.23749 +v 0.02823 0.10867 0.23744 +v 0.03210 0.10592 0.23748 +v 0.00753 0.11486 0.23840 +v 0.00645 0.11464 0.23853 +v 0.00982 0.11431 0.23841 +v 0.00164 0.11429 0.23826 +v -0.00290 0.10986 0.23842 +v -0.01087 0.10034 0.23866 +v -0.00939 0.10086 0.23849 +v -0.00472 0.10871 0.23859 +v -0.00965 0.10183 0.23848 +v -0.00754 0.10521 0.23861 +v -0.01719 0.10243 0.23912 +v -0.01368 0.09907 0.23925 +v -0.03136 0.08715 0.23992 +v -0.02571 0.09673 0.23944 +v -0.02997 0.09401 0.23927 +v -0.03126 0.08840 0.23996 +v -0.02210 0.10113 0.23874 +v -0.02365 0.09875 0.23911 +v -0.02199 0.09994 0.23880 +v -0.04023 0.03161 0.23855 +v -0.04269 0.03081 0.23853 +v -0.04581 0.04023 0.23862 +v -0.04426 0.03889 0.23890 +v -0.04512 0.03589 0.23902 +v -0.04544 0.06199 0.23961 +v -0.04850 0.05763 0.23939 +v -0.04794 0.05983 0.23960 +v -0.04919 0.05606 0.23932 +v -0.05177 0.05300 0.23982 +v -0.04992 0.05393 0.23984 +v -0.05455 0.04950 0.23974 +v -0.04974 0.05481 0.23964 +v -0.02312 0.01283 0.23589 +v -0.02563 0.01349 0.23530 +v -0.02737 0.01495 0.23507 +v -0.02994 0.01776 0.23582 +v -0.03094 0.01933 0.23648 +v -0.01022 0.00943 0.23730 +v -0.01625 0.00951 0.23758 +v -0.00992 0.01054 0.23711 +v -0.01860 0.01253 0.23707 +v 0.06416 0.06094 0.23796 +v 0.06219 0.05677 0.23798 +v 0.06580 0.06350 0.23773 +v 0.06687 0.06881 0.23762 +v 0.06763 0.06754 0.23749 +v 0.06263 0.07757 0.23799 +v 0.06446 0.07824 0.23787 +v 0.06773 0.07695 0.23778 +v 0.05744 0.07823 0.23800 +v 0.05338 0.09392 0.23833 +v 0.06047 0.08976 0.23786 +v 0.05902 0.09102 0.23797 +v 0.06178 0.08188 0.23790 +v 0.06043 0.08743 0.23816 +v 0.06084 0.08082 0.23787 +v 0.05780 0.08001 0.23765 +v 0.05741 0.07922 0.23778 +v 0.04360 0.10311 0.23814 +v 0.04902 0.09489 0.23850 +v 0.04744 0.09849 0.23772 +v 0.03388 0.10652 0.23755 +v 0.04694 0.00403 0.23904 +v 0.04768 0.00434 0.23775 +v 0.05248 0.00441 0.23749 +v 0.05124 0.00438 0.23782 +v 0.04906 0.00418 0.23825 +v 0.05624 0.00464 0.23747 +v 0.05488 0.00432 0.23795 +v 0.05304 0.00437 0.23754 +v 0.05957 0.00594 0.23656 +v 0.05949 0.00648 0.23632 +v 0.06284 0.00833 0.23611 +v 0.06311 0.01075 0.23602 +v 0.06416 0.01147 0.23585 +v 0.06620 0.01251 0.23570 +v 0.06566 0.01562 0.23557 +v 0.06874 0.02840 0.23669 +v 0.06858 0.02998 0.23661 +v 0.06915 0.02595 0.23682 +v 0.07076 0.02328 0.23635 +v 0.06728 0.03599 0.23698 +v 0.06754 0.03899 0.23748 +v 0.06987 0.03266 0.23651 +v 0.06727 0.04131 0.23741 +v 0.07191 0.04896 0.23668 +v 0.07155 0.05149 0.23676 +v 0.06416 0.05765 0.23776 +v -0.03450 0.02585 0.23807 +v -0.03779 0.03012 0.23841 +v -0.04651 0.06403 0.23977 +v -0.04578 0.06474 0.23974 +v -0.04339 0.07870 0.23932 +v -0.04464 0.07648 0.23962 +v -0.04806 0.07503 0.23988 +v -0.04901 0.07505 0.23986 +v -0.04642 0.07600 0.23954 +v -0.05030 0.07491 0.23967 +v -0.05185 0.07318 0.23960 +v -0.05097 0.06779 0.23904 +v -0.05185 0.07196 0.23940 +v -0.04954 0.06751 0.23903 +v -0.04845 0.06622 0.23955 +v -0.03617 0.08791 0.23989 +v -0.04170 0.08787 0.24007 +v 0.01772 0.11392 0.23822 +v 0.02365 0.11163 0.23742 +v 0.02725 0.10950 0.23738 +v 0.02574 0.10993 0.23739 +v 0.00897 0.11521 0.23820 +v 0.00503 0.11527 0.23839 +v 0.00441 0.11523 0.23842 +v 0.00284 0.11570 0.23812 +v 0.00006 0.11418 0.23826 +v 0.01051 0.11579 0.23790 +v -0.01217 0.10123 0.23875 +v -0.00676 0.10815 0.23868 +v -0.01486 0.10102 0.23921 +v -0.03181 0.08802 0.24002 +v -0.02703 0.09635 0.23948 +v -0.02504 0.09825 0.23940 +v -0.03116 0.09307 0.23925 +v -0.03256 0.08920 0.24002 +v -0.04719 0.04130 0.23847 +v -0.04585 0.03803 0.23892 +v -0.04749 0.06196 0.23979 +v -0.05395 0.05133 0.23993 +v -0.05655 0.04783 0.23956 +v -0.05148 0.04008 0.23856 +v -0.03305 0.02472 0.23774 +v -0.03292 0.02222 0.23754 +v -0.02409 0.01278 0.23575 +v -0.02636 0.01417 0.23501 +v -0.02500 0.01316 0.23540 +v -0.02171 0.01183 0.23659 +v -0.02015 0.01173 0.23700 +v -0.02916 0.01557 0.23576 +v -0.03201 0.02022 0.23723 +v -0.01686 0.00708 0.23761 +v -0.01762 0.01213 0.23729 +v -0.01771 0.01001 0.23760 +v 0.06322 0.05886 0.23785 +v 0.06698 0.06205 0.23800 +v 0.06751 0.06429 0.23774 +v 0.06903 0.06870 0.23725 +v 0.07001 0.07128 0.23747 +v 0.06799 0.06627 0.23752 +v 0.06600 0.07852 0.23776 +v 0.07075 0.07881 0.23769 +v 0.05928 0.07894 0.23815 +v 0.06288 0.07937 0.23791 +v 0.05665 0.09322 0.23813 +v 0.06314 0.08422 0.23823 +v 0.06185 0.08506 0.23821 +v 0.05227 0.09570 0.23814 +v 0.05906 0.08035 0.23780 +v 0.04486 0.10320 0.23823 +v 0.04619 0.09950 0.23778 +v 0.04221 0.10364 0.23789 +v 0.04957 0.09775 0.23773 +v 0.04145 0.10444 0.23776 +v 0.03798 0.10926 0.23769 +v 0.04775 0.00407 0.23833 +v 0.04847 0.00400 0.23849 +v 0.05180 0.00415 0.23882 +v 0.04911 0.00396 0.23913 +v 0.05679 0.00436 0.23795 +v 0.05829 0.00454 0.23779 +v 0.05526 0.00416 0.23876 +v 0.05425 0.00417 0.23847 +v 0.05974 0.00495 0.23721 +v 0.06134 0.00629 0.23632 +v 0.06267 0.00656 0.23624 +v 0.06477 0.00982 0.23603 +v 0.06499 0.01186 0.23569 +v 0.06644 0.01411 0.23556 +v 0.07012 0.02762 0.23656 +v 0.07085 0.02594 0.23661 +v 0.06958 0.01787 0.23539 +v 0.06753 0.01499 0.23544 +v 0.07144 0.02043 0.23594 +v 0.06915 0.03764 0.23715 +v 0.06890 0.03503 0.23680 +v 0.06779 0.04049 0.23763 +v 0.06799 0.03986 0.23767 +v 0.06856 0.04201 0.23725 +v 0.06898 0.04391 0.23685 +v 0.07140 0.04563 0.23665 +v 0.07245 0.04670 0.23669 +v 0.07259 0.05121 0.23681 +v 0.06916 0.05836 0.23759 +v 0.06531 0.05949 0.23787 +v -0.03620 0.02640 0.23833 +v -0.03730 0.02688 0.23834 +v -0.04107 0.07977 0.23930 +v -0.04453 0.07762 0.23938 +v -0.04727 0.07593 0.23949 +v -0.05175 0.07456 0.23966 +v -0.05261 0.06773 0.23917 +v -0.05317 0.07251 0.23950 +v -0.05015 0.06668 0.23919 +v -0.04860 0.06542 0.23992 +v -0.03406 0.08843 0.23997 +v -0.03965 0.08796 0.24000 +v 0.02298 0.11410 0.23802 +v 0.02035 0.11582 0.23799 +v 0.01738 0.11516 0.23804 +v 0.01497 0.11584 0.23796 +v 0.02392 0.11273 0.23766 +v 0.02425 0.11120 0.23718 +v 0.02490 0.11076 0.23725 +v 0.03061 0.10804 0.23746 +v 0.02804 0.10964 0.23731 +v 0.00781 0.11612 0.23805 +v 0.00618 0.11659 0.23805 +v 0.00137 0.11660 0.23787 +v -0.00358 0.11158 0.23840 +v -0.01103 0.10124 0.23857 +v -0.01331 0.10256 0.23880 +v -0.00746 0.11175 0.23871 +v -0.01226 0.10430 0.23869 +v -0.00532 0.11198 0.23849 +v -0.01591 0.10249 0.23910 +v -0.01968 0.10474 0.23883 +v -0.03315 0.08861 0.24008 +v -0.02606 0.09760 0.23962 +v -0.03192 0.09391 0.23921 +v -0.02957 0.09560 0.23942 +v -0.03223 0.09216 0.23934 +v -0.02380 0.10088 0.23882 +v -0.04513 0.03282 0.23885 +v -0.04783 0.04024 0.23856 +v -0.04774 0.03605 0.23934 +v -0.04960 0.05937 0.23956 +v -0.04980 0.05670 0.23915 +v -0.04999 0.06174 0.24001 +v -0.05032 0.05531 0.23938 +v -0.05156 0.05416 0.23958 +v -0.05303 0.05259 0.23988 +v -0.05621 0.04925 0.23974 +v -0.05640 0.04406 0.23907 +v -0.05515 0.05133 0.23973 +v -0.05477 0.03990 0.23844 +v -0.04943 0.03980 0.23859 +v -0.03299 0.02091 0.23760 +v -0.02496 0.01267 0.23584 +v -0.02365 0.01197 0.23633 +v -0.02698 0.01370 0.23554 +v -0.03080 0.01600 0.23670 +v -0.02853 0.01403 0.23609 +v -0.03184 0.01907 0.23728 +v -0.03144 0.01768 0.23698 +v -0.01828 0.00737 0.23756 +v -0.01871 0.01097 0.23760 +v -0.01822 0.01085 0.23761 +v -0.01911 0.01145 0.23738 +v 0.06608 0.06107 0.23803 +v 0.07060 0.06950 0.23715 +v 0.07284 0.07208 0.23744 +v 0.06926 0.06695 0.23726 +v 0.06567 0.07998 0.23784 +v 0.06820 0.07952 0.23774 +v 0.07378 0.07603 0.23762 +v 0.06022 0.07967 0.23797 +v 0.05571 0.09511 0.23803 +v 0.06159 0.08865 0.23782 +v 0.06172 0.09022 0.23771 +v 0.05962 0.09316 0.23796 +v 0.06359 0.08103 0.23790 +v 0.06207 0.08628 0.23812 +v 0.04459 0.10438 0.23834 +v 0.04584 0.10188 0.23804 +v 0.05079 0.09673 0.23800 +v 0.04797 0.09967 0.23760 +v 0.04998 0.09896 0.23758 +v 0.04220 0.10803 0.23773 +v 0.03307 0.11063 0.23776 +v 0.04805 0.00392 0.23899 +v 0.05078 0.00405 0.23956 +v 0.05742 0.00447 0.23772 +v 0.05898 0.00477 0.23740 +v 0.05779 0.00414 0.23855 +v 0.06077 0.00548 0.23671 +v 0.06445 0.00649 0.23612 +v 0.06578 0.01088 0.23589 +v 0.06775 0.01351 0.23561 +v 0.07051 0.02911 0.23635 +v 0.07152 0.02465 0.23650 +v 0.06903 0.01650 0.23521 +v 0.07095 0.01763 0.23544 +v 0.06887 0.01549 0.23526 +v 0.07247 0.02147 0.23617 +v 0.06991 0.03050 0.23641 +v 0.06856 0.03920 0.23756 +v 0.07135 0.03462 0.23652 +v 0.06840 0.04086 0.23756 +v 0.07101 0.04417 0.23680 +v 0.07444 0.05022 0.23704 +v 0.07316 0.05354 0.23716 +v 0.07258 0.05717 0.23746 +v -0.03480 0.02442 0.23806 +v -0.03357 0.02420 0.23787 +v -0.03894 0.02841 0.23842 +v -0.04613 0.07921 0.23926 +v -0.04352 0.08128 0.23947 +v -0.04570 0.07694 0.23942 +v -0.04954 0.07559 0.23953 +v -0.04729 0.07710 0.23916 +v -0.05186 0.07544 0.23944 +v -0.05292 0.07391 0.23974 +v -0.05439 0.06954 0.23933 +v -0.05189 0.06702 0.23915 +v -0.05462 0.07136 0.23942 +v -0.04956 0.06575 0.23976 +v -0.04886 0.06481 0.24012 +v -0.03597 0.08955 0.23987 +v -0.04007 0.08925 0.23996 +v 0.02247 0.11533 0.23805 +v 0.01712 0.11656 0.23786 +v 0.01244 0.11712 0.23768 +v 0.02470 0.11169 0.23732 +v 0.02889 0.10999 0.23749 +v 0.02635 0.11105 0.23741 +v 0.00877 0.11684 0.23778 +v 0.00450 0.11622 0.23814 +v 0.00239 0.11953 0.23728 +v -0.00188 0.11566 0.23811 +v -0.00307 0.11444 0.23817 +v -0.01131 0.10243 0.23858 +v -0.00935 0.11082 0.23889 +v -0.01623 0.10548 0.23885 +v -0.01564 0.10382 0.23891 +v -0.01814 0.10575 0.23884 +v -0.02351 0.10352 0.23862 +v -0.02441 0.09943 0.23914 +v -0.02675 0.09769 0.23963 +v -0.02581 0.09865 0.23957 +v -0.02786 0.09758 0.23950 +v -0.03459 0.09132 0.23957 +v -0.02482 0.10241 0.23869 +v -0.04165 0.02979 0.23846 +v -0.04758 0.03472 0.23929 +v -0.04640 0.03122 0.23881 +v -0.04745 0.03902 0.23873 +v -0.04871 0.06371 0.24008 +v -0.05047 0.05789 0.23932 +v -0.04966 0.05627 0.23911 +v -0.05001 0.05611 0.23914 +v -0.05294 0.05409 0.23947 +v -0.05417 0.05227 0.23980 +v -0.05605 0.05019 0.23970 +v -0.05697 0.04963 0.23958 +v -0.05850 0.04551 0.23938 +v -0.05365 0.03847 0.23823 +v -0.05081 0.03833 0.23867 +v -0.03410 0.02240 0.23782 +v -0.02633 0.01282 0.23601 +v -0.02126 0.01106 0.23699 +v -0.02217 0.01117 0.23684 +v -0.02991 0.01466 0.23653 +v -0.03247 0.01977 0.23762 +v -0.01788 0.00638 0.23763 +v 0.06799 0.06098 0.23796 +v 0.06872 0.06496 0.23767 +v 0.06938 0.06310 0.23806 +v 0.07005 0.06814 0.23699 +v 0.07293 0.07460 0.23764 +v 0.07157 0.08078 0.23766 +v 0.07274 0.07942 0.23753 +v 0.05704 0.09530 0.23797 +v 0.06507 0.08436 0.23827 +v 0.06416 0.08562 0.23819 +v 0.05482 0.09764 0.23775 +v 0.04500 0.10438 0.23835 +v 0.04601 0.10360 0.23809 +v 0.04732 0.10066 0.23771 +v 0.04397 0.10561 0.23807 +v 0.05195 0.09851 0.23774 +v 0.04321 0.10615 0.23788 +v 0.04161 0.11140 0.23776 +v 0.03591 0.11218 0.23790 +v 0.04781 0.00386 0.24094 +v 0.05323 0.00394 0.24064 +v 0.05760 0.00425 0.23813 +v 0.05931 0.00449 0.23782 +v 0.05641 0.00387 0.24075 +v 0.06076 0.00473 0.23739 +v 0.06189 0.00561 0.23654 +v 0.06363 0.00564 0.23638 +v 0.06681 0.00927 0.23603 +v 0.06784 0.01114 0.23598 +v 0.06860 0.01259 0.23582 +v 0.07149 0.02746 0.23623 +v 0.07236 0.02565 0.23626 +v 0.07023 0.01585 0.23529 +v 0.06985 0.01473 0.23536 +v 0.07224 0.02411 0.23650 +v 0.07191 0.01869 0.23581 +v 0.07309 0.01979 0.23609 +v 0.07168 0.03034 0.23603 +v 0.06978 0.03916 0.23732 +v 0.07304 0.03208 0.23601 +v 0.06863 0.04032 0.23771 +v 0.06957 0.04063 0.23743 +v 0.07041 0.04219 0.23709 +v 0.07321 0.04489 0.23669 +v 0.07446 0.04691 0.23680 +v 0.07326 0.05512 0.23729 +v 0.07081 0.06012 0.23775 +v -0.03743 0.02479 0.23817 +v -0.03935 0.02627 0.23837 +v -0.04886 0.07613 0.23926 +v -0.05054 0.07603 0.23930 +v -0.04834 0.07667 0.23908 +v -0.05341 0.07464 0.23972 +v -0.05508 0.06780 0.23947 +v -0.05133 0.06654 0.23927 +v -0.05279 0.06622 0.23947 +v -0.05494 0.07354 0.23954 +v -0.05125 0.06504 0.24004 +v -0.04921 0.06522 0.24008 +v -0.03376 0.08970 0.23989 +v -0.04433 0.08373 0.23971 +v -0.04326 0.08875 0.23996 +v 0.02545 0.11269 0.23769 +v 0.02426 0.11546 0.23828 +v 0.02228 0.11647 0.23794 +v 0.01763 0.11848 0.23763 +v 0.01471 0.11792 0.23761 +v 0.01083 0.11693 0.23763 +v 0.00712 0.11754 0.23784 +v 0.00508 0.11758 0.23787 +v 0.00088 0.11877 0.23745 +v -0.00100 0.11867 0.23753 +v -0.00469 0.11330 0.23828 +v -0.01295 0.10970 0.23897 +v -0.00891 0.11243 0.23874 +v -0.02181 0.10810 0.23861 +v -0.02227 0.10521 0.23870 +v -0.02554 0.09949 0.23928 +v -0.02646 0.09871 0.23964 +v -0.03143 0.09554 0.23919 +v -0.03450 0.09336 0.23927 +v -0.02904 0.09737 0.23935 +v -0.02527 0.10095 0.23891 +v -0.04531 0.02949 0.23867 +v -0.04866 0.03582 0.23929 +v -0.04831 0.03676 0.23924 +v -0.05133 0.05955 0.23969 +v -0.05109 0.05628 0.23920 +v -0.05057 0.06359 0.24032 +v -0.05163 0.05489 0.23936 +v -0.05788 0.04916 0.23956 +v -0.05889 0.04163 0.23884 +v -0.05880 0.04807 0.23962 +v -0.05573 0.05232 0.23944 +v -0.05763 0.05040 0.23936 +v -0.05408 0.03730 0.23821 +v -0.05276 0.03785 0.23832 +v -0.04942 0.03817 0.23884 +v -0.03451 0.02057 0.23787 +v -0.02450 0.01177 0.23648 +v -0.02759 0.01301 0.23631 +v -0.02582 0.01173 0.23665 +v -0.02072 0.00997 0.23734 +v -0.02428 0.01103 0.23688 +v -0.03186 0.01664 0.23727 +v -0.03128 0.01418 0.23725 +v -0.02982 0.01360 0.23691 +v -0.03328 0.01977 0.23785 +v -0.03224 0.01917 0.23767 +v -0.03240 0.01843 0.23764 +v -0.01982 0.00652 0.23760 +v -0.01992 0.00827 0.23752 +v 0.07129 0.06826 0.23696 +v 0.07289 0.06905 0.23704 +v 0.07651 0.07396 0.23774 +v 0.07018 0.06756 0.23701 +v 0.07014 0.06445 0.23772 +v 0.06835 0.08185 0.23782 +v 0.07084 0.08419 0.23777 +v 0.07573 0.07759 0.23734 +v 0.07547 0.07479 0.23768 +v 0.05620 0.09754 0.23780 +v 0.06295 0.08865 0.23775 +v 0.06425 0.08769 0.23777 +v 0.06357 0.09444 0.23799 +v 0.05875 0.09607 0.23793 +v 0.06596 0.08253 0.23804 +v 0.06466 0.08512 0.23828 +v 0.04716 0.10355 0.23784 +v 0.04871 0.10112 0.23757 +v 0.05108 0.10038 0.23750 +v 0.04356 0.10991 0.23783 +v 0.03846 0.11291 0.23782 +v 0.03352 0.11293 0.23804 +v 0.05934 0.00422 0.23880 +v 0.05956 0.00401 0.24041 +v 0.06016 0.00443 0.23800 +v 0.06181 0.00486 0.23718 +v 0.06281 0.00528 0.23669 +v 0.06438 0.00546 0.23636 +v 0.06730 0.00779 0.23611 +v 0.07190 0.02860 0.23596 +v 0.07290 0.02467 0.23631 +v 0.07202 0.01571 0.23571 +v 0.07312 0.01806 0.23610 +v 0.07338 0.02177 0.23619 +v 0.07132 0.03824 0.23699 +v 0.07362 0.03418 0.23636 +v 0.07228 0.04302 0.23680 +v 0.07566 0.04991 0.23710 +v 0.07464 0.05421 0.23745 +v 0.07527 0.05292 0.23749 +v 0.07447 0.05744 0.23754 +v -0.03636 0.02190 0.23791 +v -0.04132 0.02703 0.23853 +v -0.04981 0.07647 0.23913 +v -0.04854 0.07799 0.23895 +v -0.05263 0.07659 0.23901 +v -0.05346 0.07503 0.23961 +v -0.05422 0.07446 0.23961 +v -0.05730 0.07032 0.23966 +v -0.05451 0.06595 0.23963 +v -0.05219 0.06525 0.23984 +v -0.05645 0.07220 0.23960 +v -0.04973 0.06474 0.24017 +v -0.03790 0.09157 0.23968 +v -0.04325 0.08675 0.23998 +v -0.04138 0.09054 0.23972 +v 0.02577 0.11406 0.23807 +v 0.02437 0.11470 0.23818 +v 0.01869 0.11906 0.23754 +v 0.01633 0.11843 0.23758 +v 0.01270 0.11937 0.23736 +v 0.01049 0.11787 0.23745 +v 0.03046 0.11231 0.23792 +v 0.02774 0.11278 0.23787 +v 0.00837 0.11820 0.23757 +v 0.00588 0.11864 0.23775 +v 0.00141 0.11956 0.23726 +v -0.00290 0.11784 0.23754 +v -0.00310 0.11582 0.23797 +v -0.00541 0.11403 0.23819 +v -0.01155 0.11133 0.23907 +v -0.01024 0.11208 0.23900 +v -0.01538 0.10904 0.23883 +v -0.01852 0.10868 0.23854 +v -0.02458 0.10431 0.23860 +v -0.02364 0.10641 0.23868 +v -0.02720 0.09835 0.23954 +v -0.03022 0.09591 0.23937 +v -0.03277 0.09541 0.23907 +v -0.03644 0.09267 0.23952 +v -0.02626 0.10138 0.23886 +v -0.04310 0.02778 0.23855 +v -0.04834 0.03073 0.23876 +v -0.04693 0.02937 0.23866 +v -0.04899 0.03463 0.23920 +v -0.05370 0.06204 0.24049 +v -0.05276 0.05767 0.23947 +v -0.05208 0.06250 0.24038 +v -0.05263 0.05548 0.23926 +v -0.05460 0.05335 0.23945 +v -0.06066 0.04457 0.23939 +v -0.06011 0.04709 0.23965 +v -0.05775 0.03811 0.23827 +v -0.05575 0.03712 0.23808 +v -0.05134 0.03617 0.23875 +v -0.04942 0.03654 0.23914 +v -0.02696 0.01227 0.23661 +v -0.02205 0.01040 0.23714 +v -0.02411 0.01030 0.23716 +v -0.02876 0.01284 0.23682 +v -0.03251 0.01740 0.23758 +v -0.03218 0.01566 0.23740 +v -0.03264 0.01928 0.23782 +v 0.06931 0.06217 0.23804 +v 0.07492 0.07049 0.23723 +v 0.07589 0.07273 0.23758 +v 0.07196 0.06482 0.23747 +v 0.07328 0.08194 0.23766 +v 0.07671 0.07636 0.23735 +v 0.07507 0.08025 0.23745 +v 0.07628 0.07566 0.23748 +v 0.05725 0.09781 0.23789 +v 0.06281 0.09031 0.23772 +v 0.06518 0.09238 0.23784 +v 0.06582 0.08533 0.23823 +v 0.05624 0.09870 0.23754 +v 0.05350 0.10074 0.23733 +v 0.04603 0.10541 0.23803 +v 0.04504 0.10582 0.23812 +v 0.04410 0.11248 0.23779 +v 0.03946 0.11467 0.23779 +v 0.03559 0.11360 0.23801 +v 0.06178 0.00440 0.23803 +v 0.06398 0.00491 0.23692 +v 0.06507 0.00575 0.23620 +v 0.06945 0.00751 0.23612 +v 0.06993 0.01117 0.23613 +v 0.06962 0.01198 0.23603 +v 0.07062 0.01283 0.23589 +v 0.07317 0.02582 0.23594 +v 0.07313 0.02721 0.23562 +v 0.07127 0.01449 0.23563 +v 0.07331 0.01673 0.23609 +v 0.07281 0.02434 0.23644 +v 0.07395 0.02080 0.23611 +v 0.07322 0.02336 0.23633 +v 0.07309 0.03033 0.23567 +v 0.07258 0.03607 0.23663 +v 0.07132 0.04020 0.23712 +v 0.07563 0.03249 0.23601 +v 0.07176 0.04141 0.23699 +v 0.07578 0.04555 0.23661 +v 0.07566 0.04290 0.23643 +v 0.07622 0.05215 0.23746 +v 0.07462 0.05609 0.23746 +v 0.07425 0.06047 0.23774 +v -0.03937 0.02285 0.23797 +v -0.04087 0.02568 0.23841 +v -0.04743 0.08355 0.23957 +v -0.04928 0.07696 0.23895 +v -0.05079 0.07774 0.23894 +v -0.05663 0.06590 0.23975 +v -0.05744 0.06836 0.23966 +v -0.05488 0.06444 0.24003 +v -0.05655 0.07379 0.23955 +v -0.05086 0.06439 0.24027 +v -0.05208 0.06408 0.24031 +v -0.03936 0.09188 0.23962 +v -0.04582 0.08631 0.23993 +v -0.04283 0.09123 0.23970 +v 0.02533 0.11559 0.23821 +v 0.02395 0.11629 0.23813 +v 0.02112 0.11876 0.23743 +v 0.01689 0.11970 0.23729 +v 0.01376 0.11931 0.23737 +v 0.01186 0.11855 0.23742 +v 0.00706 0.11902 0.23766 +v 0.00418 0.11928 0.23744 +v 0.00058 0.11968 0.23717 +v 0.00174 0.11998 0.23711 +v -0.00263 0.11930 0.23719 +v -0.00502 0.11591 0.23787 +v -0.01255 0.11149 0.23904 +v -0.01028 0.11264 0.23888 +v -0.00848 0.11343 0.23847 +v -0.01445 0.11005 0.23890 +v -0.01708 0.10710 0.23879 +v -0.01943 0.11137 0.23829 +v -0.02586 0.10338 0.23867 +v -0.02630 0.10030 0.23906 +v -0.02688 0.09938 0.23931 +v -0.03108 0.09688 0.23910 +v -0.03251 0.09667 0.23899 +v -0.03409 0.09596 0.23904 +v -0.02828 0.09938 0.23912 +v -0.03623 0.09434 0.23935 +v -0.04621 0.02823 0.23864 +v -0.04930 0.03288 0.23901 +v -0.05461 0.05992 0.24006 +v -0.05401 0.05519 0.23931 +v -0.05950 0.04883 0.23960 +v -0.06225 0.04175 0.23912 +v -0.06176 0.03869 0.23853 +v -0.05711 0.05175 0.23921 +v -0.05632 0.05417 0.23924 +v -0.05293 0.03655 0.23840 +v -0.05533 0.03592 0.23808 +v -0.03586 0.02043 0.23786 +v -0.03371 0.01863 0.23798 +v -0.02786 0.01224 0.23687 +v -0.02714 0.01133 0.23711 +v -0.02241 0.00922 0.23737 +v -0.02558 0.01048 0.23714 +v -0.03266 0.01655 0.23761 +v -0.03349 0.01464 0.23765 +v -0.02886 0.01151 0.23735 +v -0.03311 0.01888 0.23791 +v -0.03258 0.01890 0.23783 +v -0.03328 0.01810 0.23787 +v -0.02257 0.00674 0.23742 +v 0.07040 0.06245 0.23794 +v 0.07016 0.06368 0.23787 +v 0.07203 0.06713 0.23704 +v 0.07589 0.06872 0.23706 +v 0.07752 0.07372 0.23759 +v 0.07684 0.07448 0.23772 +v 0.07212 0.06309 0.23770 +v 0.06859 0.08396 0.23791 +v 0.07431 0.08398 0.23766 +v 0.07812 0.07763 0.23729 +v 0.07765 0.07994 0.23737 +v 0.06466 0.08853 0.23767 +v 0.06711 0.09110 0.23762 +v 0.06300 0.09583 0.23791 +v 0.05966 0.09728 0.23771 +v 0.06648 0.08730 0.23787 +v 0.05646 0.09957 0.23733 +v 0.04504 0.10741 0.23810 +v 0.04588 0.10724 0.23799 +v 0.04921 0.10414 0.23746 +v 0.05315 0.10336 0.23717 +v 0.04466 0.11038 0.23788 +v 0.04301 0.11448 0.23774 +v 0.03793 0.11490 0.23778 +v 0.03005 0.11455 0.23818 +v 0.03294 0.11494 0.23819 +v 0.06177 0.00421 0.23883 +v 0.06289 0.00465 0.23741 +v 0.06499 0.00511 0.23656 +v 0.06668 0.00593 0.23640 +v 0.06787 0.00663 0.23634 +v 0.07289 0.02845 0.23550 +v 0.07385 0.02407 0.23604 +v 0.07316 0.01454 0.23602 +v 0.07378 0.01532 0.23612 +v 0.07412 0.01865 0.23625 +v 0.07384 0.01788 0.23633 +v 0.07465 0.02191 0.23592 +v 0.07462 0.01973 0.23612 +v 0.07396 0.02288 0.23607 +v 0.07502 0.03029 0.23543 +v 0.07296 0.03768 0.23684 +v 0.07369 0.03854 0.23684 +v 0.07531 0.03504 0.23661 +v 0.07347 0.04139 0.23670 +v 0.07881 0.05052 0.23709 +v 0.07512 0.05512 0.23752 +v 0.07677 0.05394 0.23783 +v 0.07581 0.05646 0.23752 +v 0.07170 0.06157 0.23781 +v 0.07567 0.05808 0.23753 +v -0.03773 0.01996 0.23775 +v -0.04081 0.02345 0.23809 +v -0.04156 0.02636 0.23859 +v -0.04293 0.02628 0.23850 +v -0.04952 0.08056 0.23908 +v -0.05259 0.07809 0.23887 +v -0.05424 0.07584 0.23926 +v -0.05509 0.07515 0.23936 +v -0.05832 0.07263 0.23977 +v -0.05581 0.06462 0.23998 +v -0.05900 0.06981 0.23977 +v -0.05380 0.06370 0.24047 +v -0.03780 0.09387 0.23963 +v -0.04668 0.08810 0.23999 +v -0.04044 0.09310 0.23947 +v 0.02748 0.11500 0.23817 +v 0.02232 0.11756 0.23768 +v 0.01903 0.11978 0.23729 +v 0.01571 0.11927 0.23742 +v 0.01806 0.12024 0.23711 +v 0.01492 0.11947 0.23731 +v 0.01307 0.11997 0.23723 +v 0.01178 0.11966 0.23714 +v 0.01061 0.11926 0.23714 +v 0.00775 0.11974 0.23731 +v 0.00912 0.11945 0.23714 +v 0.00613 0.11985 0.23761 +v 0.00309 0.12034 0.23684 +v 0.00537 0.11951 0.23763 +v 0.00095 0.12025 0.23687 +v 0.00202 0.12042 0.23679 +v -0.00049 0.12001 0.23696 +v -0.00412 0.11811 0.23740 +v -0.00327 0.11933 0.23705 +v -0.00150 0.11962 0.23718 +v -0.00901 0.11767 0.23759 +v -0.01230 0.11222 0.23897 +v -0.01384 0.11148 0.23886 +v -0.01115 0.11307 0.23874 +v -0.00961 0.11472 0.23813 +v -0.01435 0.11077 0.23885 +v -0.01734 0.10869 0.23859 +v -0.02371 0.10789 0.23852 +v -0.02242 0.11028 0.23836 +v -0.01718 0.11066 0.23832 +v -0.02623 0.10506 0.23852 +v -0.02506 0.10596 0.23848 +v -0.03552 0.09631 0.23908 +v -0.03096 0.09856 0.23884 +v -0.03047 0.09907 0.23887 +v -0.02828 0.10153 0.23885 +v -0.02752 0.10023 0.23903 +v -0.04914 0.02810 0.23836 +v -0.05035 0.03126 0.23885 +v -0.04585 0.02317 0.23830 +v -0.05035 0.03478 0.23900 +v -0.05535 0.06195 0.24044 +v -0.05299 0.06326 0.24054 +v -0.05544 0.05689 0.23952 +v -0.05905 0.05023 0.23926 +v -0.06089 0.04649 0.23960 +v -0.06258 0.04445 0.23951 +v -0.06081 0.04806 0.23955 +v -0.05685 0.03647 0.23807 +v -0.06007 0.03709 0.23827 +v -0.05829 0.05091 0.23916 +v -0.05379 0.03560 0.23839 +v -0.05618 0.03620 0.23800 +v -0.05182 0.03520 0.23878 +v -0.02625 0.01109 0.23707 +v -0.02422 0.00964 0.23729 +v -0.03371 0.01710 0.23784 +v -0.03332 0.01599 0.23772 +v -0.03266 0.01282 0.23767 +v -0.03124 0.01217 0.23771 +v 0.07431 0.06722 0.23699 +v 0.07766 0.07181 0.23751 +v 0.07421 0.06523 0.23727 +v 0.07408 0.06320 0.23764 +v 0.06938 0.08559 0.23781 +v 0.07474 0.08509 0.23752 +v 0.07857 0.07623 0.23728 +v 0.07747 0.07511 0.23748 +v 0.07803 0.08158 0.23732 +v 0.05791 0.09828 0.23769 +v 0.06579 0.08869 0.23771 +v 0.06608 0.09081 0.23770 +v 0.06557 0.09531 0.23769 +v 0.06439 0.09677 0.23763 +v 0.06797 0.08653 0.23787 +v 0.05705 0.10078 0.23711 +v 0.04871 0.10693 0.23737 +v 0.04596 0.11279 0.23783 +v 0.04483 0.11461 0.23767 +v 0.03831 0.11612 0.23757 +v 0.04106 0.11592 0.23770 +v 0.03630 0.11508 0.23786 +v 0.03367 0.11560 0.23811 +v 0.06303 0.00436 0.23838 +v 0.06426 0.00450 0.23776 +v 0.06582 0.00545 0.23638 +v 0.06498 0.00473 0.23711 +v 0.06906 0.00583 0.23644 +v 0.07124 0.00660 0.23613 +v 0.07150 0.01210 0.23605 +v 0.07176 0.01360 0.23588 +v 0.07368 0.02748 0.23531 +v 0.07487 0.01614 0.23625 +v 0.07414 0.01691 0.23631 +v 0.07529 0.02098 0.23589 +v 0.07398 0.02903 0.23532 +v 0.07471 0.03682 0.23682 +v 0.07854 0.03029 0.23544 +v 0.07711 0.03412 0.23655 +v 0.08095 0.04446 0.23614 +v 0.07536 0.04067 0.23638 +v 0.07814 0.05363 0.23773 +v 0.07620 0.05499 0.23767 +v 0.07503 0.06174 0.23768 +v -0.03962 0.02082 0.23769 +v -0.04025 0.02061 0.23769 +v -0.04219 0.02480 0.23835 +v -0.04807 0.08621 0.23983 +v -0.05237 0.08597 0.23960 +v -0.05413 0.07723 0.23904 +v -0.05307 0.08062 0.23908 +v -0.06033 0.07184 0.23997 +v -0.05685 0.06399 0.24008 +v -0.05892 0.06628 0.23963 +v -0.05897 0.06747 0.23964 +v -0.05552 0.06336 0.24033 +v -0.05873 0.07478 0.23963 +v -0.05771 0.07616 0.23937 +v -0.04667 0.09113 0.23979 +v -0.04074 0.09462 0.23929 +v -0.04689 0.08718 0.23999 +v 0.02536 0.11666 0.23807 +v 0.02411 0.11890 0.23745 +v 0.02064 0.12021 0.23679 +v 0.02268 0.11924 0.23737 +v 0.01576 0.12011 0.23713 +v 0.01702 0.12078 0.23664 +v 0.01423 0.11994 0.23716 +v 0.01253 0.12025 0.23707 +v 0.01356 0.12024 0.23700 +v 0.00696 0.11992 0.23754 +v 0.00431 0.12040 0.23692 +v 0.00527 0.12004 0.23744 +v -0.00279 0.12018 0.23673 +v -0.00195 0.12016 0.23691 +v -0.00523 0.11764 0.23752 +v -0.00759 0.11787 0.23760 +v -0.01003 0.11641 0.23776 +v -0.01734 0.10965 0.23841 +v -0.02361 0.10903 0.23837 +v -0.02273 0.11289 0.23819 +v -0.01655 0.11194 0.23818 +v -0.02786 0.10450 0.23871 +v -0.03412 0.09921 0.23875 +v -0.02868 0.10074 0.23892 +v -0.03743 0.09514 0.23935 +v -0.02875 0.10354 0.23885 +v -0.04903 0.02622 0.23830 +v -0.05109 0.03318 0.23896 +v -0.04780 0.02379 0.23831 +v -0.05657 0.06072 0.24022 +v -0.05454 0.06293 0.24057 +v -0.05377 0.06326 0.24059 +v -0.05744 0.05853 0.23984 +v -0.06052 0.04972 0.23925 +v -0.06437 0.04316 0.23957 +v -0.06562 0.04033 0.23929 +v -0.05810 0.03567 0.23822 +v -0.06203 0.03742 0.23836 +v -0.05897 0.05170 0.23906 +v -0.05792 0.05321 0.23904 +v -0.05297 0.03395 0.23882 +v -0.05634 0.03536 0.23817 +v -0.03477 0.01810 0.23794 +v -0.02667 0.01056 0.23729 +v -0.02588 0.00914 0.23735 +v -0.03478 0.01608 0.23781 +v -0.03453 0.01319 0.23765 +v -0.02993 0.01156 0.23760 +v -0.02488 0.00796 0.23736 +v 0.07954 0.06713 0.23732 +v 0.07902 0.07030 0.23746 +v 0.07977 0.07326 0.23744 +v 0.07145 0.08730 0.23751 +v 0.07643 0.08222 0.23738 +v 0.07780 0.08347 0.23718 +v 0.07949 0.08109 0.23742 +v 0.08060 0.07636 0.23720 +v 0.06768 0.09323 0.23747 +v 0.06166 0.09692 0.23770 +v 0.06280 0.09739 0.23756 +v 0.05980 0.09895 0.23713 +v 0.06768 0.08836 0.23772 +v 0.05807 0.09949 0.23726 +v 0.04626 0.10930 0.23783 +v 0.05092 0.10655 0.23713 +v 0.05768 0.10368 0.23695 +v 0.04333 0.11586 0.23763 +v 0.03656 0.11636 0.23762 +v 0.03088 0.11608 0.23817 +v 0.03262 0.11630 0.23805 +v 0.06381 0.00422 0.23955 +v 0.06571 0.00491 0.23686 +v 0.06638 0.00540 0.23643 +v 0.06769 0.00515 0.23725 +v 0.06991 0.00621 0.23612 +v 0.07245 0.01043 0.23615 +v 0.07089 0.00642 0.23616 +v 0.07490 0.02373 0.23556 +v 0.07477 0.02642 0.23511 +v 0.07458 0.01380 0.23617 +v 0.07308 0.01324 0.23609 +v 0.07540 0.01838 0.23625 +v 0.07443 0.01777 0.23637 +v 0.07666 0.02240 0.23519 +v 0.07554 0.02784 0.23499 +v 0.07883 0.03254 0.23613 +v 0.07798 0.02812 0.23497 +v 0.07609 0.03592 0.23685 +v 0.07452 0.03968 0.23661 +v 0.07743 0.04080 0.23617 +v 0.08052 0.05351 0.23734 +v 0.08347 0.05209 0.23686 +v 0.07737 0.05496 0.23789 +v 0.07745 0.05414 0.23804 +v 0.07679 0.05817 0.23736 +v -0.03917 0.01977 0.23763 +v -0.04211 0.02219 0.23808 +v -0.05979 0.07340 0.23990 +v -0.05931 0.06491 0.23971 +v -0.05973 0.06751 0.23957 +v -0.06200 0.07171 0.24008 +v -0.03893 0.09503 0.23936 +v -0.04817 0.09033 0.23973 +v -0.04500 0.09308 0.23973 +v -0.04445 0.09585 0.23954 +v 0.02804 0.11585 0.23810 +v 0.01873 0.12032 0.23710 +v 0.01936 0.12041 0.23684 +v 0.02179 0.12005 0.23700 +v 0.01638 0.12041 0.23700 +v 0.01843 0.12074 0.23673 +v 0.01474 0.12057 0.23677 +v 0.01281 0.12056 0.23675 +v 0.01202 0.12048 0.23670 +v 0.01118 0.12015 0.23680 +v 0.00979 0.12002 0.23687 +v 0.00715 0.12025 0.23732 +v 0.00881 0.12035 0.23670 +v 0.00664 0.12037 0.23736 +v 0.00409 0.12091 0.23640 +v 0.00257 0.12110 0.23611 +v -0.00073 0.12093 0.23625 +v 0.00118 0.12101 0.23616 +v -0.00428 0.11960 0.23684 +v -0.00370 0.12052 0.23637 +v -0.00513 0.11916 0.23703 +v -0.00918 0.11918 0.23724 +v -0.01070 0.11889 0.23737 +v -0.01487 0.11283 0.23839 +v -0.01317 0.11372 0.23837 +v -0.01197 0.11447 0.23812 +v -0.01148 0.11559 0.23784 +v -0.02454 0.10830 0.23824 +v -0.02346 0.11117 0.23826 +v -0.02013 0.11488 0.23809 +v -0.01709 0.11397 0.23807 +v -0.02651 0.10644 0.23824 +v -0.02766 0.10602 0.23836 +v -0.03716 0.10023 0.23863 +v -0.03054 0.10274 0.23885 +v -0.03809 0.09798 0.23903 +v -0.05120 0.02922 0.23860 +v -0.05007 0.02606 0.23817 +v -0.04943 0.02393 0.23813 +v -0.05127 0.03164 0.23895 +v -0.04779 0.02057 0.23824 +v -0.05823 0.06230 0.24016 +v -0.05754 0.05606 0.23941 +v -0.06256 0.04666 0.23959 +v -0.06382 0.04499 0.23969 +v -0.06476 0.03793 0.23865 +v -0.06216 0.04824 0.23941 +v -0.06177 0.03575 0.23820 +v -0.06413 0.03644 0.23834 +v -0.06219 0.03432 0.23820 +v -0.05863 0.05390 0.23908 +v -0.05552 0.03293 0.23874 +v -0.05693 0.03377 0.23850 +v -0.03720 0.01685 0.23775 +v -0.02741 0.01039 0.23737 +v -0.03579 0.01452 0.23768 +v -0.03407 0.01187 0.23771 +v -0.03272 0.01120 0.23785 +v -0.03009 0.01089 0.23771 +v -0.02534 0.00546 0.23727 +v 0.07656 0.06490 0.23735 +v 0.07717 0.06571 0.23725 +v 0.07949 0.07143 0.23751 +v 0.06936 0.08722 0.23763 +v 0.07557 0.08595 0.23742 +v 0.07767 0.08525 0.23721 +v 0.08043 0.07981 0.23741 +v 0.08310 0.07458 0.23718 +v 0.07940 0.08310 0.23711 +v 0.06907 0.09321 0.23737 +v 0.06615 0.09658 0.23761 +v 0.06062 0.09785 0.23742 +v 0.06336 0.09829 0.23745 +v 0.05847 0.10050 0.23698 +v 0.04822 0.10938 0.23743 +v 0.05007 0.10868 0.23714 +v 0.05348 0.10930 0.23701 +v 0.04678 0.11540 0.23753 +v 0.04749 0.11196 0.23765 +v 0.04569 0.11595 0.23745 +v 0.04067 0.11753 0.23730 +v 0.03623 0.11875 0.23708 +v 0.04335 0.11771 0.23724 +v 0.06540 0.00422 0.23906 +v 0.06590 0.00448 0.23804 +v 0.06624 0.00513 0.23661 +v 0.06670 0.00527 0.23668 +v 0.06898 0.00518 0.23682 +v 0.06980 0.00574 0.23620 +v 0.07233 0.00871 0.23613 +v 0.07169 0.00554 0.23665 +v 0.07593 0.02435 0.23500 +v 0.07426 0.02764 0.23514 +v 0.07554 0.01272 0.23614 +v 0.07830 0.01975 0.23534 +v 0.07798 0.01847 0.23574 +v 0.07528 0.03813 0.23677 +v 0.08161 0.03134 0.23583 +v 0.08095 0.02738 0.23490 +v 0.07877 0.03465 0.23677 +v 0.07847 0.03408 0.23663 +v 0.07642 0.03660 0.23689 +v 0.07936 0.03985 0.23599 +v 0.07565 0.03978 0.23634 +v 0.07954 0.05509 0.23758 +v 0.08677 0.04900 0.23631 +v 0.07724 0.05602 0.23761 +v 0.07731 0.05440 0.23806 +v 0.07770 0.05447 0.23803 +v 0.07784 0.05774 0.23726 +v 0.07524 0.06320 0.23768 +v 0.07702 0.06350 0.23747 +v -0.03903 0.01853 0.23767 +v -0.04140 0.01998 0.23788 +v -0.04934 0.08755 0.23982 +v -0.05354 0.08654 0.23961 +v -0.05677 0.07916 0.23926 +v -0.06172 0.07339 0.24020 +v -0.05986 0.06346 0.23989 +v -0.06029 0.06598 0.23947 +v -0.06078 0.06918 0.23970 +v -0.05993 0.07543 0.23979 +v -0.05966 0.07809 0.23952 +v -0.04973 0.09288 0.23971 +v -0.04615 0.09408 0.23980 +v -0.04340 0.09749 0.23938 +v -0.03935 0.09723 0.23918 +v 0.02874 0.11816 0.23761 +v 0.02760 0.11706 0.23789 +v 0.02337 0.12001 0.23715 +v 0.01997 0.12103 0.23605 +v 0.02185 0.12072 0.23650 +v 0.02255 0.12014 0.23720 +v 0.01558 0.12098 0.23654 +v 0.01729 0.12130 0.23586 +v 0.01344 0.12109 0.23612 +v 0.01035 0.12039 0.23659 +v 0.00720 0.12066 0.23680 +v 0.00588 0.12038 0.23741 +v 0.00555 0.12064 0.23700 +v -0.00236 0.12095 0.23622 +v -0.00615 0.11862 0.23732 +v -0.00758 0.11885 0.23739 +v -0.01244 0.11850 0.23747 +v -0.01413 0.11362 0.23831 +v -0.02451 0.10955 0.23818 +v -0.02547 0.10820 0.23799 +v -0.02432 0.11057 0.23821 +v -0.02283 0.11446 0.23805 +v -0.02461 0.11289 0.23836 +v -0.01567 0.11357 0.23816 +v -0.02596 0.10740 0.23804 +v -0.02864 0.10555 0.23854 +v -0.03063 0.10421 0.23876 +v -0.03643 0.10128 0.23857 +v -0.03788 0.09641 0.23920 +v -0.04313 0.01754 0.23792 +v -0.05166 0.02670 0.23821 +v -0.05045 0.02461 0.23797 +v -0.05344 0.03213 0.23895 +v -0.05092 0.02151 0.23807 +v -0.04667 0.01489 0.23788 +v -0.04905 0.02090 0.23820 +v -0.05834 0.06071 0.24011 +v -0.06047 0.05645 0.23958 +v -0.06083 0.05118 0.23903 +v -0.06548 0.04493 0.23991 +v -0.06640 0.04394 0.23989 +v -0.06897 0.03765 0.23869 +v -0.06164 0.04929 0.23923 +v -0.02875 0.01008 0.23757 +v -0.02746 0.00917 0.23747 +v -0.02685 0.00771 0.23740 +v -0.03609 0.01236 0.23754 +v -0.03169 0.01104 0.23788 +v 0.07942 0.06512 0.23729 +v 0.08106 0.06977 0.23753 +v 0.07215 0.09044 0.23744 +v 0.07858 0.08456 0.23703 +v 0.08149 0.07999 0.23734 +v 0.08209 0.07666 0.23720 +v 0.08127 0.08195 0.23717 +v 0.06493 0.09764 0.23757 +v 0.06168 0.09782 0.23741 +v 0.06232 0.09844 0.23730 +v 0.06103 0.09865 0.23705 +v 0.06024 0.10081 0.23686 +v 0.05879 0.10814 0.23703 +v 0.04812 0.11397 0.23757 +v 0.04541 0.11794 0.23712 +v 0.03883 0.11781 0.23720 +v 0.03073 0.11722 0.23786 +v 0.03327 0.11813 0.23745 +v 0.06646 0.00486 0.23718 +v 0.06994 0.00535 0.23651 +v 0.06939 0.00484 0.23725 +v 0.07027 0.00578 0.23617 +v 0.07257 0.00730 0.23620 +v 0.07409 0.00872 0.23616 +v 0.07072 0.00554 0.23640 +v 0.07276 0.00607 0.23648 +v 0.07673 0.02572 0.23478 +v 0.07831 0.01510 0.23603 +v 0.07598 0.01714 0.23620 +v 0.07918 0.02110 0.23491 +v 0.07675 0.01811 0.23604 +v 0.08188 0.02921 0.23527 +v 0.08099 0.03313 0.23629 +v 0.07968 0.02455 0.23466 +v 0.07805 0.03579 0.23684 +v 0.07799 0.03941 0.23612 +v 0.08172 0.03881 0.23559 +v 0.07690 0.03901 0.23634 +v 0.08158 0.05514 0.23732 +v 0.07828 0.05505 0.23783 +v 0.08785 0.04480 0.23582 +v 0.08731 0.05303 0.23664 +v 0.07869 0.05643 0.23752 +v 0.07866 0.05945 0.23726 +v -0.04072 0.01756 0.23775 +v -0.05671 0.08523 0.23968 +v -0.06257 0.07554 0.24035 +v -0.06072 0.06468 0.23955 +v -0.06148 0.06657 0.23929 +v -0.06408 0.07440 0.24047 +v -0.06394 0.06968 0.23981 +v -0.06137 0.07762 0.23985 +v -0.05790 0.07788 0.23927 +v -0.04991 0.09041 0.23957 +v -0.05021 0.08925 0.23959 +v -0.04467 0.09819 0.23934 +v -0.04097 0.09878 0.23925 +v 0.02606 0.11948 0.23721 +v 0.02285 0.12006 0.23727 +v 0.02451 0.12007 0.23699 +v 0.02107 0.12090 0.23619 +v 0.01877 0.12103 0.23622 +v 0.02241 0.12054 0.23687 +v 0.01618 0.12126 0.23613 +v 0.01242 0.12109 0.23608 +v 0.01113 0.12081 0.23626 +v 0.00974 0.12046 0.23662 +v 0.00820 0.12102 0.23615 +v 0.00634 0.12068 0.23704 +v 0.00440 0.12137 0.23573 +v 0.00201 0.12166 0.23535 +v -0.00070 0.12157 0.23555 +v -0.00506 0.12034 0.23644 +v -0.00341 0.12162 0.23553 +v -0.00601 0.11979 0.23684 +v -0.00762 0.11974 0.23713 +v -0.01129 0.12035 0.23694 +v -0.01140 0.12016 0.23702 +v -0.01351 0.11477 0.23806 +v -0.01366 0.11628 0.23778 +v -0.02516 0.10912 0.23801 +v -0.01808 0.11587 0.23790 +v -0.02106 0.11681 0.23771 +v -0.01529 0.11523 0.23795 +v -0.02701 0.10766 0.23801 +v -0.02890 0.10768 0.23824 +v -0.03780 0.10061 0.23863 +v -0.03962 0.09903 0.23910 +v -0.03475 0.10299 0.23870 +v -0.03389 0.10407 0.23868 +v -0.05345 0.02819 0.23864 +v -0.05307 0.03050 0.23889 +v -0.05140 0.02506 0.23790 +v -0.05197 0.02280 0.23788 +v -0.05058 0.01348 0.23787 +v -0.05104 0.01790 0.23801 +v -0.05970 0.06019 0.24002 +v -0.06010 0.06133 0.24008 +v -0.06096 0.05284 0.23910 +v -0.06226 0.04977 0.23912 +v -0.06438 0.04759 0.23954 +v -0.06574 0.04560 0.23991 +v -0.06798 0.04194 0.23969 +v -0.06714 0.03611 0.23836 +v -0.07076 0.03929 0.23913 +v -0.06173 0.03335 0.23831 +v -0.05577 0.03168 0.23890 +v -0.05785 0.03197 0.23881 +v -0.03929 0.01549 0.23771 +v -0.03769 0.01434 0.23767 +v -0.03545 0.01089 0.23765 +v -0.03426 0.01052 0.23781 +v -0.03192 0.00988 0.23788 +v -0.02977 0.00939 0.23770 +v -0.02795 0.00655 0.23746 +v 0.08142 0.06638 0.23728 +v 0.07793 0.06390 0.23736 +v 0.07678 0.08671 0.23740 +v 0.07568 0.08805 0.23744 +v 0.08001 0.08780 0.23742 +v 0.08357 0.07730 0.23711 +v 0.08233 0.08281 0.23705 +v 0.06872 0.09846 0.23756 +v 0.06622 0.09795 0.23762 +v 0.06435 0.09860 0.23753 +v 0.06316 0.09970 0.23736 +v 0.06056 0.09913 0.23680 +v 0.04979 0.11184 0.23728 +v 0.06107 0.10393 0.23701 +v 0.05830 0.11239 0.23713 +v 0.04837 0.11805 0.23685 +v 0.04879 0.11456 0.23743 +v 0.03974 0.12014 0.23671 +v 0.03790 0.11932 0.23690 +v 0.04431 0.11896 0.23695 +v 0.03438 0.11940 0.23702 +v 0.06712 0.00400 0.24052 +v 0.06705 0.00445 0.23869 +v 0.06808 0.00447 0.23870 +v 0.07073 0.00502 0.23700 +v 0.07300 0.00522 0.23705 +v 0.07770 0.02360 0.23474 +v 0.07993 0.01208 0.23579 +v 0.07936 0.01880 0.23537 +v 0.07786 0.01700 0.23597 +v 0.07694 0.03755 0.23669 +v 0.08415 0.02934 0.23547 +v 0.08310 0.03214 0.23600 +v 0.08267 0.02761 0.23502 +v 0.08346 0.02423 0.23479 +v 0.07976 0.03504 0.23670 +v 0.07751 0.03671 0.23683 +v 0.07829 0.03834 0.23628 +v 0.07992 0.03779 0.23610 +v 0.08439 0.03901 0.23513 +v 0.08447 0.05658 0.23720 +v 0.08052 0.05671 0.23738 +v 0.08920 0.04736 0.23611 +v 0.08674 0.04116 0.23529 +v 0.08870 0.05158 0.23638 +v 0.08532 0.05449 0.23690 +v 0.07845 0.05701 0.23736 +v 0.07923 0.05760 0.23732 +v 0.08042 0.06043 0.23715 +v -0.05258 0.08832 0.23960 +v -0.05655 0.08678 0.23973 +v -0.06032 0.08134 0.23970 +v -0.06037 0.06250 0.24001 +v -0.06127 0.06347 0.23976 +v -0.06140 0.06538 0.23927 +v -0.06355 0.06693 0.23929 +v -0.06696 0.07270 0.24042 +v -0.06107 0.07924 0.23971 +v -0.04687 0.09638 0.23969 +v -0.05021 0.08989 0.23951 +v 0.02824 0.11897 0.23735 +v 0.02288 0.12040 0.23709 +v 0.02344 0.12069 0.23664 +v 0.02169 0.12132 0.23561 +v 0.01915 0.12158 0.23520 +v 0.02283 0.12068 0.23679 +v 0.02276 0.12026 0.23726 +v 0.01472 0.12129 0.23602 +v 0.01551 0.12152 0.23571 +v 0.01169 0.12112 0.23591 +v 0.01189 0.12143 0.23538 +v 0.00996 0.12090 0.23614 +v 0.00626 0.12104 0.23635 +v 0.00106 0.12189 0.23491 +v -0.00213 0.12171 0.23552 +v -0.00508 0.12119 0.23580 +v -0.00881 0.12019 0.23680 +v -0.00972 0.12039 0.23668 +v -0.01283 0.11997 0.23693 +v -0.01515 0.11813 0.23747 +v -0.02521 0.11070 0.23809 +v -0.02607 0.10940 0.23790 +v -0.02634 0.10839 0.23787 +v -0.02584 0.11284 0.23824 +v -0.02375 0.11621 0.23782 +v -0.02447 0.11440 0.23818 +v -0.03069 0.10633 0.23846 +v -0.03859 0.10037 0.23876 +v -0.03742 0.10117 0.23850 +v -0.03734 0.10268 0.23867 +v -0.03341 0.10547 0.23851 +v -0.04482 0.01356 0.23790 +v -0.05354 0.02609 0.23829 +v -0.05231 0.02548 0.23799 +v -0.05621 0.02797 0.23891 +v -0.05282 0.02119 0.23776 +v -0.04709 0.01272 0.23776 +v -0.05241 0.01505 0.23788 +v -0.06038 0.05897 0.23989 +v -0.06225 0.05145 0.23906 +v -0.06326 0.04891 0.23928 +v -0.06882 0.04410 0.24010 +v -0.06975 0.03509 0.23832 +v -0.07239 0.03829 0.23895 +v -0.06588 0.03400 0.23819 +v -0.06487 0.03275 0.23831 +v -0.06152 0.03219 0.23852 +v -0.05592 0.02970 0.23897 +v -0.03829 0.01273 0.23769 +v -0.03717 0.01121 0.23769 +v -0.03320 0.00991 0.23792 +v -0.02725 0.00507 0.23754 +v 0.08391 0.06245 0.23692 +v 0.08367 0.06602 0.23717 +v 0.08694 0.07143 0.23695 +v 0.07808 0.08906 0.23762 +v 0.07554 0.09105 0.23750 +v 0.08116 0.08410 0.23706 +v 0.08219 0.08565 0.23715 +v 0.08296 0.08126 0.23699 +v 0.08705 0.07730 0.23688 +v 0.07400 0.09489 0.23741 +v 0.06177 0.09928 0.23701 +v 0.06030 0.09954 0.23678 +v 0.06103 0.09925 0.23677 +v 0.05177 0.11229 0.23705 +v 0.06246 0.10317 0.23714 +v 0.06373 0.10947 0.23732 +v 0.05404 0.11236 0.23699 +v 0.04976 0.11585 0.23719 +v 0.04629 0.11915 0.23679 +v 0.04300 0.11971 0.23670 +v 0.03621 0.11966 0.23686 +v 0.04496 0.11875 0.23702 +v 0.03154 0.11869 0.23732 +v 0.03286 0.11940 0.23703 +v 0.06995 0.00449 0.23812 +v 0.07385 0.00663 0.23638 +v 0.07617 0.00833 0.23609 +v 0.07177 0.00474 0.23768 +v 0.07353 0.00578 0.23664 +v 0.07988 0.01463 0.23595 +v 0.08060 0.01893 0.23508 +v 0.07877 0.01791 0.23569 +v 0.08247 0.03357 0.23623 +v 0.08103 0.03456 0.23647 +v 0.08153 0.02141 0.23468 +v 0.08011 0.03565 0.23662 +v 0.07862 0.03677 0.23661 +v 0.08134 0.03685 0.23594 +v 0.08350 0.03750 0.23511 +v 0.09018 0.04956 0.23618 +v 0.09184 0.04589 0.23612 +v 0.08974 0.04186 0.23541 +v 0.08846 0.05478 0.23643 +v 0.08626 0.05546 0.23680 +v 0.08238 0.05877 0.23719 +v -0.04213 0.01403 0.23787 +v -0.05947 0.08490 0.23986 +v -0.05988 0.07970 0.23956 +v -0.06331 0.07598 0.24039 +v -0.06184 0.06435 0.23938 +v -0.06232 0.06561 0.23910 +v -0.06757 0.07539 0.24083 +v -0.06786 0.06812 0.23974 +v -0.06234 0.07915 0.23982 +v -0.05168 0.09599 0.23965 +v -0.05321 0.09213 0.23967 +v -0.05146 0.08972 0.23954 +v -0.04123 0.10114 0.23916 +v -0.04797 0.09988 0.23924 +v 0.02708 0.12017 0.23682 +v 0.02536 0.12035 0.23682 +v 0.02420 0.12073 0.23657 +v 0.02013 0.12172 0.23505 +v 0.01764 0.12161 0.23507 +v 0.01365 0.12159 0.23528 +v 0.00749 0.12147 0.23541 +v 0.01003 0.12137 0.23548 +v 0.00385 0.12183 0.23485 +v 0.00181 0.12200 0.23482 +v -0.00075 0.12210 0.23470 +v -0.00183 0.12205 0.23509 +v -0.00615 0.12072 0.23629 +v -0.00301 0.12215 0.23502 +v -0.00476 0.12204 0.23494 +v -0.00670 0.12026 0.23673 +v -0.00821 0.12047 0.23668 +v -0.01079 0.12094 0.23637 +v -0.01380 0.11915 0.23727 +v -0.02538 0.11387 0.23827 +v -0.02069 0.11797 0.23758 +v -0.03224 0.10913 0.23827 +v -0.03915 0.10140 0.23881 +v -0.03784 0.10166 0.23859 +v -0.03529 0.10466 0.23872 +v -0.03889 0.10470 0.23889 +v -0.04305 0.01298 0.23793 +v -0.05529 0.02662 0.23867 +v -0.05331 0.02301 0.23783 +v -0.05187 0.01957 0.23794 +v -0.04856 0.01144 0.23777 +v -0.05295 0.01251 0.23788 +v -0.05389 0.01741 0.23783 +v -0.06074 0.06027 0.24007 +v -0.06157 0.06128 0.24017 +v -0.06348 0.05951 0.24032 +v -0.06418 0.05307 0.23937 +v -0.06343 0.05030 0.23914 +v -0.06732 0.04660 0.23986 +v -0.06512 0.04880 0.23928 +v -0.06749 0.04536 0.24003 +v -0.07063 0.04233 0.23988 +v -0.06807 0.03410 0.23817 +v -0.07432 0.04096 0.23968 +v -0.06582 0.03071 0.23870 +v -0.05804 0.03026 0.23902 +v -0.04088 0.01503 0.23772 +v -0.03563 0.00994 0.23781 +v -0.03471 0.00934 0.23788 +v -0.03413 0.00821 0.23786 +v -0.03047 0.00808 0.23767 +v -0.02884 0.00542 0.23758 +v -0.02611 0.00512 0.23739 +v 0.08443 0.06873 0.23722 +v 0.08442 0.08974 0.23740 +v 0.07973 0.08909 0.23759 +v 0.08342 0.07923 0.23704 +v 0.08490 0.07875 0.23689 +v 0.08366 0.08287 0.23695 +v 0.08366 0.08432 0.23705 +v 0.06573 0.10058 0.23772 +v 0.07183 0.09811 0.23752 +v 0.06433 0.10077 0.23766 +v 0.06199 0.10052 0.23703 +v 0.06072 0.09960 0.23669 +v 0.05094 0.11488 0.23715 +v 0.06288 0.10543 0.23721 +v 0.06251 0.11201 0.23740 +v 0.05461 0.11529 0.23709 +v 0.05020 0.11695 0.23693 +v 0.04782 0.11967 0.23656 +v 0.03870 0.12028 0.23658 +v 0.04160 0.12056 0.23647 +v 0.03698 0.12023 0.23663 +v 0.04456 0.12003 0.23666 +v 0.03372 0.11985 0.23687 +v 0.03584 0.12055 0.23652 +v 0.06830 0.00420 0.23963 +v 0.07562 0.00673 0.23625 +v 0.07455 0.00549 0.23687 +v 0.08263 0.01250 0.23590 +v 0.07956 0.01668 0.23585 +v 0.07936 0.00992 0.23593 +v 0.08029 0.01782 0.23554 +v 0.08088 0.02003 0.23479 +v 0.08469 0.03241 0.23592 +v 0.08375 0.03330 0.23611 +v 0.08359 0.01987 0.23481 +v 0.08270 0.03671 0.23551 +v 0.08448 0.03725 0.23494 +v 0.08755 0.03778 0.23503 +v 0.08404 0.05825 0.23720 +v 0.09100 0.04386 0.23586 +v 0.08969 0.03931 0.23513 +v 0.08985 0.05301 0.23614 +v 0.09193 0.05076 0.23593 +v 0.08375 0.05980 0.23705 +v -0.05548 0.08897 0.23961 +v -0.05882 0.08646 0.23976 +v -0.06208 0.08086 0.23976 +v -0.06527 0.07669 0.24065 +v -0.06233 0.06205 0.24009 +v -0.06208 0.06306 0.23981 +v -0.06203 0.06496 0.23915 +v -0.06332 0.06513 0.23903 +v -0.06649 0.07623 0.24084 +v -0.06867 0.07453 0.24074 +v -0.07025 0.07082 0.24024 +v -0.06506 0.06511 0.23911 +v -0.06291 0.07807 0.24001 +v -0.05167 0.09745 0.23955 +v -0.05398 0.09398 0.23973 +v -0.05495 0.09065 0.23960 +v -0.04422 0.10410 0.23869 +v -0.05156 0.09850 0.23940 +v -0.04604 0.10083 0.23904 +v -0.04041 0.10165 0.23901 +v 0.02820 0.12041 0.23661 +v 0.02606 0.12070 0.23649 +v 0.02975 0.11985 0.23690 +v 0.02485 0.12088 0.23632 +v 0.02397 0.12106 0.23613 +v 0.02247 0.12183 0.23452 +v 0.01784 0.12211 0.23349 +v 0.02314 0.12128 0.23570 +v 0.01666 0.12188 0.23427 +v 0.01220 0.12180 0.23446 +v 0.01003 0.12167 0.23488 +v 0.00175 0.12231 0.23376 +v 0.00013 0.12238 0.23366 +v -0.00242 0.12231 0.23470 +v -0.00632 0.12129 0.23577 +v -0.00582 0.12164 0.23532 +v -0.00748 0.12026 0.23682 +v -0.00879 0.12089 0.23626 +v -0.00975 0.12120 0.23599 +v -0.01121 0.12133 0.23601 +v -0.01290 0.12086 0.23630 +v -0.01494 0.11955 0.23706 +v -0.01682 0.11782 0.23757 +v -0.02696 0.11154 0.23809 +v -0.02708 0.11379 0.23824 +v -0.01819 0.11927 0.23739 +v -0.02543 0.11522 0.23818 +v -0.02964 0.11124 0.23822 +v -0.03388 0.10726 0.23828 +v -0.03862 0.10286 0.23877 +v -0.03488 0.10633 0.23842 +v -0.04575 0.01152 0.23780 +v -0.04455 0.01165 0.23792 +v -0.05499 0.02423 0.23816 +v -0.05792 0.02896 0.23901 +v -0.05288 0.01834 0.23788 +v -0.05358 0.01943 0.23766 +v -0.05409 0.02177 0.23758 +v -0.04652 0.01141 0.23771 +v -0.05043 0.01011 0.23793 +v -0.05303 0.01009 0.23801 +v -0.05500 0.01415 0.23775 +v -0.05518 0.01663 0.23781 +v -0.06202 0.05986 0.24021 +v -0.06505 0.05743 0.24007 +v -0.06682 0.04883 0.23926 +v -0.07050 0.04425 0.24027 +v -0.06892 0.04564 0.24014 +v -0.07303 0.04199 0.23984 +v -0.07021 0.03364 0.23834 +v -0.07430 0.03673 0.23901 +v -0.07443 0.03862 0.23925 +v -0.06788 0.03305 0.23821 +v -0.06570 0.03304 0.23822 +v -0.06642 0.03240 0.23834 +v -0.06359 0.03045 0.23875 +v -0.06180 0.03075 0.23870 +v -0.04040 0.01361 0.23778 +v -0.03886 0.01120 0.23786 +v -0.03691 0.00933 0.23795 +v -0.03241 0.00749 0.23773 +v -0.03031 0.00623 0.23764 +v -0.02815 0.00430 0.23789 +v -0.02612 0.00426 0.23787 +v -0.02564 0.00463 0.23743 +v 0.08317 0.06132 0.23697 +v 0.08480 0.06402 0.23708 +v 0.08547 0.06675 0.23715 +v 0.08761 0.06857 0.23702 +v 0.09003 0.07268 0.23667 +v 0.07653 0.09586 0.23747 +v 0.07801 0.09256 0.23743 +v 0.08127 0.09002 0.23751 +v 0.08547 0.08708 0.23720 +v 0.08012 0.09101 0.23755 +v 0.08449 0.08076 0.23655 +v 0.08641 0.07968 0.23677 +v 0.08434 0.08171 0.23672 +v 0.06787 0.10148 0.23758 +v 0.07493 0.09865 0.23761 +v 0.07168 0.10050 0.23751 +v 0.06311 0.10206 0.23730 +v 0.06449 0.10435 0.23743 +v 0.06404 0.10730 0.23729 +v 0.06494 0.11055 0.23731 +v 0.06269 0.11372 0.23742 +v 0.05655 0.11583 0.23718 +v 0.05101 0.11588 0.23710 +v 0.05037 0.11842 0.23675 +v 0.04643 0.12083 0.23628 +v 0.04949 0.11971 0.23653 +v 0.04535 0.12084 0.23643 +v 0.03965 0.12085 0.23635 +v 0.03775 0.12053 0.23642 +v 0.04338 0.12092 0.23616 +v 0.04435 0.12084 0.23633 +v 0.03171 0.12000 0.23673 +v 0.03287 0.12051 0.23647 +v 0.03409 0.12058 0.23650 +v 0.07693 0.00714 0.23605 +v 0.07379 0.00485 0.23757 +v 0.08116 0.01560 0.23599 +v 0.08143 0.01090 0.23585 +v 0.08141 0.01823 0.23513 +v 0.08199 0.01902 0.23492 +v 0.08682 0.02608 0.23520 +v 0.08624 0.03121 0.23579 +v 0.08233 0.03490 0.23616 +v 0.08356 0.03426 0.23604 +v 0.08483 0.02097 0.23470 +v 0.08128 0.03569 0.23629 +v 0.08299 0.03550 0.23579 +v 0.08425 0.03619 0.23523 +v 0.08573 0.03665 0.23503 +v 0.08538 0.05892 0.23698 +v 0.08636 0.05716 0.23682 +v 0.09278 0.04665 0.23603 +v 0.09308 0.04429 0.23616 +v 0.09166 0.04164 0.23560 +v 0.09113 0.04030 0.23531 +v 0.09043 0.05329 0.23599 +v -0.06034 0.08822 0.23958 +v -0.06082 0.08532 0.23993 +v -0.06423 0.07750 0.24025 +v -0.06324 0.06433 0.23909 +v -0.06739 0.07609 0.24092 +v -0.06971 0.07389 0.24049 +v -0.06867 0.07524 0.24084 +v -0.07007 0.07266 0.24042 +v -0.07103 0.06844 0.23993 +v -0.06723 0.06502 0.23929 +v -0.06464 0.08045 0.23967 +v -0.06427 0.07904 0.23984 +v -0.05355 0.09710 0.23941 +v -0.05367 0.09576 0.23966 +v -0.04154 0.10236 0.23902 +v -0.05013 0.10030 0.23912 +v -0.04794 0.10169 0.23904 +v 0.02717 0.12105 0.23610 +v 0.02008 0.12273 0.23188 +v 0.01455 0.12183 0.23466 +v 0.00785 0.12202 0.23388 +v 0.00430 0.12213 0.23392 +v -0.00118 0.12239 0.23410 +v -0.00712 0.12095 0.23624 +v -0.00274 0.12258 0.23412 +v -0.00411 0.12245 0.23443 +v -0.00631 0.12206 0.23461 +v -0.01041 0.12163 0.23546 +v -0.01443 0.12077 0.23628 +v -0.01621 0.11912 0.23728 +v -0.02681 0.11526 0.23821 +v -0.02569 0.11722 0.23792 +v -0.03420 0.10871 0.23823 +v -0.03264 0.11314 0.23838 +v -0.04013 0.10304 0.23893 +v -0.03681 0.10583 0.23876 +v -0.04344 0.01011 0.23809 +v -0.05753 0.02564 0.23890 +v -0.05469 0.02261 0.23773 +v -0.05828 0.02666 0.23899 +v -0.05434 0.02060 0.23737 +v -0.04653 0.00958 0.23779 +v -0.04630 0.00875 0.23782 +v -0.05590 0.01100 0.23783 +v -0.05387 0.01891 0.23773 +v -0.05524 0.01789 0.23764 +v -0.06276 0.06063 0.24034 +v -0.06515 0.05985 0.24041 +v -0.06770 0.05475 0.23976 +v -0.06554 0.05021 0.23920 +v -0.06747 0.04782 0.23957 +v -0.06628 0.04918 0.23919 +v -0.06964 0.04542 0.24028 +v -0.07226 0.04314 0.24011 +v -0.07031 0.03400 0.23831 +v -0.07275 0.03513 0.23876 +v -0.07484 0.04267 0.23995 +v -0.07807 0.04194 0.23989 +v -0.06787 0.03064 0.23876 +v -0.06421 0.03010 0.23880 +v -0.06051 0.02909 0.23890 +v -0.03808 0.00933 0.23806 +v -0.03583 0.00838 0.23793 +v -0.03384 0.00680 0.23777 +v -0.02997 0.00502 0.23769 +v -0.02933 0.00445 0.23778 +v -0.02717 0.00430 0.23785 +v 0.08451 0.06152 0.23688 +v 0.08493 0.06211 0.23696 +v 0.08891 0.07029 0.23676 +v 0.09084 0.07052 0.23653 +v 0.08957 0.07482 0.23666 +v 0.08165 0.09225 0.23751 +v 0.08807 0.08854 0.23717 +v 0.08495 0.08007 0.23663 +v 0.08821 0.07828 0.23679 +v 0.08493 0.08307 0.23691 +v 0.06523 0.10276 0.23770 +v 0.07067 0.10155 0.23748 +v 0.07410 0.09911 0.23759 +v 0.06462 0.10177 0.23770 +v 0.06446 0.10327 0.23756 +v 0.06477 0.10547 0.23738 +v 0.06450 0.10616 0.23738 +v 0.06311 0.11270 0.23743 +v 0.06005 0.11422 0.23718 +v 0.05827 0.11561 0.23707 +v 0.05487 0.11643 0.23697 +v 0.05297 0.11658 0.23701 +v 0.05236 0.11864 0.23669 +v 0.04770 0.12094 0.23619 +v 0.04863 0.12071 0.23624 +v 0.03850 0.12098 0.23611 +v 0.04237 0.12133 0.23591 +v 0.04080 0.12132 0.23594 +v 0.03693 0.12086 0.23628 +v 0.03525 0.12103 0.23618 +v 0.07610 0.00555 0.23660 +v 0.07666 0.00647 0.23609 +v 0.07479 0.00475 0.23777 +v 0.08388 0.01381 0.23596 +v 0.08293 0.00906 0.23584 +v 0.08221 0.01677 0.23592 +v 0.08086 0.00726 0.23592 +v 0.07921 0.00733 0.23601 +v 0.08191 0.01793 0.23523 +v 0.08119 0.01736 0.23567 +v 0.08680 0.02096 0.23485 +v 0.09007 0.02841 0.23561 +v 0.08420 0.03377 0.23608 +v 0.08628 0.03315 0.23587 +v 0.08302 0.01862 0.23502 +v 0.08539 0.01916 0.23485 +v 0.08730 0.03605 0.23511 +v 0.08990 0.03707 0.23518 +v 0.09333 0.04581 0.23606 +v 0.09307 0.04261 0.23591 +v 0.09143 0.03924 0.23530 +v 0.09117 0.05299 0.23594 +v 0.08971 0.05620 0.23628 +v 0.08752 0.05844 0.23668 +v 0.09311 0.04911 0.23582 +v 0.08486 0.06096 0.23695 +v -0.03946 0.00950 0.23807 +v -0.05745 0.09195 0.23947 +v -0.06346 0.08395 0.23981 +v -0.06599 0.07666 0.24074 +v -0.06332 0.06254 0.23983 +v -0.06831 0.07637 0.24059 +v -0.06709 0.07682 0.24067 +v -0.06957 0.07469 0.24061 +v -0.06927 0.07519 0.24067 +v -0.07135 0.07175 0.24032 +v -0.07284 0.06973 0.24007 +v -0.07067 0.06680 0.23979 +v -0.06919 0.06552 0.23955 +v -0.06585 0.06409 0.23912 +v -0.06592 0.08283 0.23964 +v -0.05275 0.09855 0.23924 +v -0.05470 0.09479 0.23967 +v -0.04247 0.10512 0.23873 +v -0.04857 0.10282 0.23896 +v -0.05313 0.09997 0.23882 +v 0.02941 0.12096 0.23608 +v 0.02826 0.12114 0.23596 +v 0.02632 0.12127 0.23592 +v 0.03067 0.12044 0.23650 +v 0.02566 0.12137 0.23561 +v 0.02416 0.12149 0.23523 +v 0.02146 0.12260 0.23191 +v 0.01498 0.12232 0.23206 +v -0.00414 0.12258 0.23414 +v -0.00774 0.12192 0.23475 +v -0.00828 0.12141 0.23564 +v -0.01164 0.12168 0.23543 +v -0.01318 0.12144 0.23558 +v -0.01592 0.12021 0.23682 +v -0.02876 0.11382 0.23833 +v -0.02850 0.11533 0.23832 +v -0.03377 0.10973 0.23822 +v -0.03600 0.10818 0.23832 +v -0.03063 0.11402 0.23841 +v -0.03486 0.11114 0.23835 +v -0.03844 0.10643 0.23884 +v -0.04079 0.10417 0.23893 +v -0.05730 0.02288 0.23820 +v -0.05577 0.02247 0.23776 +v -0.05997 0.02682 0.23902 +v -0.05491 0.01950 0.23719 +v -0.05517 0.02147 0.23741 +v -0.04866 0.00744 0.23781 +v -0.05640 0.00710 0.23782 +v -0.05845 0.01239 0.23791 +v -0.05651 0.01654 0.23785 +v -0.05436 0.01867 0.23760 +v -0.05617 0.01732 0.23773 +v -0.06384 0.06071 0.24038 +v -0.06633 0.05965 0.24049 +v -0.06818 0.05739 0.24013 +v -0.06787 0.05154 0.23948 +v -0.06977 0.04646 0.24007 +v -0.06806 0.04926 0.23946 +v -0.06698 0.04978 0.23924 +v -0.07053 0.04535 0.24033 +v -0.07140 0.04481 0.24031 +v -0.07329 0.04397 0.24009 +v -0.07267 0.03339 0.23886 +v -0.06976 0.03116 0.23881 +v -0.07450 0.03539 0.23897 +v -0.07685 0.03724 0.23918 +v -0.07663 0.04326 0.24002 +v -0.07877 0.03815 0.23935 +v -0.06880 0.02911 0.23893 +v -0.06244 0.02914 0.23880 +v -0.06607 0.02925 0.23881 +v -0.06399 0.02759 0.23879 +v -0.03519 0.00667 0.23791 +v -0.03291 0.00564 0.23783 +v -0.03170 0.00652 0.23770 +v -0.03122 0.00483 0.23800 +v -0.02900 0.00392 0.23811 +v -0.02715 0.00383 0.23846 +v 0.08638 0.06429 0.23713 +v 0.08599 0.06206 0.23703 +v 0.09203 0.06715 0.23631 +v 0.09221 0.07289 0.23658 +v 0.09120 0.07405 0.23659 +v 0.07643 0.09774 0.23746 +v 0.07875 0.09535 0.23752 +v 0.07914 0.09279 0.23742 +v 0.08585 0.08437 0.23708 +v 0.08488 0.09123 0.23751 +v 0.08695 0.08555 0.23712 +v 0.08651 0.09065 0.23746 +v 0.08500 0.08067 0.23648 +v 0.08498 0.08116 0.23653 +v 0.08798 0.08074 0.23683 +v 0.08557 0.08078 0.23661 +v 0.08554 0.08187 0.23676 +v 0.06934 0.10360 0.23742 +v 0.07580 0.09974 0.23753 +v 0.07443 0.10248 0.23753 +v 0.07438 0.10147 0.23760 +v 0.06690 0.10479 0.23741 +v 0.06653 0.10785 0.23721 +v 0.06367 0.11427 0.23736 +v 0.06249 0.11520 0.23724 +v 0.05816 0.11768 0.23680 +v 0.05614 0.11806 0.23659 +v 0.05100 0.11962 0.23660 +v 0.04718 0.12145 0.23591 +v 0.04557 0.12143 0.23608 +v 0.04979 0.12102 0.23610 +v 0.03895 0.12145 0.23565 +v 0.03753 0.12129 0.23579 +v 0.04429 0.12144 0.23589 +v 0.04352 0.12173 0.23546 +v 0.04171 0.12100 0.23621 +v 0.03972 0.12120 0.23607 +v 0.03673 0.12123 0.23598 +v 0.04494 0.12122 0.23620 +v 0.03125 0.12113 0.23582 +v 0.03342 0.12103 0.23620 +v 0.03382 0.12130 0.23588 +v 0.07673 0.00597 0.23623 +v 0.07580 0.00498 0.23724 +v 0.07744 0.00631 0.23611 +v 0.08596 0.01168 0.23589 +v 0.08368 0.01536 0.23600 +v 0.08363 0.01638 0.23591 +v 0.07802 0.00691 0.23605 +v 0.08923 0.02394 0.23518 +v 0.08502 0.03375 0.23590 +v 0.08923 0.03151 0.23598 +v 0.08838 0.03298 0.23605 +v 0.08455 0.03478 0.23569 +v 0.08366 0.01805 0.23528 +v 0.08265 0.01792 0.23531 +v 0.08452 0.01834 0.23508 +v 0.08597 0.03525 0.23533 +v 0.08878 0.03576 0.23526 +v 0.09099 0.03802 0.23523 +v 0.09395 0.04680 0.23579 +v 0.09472 0.04175 0.23571 +v 0.09373 0.04475 0.23605 +v 0.09296 0.04013 0.23569 +v 0.09153 0.05474 0.23596 +v 0.09192 0.05365 0.23586 +v 0.09287 0.05409 0.23581 +v -0.06175 0.09065 0.23936 +v -0.06304 0.08544 0.23976 +v -0.06524 0.07822 0.24006 +v -0.06495 0.06116 0.24022 +v -0.06419 0.06322 0.23939 +v -0.06482 0.06390 0.23910 +v -0.07031 0.07515 0.24026 +v -0.07203 0.07268 0.24016 +v -0.06941 0.07594 0.24042 +v -0.07285 0.06755 0.23992 +v -0.06861 0.06403 0.23944 +v -0.06688 0.06338 0.23937 +v -0.06529 0.07931 0.23977 +v -0.06613 0.08026 0.23966 +v -0.05469 0.09610 0.23954 +v -0.05417 0.09842 0.23900 +v -0.04327 0.10675 0.23861 +v -0.04750 0.10431 0.23876 +v -0.04980 0.10183 0.23889 +v -0.05192 0.10167 0.23860 +v 0.02858 0.12154 0.23536 +v 0.02698 0.12163 0.23517 +v 0.02348 0.12187 0.23427 +v 0.02304 0.12227 0.23294 +v 0.02211 0.12316 0.22952 +v -0.00315 0.12267 0.23377 +v -0.00539 0.12266 0.23346 +v -0.00762 0.12252 0.23334 +v -0.01138 0.12231 0.23416 +v -0.01409 0.12165 0.23519 +v -0.01591 0.12093 0.23633 +v -0.01711 0.11985 0.23711 +v -0.02769 0.11680 0.23805 +v -0.03256 0.11468 0.23841 +v -0.03546 0.11349 0.23842 +v -0.03739 0.10740 0.23866 +v -0.03945 0.10698 0.23879 +v -0.04527 0.00884 0.23788 +v -0.04031 0.00758 0.23814 +v -0.05856 0.02460 0.23881 +v -0.05948 0.02653 0.23904 +v -0.05543 0.02033 0.23707 +v -0.04789 0.00574 0.23784 +v -0.05152 0.00700 0.23780 +v -0.05367 0.00688 0.23786 +v -0.05898 0.01099 0.23782 +v -0.05839 0.01436 0.23785 +v -0.05535 0.01873 0.23734 +v -0.05638 0.01839 0.23746 +v -0.06502 0.06084 0.24032 +v -0.06626 0.06049 0.24032 +v -0.07051 0.05569 0.23991 +v -0.06989 0.05351 0.23971 +v -0.06925 0.04771 0.23980 +v -0.07169 0.03203 0.23890 +v -0.07516 0.04424 0.24004 +v -0.07717 0.04445 0.24008 +v -0.08189 0.04100 0.23993 +v -0.06648 0.02750 0.23879 +v -0.03714 0.00673 0.23808 +v -0.03416 0.00591 0.23781 +v -0.03012 0.00451 0.23781 +v -0.02991 0.00407 0.23812 +v -0.02833 0.00367 0.23857 +v -0.02608 0.00375 0.23870 +v 0.08828 0.06463 0.23694 +v 0.08971 0.06391 0.23669 +v 0.09283 0.07161 0.23643 +v 0.09197 0.07563 0.23655 +v 0.07721 0.09663 0.23744 +v 0.08328 0.09367 0.23767 +v 0.08946 0.08602 0.23700 +v 0.08887 0.09090 0.23726 +v 0.08659 0.08126 0.23683 +v 0.08927 0.08086 0.23675 +v 0.08689 0.08247 0.23700 +v 0.07316 0.10439 0.23731 +v 0.06615 0.11099 0.23721 +v 0.06617 0.11268 0.23714 +v 0.06121 0.11552 0.23711 +v 0.06025 0.11658 0.23695 +v 0.05485 0.11805 0.23661 +v 0.05412 0.11965 0.23638 +v 0.05130 0.12024 0.23647 +v 0.05241 0.12028 0.23633 +v 0.04790 0.12154 0.23582 +v 0.04650 0.12175 0.23559 +v 0.04825 0.12121 0.23605 +v 0.04878 0.12149 0.23577 +v 0.04247 0.12195 0.23519 +v 0.04163 0.12157 0.23572 +v 0.04038 0.12201 0.23505 +v 0.03293 0.12133 0.23577 +v 0.03551 0.12178 0.23524 +v 0.07704 0.00544 0.23651 +v 0.07685 0.00506 0.23700 +v 0.07667 0.00466 0.23776 +v 0.08753 0.01271 0.23585 +v 0.08515 0.01545 0.23585 +v 0.08516 0.00982 0.23581 +v 0.08204 0.00744 0.23588 +v 0.08366 0.01735 0.23564 +v 0.08224 0.01726 0.23572 +v 0.07992 0.00641 0.23609 +v 0.07878 0.00597 0.23632 +v 0.09033 0.01908 0.23500 +v 0.09141 0.02524 0.23541 +v 0.09273 0.03125 0.23586 +v 0.08680 0.03392 0.23576 +v 0.08590 0.03444 0.23563 +v 0.08636 0.01908 0.23484 +v 0.08535 0.01755 0.23525 +v 0.08760 0.03509 0.23536 +v 0.09075 0.03524 0.23552 +v 0.09148 0.03676 0.23540 +v 0.08636 0.06046 0.23694 +v 0.09616 0.04725 0.23511 +v 0.09523 0.04291 0.23565 +v 0.09410 0.03949 0.23571 +v 0.09318 0.03784 0.23566 +v 0.09105 0.05876 0.23632 +v -0.05776 0.09321 0.23938 +v -0.06241 0.09041 0.23935 +v -0.06599 0.08661 0.23945 +v -0.06555 0.08456 0.23963 +v -0.06616 0.07761 0.24032 +v -0.06772 0.07808 0.24004 +v -0.07120 0.07406 0.24011 +v -0.06938 0.07719 0.24007 +v -0.07311 0.07166 0.24012 +v -0.07491 0.06949 0.23999 +v -0.07084 0.06493 0.23976 +v -0.07231 0.06567 0.23987 +v -0.06542 0.06335 0.23925 +v -0.06941 0.08020 0.23960 +v -0.05490 0.09690 0.23920 +v -0.05547 0.09591 0.23936 +v -0.04135 0.10710 0.23859 +v -0.04722 0.10545 0.23868 +v -0.04067 0.10680 0.23868 +v -0.04922 0.10434 0.23863 +v -0.05346 0.10097 0.23862 +v -0.04979 0.10313 0.23873 +v 0.02568 0.12190 0.23426 +v 0.02292 0.12267 0.23095 +v -0.00927 0.12207 0.23450 +v -0.01324 0.12208 0.23444 +v -0.01519 0.12170 0.23519 +v -0.01561 0.12132 0.23587 +v -0.01712 0.12077 0.23651 +v -0.02971 0.11467 0.23846 +v -0.03040 0.11537 0.23840 +v -0.03829 0.11157 0.23873 +v -0.03138 0.11544 0.23835 +v -0.03861 0.10793 0.23874 +v -0.03792 0.10951 0.23864 +v -0.04333 0.00783 0.23803 +v -0.05978 0.02239 0.23858 +v -0.05651 0.02099 0.23743 +v -0.06149 0.02510 0.23892 +v -0.05555 0.01969 0.23690 +v -0.04560 0.00688 0.23790 +v -0.05081 0.00561 0.23769 +v -0.05581 0.00568 0.23793 +v -0.05798 0.00747 0.23778 +v -0.06098 0.01210 0.23768 +v -0.05780 0.01678 0.23780 +v -0.05704 0.01756 0.23771 +v -0.06848 0.06037 0.24014 +v -0.06865 0.05897 0.24024 +v -0.07095 0.05724 0.24006 +v -0.07051 0.05177 0.23972 +v -0.07078 0.04726 0.23996 +v -0.06972 0.04995 0.23971 +v -0.07131 0.04592 0.24018 +v -0.07282 0.04570 0.24007 +v -0.07457 0.03213 0.23917 +v -0.07715 0.03543 0.23911 +v -0.07788 0.03648 0.23913 +v -0.07474 0.04556 0.23997 +v -0.07988 0.04273 0.24005 +v -0.08048 0.03907 0.23958 +v -0.06623 0.02524 0.23867 +v -0.03876 0.00722 0.23812 +v -0.03636 0.00540 0.23822 +v -0.03483 0.00516 0.23813 +v -0.03391 0.00530 0.23790 +v -0.02933 0.00359 0.23863 +v -0.02725 0.00331 0.23980 +v -0.02501 0.00378 0.23863 +v 0.08720 0.06175 0.23698 +v 0.09115 0.06199 0.23645 +v 0.09311 0.06868 0.23610 +v 0.09293 0.07397 0.23641 +v 0.09360 0.07140 0.23629 +v 0.09251 0.06984 0.23628 +v 0.09151 0.07827 0.23667 +v 0.07776 0.09931 0.23724 +v 0.07868 0.09837 0.23718 +v 0.08110 0.09471 0.23756 +v 0.07998 0.09668 0.23743 +v 0.08741 0.08346 0.23710 +v 0.08548 0.09334 0.23782 +v 0.08653 0.09206 0.23763 +v 0.09032 0.08933 0.23711 +v 0.06967 0.10612 0.23731 +v 0.07275 0.10563 0.23726 +v 0.07574 0.10137 0.23755 +v 0.07517 0.10365 0.23739 +v 0.06899 0.11115 0.23711 +v 0.06481 0.11428 0.23723 +v 0.06457 0.11574 0.23709 +v 0.06153 0.11680 0.23687 +v 0.05961 0.11828 0.23676 +v 0.05877 0.11911 0.23665 +v 0.05582 0.11923 0.23640 +v 0.04766 0.12199 0.23532 +v 0.04511 0.12166 0.23581 +v 0.04562 0.12201 0.23530 +v 0.05112 0.12086 0.23623 +v 0.04978 0.12172 0.23551 +v 0.03755 0.12182 0.23502 +v 0.04452 0.12199 0.23521 +v 0.04360 0.12218 0.23475 +v 0.03216 0.12188 0.23478 +v 0.03339 0.12126 0.23602 +v 0.03359 0.12191 0.23480 +v 0.07758 0.00572 0.23632 +v 0.08978 0.01137 0.23578 +v 0.08983 0.00975 0.23568 +v 0.08423 0.00732 0.23566 +v 0.08100 0.00611 0.23617 +v 0.08556 0.01656 0.23557 +v 0.08809 0.01813 0.23496 +v 0.09180 0.02205 0.23531 +v 0.09201 0.02701 0.23558 +v 0.09018 0.03256 0.23597 +v 0.08806 0.03357 0.23594 +v 0.08447 0.01754 0.23541 +v 0.08714 0.01689 0.23515 +v 0.08905 0.03455 0.23558 +v 0.09708 0.04132 0.23516 +v 0.09501 0.03874 0.23555 +v 0.09698 0.04486 0.23511 +v 0.08937 0.06092 0.23663 +v 0.09247 0.05911 0.23626 +v -0.05787 0.09448 0.23921 +v -0.06380 0.09129 0.23907 +v -0.06790 0.08367 0.23963 +v -0.06617 0.07876 0.23989 +v -0.06559 0.06247 0.23962 +v -0.07158 0.07513 0.23980 +v -0.07236 0.07376 0.23986 +v -0.07028 0.07649 0.24002 +v -0.07359 0.07326 0.23982 +v -0.07444 0.07120 0.24004 +v -0.07684 0.07067 0.24003 +v -0.07673 0.06507 0.23983 +v -0.07048 0.06315 0.23980 +v -0.06846 0.06314 0.23952 +v -0.06727 0.07926 0.23973 +v -0.05468 0.09971 0.23868 +v -0.05624 0.09703 0.23876 +v -0.05607 0.09508 0.23944 +v -0.04160 0.10853 0.23863 +v -0.04402 0.11044 0.23857 +v -0.05191 0.10275 0.23838 +v -0.05331 0.10246 0.23842 +v 0.03019 0.12173 0.23508 +v 0.02782 0.12200 0.23422 +v 0.02444 0.12281 0.23083 +v 0.02348 0.12324 0.22925 +v -0.00936 0.12261 0.23297 +v -0.01304 0.12263 0.23302 +v -0.01546 0.12223 0.23416 +v -0.01656 0.12137 0.23588 +v -0.03018 0.11699 0.23801 +v -0.03375 0.11554 0.23834 +v -0.03754 0.11414 0.23858 +v -0.03943 0.10880 0.23873 +v -0.04322 0.00638 0.23807 +v -0.06047 0.02395 0.23891 +v -0.05865 0.02029 0.23791 +v -0.05586 0.01925 0.23707 +v -0.05607 0.01992 0.23698 +v -0.04890 0.00490 0.23782 +v -0.04665 0.00560 0.23796 +v -0.05155 0.00520 0.23779 +v -0.05274 0.00554 0.23780 +v -0.05413 0.00546 0.23793 +v -0.05763 0.00580 0.23783 +v -0.06093 0.00913 0.23783 +v -0.06236 0.01364 0.23756 +v -0.06142 0.01117 0.23775 +v -0.05920 0.01599 0.23782 +v -0.05790 0.01838 0.23767 +v -0.06763 0.06163 0.23989 +v -0.07305 0.05747 0.24010 +v -0.07193 0.05411 0.23975 +v -0.07199 0.05266 0.23968 +v -0.07091 0.04880 0.23984 +v -0.07216 0.03012 0.23902 +v -0.07722 0.03274 0.23929 +v -0.07933 0.03526 0.23916 +v -0.08021 0.04428 0.24004 +v -0.08315 0.03796 0.23945 +v -0.08048 0.03624 0.23925 +v -0.08184 0.04278 0.24002 +v -0.06542 0.02118 0.23854 +v -0.04071 0.00630 0.23818 +v -0.03890 0.00567 0.23829 +v -0.03223 0.00494 0.23790 +v -0.03364 0.00459 0.23826 +v -0.03042 0.00366 0.23887 +v -0.02940 0.00325 0.23942 +v 0.09287 0.06330 0.23626 +v 0.09395 0.06388 0.23602 +v 0.09341 0.07555 0.23636 +v 0.07707 0.10097 0.23745 +v 0.08319 0.09522 0.23775 +v 0.09006 0.08411 0.23687 +v 0.09242 0.08802 0.23706 +v 0.09103 0.09121 0.23704 +v 0.08780 0.09234 0.23747 +v 0.09095 0.08132 0.23660 +v 0.07394 0.10585 0.23714 +v 0.07482 0.10540 0.23712 +v 0.07660 0.10253 0.23751 +v 0.06852 0.10863 0.23718 +v 0.06674 0.11496 0.23709 +v 0.06334 0.11653 0.23690 +v 0.06094 0.11846 0.23664 +v 0.05385 0.12083 0.23605 +v 0.04649 0.12238 0.23444 +v 0.05021 0.12141 0.23596 +v 0.04916 0.12204 0.23502 +v 0.03878 0.12189 0.23496 +v 0.04049 0.12247 0.23416 +v 0.03685 0.12221 0.23434 +v 0.03591 0.12240 0.23405 +v 0.07794 0.00522 0.23686 +v 0.08748 0.01403 0.23579 +v 0.08952 0.01357 0.23561 +v 0.08224 0.00570 0.23624 +v 0.08004 0.00579 0.23631 +v 0.08926 0.01670 0.23508 +v 0.09216 0.02008 0.23522 +v 0.09304 0.02431 0.23534 +v 0.09328 0.02822 0.23564 +v 0.09294 0.03216 0.23593 +v 0.08949 0.03378 0.23583 +v 0.09250 0.03495 0.23570 +v 0.09140 0.03420 0.23575 +v 0.09276 0.03665 0.23560 +v 0.09391 0.03769 0.23572 +v -0.06201 0.09313 0.23891 +v -0.06393 0.08973 0.23927 +v -0.06494 0.08847 0.23932 +v -0.06992 0.07803 0.23983 +v -0.07108 0.07602 0.23987 +v -0.07215 0.07473 0.23962 +v -0.07436 0.07232 0.23995 +v -0.07329 0.06381 0.23991 +v -0.06899 0.06226 0.23977 +v -0.06981 0.08330 0.23967 +v -0.05640 0.09775 0.23860 +v -0.05679 0.09628 0.23894 +v -0.04809 0.11090 0.23851 +v -0.04975 0.10631 0.23839 +v -0.05108 0.10412 0.23846 +v -0.05583 0.10274 0.23846 +v 0.02905 0.12211 0.23444 +v 0.02674 0.12250 0.23193 +v 0.02303 0.12349 0.22792 +v -0.01624 0.12173 0.23533 +v -0.01795 0.12164 0.23545 +v -0.03115 0.11667 0.23811 +v -0.03573 0.11497 0.23840 +v -0.03441 0.11698 0.23816 +v -0.04013 0.11284 0.23868 +v -0.06112 0.02283 0.23887 +v -0.06085 0.01910 0.23815 +v -0.05694 0.01953 0.23732 +v -0.06125 0.02341 0.23894 +v -0.04992 0.00467 0.23780 +v -0.04813 0.00478 0.23792 +v -0.04740 0.00467 0.23815 +v -0.04517 0.00542 0.23809 +v -0.05064 0.00513 0.23771 +v -0.05549 0.00425 0.23842 +v -0.05700 0.00484 0.23809 +v -0.06005 0.00534 0.23782 +v -0.06165 0.00579 0.23779 +v -0.06402 0.01221 0.23756 +v -0.05888 0.01746 0.23779 +v -0.07086 0.05942 0.24011 +v -0.07558 0.05343 0.23962 +v -0.07100 0.05062 0.23984 +v -0.07232 0.04749 0.23989 +v -0.07359 0.04751 0.23977 +v -0.07587 0.02996 0.23918 +v -0.07453 0.02677 0.23895 +v -0.07777 0.04657 0.23994 +v -0.08465 0.04048 0.23967 +v -0.08342 0.04193 0.23991 +v -0.07284 0.02402 0.23885 +v -0.06629 0.01998 0.23850 +v -0.06224 0.02276 0.23885 +v -0.03586 0.00432 0.23870 +v -0.03809 0.00476 0.23857 +v -0.03250 0.00455 0.23818 +v -0.03195 0.00373 0.23906 +v -0.02504 0.00326 0.24028 +v 0.09205 0.06243 0.23636 +v 0.09385 0.06997 0.23604 +v 0.09408 0.07357 0.23612 +v 0.09321 0.07944 0.23651 +v 0.07915 0.09963 0.23712 +v 0.08079 0.09845 0.23727 +v 0.08208 0.09676 0.23760 +v 0.08630 0.09340 0.23780 +v 0.08465 0.09527 0.23780 +v 0.09172 0.08494 0.23683 +v 0.08982 0.09253 0.23714 +v 0.09276 0.08089 0.23656 +v 0.07222 0.10873 0.23736 +v 0.07286 0.10786 0.23734 +v 0.07733 0.10473 0.23736 +v 0.06946 0.11292 0.23706 +v 0.07218 0.11063 0.23721 +v 0.06801 0.11467 0.23710 +v 0.06571 0.11670 0.23692 +v 0.06234 0.11831 0.23644 +v 0.06010 0.11962 0.23660 +v 0.05660 0.12034 0.23623 +v 0.05511 0.12063 0.23609 +v 0.05437 0.12039 0.23621 +v 0.05276 0.12122 0.23589 +v 0.05165 0.12128 0.23588 +v 0.04762 0.12227 0.23481 +v 0.04524 0.12246 0.23425 +v 0.05060 0.12160 0.23570 +v 0.03847 0.12225 0.23419 +v 0.04354 0.12256 0.23367 +v 0.03152 0.12212 0.23441 +v 0.03260 0.12241 0.23346 +v 0.03468 0.12250 0.23340 +v 0.07859 0.00480 0.23765 +v 0.08590 0.01600 0.23569 +v 0.09110 0.01362 0.23546 +v 0.09271 0.01102 0.23546 +v 0.08150 0.00540 0.23647 +v 0.07975 0.00539 0.23664 +v 0.08069 0.00531 0.23667 +v 0.08790 0.01637 0.23524 +v 0.09060 0.01621 0.23505 +v 0.09327 0.01850 0.23510 +v 0.09264 0.02143 0.23549 +v 0.09372 0.02562 0.23539 +v 0.09308 0.02230 0.23537 +v 0.09405 0.03015 0.23565 +v 0.09198 0.03350 0.23588 +v 0.09381 0.03331 0.23591 +v 0.09382 0.03690 0.23567 +v 0.09488 0.03682 0.23554 +v 0.09294 0.06079 0.23630 +v -0.05976 0.09496 0.23889 +v -0.06365 0.09356 0.23856 +v -0.06444 0.09084 0.23897 +v -0.06629 0.08888 0.23896 +v -0.06796 0.08571 0.23950 +v -0.07250 0.07532 0.23960 +v -0.07316 0.07448 0.23964 +v -0.07125 0.07722 0.23977 +v -0.07483 0.07354 0.23980 +v -0.07640 0.07266 0.23996 +v -0.07891 0.06819 0.24001 +v -0.07194 0.06174 0.23997 +v -0.07550 0.06239 0.23990 +v -0.07078 0.08204 0.23974 +v -0.07028 0.07951 0.23971 +v -0.05644 0.10033 0.23843 +v -0.05751 0.09702 0.23872 +v -0.04541 0.11406 0.23846 +v -0.04948 0.10852 0.23847 +v -0.05315 0.10440 0.23839 +v 0.03020 0.12219 0.23414 +v 0.02820 0.12269 0.23157 +v 0.02505 0.12363 0.22814 +v 0.02685 0.12331 0.22918 +v 0.02083 0.12359 0.22722 +v -0.01698 0.12243 0.23387 +v -0.03826 0.11496 0.23852 +v -0.04265 0.00539 0.23819 +v -0.06164 0.02175 0.23872 +v -0.05927 0.01850 0.23784 +v -0.04917 0.00409 0.23805 +v -0.04833 0.00420 0.23814 +v -0.04605 0.00456 0.23835 +v -0.05249 0.00474 0.23790 +v -0.05077 0.00442 0.23794 +v -0.05305 0.00484 0.23787 +v -0.05340 0.00423 0.23824 +v -0.05881 0.00439 0.23812 +v -0.06169 0.00766 0.23782 +v -0.06337 0.00972 0.23797 +v -0.06443 0.01384 0.23762 +v -0.06263 0.01421 0.23756 +v -0.06030 0.01715 0.23785 +v -0.07000 0.06132 0.23996 +v -0.07324 0.05855 0.24020 +v -0.07611 0.05793 0.24014 +v -0.07376 0.05093 0.23949 +v -0.07427 0.05212 0.23948 +v -0.07227 0.04926 0.23978 +v -0.07464 0.04782 0.23963 +v -0.07783 0.03157 0.23930 +v -0.08001 0.03459 0.23923 +v -0.07599 0.04700 0.23981 +v -0.08000 0.04624 0.23989 +v -0.08251 0.04460 0.23995 +v -0.08596 0.03836 0.23940 +v -0.08213 0.03586 0.23926 +v -0.07070 0.02057 0.23856 +v -0.06427 0.01958 0.23844 +v -0.03983 0.00571 0.23819 +v -0.03463 0.00410 0.23877 +v -0.03705 0.00462 0.23855 +v -0.03921 0.00426 0.23908 +v -0.03294 0.00397 0.23865 +v -0.03093 0.00332 0.23967 +v -0.03002 0.00322 0.23975 +v 0.09353 0.06197 0.23628 +v 0.09421 0.08125 0.23633 +v 0.07938 0.10284 0.23752 +v 0.08363 0.09620 0.23781 +v 0.09246 0.08258 0.23663 +v 0.09323 0.08960 0.23697 +v 0.09303 0.08635 0.23688 +v 0.09100 0.09408 0.23694 +v 0.08826 0.09431 0.23733 +v 0.08668 0.09358 0.23773 +v 0.07414 0.10720 0.23717 +v 0.07561 0.10706 0.23710 +v 0.07861 0.10829 0.23718 +v 0.07863 0.10355 0.23754 +v 0.06795 0.11639 0.23687 +v 0.06304 0.11830 0.23637 +v 0.06200 0.12047 0.23615 +v 0.05894 0.12032 0.23647 +v 0.05346 0.12170 0.23555 +v 0.04947 0.12236 0.23435 +v 0.04761 0.12261 0.23386 +v 0.04580 0.12289 0.23253 +v 0.05129 0.12196 0.23516 +v 0.04114 0.12277 0.23320 +v 0.03801 0.12254 0.23346 +v 0.03664 0.12258 0.23336 +v 0.07916 0.00513 0.23705 +v 0.08691 0.01575 0.23555 +v 0.08868 0.01468 0.23558 +v 0.09012 0.01501 0.23521 +v 0.09350 0.00794 0.23509 +v 0.08206 0.00508 0.23670 +v 0.08883 0.01554 0.23532 +v 0.09132 0.01733 0.23497 +v 0.09312 0.02058 0.23536 +v 0.09422 0.02411 0.23526 +v 0.09388 0.02134 0.23534 +v 0.09500 0.02806 0.23541 +v 0.09352 0.03565 0.23568 +v -0.05890 0.09568 0.23890 +v -0.06159 0.09486 0.23872 +v -0.06318 0.09515 0.23841 +v -0.06535 0.08908 0.23918 +v -0.06506 0.09016 0.23893 +v -0.06721 0.08771 0.23916 +v -0.07418 0.07418 0.23969 +v -0.07141 0.07868 0.23979 +v -0.07421 0.07368 0.23972 +v -0.07900 0.07283 0.24010 +v -0.07970 0.07158 0.24009 +v -0.07782 0.06343 0.23973 +v -0.07317 0.06049 0.24004 +v -0.07174 0.08323 0.23972 +v -0.07333 0.08374 0.23972 +v -0.05729 0.09879 0.23849 +v -0.04188 0.11354 0.23866 +v -0.04331 0.11433 0.23861 +v -0.04676 0.11324 0.23846 +v -0.05217 0.11136 0.23862 +v -0.05207 0.10638 0.23842 +v -0.05574 0.10947 0.23862 +v -0.05876 0.10079 0.23846 +v 0.03021 0.12255 0.23276 +v 0.02431 0.12371 0.22674 +v 0.02376 0.12390 0.22521 +v -0.03711 0.11669 0.23809 +v -0.04051 0.11447 0.23854 +v -0.04384 0.00478 0.23841 +v -0.04201 0.00493 0.23845 +v -0.06180 0.02253 0.23887 +v -0.06239 0.01992 0.23848 +v -0.04878 0.00429 0.23792 +v -0.05003 0.00402 0.23810 +v -0.04735 0.00368 0.23906 +v -0.04499 0.00444 0.23846 +v -0.05185 0.00413 0.23820 +v -0.05741 0.00350 0.23888 +v -0.05455 0.00339 0.23905 +v -0.06031 0.00407 0.23803 +v -0.06153 0.00420 0.23800 +v -0.06341 0.00622 0.23780 +v -0.06661 0.01236 0.23766 +v -0.06445 0.01009 0.23789 +v -0.07960 0.05376 0.23979 +v -0.07313 0.04948 0.23963 +v -0.07540 0.05069 0.23937 +v -0.07421 0.04930 0.23945 +v -0.07918 0.02514 0.23904 +v -0.07702 0.02188 0.23896 +v -0.08113 0.03352 0.23931 +v -0.07930 0.02812 0.23912 +v -0.07711 0.04831 0.23956 +v -0.08157 0.04543 0.23996 +v -0.07942 0.04776 0.23961 +v -0.08456 0.03676 0.23931 +v -0.08617 0.04113 0.23961 +v -0.08485 0.04202 0.23971 +v -0.08332 0.03682 0.23931 +v -0.08443 0.04360 0.23979 +v -0.07392 0.02143 0.23873 +v -0.06563 0.01822 0.23831 +v -0.06827 0.01855 0.23848 +v -0.03989 0.00529 0.23839 +v -0.03529 0.00370 0.23924 +v -0.03705 0.00393 0.23901 +v -0.03360 0.00376 0.23906 +v -0.03163 0.00321 0.24015 +v 0.08096 0.10170 0.23742 +v 0.08131 0.09972 0.23733 +v 0.08359 0.09864 0.23768 +v 0.08577 0.09577 0.23766 +v 0.08433 0.09698 0.23778 +v 0.09359 0.08350 0.23652 +v 0.09359 0.09008 0.23696 +v 0.09370 0.08808 0.23684 +v 0.09342 0.09244 0.23672 +v 0.09331 0.08179 0.23654 +v 0.07346 0.11014 0.23720 +v 0.08032 0.10508 0.23760 +v 0.07309 0.11283 0.23724 +v 0.06960 0.11495 0.23716 +v 0.06563 0.11933 0.23627 +v 0.05975 0.12083 0.23630 +v 0.05734 0.12127 0.23602 +v 0.05563 0.12168 0.23573 +v 0.05462 0.12169 0.23554 +v 0.05240 0.12185 0.23536 +v 0.03930 0.12281 0.23280 +v 0.04443 0.12332 0.23022 +v 0.03121 0.12244 0.23348 +v 0.03356 0.12308 0.23076 +v 0.03669 0.12337 0.23051 +v 0.07983 0.00470 0.23804 +v 0.09359 0.01317 0.23518 +v 0.09242 0.01426 0.23525 +v 0.09197 0.00747 0.23522 +v 0.09437 0.01085 0.23516 +v 0.08144 0.00502 0.23690 +v 0.08008 0.00501 0.23713 +v 0.09210 0.01595 0.23508 +v 0.09408 0.01664 0.23506 +v 0.09443 0.01931 0.23516 +v 0.09487 0.02497 0.23516 +v 0.09554 0.03347 0.23550 +v 0.09374 0.03440 0.23577 +v 0.09471 0.03509 0.23561 +v -0.06064 0.09666 0.23873 +v -0.06639 0.09651 0.23706 +v -0.06539 0.09149 0.23826 +v -0.06798 0.08914 0.23852 +v -0.06828 0.08738 0.23920 +v -0.07255 0.07682 0.23964 +v -0.07394 0.07586 0.23965 +v -0.07822 0.07474 0.24000 +v -0.08015 0.06837 0.23994 +v -0.08087 0.06557 0.23974 +v -0.07801 0.06149 0.23974 +v -0.07551 0.05930 0.24016 +v -0.07157 0.08067 0.23991 +v -0.07241 0.08078 0.23998 +v -0.07099 0.08659 0.23940 +v -0.05951 0.09816 0.23861 +v -0.04505 0.11527 0.23834 +v -0.04840 0.11345 0.23852 +v -0.04671 0.11510 0.23839 +v -0.05014 0.11343 0.23864 +v -0.06035 0.10684 0.23856 +v 0.03064 0.12297 0.23085 +v 0.02729 0.12351 0.22829 +v 0.02671 0.12372 0.22707 +v 0.02186 0.12389 0.22553 +v -0.03855 0.11649 0.23817 +v -0.04291 0.00461 0.23847 +v -0.04077 0.00474 0.23870 +v -0.06183 0.01829 0.23811 +v -0.04963 0.00359 0.23864 +v -0.04588 0.00383 0.23893 +v -0.04541 0.00408 0.23866 +v -0.05070 0.00373 0.23853 +v -0.05613 0.00317 0.23940 +v -0.05334 0.00335 0.23900 +v -0.05901 0.00330 0.23883 +v -0.06007 0.00342 0.23848 +v -0.06286 0.00468 0.23790 +v -0.06572 0.00558 0.23778 +v -0.06713 0.01337 0.23784 +v -0.06571 0.01145 0.23768 +v -0.06278 0.01601 0.23779 +v -0.06526 0.00906 0.23795 +v -0.07784 0.05149 0.23947 +v -0.07923 0.05654 0.24007 +v -0.07519 0.04878 0.23936 +v -0.08162 0.03221 0.23927 +v -0.07970 0.03060 0.23919 +v -0.08121 0.04660 0.23988 +v -0.08045 0.04809 0.23956 +v -0.08314 0.04687 0.24010 +v -0.08629 0.03680 0.23936 +v -0.08763 0.03968 0.23952 +v -0.08287 0.03532 0.23931 +v -0.08576 0.04498 0.23983 +v -0.07198 0.01783 0.23829 +v -0.06357 0.01823 0.23820 +v -0.03447 0.00344 0.23969 +v -0.03614 0.00355 0.23949 +v -0.03715 0.00359 0.23942 +v -0.03288 0.00360 0.23919 +v -0.03297 0.00323 0.24026 +v 0.08174 0.10315 0.23757 +v 0.09424 0.09026 0.23672 +v 0.09372 0.09087 0.23685 +v 0.09396 0.08552 0.23661 +v 0.09017 0.09509 0.23692 +v 0.09223 0.09563 0.23689 +v 0.07511 0.10842 0.23708 +v 0.07792 0.10942 0.23709 +v 0.08170 0.10598 0.23756 +v 0.06814 0.11778 0.23666 +v 0.06982 0.11638 0.23698 +v 0.06347 0.11995 0.23616 +v 0.06702 0.11897 0.23634 +v 0.06092 0.12144 0.23598 +v 0.05861 0.12109 0.23621 +v 0.05314 0.12224 0.23494 +v 0.05390 0.12213 0.23515 +v 0.05204 0.12243 0.23438 +v 0.04914 0.12274 0.23326 +v 0.04866 0.12342 0.23070 +v 0.04003 0.12341 0.23068 +v 0.04204 0.12370 0.22922 +v 0.03840 0.12325 0.23118 +v 0.09428 0.00663 0.23498 +v 0.09517 0.00862 0.23489 +v 0.08099 0.00482 0.23752 +v 0.08198 0.00478 0.23736 +v 0.09577 0.01870 0.23512 +v 0.09497 0.02274 0.23520 +v 0.09596 0.02290 0.23499 +v 0.09457 0.03355 0.23572 +v -0.06249 0.09669 0.23852 +v -0.06375 0.09713 0.23820 +v -0.06615 0.09059 0.23814 +v -0.06708 0.09007 0.23812 +v -0.06975 0.08706 0.23934 +v -0.07566 0.07745 0.23978 +v -0.07975 0.07475 0.24019 +v -0.08066 0.07364 0.24024 +v -0.08019 0.07106 0.24003 +v -0.08171 0.06390 0.23963 +v -0.07640 0.06077 0.23999 +v -0.07989 0.06180 0.23962 +v -0.07343 0.08665 0.23943 +v -0.04183 0.11452 0.23864 +v -0.04255 0.11460 0.23859 +v -0.04388 0.11540 0.23837 +v -0.04746 0.11461 0.23840 +v -0.05332 0.11407 0.23865 +v -0.05611 0.11304 0.23881 +v -0.06015 0.11172 0.23868 +v -0.06342 0.10102 0.23843 +v 0.02689 0.12388 0.22493 +v 0.01947 0.12396 0.22481 +v 0.02352 0.12409 0.22415 +v -0.04167 0.11590 0.23825 +v -0.03860 0.11837 0.23790 +v -0.04469 0.00385 0.23914 +v -0.04260 0.00429 0.23874 +v -0.04205 0.00400 0.23927 +v -0.04866 0.00368 0.23855 +v -0.04588 0.00345 0.23969 +v -0.05251 0.00357 0.23871 +v -0.05156 0.00346 0.23890 +v -0.06099 0.00349 0.23828 +v -0.06296 0.00348 0.23833 +v -0.06423 0.00488 0.23784 +v -0.06816 0.01683 0.23832 +v -0.06726 0.01188 0.23777 +v -0.06651 0.01174 0.23765 +v -0.06799 0.01004 0.23800 +v -0.06683 0.01085 0.23783 +v -0.07746 0.05924 0.24016 +v -0.08014 0.05012 0.23947 +v -0.07842 0.05840 0.24020 +v -0.08149 0.05544 0.24003 +v -0.07729 0.04947 0.23941 +v -0.07859 0.02231 0.23900 +v -0.08152 0.02613 0.23899 +v -0.07704 0.01944 0.23875 +v -0.08400 0.03431 0.23948 +v -0.08036 0.02841 0.23904 +v -0.07899 0.04894 0.23944 +v -0.08484 0.04666 0.24008 +v -0.08372 0.03597 0.23926 +v -0.08611 0.03551 0.23942 +v -0.08723 0.03834 0.23939 +v -0.08838 0.04130 0.23963 +v -0.08544 0.04287 0.23962 +v -0.07325 0.01709 0.23818 +v -0.03512 0.00327 0.23997 +v -0.04069 0.00394 0.23939 +v -0.03876 0.00334 0.24021 +v 0.08280 0.10091 0.23754 +v 0.08575 0.09699 0.23760 +v 0.08526 0.10044 0.23763 +v 0.09350 0.09515 0.23673 +v 0.07673 0.11069 0.23709 +v 0.07884 0.11194 0.23690 +v 0.08214 0.10786 0.23734 +v 0.08325 0.10381 0.23761 +v 0.07154 0.11432 0.23726 +v 0.07022 0.11850 0.23663 +v 0.07118 0.11538 0.23727 +v 0.06418 0.12083 0.23604 +v 0.06674 0.12099 0.23594 +v 0.06314 0.12104 0.23597 +v 0.06221 0.12152 0.23583 +v 0.05911 0.12225 0.23572 +v 0.05677 0.12187 0.23565 +v 0.05830 0.12197 0.23581 +v 0.05456 0.12238 0.23475 +v 0.03586 0.12367 0.22919 +v 0.03911 0.12396 0.22904 +v 0.09685 0.01218 0.23454 +v 0.09375 0.01512 0.23510 +v 0.09718 0.00980 0.23448 +v 0.09570 0.01552 0.23490 +v 0.09543 0.02014 0.23512 +v -0.06640 0.09292 0.23590 +v -0.06773 0.09049 0.23759 +v -0.06933 0.08813 0.23901 +v -0.07790 0.07739 0.23994 +v -0.08132 0.06764 0.23973 +v -0.08118 0.06920 0.23976 +v -0.08277 0.06470 0.23951 +v -0.07795 0.06039 0.23993 +v -0.07860 0.06096 0.23969 +v -0.07356 0.08086 0.23992 +v -0.07086 0.08820 0.23904 +v -0.07256 0.08778 0.23920 +v -0.07540 0.08508 0.23952 +v -0.04635 0.11686 0.23802 +v -0.04985 0.11447 0.23855 +v -0.04875 0.11480 0.23841 +v -0.04841 0.11578 0.23820 +v -0.05263 0.11446 0.23864 +v -0.05769 0.11350 0.23877 +v -0.05993 0.11327 0.23876 +v -0.06288 0.11214 0.23862 +v -0.06518 0.10977 0.23864 +v 0.03022 0.12339 0.22893 +v 0.02892 0.12368 0.22765 +v 0.02666 0.12412 0.22247 +v 0.02141 0.12451 0.22285 +v 0.02241 0.12436 0.22348 +v 0.02431 0.12431 0.22238 +v -0.04282 0.11667 0.23811 +v -0.03984 0.11889 0.23792 +v -0.04887 0.00335 0.23919 +v -0.05038 0.00312 0.23982 +v -0.06186 0.00325 0.23851 +v -0.06358 0.00408 0.23799 +v -0.06529 0.00436 0.23790 +v -0.06666 0.00711 0.23789 +v -0.06873 0.01455 0.23811 +v -0.06901 0.01213 0.23800 +v -0.06816 0.00828 0.23808 +v -0.08163 0.05168 0.23975 +v -0.07878 0.05012 0.23940 +v -0.08027 0.05749 0.24013 +v -0.08280 0.05411 0.23995 +v -0.08269 0.02017 0.23897 +v -0.08172 0.01861 0.23884 +v -0.08503 0.03321 0.23946 +v -0.08170 0.02891 0.23888 +v -0.08222 0.04793 0.23994 +v -0.08402 0.04822 0.24034 +v -0.08768 0.03622 0.23953 +v -0.08930 0.03691 0.23952 +v -0.09065 0.03947 0.23965 +v -0.08653 0.04267 0.23959 +v -0.08690 0.04348 0.23965 +v -0.08685 0.04711 0.23998 +v -0.07076 0.01436 0.23815 +v -0.03687 0.00329 0.23993 +v -0.04006 0.00347 0.24016 +v 0.08423 0.10116 0.23764 +v 0.08846 0.09765 0.23724 +v 0.09014 0.09626 0.23698 +v 0.09234 0.09759 0.23700 +v 0.07995 0.11033 0.23700 +v 0.08386 0.10664 0.23742 +v 0.07465 0.11501 0.23720 +v 0.06857 0.11876 0.23649 +v 0.07094 0.11706 0.23686 +v 0.06528 0.12099 0.23601 +v 0.06821 0.12041 0.23616 +v 0.06170 0.12229 0.23554 +v 0.06026 0.12213 0.23567 +v 0.05626 0.12218 0.23529 +v 0.05360 0.12254 0.23447 +v 0.05270 0.12310 0.23261 +v 0.03321 0.12338 0.22920 +v 0.03781 0.12410 0.22850 +v 0.03809 0.12390 0.22916 +v 0.09550 0.01408 0.23485 +v 0.09654 0.00675 0.23468 +v 0.09817 0.00810 0.23430 +v 0.09708 0.02019 0.23476 +v -0.07149 0.10454 0.23839 +v -0.06724 0.09188 0.23605 +v -0.06859 0.09148 0.23636 +v -0.06941 0.08970 0.23827 +v -0.07898 0.07864 0.24000 +v -0.08133 0.07583 0.24042 +v -0.08126 0.07235 0.24007 +v -0.08242 0.06616 0.23950 +v -0.08143 0.07071 0.23982 +v -0.08343 0.06261 0.23961 +v -0.08208 0.06192 0.23966 +v -0.08020 0.06062 0.23976 +v -0.07658 0.08227 0.23967 +v -0.07549 0.09025 0.23920 +v -0.07579 0.08703 0.23944 +v -0.05690 0.11410 0.23880 +v -0.05274 0.11525 0.23848 +v -0.06189 0.11388 0.23860 +v -0.06844 0.10860 0.23858 +v 0.02878 0.12384 0.22511 +v -0.04344 0.00357 0.23983 +v -0.04126 0.00349 0.24011 +v -0.04458 0.00320 0.24074 +v -0.06434 0.00357 0.23819 +v -0.06632 0.00452 0.23785 +v -0.06736 0.00541 0.23779 +v -0.06954 0.00923 0.23805 +v -0.07981 0.05936 0.24006 +v -0.08302 0.05027 0.23995 +v -0.08253 0.05587 0.24011 +v -0.08226 0.05676 0.24009 +v -0.08365 0.02641 0.23893 +v -0.07644 0.01633 0.23839 +v -0.08495 0.03453 0.23947 +v -0.08620 0.03231 0.23941 +v -0.08514 0.03024 0.23914 +v -0.08311 0.04834 0.24014 +v -0.08566 0.04807 0.24008 +v -0.08808 0.03513 0.23976 +v -0.09033 0.03760 0.23954 +v -0.09120 0.04211 0.23969 +v -0.08812 0.04511 0.23983 +v -0.07402 0.01300 0.23819 +v -0.04076 0.00321 0.24089 +v 0.08820 0.09947 0.23732 +v 0.08559 0.10246 0.23761 +v 0.09086 0.09718 0.23704 +v 0.07785 0.11576 0.23697 +v 0.08146 0.11315 0.23689 +v 0.08258 0.10983 0.23722 +v 0.08422 0.10938 0.23727 +v 0.07251 0.11510 0.23720 +v 0.07080 0.12049 0.23649 +v 0.07299 0.11595 0.23704 +v 0.07124 0.11822 0.23666 +v 0.06380 0.12157 0.23580 +v 0.06450 0.12145 0.23594 +v 0.06596 0.12165 0.23571 +v 0.06787 0.12127 0.23587 +v 0.06303 0.12177 0.23566 +v 0.06234 0.12227 0.23537 +v 0.06113 0.12229 0.23551 +v 0.06030 0.12265 0.23505 +v 0.05829 0.12241 0.23555 +v 0.05775 0.12246 0.23527 +v 0.05612 0.12263 0.23456 +v 0.05423 0.12281 0.23373 +v 0.05123 0.12379 0.22972 +v 0.03849 0.12412 0.22818 +v 0.03617 0.12394 0.22814 +v 0.09904 0.01199 0.23399 +v 0.09740 0.01473 0.23454 +v 0.09931 0.00945 0.23395 +v -0.07464 0.09736 0.23768 +v -0.06729 0.09663 0.22751 +v -0.07046 0.08895 0.23879 +v -0.07771 0.08031 0.23982 +v -0.08146 0.07745 0.24040 +v -0.07619 0.08004 0.23983 +v -0.08210 0.07387 0.24023 +v -0.08238 0.06882 0.23941 +v -0.08399 0.06628 0.23905 +v -0.08394 0.06464 0.23930 +v -0.08405 0.06352 0.23946 +v -0.08172 0.05995 0.23980 +v -0.07920 0.06025 0.23989 +v -0.07222 0.09009 0.23862 +v -0.07699 0.08600 0.23949 +v -0.07697 0.08367 0.23953 +v -0.04972 0.11806 0.23789 +v -0.05581 0.11494 0.23859 +v -0.05929 0.11412 0.23877 +v -0.05728 0.11476 0.23863 +v -0.06104 0.11452 0.23868 +v -0.06500 0.11330 0.23867 +v -0.06299 0.11397 0.23854 +v -0.06905 0.11229 0.23869 +v 0.03170 0.12352 0.22816 +v 0.03009 0.12363 0.22735 +v 0.02943 0.12414 0.22249 +v -0.04227 0.00334 0.24057 +v -0.06584 0.00353 0.23825 +v -0.06843 0.00666 0.23788 +v -0.06993 0.00738 0.23794 +v -0.08328 0.05240 0.23992 +v -0.08341 0.05587 0.24004 +v -0.08357 0.01729 0.23883 +v -0.08370 0.02198 0.23900 +v -0.07567 0.01455 0.23823 +v -0.08162 0.01521 0.23840 +v -0.08642 0.03414 0.23956 +v -0.08530 0.02819 0.23899 +v -0.08473 0.04920 0.24019 +v -0.09084 0.03666 0.23959 +v -0.09246 0.03852 0.23958 +v -0.08718 0.04874 0.24004 +v -0.09065 0.04571 0.23993 +v -0.07148 0.01151 0.23815 +v 0.09109 0.09942 0.23711 +v 0.08065 0.11653 0.23682 +v 0.08179 0.11485 0.23683 +v 0.08600 0.10818 0.23719 +v 0.08771 0.10543 0.23712 +v 0.07682 0.11751 0.23678 +v 0.07176 0.12055 0.23653 +v 0.07241 0.11732 0.23670 +v 0.06489 0.12179 0.23580 +v 0.06726 0.12173 0.23557 +v 0.06925 0.12109 0.23608 +v 0.06163 0.12263 0.23510 +v 0.05846 0.12265 0.23524 +v 0.05425 0.12368 0.23041 +v 0.03709 0.12411 0.22761 +v 0.03514 0.12412 0.22649 +v 0.09870 0.00662 0.23433 +v 0.10094 0.00694 0.23359 +v -0.07803 0.10480 0.23874 +v -0.07080 0.11089 0.23872 +v -0.06976 0.09088 0.23757 +v -0.07047 0.09031 0.23812 +v -0.07976 0.08005 0.23991 +v -0.08263 0.07874 0.24041 +v -0.08286 0.07664 0.24044 +v -0.08464 0.07474 0.24008 +v -0.08361 0.07019 0.23939 +v -0.08359 0.06807 0.23908 +v -0.08516 0.06267 0.23946 +v -0.08464 0.06157 0.23966 +v -0.08475 0.05808 0.23982 +v -0.07849 0.09006 0.23962 +v -0.07721 0.08447 0.23947 +v -0.07845 0.08375 0.23946 +v -0.04471 0.11910 0.23779 +v -0.05450 0.11656 0.23825 +v -0.04820 0.11918 0.23775 +v -0.05829 0.11578 0.23834 +v -0.05865 0.11448 0.23874 +v -0.05826 0.11485 0.23862 +v -0.06246 0.11528 0.23839 +v -0.06716 0.11364 0.23880 +v 0.03345 0.12365 0.22793 +v 0.02994 0.12392 0.22386 +v 0.03104 0.12364 0.22534 +v -0.04155 0.00325 0.24067 +v -0.06733 0.00395 0.23801 +v -0.06845 0.00556 0.23776 +v -0.07076 0.00913 0.23807 +v -0.08497 0.05311 0.23996 +v -0.08431 0.05061 0.24006 +v -0.08442 0.05498 0.23995 +v -0.08473 0.01855 0.23909 +v -0.08595 0.01916 0.23915 +v -0.08611 0.02302 0.23897 +v -0.07937 0.01344 0.23818 +v -0.08848 0.03364 0.23964 +v -0.08800 0.03003 0.23916 +v -0.08595 0.04982 0.24006 +v -0.09100 0.03552 0.23975 +v -0.09266 0.03752 0.23964 +v -0.09308 0.04134 0.23956 +v -0.09069 0.04747 0.24000 +v -0.07378 0.01007 0.23833 +v 0.08813 0.10115 0.23730 +v 0.09294 0.09886 0.23681 +v 0.07897 0.11679 0.23687 +v 0.08409 0.11617 0.23681 +v 0.08355 0.11191 0.23718 +v 0.08417 0.11111 0.23726 +v 0.08586 0.11047 0.23729 +v 0.08746 0.10273 0.23729 +v 0.07405 0.11731 0.23679 +v 0.07132 0.12118 0.23641 +v 0.06360 0.12232 0.23519 +v 0.06453 0.12202 0.23571 +v 0.06674 0.12202 0.23534 +v 0.06846 0.12165 0.23570 +v 0.06770 0.12175 0.23561 +v 0.06197 0.12276 0.23474 +v 0.05921 0.12294 0.23436 +v 0.05749 0.12286 0.23434 +v 0.05577 0.12298 0.23344 +v 0.05569 0.12324 0.23230 +v 0.05343 0.12383 0.22948 +v 0.10016 0.01132 0.23365 +v 0.10042 0.00813 0.23366 +v -0.07900 0.10191 0.23868 +v -0.07596 0.10789 0.23887 +v -0.07322 0.11040 0.23889 +v -0.07055 0.09266 0.23632 +v -0.07861 0.08216 0.23960 +v -0.08278 0.07766 0.24050 +v -0.08308 0.06901 0.23920 +v -0.08525 0.06512 0.23894 +v -0.08434 0.06668 0.23894 +v -0.08656 0.06390 0.23889 +v -0.08515 0.06026 0.23976 +v -0.07990 0.09495 0.23965 +v -0.07798 0.08524 0.23948 +v -0.08051 0.08818 0.23961 +v -0.04283 0.11972 0.23771 +v -0.05536 0.11889 0.23806 +v -0.04914 0.11994 0.23753 +v -0.05991 0.11484 0.23870 +v -0.05925 0.11519 0.23859 +v -0.06197 0.11657 0.23819 +v -0.06435 0.11484 0.23848 +v -0.06558 0.11463 0.23858 +v -0.06918 0.11410 0.23862 +v -0.07061 0.11324 0.23874 +v 0.03306 0.12375 0.22664 +v 0.03150 0.12360 0.22685 +v 0.03183 0.12407 0.22332 +v -0.06843 0.00468 0.23781 +v -0.06945 0.00555 0.23780 +v -0.07080 0.00647 0.23786 +v -0.08405 0.01339 0.23817 +v -0.08493 0.01703 0.23891 +v -0.08762 0.02751 0.23897 +v -0.08163 0.01254 0.23815 +v -0.09109 0.03403 0.23971 +v -0.09541 0.04170 0.23948 +v -0.09558 0.03747 0.23967 +v -0.09256 0.04400 0.23980 +v -0.08798 0.04969 0.23999 +v -0.09252 0.04664 0.24010 +v -0.07608 0.01197 0.23818 +v 0.09238 0.10292 0.23678 +v 0.08260 0.11657 0.23673 +v 0.08026 0.11832 0.23684 +v 0.08305 0.11329 0.23702 +v 0.08870 0.10965 0.23716 +v 0.08864 0.10753 0.23704 +v 0.08813 0.10401 0.23711 +v 0.07490 0.11890 0.23662 +v 0.07832 0.11981 0.23673 +v 0.07219 0.12111 0.23642 +v 0.07282 0.11995 0.23652 +v 0.06600 0.12220 0.23516 +v 0.06721 0.12235 0.23484 +v 0.06944 0.12174 0.23574 +v 0.06296 0.12270 0.23470 +v 0.06113 0.12307 0.23395 +v 0.05707 0.12382 0.22993 +v 0.05583 0.12396 0.22946 +v 0.10077 0.00936 0.23344 +v 0.10138 0.00806 0.23321 +v -0.08082 0.10342 0.23886 +v -0.07943 0.10023 0.23898 +v -0.07873 0.10765 0.23898 +v -0.07185 0.11245 0.23884 +v -0.08334 0.08043 0.24023 +v -0.08018 0.08137 0.23969 +v -0.08410 0.07779 0.24044 +v -0.08848 0.07250 0.23948 +v -0.08463 0.06752 0.23883 +v -0.08767 0.06348 0.23880 +v -0.08595 0.06136 0.23966 +v -0.08737 0.06045 0.23982 +v -0.08080 0.09206 0.23988 +v -0.07999 0.09848 0.23941 +v -0.07994 0.08533 0.23938 +v -0.08144 0.08310 0.23926 +v -0.04430 0.11992 0.23761 +v -0.04600 0.11969 0.23775 +v -0.05255 0.11939 0.23783 +v -0.05852 0.11704 0.23811 +v -0.05037 0.11958 0.23764 +v -0.04755 0.11999 0.23768 +v -0.06442 0.11634 0.23818 +v -0.06498 0.11429 0.23862 +v -0.06741 0.11463 0.23865 +v 0.03219 0.12362 0.22599 +v -0.06844 0.00374 0.23801 +v -0.08865 0.05499 0.23988 +v -0.08623 0.01550 0.23872 +v -0.08621 0.01768 0.23905 +v -0.08825 0.02250 0.23887 +v -0.08938 0.02551 0.23891 +v -0.07989 0.01141 0.23821 +v -0.09001 0.03167 0.23935 +v -0.09023 0.02909 0.23898 +v -0.09273 0.03512 0.23984 +v -0.09685 0.03904 0.23954 +v -0.09529 0.03541 0.23989 +v -0.08822 0.05168 0.23985 +v -0.09026 0.04854 0.23994 +v -0.09178 0.04766 0.24006 +v -0.07898 0.01238 0.23816 +v -0.07650 0.01055 0.23826 +v 0.08872 0.10322 0.23697 +v 0.08943 0.10167 0.23710 +v 0.09059 0.10242 0.23698 +v 0.09369 0.10026 0.23659 +v 0.08259 0.11921 0.23684 +v 0.08487 0.11489 0.23700 +v 0.08350 0.11756 0.23677 +v 0.08556 0.11187 0.23741 +v 0.08520 0.11331 0.23736 +v 0.08966 0.10464 0.23699 +v 0.07618 0.12046 0.23669 +v 0.07078 0.12181 0.23599 +v 0.07172 0.12162 0.23628 +v 0.06473 0.12254 0.23474 +v 0.06899 0.12227 0.23510 +v 0.06370 0.12281 0.23433 +v 0.06272 0.12303 0.23395 +v 0.05901 0.12313 0.23318 +v 0.05780 0.12333 0.23197 +v 0.05412 0.12399 0.22827 +v 0.10120 0.01082 0.23316 +v 0.10190 0.00688 0.23301 +v -0.08072 0.10187 0.23902 +v -0.08211 0.10402 0.23900 +v -0.07631 0.11028 0.23913 +v -0.08271 0.10720 0.23931 +v -0.07307 0.11312 0.23890 +v -0.08459 0.07959 0.24041 +v -0.08168 0.08111 0.23985 +v -0.08715 0.07864 0.24037 +v -0.08631 0.06787 0.23886 +v -0.08595 0.06609 0.23873 +v -0.08821 0.06483 0.23872 +v -0.08655 0.06233 0.23938 +v -0.08980 0.05805 0.23986 +v -0.08255 0.09449 0.24012 +v -0.08160 0.09734 0.23994 +v -0.08415 0.09403 0.24024 +v -0.08177 0.08421 0.23919 +v -0.04326 0.12043 0.23742 +v -0.04559 0.12028 0.23752 +v -0.04713 0.11952 0.23775 +v -0.05481 0.11956 0.23790 +v -0.05866 0.11923 0.23787 +v -0.05022 0.12057 0.23725 +v -0.04806 0.12049 0.23742 +v -0.06010 0.11669 0.23819 +v -0.06353 0.11789 0.23801 +v -0.06683 0.11638 0.23812 +v -0.06612 0.11707 0.23797 +v -0.07033 0.11436 0.23861 +v -0.06948 0.11535 0.23838 +v -0.07220 0.11391 0.23882 +v -0.06948 0.00411 0.23797 +v -0.07006 0.00503 0.23780 +v -0.07445 0.00617 0.23810 +v -0.08292 0.01162 0.23803 +v -0.08850 0.01828 0.23896 +v -0.08962 0.01960 0.23880 +v -0.09064 0.02748 0.23892 +v -0.08169 0.01050 0.23813 +v -0.09192 0.03246 0.23945 +v -0.09672 0.04219 0.23953 +v -0.09618 0.04484 0.23978 +v -0.09909 0.03699 0.23947 +v -0.09442 0.04611 0.24001 +v -0.09052 0.04994 0.23968 +v -0.09156 0.04862 0.23991 +v -0.09262 0.04791 0.24020 +v -0.07609 0.00893 0.23830 +v 0.09091 0.10393 0.23694 +v 0.09345 0.10236 0.23661 +v 0.08167 0.12029 0.23686 +v 0.07995 0.12004 0.23669 +v 0.08565 0.11635 0.23681 +v 0.08488 0.11765 0.23672 +v 0.08560 0.11302 0.23750 +v 0.09002 0.10828 0.23704 +v 0.09100 0.10540 0.23700 +v 0.07452 0.12003 0.23651 +v 0.07796 0.12043 0.23664 +v 0.07324 0.12126 0.23619 +v 0.07230 0.12174 0.23616 +v 0.06589 0.12277 0.23408 +v 0.07035 0.12210 0.23560 +v 0.06940 0.12260 0.23456 +v 0.06160 0.12333 0.23313 +v 0.05886 0.12374 0.22969 +v 0.05649 0.12400 0.22898 +v 0.10184 0.00929 0.23270 +v 0.10206 0.00792 0.23258 +v -0.08190 0.10268 0.23904 +v -0.08235 0.10584 0.23919 +v -0.08071 0.10010 0.23946 +v -0.07737 0.11089 0.23923 +v -0.07992 0.10899 0.23910 +v -0.07366 0.11200 0.23906 +v -0.08524 0.08107 0.24025 +v -0.08278 0.08168 0.23976 +v -0.08151 0.08239 0.23941 +v -0.09235 0.06731 0.23896 +v -0.09250 0.07672 0.23988 +v -0.08876 0.06283 0.23895 +v -0.08872 0.06184 0.23931 +v -0.08788 0.06101 0.23972 +v -0.09007 0.05976 0.23975 +v -0.08299 0.09649 0.24003 +v -0.08172 0.09889 0.23979 +v -0.08426 0.08527 0.23916 +v -0.08305 0.09069 0.23987 +v -0.08344 0.08386 0.23912 +v -0.04436 0.12082 0.23720 +v -0.04248 0.12059 0.23742 +v -0.04500 0.12084 0.23726 +v -0.04690 0.12030 0.23753 +v -0.05895 0.12002 0.23765 +v -0.05376 0.12020 0.23759 +v -0.05157 0.12030 0.23748 +v -0.06073 0.11886 0.23780 +v -0.04920 0.12064 0.23724 +v -0.06529 0.11777 0.23797 +v -0.06240 0.11927 0.23777 +v -0.06809 0.11607 0.23818 +v -0.06890 0.00328 0.23825 +v -0.07137 0.00557 0.23788 +v -0.07296 0.00538 0.23798 +v -0.07602 0.00581 0.23815 +v -0.08991 0.05263 0.23979 +v -0.09283 0.05643 0.23999 +v -0.08422 0.01138 0.23791 +v -0.08758 0.01702 0.23899 +v -0.08987 0.02155 0.23876 +v -0.09022 0.02428 0.23890 +v -0.09118 0.02597 0.23903 +v -0.07870 0.00970 0.23841 +v -0.09191 0.03059 0.23906 +v -0.09239 0.02873 0.23882 +v -0.09315 0.03367 0.23967 +v -0.09899 0.04187 0.23949 +v -0.10103 0.03956 0.23937 +v -0.09867 0.03533 0.23964 +v -0.09338 0.04782 0.24033 +v -0.09313 0.04792 0.24035 +v -0.07891 0.00923 0.23844 +v 0.09258 0.10504 0.23698 +v 0.09382 0.10473 0.23677 +v 0.09466 0.10225 0.23635 +v 0.08431 0.11883 0.23671 +v 0.08232 0.12077 0.23679 +v 0.08100 0.12046 0.23676 +v 0.07892 0.12078 0.23649 +v 0.08621 0.11544 0.23702 +v 0.07556 0.12080 0.23653 +v 0.07722 0.12089 0.23659 +v 0.07198 0.12208 0.23591 +v 0.06428 0.12314 0.23322 +v 0.06729 0.12300 0.23349 +v 0.07193 0.12225 0.23561 +v 0.06031 0.12356 0.23070 +v 0.05827 0.12396 0.22824 +v 0.10204 0.01067 0.23246 +v -0.08152 0.10187 0.23916 +v -0.08254 0.10264 0.23905 +v -0.08296 0.10461 0.23908 +v -0.08138 0.09976 0.23967 +v -0.08176 0.10045 0.23962 +v -0.07665 0.11158 0.23916 +v -0.08313 0.10866 0.23925 +v -0.08398 0.10671 0.23935 +v -0.07250 0.11432 0.23873 +v -0.07551 0.11278 0.23901 +v -0.08652 0.08046 0.24048 +v -0.08429 0.08145 0.23999 +v -0.08291 0.08284 0.23931 +v -0.09568 0.07280 0.23961 +v -0.09047 0.07913 0.24029 +v -0.08981 0.06351 0.23878 +v -0.08885 0.06065 0.23968 +v -0.09174 0.05904 0.23984 +v -0.08414 0.09517 0.24020 +v -0.08351 0.09573 0.24020 +v -0.08248 0.09830 0.23991 +v -0.08306 0.09778 0.23996 +v -0.08529 0.08956 0.23968 +v -0.08510 0.09287 0.24014 +v -0.04333 0.12132 0.23677 +v -0.04691 0.12105 0.23706 +v -0.05575 0.12053 0.23738 +v -0.05272 0.12061 0.23749 +v -0.05959 0.11981 0.23770 +v -0.04965 0.12136 0.23673 +v -0.05126 0.12117 0.23697 +v -0.04854 0.12108 0.23694 +v -0.06458 0.11905 0.23794 +v -0.06438 0.11943 0.23791 +v -0.07001 0.11677 0.23811 +v -0.06692 0.11851 0.23787 +v -0.06959 0.00321 0.23838 +v -0.07059 0.00451 0.23791 +v -0.07453 0.00443 0.23820 +v -0.09092 0.01743 0.23878 +v -0.09148 0.02101 0.23860 +v -0.09193 0.02722 0.23896 +v -0.08114 0.00877 0.23823 +v -0.09194 0.02938 0.23883 +v -0.09611 0.03397 0.23968 +v -0.09894 0.04420 0.23964 +v -0.09641 0.04782 0.24008 +v -0.10179 0.03741 0.23943 +v -0.10006 0.03563 0.23959 +v -0.09472 0.04785 0.24019 +v -0.09159 0.05110 0.23970 +v -0.09239 0.04977 0.23979 +v -0.09332 0.04853 0.24021 +v -0.07854 0.00568 0.23824 +v -0.07899 0.00806 0.23835 +v 0.08327 0.12043 0.23669 +v 0.08156 0.12108 0.23671 +v 0.07974 0.12113 0.23635 +v 0.08072 0.12122 0.23640 +v 0.08675 0.11652 0.23679 +v 0.08580 0.11869 0.23657 +v 0.08702 0.11494 0.23732 +v 0.09199 0.10709 0.23710 +v 0.07468 0.12149 0.23605 +v 0.07642 0.12093 0.23661 +v 0.07792 0.12137 0.23624 +v 0.07274 0.12201 0.23581 +v 0.06647 0.12329 0.23260 +v 0.07154 0.12291 0.23392 +v 0.06394 0.12359 0.23137 +v 0.06221 0.12371 0.23065 +v 0.05963 0.12401 0.22830 +v -0.08215 0.10166 0.23926 +v -0.08318 0.10348 0.23896 +v -0.08395 0.10526 0.23912 +v -0.07700 0.11245 0.23897 +v -0.08079 0.11051 0.23903 +v -0.08390 0.10808 0.23937 +v -0.08176 0.10921 0.23913 +v -0.07380 0.11443 0.23862 +v -0.07168 0.11590 0.23829 +v -0.08633 0.08116 0.24043 +v -0.08552 0.08191 0.23991 +v -0.08459 0.08219 0.23960 +v -0.08885 0.08091 0.24052 +v -0.09741 0.06817 0.23927 +v -0.09296 0.07951 0.24009 +v -0.09613 0.07716 0.23991 +v -0.08966 0.06195 0.23917 +v -0.09083 0.06221 0.23912 +v -0.09174 0.06082 0.23959 +v -0.09013 0.06116 0.23944 +v -0.08527 0.09492 0.24013 +v -0.08409 0.09623 0.24007 +v -0.08230 0.09955 0.23968 +v -0.08371 0.09764 0.23987 +v -0.08695 0.08611 0.23924 +v -0.08557 0.09401 0.24023 +v -0.08460 0.08394 0.23902 +v -0.08414 0.08303 0.23919 +v -0.04418 0.12162 0.23653 +v -0.04575 0.12150 0.23662 +v -0.05816 0.12056 0.23737 +v -0.05444 0.12082 0.23721 +v -0.05342 0.12101 0.23721 +v -0.05216 0.12104 0.23720 +v -0.05958 0.12059 0.23737 +v -0.06070 0.11989 0.23758 +v -0.05049 0.12148 0.23665 +v -0.06281 0.12017 0.23756 +v -0.07045 0.00357 0.23824 +v -0.07191 0.00397 0.23813 +v -0.07306 0.00428 0.23803 +v -0.07606 0.00434 0.23820 +v -0.09347 0.05353 0.23989 +v -0.09648 0.06000 0.23985 +v -0.08352 0.00904 0.23814 +v -0.09280 0.01976 0.23833 +v -0.09103 0.02312 0.23883 +v -0.09169 0.02484 0.23906 +v -0.09211 0.02626 0.23910 +v -0.07982 0.00904 0.23833 +v -0.09364 0.03003 0.23892 +v -0.09472 0.02756 0.23892 +v -0.09565 0.03124 0.23911 +v -0.10330 0.04307 0.23927 +v -0.10323 0.04161 0.23919 +v -0.09878 0.04625 0.23986 +v -0.09815 0.04837 0.24011 +v -0.10160 0.03575 0.23964 +v -0.10032 0.03426 0.23951 +v -0.09814 0.03358 0.23947 +v -0.09441 0.04894 0.24019 +v -0.07704 0.00469 0.23812 +v 0.09347 0.10590 0.23704 +v 0.09256 0.10604 0.23710 +v 0.09501 0.10495 0.23643 +v 0.08401 0.12006 0.23662 +v 0.08286 0.12108 0.23666 +v 0.08204 0.12138 0.23669 +v 0.07906 0.12162 0.23601 +v 0.08491 0.12023 0.23639 +v 0.09268 0.10866 0.23704 +v 0.07592 0.12155 0.23631 +v 0.07684 0.12147 0.23636 +v 0.07346 0.12215 0.23547 +v 0.07387 0.12319 0.23332 +v 0.05915 0.12421 0.22601 +v -0.08273 0.10153 0.23918 +v -0.08404 0.10414 0.23892 +v -0.08047 0.11185 0.23889 +v -0.08560 0.10892 0.23932 +v -0.08455 0.11147 0.23886 +v -0.08646 0.10788 0.23931 +v -0.08515 0.10619 0.23921 +v -0.07523 0.11496 0.23840 +v -0.08661 0.08190 0.24017 +v -0.08825 0.08167 0.24051 +v -0.09468 0.06412 0.23909 +v -0.09938 0.07040 0.23962 +v -0.09079 0.08084 0.24050 +v -0.09467 0.07894 0.23987 +v -0.09203 0.08063 0.24034 +v -0.09710 0.07545 0.23996 +v -0.09344 0.06186 0.23937 +v -0.09272 0.06061 0.23968 +v -0.08505 0.09608 0.23987 +v -0.08449 0.09721 0.23963 +v -0.08307 0.09888 0.23970 +v -0.08311 0.09839 0.23986 +v -0.08365 0.09846 0.23966 +v -0.08936 0.08776 0.23948 +v -0.08612 0.08416 0.23906 +v -0.08634 0.09276 0.23999 +v -0.04357 0.12196 0.23603 +v -0.04714 0.12157 0.23652 +v -0.05670 0.12111 0.23690 +v -0.05925 0.12098 0.23711 +v -0.05494 0.12142 0.23670 +v -0.05295 0.12138 0.23706 +v -0.06043 0.12058 0.23735 +v -0.04907 0.12170 0.23632 +v -0.04984 0.12188 0.23626 +v -0.05158 0.12173 0.23649 +v -0.06690 0.11968 0.23773 +v -0.06553 0.12041 0.23760 +v -0.06402 0.12013 0.23770 +v -0.07029 0.11967 0.23795 +v -0.07211 0.11762 0.23801 +v -0.07263 0.00449 0.23793 +v -0.07334 0.00340 0.23846 +v -0.07588 0.00338 0.23864 +v -0.09491 0.05496 0.23985 +v -0.09387 0.06019 0.23975 +v -0.09634 0.05833 0.23984 +v -0.09400 0.01884 0.23830 +v -0.09206 0.02318 0.23884 +v -0.09347 0.02149 0.23853 +v -0.09200 0.02527 0.23917 +v -0.09173 0.02598 0.23914 +v -0.09410 0.02620 0.23912 +v -0.08047 0.00727 0.23827 +v -0.08110 0.00591 0.23831 +v -0.09391 0.02901 0.23881 +v -0.10210 0.04565 0.23960 +v -0.10136 0.04804 0.23987 +v -0.09607 0.04981 0.24014 +v -0.09718 0.04963 0.24005 +v -0.10441 0.03881 0.23927 +v -0.10332 0.03570 0.23958 +v -0.10202 0.03497 0.23963 +v -0.09406 0.05143 0.23988 +v -0.09411 0.04949 0.24010 +v -0.07798 0.00409 0.23819 +v 0.09447 0.10591 0.23669 +v 0.08375 0.12047 0.23661 +v 0.08325 0.12123 0.23644 +v 0.08252 0.12137 0.23661 +v 0.08174 0.12148 0.23664 +v 0.08152 0.12161 0.23640 +v 0.08007 0.12181 0.23590 +v 0.08764 0.11672 0.23694 +v 0.08745 0.11853 0.23664 +v 0.08623 0.12056 0.23613 +v 0.09306 0.10672 0.23722 +v 0.09311 0.10918 0.23702 +v 0.09283 0.10773 0.23714 +v 0.07552 0.12203 0.23581 +v 0.07707 0.12202 0.23576 +v 0.07829 0.12216 0.23537 +v 0.07305 0.12232 0.23535 +v 0.07463 0.12239 0.23510 +v 0.07053 0.12367 0.23156 +v 0.06954 0.12400 0.23003 +v 0.07275 0.12255 0.23489 +v 0.07378 0.12290 0.23421 +v 0.06395 0.12390 0.22971 +v 0.06130 0.12419 0.22774 +v -0.08236 0.10051 0.23952 +v -0.08418 0.10268 0.23849 +v -0.08588 0.10444 0.23855 +v -0.07864 0.11322 0.23871 +v -0.08489 0.10979 0.23918 +v -0.08317 0.11231 0.23870 +v -0.07321 0.11700 0.23800 +v -0.08599 0.08274 0.23939 +v -0.08506 0.08287 0.23919 +v -0.08883 0.08206 0.24039 +v -0.09904 0.06766 0.23936 +v -0.09890 0.07242 0.23982 +v -0.09871 0.06630 0.23940 +v -0.08938 0.08228 0.24039 +v -0.09431 0.08046 0.23985 +v -0.09344 0.08095 0.24003 +v -0.09625 0.07916 0.23976 +v -0.09802 0.07668 0.24008 +v -0.09851 0.07474 0.23998 +v -0.08631 0.09516 0.23981 +v -0.08585 0.09465 0.24011 +v -0.08298 0.09972 0.23945 +v -0.08414 0.09800 0.23966 +v -0.08894 0.08527 0.23925 +v -0.08904 0.09084 0.23975 +v -0.08772 0.08458 0.23914 +v -0.08650 0.09421 0.23998 +v -0.08753 0.09181 0.23981 +v -0.08512 0.08341 0.23900 +v -0.04479 0.12207 0.23597 +v -0.04595 0.12206 0.23580 +v -0.05829 0.12121 0.23689 +v -0.05366 0.12163 0.23665 +v -0.05237 0.12146 0.23696 +v -0.04808 0.12178 0.23608 +v -0.05065 0.12205 0.23594 +v -0.06824 0.11950 0.23784 +v -0.06195 0.12116 0.23710 +v -0.06374 0.12099 0.23721 +v -0.07100 0.00322 0.23845 +v -0.07459 0.00325 0.23869 +v -0.07697 0.00378 0.23829 +v -0.09495 0.05231 0.23987 +v -0.09652 0.06100 0.23978 +v -0.09877 0.05964 0.23981 +v -0.09375 0.01958 0.23828 +v -0.09307 0.01992 0.23829 +v -0.09241 0.02532 0.23914 +v -0.09603 0.02646 0.23906 +v -0.09498 0.02908 0.23885 +v -0.09801 0.03171 0.23914 +v -0.10430 0.04466 0.23939 +v -0.09984 0.04810 0.23995 +v -0.09890 0.04951 0.24000 +v -0.10706 0.04190 0.23937 +v -0.10335 0.03677 0.23942 +v -0.10285 0.03394 0.23952 +v -0.08001 0.00390 0.23858 +v 0.09376 0.10653 0.23709 +v 0.09598 0.10604 0.23597 +v 0.08394 0.12080 0.23642 +v 0.08286 0.12139 0.23652 +v 0.08189 0.12164 0.23653 +v 0.08223 0.12163 0.23649 +v 0.08127 0.12208 0.23568 +v 0.08004 0.12231 0.23534 +v 0.08468 0.12132 0.23602 +v 0.09297 0.10723 0.23725 +v 0.09347 0.10807 0.23704 +v 0.07601 0.12195 0.23609 +v 0.07641 0.12187 0.23614 +v 0.07116 0.12399 0.23027 +v 0.07549 0.12287 0.23414 +v 0.06134 0.12427 0.22530 +v -0.07977 0.11425 0.23851 +v -0.07710 0.11513 0.23822 +v -0.08695 0.10937 0.23939 +v -0.08405 0.11398 0.23836 +v -0.08679 0.11071 0.23921 +v -0.08764 0.10643 0.23895 +v -0.07559 0.11635 0.23811 +v -0.08775 0.08218 0.24026 +v -0.08793 0.08259 0.23999 +v -0.09604 0.06274 0.23942 +v -0.10083 0.06859 0.23968 +v -0.10048 0.07162 0.23989 +v -0.09770 0.06362 0.23951 +v -0.09159 0.08150 0.24042 +v -0.09563 0.08024 0.23961 +v -0.09263 0.08173 0.24011 +v -0.09743 0.07871 0.23985 +v -0.08590 0.09636 0.23926 +v -0.08527 0.09676 0.23948 +v -0.09080 0.08561 0.23935 +v -0.09302 0.08979 0.23980 +v -0.08785 0.08346 0.23935 +v -0.08694 0.09360 0.23995 +v -0.08745 0.09315 0.23985 +v -0.08623 0.08333 0.23912 +v -0.04349 0.12218 0.23557 +v -0.04671 0.12218 0.23542 +v -0.05617 0.12182 0.23609 +v -0.05726 0.12166 0.23625 +v -0.05887 0.12160 0.23649 +v -0.05299 0.12179 0.23663 +v -0.06050 0.12137 0.23693 +v -0.04925 0.12215 0.23555 +v -0.05245 0.12202 0.23619 +v -0.06738 0.12062 0.23746 +v -0.06454 0.12075 0.23745 +v -0.06272 0.12116 0.23704 +v -0.06916 0.12029 0.23775 +v -0.07116 0.11973 0.23799 +v -0.07423 0.11873 0.23783 +v -0.09739 0.05659 0.23965 +v -0.09638 0.05453 0.23967 +v -0.09798 0.06119 0.23987 +v -0.10092 0.05646 0.23941 +v -0.09489 0.01997 0.23841 +v -0.09386 0.02349 0.23893 +v -0.09351 0.02501 0.23914 +v -0.09633 0.02796 0.23884 +v -0.09421 0.02527 0.23923 +v -0.09654 0.02978 0.23888 +v -0.10247 0.04700 0.23968 +v -0.10321 0.04707 0.23961 +v -0.09876 0.04895 0.24008 +v -0.10100 0.04944 0.23971 +v -0.09732 0.05105 0.23981 +v -0.10933 0.04146 0.23934 +v -0.10482 0.03658 0.23929 +v -0.10370 0.03539 0.23961 +v -0.10222 0.03220 0.23917 +v -0.10423 0.03426 0.23955 +v -0.09502 0.05062 0.24004 +v -0.07864 0.00327 0.23862 +v -0.07786 0.00356 0.23834 +v 0.09418 0.10710 0.23683 +v 0.09506 0.10672 0.23635 +v 0.09792 0.10557 0.23523 +v 0.08371 0.12167 0.23595 +v 0.08273 0.12172 0.23621 +v 0.08198 0.12188 0.23614 +v 0.08872 0.11743 0.23689 +v 0.08778 0.12030 0.23636 +v 0.08627 0.12160 0.23562 +v 0.09317 0.10705 0.23731 +v 0.09381 0.10910 0.23684 +v 0.09321 0.10757 0.23721 +v 0.07622 0.12224 0.23560 +v 0.07725 0.12254 0.23474 +v 0.07963 0.12266 0.23472 +v 0.07451 0.12361 0.23162 +v 0.06673 0.12411 0.22909 +v 0.07699 0.12344 0.23219 +v 0.06336 0.12415 0.22742 +v 0.06046 0.12436 0.22408 +v -0.08542 0.10138 0.23601 +v -0.08106 0.11591 0.23824 +v -0.08242 0.11466 0.23833 +v -0.08805 0.10908 0.23941 +v -0.08683 0.11013 0.23933 +v -0.08529 0.11413 0.23833 +v -0.08987 0.10857 0.23926 +v -0.09129 0.10307 0.23734 +v -0.07562 0.11809 0.23793 +v -0.10118 0.07003 0.23972 +v -0.10146 0.06697 0.23988 +v -0.10084 0.07235 0.23990 +v -0.10108 0.07128 0.23985 +v -0.10066 0.06494 0.23997 +v -0.09166 0.08224 0.24016 +v -0.09505 0.08168 0.23948 +v -0.09365 0.08178 0.23979 +v -0.09676 0.08018 0.23946 +v -0.09842 0.07804 0.23978 +v -0.09863 0.07606 0.24017 +v -0.08672 0.09568 0.23924 +v -0.08544 0.09729 0.23871 +v -0.09316 0.08743 0.23956 +v -0.09008 0.08376 0.23947 +v -0.08872 0.08410 0.23922 +v -0.08926 0.09234 0.23978 +v -0.09302 0.09153 0.23988 +v -0.08751 0.09413 0.23972 +v -0.08832 0.09271 0.23977 +v -0.04534 0.12238 0.23514 +v -0.04162 0.12197 0.23576 +v -0.05508 0.12210 0.23592 +v -0.05961 0.12175 0.23650 +v -0.05385 0.12210 0.23591 +v -0.06040 0.12159 0.23680 +v -0.04794 0.12232 0.23481 +v -0.05135 0.12235 0.23536 +v -0.05282 0.12226 0.23562 +v -0.06552 0.12109 0.23729 +v -0.06179 0.12179 0.23651 +v -0.06461 0.12138 0.23700 +v -0.06354 0.12140 0.23683 +v -0.07034 0.12062 0.23774 +v -0.07266 0.11893 0.23791 +v -0.09587 0.05271 0.23978 +v -0.09779 0.06254 0.23969 +v -0.10131 0.06056 0.23987 +v -0.09870 0.06130 0.23997 +v -0.09561 0.01884 0.23844 +v -0.09519 0.02205 0.23874 +v -0.09742 0.02777 0.23880 +v -0.09630 0.02545 0.23916 +v -0.09792 0.02897 0.23882 +v -0.10231 0.04875 0.23970 +v -0.10424 0.04712 0.23941 +v -0.10582 0.04464 0.23941 +v -0.09613 0.05133 0.23989 +v -0.09887 0.05072 0.23975 +v -0.10905 0.04264 0.23926 +v -0.10602 0.03806 0.23920 +v -0.10508 0.03595 0.23929 +v -0.10514 0.03210 0.23931 +v -0.10002 0.03031 0.23895 +v 0.09341 0.10720 0.23721 +v 0.09593 0.10778 0.23577 +v 0.09698 0.10644 0.23557 +v 0.08257 0.12224 0.23548 +v 0.07997 0.12289 0.23426 +v 0.08841 0.11929 0.23666 +v 0.08706 0.12120 0.23587 +v 0.08577 0.12212 0.23526 +v 0.09427 0.10827 0.23664 +v 0.07812 0.12270 0.23428 +v 0.07081 0.12418 0.22812 +v 0.07335 0.12388 0.23027 +v 0.06899 0.12410 0.22922 +v 0.06594 0.12409 0.22585 +v 0.06149 0.12433 0.22210 +v 0.05929 0.12446 0.22386 +v -0.07854 0.11624 0.23813 +v -0.08808 0.10997 0.23940 +v -0.08482 0.11572 0.23792 +v -0.08764 0.11291 0.23876 +v -0.08905 0.08318 0.23968 +v -0.10194 0.06894 0.23977 +v -0.10046 0.07487 0.23973 +v -0.09921 0.06290 0.23987 +v -0.09079 0.08264 0.24011 +v -0.09629 0.08151 0.23921 +v -0.09363 0.08242 0.23957 +v -0.09841 0.07981 0.23942 +v -0.09715 0.08079 0.23922 +v -0.09885 0.07692 0.23994 +v -0.09869 0.07650 0.24015 +v -0.09923 0.07604 0.23996 +v -0.08659 0.09681 0.23765 +v -0.08724 0.09489 0.23952 +v -0.09311 0.08571 0.23942 +v -0.09167 0.08441 0.23935 +v -0.09048 0.09221 0.23985 +v -0.09601 0.09188 0.24013 +v -0.09678 0.08971 0.24005 +v -0.08897 0.08360 0.23930 +v -0.08831 0.09365 0.23965 +v -0.04195 0.12225 0.23512 +v -0.04746 0.12259 0.23373 +v -0.05679 0.12217 0.23525 +v -0.05608 0.12216 0.23557 +v -0.05823 0.12210 0.23546 +v -0.05994 0.12203 0.23616 +v -0.06060 0.12175 0.23656 +v -0.06712 0.12123 0.23712 +v -0.06887 0.12106 0.23737 +v -0.06279 0.12168 0.23650 +v -0.06946 0.12086 0.23757 +v -0.07193 0.11974 0.23793 +v -0.07141 0.12017 0.23797 +v -0.07566 0.11953 0.23772 +v -0.07290 0.12010 0.23772 +v -0.09933 0.05415 0.23922 +v -0.09778 0.05318 0.23945 +v -0.09964 0.06148 0.23997 +v -0.10381 0.06054 0.23976 +v -0.09720 0.01979 0.23867 +v -0.09430 0.02465 0.23917 +v -0.09587 0.02385 0.23904 +v -0.09802 0.02747 0.23887 +v -0.10022 0.02547 0.23920 +v -0.10332 0.04803 0.23952 +v -0.10564 0.04650 0.23927 +v -0.10237 0.04977 0.23942 +v -0.10022 0.05062 0.23953 +v -0.09761 0.05223 0.23953 +v -0.09888 0.05159 0.23941 +v -0.11105 0.04246 0.23913 +v -0.10945 0.03917 0.23917 +v -0.10642 0.03638 0.23913 +v -0.10594 0.03432 0.23943 +v -0.10529 0.02927 0.23906 +v -0.10207 0.02943 0.23889 +v 0.09495 0.10862 0.23619 +v 0.08463 0.12186 0.23564 +v 0.08849 0.12035 0.23658 +v 0.08795 0.12143 0.23583 +v 0.08704 0.12195 0.23529 +v 0.07860 0.12298 0.23353 +v 0.07257 0.12415 0.22829 +v 0.07485 0.12402 0.22929 +v 0.07660 0.12403 0.22957 +v 0.06981 0.12414 0.22771 +v 0.06482 0.12404 0.22314 +v 0.05991 0.12452 0.22352 +v -0.08132 0.11790 0.23808 +v -0.08234 0.11642 0.23809 +v -0.08767 0.11428 0.23847 +v -0.08484 0.11645 0.23780 +v -0.08905 0.11100 0.23937 +v -0.09306 0.10811 0.23923 +v -0.07760 0.11883 0.23799 +v -0.09007 0.08321 0.23981 +v -0.10250 0.07026 0.23971 +v -0.10239 0.06617 0.24009 +v -0.10134 0.07357 0.23975 +v -0.10113 0.06379 0.24010 +v -0.09150 0.08305 0.23975 +v -0.09251 0.08255 0.23983 +v -0.09680 0.08192 0.23911 +v -0.09911 0.07837 0.23945 +v -0.09916 0.07747 0.23962 +v -0.08779 0.09545 0.23867 +v -0.09677 0.08608 0.23955 +v -0.09153 0.08366 0.23944 +v -0.09019 0.09306 0.23975 +v -0.08918 0.09328 0.23966 +v -0.09486 0.09286 0.23992 +v -0.09081 0.09301 0.23987 +v -0.08836 0.09453 0.23930 +v -0.04371 0.12285 0.23244 +v -0.04083 0.12236 0.23461 +v -0.04665 0.12292 0.23210 +v -0.05528 0.12238 0.23521 +v -0.05462 0.12229 0.23549 +v -0.05333 0.12248 0.23502 +v -0.05190 0.12262 0.23447 +v -0.06832 0.12140 0.23710 +v -0.06592 0.12146 0.23698 +v -0.06519 0.12146 0.23703 +v -0.06124 0.12209 0.23591 +v -0.06239 0.12204 0.23600 +v -0.06416 0.12162 0.23666 +v -0.06324 0.12185 0.23617 +v -0.06975 0.12130 0.23726 +v -0.07178 0.12061 0.23774 +v -0.07448 0.11996 0.23756 +v -0.10183 0.05281 0.23913 +v -0.10194 0.06299 0.24016 +v -0.10352 0.06227 0.24001 +v -0.10584 0.05793 0.23943 +v -0.09684 0.01759 0.23864 +v -0.09840 0.02193 0.23892 +v -0.09878 0.02677 0.23901 +v -0.09873 0.02454 0.23919 +v -0.09925 0.02801 0.23885 +v -0.10459 0.04820 0.23915 +v -0.10523 0.04759 0.23921 +v -0.10870 0.04388 0.23917 +v -0.10672 0.04537 0.23931 +v -0.10402 0.04944 0.23903 +v -0.10149 0.05085 0.23932 +v -0.09989 0.05132 0.23937 +v -0.09903 0.05120 0.23957 +v -0.11142 0.04131 0.23919 +v -0.11140 0.04399 0.23886 +v -0.10877 0.03744 0.23904 +v -0.11157 0.03957 0.23912 +v -0.10830 0.03143 0.23918 +v -0.10190 0.02812 0.23881 +v 0.09724 0.10771 0.23533 +v 0.08382 0.12228 0.23528 +v 0.08125 0.12291 0.23405 +v 0.09033 0.11896 0.23676 +v 0.08713 0.12245 0.23456 +v 0.08402 0.12254 0.23490 +v 0.07960 0.12326 0.23260 +v 0.07246 0.12416 0.22669 +v 0.07801 0.12355 0.23151 +v 0.06949 0.12386 0.22303 +v 0.07053 0.12393 0.22518 +v 0.06535 0.12402 0.21981 +v 0.05982 0.12451 0.22264 +v -0.07996 0.11847 0.23804 +v -0.08935 0.11036 0.23946 +v -0.08615 0.11661 0.23792 +v -0.08958 0.11273 0.23884 +v -0.09214 0.10970 0.23948 +v -0.09589 0.10721 0.23954 +v -0.07847 0.11857 0.23798 +v -0.10300 0.06884 0.23978 +v -0.10000 0.07613 0.23957 +v -0.10286 0.07301 0.23954 +v -0.10165 0.07556 0.23937 +v -0.10330 0.07135 0.23958 +v -0.09427 0.08292 0.23939 +v -0.09563 0.08346 0.23930 +v -0.09282 0.08360 0.23946 +v -0.09789 0.08115 0.23917 +v -0.09975 0.07903 0.23929 +v -0.09948 0.07679 0.23963 +v -0.08774 0.09671 0.23590 +v -0.09370 0.09327 0.23976 +v -0.09622 0.09339 0.24000 +v -0.09870 0.09193 0.24048 +v -0.09254 0.09301 0.23981 +v -0.09944 0.08883 0.24009 +v -0.08904 0.09403 0.23943 +v -0.04081 0.12279 0.23273 +v -0.04014 0.12204 0.23550 +v -0.05750 0.12248 0.23408 +v -0.05970 0.12236 0.23521 +v -0.05276 0.12256 0.23457 +v -0.06715 0.12170 0.23664 +v -0.06860 0.12160 0.23700 +v -0.06533 0.12197 0.23637 +v -0.06457 0.12183 0.23636 +v -0.07080 0.12101 0.23756 +v -0.07694 0.12020 0.23757 +v -0.07455 0.12050 0.23736 +v -0.09894 0.05360 0.23925 +v -0.10043 0.05180 0.23925 +v -0.10509 0.05363 0.23900 +v -0.09913 0.05199 0.23935 +v -0.10517 0.06221 0.23980 +v -0.10696 0.06047 0.23958 +v -0.09936 0.01850 0.23873 +v -0.10072 0.02402 0.23925 +v -0.10165 0.02686 0.23893 +v -0.10625 0.04742 0.23895 +v -0.10687 0.04626 0.23916 +v -0.10321 0.05096 0.23907 +v -0.11401 0.04090 0.23914 +v -0.11329 0.04317 0.23894 +v -0.11052 0.03746 0.23888 +v -0.10804 0.03636 0.23904 +v -0.10789 0.03476 0.23912 +v -0.10792 0.02793 0.23904 +v -0.11007 0.03168 0.23901 +v 0.08269 0.12258 0.23477 +v 0.08137 0.12335 0.23231 +v 0.08959 0.12059 0.23651 +v 0.08901 0.12141 0.23609 +v 0.08817 0.12203 0.23526 +v 0.08553 0.12256 0.23468 +v 0.07491 0.12432 0.22515 +v 0.07515 0.12414 0.22756 +v 0.07644 0.12416 0.22857 +v 0.07792 0.12399 0.22934 +v -0.08098 0.11955 0.23803 +v -0.08304 0.11793 0.23792 +v -0.09068 0.11025 0.23956 +v -0.08912 0.11552 0.23833 +v -0.08477 0.11778 0.23777 +v -0.09121 0.11184 0.23923 +v -0.09180 0.11488 0.23850 +v -0.09109 0.11084 0.23955 +v -0.09357 0.11029 0.23944 +v -0.09527 0.10962 0.23968 +v -0.09758 0.10459 0.23929 +v -0.07843 0.12020 0.23762 +v -0.10423 0.07088 0.23946 +v -0.10358 0.06713 0.23993 +v -0.10281 0.06571 0.24013 +v -0.10085 0.07586 0.23942 +v -0.10265 0.07450 0.23942 +v -0.09749 0.08344 0.23917 +v -0.09918 0.08135 0.23928 +v -0.09982 0.07829 0.23924 +v -0.10096 0.08029 0.23949 +v -0.09991 0.07743 0.23933 +v -0.08866 0.09543 0.23825 +v -0.08859 0.09502 0.23889 +v -0.08998 0.09397 0.23938 +v -0.09119 0.09353 0.23972 +v -0.09506 0.09417 0.23959 +v -0.09774 0.09302 0.24033 +v -0.09887 0.09073 0.24036 +v -0.09200 0.09348 0.23974 +v -0.10048 0.08674 0.23981 +v -0.04018 0.12304 0.23131 +v -0.03969 0.12261 0.23373 +v -0.04009 0.12238 0.23480 +v -0.05614 0.12252 0.23404 +v -0.05896 0.12251 0.23413 +v -0.05474 0.12252 0.23454 +v -0.05294 0.12274 0.23332 +v -0.06881 0.12173 0.23674 +v -0.06592 0.12189 0.23637 +v -0.06263 0.12213 0.23554 +v -0.06394 0.12209 0.23557 +v -0.07077 0.12162 0.23707 +v -0.07277 0.12099 0.23746 +v -0.07216 0.12159 0.23719 +v -0.07610 0.12083 0.23721 +v -0.10340 0.06416 0.24009 +v -0.10932 0.05740 0.23946 +v -0.10811 0.05595 0.23927 +v -0.10120 0.02123 0.23892 +v -0.09731 0.01467 0.23868 +v -0.10161 0.02475 0.23936 +v -0.10189 0.02519 0.23932 +v -0.10513 0.04885 0.23881 +v -0.10911 0.04561 0.23886 +v -0.10493 0.05071 0.23872 +v -0.11329 0.03991 0.23917 +v -0.11269 0.04418 0.23886 +v -0.10944 0.03559 0.23890 +v -0.11181 0.03657 0.23875 +v -0.10360 0.02709 0.23895 +v -0.11015 0.02980 0.23906 +v 0.08243 0.12296 0.23374 +v 0.09046 0.12074 0.23647 +v 0.08842 0.12250 0.23446 +v 0.08525 0.12292 0.23381 +v 0.07894 0.12387 0.23010 +v 0.07319 0.12417 0.22510 +v 0.07205 0.12396 0.22449 +v 0.07144 0.12380 0.22378 +v -0.07976 0.11956 0.23792 +v -0.08189 0.11872 0.23804 +v -0.09018 0.11708 0.23821 +v -0.08642 0.11851 0.23772 +v -0.09140 0.11311 0.23884 +v -0.09285 0.11040 0.23951 +v -0.09643 0.10885 0.24002 +v -0.09824 0.10686 0.23977 +v -0.09682 0.10168 0.23897 +v -0.10518 0.06914 0.23949 +v -0.10500 0.06712 0.23972 +v -0.09988 0.07671 0.23941 +v -0.10032 0.07659 0.23933 +v -0.10320 0.07372 0.23940 +v -0.10441 0.07186 0.23945 +v -0.10344 0.07637 0.23947 +v -0.10123 0.07691 0.23927 +v -0.09846 0.08238 0.23915 +v -0.10058 0.07836 0.23924 +v -0.08934 0.09544 0.23806 +v -0.08926 0.09472 0.23895 +v -0.09923 0.08469 0.23941 +v -0.09392 0.09413 0.23947 +v -0.09339 0.09367 0.23967 +v -0.09646 0.09438 0.23978 +v -0.09833 0.09431 0.24018 +v -0.09980 0.09166 0.24045 +v -0.09929 0.09310 0.24045 +v -0.09263 0.09383 0.23959 +v -0.10168 0.08882 0.24009 +v -0.10061 0.09032 0.24027 +v -0.03942 0.12230 0.23484 +v -0.05768 0.12276 0.23251 +v -0.05975 0.12272 0.23299 +v -0.06149 0.12253 0.23389 +v -0.06806 0.12201 0.23623 +v -0.06694 0.12208 0.23597 +v -0.06993 0.12192 0.23660 +v -0.06491 0.12213 0.23571 +v -0.07728 0.12086 0.23726 +v -0.07621 0.12152 0.23679 +v -0.07312 0.12156 0.23704 +v -0.10657 0.06316 0.23970 +v -0.11107 0.05816 0.23954 +v -0.10912 0.05340 0.23893 +v -0.10284 0.02014 0.23878 +v -0.10012 0.01674 0.23869 +v -0.10266 0.02327 0.23919 +v -0.10359 0.02558 0.23910 +v -0.10490 0.04967 0.23870 +v -0.10616 0.04887 0.23853 +v -0.11006 0.04654 0.23864 +v -0.11311 0.03829 0.23901 +v -0.11523 0.03900 0.23912 +v -0.11491 0.04261 0.23885 +v -0.11480 0.04411 0.23879 +v -0.11080 0.03538 0.23870 +v -0.10956 0.03359 0.23894 +v -0.10525 0.02635 0.23900 +v -0.11130 0.02668 0.23901 +v -0.11169 0.03014 0.23901 +v 0.08374 0.12281 0.23426 +v 0.08265 0.12388 0.23034 +v 0.09018 0.12121 0.23632 +v 0.08957 0.12125 0.23633 +v 0.08942 0.12195 0.23564 +v 0.08970 0.12231 0.23508 +v 0.08723 0.12286 0.23350 +v 0.08060 0.12405 0.22967 +v 0.07466 0.12434 0.22300 +v 0.07783 0.12414 0.22633 +v 0.07795 0.12410 0.22802 +v 0.07889 0.12407 0.22870 +v 0.07194 0.12394 0.22359 +v -0.08185 0.11950 0.23799 +v -0.08013 0.12035 0.23776 +v -0.08401 0.11988 0.23770 +v -0.08830 0.11843 0.23792 +v -0.08530 0.11915 0.23763 +v -0.09394 0.11329 0.23883 +v -0.09353 0.11176 0.23918 +v -0.09448 0.11090 0.23939 +v -0.09698 0.10840 0.24006 +v -0.09637 0.10961 0.23995 +v -0.09772 0.10797 0.23996 +v -0.09953 0.10621 0.23970 +v -0.09902 0.10212 0.23941 +v -0.09566 0.09933 0.23875 +v -0.10715 0.06911 0.23940 +v -0.10554 0.06528 0.23977 +v -0.10410 0.07384 0.23943 +v -0.09889 0.08339 0.23920 +v -0.10042 0.08312 0.23951 +v -0.10207 0.07829 0.23941 +v -0.09001 0.09585 0.23762 +v -0.09184 0.09402 0.23949 +v -0.09343 0.09539 0.23874 +v -0.09518 0.09545 0.23913 +v -0.10176 0.08596 0.23989 +v -0.10279 0.08706 0.24002 +v -0.10062 0.08932 0.24022 +v -0.09039 0.09480 0.23877 +v -0.03682 0.12296 0.23233 +v -0.05576 0.12277 0.23228 +v -0.05691 0.12277 0.23259 +v -0.06859 0.12225 0.23573 +v -0.06561 0.12221 0.23551 +v -0.06938 0.12217 0.23612 +v -0.06425 0.12250 0.23416 +v -0.07078 0.12215 0.23639 +v -0.07134 0.12208 0.23669 +v -0.07723 0.12137 0.23685 +v -0.07847 0.12120 0.23709 +v -0.07442 0.12115 0.23706 +v -0.10748 0.04976 0.23835 +v -0.10900 0.06129 0.23954 +v -0.11109 0.05727 0.23955 +v -0.11018 0.05547 0.23932 +v -0.10343 0.02143 0.23886 +v -0.10001 0.00896 0.23855 +v -0.10299 0.02449 0.23929 +v -0.10635 0.04946 0.23843 +v -0.10916 0.04684 0.23860 +v -0.11572 0.03996 0.23907 +v -0.11274 0.04596 0.23879 +v -0.11461 0.04580 0.23882 +v -0.11163 0.03345 0.23852 +v -0.11328 0.03477 0.23848 +v -0.11205 0.03433 0.23846 +v -0.11095 0.03194 0.23886 +v -0.10747 0.02492 0.23900 +v -0.11104 0.02493 0.23905 +v -0.11268 0.02885 0.23903 +v 0.08129 0.12391 0.23036 +v 0.08380 0.12361 0.23124 +v 0.09112 0.12140 0.23611 +v 0.08965 0.12163 0.23607 +v 0.08970 0.12276 0.23394 +v 0.08870 0.12286 0.23344 +v 0.08707 0.12328 0.23187 +v 0.08000 0.12415 0.22911 +v 0.07576 0.12438 0.22219 +v 0.07257 0.12405 0.22246 +v -0.08135 0.12013 0.23787 +v -0.08267 0.12014 0.23777 +v -0.09312 0.11612 0.23836 +v -0.09033 0.11854 0.23813 +v -0.08750 0.11966 0.23759 +v -0.08603 0.12030 0.23732 +v -0.09706 0.11565 0.23848 +v -0.09619 0.11033 0.23972 +v -0.09701 0.10897 0.24015 +v -0.09876 0.10779 0.23989 +v -0.09960 0.10728 0.23979 +v -0.09990 0.10485 0.23962 +v -0.09776 0.09962 0.23922 +v -0.09373 0.09786 0.23821 +v -0.07935 0.12113 0.23727 +v -0.10741 0.06761 0.23946 +v -0.10785 0.06538 0.23958 +v -0.10600 0.07270 0.23949 +v -0.10603 0.07517 0.23966 +v -0.10318 0.08271 0.24020 +v -0.10430 0.07963 0.24000 +v -0.09021 0.09759 0.23588 +v -0.09245 0.09452 0.23917 +v -0.09798 0.09511 0.23989 +v -0.10000 0.09654 0.23984 +v -0.10038 0.09222 0.24037 +v -0.10337 0.08879 0.23992 +v -0.03694 0.12282 0.23298 +v -0.03739 0.12245 0.23413 +v -0.06696 0.12237 0.23501 +v -0.06980 0.12237 0.23573 +v -0.06649 0.12269 0.23341 +v -0.07195 0.12210 0.23665 +v -0.07683 0.12195 0.23617 +v -0.07432 0.12168 0.23665 +v -0.11274 0.05995 0.23944 +v -0.11116 0.05581 0.23946 +v -0.10911 0.05136 0.23862 +v -0.11168 0.05422 0.23919 +v -0.10596 0.01993 0.23852 +v -0.10434 0.01865 0.23864 +v -0.10590 0.01667 0.23858 +v -0.10339 0.02392 0.23925 +v -0.10420 0.02422 0.23915 +v -0.10809 0.04839 0.23842 +v -0.11039 0.04736 0.23860 +v -0.11589 0.03769 0.23902 +v -0.11593 0.03927 0.23915 +v -0.11563 0.03541 0.23863 +v -0.10551 0.02517 0.23900 +v -0.11305 0.02600 0.23884 +v -0.11395 0.02850 0.23897 +v -0.11276 0.03046 0.23889 +v 0.08207 0.12406 0.22932 +v 0.08361 0.12411 0.22952 +v 0.09055 0.12284 0.23398 +v 0.08549 0.12353 0.23091 +v 0.08172 0.12412 0.22825 +v 0.07474 0.12439 0.22097 +v 0.07741 0.12434 0.22117 +v 0.08052 0.12411 0.22743 +v -0.08068 0.12099 0.23745 +v -0.08280 0.12106 0.23744 +v -0.09184 0.11870 0.23824 +v -0.08984 0.11977 0.23791 +v -0.08856 0.11933 0.23781 +v -0.09657 0.11420 0.23878 +v -0.09601 0.11139 0.23940 +v -0.09764 0.10907 0.24001 +v -0.09852 0.10853 0.23993 +v -0.10064 0.10661 0.23978 +v -0.09978 0.09828 0.23963 +v -0.10057 0.10325 0.23966 +v -0.09800 0.09751 0.23940 +v -0.09617 0.09641 0.23917 +v -0.10847 0.06857 0.23929 +v -0.10633 0.07685 0.23991 +v -0.10777 0.07100 0.23946 +v -0.10238 0.08467 0.24011 +v -0.09156 0.09517 0.23851 +v -0.08234 0.10000 0.22312 +v -0.10071 0.09590 0.23999 +v -0.10096 0.09464 0.24010 +v -0.10171 0.09072 0.24010 +v -0.10338 0.08581 0.24039 +v -0.10469 0.08777 0.23970 +v -0.03553 0.12268 0.23363 +v -0.07159 0.12246 0.23582 +v -0.07363 0.12220 0.23627 +v -0.07861 0.12179 0.23648 +v -0.07933 0.12165 0.23688 +v -0.07605 0.12179 0.23657 +v -0.07776 0.12186 0.23625 +v -0.11068 0.06529 0.23946 +v -0.11285 0.05603 0.23947 +v -0.11290 0.06426 0.23947 +v -0.11116 0.05205 0.23888 +v -0.10840 0.05002 0.23842 +v -0.11068 0.05327 0.23897 +v -0.10538 0.02234 0.23882 +v -0.10811 0.02004 0.23833 +v -0.10403 0.01208 0.23858 +v -0.11666 0.03966 0.23908 +v -0.11270 0.04799 0.23888 +v -0.11327 0.03345 0.23837 +v -0.11534 0.03276 0.23834 +v -0.11294 0.03219 0.23850 +v -0.10936 0.02434 0.23902 +v -0.10577 0.02408 0.23897 +v -0.11355 0.02400 0.23860 +v -0.11426 0.02899 0.23894 +v 0.08470 0.12382 0.23017 +v 0.09130 0.12211 0.23551 +v 0.08983 0.12313 0.23249 +v 0.09106 0.12251 0.23494 +v 0.08787 0.12377 0.22981 +v 0.07583 0.12459 0.22001 +v 0.08018 0.12421 0.21963 +v -0.08187 0.12079 0.23760 +v -0.08427 0.12107 0.23725 +v -0.08492 0.12071 0.23731 +v -0.09387 0.11915 0.23824 +v -0.09599 0.11650 0.23836 +v -0.09091 0.11958 0.23812 +v -0.08750 0.12071 0.23716 +v -0.08858 0.12028 0.23752 +v -0.09888 0.11528 0.23855 +v -0.09745 0.11118 0.23945 +v -0.09919 0.11018 0.23954 +v -0.09947 0.10837 0.23978 +v -0.10132 0.10824 0.23961 +v -0.10152 0.10496 0.23974 +v -0.10085 0.10076 0.23970 +v -0.08022 0.12166 0.23685 +v -0.10972 0.06750 0.23929 +v -0.10850 0.07281 0.23968 +v -0.10819 0.07579 0.23997 +v -0.10451 0.08175 0.24037 +v -0.10366 0.08476 0.24061 +v -0.09824 0.09625 0.23965 +v -0.10170 0.09706 0.23992 +v -0.10192 0.09348 0.23995 +v -0.10278 0.09220 0.23974 +v -0.10426 0.08655 0.24018 +v -0.10474 0.08920 0.23949 +v -0.06895 0.12262 0.23462 +v -0.07583 0.12210 0.23610 +v -0.07787 0.12230 0.23511 +v -0.07420 0.12218 0.23604 +v -0.10928 0.04923 0.23847 +v -0.10970 0.01821 0.23808 +v -0.10674 0.01790 0.23849 +v -0.10258 0.00866 0.23857 +v -0.10658 0.01302 0.23858 +v -0.11781 0.03737 0.23896 +v -0.11826 0.03914 0.23904 +v -0.11536 0.04970 0.23903 +v -0.11779 0.03407 0.23840 +v -0.11033 0.02311 0.23882 +v -0.10725 0.02283 0.23879 +v -0.11503 0.02708 0.23869 +v -0.11530 0.02421 0.23843 +v -0.11365 0.02071 0.23814 +v -0.11553 0.02889 0.23858 +v -0.11379 0.03248 0.23834 +v -0.11469 0.03030 0.23862 +v 0.08449 0.12407 0.22902 +v 0.09215 0.12305 0.23337 +v 0.09218 0.12264 0.23471 +v 0.08653 0.12404 0.22893 +v 0.08290 0.12408 0.22586 +v 0.07755 0.12442 0.21895 +v 0.08095 0.12410 0.22198 +v -0.08275 0.12159 0.23708 +v -0.08454 0.12155 0.23686 +v -0.08556 0.12121 0.23696 +v -0.09532 0.11771 0.23837 +v -0.09307 0.11963 0.23812 +v -0.09717 0.11694 0.23844 +v -0.09208 0.11944 0.23815 +v -0.09053 0.11996 0.23807 +v -0.08663 0.12124 0.23675 +v -0.09943 0.11371 0.23904 +v -0.09807 0.11620 0.23844 +v -0.10322 0.10770 0.23959 +v -0.10275 0.10533 0.23969 +v -0.10300 0.10077 0.23991 +v -0.10168 0.10306 0.23982 +v -0.10969 0.06864 0.23909 +v -0.10907 0.06997 0.23924 +v -0.10615 0.08065 0.24049 +v -0.10815 0.07748 0.24024 +v -0.11029 0.07165 0.23954 +v -0.10493 0.08298 0.24058 +v -0.10426 0.08398 0.24066 +v -0.10209 0.09568 0.23995 +v -0.10187 0.09785 0.23991 +v -0.10288 0.09429 0.23984 +v -0.10425 0.08580 0.24057 +v -0.10392 0.09037 0.23963 +v -0.10612 0.08859 0.23929 +v -0.10537 0.08663 0.23985 +v -0.07185 0.12263 0.23525 +v -0.07340 0.12244 0.23584 +v -0.07948 0.12200 0.23626 +v -0.07858 0.12214 0.23577 +v -0.07611 0.12235 0.23539 +v -0.11350 0.05298 0.23908 +v -0.11220 0.05099 0.23892 +v -0.11065 0.01915 0.23820 +v -0.10830 0.01499 0.23848 +v -0.10145 0.00648 0.23845 +v -0.10653 0.01000 0.23874 +v -0.10697 0.01057 0.23867 +v -0.11258 0.04884 0.23894 +v -0.11747 0.03236 0.23816 +v -0.10928 0.02158 0.23857 +v -0.11164 0.02128 0.23844 +v -0.11499 0.02230 0.23819 +v 0.08404 0.12414 0.22790 +v 0.09029 0.12346 0.23087 +v 0.08829 0.12400 0.22857 +v 0.08026 0.12435 0.21786 +v 0.08288 0.12399 0.21931 +v -0.09500 0.11943 0.23826 +v -0.09394 0.12021 0.23788 +v -0.09157 0.12024 0.23796 +v -0.08964 0.12089 0.23730 +v -0.09042 0.12058 0.23772 +v -0.08779 0.12142 0.23649 +v -0.08849 0.12098 0.23708 +v -0.09971 0.11529 0.23856 +v -0.09921 0.11666 0.23853 +v -0.09898 0.11211 0.23926 +v -0.10096 0.11090 0.23938 +v -0.10268 0.10300 0.23988 +v -0.08172 0.12201 0.23652 +v -0.11120 0.06793 0.23931 +v -0.10921 0.06913 0.23906 +v -0.10991 0.07470 0.23994 +v -0.10790 0.07966 0.24060 +v -0.10958 0.07619 0.24006 +v -0.11218 0.07379 0.23993 +v -0.10441 0.08479 0.24077 +v -0.10387 0.08549 0.24069 +v -0.10305 0.09675 0.23998 +v -0.10498 0.08602 0.24029 +v -0.10480 0.09045 0.23938 +v -0.10633 0.08716 0.23932 +v -0.10560 0.08957 0.23928 +v -0.10416 0.09219 0.23961 +v -0.07085 0.12295 0.23348 +v -0.08061 0.12213 0.23606 +v -0.07475 0.12240 0.23541 +v -0.08020 0.12240 0.23472 +v -0.07658 0.12257 0.23428 +v -0.07386 0.12256 0.23483 +v -0.11113 0.01802 0.23812 +v -0.10961 0.01748 0.23812 +v -0.10942 0.01677 0.23825 +v -0.10367 0.00657 0.23858 +v -0.09961 0.00507 0.23827 +v -0.10627 0.00924 0.23874 +v -0.10997 0.01243 0.23841 +v -0.11919 0.03790 0.23890 +v -0.11932 0.03573 0.23862 +v -0.11457 0.05121 0.23905 +v -0.12014 0.03293 0.23813 +v -0.11745 0.03050 0.23815 +v -0.11637 0.02605 0.23848 +v -0.11722 0.02355 0.23824 +v -0.11261 0.01897 0.23816 +v -0.11528 0.02033 0.23781 +v 0.08609 0.12409 0.22849 +v 0.09385 0.12358 0.23125 +v 0.08909 0.12384 0.22957 +v -0.08282 0.12197 0.23667 +v -0.08613 0.12159 0.23653 +v -0.08538 0.12181 0.23636 +v -0.09638 0.11894 0.23852 +v -0.09266 0.12031 0.23784 +v -0.09110 0.12066 0.23777 +v -0.08655 0.12180 0.23602 +v -0.10115 0.11420 0.23894 +v -0.10317 0.11140 0.23937 +v -0.10456 0.10622 0.23951 +v -0.10451 0.10272 0.23976 +v -0.10370 0.10167 0.23990 +v -0.10376 0.09915 0.24010 +v -0.10948 0.06907 0.23898 +v -0.11055 0.06898 0.23914 +v -0.10991 0.06959 0.23912 +v -0.10780 0.08071 0.24061 +v -0.10916 0.07773 0.24026 +v -0.10613 0.08264 0.24056 +v -0.10546 0.08396 0.24063 +v -0.10420 0.08529 0.24076 +v -0.10431 0.09738 0.24012 +v -0.10487 0.08529 0.24062 +v -0.10724 0.08771 0.23910 +v -0.10632 0.08973 0.23927 +v -0.10638 0.08604 0.23962 +v -0.10566 0.08537 0.24029 +v -0.07971 0.12224 0.23556 +v -0.07906 0.12252 0.23353 +v -0.11066 0.01724 0.23815 +v -0.11171 0.01782 0.23817 +v -0.11058 0.01569 0.23831 +v -0.10589 0.00626 0.23866 +v -0.10238 0.00505 0.23852 +v -0.11113 0.00812 0.23845 +v -0.10830 0.00624 0.23862 +v -0.11088 0.00973 0.23841 +v -0.11852 0.03133 0.23799 +v -0.11755 0.02812 0.23829 +v -0.11722 0.02023 0.23759 +v -0.11433 0.01886 0.23791 +v 0.09236 0.12374 0.23007 +v 0.09029 0.12421 0.22856 +v 0.08919 0.12401 0.22891 +v 0.08845 0.12406 0.22728 +v 0.08703 0.12394 0.22202 +v 0.08420 0.12414 0.21745 +v -0.08396 0.12212 0.23630 +v -0.09487 0.12034 0.23796 +v -0.09596 0.11989 0.23842 +v -0.09332 0.12115 0.23709 +v -0.09762 0.11865 0.23865 +v -0.09192 0.12087 0.23749 +v -0.08980 0.12140 0.23672 +v -0.09045 0.12122 0.23709 +v -0.08779 0.12188 0.23548 +v -0.10130 0.11280 0.23921 +v -0.10066 0.11566 0.23862 +v -0.10513 0.10903 0.23960 +v -0.10421 0.10454 0.23962 +v -0.08243 0.12226 0.23606 +v -0.11172 0.06988 0.23936 +v -0.11070 0.07549 0.23996 +v -0.10695 0.08158 0.24058 +v -0.10871 0.07980 0.24051 +v -0.11060 0.07692 0.23999 +v -0.10426 0.09454 0.23986 +v -0.10568 0.09121 0.23936 +v -0.10561 0.09052 0.23930 +v -0.10754 0.08920 0.23939 +v -0.10716 0.08703 0.23902 +v -0.10731 0.08633 0.23914 +v -0.08095 0.12271 0.23208 +v -0.11210 0.01639 0.23824 +v -0.10453 0.00447 0.23877 +v -0.10080 0.00369 0.23850 +v -0.10998 0.00538 0.23851 +v -0.11300 0.01289 0.23826 +v -0.12094 0.03693 0.23853 +v -0.12063 0.03501 0.23842 +v -0.12028 0.03173 0.23803 +v -0.11927 0.02955 0.23807 +v -0.11925 0.02479 0.23840 +v -0.11862 0.02669 0.23841 +v -0.11887 0.02147 0.23786 +v -0.11320 0.01698 0.23819 +v -0.11551 0.01918 0.23764 +v -0.11647 0.01985 0.23758 +v -0.11831 0.02911 0.23811 +v 0.09427 0.12366 0.23031 +v 0.08940 0.12411 0.22798 +v 0.08889 0.12406 0.22546 +v 0.08526 0.12396 0.21884 +v -0.08402 0.12230 0.23584 +v -0.09482 0.12099 0.23742 +v -0.09570 0.12050 0.23809 +v -0.09679 0.11986 0.23856 +v -0.09975 0.11822 0.23870 +v -0.08883 0.12176 0.23580 +v -0.08659 0.12217 0.23481 +v -0.10140 0.11725 0.23863 +v -0.10353 0.11351 0.23911 +v -0.10243 0.11562 0.23868 +v -0.10599 0.11182 0.23936 +v -0.10617 0.10775 0.23943 +v -0.10671 0.10446 0.23926 +v -0.10503 0.10127 0.23987 +v -0.10678 0.10125 0.23945 +v -0.10456 0.10034 0.24002 +v -0.10480 0.09866 0.24015 +v -0.08110 0.12242 0.23512 +v -0.11155 0.07668 0.23985 +v -0.10798 0.08134 0.24051 +v -0.10994 0.07838 0.24016 +v -0.10652 0.08352 0.24036 +v -0.10727 0.08243 0.24037 +v -0.10574 0.08455 0.24048 +v -0.10671 0.09685 0.24033 +v -0.10606 0.09221 0.23966 +v -0.10844 0.08743 0.23921 +v -0.10767 0.08697 0.23898 +v -0.10662 0.09071 0.23945 +v -0.10736 0.08506 0.23954 +v -0.10658 0.08509 0.23988 +v -0.10677 0.00485 0.23870 +v -0.10300 0.00380 0.23874 +v -0.11265 0.00540 0.23834 +v -0.11427 0.00959 0.23840 +v -0.10871 0.00444 0.23871 +v -0.11315 0.01493 0.23827 +v -0.11384 0.01135 0.23826 +v -0.12295 0.03950 0.23807 +v -0.12129 0.03619 0.23848 +v -0.12151 0.03309 0.23795 +v -0.12091 0.03083 0.23800 +v -0.11915 0.02282 0.23809 +v -0.11872 0.02818 0.23822 +v -0.11941 0.01998 0.23771 +v -0.11453 0.01712 0.23806 +v -0.11578 0.01808 0.23768 +v -0.11760 0.01936 0.23758 +v 0.09330 0.12388 0.22915 +v 0.09131 0.12416 0.22873 +v 0.09040 0.12412 0.22663 +v 0.08946 0.12409 0.22310 +v 0.08662 0.12393 0.21740 +v 0.08782 0.12387 0.21873 +v -0.08532 0.12218 0.23552 +v -0.09614 0.12030 0.23842 +v -0.09196 0.12147 0.23659 +v -0.09436 0.12155 0.23658 +v -0.09943 0.11898 0.23872 +v -0.09802 0.11938 0.23859 +v -0.08793 0.12219 0.23409 +v -0.10689 0.11061 0.23941 +v -0.10783 0.10846 0.23926 +v -0.10588 0.09828 0.24023 +v -0.08246 0.12253 0.23476 +v -0.08300 0.12247 0.23531 +v -0.11423 0.07591 0.23968 +v -0.10989 0.08102 0.23998 +v -0.11063 0.07973 0.23992 +v -0.11163 0.08005 0.23965 +v -0.10685 0.09445 0.24014 +v -0.10955 0.08884 0.23983 +v -0.10839 0.09140 0.23998 +v -0.10819 0.08571 0.23917 +v -0.10729 0.08429 0.23973 +v -0.10627 0.00338 0.23911 +v -0.10389 0.00328 0.23904 +v -0.11580 0.00734 0.23835 +v -0.11443 0.01549 0.23829 +v -0.11613 0.01313 0.23818 +v -0.12248 0.03642 0.23818 +v -0.12028 0.02833 0.23814 +v -0.12075 0.02289 0.23795 +v -0.11982 0.02606 0.23837 +v -0.11958 0.02728 0.23843 +v -0.12061 0.02154 0.23784 +v -0.11642 0.01862 0.23757 +v 0.09492 0.12375 0.22675 +v 0.09096 0.12420 0.22791 +v 0.09060 0.12422 0.22481 +v 0.08964 0.12398 0.22063 +v -0.08418 0.12265 0.23401 +v -0.09592 0.12120 0.23746 +v -0.09634 0.12053 0.23835 +v -0.09554 0.12158 0.23661 +v -0.10124 0.11853 0.23866 +v -0.09998 0.11890 0.23881 +v -0.09888 0.11934 0.23862 +v -0.09732 0.12018 0.23841 +v -0.08659 0.12245 0.23290 +v -0.10327 0.11676 0.23862 +v -0.10303 0.11576 0.23860 +v -0.10716 0.11264 0.23926 +v -0.10783 0.11131 0.23943 +v -0.10844 0.10678 0.23919 +v -0.10914 0.10331 0.23910 +v -0.10607 0.09959 0.24001 +v -0.11285 0.07918 0.23950 +v -0.10708 0.08384 0.24000 +v -0.10693 0.09823 0.24030 +v -0.11073 0.09478 0.24075 +v -0.10982 0.08701 0.23953 +v -0.10815 0.08647 0.23903 +v -0.10908 0.08471 0.23938 +v -0.10760 0.00379 0.23889 +v -0.11576 0.01072 0.23826 +v -0.12384 0.03451 0.23768 +v -0.12267 0.03415 0.23791 +v -0.12351 0.03305 0.23773 +v -0.12311 0.03007 0.23788 +v -0.12131 0.02433 0.23799 +v -0.12132 0.02624 0.23807 +v -0.12100 0.01969 0.23769 +v -0.11888 0.01901 0.23767 +v -0.11487 0.01624 0.23819 +v -0.11682 0.01678 0.23790 +v -0.11827 0.01805 0.23773 +v 0.09309 0.12407 0.22704 +v 0.09210 0.12414 0.22726 +v 0.09187 0.12424 0.22594 +v 0.09116 0.12439 0.22350 +v 0.09074 0.12423 0.22169 +v 0.08909 0.12391 0.21677 +v 0.09003 0.12384 0.21807 +v -0.09648 0.12090 0.23797 +v -0.09681 0.12057 0.23831 +v -0.09474 0.12185 0.23573 +v -0.10362 0.11867 0.23874 +v -0.09956 0.11954 0.23854 +v -0.09808 0.12037 0.23814 +v -0.10536 0.11445 0.23888 +v -0.10896 0.10953 0.23926 +v -0.10845 0.10047 0.23938 +v -0.10720 0.10015 0.23964 +v -0.10647 0.09882 0.24022 +v -0.10879 0.08249 0.23983 +v -0.11073 0.08117 0.23974 +v -0.10803 0.08372 0.23971 +v -0.10743 0.09742 0.24041 +v -0.10848 0.09724 0.24048 +v -0.10956 0.09365 0.24050 +v -0.11052 0.08822 0.24002 +v -0.10910 0.08611 0.23923 +v -0.11002 0.09042 0.24022 +v -0.10894 0.00315 0.23911 +v -0.11684 0.01559 0.23807 +v -0.11895 0.01556 0.23798 +v -0.12121 0.02733 0.23808 +v -0.12303 0.02220 0.23765 +v -0.11984 0.01820 0.23771 +v 0.09297 0.12423 0.22586 +v 0.09139 0.12440 0.22433 +v 0.09103 0.12413 0.21997 +v 0.09039 0.12392 0.21945 +v -0.09670 0.12133 0.23737 +v -0.09623 0.12151 0.23702 +v -0.09590 0.12196 0.23528 +v -0.10363 0.11968 0.23856 +v -0.10102 0.11922 0.23859 +v -0.09732 0.12090 0.23788 +v -0.10421 0.11602 0.23860 +v -0.10793 0.11458 0.23894 +v -0.11237 0.10533 0.23909 +v -0.11081 0.10038 0.23897 +v -0.10725 0.09903 0.24009 +v -0.11221 0.08123 0.23956 +v -0.10995 0.08238 0.23964 +v -0.10787 0.09808 0.24033 +v -0.11044 0.09684 0.24065 +v -0.11119 0.09360 0.24069 +v -0.11102 0.09184 0.24049 +v -0.11119 0.08966 0.24034 +v -0.11096 0.08561 0.23959 +v -0.10931 0.08341 0.23952 +v -0.11986 0.01150 0.23794 +v -0.12388 0.03253 0.23770 +v -0.12360 0.02796 0.23774 +v -0.12268 0.01883 0.23750 +v -0.12379 0.02030 0.23747 +v -0.12377 0.02491 0.23770 +v -0.12437 0.02580 0.23768 +v -0.12132 0.01758 0.23762 +v 0.09368 0.12430 0.22477 +v 0.09254 0.12438 0.22509 +v 0.09207 0.12456 0.22403 +v 0.09161 0.12449 0.22216 +v 0.09183 0.12447 0.22076 +v 0.09119 0.12399 0.21659 +v 0.09107 0.12396 0.21842 +v -0.09730 0.12181 0.23621 +v -0.10468 0.11954 0.23872 +v -0.10132 0.12017 0.23819 +v -0.09829 0.12107 0.23746 +v -0.09927 0.12039 0.23798 +v -0.10616 0.11723 0.23875 +v -0.10570 0.11574 0.23871 +v -0.10756 0.11595 0.23871 +v -0.11266 0.10176 0.23882 +v -0.10991 0.09933 0.23937 +v -0.10782 0.09977 0.23964 +v -0.10890 0.09786 0.24033 +v -0.11143 0.09524 0.24083 +v -0.11187 0.09451 0.24077 +v -0.11214 0.08800 0.24032 +v -0.11067 0.08364 0.23947 +v -0.12144 0.01572 0.23768 +v -0.12463 0.03284 0.23748 +v -0.12414 0.03137 0.23766 +v -0.12446 0.02938 0.23752 +v 0.09247 0.12461 0.22338 +v 0.09223 0.12444 0.21969 +v 0.09067 0.12403 0.21513 +v -0.09822 0.12151 0.23686 +v -0.09764 0.12207 0.23513 +v -0.10542 0.11911 0.23886 +v -0.10435 0.12012 0.23838 +v -0.10634 0.11865 0.23890 +v -0.10944 0.11593 0.23888 +v -0.11067 0.09945 0.23917 +v -0.10826 0.09924 0.23978 +v -0.10870 0.09837 0.24012 +v -0.11022 0.09761 0.24045 +v -0.11212 0.09553 0.24075 +v -0.11271 0.09324 0.24054 +v -0.11265 0.08927 0.24048 +v -0.11188 0.08507 0.23962 +v -0.11262 0.09080 0.24050 +v -0.12182 0.00992 0.23775 +v -0.12328 0.01705 0.23736 +v -0.12403 0.01819 0.23726 +v 0.09284 0.12451 0.22432 +v 0.09277 0.12493 0.22197 +v 0.09237 0.12476 0.22237 +v 0.09176 0.12417 0.21911 +v 0.09255 0.12408 0.21719 +v -0.09832 0.12249 0.23252 +v -0.10007 0.12171 0.23595 +v -0.10269 0.12015 0.23830 +v -0.10533 0.11986 0.23867 +v -0.10356 0.12059 0.23809 +v -0.10046 0.12067 0.23777 +v -0.09933 0.12099 0.23739 +v -0.10915 0.11709 0.23885 +v -0.11127 0.09943 0.23912 +v -0.11029 0.09856 0.23971 +v -0.10963 0.09878 0.23963 +v -0.11253 0.08256 0.23954 +v -0.11101 0.09695 0.24063 +v -0.10970 0.09812 0.24012 +v -0.11207 0.09655 0.24065 +v -0.11248 0.09197 0.24055 +v -0.11292 0.09470 0.24059 +v -0.11331 0.08821 0.24048 +v 0.09236 0.12414 0.21853 +v -0.09927 0.12229 0.23373 +v -0.09986 0.12200 0.23509 +v -0.10199 0.12064 0.23791 +v -0.10645 0.11969 0.23886 +v -0.10579 0.11970 0.23886 +v -0.10455 0.12065 0.23794 +v -0.10554 0.12048 0.23819 +v -0.10129 0.12087 0.23760 +v -0.09947 0.12148 0.23659 +v -0.10836 0.11902 0.23896 +v -0.11023 0.11846 0.23881 +v -0.11107 0.09774 0.24030 +v -0.11386 0.09663 0.24037 +v -0.11394 0.09122 0.24031 +v -0.11471 0.09540 0.24015 +v -0.11345 0.08974 0.24046 +v -0.11338 0.08730 0.24025 +v -0.09961 0.12246 0.23216 +v -0.10209 0.12149 0.23656 +v -0.10304 0.12085 0.23778 +v -0.10755 0.11968 0.23887 +v -0.10597 0.11999 0.23873 +v -0.10406 0.12124 0.23725 +v -0.10046 0.12118 0.23707 +v -0.10904 0.11937 0.23895 +v -0.11273 0.09738 0.24047 +v -0.11404 0.08827 0.24039 +v -0.10162 0.12236 0.23330 +v -0.10230 0.12200 0.23493 +v -0.10176 0.12124 0.23712 +v -0.10717 0.12017 0.23864 +v -0.10706 0.12063 0.23807 +v -0.10450 0.12122 0.23717 +v -0.10643 0.12024 0.23852 +v -0.10862 0.11995 0.23874 +v -0.11037 0.11993 0.23840 +v -0.10381 0.12166 0.23607 +v -0.10364 0.12136 0.23690 +v -0.10937 0.12018 0.23847 +v -0.10426 0.12222 0.23349 +v -0.10459 0.12194 0.23473 +v -0.10832 0.12040 0.23849 +v -0.10706 0.12100 0.23733 +v -0.10874 0.12050 0.23827 +v -0.10950 0.12061 0.23795 +v -0.10596 0.12139 0.23642 +v -0.10801 0.12064 0.23812 +v -0.11045 0.12078 0.23766 +v -0.10619 0.12179 0.23458 +v -0.10812 0.12122 0.23655 +v -0.10890 0.12093 0.23740 +v -0.11057 0.12125 0.23675 +v -0.10792 0.12161 0.23492 +v -0.11074 0.12156 0.23571 +v 0.04856 0.12293 0.11608 +v 0.04913 0.12260 0.11550 +v 0.04869 0.12243 0.11539 +v 0.04962 0.12278 0.11582 +v 0.04913 0.12209 0.11511 +v 0.04786 0.12251 0.11549 +v 0.04952 0.12316 0.11665 +v 0.04968 0.12230 0.11528 +v 0.04882 0.12186 0.11505 +v 0.04825 0.12211 0.11517 +v 0.04766 0.12296 0.11600 +v 0.04848 0.12338 0.11721 +v 0.05086 0.12289 0.11581 +v 0.05051 0.12242 0.11539 +v 0.05019 0.12174 0.11504 +v 0.04868 0.12128 0.11494 +v 0.04770 0.12192 0.11512 +v 0.04771 0.12331 0.11664 +v 0.04695 0.12276 0.11572 +v 0.04953 0.12356 0.11794 +v 0.05122 0.12322 0.11629 +v 0.04820 0.12166 0.11500 +v 0.04717 0.12230 0.11530 +v 0.04694 0.12344 0.11656 +v 0.04729 0.12361 0.11747 +v 0.04799 0.12374 0.11854 +v 0.05096 0.12396 0.11912 +v 0.05157 0.12353 0.11719 +v 0.05190 0.12279 0.11570 +v 0.05136 0.12241 0.11531 +v 0.05122 0.12176 0.11498 +v 0.05085 0.12064 0.11487 +v 0.04764 0.12102 0.11498 +v 0.04608 0.12180 0.11511 +v 0.04580 0.12310 0.11623 +v 0.04471 0.12263 0.11568 +v 0.04905 0.12393 0.11945 +v 0.05182 0.12332 0.11659 +v 0.04898 0.12032 0.11493 +v 0.04557 0.12229 0.11533 +v 0.04656 0.12353 0.11687 +v 0.04675 0.12399 0.11978 +v 0.04767 0.12408 0.12044 +v 0.05396 0.12405 0.11864 +v 0.05295 0.12338 0.11666 +v 0.05268 0.12307 0.11609 +v 0.05211 0.12200 0.11508 +v 0.05183 0.12142 0.11481 +v 0.04927 0.11802 0.11511 +v 0.04579 0.11974 0.11517 +v 0.04599 0.12114 0.11506 +v 0.04461 0.12215 0.11533 +v 0.04550 0.12377 0.11775 +v 0.04408 0.12345 0.11691 +v 0.04537 0.12340 0.11678 +v 0.04442 0.12421 0.11987 +v 0.05333 0.12460 0.12158 +v 0.05405 0.12365 0.11730 +v 0.05342 0.12240 0.11533 +v 0.05258 0.12083 0.11481 +v 0.05189 0.11894 0.11486 +v 0.04671 0.11778 0.11533 +v 0.04479 0.12160 0.11517 +v 0.04287 0.12289 0.11618 +v 0.04409 0.12240 0.11548 +v 0.05580 0.12451 0.12024 +v 0.05619 0.12420 0.11831 +v 0.05355 0.12291 0.11588 +v 0.05424 0.12326 0.11645 +v 0.05293 0.12182 0.11499 +v 0.05155 0.11798 0.11496 +v 0.04877 0.11679 0.11502 +v 0.04451 0.12036 0.11515 +v 0.04481 0.11809 0.11540 +v 0.04374 0.12170 0.11525 +v 0.04397 0.12381 0.11755 +v 0.04454 0.12396 0.11822 +v 0.04319 0.12359 0.11746 +v 0.04325 0.12236 0.11554 +v 0.05592 0.12368 0.11697 +v 0.05442 0.12276 0.11574 +v 0.05348 0.12204 0.11508 +v 0.05365 0.11824 0.11473 +v 0.05205 0.11681 0.11481 +v 0.05260 0.11789 0.11479 +v 0.04952 0.11696 0.11505 +v 0.04817 0.11651 0.11498 +v 0.04426 0.11847 0.11532 +v 0.04531 0.11758 0.11539 +v 0.04154 0.12293 0.11637 +v 0.04255 0.12241 0.11552 +v 0.05725 0.12430 0.11833 +v 0.05682 0.12404 0.11736 +v 0.05516 0.12310 0.11615 +v 0.05464 0.12221 0.11528 +v 0.05354 0.12149 0.11489 +v 0.05415 0.12180 0.11503 +v 0.05452 0.12078 0.11484 +v 0.04907 0.11558 0.11477 +v 0.04664 0.11699 0.11521 +v 0.04232 0.11964 0.11517 +v 0.04419 0.11754 0.11532 +v 0.04189 0.12102 0.11513 +v 0.04311 0.12401 0.11901 +v 0.04225 0.12268 0.11583 +v 0.04112 0.12312 0.11683 +v 0.04272 0.12195 0.11527 +v 0.05899 0.12466 0.12011 +v 0.05733 0.12381 0.11687 +v 0.05614 0.12298 0.11590 +v 0.05528 0.12261 0.11560 +v 0.05663 0.11874 0.11477 +v 0.05076 0.11610 0.11482 +v 0.04720 0.11592 0.11478 +v 0.04294 0.11787 0.11528 +v 0.04491 0.11687 0.11525 +v 0.04380 0.12452 0.12134 +v 0.04161 0.12252 0.11570 +v 0.04075 0.12261 0.11587 +v 0.04166 0.12375 0.11852 +v 0.04224 0.12223 0.11533 +v 0.05879 0.12406 0.11744 +v 0.05934 0.12428 0.11821 +v 0.05690 0.12332 0.11621 +v 0.05562 0.12193 0.11519 +v 0.05506 0.12154 0.11498 +v 0.05429 0.11662 0.11476 +v 0.05624 0.12093 0.11494 +v 0.05261 0.11577 0.11475 +v 0.05084 0.11405 0.11468 +v 0.04724 0.11448 0.11449 +v 0.04051 0.12059 0.11518 +v 0.04325 0.11669 0.11512 +v 0.04448 0.11651 0.11507 +v 0.04185 0.12191 0.11527 +v 0.04154 0.12417 0.12009 +v 0.03983 0.12267 0.11603 +v 0.03992 0.12320 0.11720 +v 0.06030 0.12438 0.11882 +v 0.05880 0.12380 0.11682 +v 0.05812 0.12324 0.11602 +v 0.05712 0.12274 0.11556 +v 0.05692 0.12229 0.11522 +v 0.05769 0.11651 0.11500 +v 0.05810 0.11985 0.11495 +v 0.04425 0.11538 0.11471 +v 0.04099 0.11825 0.11524 +v 0.04010 0.12176 0.11532 +v 0.04219 0.11726 0.11528 +v 0.04224 0.12440 0.12111 +v 0.04071 0.12222 0.11546 +v 0.04025 0.12242 0.11561 +v 0.04007 0.12357 0.11837 +v 0.06151 0.12414 0.11734 +v 0.05973 0.12361 0.11619 +v 0.05867 0.11730 0.11510 +v 0.05576 0.11564 0.11497 +v 0.05324 0.11500 0.11481 +v 0.05751 0.12149 0.11505 +v 0.05054 0.11132 0.11453 +v 0.04407 0.11390 0.11454 +v 0.03923 0.12091 0.11514 +v 0.04221 0.11631 0.11517 +v 0.03960 0.12455 0.12172 +v 0.03958 0.12222 0.11554 +v 0.03876 0.12294 0.11652 +v 0.03877 0.12331 0.11762 +v 0.03998 0.12424 0.12055 +v 0.06205 0.12434 0.11810 +v 0.05800 0.12232 0.11529 +v 0.05871 0.11591 0.11507 +v 0.05695 0.11510 0.11509 +v 0.05879 0.12144 0.11503 +v 0.06045 0.11718 0.11522 +v 0.05247 0.11290 0.11490 +v 0.04776 0.11068 0.11446 +v 0.04281 0.11524 0.11484 +v 0.04528 0.11290 0.11447 +v 0.03781 0.12058 0.11501 +v 0.04174 0.11670 0.11534 +v 0.03917 0.12173 0.11530 +v 0.03885 0.12240 0.11570 +v 0.03882 0.12346 0.11841 +v 0.03873 0.12391 0.12003 +v 0.06118 0.12388 0.11681 +v 0.06406 0.12442 0.11701 +v 0.06186 0.12455 0.12051 +v 0.05917 0.12295 0.11550 +v 0.05406 0.11315 0.11516 +v 0.05993 0.11998 0.11497 +v 0.05202 0.10786 0.11440 +v 0.05332 0.11148 0.11499 +v 0.04243 0.11317 0.11467 +v 0.03788 0.12161 0.11512 +v 0.03924 0.11815 0.11504 +v 0.04074 0.11694 0.11522 +v 0.04151 0.11587 0.11514 +v 0.03940 0.12446 0.12118 +v 0.03756 0.12306 0.11649 +v 0.03758 0.12273 0.11593 +v 0.03610 0.12379 0.11930 +v 0.06235 0.12386 0.11639 +v 0.06048 0.12330 0.11570 +v 0.06328 0.12419 0.11662 +v 0.06260 0.12444 0.11927 +v 0.05981 0.12329 0.11569 +v 0.05867 0.12222 0.11515 +v 0.05725 0.11427 0.11506 +v 0.06060 0.11539 0.11502 +v 0.05449 0.11301 0.11517 +v 0.06027 0.12161 0.11494 +v 0.06265 0.11768 0.11512 +v 0.05029 0.10654 0.11439 +v 0.05199 0.10911 0.11444 +v 0.04537 0.10430 0.11463 +v 0.05211 0.11084 0.11466 +v 0.04125 0.11454 0.11487 +v 0.04017 0.10989 0.11475 +v 0.03684 0.12176 0.11509 +v 0.03743 0.11794 0.11487 +v 0.04104 0.11643 0.11526 +v 0.03799 0.12204 0.11528 +v 0.03789 0.12442 0.12154 +v 0.03652 0.12337 0.11754 +v 0.03793 0.12237 0.11551 +v 0.03773 0.12390 0.11985 +v 0.03847 0.12419 0.12068 +v 0.06139 0.12339 0.11598 +v 0.06396 0.12428 0.11650 +v 0.06553 0.12459 0.11771 +v 0.05979 0.12286 0.11525 +v 0.05932 0.12234 0.11513 +v 0.05881 0.11535 0.11504 +v 0.06311 0.11644 0.11507 +v 0.05488 0.11257 0.11508 +v 0.06222 0.12100 0.11487 +v 0.06333 0.12031 0.11490 +v 0.05245 0.10551 0.11440 +v 0.05371 0.10927 0.11440 +v 0.05340 0.11051 0.11463 +v 0.03590 0.12140 0.11493 +v 0.03728 0.12219 0.11534 +v 0.03972 0.11668 0.11498 +v 0.03547 0.11988 0.11486 +v 0.03876 0.11582 0.11477 +v 0.04048 0.11621 0.11507 +v 0.04090 0.11568 0.11503 +v 0.03650 0.12298 0.11645 +v 0.03444 0.12358 0.11889 +v 0.03588 0.12447 0.12187 +v 0.06219 0.12328 0.11576 +v 0.06295 0.12366 0.11596 +v 0.06034 0.12302 0.11520 +v 0.06124 0.12307 0.11559 +v 0.06389 0.12397 0.11607 +v 0.05946 0.11451 0.11483 +v 0.06309 0.11444 0.11471 +v 0.06010 0.12242 0.11502 +v 0.06164 0.12164 0.11492 +v 0.06487 0.11921 0.11506 +v 0.06464 0.11738 0.11517 +v 0.05463 0.11180 0.11491 +v 0.05258 0.10713 0.11444 +v 0.05255 0.10379 0.11421 +v 0.05091 0.10347 0.11423 +v 0.05500 0.10948 0.11434 +v 0.03898 0.10385 0.11500 +v 0.05482 0.11127 0.11467 +v 0.03888 0.11436 0.11469 +v 0.03599 0.12207 0.11505 +v 0.03650 0.12241 0.11547 +v 0.03430 0.11777 0.11483 +v 0.03673 0.11578 0.11468 +v 0.03992 0.11533 0.11482 +v 0.03446 0.12285 0.11648 +v 0.03313 0.12304 0.11727 +v 0.03421 0.12381 0.12002 +v 0.06169 0.12291 0.11549 +v 0.06061 0.12301 0.11532 +v 0.06642 0.12441 0.11684 +v 0.06463 0.12388 0.11589 +v 0.06026 0.12284 0.11512 +v 0.05688 0.11305 0.11483 +v 0.06115 0.11349 0.11447 +v 0.06458 0.11483 0.11476 +v 0.06046 0.12220 0.11495 +v 0.06411 0.12181 0.11492 +v 0.06277 0.12220 0.11505 +v 0.06095 0.12217 0.11500 +v 0.06513 0.12088 0.11481 +v 0.06473 0.11816 0.11520 +v 0.06506 0.11659 0.11499 +v 0.05493 0.10845 0.11440 +v 0.05358 0.10570 0.11455 +v 0.05399 0.10264 0.11420 +v 0.05032 0.10047 0.11419 +v 0.05502 0.11047 0.11442 +v 0.03776 0.09674 0.11524 +v 0.03253 0.10415 0.11502 +v 0.03667 0.11276 0.11472 +v 0.03420 0.12132 0.11495 +v 0.03464 0.12186 0.11507 +v 0.03565 0.11694 0.11479 +v 0.03317 0.11981 0.11480 +v 0.03574 0.12262 0.11573 +v 0.03290 0.12327 0.11798 +v 0.03298 0.12359 0.11936 +v 0.03307 0.12417 0.12226 +v 0.06253 0.12283 0.11535 +v 0.06401 0.12356 0.11564 +v 0.06115 0.12272 0.11527 +v 0.06536 0.12396 0.11600 +v 0.05793 0.11290 0.11457 +v 0.05993 0.11321 0.11438 +v 0.06377 0.11296 0.11447 +v 0.06161 0.11267 0.11428 +v 0.06175 0.12230 0.11511 +v 0.06640 0.11982 0.11493 +v 0.06600 0.11838 0.11527 +v 0.06590 0.11758 0.11534 +v 0.06550 0.11782 0.11533 +v 0.05713 0.11206 0.11438 +v 0.05445 0.10734 0.11452 +v 0.05399 0.10442 0.11446 +v 0.05360 0.10167 0.11399 +v 0.05260 0.10158 0.11400 +v 0.04716 0.09533 0.11450 +v 0.05643 0.11109 0.11429 +v 0.05716 0.11099 0.11422 +v 0.03601 0.12236 0.11526 +v 0.03492 0.11521 0.11471 +v 0.03153 0.11773 0.11489 +v 0.03224 0.12260 0.11634 +v 0.03458 0.12228 0.11545 +v 0.03058 0.12289 0.11678 +v 0.03267 0.12386 0.12091 +v 0.06597 0.12381 0.11581 +v 0.06505 0.12333 0.11544 +v 0.06027 0.11230 0.11427 +v 0.06626 0.11604 0.11481 +v 0.06542 0.11384 0.11471 +v 0.06530 0.12181 0.11475 +v 0.06408 0.12292 0.11526 +v 0.06625 0.12125 0.11470 +v 0.06577 0.11649 0.11492 +v 0.05780 0.10612 0.11457 +v 0.05487 0.10548 0.11460 +v 0.05464 0.10100 0.11414 +v 0.05468 0.10317 0.11443 +v 0.05328 0.09967 0.11389 +v 0.05253 0.09803 0.11402 +v 0.04293 0.09237 0.11475 +v 0.03239 0.09877 0.11540 +v 0.03098 0.11284 0.11483 +v 0.03343 0.12190 0.11524 +v 0.03246 0.12072 0.11485 +v 0.03028 0.11534 0.11487 +v 0.02862 0.11705 0.11503 +v 0.02899 0.12007 0.11490 +v 0.03405 0.12227 0.11546 +v 0.03204 0.12356 0.11914 +v 0.03029 0.12337 0.11800 +v 0.03059 0.12410 0.12200 +v 0.06570 0.11163 0.11452 +v 0.06276 0.11225 0.11432 +v 0.06129 0.11192 0.11423 +v 0.06537 0.12225 0.11484 +v 0.06733 0.11827 0.11516 +v 0.06683 0.11663 0.11502 +v 0.05569 0.10394 0.11461 +v 0.05399 0.10001 0.11391 +v 0.05590 0.10181 0.11456 +v 0.05336 0.09414 0.11413 +v 0.06062 0.11039 0.11433 +v 0.04088 0.09155 0.11479 +v 0.04486 0.09015 0.11446 +v 0.03198 0.09652 0.11554 +v 0.02996 0.09920 0.11513 +v 0.02655 0.10677 0.11507 +v 0.03298 0.12147 0.11503 +v 0.02693 0.11726 0.11511 +v 0.02778 0.11910 0.11501 +v 0.03141 0.12217 0.11581 +v 0.02977 0.12280 0.11674 +v 0.06571 0.12299 0.11519 +v 0.06724 0.11580 0.11489 +v 0.06339 0.11103 0.11440 +v 0.06617 0.12217 0.11479 +v 0.06643 0.11782 0.11537 +v 0.05523 0.09874 0.11407 +v 0.05716 0.09944 0.11473 +v 0.05424 0.09869 0.11395 +v 0.05435 0.09734 0.11397 +v 0.04967 0.08965 0.11429 +v 0.06230 0.10708 0.11453 +v 0.03826 0.09210 0.11478 +v 0.04696 0.08976 0.11437 +v 0.03456 0.09539 0.11559 +v 0.03064 0.09768 0.11545 +v 0.02879 0.10038 0.11485 +v 0.02613 0.11269 0.11491 +v 0.02763 0.10294 0.11495 +v 0.03105 0.12163 0.11533 +v 0.03225 0.12140 0.11504 +v 0.03004 0.12061 0.11492 +v 0.02693 0.11538 0.11493 +v 0.02708 0.11440 0.11487 +v 0.02731 0.12037 0.11505 +v 0.03008 0.12204 0.11574 +v 0.02845 0.12340 0.11796 +v 0.06560 0.10878 0.11447 +v 0.06728 0.11714 0.11512 +v 0.05735 0.10184 0.11473 +v 0.05579 0.09940 0.11428 +v 0.05745 0.10010 0.11482 +v 0.05669 0.09570 0.11403 +v 0.05183 0.08832 0.11432 +v 0.06105 0.10046 0.11461 +v 0.03654 0.09400 0.11512 +v 0.04068 0.09017 0.11459 +v 0.04332 0.08833 0.11425 +v 0.04532 0.08770 0.11424 +v 0.03230 0.09527 0.11538 +v 0.03543 0.09474 0.11533 +v 0.03031 0.09682 0.11548 +v 0.02882 0.10187 0.11490 +v 0.02847 0.09828 0.11482 +v 0.02196 0.10782 0.11528 +v 0.02575 0.10260 0.11500 +v 0.03197 0.12113 0.11490 +v 0.02929 0.12114 0.11502 +v 0.02543 0.11512 0.11489 +v 0.02595 0.11925 0.11507 +v 0.02779 0.12130 0.11513 +v 0.02730 0.12208 0.11598 +v 0.02873 0.12176 0.11531 +v 0.06767 0.11037 0.11446 +v 0.05662 0.09803 0.11424 +v 0.05848 0.09999 0.11484 +v 0.05680 0.09359 0.11399 +v 0.05678 0.09694 0.11410 +v 0.04946 0.08730 0.11423 +v 0.05496 0.08942 0.11428 +v 0.04765 0.08764 0.11427 +v 0.06504 0.10483 0.11450 +v 0.03582 0.09357 0.11496 +v 0.03904 0.08959 0.11424 +v 0.03363 0.09488 0.11541 +v 0.03109 0.09551 0.11525 +v 0.03048 0.09576 0.11525 +v 0.02679 0.10053 0.11474 +v 0.02705 0.09844 0.11451 +v 0.02264 0.11193 0.11502 +v 0.02268 0.10591 0.11534 +v 0.02400 0.10419 0.11523 +v 0.03020 0.12136 0.11520 +v 0.03097 0.12106 0.11499 +v 0.02277 0.11643 0.11477 +v 0.02299 0.11842 0.11496 +v 0.02592 0.12079 0.11521 +v 0.02705 0.12115 0.11525 +v 0.02550 0.12253 0.11687 +v 0.06904 0.10670 0.11423 +v 0.05897 0.09912 0.11482 +v 0.05775 0.09771 0.11445 +v 0.05810 0.09472 0.11382 +v 0.05782 0.09674 0.11419 +v 0.05056 0.08640 0.11426 +v 0.05315 0.08803 0.11442 +v 0.06680 0.10060 0.11427 +v 0.03593 0.09273 0.11466 +v 0.04094 0.08813 0.11412 +v 0.04807 0.08561 0.11407 +v 0.03261 0.09447 0.11501 +v 0.03109 0.09497 0.11495 +v 0.03440 0.09416 0.11504 +v 0.02912 0.09623 0.11497 +v 0.02771 0.09775 0.11457 +v 0.02874 0.09655 0.11484 +v 0.02117 0.10912 0.11527 +v 0.02306 0.11473 0.11479 +v 0.02123 0.10545 0.11542 +v 0.02303 0.10204 0.11512 +v 0.02528 0.10061 0.11478 +v 0.02451 0.12031 0.11508 +v 0.02724 0.12186 0.11573 +v 0.02632 0.12195 0.11588 +v 0.02357 0.12342 0.11896 +v 0.05847 0.09828 0.11473 +v 0.05874 0.09174 0.11404 +v 0.05861 0.09617 0.11397 +v 0.05909 0.09347 0.11384 +v 0.05293 0.08644 0.11443 +v 0.06386 0.09797 0.11432 +v 0.03181 0.09373 0.11451 +v 0.03844 0.08787 0.11388 +v 0.03633 0.09100 0.11423 +v 0.04249 0.08601 0.11392 +v 0.02905 0.09585 0.11477 +v 0.02534 0.09849 0.11437 +v 0.02667 0.09673 0.11421 +v 0.02046 0.11047 0.11535 +v 0.02022 0.10837 0.11528 +v 0.02162 0.11434 0.11475 +v 0.02288 0.10395 0.11535 +v 0.02031 0.10617 0.11534 +v 0.02212 0.11765 0.11487 +v 0.02202 0.11612 0.11464 +v 0.02304 0.12144 0.11511 +v 0.02638 0.12157 0.11553 +v 0.02444 0.12136 0.11526 +v 0.02557 0.12205 0.11603 +v 0.02264 0.12327 0.11880 +v 0.05933 0.09853 0.11471 +v 0.05869 0.09763 0.11453 +v 0.05797 0.08743 0.11422 +v 0.05937 0.09587 0.11387 +v 0.06030 0.09452 0.11380 +v 0.05233 0.08483 0.11444 +v 0.04924 0.08420 0.11398 +v 0.05508 0.08535 0.11424 +v 0.06577 0.09773 0.11414 +v 0.06229 0.09778 0.11440 +v 0.07037 0.10274 0.11393 +v 0.03317 0.09262 0.11431 +v 0.04013 0.08569 0.11378 +v 0.04835 0.08216 0.11373 +v 0.02965 0.09522 0.11465 +v 0.02792 0.09611 0.11446 +v 0.02077 0.11243 0.11506 +v 0.01951 0.10950 0.11538 +v 0.02159 0.10332 0.11527 +v 0.02063 0.10540 0.11536 +v 0.02347 0.09961 0.11470 +v 0.02026 0.11844 0.11499 +v 0.02224 0.12091 0.11512 +v 0.02366 0.12112 0.11511 +v 0.02558 0.12160 0.11553 +v 0.02412 0.12227 0.11629 +v 0.02243 0.12374 0.12023 +v 0.02310 0.12260 0.11720 +v 0.05966 0.09774 0.11441 +v 0.06192 0.09150 0.11409 +v 0.06006 0.08914 0.11426 +v 0.05996 0.09645 0.11397 +v 0.05372 0.08456 0.11441 +v 0.05079 0.08487 0.11422 +v 0.06544 0.09647 0.11386 +v 0.06732 0.09850 0.11416 +v 0.06061 0.09760 0.11430 +v 0.06296 0.09706 0.11429 +v 0.06903 0.09920 0.11394 +v 0.03139 0.09228 0.11415 +v 0.03774 0.08594 0.11369 +v 0.03499 0.08878 0.11381 +v 0.03395 0.09072 0.11395 +v 0.04231 0.08389 0.11378 +v 0.02945 0.09472 0.11437 +v 0.02865 0.09496 0.11437 +v 0.02588 0.09659 0.11423 +v 0.02662 0.09586 0.11426 +v 0.01943 0.11091 0.11553 +v 0.01979 0.11042 0.11552 +v 0.01858 0.10676 0.11516 +v 0.01867 0.10824 0.11521 +v 0.02057 0.11515 0.11462 +v 0.01966 0.11374 0.11478 +v 0.01932 0.10344 0.11498 +v 0.02219 0.10109 0.11493 +v 0.02386 0.09839 0.11450 +v 0.02066 0.11734 0.11482 +v 0.02099 0.12003 0.11509 +v 0.02173 0.12164 0.11535 +v 0.02364 0.12173 0.11538 +v 0.02486 0.12164 0.11544 +v 0.02430 0.12188 0.11561 +v 0.02136 0.12311 0.11836 +v 0.06005 0.08701 0.11429 +v 0.05722 0.08530 0.11402 +v 0.06056 0.09567 0.11384 +v 0.06164 0.09470 0.11391 +v 0.05232 0.08418 0.11437 +v 0.05034 0.08264 0.11385 +v 0.05105 0.08381 0.11411 +v 0.05402 0.08380 0.11427 +v 0.06342 0.09641 0.11409 +v 0.06691 0.09726 0.11396 +v 0.06224 0.09639 0.11415 +v 0.02925 0.09410 0.11424 +v 0.03877 0.08458 0.11367 +v 0.03544 0.08704 0.11367 +v 0.04014 0.08353 0.11377 +v 0.04446 0.08215 0.11374 +v 0.02503 0.09750 0.11434 +v 0.02748 0.09503 0.11429 +v 0.01929 0.11193 0.11520 +v 0.01918 0.11007 0.11549 +v 0.01803 0.10963 0.11525 +v 0.02044 0.11622 0.11466 +v 0.02212 0.09947 0.11457 +v 0.02034 0.10118 0.11475 +v 0.02237 0.09809 0.11449 +v 0.01779 0.11756 0.11512 +v 0.01774 0.12080 0.11518 +v 0.02236 0.12196 0.11560 +v 0.02102 0.12151 0.11530 +v 0.02292 0.12176 0.11534 +v 0.02272 0.12228 0.11625 +v 0.02383 0.12204 0.11574 +v 0.06153 0.08786 0.11435 +v 0.05920 0.08625 0.11417 +v 0.05547 0.08374 0.11379 +v 0.05843 0.08525 0.11390 +v 0.06110 0.09620 0.11401 +v 0.06307 0.09409 0.11384 +v 0.05330 0.08333 0.11422 +v 0.05049 0.08137 0.11375 +v 0.06300 0.09540 0.11391 +v 0.06771 0.09655 0.11362 +v 0.06802 0.09808 0.11400 +v 0.03097 0.09052 0.11400 +v 0.03671 0.08374 0.11370 +v 0.03170 0.08586 0.11355 +v 0.04169 0.08266 0.11383 +v 0.04719 0.07968 0.11362 +v 0.02515 0.09568 0.11435 +v 0.02686 0.09389 0.11433 +v 0.01891 0.11091 0.11541 +v 0.01710 0.10696 0.11512 +v 0.01777 0.10280 0.11481 +v 0.01957 0.11526 0.11462 +v 0.01810 0.11164 0.11516 +v 0.02131 0.10011 0.11461 +v 0.02344 0.09674 0.11445 +v 0.01846 0.11608 0.11476 +v 0.02014 0.12086 0.11519 +v 0.02156 0.12213 0.11578 +v 0.02127 0.12190 0.11547 +v 0.02321 0.12211 0.11585 +v 0.02148 0.12245 0.11649 +v 0.06108 0.08613 0.11426 +v 0.06017 0.08547 0.11400 +v 0.06464 0.09299 0.11379 +v 0.05175 0.08288 0.11398 +v 0.05149 0.08158 0.11368 +v 0.05405 0.08318 0.11400 +v 0.06537 0.09570 0.11364 +v 0.06852 0.09771 0.11377 +v 0.06653 0.09562 0.11356 +v 0.03001 0.08764 0.11368 +v 0.02890 0.09259 0.11415 +v 0.03161 0.08688 0.11357 +v 0.03853 0.08157 0.11410 +v 0.04204 0.08104 0.11396 +v 0.04398 0.08022 0.11379 +v 0.02774 0.09371 0.11426 +v 0.01775 0.11058 0.11523 +v 0.01892 0.10001 0.11449 +v 0.01664 0.10923 0.11521 +v 0.01838 0.11430 0.11463 +v 0.02112 0.09971 0.11449 +v 0.02065 0.09952 0.11450 +v 0.02158 0.09544 0.11451 +v 0.01713 0.12002 0.11517 +v 0.01581 0.11587 0.11495 +v 0.01943 0.12120 0.11523 +v 0.02079 0.12205 0.11557 +v 0.02021 0.12173 0.11541 +v 0.02044 0.12253 0.11658 +v 0.06201 0.08597 0.11424 +v 0.06370 0.09471 0.11374 +v 0.05297 0.08250 0.11383 +v 0.05096 0.08092 0.11368 +v 0.05339 0.08307 0.11411 +v 0.06949 0.09718 0.11346 +v 0.06907 0.09544 0.11339 +v 0.02873 0.09052 0.11408 +v 0.03785 0.08261 0.11385 +v 0.03409 0.08275 0.11369 +v 0.04000 0.08050 0.11416 +v 0.04509 0.07912 0.11365 +v 0.02425 0.09440 0.11450 +v 0.02724 0.09177 0.11432 +v 0.01435 0.10580 0.11499 +v 0.01694 0.10089 0.11462 +v 0.01481 0.10777 0.11520 +v 0.01778 0.11521 0.11468 +v 0.01710 0.11196 0.11508 +v 0.01914 0.09601 0.11444 +v 0.01695 0.12114 0.11534 +v 0.01642 0.11775 0.11515 +v 0.01848 0.12107 0.11520 +v 0.02063 0.12229 0.11588 +v 0.01903 0.12366 0.11944 +v 0.06132 0.08547 0.11415 +v 0.06536 0.09454 0.11357 +v 0.04914 0.07900 0.11350 +v 0.06704 0.09381 0.11355 +v 0.02830 0.08894 0.11395 +v 0.03707 0.08152 0.11392 +v 0.03018 0.08139 0.11377 +v 0.02772 0.08753 0.11379 +v 0.03869 0.08005 0.11424 +v 0.04101 0.07996 0.11410 +v 0.04208 0.07952 0.11392 +v 0.04672 0.07815 0.11349 +v 0.04319 0.07868 0.11364 +v 0.02531 0.09130 0.11462 +v 0.01603 0.11104 0.11519 +v 0.01580 0.10270 0.11482 +v 0.01641 0.09881 0.11453 +v 0.01333 0.10972 0.11536 +v 0.01604 0.11463 0.11485 +v 0.01613 0.11276 0.11501 +v 0.01939 0.09341 0.11451 +v 0.02273 0.09238 0.11461 +v 0.01783 0.12160 0.11549 +v 0.01581 0.12090 0.11531 +v 0.01590 0.11953 0.11521 +v 0.01498 0.11815 0.11526 +v 0.01800 0.12120 0.11524 +v 0.01850 0.12154 0.11534 +v 0.02047 0.12203 0.11549 +v 0.02014 0.12219 0.11582 +v 0.01723 0.12299 0.11774 +v 0.06146 0.08499 0.11386 +v 0.02570 0.09012 0.11448 +v 0.03464 0.08033 0.11366 +v 0.03285 0.08027 0.11365 +v 0.02534 0.08604 0.11393 +v 0.03793 0.08013 0.11408 +v 0.03963 0.07957 0.11411 +v 0.04034 0.07974 0.11415 +v 0.04370 0.07776 0.11340 +v 0.01353 0.10349 0.11491 +v 0.01375 0.10799 0.11528 +v 0.01422 0.10053 0.11483 +v 0.01687 0.09710 0.11444 +v 0.01697 0.09548 0.11431 +v 0.01689 0.12176 0.11565 +v 0.01634 0.12152 0.11551 +v 0.01185 0.11597 0.11535 +v 0.01888 0.12189 0.11559 +v 0.01959 0.12232 0.11615 +v 0.01667 0.12359 0.11948 +v 0.03610 0.08018 0.11374 +v 0.03171 0.08000 0.11366 +v 0.02612 0.07876 0.11410 +v 0.02647 0.08792 0.11399 +v 0.03828 0.07974 0.11421 +v 0.03854 0.07958 0.11420 +v 0.03711 0.08009 0.11386 +v 0.04070 0.07914 0.11391 +v 0.04164 0.07895 0.11384 +v 0.04194 0.07801 0.11345 +v 0.02355 0.09069 0.11464 +v 0.02356 0.09001 0.11458 +v 0.01338 0.11270 0.11527 +v 0.01253 0.10603 0.11491 +v 0.01463 0.09772 0.11471 +v 0.01134 0.10878 0.11533 +v 0.01669 0.09335 0.11440 +v 0.01989 0.09142 0.11458 +v 0.01690 0.12211 0.11601 +v 0.01578 0.12177 0.11570 +v 0.01504 0.12026 0.11524 +v 0.01240 0.11959 0.11544 +v 0.01748 0.12245 0.11653 +v 0.01512 0.12346 0.11925 +v 0.03328 0.07911 0.11347 +v 0.03503 0.07895 0.11340 +v 0.03157 0.07909 0.11355 +v 0.02205 0.08187 0.11411 +v 0.02877 0.07861 0.11390 +v 0.02545 0.08781 0.11403 +v 0.03824 0.07948 0.11404 +v 0.03869 0.07934 0.11404 +v 0.03772 0.07933 0.11374 +v 0.04256 0.07681 0.11311 +v 0.02223 0.09056 0.11453 +v 0.02500 0.08886 0.11420 +v 0.01106 0.11242 0.11547 +v 0.01027 0.10131 0.11495 +v 0.01142 0.10476 0.11492 +v 0.01151 0.10642 0.11501 +v 0.01183 0.09900 0.11487 +v 0.01398 0.09506 0.11445 +v 0.01091 0.10961 0.11541 +v 0.01429 0.09360 0.11438 +v 0.01787 0.12217 0.11607 +v 0.01467 0.12180 0.11563 +v 0.01522 0.12080 0.11524 +v 0.01425 0.12042 0.11531 +v 0.01110 0.11429 0.11546 +v 0.01071 0.11801 0.11535 +v 0.01552 0.12257 0.11691 +v 0.01360 0.12298 0.11825 +v 0.01556 0.12377 0.12030 +v 0.03626 0.07893 0.11341 +v 0.03027 0.07846 0.11365 +v 0.02288 0.07842 0.11413 +v 0.02284 0.08675 0.11392 +v 0.02855 0.07747 0.11387 +v 0.02357 0.08784 0.11386 +v 0.03943 0.07915 0.11389 +v 0.04033 0.07756 0.11322 +v 0.02378 0.08836 0.11393 +v 0.01276 0.09638 0.11466 +v 0.00953 0.10747 0.11503 +v 0.01457 0.09210 0.11437 +v 0.01723 0.09043 0.11446 +v 0.02064 0.09030 0.11450 +v 0.01581 0.12223 0.11624 +v 0.01476 0.12108 0.11535 +v 0.01019 0.11462 0.11546 +v 0.01310 0.12099 0.11559 +v 0.01055 0.12036 0.11552 +v 0.01041 0.11619 0.11534 +v 0.01258 0.12382 0.12007 +v 0.03486 0.07796 0.11310 +v 0.03311 0.07796 0.11320 +v 0.03658 0.07766 0.11313 +v 0.03176 0.07754 0.11328 +v 0.02419 0.07747 0.11404 +v 0.02102 0.07830 0.11408 +v 0.02017 0.08614 0.11404 +v 0.02699 0.07744 0.11405 +v 0.03863 0.07907 0.11376 +v 0.03963 0.07882 0.11366 +v 0.03869 0.07839 0.11341 +v 0.04241 0.07588 0.11298 +v 0.02219 0.08949 0.11430 +v 0.00941 0.11180 0.11541 +v 0.00958 0.10615 0.11492 +v 0.00974 0.09750 0.11503 +v 0.01065 0.09745 0.11491 +v 0.00963 0.09570 0.11476 +v 0.00922 0.10981 0.11524 +v 0.01059 0.09158 0.11441 +v 0.01254 0.09132 0.11437 +v 0.01399 0.12156 0.11565 +v 0.01432 0.12210 0.11602 +v 0.01396 0.12091 0.11541 +v 0.01188 0.12073 0.11561 +v 0.00913 0.11940 0.11536 +v 0.00910 0.11603 0.11523 +v 0.01302 0.12246 0.11681 +v 0.01217 0.12317 0.11855 +v 0.01324 0.12399 0.12063 +v 0.03020 0.07692 0.11348 +v 0.02584 0.07739 0.11412 +v 0.02228 0.07743 0.11395 +v 0.01974 0.07892 0.11417 +v 0.02167 0.07789 0.11408 +v 0.02286 0.08818 0.11393 +v 0.02190 0.08779 0.11396 +v 0.02727 0.07666 0.11382 +v 0.02645 0.07722 0.11404 +v 0.03906 0.07893 0.11365 +v 0.03908 0.07697 0.11310 +v 0.00715 0.10512 0.11494 +v 0.00731 0.09971 0.11509 +v 0.00802 0.09224 0.11455 +v 0.00716 0.10832 0.11509 +v 0.01449 0.09033 0.11421 +v 0.01961 0.08859 0.11418 +v 0.01237 0.12155 0.11590 +v 0.00947 0.12070 0.11545 +v 0.01109 0.12121 0.11580 +v 0.01180 0.12264 0.11712 +v 0.01087 0.12399 0.12022 +v 0.01157 0.12404 0.12101 +v 0.03568 0.07638 0.11296 +v 0.03352 0.07666 0.11299 +v 0.03122 0.07616 0.11317 +v 0.02544 0.07685 0.11393 +v 0.02213 0.07642 0.11349 +v 0.02002 0.07825 0.11416 +v 0.02151 0.07733 0.11385 +v 0.02257 0.08767 0.11389 +v 0.02077 0.08864 0.11416 +v 0.01653 0.08634 0.11405 +v 0.02884 0.07615 0.11356 +v 0.03911 0.07471 0.11300 +v 0.00888 0.11415 0.11521 +v 0.00804 0.11158 0.11525 +v 0.00727 0.09742 0.11500 +v 0.00901 0.08987 0.11413 +v 0.01560 0.08930 0.11412 +v 0.01726 0.08841 0.11416 +v 0.01322 0.12191 0.11607 +v 0.00733 0.11541 0.11518 +v 0.00880 0.12048 0.11537 +v 0.00998 0.12095 0.11559 +v 0.01030 0.12133 0.11585 +v 0.01178 0.12240 0.11679 +v 0.01157 0.12276 0.11751 +v 0.01103 0.12315 0.11854 +v 0.03203 0.07589 0.11295 +v 0.02996 0.07540 0.11335 +v 0.01959 0.07770 0.11400 +v 0.02025 0.07629 0.11349 +v 0.01535 0.08132 0.11400 +v 0.02743 0.07566 0.11349 +v 0.00467 0.09676 0.11508 +v 0.00558 0.09433 0.11491 +v 0.00732 0.09049 0.11425 +v 0.01041 0.09018 0.11413 +v 0.01243 0.08970 0.11403 +v 0.01362 0.08868 0.11396 +v 0.01186 0.12190 0.11619 +v 0.01247 0.12214 0.11639 +v 0.00736 0.11879 0.11534 +v 0.00741 0.11989 0.11536 +v 0.00915 0.12108 0.11545 +v 0.00949 0.12133 0.11569 +v 0.01101 0.12186 0.11627 +v 0.01012 0.12319 0.11889 +v 0.01079 0.12404 0.12052 +v 0.03485 0.07495 0.11296 +v 0.03321 0.07536 0.11292 +v 0.03184 0.07527 0.11302 +v 0.03124 0.07417 0.11308 +v 0.02324 0.07604 0.11337 +v 0.01801 0.07804 0.11402 +v 0.01636 0.07870 0.11400 +v 0.01326 0.08221 0.11401 +v 0.02608 0.07625 0.11361 +v 0.03002 0.07283 0.11299 +v 0.00537 0.11422 0.11522 +v 0.00901 0.08800 0.11403 +v 0.00591 0.11601 0.11523 +v 0.00810 0.12101 0.11541 +v 0.01001 0.12183 0.11624 +v 0.01104 0.12259 0.11724 +v 0.00970 0.12360 0.11998 +v 0.01031 0.12272 0.11771 +v 0.03597 0.07289 0.11313 +v 0.02514 0.07628 0.11358 +v 0.02217 0.07580 0.11327 +v 0.02095 0.07580 0.11336 +v 0.01877 0.07712 0.11384 +v 0.01472 0.07843 0.11383 +v 0.01341 0.08635 0.11395 +v 0.01326 0.07858 0.11390 +v 0.02759 0.07406 0.11326 +v 0.02600 0.07551 0.11339 +v 0.00468 0.08734 0.11412 +v 0.01077 0.08928 0.11398 +v 0.00455 0.11795 0.11555 +v 0.00575 0.12079 0.11559 +v 0.00876 0.12139 0.11558 +v 0.01011 0.12220 0.11675 +v 0.00881 0.12311 0.11904 +v 0.00848 0.12359 0.12078 +v 0.03324 0.07335 0.11305 +v 0.03208 0.07416 0.11303 +v 0.02486 0.07564 0.11334 +v 0.02234 0.07493 0.11325 +v 0.01920 0.07596 0.11349 +v 0.01586 0.07742 0.11377 +v 0.01767 0.07692 0.11373 +v 0.01023 0.08275 0.11406 +v 0.01132 0.07800 0.11402 +v 0.03150 0.07250 0.11301 +v 0.02551 0.07598 0.11343 +v 0.02655 0.07194 0.11322 +v 0.00507 0.11622 0.11530 +v 0.00548 0.08273 0.11416 +v 0.01149 0.08705 0.11393 +v 0.00506 0.12027 0.11563 +v 0.00737 0.12166 0.11566 +v 0.00809 0.12140 0.11552 +v 0.00887 0.12184 0.11607 +v 0.00939 0.12242 0.11715 +v 0.02372 0.07552 0.11328 +v 0.01941 0.07404 0.11336 +v 0.01406 0.07725 0.11365 +v 0.01032 0.07953 0.11408 +v 0.01206 0.07594 0.11360 +v 0.02458 0.07403 0.11326 +v 0.02668 0.06890 0.11324 +v 0.00178 0.11587 0.11541 +v 0.00398 0.12059 0.11578 +v 0.00180 0.11791 0.11574 +v 0.00578 0.12139 0.11574 +v 0.00471 0.12104 0.11579 +v 0.00775 0.12190 0.11586 +v 0.00855 0.12233 0.11687 +v 0.00749 0.12293 0.11858 +v 0.01648 0.07575 0.11346 +v 0.01454 0.07638 0.11357 +v 0.00769 0.07983 0.11424 +v 0.01034 0.07802 0.11400 +v 0.02296 0.07181 0.11337 +v 0.02773 0.06775 0.11313 +v 0.02413 0.06922 0.11345 +v 0.00026 0.11604 0.11544 +v 0.00223 0.11921 0.11576 +v 0.00577 0.12181 0.11603 +v 0.00730 0.12370 0.12169 +v 0.01443 0.07370 0.11339 +v 0.00847 0.07800 0.11409 +v 0.00917 0.07547 0.11362 +v 0.02661 0.06676 0.11315 +v 0.02524 0.06727 0.11341 +v 0.00587 0.07976 0.11435 +v 0.00378 0.08100 0.11414 +v 0.00374 0.12122 0.11597 +v 0.00303 0.12076 0.11586 +v -0.00031 0.12017 0.11576 +v 0.00449 0.12166 0.11612 +v 0.00704 0.12199 0.11594 +v 0.00436 0.12300 0.11897 +v 0.00709 0.12264 0.11741 +v 0.01878 0.07113 0.11342 +v 0.00754 0.07814 0.11422 +v 0.00845 0.07211 0.11333 +v 0.00817 0.07690 0.11388 +v 0.02197 0.06893 0.11350 +v 0.02809 0.06649 0.11301 +v 0.02421 0.06666 0.11359 +v -0.00261 0.11705 0.11560 +v 0.00063 0.11750 0.11573 +v 0.00459 0.07977 0.11423 +v 0.00668 0.07872 0.11437 +v 0.00277 0.08009 0.11402 +v 0.00187 0.12033 0.11580 +v -0.00082 0.11894 0.11574 +v 0.00444 0.12217 0.11670 +v 0.00592 0.12226 0.11668 +v 0.00560 0.12353 0.12100 +v 0.01962 0.06955 0.11350 +v 0.01642 0.06985 0.11332 +v 0.00796 0.07781 0.11415 +v 0.00678 0.07580 0.11368 +v 0.00767 0.07731 0.11402 +v 0.02286 0.06800 0.11354 +v 0.02696 0.06568 0.11295 +v 0.02554 0.06604 0.11321 +v 0.02347 0.06716 0.11352 +v 0.02467 0.06674 0.11354 +v -0.00073 0.11774 0.11570 +v 0.00487 0.07926 0.11434 +v 0.00632 0.07825 0.11436 +v 0.00280 0.12149 0.11611 +v 0.00338 0.12196 0.11650 +v 0.00218 0.12120 0.11596 +v -0.00134 0.12054 0.11583 +v 0.00046 0.12085 0.11582 +v 0.00656 0.12365 0.12224 +v 0.00386 0.12341 0.12072 +v 0.00488 0.12252 0.11745 +v 0.01947 0.06894 0.11346 +v 0.01148 0.07070 0.11328 +v 0.00684 0.07796 0.11426 +v 0.00411 0.07427 0.11349 +v 0.02268 0.06731 0.11350 +v 0.02754 0.06421 0.11265 +v 0.02480 0.06628 0.11340 +v 0.02342 0.06624 0.11333 +v -0.00507 0.11675 0.11557 +v -0.00390 0.11837 0.11568 +v 0.00495 0.07891 0.11429 +v 0.00421 0.07845 0.11402 +v 0.00286 0.07722 0.11368 +v -0.00053 0.12117 0.11594 +v -0.00262 0.12003 0.11575 +v 0.00376 0.12222 0.11681 +v 0.00496 0.12370 0.12214 +v 0.00241 0.12328 0.11991 +v 0.00347 0.12246 0.11734 +v 0.01749 0.06866 0.11327 +v 0.01235 0.06959 0.11324 +v 0.00910 0.06939 0.11309 +v 0.00521 0.07621 0.11371 +v 0.00622 0.07679 0.11383 +v 0.02139 0.06783 0.11342 +v 0.02574 0.06504 0.11299 +v 0.02462 0.06539 0.11311 +v 0.00576 0.07735 0.11398 +v 0.00193 0.12176 0.11620 +v -0.00155 0.12165 0.11620 +v -0.00265 0.12148 0.11595 +v 0.00020 0.12140 0.11597 +v 0.00371 0.12361 0.12370 +v 0.00274 0.12294 0.11856 +v 0.00190 0.12344 0.12148 +v 0.01826 0.06698 0.11303 +v 0.01548 0.06779 0.11313 +v 0.02153 0.06676 0.11323 +v 0.02364 0.06582 0.11319 +v -0.00672 0.11749 0.11567 +v 0.00467 0.07762 0.11392 +v 0.00196 0.12229 0.11687 +v -0.00063 0.12192 0.11634 +v -0.00305 0.12080 0.11580 +v -0.00496 0.11956 0.11568 +v 0.00175 0.12357 0.12278 +v 0.00223 0.12275 0.11785 +v 0.02013 0.06680 0.11313 +v 0.01722 0.06656 0.11291 +v 0.01289 0.06726 0.11298 +v 0.02458 0.06466 0.11298 +v 0.02293 0.06569 0.11304 +v 0.02371 0.06503 0.11300 +v -0.00861 0.11547 0.11553 +v 0.00065 0.12216 0.11654 +v -0.00067 0.12227 0.11665 +v -0.00176 0.12226 0.11670 +v -0.00443 0.12073 0.11580 +v -0.00446 0.12137 0.11601 +v 0.00017 0.12210 0.11652 +v 0.00091 0.12367 0.12404 +v 0.00103 0.12351 0.12187 +v 0.00035 0.12331 0.11887 +v 0.01886 0.06609 0.11296 +v 0.01801 0.06556 0.11292 +v 0.01686 0.06603 0.11290 +v 0.01506 0.06606 0.11297 +v 0.02123 0.06598 0.11305 +v 0.02560 0.06360 0.11288 +v 0.02217 0.06551 0.11297 +v -0.00552 0.12063 0.11565 +v -0.00958 0.11745 0.11567 +v 0.00070 0.12264 0.11732 +v -0.00316 0.12186 0.11625 +v 0.00052 0.12368 0.12282 +v 0.01999 0.06564 0.11301 +v 0.02349 0.06346 0.11301 +v 0.02217 0.06503 0.11290 +v -0.00741 0.12040 0.11563 +v -0.01066 0.11519 0.11545 +v -0.00931 0.11988 0.11570 +v -0.00171 0.12292 0.11767 +v -0.00355 0.12231 0.11674 +v -0.00508 0.12119 0.11585 +v -0.00498 0.12181 0.11633 +v -0.00086 0.12392 0.12342 +v -0.00090 0.12380 0.12109 +v 0.01609 0.06521 0.11295 +v 0.02154 0.06461 0.11299 +v -0.00662 0.12094 0.11569 +v -0.01185 0.11341 0.11554 +v -0.01137 0.11833 0.11581 +v -0.01104 0.11691 0.11570 +v -0.00569 0.12106 0.11566 +v -0.00176 0.12389 0.12429 +v -0.00085 0.12361 0.11972 +v 0.01955 0.06401 0.11308 +v -0.00819 0.12104 0.11569 +v -0.00606 0.12121 0.11570 +v -0.01254 0.11476 0.11553 +v -0.01065 0.11979 0.11578 +v -0.01251 0.11538 0.11561 +v -0.00351 0.12259 0.11717 +v -0.00528 0.12223 0.11683 +v -0.00570 0.12147 0.11587 +v -0.00553 0.12125 0.11573 +v -0.00173 0.12383 0.12090 +v -0.00202 0.12394 0.12352 +v -0.00280 0.12349 0.11951 +v 0.02074 0.06026 0.11343 +v -0.00898 0.12114 0.11580 +v -0.00784 0.12143 0.11582 +v -0.00658 0.12152 0.11595 +v -0.01410 0.11289 0.11550 +v -0.01357 0.11677 0.11602 +v -0.01199 0.12033 0.11582 +v -0.00982 0.12051 0.11578 +v -0.00458 0.12297 0.11823 +v -0.00353 0.12388 0.12417 +v -0.01488 0.11428 0.11557 +v -0.01477 0.11532 0.11574 +v -0.01276 0.11941 0.11588 +v -0.01067 0.12089 0.11590 +v -0.00620 0.12262 0.11763 +v -0.00654 0.12206 0.11655 +v -0.00361 0.12373 0.12166 +v -0.00476 0.12356 0.12072 +v -0.00664 0.12302 0.11899 +v -0.00987 0.12130 0.11595 +v -0.00882 0.12191 0.11604 +v -0.00857 0.12205 0.11621 +v -0.01426 0.11956 0.11591 +v -0.01193 0.12098 0.11594 +v -0.01361 0.12053 0.11598 +v -0.01504 0.11617 0.11592 +v -0.00468 0.12387 0.12318 +v -0.00637 0.12351 0.12100 +v -0.01731 0.11562 0.11582 +v -0.01306 0.12125 0.11606 +v -0.01055 0.12157 0.11615 +v -0.01633 0.11639 0.11599 +v -0.01535 0.11718 0.11598 +v -0.00724 0.12240 0.11706 +v -0.00767 0.12273 0.11796 +v -0.00528 0.12374 0.12175 +v -0.00523 0.12391 0.12556 +v -0.00795 0.12309 0.11978 +v -0.00978 0.12183 0.11622 +v -0.00942 0.12223 0.11663 +v -0.01472 0.12054 0.11598 +v -0.01264 0.12153 0.11621 +v -0.01344 0.12135 0.11622 +v -0.00831 0.12292 0.11883 +v -0.00621 0.12391 0.12245 +v -0.00814 0.12374 0.12246 +v -0.00985 0.12254 0.11722 +v -0.01440 0.12132 0.11630 +v -0.01032 0.12207 0.11653 +v -0.00979 0.12282 0.11802 +v -0.00665 0.12386 0.12559 +v -0.00717 0.12377 0.12232 +v -0.00994 0.12328 0.12035 +v -0.01020 0.12369 0.12213 +v -0.01515 0.12113 0.11613 +v -0.01195 0.12210 0.11663 +v -0.01403 0.12183 0.11670 +v -0.01093 0.12313 0.11908 +v -0.00810 0.12377 0.12581 +v -0.00766 0.12382 0.12328 +v -0.01024 0.12374 0.12266 +v -0.01085 0.12241 0.11695 +v -0.01439 0.12168 0.11653 +v -0.01124 0.12281 0.11770 +v -0.00782 0.12385 0.12735 +v -0.01115 0.12349 0.12095 +v -0.01475 0.12184 0.11674 +v -0.01446 0.12227 0.11745 +v -0.01151 0.12259 0.11720 +v -0.01246 0.12287 0.11807 +v -0.00957 0.12375 0.12526 +v -0.01231 0.12356 0.12052 +v -0.01193 0.12359 0.12223 +v -0.01265 0.12347 0.12010 +v -0.01139 0.12382 0.12783 +v -0.01215 0.12357 0.12364 +v -0.01550 0.12218 0.11719 +v -0.01350 0.12324 0.11974 +v -0.00942 0.12383 0.12950 +v -0.01300 0.12361 0.12236 +v -0.01440 0.12260 0.11822 +v -0.01564 0.12272 0.11856 +v -0.01369 0.12350 0.12128 +v -0.01139 0.12375 0.13096 +v -0.01430 0.12370 0.12671 +v -0.01483 0.12312 0.11994 +v -0.01081 0.12375 0.13336 +v -0.01360 0.12377 0.12963 +v -0.01475 0.12371 0.12306 +v -0.01517 0.12353 0.12188 +v -0.01274 0.12360 0.13195 +v -0.01549 0.12380 0.13012 +v -0.01673 0.12379 0.12372 +v -0.01624 0.12322 0.12037 +v -0.01507 0.12358 0.13463 +v -0.01737 0.12378 0.12274 +v -0.01806 0.12321 0.12024 +v -0.01715 0.12368 0.12206 +v -0.01172 0.12391 0.13665 +v -0.01567 0.12358 0.13269 +v -0.01890 0.12367 0.12321 +v -0.00475 0.12398 0.13658 +v -0.01652 0.12396 0.13965 +v -0.01766 0.12331 0.13412 +v -0.01688 0.12368 0.13113 +v -0.01886 0.12359 0.12250 +v -0.01728 0.12351 0.13631 +v -0.01770 0.12340 0.13255 +v -0.01857 0.12358 0.13080 +v -0.02019 0.12345 0.13663 +v -0.01842 0.12312 0.13326 +v -0.01846 0.12350 0.13150 +v -0.02001 0.12399 0.14133 +v -0.01890 0.12310 0.13276 +v -0.01925 0.12305 0.13369 +v -0.01960 0.12347 0.13105 +v -0.02283 0.12380 0.14021 +v -0.01916 0.12436 0.14441 +v -0.02070 0.12311 0.13353 +v -0.01972 0.12315 0.13237 +v -0.02136 0.12414 0.14387 +v -0.02531 0.12358 0.13648 +v -0.01952 0.12296 0.13296 +v -0.02272 0.12328 0.13436 +v -0.02119 0.12331 0.13201 +v -0.02346 0.12397 0.14301 +v -0.02670 0.12393 0.14154 +v -0.02268 0.12327 0.13293 +v -0.02080 0.12348 0.13074 +v -0.02460 0.12346 0.13386 +v -0.03121 0.12375 0.13694 +v -0.02219 0.12357 0.13106 +v -0.02636 0.12365 0.13363 +v -0.02923 0.12362 0.13376 +v -0.02307 0.12348 0.13224 +v -0.02545 0.12370 0.13287 +v -0.02245 0.12362 0.13009 +v -0.02331 0.12375 0.13136 +v -0.02772 0.12368 0.13275 +v -0.02644 0.12400 0.13180 +v -0.02394 0.12392 0.13130 +v -0.02581 0.12393 0.13188 +v -0.02653 0.12398 0.13136 +v 0.04013 0.12253 0.18911 +v 0.03927 0.12232 0.18781 +v 0.03829 0.12224 0.18928 +v 0.04069 0.12250 0.18745 +v 0.03740 0.12194 0.18843 +v 0.03921 0.12260 0.19055 +v 0.04055 0.12252 0.18600 +v 0.04173 0.12256 0.18881 +v 0.03622 0.12182 0.18963 +v 0.03800 0.12198 0.18727 +v 0.03758 0.12231 0.19106 +v 0.04083 0.12273 0.19055 +v 0.03915 0.12227 0.18614 +v 0.04201 0.12249 0.18673 +v 0.03587 0.12160 0.18796 +v 0.03700 0.12159 0.18665 +v 0.03870 0.12266 0.19150 +v 0.03972 0.12285 0.19187 +v 0.03985 0.12234 0.18467 +v 0.04328 0.12237 0.18526 +v 0.04301 0.12243 0.18763 +v 0.04244 0.12279 0.19141 +v 0.03516 0.12197 0.19381 +v 0.03439 0.12153 0.18875 +v 0.03872 0.12205 0.18494 +v 0.03767 0.12167 0.18557 +v 0.03821 0.12264 0.19287 +v 0.04052 0.12298 0.19270 +v 0.04082 0.12242 0.18444 +v 0.04389 0.12233 0.18680 +v 0.04355 0.12247 0.18893 +v 0.04397 0.12274 0.19134 +v 0.03439 0.12165 0.19173 +v 0.03463 0.12149 0.18734 +v 0.03626 0.12150 0.18701 +v 0.03649 0.12113 0.18491 +v 0.03963 0.12294 0.19313 +v 0.03904 0.12210 0.18322 +v 0.04037 0.12234 0.18305 +v 0.04167 0.12235 0.18370 +v 0.04496 0.12234 0.18594 +v 0.04484 0.12225 0.18844 +v 0.04297 0.12280 0.19301 +v 0.03758 0.12246 0.19538 +v 0.03291 0.12162 0.19173 +v 0.03595 0.12141 0.18647 +v 0.03277 0.12139 0.18741 +v 0.03261 0.12153 0.18942 +v 0.03751 0.12143 0.18400 +v 0.03691 0.12115 0.18444 +v 0.04014 0.12303 0.19334 +v 0.04350 0.12224 0.18405 +v 0.04461 0.12236 0.18472 +v 0.04588 0.12215 0.18716 +v 0.04590 0.12250 0.19034 +v 0.04585 0.12203 0.18796 +v 0.04043 0.12293 0.19388 +v 0.04503 0.12256 0.19341 +v 0.03594 0.12227 0.19755 +v 0.03276 0.12170 0.19356 +v 0.03402 0.12143 0.18592 +v 0.03370 0.12143 0.18656 +v 0.03554 0.12114 0.18491 +v 0.03594 0.12105 0.18406 +v 0.04161 0.12226 0.18252 +v 0.04393 0.12204 0.18287 +v 0.04510 0.12243 0.18475 +v 0.04796 0.12225 0.18641 +v 0.04696 0.12240 0.19172 +v 0.04599 0.12233 0.18938 +v 0.04256 0.12272 0.19482 +v 0.03999 0.12272 0.19559 +v 0.03245 0.12185 0.19592 +v 0.03886 0.12256 0.19750 +v 0.03073 0.12177 0.19305 +v 0.03048 0.12176 0.19026 +v 0.03270 0.12112 0.18572 +v 0.04068 0.12235 0.18143 +v 0.04605 0.12236 0.18419 +v 0.04663 0.12239 0.18537 +v 0.04675 0.12210 0.18805 +v 0.04823 0.12227 0.19041 +v 0.04762 0.12217 0.18891 +v 0.04581 0.12234 0.19705 +v 0.04802 0.12204 0.19407 +v 0.03355 0.12216 0.19882 +v 0.03802 0.12252 0.19900 +v 0.03325 0.12130 0.18581 +v 0.03478 0.12118 0.18490 +v 0.03512 0.12096 0.18388 +v 0.04225 0.12214 0.18129 +v 0.04869 0.12228 0.18498 +v 0.05002 0.12227 0.18637 +v 0.04949 0.12212 0.19222 +v 0.04193 0.12262 0.19755 +v 0.03121 0.12201 0.19859 +v 0.03531 0.12249 0.19992 +v 0.04000 0.12276 0.19961 +v 0.03701 0.12259 0.19986 +v 0.02975 0.12184 0.19544 +v 0.02854 0.12207 0.19158 +v 0.03397 0.12099 0.18446 +v 0.04357 0.12200 0.18091 +v 0.04646 0.12212 0.18221 +v 0.05028 0.12225 0.18978 +v 0.04905 0.12173 0.19583 +v 0.04373 0.12255 0.19835 +v 0.04970 0.12166 0.19453 +v 0.03256 0.12230 0.19998 +v 0.03071 0.12182 0.19681 +v 0.03382 0.12257 0.20070 +v 0.03841 0.12269 0.20015 +v 0.04720 0.12204 0.18015 +v 0.04237 0.12216 0.18005 +v 0.04839 0.12213 0.18259 +v 0.04982 0.12216 0.18434 +v 0.05149 0.12236 0.18708 +v 0.05207 0.12234 0.19188 +v 0.04939 0.12198 0.19783 +v 0.04449 0.12263 0.19902 +v 0.04267 0.12283 0.19961 +v 0.05092 0.12181 0.19394 +v 0.03153 0.12241 0.20034 +v 0.02937 0.12187 0.19746 +v 0.03510 0.12293 0.20118 +v 0.03646 0.12296 0.20103 +v 0.03907 0.12293 0.20080 +v 0.03794 0.12303 0.20112 +v 0.02719 0.12212 0.19635 +v 0.04566 0.12206 0.17857 +v 0.04367 0.12208 0.17915 +v 0.05116 0.12207 0.18254 +v 0.05209 0.12244 0.18937 +v 0.04771 0.12247 0.19954 +v 0.05047 0.12163 0.19625 +v 0.05039 0.12155 0.19518 +v 0.04587 0.12272 0.19961 +v 0.04123 0.12323 0.20070 +v 0.02988 0.12238 0.20038 +v 0.03261 0.12278 0.20112 +v 0.02920 0.12198 0.19922 +v 0.03414 0.12297 0.20144 +v 0.03993 0.12318 0.20107 +v 0.04791 0.12205 0.17746 +v 0.04375 0.12225 0.17765 +v 0.05464 0.12288 0.19078 +v 0.05619 0.12288 0.18635 +v 0.05241 0.12213 0.19406 +v 0.04957 0.12245 0.19992 +v 0.05187 0.12196 0.19700 +v 0.04434 0.12308 0.20029 +v 0.05133 0.12168 0.19538 +v 0.04249 0.12330 0.20067 +v 0.03127 0.12303 0.20134 +v 0.03353 0.12292 0.20142 +v 0.02781 0.12197 0.19880 +v 0.03380 0.12273 0.20124 +v 0.03486 0.12344 0.20178 +v 0.03606 0.12366 0.20186 +v 0.03725 0.12356 0.20183 +v 0.03903 0.12339 0.20165 +v 0.05030 0.12212 0.17915 +v 0.04565 0.12212 0.17611 +v 0.04191 0.12256 0.17801 +v 0.05364 0.12240 0.18350 +v 0.05170 0.12179 0.19484 +v 0.05406 0.12264 0.19343 +v 0.04854 0.12266 0.20054 +v 0.05097 0.12220 0.19893 +v 0.04739 0.12294 0.20089 +v 0.04323 0.12314 0.20045 +v 0.04591 0.12335 0.20092 +v 0.04047 0.12381 0.20162 +v 0.04192 0.12402 0.20141 +v 0.02987 0.12336 0.20179 +v 0.02790 0.12213 0.20048 +v 0.03244 0.12366 0.20192 +v 0.03309 0.12320 0.20168 +v 0.03384 0.12371 0.20197 +v 0.03818 0.12361 0.20194 +v 0.03975 0.12352 0.20168 +v 0.02521 0.12243 0.19891 +v 0.04931 0.12203 0.17698 +v 0.04750 0.12192 0.17414 +v 0.04349 0.12242 0.17586 +v 0.05232 0.12217 0.18134 +v 0.05687 0.12306 0.19089 +v 0.05575 0.12250 0.18283 +v 0.05290 0.12217 0.19586 +v 0.05562 0.12295 0.19220 +v 0.04881 0.12288 0.20101 +v 0.05114 0.12274 0.20033 +v 0.05278 0.12249 0.19937 +v 0.04347 0.12375 0.20109 +v 0.04480 0.12375 0.20115 +v 0.02874 0.12274 0.20151 +v 0.03112 0.12401 0.20209 +v 0.02677 0.12201 0.19984 +v 0.03521 0.12424 0.20222 +v 0.03694 0.12406 0.20219 +v 0.03781 0.12437 0.20242 +v 0.03870 0.12398 0.20222 +v 0.03958 0.12404 0.20210 +v 0.05285 0.12214 0.17839 +v 0.04731 0.12183 0.17007 +v 0.04176 0.12292 0.17580 +v 0.05962 0.12312 0.18877 +v 0.05891 0.12274 0.18419 +v 0.05483 0.12230 0.18004 +v 0.05468 0.12269 0.19508 +v 0.05001 0.12300 0.20096 +v 0.04740 0.12328 0.20142 +v 0.05368 0.12227 0.19757 +v 0.04601 0.12435 0.20180 +v 0.04091 0.12479 0.20209 +v 0.04304 0.12489 0.20190 +v 0.02752 0.12256 0.20164 +v 0.03308 0.12483 0.20251 +v 0.02686 0.12201 0.20049 +v 0.03657 0.12475 0.20248 +v 0.03472 0.12561 0.20285 +v 0.02615 0.12215 0.20034 +v 0.04460 0.12225 0.17437 +v 0.05000 0.12176 0.17341 +v 0.05367 0.12196 0.17503 +v 0.04903 0.12174 0.17049 +v 0.04314 0.12261 0.17431 +v 0.05972 0.12332 0.19326 +v 0.06259 0.12350 0.19314 +v 0.05658 0.12230 0.18068 +v 0.05417 0.12245 0.19622 +v 0.05780 0.12308 0.19500 +v 0.04790 0.12333 0.20153 +v 0.04831 0.12351 0.20177 +v 0.05220 0.12304 0.20062 +v 0.05128 0.12331 0.20107 +v 0.05463 0.12239 0.19904 +v 0.04449 0.12456 0.20176 +v 0.04199 0.12543 0.20222 +v 0.02671 0.12224 0.20106 +v 0.02809 0.12327 0.20221 +v 0.03553 0.12516 0.20262 +v 0.03889 0.12466 0.20260 +v 0.02537 0.12271 0.20109 +v 0.05197 0.12170 0.17268 +v 0.05551 0.12211 0.17579 +v 0.04825 0.12163 0.16814 +v 0.04470 0.12225 0.17246 +v 0.04135 0.12322 0.17432 +v 0.06411 0.12287 0.18449 +v 0.06417 0.12335 0.19044 +v 0.05758 0.12234 0.18019 +v 0.05668 0.12233 0.17820 +v 0.05722 0.12275 0.19792 +v 0.05016 0.12372 0.20158 +v 0.05330 0.12329 0.20092 +v 0.04756 0.12410 0.20197 +v 0.05423 0.12277 0.20033 +v 0.05534 0.12249 0.19742 +v 0.04557 0.12521 0.20229 +v 0.03982 0.12487 0.20248 +v 0.04086 0.12572 0.20262 +v 0.04428 0.12560 0.20255 +v 0.04311 0.12599 0.20260 +v 0.02654 0.12264 0.20175 +v 0.02708 0.12301 0.20218 +v 0.03632 0.12554 0.20278 +v 0.03576 0.12590 0.20306 +v 0.03400 0.12545 0.20280 +v 0.03751 0.12519 0.20279 +v 0.03827 0.12522 0.20295 +v 0.02373 0.12307 0.20044 +v 0.05468 0.12199 0.17384 +v 0.05356 0.12178 0.17161 +v 0.05005 0.12175 0.16941 +v 0.04640 0.12181 0.16834 +v 0.04592 0.12204 0.17008 +v 0.04171 0.12316 0.17322 +v 0.04007 0.12360 0.17621 +v 0.06245 0.12352 0.19434 +v 0.06073 0.12345 0.19658 +v 0.06140 0.12273 0.18294 +v 0.06565 0.12315 0.18717 +v 0.06630 0.12335 0.19182 +v 0.05968 0.12256 0.18130 +v 0.05886 0.12310 0.19735 +v 0.05000 0.12488 0.20222 +v 0.05219 0.12374 0.20134 +v 0.05118 0.12399 0.20158 +v 0.04708 0.12479 0.20221 +v 0.05552 0.12256 0.20018 +v 0.05603 0.12243 0.19914 +v 0.04685 0.12525 0.20244 +v 0.04022 0.12542 0.20260 +v 0.04178 0.12614 0.20266 +v 0.04240 0.12617 0.20259 +v 0.02713 0.12375 0.20252 +v 0.03703 0.12567 0.20290 +v 0.03479 0.12599 0.20311 +v 0.03441 0.12579 0.20295 +v 0.03315 0.12563 0.20297 +v 0.03924 0.12545 0.20317 +v 0.02418 0.12323 0.20134 +v 0.05642 0.12221 0.17406 +v 0.05096 0.12186 0.16909 +v 0.04998 0.12179 0.16767 +v 0.04698 0.12148 0.16684 +v 0.04314 0.12280 0.17116 +v 0.04143 0.12324 0.17270 +v 0.03951 0.12374 0.17585 +v 0.05744 0.12227 0.17485 +v 0.06522 0.12345 0.19395 +v 0.06380 0.12268 0.18170 +v 0.06626 0.12287 0.18443 +v 0.06775 0.12336 0.18939 +v 0.06082 0.12263 0.18048 +v 0.05825 0.12246 0.17875 +v 0.05863 0.12300 0.19839 +v 0.04858 0.12472 0.20226 +v 0.05413 0.12322 0.20106 +v 0.05285 0.12414 0.20164 +v 0.05493 0.12333 0.20118 +v 0.04558 0.12573 0.20276 +v 0.04612 0.12562 0.20262 +v 0.04016 0.12586 0.20303 +v 0.04090 0.12611 0.20304 +v 0.04366 0.12629 0.20306 +v 0.04244 0.12637 0.20280 +v 0.02608 0.12334 0.20217 +v 0.03660 0.12599 0.20301 +v 0.03454 0.12619 0.20342 +v 0.03405 0.12596 0.20318 +v 0.03216 0.12535 0.20265 +v 0.03772 0.12571 0.20319 +v 0.03842 0.12570 0.20348 +v 0.02471 0.12357 0.20189 +v 0.02313 0.12398 0.20154 +v 0.05552 0.12216 0.17296 +v 0.05163 0.12202 0.16857 +v 0.04903 0.12157 0.16609 +v 0.04581 0.12158 0.16598 +v 0.04787 0.12132 0.16614 +v 0.04267 0.12296 0.16977 +v 0.06023 0.12274 0.17762 +v 0.06378 0.12374 0.19683 +v 0.05980 0.12330 0.19868 +v 0.06237 0.12270 0.18132 +v 0.06723 0.12242 0.18126 +v 0.06773 0.12318 0.18607 +v 0.06721 0.12329 0.19306 +v 0.06893 0.12337 0.19167 +v 0.05698 0.12270 0.19995 +v 0.05849 0.12302 0.19948 +v 0.04911 0.12552 0.20271 +v 0.05135 0.12578 0.20263 +v 0.05391 0.12395 0.20162 +v 0.04801 0.12538 0.20261 +v 0.05622 0.12240 0.19998 +v 0.05621 0.12294 0.20079 +v 0.04502 0.12591 0.20315 +v 0.04654 0.12581 0.20291 +v 0.04191 0.12637 0.20301 +v 0.04405 0.12613 0.20333 +v 0.02642 0.12403 0.20256 +v 0.03642 0.12614 0.20322 +v 0.03698 0.12605 0.20307 +v 0.03636 0.12620 0.20369 +v 0.03327 0.12612 0.20361 +v 0.03232 0.12592 0.20318 +v 0.03728 0.12601 0.20323 +v 0.03923 0.12588 0.20424 +v 0.05903 0.12257 0.17372 +v 0.05681 0.12248 0.17265 +v 0.05452 0.12213 0.17067 +v 0.05093 0.12205 0.16664 +v 0.04475 0.12182 0.16593 +v 0.04672 0.12140 0.16525 +v 0.04366 0.12245 0.16786 +v 0.04136 0.12314 0.17047 +v 0.03967 0.12348 0.17315 +v 0.06041 0.12270 0.17459 +v 0.06220 0.12374 0.19800 +v 0.06675 0.12362 0.19594 +v 0.06118 0.12363 0.19856 +v 0.06198 0.12273 0.17885 +v 0.06618 0.12244 0.18036 +v 0.06788 0.12255 0.18218 +v 0.06937 0.12278 0.18288 +v 0.06934 0.12345 0.18784 +v 0.06723 0.12334 0.19429 +v 0.06901 0.12345 0.19026 +v 0.05025 0.12543 0.20253 +v 0.04741 0.12575 0.20297 +v 0.05625 0.12252 0.20031 +v 0.05629 0.12342 0.20129 +v 0.04607 0.12584 0.20285 +v 0.04604 0.12593 0.20321 +v 0.03981 0.12586 0.20352 +v 0.04144 0.12629 0.20350 +v 0.04343 0.12640 0.20328 +v 0.02547 0.12429 0.20244 +v 0.02690 0.12426 0.20266 +v 0.03690 0.12616 0.20331 +v 0.03400 0.12626 0.20387 +v 0.03570 0.12629 0.20427 +v 0.03180 0.12579 0.20269 +v 0.03764 0.12605 0.20387 +v 0.02372 0.12479 0.20231 +v 0.05823 0.12263 0.17294 +v 0.05458 0.12258 0.16815 +v 0.05045 0.12215 0.16465 +v 0.04830 0.12134 0.16508 +v 0.04421 0.12175 0.16395 +v 0.04769 0.12126 0.16503 +v 0.04255 0.12289 0.16888 +v 0.06148 0.12285 0.17719 +v 0.06404 0.12413 0.19900 +v 0.06582 0.12405 0.19810 +v 0.06094 0.12375 0.20001 +v 0.06476 0.12256 0.17828 +v 0.06776 0.12233 0.17972 +v 0.06910 0.12256 0.18176 +v 0.06921 0.12319 0.18505 +v 0.06954 0.12348 0.18653 +v 0.07031 0.12367 0.18983 +v 0.06837 0.12329 0.19349 +v 0.05799 0.12317 0.20063 +v 0.05965 0.12337 0.20006 +v 0.04983 0.12584 0.20302 +v 0.04839 0.12582 0.20311 +v 0.05066 0.12591 0.20306 +v 0.05471 0.12441 0.20209 +v 0.05541 0.12383 0.20168 +v 0.05744 0.12322 0.20092 +v 0.04553 0.12594 0.20388 +v 0.04464 0.12603 0.20382 +v 0.04683 0.12592 0.20338 +v 0.04240 0.12641 0.20334 +v 0.04339 0.12632 0.20362 +v 0.02657 0.12472 0.20265 +v 0.03224 0.12616 0.20397 +v 0.03337 0.12628 0.20441 +v 0.03159 0.12558 0.20252 +v 0.03166 0.12599 0.20296 +v 0.04037 0.12601 0.20403 +v 0.02200 0.12465 0.20184 +v 0.05965 0.12271 0.17255 +v 0.05757 0.12273 0.17129 +v 0.05575 0.12254 0.16960 +v 0.05241 0.12246 0.16675 +v 0.05428 0.12298 0.16558 +v 0.04905 0.12168 0.16440 +v 0.05237 0.12261 0.16534 +v 0.04383 0.12192 0.16539 +v 0.04308 0.12223 0.16646 +v 0.04632 0.12157 0.16384 +v 0.04782 0.12149 0.16414 +v 0.04199 0.12267 0.16781 +v 0.04126 0.12300 0.16902 +v 0.04040 0.12301 0.16918 +v 0.06210 0.12281 0.17483 +v 0.06220 0.12390 0.19924 +v 0.06807 0.12360 0.19577 +v 0.06730 0.12416 0.19817 +v 0.06343 0.12277 0.17620 +v 0.06656 0.12245 0.17839 +v 0.06875 0.12233 0.18046 +v 0.07016 0.12316 0.18428 +v 0.07078 0.12383 0.18651 +v 0.06982 0.12342 0.19349 +v 0.07095 0.12359 0.19146 +v 0.05889 0.12327 0.20046 +v 0.04922 0.12593 0.20329 +v 0.05133 0.12590 0.20283 +v 0.05376 0.12532 0.20274 +v 0.04767 0.12591 0.20360 +v 0.05584 0.12422 0.20198 +v 0.05806 0.12363 0.20128 +v 0.04390 0.12610 0.20421 +v 0.04648 0.12595 0.20314 +v 0.04080 0.12595 0.20492 +v 0.02462 0.12503 0.20258 +v 0.02577 0.12523 0.20267 +v 0.02703 0.12568 0.20269 +v 0.03155 0.12578 0.20251 +v 0.03153 0.12588 0.20262 +v 0.03987 0.12588 0.20574 +v 0.02362 0.12560 0.20287 +v 0.06068 0.12273 0.17246 +v 0.05616 0.12281 0.16750 +v 0.04990 0.12238 0.16263 +v 0.05201 0.12298 0.16269 +v 0.04255 0.12197 0.16499 +v 0.04543 0.12170 0.16280 +v 0.06247 0.12427 0.20052 +v 0.06015 0.12362 0.20057 +v 0.06401 0.12277 0.17596 +v 0.06767 0.12256 0.17778 +v 0.06884 0.12241 0.17935 +v 0.06576 0.12267 0.17659 +v 0.07000 0.12275 0.18195 +v 0.06938 0.12241 0.18080 +v 0.07047 0.12347 0.18520 +v 0.07009 0.12297 0.18331 +v 0.07139 0.12407 0.18773 +v 0.07052 0.12344 0.19243 +v 0.07186 0.12379 0.19166 +v 0.05905 0.12353 0.20094 +v 0.04996 0.12599 0.20364 +v 0.04874 0.12596 0.20369 +v 0.05183 0.12593 0.20300 +v 0.05137 0.12602 0.20327 +v 0.05439 0.12508 0.20265 +v 0.05700 0.12504 0.20262 +v 0.05901 0.12416 0.20169 +v 0.04514 0.12589 0.20464 +v 0.04191 0.12589 0.20567 +v 0.04303 0.12595 0.20524 +v 0.03622 0.12619 0.20561 +v 0.03182 0.12618 0.20451 +v 0.03123 0.12606 0.20330 +v 0.03132 0.12571 0.20255 +v 0.03132 0.12592 0.20278 +v 0.02224 0.12566 0.20283 +v 0.06058 0.12274 0.17019 +v 0.05667 0.12268 0.16890 +v 0.05693 0.12304 0.16599 +v 0.04867 0.12172 0.16374 +v 0.05385 0.12310 0.16394 +v 0.04189 0.12182 0.16355 +v 0.04167 0.12228 0.16632 +v 0.04721 0.12178 0.16291 +v 0.04355 0.12170 0.16247 +v 0.06425 0.12296 0.17335 +v 0.06752 0.12492 0.20133 +v 0.06422 0.12447 0.20027 +v 0.06890 0.12389 0.19633 +v 0.06039 0.12403 0.20115 +v 0.06165 0.12425 0.20103 +v 0.06941 0.12242 0.18013 +v 0.07012 0.12275 0.18080 +v 0.07065 0.12313 0.18383 +v 0.07124 0.12349 0.18426 +v 0.07151 0.12399 0.18555 +v 0.07225 0.12426 0.18979 +v 0.07208 0.12438 0.18675 +v 0.07027 0.12398 0.19558 +v 0.07088 0.12354 0.19348 +v 0.07167 0.12371 0.19243 +v 0.05129 0.12603 0.20368 +v 0.04924 0.12602 0.20376 +v 0.05575 0.12492 0.20265 +v 0.05357 0.12555 0.20303 +v 0.04887 0.12576 0.20485 +v 0.04267 0.12575 0.20685 +v 0.02506 0.12575 0.20297 +v 0.02597 0.12574 0.20282 +v 0.03232 0.12610 0.20627 +v 0.04003 0.12575 0.20735 +v 0.02392 0.12603 0.20343 +v 0.02118 0.12507 0.20210 +v 0.06236 0.12287 0.17216 +v 0.05793 0.12274 0.16820 +v 0.05565 0.12325 0.16374 +v 0.05109 0.12312 0.16111 +v 0.04820 0.12215 0.16176 +v 0.05433 0.12343 0.16202 +v 0.04000 0.12201 0.16529 +v 0.04058 0.12244 0.16702 +v 0.04650 0.12189 0.16206 +v 0.04512 0.12167 0.16104 +v 0.06533 0.12476 0.20098 +v 0.06880 0.12444 0.19856 +v 0.06305 0.12483 0.20142 +v 0.06562 0.12295 0.17498 +v 0.06929 0.12273 0.17820 +v 0.06979 0.12272 0.17920 +v 0.07096 0.12320 0.18227 +v 0.07102 0.12318 0.18343 +v 0.07306 0.12473 0.18800 +v 0.07330 0.12461 0.19089 +v 0.07262 0.12415 0.19188 +v 0.04992 0.12591 0.20423 +v 0.05223 0.12596 0.20337 +v 0.05490 0.12543 0.20334 +v 0.04673 0.12573 0.20565 +v 0.05815 0.12525 0.20285 +v 0.05698 0.12545 0.20313 +v 0.02614 0.12606 0.20317 +v 0.03505 0.12565 0.20924 +v 0.03061 0.12615 0.20370 +v 0.02949 0.12617 0.20418 +v 0.03927 0.12564 0.20860 +v 0.02204 0.12600 0.20338 +v 0.02085 0.12582 0.20311 +v 0.06368 0.12311 0.17059 +v 0.06086 0.12270 0.16757 +v 0.05783 0.12310 0.16458 +v 0.04952 0.12254 0.16137 +v 0.05197 0.12362 0.16041 +v 0.05300 0.12354 0.16123 +v 0.04158 0.12173 0.16131 +v 0.04032 0.12183 0.16321 +v 0.04357 0.12147 0.15928 +v 0.03879 0.12237 0.16742 +v 0.06549 0.12512 0.20217 +v 0.06908 0.12507 0.20174 +v 0.06436 0.12499 0.20163 +v 0.07003 0.12444 0.19753 +v 0.06142 0.12466 0.20167 +v 0.06718 0.12318 0.17466 +v 0.06820 0.12269 0.17738 +v 0.07137 0.12347 0.18065 +v 0.07264 0.12451 0.18434 +v 0.07343 0.12513 0.18562 +v 0.07393 0.12497 0.18995 +v 0.07359 0.12522 0.18621 +v 0.07207 0.12408 0.19383 +v 0.07255 0.12413 0.19285 +v 0.05317 0.12580 0.20464 +v 0.05429 0.12568 0.20373 +v 0.05605 0.12550 0.20375 +v 0.05345 0.12579 0.20378 +v 0.04906 0.12559 0.20595 +v 0.05907 0.12489 0.20242 +v 0.05979 0.12458 0.20205 +v 0.02513 0.12614 0.20363 +v 0.02710 0.12622 0.20293 +v 0.03186 0.12571 0.21042 +v 0.02928 0.12611 0.20519 +v 0.04088 0.12552 0.20963 +v 0.02262 0.12616 0.20397 +v 0.01933 0.12562 0.20260 +v 0.06447 0.12306 0.16753 +v 0.06020 0.12288 0.16581 +v 0.05544 0.12358 0.16108 +v 0.04988 0.12281 0.16026 +v 0.05104 0.12331 0.15966 +v 0.04835 0.12232 0.16038 +v 0.05394 0.12373 0.16013 +v 0.04609 0.12178 0.15983 +v 0.04478 0.12153 0.15957 +v 0.06595 0.12327 0.17190 +v 0.06646 0.12526 0.20308 +v 0.07027 0.12476 0.19958 +v 0.06328 0.12545 0.20256 +v 0.07102 0.12462 0.19694 +v 0.06217 0.12528 0.20208 +v 0.07062 0.12329 0.17808 +v 0.07066 0.12310 0.17965 +v 0.07222 0.12407 0.18290 +v 0.07152 0.12340 0.18320 +v 0.07148 0.12336 0.18360 +v 0.07461 0.12523 0.18873 +v 0.07379 0.12510 0.18746 +v 0.07217 0.12451 0.19530 +v 0.07466 0.12510 0.19108 +v 0.07374 0.12484 0.19287 +v 0.05201 0.12565 0.20584 +v 0.05492 0.12568 0.20420 +v 0.04592 0.12566 0.20744 +v 0.05833 0.12559 0.20350 +v 0.05933 0.12537 0.20303 +v 0.05708 0.12559 0.20356 +v 0.02415 0.12620 0.20407 +v 0.02625 0.12623 0.20390 +v 0.03417 0.12562 0.21108 +v 0.03139 0.12597 0.20810 +v 0.03740 0.12534 0.21064 +v 0.02810 0.12626 0.20409 +v 0.04382 0.12561 0.21032 +v 0.03873 0.12533 0.21124 +v 0.02058 0.12613 0.20405 +v 0.01954 0.12606 0.20339 +v 0.06605 0.12333 0.16991 +v 0.06213 0.12284 0.16673 +v 0.06250 0.12292 0.16248 +v 0.05843 0.12340 0.16061 +v 0.05210 0.12376 0.15974 +v 0.05263 0.12376 0.16034 +v 0.04904 0.12253 0.15835 +v 0.04498 0.12151 0.15847 +v 0.06506 0.12535 0.20300 +v 0.06762 0.12530 0.20377 +v 0.07123 0.12496 0.20089 +v 0.07089 0.12472 0.19838 +v 0.07110 0.12437 0.19613 +v 0.06011 0.12506 0.20248 +v 0.06112 0.12529 0.20238 +v 0.06827 0.12351 0.17299 +v 0.07026 0.12359 0.17591 +v 0.06865 0.12332 0.17508 +v 0.07232 0.12416 0.17904 +v 0.07219 0.12410 0.17819 +v 0.07379 0.12534 0.18423 +v 0.07426 0.12547 0.18621 +v 0.07499 0.12528 0.18955 +v 0.07334 0.12510 0.19543 +v 0.07366 0.12503 0.19436 +v 0.07427 0.12507 0.19203 +v 0.05293 0.12558 0.20694 +v 0.05438 0.12576 0.20455 +v 0.05621 0.12561 0.20480 +v 0.04854 0.12541 0.20885 +v 0.05014 0.12546 0.20829 +v 0.04598 0.12559 0.21029 +v 0.02476 0.12625 0.20475 +v 0.02767 0.12631 0.20311 +v 0.03301 0.12565 0.21250 +v 0.02916 0.12557 0.21088 +v 0.02795 0.12592 0.20636 +v 0.04256 0.12547 0.21103 +v 0.04143 0.12520 0.21270 +v 0.02293 0.12620 0.20514 +v 0.02182 0.12622 0.20446 +v 0.01892 0.12604 0.20309 +v 0.06655 0.12326 0.16781 +v 0.06383 0.12288 0.16415 +v 0.05660 0.12363 0.15892 +v 0.05100 0.12328 0.15791 +v 0.05211 0.12370 0.15887 +v 0.05282 0.12387 0.15953 +v 0.04387 0.12147 0.15705 +v 0.06672 0.12342 0.17030 +v 0.06516 0.12541 0.20388 +v 0.06676 0.12531 0.20428 +v 0.07218 0.12495 0.20034 +v 0.06217 0.12565 0.20235 +v 0.07303 0.12498 0.19777 +v 0.07191 0.12473 0.19686 +v 0.06178 0.12561 0.20242 +v 0.06926 0.12360 0.17345 +v 0.07195 0.12408 0.17682 +v 0.07352 0.12525 0.18220 +v 0.07347 0.12517 0.18333 +v 0.07441 0.12561 0.18532 +v 0.07643 0.12546 0.18868 +v 0.07498 0.12543 0.18739 +v 0.07302 0.12499 0.19639 +v 0.07503 0.12517 0.19271 +v 0.07440 0.12510 0.19318 +v 0.05132 0.12556 0.20762 +v 0.05612 0.12559 0.20587 +v 0.05952 0.12561 0.20391 +v 0.05842 0.12566 0.20404 +v 0.06056 0.12554 0.20314 +v 0.03718 0.12529 0.21122 +v 0.03057 0.12536 0.21307 +v 0.03443 0.12558 0.21381 +v 0.02662 0.12617 0.20506 +v 0.04452 0.12556 0.21298 +v 0.04523 0.12563 0.21218 +v 0.04076 0.12515 0.21374 +v 0.01930 0.12624 0.20432 +v 0.02110 0.12620 0.20524 +v 0.01879 0.12624 0.20369 +v 0.01844 0.12589 0.20290 +v 0.06662 0.12321 0.16588 +v 0.06799 0.12332 0.16900 +v 0.06607 0.12295 0.16203 +v 0.06241 0.12319 0.15982 +v 0.05935 0.12355 0.15868 +v 0.05336 0.12378 0.15852 +v 0.04507 0.12165 0.15668 +v 0.04262 0.12153 0.15737 +v 0.06378 0.12557 0.20325 +v 0.06704 0.12525 0.20538 +v 0.06992 0.12523 0.20572 +v 0.07252 0.12493 0.20177 +v 0.06213 0.12572 0.20271 +v 0.06140 0.12567 0.20275 +v 0.06902 0.12351 0.17151 +v 0.07105 0.12398 0.17474 +v 0.07337 0.12485 0.17890 +v 0.07386 0.12542 0.18054 +v 0.07401 0.12554 0.18303 +v 0.07452 0.12573 0.18372 +v 0.07475 0.12568 0.18585 +v 0.07522 0.12564 0.18631 +v 0.07355 0.12526 0.19600 +v 0.07377 0.12533 0.19568 +v 0.07583 0.12518 0.19179 +v 0.07445 0.12532 0.19486 +v 0.05242 0.12562 0.20819 +v 0.05659 0.12545 0.20721 +v 0.04964 0.12531 0.20938 +v 0.04893 0.12528 0.21044 +v 0.05189 0.12561 0.20859 +v 0.02370 0.12601 0.20651 +v 0.03372 0.12551 0.21446 +v 0.02714 0.12569 0.20895 +v 0.02882 0.12521 0.21408 +v 0.03882 0.12522 0.21443 +v 0.02589 0.12594 0.20696 +v 0.04375 0.12531 0.21413 +v 0.04600 0.12556 0.21283 +v 0.04278 0.12521 0.21468 +v 0.01855 0.12614 0.20322 +v 0.06798 0.12333 0.16737 +v 0.06491 0.12288 0.16122 +v 0.06408 0.12298 0.16017 +v 0.05755 0.12367 0.15703 +v 0.05223 0.12358 0.15745 +v 0.04947 0.12277 0.15640 +v 0.05509 0.12367 0.15669 +v 0.04431 0.12163 0.15593 +v 0.04302 0.12164 0.15593 +v 0.06935 0.12336 0.16964 +v 0.06248 0.12566 0.20350 +v 0.06374 0.12552 0.20464 +v 0.07121 0.12516 0.20550 +v 0.07399 0.12499 0.20176 +v 0.07373 0.12505 0.19774 +v 0.07053 0.12371 0.17199 +v 0.07318 0.12465 0.17748 +v 0.07300 0.12458 0.17604 +v 0.07123 0.12400 0.17322 +v 0.07386 0.12545 0.18109 +v 0.07528 0.12574 0.18551 +v 0.07626 0.12552 0.18732 +v 0.07370 0.12513 0.19695 +v 0.07352 0.12528 0.19572 +v 0.07710 0.12502 0.19286 +v 0.07509 0.12522 0.19416 +v 0.07824 0.12515 0.19079 +v 0.05403 0.12549 0.21034 +v 0.05742 0.12536 0.20838 +v 0.05943 0.12558 0.20512 +v 0.04738 0.12544 0.21221 +v 0.06110 0.12562 0.20437 +v 0.03703 0.12532 0.21346 +v 0.03188 0.12503 0.21587 +v 0.03599 0.12516 0.21647 +v 0.02763 0.12551 0.21201 +v 0.03045 0.12488 0.21602 +v 0.04504 0.12566 0.21304 +v 0.04446 0.12539 0.21400 +v 0.04148 0.12519 0.21532 +v 0.01725 0.12625 0.20504 +v 0.01812 0.12612 0.20342 +v 0.06703 0.12314 0.16356 +v 0.06826 0.12344 0.16541 +v 0.06929 0.12331 0.16825 +v 0.06640 0.12311 0.16021 +v 0.06421 0.12349 0.15786 +v 0.06228 0.12345 0.15833 +v 0.06005 0.12370 0.15667 +v 0.05090 0.12313 0.15539 +v 0.05286 0.12338 0.15447 +v 0.04765 0.12256 0.15422 +v 0.04542 0.12193 0.15508 +v 0.04216 0.12163 0.15640 +v 0.06890 0.12501 0.20779 +v 0.07218 0.12497 0.20730 +v 0.07315 0.12508 0.20481 +v 0.06151 0.12571 0.20325 +v 0.07036 0.12354 0.17048 +v 0.07353 0.12480 0.17386 +v 0.07264 0.12448 0.17356 +v 0.07409 0.12510 0.17858 +v 0.07465 0.12564 0.18036 +v 0.07407 0.12566 0.18177 +v 0.07427 0.12573 0.18225 +v 0.07510 0.12591 0.18274 +v 0.07684 0.12555 0.18668 +v 0.07394 0.12536 0.19609 +v 0.07451 0.12536 0.19548 +v 0.07563 0.12513 0.19339 +v 0.07959 0.12525 0.18830 +v 0.05090 0.12527 0.21121 +v 0.04872 0.12530 0.21243 +v 0.01969 0.12595 0.20774 +v 0.02488 0.12582 0.20860 +v 0.03687 0.12524 0.21546 +v 0.03514 0.12504 0.21712 +v 0.02512 0.12558 0.21259 +v 0.02888 0.12457 0.21822 +v 0.04440 0.12513 0.21536 +v 0.04363 0.12511 0.21578 +v 0.04545 0.12548 0.21379 +v 0.04695 0.12534 0.21408 +v 0.04050 0.12520 0.21653 +v 0.04258 0.12515 0.21638 +v 0.01728 0.12611 0.20381 +v 0.01747 0.12573 0.20292 +v 0.06863 0.12327 0.16231 +v 0.06925 0.12352 0.16664 +v 0.06897 0.12324 0.16035 +v 0.06580 0.12341 0.15842 +v 0.06244 0.12361 0.15702 +v 0.05707 0.12364 0.15489 +v 0.05851 0.12371 0.15548 +v 0.05019 0.12298 0.15438 +v 0.05461 0.12343 0.15404 +v 0.04421 0.12191 0.15460 +v 0.04222 0.12206 0.15451 +v 0.07008 0.12346 0.16791 +v 0.06718 0.12510 0.20765 +v 0.07368 0.12503 0.20650 +v 0.07592 0.12511 0.20468 +v 0.07481 0.12498 0.19920 +v 0.07461 0.12528 0.19652 +v 0.07174 0.12384 0.17080 +v 0.07112 0.12356 0.16828 +v 0.07386 0.12494 0.17708 +v 0.07416 0.12499 0.17477 +v 0.07473 0.12585 0.18157 +v 0.07647 0.12581 0.18337 +v 0.08049 0.12492 0.19204 +v 0.07706 0.12483 0.19484 +v 0.08145 0.12518 0.18982 +v 0.07614 0.12496 0.19529 +v 0.05605 0.12543 0.21266 +v 0.05286 0.12543 0.21122 +v 0.06048 0.12542 0.20666 +v 0.05044 0.12524 0.21249 +v 0.05053 0.12512 0.21413 +v 0.02227 0.12580 0.20849 +v 0.03546 0.12474 0.21901 +v 0.04018 0.12510 0.21783 +v 0.02531 0.12533 0.21432 +v 0.03238 0.12426 0.22135 +v 0.04876 0.12509 0.21718 +v 0.01637 0.12616 0.20427 +v 0.01808 0.12599 0.20786 +v 0.06902 0.12356 0.16421 +v 0.06850 0.12314 0.16110 +v 0.06915 0.12365 0.16544 +v 0.06727 0.12364 0.15772 +v 0.06588 0.12366 0.15652 +v 0.06172 0.12366 0.15486 +v 0.05121 0.12313 0.15386 +v 0.05370 0.12344 0.15267 +v 0.05015 0.12314 0.15273 +v 0.04597 0.12238 0.15305 +v 0.04500 0.12229 0.15297 +v 0.06342 0.12537 0.20801 +v 0.06505 0.12529 0.20789 +v 0.07112 0.12476 0.20870 +v 0.06734 0.12510 0.20838 +v 0.07546 0.12489 0.20794 +v 0.07590 0.12507 0.20625 +v 0.07599 0.12498 0.20183 +v 0.07492 0.12505 0.19765 +v 0.07442 0.12514 0.17668 +v 0.07539 0.12525 0.17329 +v 0.07352 0.12473 0.17226 +v 0.07254 0.12413 0.17091 +v 0.07495 0.12524 0.17744 +v 0.07494 0.12534 0.17869 +v 0.07594 0.12585 0.18089 +v 0.07637 0.12570 0.18481 +v 0.07610 0.12596 0.18221 +v 0.07761 0.12547 0.18557 +v 0.07967 0.12480 0.19378 +v 0.08307 0.12505 0.18548 +v 0.05400 0.12549 0.21190 +v 0.06251 0.12531 0.20894 +v 0.05183 0.12531 0.21242 +v 0.02089 0.12565 0.20957 +v 0.03808 0.12453 0.22056 +v 0.03850 0.12498 0.21836 +v 0.02277 0.12547 0.21275 +v 0.02359 0.12512 0.21549 +v 0.02572 0.12439 0.22018 +v 0.04595 0.12519 0.21528 +v 0.04481 0.12495 0.21619 +v 0.04337 0.12493 0.21745 +v 0.04231 0.12519 0.21703 +v 0.01416 0.12607 0.20496 +v 0.01618 0.12580 0.20326 +v 0.01566 0.12586 0.20836 +v 0.01897 0.12580 0.20946 +v 0.07037 0.12383 0.16360 +v 0.06932 0.12331 0.16118 +v 0.06927 0.12376 0.15851 +v 0.05525 0.12334 0.15305 +v 0.06476 0.12375 0.15373 +v 0.05221 0.12337 0.15298 +v 0.04699 0.12277 0.15221 +v 0.04304 0.12236 0.15290 +v 0.06610 0.12526 0.20950 +v 0.06950 0.12471 0.21001 +v 0.06847 0.12497 0.20905 +v 0.07742 0.12514 0.20591 +v 0.07704 0.12491 0.19720 +v 0.07795 0.12485 0.20059 +v 0.07565 0.12505 0.19669 +v 0.07185 0.12381 0.16902 +v 0.07572 0.12527 0.17479 +v 0.07498 0.12522 0.17164 +v 0.07507 0.12527 0.17596 +v 0.07234 0.12406 0.16880 +v 0.07527 0.12554 0.17935 +v 0.07551 0.12580 0.18014 +v 0.07545 0.12601 0.18185 +v 0.07747 0.12555 0.18412 +v 0.07757 0.12568 0.18223 +v 0.07892 0.12532 0.18483 +v 0.08323 0.12496 0.19114 +v 0.08312 0.12458 0.19299 +v 0.08028 0.12482 0.19589 +v 0.08134 0.12516 0.18331 +v 0.08348 0.12506 0.19035 +v 0.05378 0.12555 0.21297 +v 0.06094 0.12516 0.21302 +v 0.05188 0.12510 0.21472 +v 0.05088 0.12500 0.21594 +v 0.03533 0.12446 0.22120 +v 0.04026 0.12449 0.22105 +v 0.02266 0.12465 0.21858 +v 0.04451 0.12476 0.21754 +v 0.04787 0.12502 0.21792 +v 0.01525 0.12604 0.20383 +v 0.01398 0.12601 0.20650 +v 0.01765 0.12595 0.20913 +v 0.01586 0.12530 0.20262 +v 0.07080 0.12390 0.16438 +v 0.07003 0.12367 0.16235 +v 0.06951 0.12336 0.16051 +v 0.06912 0.12406 0.15652 +v 0.06743 0.12383 0.15571 +v 0.06035 0.12351 0.15291 +v 0.05706 0.12338 0.15232 +v 0.06152 0.12360 0.15259 +v 0.05475 0.12341 0.15202 +v 0.05266 0.12383 0.15098 +v 0.04970 0.12319 0.15199 +v 0.04537 0.12273 0.15164 +v 0.07138 0.12383 0.16629 +v 0.06441 0.12528 0.20915 +v 0.07088 0.12455 0.21140 +v 0.07438 0.12446 0.21147 +v 0.07676 0.12495 0.20831 +v 0.08052 0.12492 0.20462 +v 0.07872 0.12509 0.20901 +v 0.07824 0.12493 0.20290 +v 0.07706 0.12532 0.17403 +v 0.07624 0.12546 0.17232 +v 0.07375 0.12473 0.17027 +v 0.07480 0.12514 0.16961 +v 0.07612 0.12540 0.17819 +v 0.07631 0.12561 0.17947 +v 0.07800 0.12535 0.18485 +v 0.08383 0.12455 0.19411 +v 0.08323 0.12507 0.18365 +v 0.08524 0.12500 0.18543 +v 0.05460 0.12539 0.21382 +v 0.05782 0.12518 0.21445 +v 0.06305 0.12501 0.21214 +v 0.05206 0.12485 0.21729 +v 0.01833 0.12564 0.21103 +v 0.02101 0.12545 0.21235 +v 0.03524 0.12430 0.22305 +v 0.03929 0.12423 0.22338 +v 0.04272 0.12471 0.21937 +v 0.04212 0.12498 0.21813 +v 0.02046 0.12481 0.21629 +v 0.02047 0.12468 0.21757 +v 0.02364 0.12450 0.22032 +v 0.03292 0.12411 0.22393 +v 0.04547 0.12495 0.21653 +v 0.04913 0.12486 0.21967 +v 0.04672 0.12499 0.21730 +v 0.01345 0.12587 0.20389 +v 0.01328 0.12610 0.20538 +v 0.01510 0.12590 0.20341 +v 0.01601 0.12568 0.21046 +v 0.01208 0.12604 0.20570 +v 0.01508 0.12565 0.20303 +v 0.07159 0.12409 0.16420 +v 0.07128 0.12414 0.16305 +v 0.07043 0.12405 0.15862 +v 0.06670 0.12380 0.15444 +v 0.05585 0.12335 0.15202 +v 0.06295 0.12375 0.15163 +v 0.05420 0.12359 0.15131 +v 0.05042 0.12358 0.15118 +v 0.04714 0.12303 0.15114 +v 0.04394 0.12305 0.15073 +v 0.07216 0.12402 0.16695 +v 0.06518 0.12515 0.21091 +v 0.06697 0.12511 0.21069 +v 0.06839 0.12462 0.21324 +v 0.07589 0.12460 0.21100 +v 0.07901 0.12511 0.20738 +v 0.07959 0.12485 0.19969 +v 0.08010 0.12472 0.20193 +v 0.07602 0.12533 0.17654 +v 0.07718 0.12528 0.17533 +v 0.07669 0.12547 0.17053 +v 0.07539 0.12529 0.17017 +v 0.07396 0.12489 0.16907 +v 0.07785 0.12557 0.18027 +v 0.07931 0.12542 0.18209 +v 0.08563 0.12483 0.19231 +v 0.08468 0.12461 0.19352 +v 0.08169 0.12481 0.19630 +v 0.07994 0.12493 0.19813 +v 0.08322 0.12506 0.18055 +v 0.08797 0.12486 0.18833 +v 0.05370 0.12510 0.21543 +v 0.05820 0.12504 0.21657 +v 0.06346 0.12449 0.21561 +v 0.06444 0.12499 0.21192 +v 0.05269 0.12487 0.21617 +v 0.05278 0.12472 0.21879 +v 0.02065 0.12507 0.21478 +v 0.04247 0.12457 0.22051 +v 0.02083 0.12455 0.21981 +v 0.04514 0.12471 0.21765 +v 0.04519 0.12461 0.21892 +v 0.04682 0.12466 0.22070 +v 0.04636 0.12478 0.21855 +v 0.01418 0.12571 0.20334 +v 0.01225 0.12605 0.20463 +v 0.01431 0.12556 0.21150 +v 0.01522 0.12499 0.20240 +v 0.07115 0.12414 0.16168 +v 0.07112 0.12422 0.15927 +v 0.06881 0.12408 0.15531 +v 0.07064 0.12445 0.15668 +v 0.06840 0.12402 0.15414 +v 0.06590 0.12390 0.15263 +v 0.06057 0.12353 0.15210 +v 0.05819 0.12343 0.15160 +v 0.05685 0.12348 0.15119 +v 0.06146 0.12382 0.15101 +v 0.05415 0.12382 0.15059 +v 0.04854 0.12350 0.15045 +v 0.04608 0.12335 0.15036 +v 0.07221 0.12403 0.16580 +v 0.06605 0.12519 0.21064 +v 0.06769 0.12491 0.21166 +v 0.07268 0.12442 0.21359 +v 0.07081 0.12438 0.21473 +v 0.07559 0.12452 0.21217 +v 0.07814 0.12504 0.20970 +v 0.08035 0.12488 0.20649 +v 0.08102 0.12484 0.20341 +v 0.07999 0.12481 0.20844 +v 0.07998 0.12470 0.20087 +v 0.07269 0.12430 0.16669 +v 0.07867 0.12526 0.17390 +v 0.07866 0.12547 0.17222 +v 0.07586 0.12547 0.16904 +v 0.07305 0.12448 0.16859 +v 0.07784 0.12535 0.17813 +v 0.08024 0.12524 0.17923 +v 0.08480 0.12502 0.19057 +v 0.08667 0.12476 0.19306 +v 0.08459 0.12467 0.19521 +v 0.08170 0.12499 0.19815 +v 0.08455 0.12512 0.18294 +v 0.09021 0.12472 0.18674 +v 0.05533 0.12514 0.21560 +v 0.05903 0.12480 0.21757 +v 0.06624 0.12450 0.21449 +v 0.05331 0.12489 0.21671 +v 0.01976 0.12532 0.21347 +v 0.03522 0.12420 0.22558 +v 0.04339 0.12417 0.22412 +v 0.04374 0.12451 0.22098 +v 0.01876 0.12463 0.21638 +v 0.01888 0.12448 0.22001 +v 0.02153 0.12459 0.22217 +v 0.03410 0.12410 0.22543 +v 0.05239 0.12443 0.22150 +v 0.05104 0.12435 0.22265 +v 0.01341 0.12549 0.20315 +v 0.01208 0.12591 0.20377 +v 0.01762 0.12520 0.21374 +v 0.01242 0.12560 0.21152 +v 0.01362 0.12518 0.20281 +v 0.07249 0.12452 0.16358 +v 0.07209 0.12459 0.16206 +v 0.07155 0.12472 0.15746 +v 0.07028 0.12445 0.15494 +v 0.06877 0.12421 0.15226 +v 0.05965 0.12353 0.15137 +v 0.06489 0.12418 0.15060 +v 0.06302 0.12422 0.15018 +v 0.05206 0.12421 0.15015 +v 0.05415 0.12419 0.15001 +v 0.04945 0.12401 0.14998 +v 0.04694 0.12326 0.15047 +v 0.04379 0.12338 0.15017 +v 0.06616 0.12518 0.21184 +v 0.06546 0.12506 0.21189 +v 0.06672 0.12516 0.21167 +v 0.07469 0.12444 0.21317 +v 0.06704 0.12502 0.21226 +v 0.06955 0.12419 0.21635 +v 0.07652 0.12472 0.21175 +v 0.07753 0.12490 0.21119 +v 0.07819 0.12496 0.21113 +v 0.08180 0.12467 0.20625 +v 0.08238 0.12481 0.20375 +v 0.07919 0.12492 0.21114 +v 0.08130 0.12499 0.19953 +v 0.08274 0.12489 0.20288 +v 0.08054 0.12472 0.20153 +v 0.07312 0.12464 0.16733 +v 0.08039 0.12503 0.17492 +v 0.07885 0.12547 0.17039 +v 0.07406 0.12523 0.16739 +v 0.07516 0.12551 0.16768 +v 0.07363 0.12495 0.16785 +v 0.08704 0.12471 0.19412 +v 0.08647 0.12478 0.19542 +v 0.08319 0.12502 0.19783 +v 0.08421 0.12517 0.18044 +v 0.08248 0.12514 0.17862 +v 0.08548 0.12514 0.18286 +v 0.08908 0.12472 0.19030 +v 0.08941 0.12484 0.18514 +v 0.09037 0.12470 0.18903 +v 0.05499 0.12491 0.21724 +v 0.05721 0.12488 0.21759 +v 0.06179 0.12446 0.21795 +v 0.06688 0.12407 0.21720 +v 0.06639 0.12496 0.21262 +v 0.03687 0.12419 0.22578 +v 0.04178 0.12408 0.22601 +v 0.05390 0.12445 0.22085 +v 0.04699 0.12435 0.22328 +v 0.04534 0.12459 0.22094 +v 0.01230 0.12564 0.20331 +v 0.01057 0.12609 0.20371 +v 0.01008 0.12610 0.20406 +v 0.01613 0.12471 0.21677 +v 0.01121 0.12502 0.21537 +v 0.00961 0.12591 0.20647 +v 0.07255 0.12408 0.16549 +v 0.07277 0.12436 0.16470 +v 0.07283 0.12514 0.16035 +v 0.07229 0.12493 0.15891 +v 0.07150 0.12477 0.15646 +v 0.07043 0.12451 0.15277 +v 0.06684 0.12412 0.15175 +v 0.05777 0.12347 0.15089 +v 0.05853 0.12363 0.15057 +v 0.06118 0.12428 0.14980 +v 0.05340 0.12451 0.14964 +v 0.05085 0.12437 0.14977 +v 0.05641 0.12397 0.15013 +v 0.05504 0.12432 0.14974 +v 0.04922 0.12474 0.14886 +v 0.04757 0.12477 0.14851 +v 0.04596 0.12428 0.14910 +v 0.07288 0.12433 0.16553 +v 0.07250 0.12432 0.21627 +v 0.07427 0.12444 0.21542 +v 0.07628 0.12468 0.21334 +v 0.08176 0.12466 0.20738 +v 0.08083 0.12470 0.20800 +v 0.08052 0.12473 0.21025 +v 0.08193 0.12497 0.20084 +v 0.08236 0.12490 0.20198 +v 0.07377 0.12508 0.16658 +v 0.08021 0.12521 0.17298 +v 0.08027 0.12532 0.17148 +v 0.07719 0.12559 0.16877 +v 0.07603 0.12566 0.16734 +v 0.08489 0.12487 0.19626 +v 0.08322 0.12518 0.19909 +v 0.08282 0.12524 0.20001 +v 0.08474 0.12531 0.17965 +v 0.08520 0.12519 0.18087 +v 0.08415 0.12529 0.17805 +v 0.08208 0.12505 0.17635 +v 0.05765 0.12464 0.21954 +v 0.05958 0.12460 0.21948 +v 0.04504 0.12420 0.22349 +v 0.04370 0.12392 0.22714 +v 0.01706 0.12453 0.21801 +v 0.01943 0.12444 0.22246 +v 0.05392 0.12431 0.22168 +v 0.05385 0.12431 0.22248 +v 0.04831 0.12422 0.22531 +v 0.01199 0.12527 0.20287 +v 0.01101 0.12575 0.20327 +v 0.00879 0.12601 0.20520 +v 0.01060 0.12551 0.21186 +v 0.00962 0.12567 0.20913 +v 0.07341 0.12482 0.16434 +v 0.07294 0.12501 0.16183 +v 0.07224 0.12499 0.15523 +v 0.06928 0.12452 0.15138 +v 0.06805 0.12442 0.15111 +v 0.05976 0.12373 0.15050 +v 0.05753 0.12366 0.15044 +v 0.06666 0.12447 0.15059 +v 0.06429 0.12469 0.14937 +v 0.06310 0.12472 0.14903 +v 0.05271 0.12510 0.14875 +v 0.05199 0.12469 0.14941 +v 0.05439 0.12483 0.14920 +v 0.04483 0.12464 0.14876 +v 0.06652 0.12526 0.21199 +v 0.07594 0.12452 0.21476 +v 0.06647 0.12519 0.21225 +v 0.07199 0.12407 0.21810 +v 0.07736 0.12499 0.21217 +v 0.07686 0.12491 0.21260 +v 0.07825 0.12504 0.21205 +v 0.07923 0.12496 0.21228 +v 0.08409 0.12456 0.20537 +v 0.08361 0.12469 0.20369 +v 0.08152 0.12471 0.21321 +v 0.08332 0.12493 0.20164 +v 0.07359 0.12503 0.16734 +v 0.08120 0.12515 0.17280 +v 0.08103 0.12533 0.17080 +v 0.07744 0.12564 0.16773 +v 0.07472 0.12546 0.16643 +v 0.08869 0.12462 0.19456 +v 0.08607 0.12511 0.19710 +v 0.08451 0.12501 0.19750 +v 0.08413 0.12504 0.19848 +v 0.08643 0.12507 0.18121 +v 0.09134 0.12474 0.19126 +v 0.09252 0.12453 0.19052 +v 0.06992 0.12385 0.21946 +v 0.04568 0.12395 0.22635 +v 0.04320 0.12380 0.22856 +v 0.01801 0.12433 0.22160 +v 0.05629 0.12448 0.22102 +v 0.05459 0.12438 0.22167 +v 0.05262 0.12420 0.22505 +v 0.04629 0.12368 0.22848 +v 0.05040 0.12426 0.22423 +v 0.00976 0.12577 0.20328 +v 0.01055 0.12601 0.20351 +v 0.00814 0.12598 0.20458 +v 0.01250 0.12464 0.21766 +v 0.00980 0.12531 0.21300 +v 0.00761 0.12586 0.20720 +v 0.00724 0.12606 0.20538 +v 0.07320 0.12456 0.16496 +v 0.07396 0.12522 0.16377 +v 0.07361 0.12533 0.16064 +v 0.07298 0.12522 0.15924 +v 0.07323 0.12538 0.15824 +v 0.07207 0.12501 0.15360 +v 0.07028 0.12500 0.15047 +v 0.05907 0.12400 0.14982 +v 0.06622 0.12495 0.14933 +v 0.06121 0.12495 0.14874 +v 0.05359 0.12512 0.14881 +v 0.05094 0.12514 0.14855 +v 0.05789 0.12413 0.14967 +v 0.05667 0.12466 0.14919 +v 0.05538 0.12489 0.14911 +v 0.04993 0.12525 0.14816 +v 0.04666 0.12487 0.14831 +v 0.04373 0.12401 0.14945 +v 0.04538 0.12492 0.14842 +v 0.07364 0.12486 0.16535 +v 0.07466 0.12457 0.21718 +v 0.07596 0.12462 0.21676 +v 0.07405 0.12446 0.21768 +v 0.07748 0.12493 0.21501 +v 0.07730 0.12513 0.21297 +v 0.08349 0.12462 0.20829 +v 0.08594 0.12457 0.20113 +v 0.08344 0.12512 0.17365 +v 0.08066 0.12534 0.16945 +v 0.07570 0.12555 0.16605 +v 0.08710 0.12487 0.19632 +v 0.09007 0.12462 0.19423 +v 0.08340 0.12525 0.19954 +v 0.08382 0.12512 0.19957 +v 0.08525 0.12535 0.17902 +v 0.08369 0.12515 0.17542 +v 0.08801 0.12491 0.18256 +v 0.09114 0.12479 0.19224 +v 0.09322 0.12459 0.19207 +v 0.05874 0.12458 0.22183 +v 0.04461 0.12370 0.22849 +v 0.01457 0.12417 0.22126 +v 0.01515 0.12443 0.21862 +v 0.01727 0.12399 0.22320 +v 0.05695 0.12450 0.22278 +v 0.05408 0.12423 0.22423 +v 0.04825 0.12383 0.22854 +v 0.05163 0.12424 0.22723 +v 0.01059 0.12512 0.20257 +v 0.00908 0.12582 0.20332 +v 0.00899 0.12500 0.21761 +v 0.00793 0.12520 0.21193 +v 0.00922 0.12523 0.21411 +v 0.00778 0.12563 0.20901 +v 0.00673 0.12605 0.20612 +v 0.07423 0.12519 0.16459 +v 0.07430 0.12539 0.16348 +v 0.07182 0.12522 0.15188 +v 0.07422 0.12539 0.15544 +v 0.07411 0.12545 0.15714 +v 0.06865 0.12477 0.15035 +v 0.06743 0.12510 0.14943 +v 0.06371 0.12512 0.14816 +v 0.06529 0.12512 0.14884 +v 0.05955 0.12439 0.14930 +v 0.06227 0.12516 0.14821 +v 0.06031 0.12463 0.14914 +v 0.05368 0.12546 0.14825 +v 0.05436 0.12535 0.14859 +v 0.05527 0.12553 0.14849 +v 0.04912 0.12537 0.14761 +v 0.04753 0.12511 0.14787 +v 0.04360 0.12485 0.14866 +v 0.04502 0.12521 0.14810 +v 0.07455 0.12531 0.16566 +v 0.07680 0.12470 0.21587 +v 0.07210 0.12381 0.21948 +v 0.07357 0.12427 0.21863 +v 0.07818 0.12527 0.21316 +v 0.08018 0.12488 0.21340 +v 0.08546 0.12451 0.20575 +v 0.08723 0.12442 0.20120 +v 0.08434 0.12468 0.21168 +v 0.08350 0.12509 0.20044 +v 0.08522 0.12477 0.20016 +v 0.08279 0.12529 0.17073 +v 0.08112 0.12526 0.16830 +v 0.07764 0.12548 0.16492 +v 0.08803 0.12480 0.19694 +v 0.09082 0.12461 0.19642 +v 0.08521 0.12503 0.19835 +v 0.08682 0.12496 0.19751 +v 0.08467 0.12497 0.19922 +v 0.08528 0.12527 0.17754 +v 0.08851 0.12475 0.18087 +v 0.08680 0.12503 0.17784 +v 0.07186 0.12390 0.22120 +v 0.01630 0.12397 0.22321 +v 0.05510 0.12432 0.22373 +v 0.05535 0.12400 0.22641 +v 0.04991 0.12422 0.22724 +v 0.04756 0.12362 0.22942 +v 0.00862 0.12555 0.20310 +v 0.00833 0.12585 0.20379 +v 0.00683 0.12597 0.20445 +v 0.01195 0.12421 0.22105 +v 0.00872 0.12516 0.21561 +v 0.00959 0.12476 0.21897 +v 0.00855 0.12522 0.21338 +v 0.00637 0.12545 0.20893 +v 0.00612 0.12603 0.20617 +v 0.00621 0.12609 0.20512 +v 0.07469 0.12547 0.16092 +v 0.07393 0.12545 0.15876 +v 0.07223 0.12544 0.15112 +v 0.07336 0.12530 0.15371 +v 0.07131 0.12528 0.15054 +v 0.06906 0.12506 0.14942 +v 0.05873 0.12448 0.14913 +v 0.06678 0.12527 0.14853 +v 0.06445 0.12508 0.14855 +v 0.06108 0.12536 0.14790 +v 0.06038 0.12527 0.14839 +v 0.05083 0.12549 0.14782 +v 0.05388 0.12539 0.14849 +v 0.05252 0.12542 0.14791 +v 0.05798 0.12500 0.14852 +v 0.05588 0.12535 0.14847 +v 0.05535 0.12539 0.14862 +v 0.05000 0.12556 0.14696 +v 0.04658 0.12522 0.14766 +v 0.04234 0.12422 0.14940 +v 0.04404 0.12526 0.14805 +v 0.07525 0.12462 0.21848 +v 0.07745 0.12465 0.21741 +v 0.07214 0.12380 0.22016 +v 0.07320 0.12404 0.21944 +v 0.07459 0.12452 0.21952 +v 0.07846 0.12523 0.21428 +v 0.07775 0.12478 0.21656 +v 0.07929 0.12517 0.21383 +v 0.08041 0.12481 0.21447 +v 0.08770 0.12446 0.20596 +v 0.08758 0.12465 0.20823 +v 0.08792 0.12435 0.20244 +v 0.08599 0.12462 0.20002 +v 0.08724 0.12479 0.21054 +v 0.08591 0.12465 0.21251 +v 0.08096 0.12523 0.16636 +v 0.07620 0.12547 0.16403 +v 0.07520 0.12543 0.16453 +v 0.08424 0.12511 0.17514 +v 0.09248 0.12461 0.19379 +v 0.08562 0.12503 0.19867 +v 0.08626 0.12494 0.19847 +v 0.08808 0.12485 0.17873 +v 0.05743 0.12452 0.22364 +v 0.01290 0.12367 0.22556 +v 0.01843 0.12370 0.22584 +v 0.05261 0.12410 0.22759 +v 0.05022 0.12411 0.22841 +v 0.05061 0.12408 0.22862 +v 0.00930 0.12473 0.20205 +v 0.00773 0.12589 0.20415 +v 0.00823 0.12505 0.21710 +v 0.00848 0.12485 0.21835 +v 0.00678 0.12533 0.21076 +v 0.00768 0.12519 0.21345 +v 0.00825 0.12529 0.21455 +v 0.00626 0.12564 0.20769 +v 0.07469 0.12548 0.16314 +v 0.07443 0.12541 0.15350 +v 0.07526 0.12550 0.15648 +v 0.07517 0.12555 0.15844 +v 0.07057 0.12525 0.14939 +v 0.06802 0.12527 0.14833 +v 0.06473 0.12533 0.14778 +v 0.06306 0.12536 0.14742 +v 0.06506 0.12529 0.14826 +v 0.06175 0.12542 0.14746 +v 0.05296 0.12551 0.14731 +v 0.05680 0.12533 0.14824 +v 0.05467 0.12557 0.14806 +v 0.05536 0.12555 0.14823 +v 0.04749 0.12541 0.14681 +v 0.04236 0.12482 0.14875 +v 0.04364 0.12517 0.14834 +v 0.04515 0.12545 0.14750 +v 0.04423 0.12544 0.14771 +v 0.07502 0.12462 0.21974 +v 0.07657 0.12457 0.21818 +v 0.07285 0.12385 0.21994 +v 0.07381 0.12420 0.21978 +v 0.07789 0.12522 0.21345 +v 0.08179 0.12466 0.21485 +v 0.08836 0.12425 0.20166 +v 0.08779 0.12455 0.19994 +v 0.08560 0.12490 0.19908 +v 0.08418 0.12506 0.17280 +v 0.08355 0.12513 0.16924 +v 0.08388 0.12510 0.16443 +v 0.07931 0.12534 0.16375 +v 0.07746 0.12540 0.16059 +v 0.08767 0.12475 0.19854 +v 0.09481 0.12431 0.19868 +v 0.09602 0.12441 0.19630 +v 0.08564 0.12499 0.17556 +v 0.08771 0.12487 0.17684 +v 0.07360 0.12413 0.22051 +v 0.01003 0.12377 0.22420 +v 0.01413 0.12348 0.22697 +v 0.05731 0.12409 0.22639 +v 0.00740 0.12559 0.20345 +v 0.00718 0.12489 0.20250 +v 0.00547 0.12597 0.20421 +v 0.00641 0.12576 0.20378 +v 0.00925 0.12467 0.21983 +v 0.00752 0.12502 0.21608 +v 0.00662 0.12509 0.21277 +v 0.00771 0.12534 0.21458 +v 0.00772 0.12522 0.21504 +v 0.00425 0.12493 0.20866 +v 0.00580 0.12521 0.21045 +v 0.00463 0.12591 0.20530 +v 0.07283 0.12552 0.15058 +v 0.07643 0.12555 0.15592 +v 0.06937 0.12525 0.14844 +v 0.06597 0.12547 0.14757 +v 0.06398 0.12537 0.14711 +v 0.06245 0.12547 0.14727 +v 0.05924 0.12520 0.14825 +v 0.06101 0.12547 0.14697 +v 0.06037 0.12545 0.14771 +v 0.05100 0.12559 0.14730 +v 0.05201 0.12554 0.14679 +v 0.05753 0.12549 0.14781 +v 0.05604 0.12555 0.14798 +v 0.04754 0.12546 0.14527 +v 0.04635 0.12543 0.14706 +v 0.04333 0.12520 0.14823 +v 0.04112 0.12479 0.14900 +v 0.04419 0.12545 0.14717 +v 0.07866 0.12474 0.21672 +v 0.07834 0.12491 0.21607 +v 0.07937 0.12496 0.21518 +v 0.08080 0.12461 0.21613 +v 0.08931 0.12465 0.20789 +v 0.08979 0.12443 0.20390 +v 0.08800 0.12476 0.20956 +v 0.08924 0.12435 0.20187 +v 0.08896 0.12435 0.21343 +v 0.08304 0.12459 0.21547 +v 0.08590 0.12475 0.17163 +v 0.08454 0.12500 0.17021 +v 0.08176 0.12522 0.16201 +v 0.09094 0.12447 0.20072 +v 0.09684 0.12440 0.19529 +v 0.08940 0.12478 0.17794 +v 0.01081 0.12403 0.22230 +v 0.01058 0.12358 0.22736 +v 0.01996 0.12333 0.22898 +v 0.01514 0.12337 0.22742 +v 0.05654 0.12400 0.22810 +v 0.00448 0.12596 0.20452 +v 0.00647 0.12484 0.21580 +v 0.00602 0.12450 0.21781 +v 0.00834 0.12465 0.21962 +v 0.00607 0.12524 0.21114 +v 0.00699 0.12508 0.21440 +v 0.00454 0.12486 0.21011 +v 0.07548 0.12538 0.15280 +v 0.07664 0.12549 0.15700 +v 0.07182 0.12538 0.14917 +v 0.07041 0.12532 0.14783 +v 0.06867 0.12533 0.14693 +v 0.06508 0.12544 0.14660 +v 0.06319 0.12543 0.14654 +v 0.05844 0.12535 0.14790 +v 0.05929 0.12546 0.14758 +v 0.05599 0.12566 0.14666 +v 0.05315 0.12551 0.14626 +v 0.05676 0.12563 0.14730 +v 0.05047 0.12553 0.14593 +v 0.04624 0.12548 0.14616 +v 0.04257 0.12523 0.14803 +v 0.04181 0.12511 0.14840 +v 0.04332 0.12536 0.14762 +v 0.04530 0.12551 0.14689 +v 0.08261 0.12452 0.21599 +v 0.08967 0.12470 0.20939 +v 0.08946 0.12445 0.20075 +v 0.08972 0.12462 0.21107 +v 0.08583 0.12459 0.21337 +v 0.08639 0.12485 0.16993 +v 0.08398 0.12505 0.16182 +v 0.07929 0.12529 0.16060 +v 0.09705 0.12435 0.19739 +v 0.09548 0.12423 0.20175 +v 0.09821 0.12429 0.19683 +v 0.08692 0.12475 0.17235 +v 0.09056 0.12486 0.17577 +v 0.00936 0.12395 0.22300 +v 0.00822 0.12371 0.22776 +v 0.01252 0.12320 0.22955 +v 0.01409 0.12301 0.22943 +v 0.00604 0.12528 0.20305 +v 0.00512 0.12573 0.20368 +v 0.00877 0.12464 0.22039 +v 0.00540 0.12501 0.21169 +v 0.00498 0.12471 0.21392 +v 0.00155 0.12372 0.20967 +v 0.00316 0.12588 0.20476 +v 0.07821 0.12539 0.15373 +v 0.07951 0.12530 0.15579 +v 0.07299 0.12540 0.14911 +v 0.06612 0.12548 0.14683 +v 0.06400 0.12541 0.14597 +v 0.06160 0.12537 0.14541 +v 0.05981 0.12551 0.14700 +v 0.05298 0.12539 0.14464 +v 0.05847 0.12556 0.14709 +v 0.04829 0.12518 0.14068 +v 0.04537 0.12543 0.14520 +v 0.04127 0.12520 0.14825 +v 0.04278 0.12537 0.14655 +v 0.09039 0.12456 0.20670 +v 0.09244 0.12454 0.20880 +v 0.09118 0.12440 0.20272 +v 0.09130 0.12452 0.21107 +v 0.09026 0.12439 0.21339 +v 0.08863 0.12407 0.21533 +v 0.08619 0.12415 0.21584 +v 0.08562 0.12492 0.16594 +v 0.08668 0.12506 0.16355 +v 0.08215 0.12502 0.16017 +v 0.09656 0.12435 0.19904 +v 0.09616 0.12428 0.20079 +v 0.00792 0.12380 0.22414 +v 0.00892 0.12347 0.22882 +v 0.00648 0.12380 0.22653 +v 0.01051 0.12330 0.22904 +v 0.01556 0.12300 0.22940 +v 0.00589 0.12431 0.20215 +v 0.00309 0.12579 0.20417 +v 0.00445 0.12443 0.21650 +v 0.00609 0.12413 0.21986 +v 0.00374 0.12454 0.21194 +v 0.07561 0.12520 0.14879 +v 0.07941 0.12526 0.15187 +v 0.07831 0.12542 0.15506 +v 0.07149 0.12529 0.14538 +v 0.06901 0.12525 0.14410 +v 0.05027 0.12528 0.14202 +v 0.05611 0.12564 0.14561 +v 0.05764 0.12564 0.14641 +v 0.04728 0.12526 0.14298 +v 0.04236 0.12535 0.14735 +v 0.04188 0.12529 0.14790 +v 0.04012 0.12502 0.14903 +v 0.04367 0.12534 0.14602 +v 0.09148 0.12443 0.20522 +v 0.09526 0.12439 0.21052 +v 0.09060 0.12451 0.21209 +v 0.09061 0.12408 0.21494 +v 0.08781 0.12479 0.16638 +v 0.08696 0.12502 0.16139 +v 0.08583 0.12496 0.15879 +v 0.08073 0.12510 0.15951 +v 0.09426 0.12415 0.20395 +v 0.09764 0.12432 0.20214 +v 0.09145 0.12482 0.17377 +v 0.08870 0.12481 0.17097 +v 0.09182 0.12483 0.17421 +v 0.00840 0.12433 0.22149 +v 0.00801 0.12409 0.22213 +v 0.00683 0.12381 0.22822 +v 0.01155 0.12252 0.23178 +v 0.01320 0.12267 0.23095 +v 0.01748 0.12281 0.23061 +v 0.00482 0.12520 0.20300 +v 0.00383 0.12527 0.20328 +v 0.00516 0.12423 0.21877 +v 0.00227 0.12415 0.21432 +v 0.00212 0.12588 0.20478 +v 0.07773 0.12518 0.14940 +v 0.07987 0.12541 0.15314 +v 0.07925 0.12542 0.15426 +v 0.07369 0.12531 0.14609 +v 0.06543 0.12532 0.14395 +v 0.06299 0.12519 0.14022 +v 0.05337 0.12522 0.14286 +v 0.05138 0.12519 0.13894 +v 0.04553 0.12508 0.14107 +v 0.04445 0.12511 0.14248 +v 0.04118 0.12530 0.14749 +v 0.04038 0.12528 0.14822 +v 0.04239 0.12494 0.14466 +v 0.04204 0.12527 0.14640 +v 0.09416 0.12423 0.20699 +v 0.09379 0.12421 0.20614 +v 0.09707 0.12437 0.20946 +v 0.09352 0.12436 0.21254 +v 0.09170 0.12449 0.21308 +v 0.09222 0.12439 0.21416 +v 0.08995 0.12473 0.16871 +v 0.08838 0.12495 0.16188 +v 0.08240 0.12501 0.15843 +v 0.09627 0.12410 0.20399 +v 0.09805 0.12423 0.20338 +v 0.00648 0.12393 0.22184 +v 0.00617 0.12379 0.22442 +v 0.00922 0.12288 0.23050 +v 0.00705 0.12351 0.22963 +v 0.00573 0.12380 0.22790 +v 0.00429 0.12450 0.20257 +v 0.00227 0.12547 0.20354 +v 0.00247 0.12420 0.21850 +v 0.00554 0.12388 0.22203 +v -0.00125 0.12291 0.21307 +v 0.00182 0.12588 0.20414 +v 0.07767 0.12510 0.14510 +v 0.08234 0.12545 0.15237 +v 0.08001 0.12522 0.14929 +v 0.07999 0.12537 0.15494 +v 0.07310 0.12539 0.14360 +v 0.07176 0.12526 0.14213 +v 0.06559 0.12531 0.14146 +v 0.06012 0.12521 0.14157 +v 0.05754 0.12559 0.14479 +v 0.05677 0.12542 0.14243 +v 0.05152 0.12523 0.14151 +v 0.04865 0.12515 0.13894 +v 0.04672 0.12514 0.13990 +v 0.04353 0.12506 0.14393 +v 0.03932 0.12523 0.14850 +v 0.09581 0.12419 0.21430 +v 0.09259 0.12431 0.21532 +v 0.08975 0.12478 0.16709 +v 0.08920 0.12476 0.16520 +v 0.08867 0.12506 0.16034 +v 0.09134 0.12457 0.16299 +v 0.08580 0.12503 0.15571 +v 0.09673 0.12403 0.20629 +v 0.09810 0.12444 0.20132 +v 0.09092 0.12477 0.17077 +v 0.00325 0.12393 0.22615 +v 0.00573 0.12367 0.22887 +v 0.00249 0.12475 0.20290 +v 0.00013 0.12401 0.21636 +v -0.00387 0.11734 0.20746 +v 0.00132 0.12603 0.20454 +v 0.08022 0.12553 0.15397 +v 0.08169 0.12522 0.14987 +v 0.08377 0.12515 0.15524 +v 0.08155 0.12530 0.15517 +v 0.07577 0.12523 0.14510 +v 0.07442 0.12536 0.14394 +v 0.07133 0.12523 0.14019 +v 0.06886 0.12532 0.14069 +v 0.06540 0.12538 0.13788 +v 0.06162 0.12504 0.13895 +v 0.05446 0.12516 0.14096 +v 0.04993 0.12521 0.13740 +v 0.05350 0.12523 0.13840 +v 0.04336 0.12499 0.14192 +v 0.04533 0.12508 0.13982 +v 0.03917 0.12536 0.14771 +v 0.03908 0.12500 0.14891 +v 0.04254 0.12486 0.14275 +v 0.04066 0.12518 0.14605 +v 0.09764 0.12430 0.20869 +v 0.09442 0.12418 0.21567 +v 0.09144 0.12471 0.16631 +v 0.08811 0.12499 0.15740 +v 0.09096 0.12479 0.16040 +v 0.09123 0.12462 0.16857 +v 0.00459 0.12389 0.22233 +v 0.00708 0.12279 0.23135 +v 0.00540 0.12314 0.23043 +v 0.00276 0.12387 0.22726 +v 0.00385 0.12359 0.22889 +v 0.01287 0.12206 0.23345 +v 0.00150 0.12513 0.20320 +v 0.00109 0.12565 0.20371 +v -0.00228 0.12399 0.21684 +v -0.00525 0.12335 0.21346 +v 0.00103 0.12597 0.20418 +v 0.08040 0.12527 0.14728 +v 0.08442 0.12495 0.14865 +v 0.08068 0.12547 0.15413 +v 0.08189 0.12515 0.14873 +v 0.07712 0.12498 0.14353 +v 0.07364 0.12517 0.14111 +v 0.06751 0.12531 0.14020 +v 0.05982 0.12498 0.13864 +v 0.05634 0.12513 0.13942 +v 0.05082 0.12512 0.13596 +v 0.04768 0.12546 0.13679 +v 0.04687 0.12523 0.13838 +v 0.05246 0.12516 0.13703 +v 0.04409 0.12489 0.14031 +v 0.03923 0.12529 0.14667 +v 0.03799 0.12523 0.14793 +v 0.03754 0.12489 0.14873 +v 0.03865 0.12453 0.14939 +v 0.04165 0.12482 0.14370 +v 0.09661 0.12409 0.20693 +v 0.09351 0.12412 0.21704 +v 0.09143 0.12455 0.16463 +v 0.08952 0.12495 0.15830 +v 0.09388 0.12450 0.16171 +v 0.08832 0.12497 0.15448 +v 0.08604 0.12502 0.15265 +v 0.09257 0.12441 0.16908 +v 0.00123 0.12416 0.22361 +v 0.00172 0.12387 0.22759 +v 0.00503 0.12266 0.23185 +v -0.00039 0.12428 0.21877 +v 0.00058 0.12432 0.22096 +v -0.00447 0.12359 0.20887 +v -0.00098 0.12563 0.20476 +v 0.08003 0.12523 0.14626 +v 0.08370 0.12532 0.15285 +v 0.08251 0.12549 0.15353 +v 0.08316 0.12529 0.15424 +v 0.07806 0.12503 0.14365 +v 0.07501 0.12515 0.14226 +v 0.06979 0.12523 0.13827 +v 0.07130 0.12516 0.13597 +v 0.06790 0.12522 0.13895 +v 0.06200 0.12502 0.13634 +v 0.05499 0.12522 0.13839 +v 0.04960 0.12526 0.13588 +v 0.04791 0.12554 0.13565 +v 0.05397 0.12526 0.13599 +v 0.04290 0.12494 0.14101 +v 0.04583 0.12520 0.13803 +v 0.04436 0.12511 0.13853 +v 0.04191 0.12492 0.14185 +v 0.03825 0.12532 0.14706 +v 0.03899 0.12518 0.14445 +v 0.09380 0.12413 0.21817 +v 0.09286 0.12447 0.16691 +v 0.09370 0.12437 0.16442 +v 0.09104 0.12510 0.15558 +v 0.09343 0.12452 0.15908 +v 0.09471 0.12430 0.16359 +v 0.09132 0.12479 0.15831 +v 0.00147 0.12370 0.22859 +v 0.00054 0.12496 0.20320 +v -0.00052 0.12540 0.20362 +v -0.00435 0.12408 0.21783 +v -0.00311 0.12421 0.21858 +v -0.00658 0.12435 0.21042 +v -0.00031 0.12574 0.20419 +v 0.08093 0.12518 0.14615 +v 0.07860 0.12514 0.14487 +v 0.08534 0.12502 0.15037 +v 0.08332 0.12486 0.14688 +v 0.07752 0.12487 0.14304 +v 0.07573 0.12498 0.14037 +v 0.07527 0.12503 0.13855 +v 0.06769 0.12524 0.13739 +v 0.06380 0.12503 0.13481 +v 0.05900 0.12509 0.13523 +v 0.05757 0.12506 0.13759 +v 0.05601 0.12540 0.13499 +v 0.05206 0.12503 0.13478 +v 0.04993 0.12513 0.13452 +v 0.04736 0.12558 0.13609 +v 0.04658 0.12535 0.13697 +v 0.04232 0.12501 0.13943 +v 0.03692 0.12536 0.14565 +v 0.03638 0.12523 0.14755 +v 0.03694 0.12451 0.14924 +v 0.04012 0.12502 0.14136 +v 0.09227 0.12456 0.16576 +v 0.08887 0.12480 0.15286 +v 0.09008 0.12500 0.15456 +v -0.00105 0.12447 0.22211 +v -0.00023 0.12403 0.22511 +v 0.00216 0.12343 0.22963 +v -0.00063 0.12363 0.22862 +v 0.00309 0.12273 0.23188 +v -0.00112 0.12444 0.22047 +v -0.00641 0.12410 0.21765 +v -0.00590 0.12445 0.20924 +v -0.00899 0.12453 0.21195 +v -0.00087 0.12554 0.20395 +v 0.07940 0.12524 0.14375 +v 0.08037 0.12523 0.14219 +v 0.08681 0.12494 0.14998 +v 0.08477 0.12478 0.14639 +v 0.07687 0.12494 0.14206 +v 0.07865 0.12513 0.14279 +v 0.07575 0.12498 0.13687 +v 0.06626 0.12526 0.13627 +v 0.06174 0.12491 0.13335 +v 0.04873 0.12541 0.13498 +v 0.04713 0.12557 0.13594 +v 0.05511 0.12540 0.13437 +v 0.05382 0.12512 0.13341 +v 0.04144 0.12499 0.14052 +v 0.04540 0.12517 0.13729 +v 0.03562 0.12535 0.14652 +v 0.03600 0.12499 0.14841 +v 0.03700 0.12534 0.14148 +v 0.03551 0.12547 0.14401 +v 0.09185 0.12473 0.15769 +v 0.09084 0.12485 0.15293 +v 0.08931 0.12456 0.15180 +v 0.09126 0.12490 0.15444 +v -0.00056 0.12448 0.22116 +v 0.00093 0.12293 0.23126 +v -0.00026 0.12325 0.23040 +v -0.00212 0.12465 0.20341 +v -0.00468 0.12422 0.22005 +v -0.00919 0.12427 0.21651 +v -0.00155 0.12451 0.22151 +v -0.00674 0.12478 0.20921 +v -0.00584 0.12484 0.20820 +v -0.00821 0.12496 0.20944 +v -0.00181 0.12548 0.20419 +v 0.08249 0.12484 0.14345 +v 0.08663 0.12486 0.14739 +v 0.08412 0.12468 0.14402 +v 0.07805 0.12506 0.14176 +v 0.07682 0.12489 0.14070 +v 0.07661 0.12501 0.13871 +v 0.06827 0.12521 0.13524 +v 0.07527 0.12486 0.13515 +v 0.06576 0.12480 0.13166 +v 0.06601 0.12495 0.13354 +v 0.05931 0.12499 0.13276 +v 0.04954 0.12486 0.13193 +v 0.04875 0.12520 0.13377 +v 0.04814 0.12553 0.13495 +v 0.04759 0.12545 0.13481 +v 0.04589 0.12523 0.13627 +v 0.05776 0.12506 0.13164 +v 0.05444 0.12507 0.13209 +v 0.04097 0.12494 0.13882 +v 0.03464 0.12512 0.14774 +v 0.03496 0.12486 0.14861 +v 0.03926 0.12504 0.14003 +v 0.09128 0.12506 0.15558 +v 0.09295 0.12447 0.15705 +v 0.09070 0.12475 0.15230 +v 0.08797 0.12480 0.15107 +v 0.09068 0.12489 0.15356 +v -0.00347 0.12406 0.22456 +v -0.00259 0.12314 0.23076 +v -0.00205 0.12511 0.20366 +v -0.00358 0.12428 0.22126 +v -0.00697 0.12422 0.21977 +v -0.00442 0.12482 0.20760 +v -0.00995 0.12528 0.20836 +v -0.00200 0.12560 0.20489 +v 0.07923 0.12528 0.14177 +v 0.08161 0.12510 0.14125 +v 0.08811 0.12491 0.14885 +v 0.08524 0.12461 0.14269 +v 0.07002 0.12508 0.13455 +v 0.07752 0.12506 0.13910 +v 0.07779 0.12486 0.13403 +v 0.07221 0.12499 0.13389 +v 0.06322 0.12473 0.13079 +v 0.06103 0.12476 0.13139 +v 0.04903 0.12496 0.13268 +v 0.05017 0.12481 0.13074 +v 0.04844 0.12539 0.13408 +v 0.04627 0.12482 0.13334 +v 0.04594 0.12514 0.13516 +v 0.05519 0.12526 0.13332 +v 0.04459 0.12494 0.13506 +v 0.04306 0.12494 0.13669 +v 0.03379 0.12534 0.14659 +v 0.03424 0.12446 0.14913 +v 0.03541 0.12546 0.14276 +v 0.03649 0.12517 0.13982 +v 0.09228 0.12467 0.15603 +v 0.09483 0.12436 0.15718 +v 0.09156 0.12466 0.15222 +v 0.09083 0.12468 0.15134 +v 0.08915 0.12464 0.15119 +v 0.09184 0.12466 0.15319 +v 0.09267 0.12447 0.15484 +v -0.00352 0.12389 0.22589 +v -0.00037 0.12278 0.23211 +v -0.00317 0.12333 0.22983 +v -0.00342 0.12499 0.20353 +v -0.00446 0.12426 0.22187 +v -0.00827 0.12424 0.22146 +v -0.00565 0.12431 0.22147 +v -0.00398 0.12420 0.22299 +v -0.00697 0.12522 0.20775 +v -0.00289 0.12492 0.20689 +v -0.00505 0.12517 0.20716 +v -0.00847 0.12552 0.20725 +v -0.00296 0.12560 0.20469 +v -0.00175 0.12551 0.20546 +v 0.08370 0.12466 0.14227 +v 0.08053 0.12516 0.14033 +v 0.08911 0.12479 0.15016 +v 0.08919 0.12494 0.14747 +v 0.08449 0.12455 0.14309 +v 0.07802 0.12508 0.14060 +v 0.06788 0.12485 0.13280 +v 0.07145 0.12512 0.13500 +v 0.07865 0.12515 0.14006 +v 0.07410 0.12486 0.13289 +v 0.06622 0.12491 0.13018 +v 0.06014 0.12468 0.13026 +v 0.04783 0.12500 0.13281 +v 0.04946 0.12473 0.12890 +v 0.04782 0.12522 0.13377 +v 0.05215 0.12495 0.13052 +v 0.03956 0.12492 0.13880 +v 0.04077 0.12461 0.13655 +v 0.03362 0.12551 0.14313 +v 0.03425 0.12489 0.14839 +v 0.03354 0.12512 0.14784 +v 0.03464 0.12530 0.14120 +v 0.09346 0.12442 0.15645 +v -0.00481 0.12343 0.22857 +v -0.00393 0.12320 0.23069 +v -0.00117 0.12263 0.23301 +v -0.00272 0.12521 0.20369 +v -0.00257 0.12537 0.20394 +v -0.00574 0.12548 0.20641 +v -0.00320 0.12549 0.20599 +v -0.00947 0.12564 0.20670 +v -0.00309 0.12560 0.20548 +v 0.08262 0.12519 0.13990 +v 0.08981 0.12493 0.14898 +v 0.08886 0.12489 0.14516 +v 0.08431 0.12471 0.14157 +v 0.07043 0.12498 0.13337 +v 0.07693 0.12489 0.13236 +v 0.08007 0.12511 0.13903 +v 0.07079 0.12498 0.13264 +v 0.06755 0.12483 0.13141 +v 0.06339 0.12475 0.12939 +v 0.06194 0.12458 0.12998 +v 0.04726 0.12487 0.13214 +v 0.04646 0.12480 0.12927 +v 0.04689 0.12493 0.13323 +v 0.05652 0.12503 0.13115 +v 0.05759 0.12495 0.12992 +v 0.05457 0.12504 0.13080 +v 0.03974 0.12454 0.13636 +v 0.04259 0.12479 0.13508 +v 0.03293 0.12542 0.14411 +v 0.03271 0.12525 0.14768 +v 0.03348 0.12478 0.14868 +v 0.03419 0.12547 0.14222 +v 0.03504 0.12498 0.13858 +v 0.03666 0.12476 0.13637 +v 0.09368 0.12433 0.15429 +v 0.09499 0.12429 0.15464 +v 0.09293 0.12448 0.15241 +v 0.09184 0.12463 0.15147 +v 0.09175 0.12483 0.14979 +v -0.00543 0.12380 0.22547 +v -0.00520 0.12337 0.22963 +v -0.00337 0.12539 0.20387 +v -0.00830 0.12411 0.22339 +v -0.00232 0.12538 0.20605 +v -0.01150 0.12562 0.20574 +v -0.00750 0.12603 0.20510 +v -0.00425 0.12572 0.20495 +v 0.09100 0.12502 0.14837 +v 0.09077 0.12495 0.14612 +v 0.08781 0.12474 0.14237 +v 0.08607 0.12470 0.14104 +v 0.07799 0.12483 0.13277 +v 0.07540 0.12517 0.13035 +v 0.08253 0.12506 0.13556 +v 0.07160 0.12509 0.13087 +v 0.06930 0.12507 0.13054 +v 0.06454 0.12497 0.12859 +v 0.06273 0.12463 0.13009 +v 0.06135 0.12452 0.12936 +v 0.04749 0.12470 0.12689 +v 0.05144 0.12490 0.12752 +v 0.04405 0.12480 0.13362 +v 0.04627 0.12479 0.13284 +v 0.05956 0.12469 0.12928 +v 0.05279 0.12503 0.12935 +v 0.04115 0.12460 0.13560 +v 0.03192 0.12521 0.14237 +v 0.03186 0.12528 0.14695 +v 0.03286 0.12506 0.14824 +v 0.03323 0.12428 0.14947 +v 0.03211 0.12486 0.14021 +v -0.00749 0.12333 0.22863 +v -0.00583 0.12336 0.23056 +v -0.00435 0.12552 0.20373 +v -0.01229 0.12444 0.22074 +v -0.01016 0.12573 0.20577 +v -0.00917 0.12589 0.20534 +v -0.00394 0.12568 0.20424 +v 0.08436 0.12487 0.14024 +v 0.08298 0.12519 0.13741 +v 0.09068 0.12502 0.14488 +v 0.09078 0.12503 0.14319 +v 0.07942 0.12492 0.13247 +v 0.07804 0.12504 0.13005 +v 0.06762 0.12507 0.12881 +v 0.06442 0.12513 0.12729 +v 0.06350 0.12516 0.12702 +v 0.06237 0.12467 0.12920 +v 0.06180 0.12450 0.12944 +v 0.04586 0.12481 0.13129 +v 0.04980 0.12486 0.12632 +v 0.04471 0.12469 0.12807 +v 0.05658 0.12502 0.12941 +v 0.05559 0.12508 0.13007 +v 0.05873 0.12480 0.12790 +v 0.05477 0.12506 0.12944 +v 0.03820 0.12459 0.13510 +v 0.04185 0.12472 0.13395 +v 0.04019 0.12451 0.13505 +v 0.03039 0.12526 0.14510 +v 0.03057 0.12527 0.14611 +v 0.03193 0.12503 0.14826 +v 0.03274 0.12471 0.14897 +v 0.03405 0.12476 0.13602 +v 0.03246 0.12476 0.13815 +v 0.09463 0.12440 0.15291 +v 0.09408 0.12457 0.15064 +v 0.09348 0.12471 0.14940 +v -0.00719 0.12365 0.22595 +v -0.00710 0.12331 0.22998 +v -0.00519 0.12520 0.20331 +v -0.01143 0.12430 0.22250 +v -0.00595 0.12581 0.20532 +v -0.00998 0.12577 0.20491 +v -0.00834 0.12598 0.20477 +v -0.00465 0.12581 0.20440 +v 0.08357 0.12514 0.13845 +v 0.09247 0.12481 0.14697 +v 0.09296 0.12482 0.14497 +v 0.08881 0.12472 0.13994 +v 0.08969 0.12485 0.14183 +v 0.08497 0.12479 0.13978 +v 0.07577 0.12512 0.12928 +v 0.07213 0.12513 0.12878 +v 0.08459 0.12536 0.13543 +v 0.08278 0.12510 0.13325 +v 0.07028 0.12518 0.12976 +v 0.06926 0.12509 0.12898 +v 0.06648 0.12511 0.12791 +v 0.06199 0.12490 0.12799 +v 0.05979 0.12475 0.12833 +v 0.06027 0.12486 0.12753 +v 0.04676 0.12447 0.12321 +v 0.04576 0.12446 0.12315 +v 0.05319 0.12476 0.12562 +v 0.05460 0.12493 0.12809 +v 0.03691 0.12467 0.13457 +v 0.03925 0.12453 0.13484 +v 0.04158 0.12475 0.13093 +v 0.02940 0.12485 0.14141 +v 0.03090 0.12517 0.14764 +v 0.03584 0.12462 0.13389 +v 0.02930 0.12458 0.13875 +v 0.09365 0.12466 0.14819 +v -0.01000 0.12379 0.22574 +v -0.00984 0.12348 0.22806 +v -0.00752 0.12324 0.23089 +v -0.00846 0.12327 0.22997 +v -0.00447 0.12576 0.20405 +v -0.00532 0.12561 0.20357 +v -0.01324 0.12449 0.22193 +v -0.00695 0.12620 0.20436 +v -0.00537 0.12589 0.20450 +v -0.01092 0.12564 0.20481 +v -0.00911 0.12584 0.20457 +v -0.00757 0.12608 0.20438 +v 0.08496 0.12532 0.13623 +v 0.09130 0.12488 0.14182 +v 0.07925 0.12501 0.12970 +v 0.07907 0.12492 0.12804 +v 0.07091 0.12512 0.12906 +v 0.08391 0.12516 0.13260 +v 0.08217 0.12516 0.13144 +v 0.06818 0.12499 0.12739 +v 0.06732 0.12509 0.12765 +v 0.06482 0.12510 0.12605 +v 0.06165 0.12498 0.12727 +v 0.04908 0.12459 0.12264 +v 0.04407 0.12447 0.12365 +v 0.05504 0.12473 0.12660 +v 0.05090 0.12477 0.12416 +v 0.05535 0.12513 0.12928 +v 0.05836 0.12474 0.12640 +v 0.03760 0.12476 0.13376 +v 0.04073 0.12467 0.13339 +v 0.02899 0.12514 0.14545 +v 0.02763 0.12488 0.14413 +v 0.02983 0.12523 0.14719 +v 0.03184 0.12455 0.14931 +v 0.03040 0.12503 0.14831 +v 0.03101 0.12464 0.13548 +v 0.03288 0.12462 0.13414 +v 0.02899 0.12445 0.13689 +v 0.09497 0.12459 0.14932 +v -0.00506 0.12580 0.20397 +v -0.00654 0.12567 0.20356 +v -0.01408 0.12441 0.22286 +v -0.01201 0.12399 0.22459 +v -0.00615 0.12600 0.20461 +v -0.00998 0.12559 0.20423 +v -0.00852 0.12579 0.20416 +v -0.00777 0.12597 0.20412 +v -0.00500 0.12588 0.20425 +v 0.08646 0.12501 0.13694 +v 0.09393 0.12476 0.14634 +v 0.09353 0.12475 0.14216 +v 0.09048 0.12484 0.14068 +v 0.08801 0.12486 0.13741 +v 0.08257 0.12521 0.12960 +v 0.07899 0.12463 0.12550 +v 0.07541 0.12479 0.12564 +v 0.07024 0.12495 0.12731 +v 0.08517 0.12535 0.13513 +v 0.06612 0.12502 0.12619 +v 0.06313 0.12499 0.12397 +v 0.05971 0.12486 0.12493 +v 0.04171 0.12472 0.12870 +v 0.04633 0.12429 0.12189 +v 0.04452 0.12457 0.12188 +v 0.04091 0.12443 0.12457 +v 0.05502 0.12469 0.12525 +v 0.05445 0.12475 0.12373 +v 0.05613 0.12489 0.12768 +v 0.05679 0.12474 0.12595 +v 0.03878 0.12480 0.13314 +v 0.03968 0.12472 0.13176 +v 0.03962 0.12472 0.13292 +v 0.02615 0.12462 0.14128 +v 0.03479 0.12449 0.13240 +v 0.02662 0.12422 0.13782 +v -0.01272 0.12351 0.22725 +v -0.01042 0.12321 0.23055 +v -0.00881 0.12312 0.23103 +v -0.00601 0.12594 0.20404 +v -0.01530 0.12489 0.22133 +v -0.00723 0.12593 0.20389 +v -0.01123 0.12529 0.20388 +v 0.09041 0.12494 0.13901 +v 0.08981 0.12490 0.13803 +v 0.09159 0.12481 0.14028 +v 0.08071 0.12503 0.12787 +v 0.07252 0.12464 0.12429 +v 0.08550 0.12514 0.13274 +v 0.06844 0.12460 0.12470 +v 0.06146 0.12491 0.12370 +v 0.03975 0.12480 0.12853 +v 0.04979 0.12452 0.12184 +v 0.04273 0.12445 0.12212 +v 0.05288 0.12476 0.12306 +v 0.05641 0.12483 0.12294 +v 0.03803 0.12486 0.13242 +v 0.02763 0.12507 0.14624 +v 0.02616 0.12484 0.14413 +v 0.02931 0.12512 0.14790 +v 0.02943 0.12488 0.14863 +v 0.02877 0.12440 0.13550 +v 0.03012 0.12420 0.13189 +v 0.03193 0.12399 0.13012 +v 0.03699 0.12479 0.13171 +v 0.02704 0.12410 0.13641 +v 0.09622 0.12460 0.14780 +v -0.01293 0.12325 0.23029 +v -0.00669 0.12602 0.20398 +v -0.01581 0.12489 0.22161 +v -0.01523 0.12427 0.22351 +v -0.01510 0.12369 0.22619 +v -0.00959 0.12532 0.20374 +v -0.00827 0.12559 0.20381 +v 0.08753 0.12491 0.13508 +v 0.09608 0.12471 0.14309 +v 0.09069 0.12489 0.13607 +v 0.09272 0.12466 0.14008 +v 0.08229 0.12495 0.12687 +v 0.07653 0.12466 0.12386 +v 0.08105 0.12491 0.12595 +v 0.07430 0.12462 0.12338 +v 0.08453 0.12513 0.13099 +v 0.08706 0.12497 0.13352 +v 0.06524 0.12479 0.12370 +v 0.06299 0.12480 0.12219 +v 0.04068 0.12462 0.12692 +v 0.04629 0.12416 0.12125 +v 0.05223 0.12473 0.12231 +v 0.04134 0.12457 0.12200 +v 0.05454 0.12471 0.12196 +v 0.03748 0.12476 0.13004 +v 0.02819 0.12509 0.14770 +v 0.02538 0.12500 0.14573 +v 0.02321 0.12476 0.14267 +v 0.02515 0.12424 0.13863 +v 0.02688 0.12414 0.13399 +v 0.02797 0.12411 0.13165 +v 0.03337 0.12405 0.12921 +v 0.03715 0.12478 0.13028 +v 0.02625 0.12403 0.13576 +v 0.09656 0.12468 0.14456 +v -0.01479 0.12320 0.23037 +v -0.01259 0.12320 0.23111 +v -0.01697 0.12475 0.22114 +v -0.01650 0.12345 0.22811 +v 0.08894 0.12481 0.13579 +v 0.09589 0.12464 0.14083 +v 0.09087 0.12497 0.13883 +v 0.09129 0.12487 0.13762 +v 0.09380 0.12448 0.13932 +v 0.08476 0.12492 0.12776 +v 0.07828 0.12471 0.12332 +v 0.08017 0.12480 0.12499 +v 0.06827 0.12439 0.12263 +v 0.06778 0.12444 0.12366 +v 0.08717 0.12495 0.13145 +v 0.08712 0.12484 0.12880 +v 0.06488 0.12476 0.12245 +v 0.06065 0.12475 0.12185 +v 0.05937 0.12485 0.12206 +v 0.03724 0.12443 0.12526 +v 0.03987 0.12456 0.12277 +v 0.03754 0.12457 0.12759 +v 0.02719 0.12500 0.14756 +v 0.02592 0.12502 0.14701 +v 0.02429 0.12465 0.14164 +v 0.02831 0.12485 0.14855 +v 0.02477 0.12406 0.13639 +v 0.02918 0.12374 0.12812 +v 0.03063 0.12395 0.12970 +v 0.03112 0.12388 0.12828 +v 0.09711 0.12449 0.14723 +v -0.01365 0.12303 0.23148 +v -0.01709 0.12453 0.22247 +v -0.01769 0.12381 0.22539 +v 0.08893 0.12469 0.13409 +v 0.09702 0.12460 0.14374 +v 0.09643 0.12466 0.14171 +v 0.08965 0.12466 0.13435 +v 0.09218 0.12480 0.13624 +v 0.08517 0.12487 0.12598 +v 0.08233 0.12498 0.12509 +v 0.07986 0.12481 0.12285 +v 0.07734 0.12466 0.12219 +v 0.07613 0.12458 0.12230 +v 0.08084 0.12496 0.12487 +v 0.07109 0.12453 0.12193 +v 0.08843 0.12481 0.13296 +v 0.06706 0.12445 0.12261 +v 0.06518 0.12473 0.12178 +v 0.05917 0.12474 0.12102 +v 0.03472 0.12439 0.12410 +v 0.03879 0.12445 0.12337 +v 0.03539 0.12431 0.12829 +v 0.03598 0.12430 0.12739 +v 0.02758 0.12503 0.14796 +v 0.02409 0.12495 0.14569 +v 0.02266 0.12475 0.14323 +v 0.02157 0.12468 0.13945 +v 0.02352 0.12430 0.13847 +v 0.02510 0.12393 0.13055 +v 0.02571 0.12387 0.12897 +v 0.03210 0.12399 0.12763 +v 0.02412 0.12399 0.13347 +v -0.01749 0.12327 0.23060 +v -0.01556 0.12295 0.23187 +v -0.01673 0.12408 0.22418 +v -0.01803 0.12460 0.22185 +v -0.01963 0.12363 0.22622 +v 0.09732 0.12447 0.14292 +v 0.09676 0.12435 0.13845 +v 0.09604 0.12434 0.13804 +v 0.09132 0.12483 0.13504 +v 0.09494 0.12444 0.13519 +v 0.07907 0.12486 0.12194 +v 0.07480 0.12460 0.12186 +v 0.08059 0.12486 0.12383 +v 0.07290 0.12460 0.12239 +v 0.06791 0.12438 0.12105 +v 0.08903 0.12490 0.13108 +v 0.06587 0.12462 0.12115 +v 0.06062 0.12450 0.12059 +v 0.03647 0.12443 0.12647 +v 0.03511 0.12440 0.12584 +v 0.03833 0.12451 0.12215 +v 0.02545 0.12485 0.14777 +v 0.02723 0.12462 0.14861 +v 0.02427 0.12490 0.14711 +v 0.02124 0.12478 0.13994 +v 0.02218 0.12411 0.13439 +v 0.02955 0.12360 0.12623 +v -0.01920 0.12334 0.22899 +v -0.01477 0.12272 0.23269 +v -0.01858 0.12442 0.22304 +v -0.01951 0.12398 0.22479 +v 0.09715 0.12445 0.14102 +v 0.09740 0.12431 0.13930 +v 0.09431 0.12444 0.13763 +v 0.09198 0.12487 0.13356 +v 0.09437 0.12461 0.13320 +v 0.08773 0.12474 0.12703 +v 0.08613 0.12491 0.12347 +v 0.08284 0.12495 0.12342 +v 0.08036 0.12473 0.12197 +v 0.07702 0.12457 0.12035 +v 0.07659 0.12454 0.12169 +v 0.07304 0.12472 0.12120 +v 0.07108 0.12458 0.12034 +v 0.08939 0.12478 0.12728 +v 0.06493 0.12466 0.12099 +v 0.06072 0.12446 0.11986 +v 0.03336 0.12430 0.12423 +v 0.03550 0.12444 0.12306 +v 0.03413 0.12426 0.12696 +v 0.02285 0.12476 0.14633 +v 0.02244 0.12472 0.14468 +v 0.02032 0.12481 0.13918 +v 0.02158 0.12446 0.13714 +v 0.02121 0.12432 0.13514 +v 0.02326 0.12377 0.12791 +v 0.02373 0.12384 0.13132 +v 0.02744 0.12369 0.12580 +v 0.03041 0.12368 0.12602 +v 0.02207 0.12382 0.13176 +v -0.01948 0.12312 0.23101 +v -0.01700 0.12267 0.23314 +v -0.01994 0.12425 0.22308 +v -0.01961 0.12417 0.22419 +v -0.02205 0.12323 0.22915 +v -0.02115 0.12395 0.22437 +v 0.09732 0.12418 0.13746 +v 0.09678 0.12420 0.13610 +v 0.09081 0.12496 0.13142 +v 0.09678 0.12450 0.13328 +v 0.08870 0.12490 0.12409 +v 0.07997 0.12462 0.12091 +v 0.07779 0.12439 0.11905 +v 0.06851 0.12447 0.12035 +v 0.09123 0.12503 0.12995 +v 0.06690 0.12453 0.12043 +v 0.06617 0.12459 0.11976 +v 0.03303 0.12416 0.12661 +v 0.03308 0.12428 0.12320 +v 0.02473 0.12475 0.14808 +v 0.02589 0.12454 0.14858 +v 0.02258 0.12463 0.14738 +v 0.02073 0.12455 0.14363 +v 0.01972 0.12482 0.14014 +v 0.02024 0.12429 0.13388 +v 0.02269 0.12371 0.13054 +v 0.02477 0.12385 0.12655 +v 0.02879 0.12367 0.12445 +v 0.02061 0.12400 0.13255 +v -0.01854 0.12457 0.22091 +v -0.02357 0.12360 0.22608 +v 0.09179 0.12502 0.12962 +v 0.09617 0.12447 0.13051 +v 0.08803 0.12506 0.12211 +v 0.08373 0.12491 0.12189 +v 0.08100 0.12462 0.12103 +v 0.08113 0.12415 0.11870 +v 0.07447 0.12463 0.11942 +v 0.07228 0.12463 0.11948 +v 0.06993 0.12458 0.11919 +v 0.09130 0.12496 0.12810 +v 0.03212 0.12408 0.12483 +v 0.03185 0.12422 0.12267 +v 0.02314 0.12445 0.14833 +v 0.02143 0.12470 0.14605 +v 0.02057 0.12470 0.14203 +v 0.01902 0.12498 0.13858 +v 0.01880 0.12499 0.13611 +v 0.01768 0.12488 0.13417 +v 0.02153 0.12366 0.12967 +v 0.02446 0.12397 0.12475 +v 0.03083 0.12376 0.12518 +v 0.01971 0.12383 0.13106 +v -0.01927 0.12242 0.23368 +v -0.02133 0.12295 0.23120 +v -0.02032 0.12423 0.22186 +v -0.02502 0.12340 0.22724 +v -0.02298 0.12379 0.22513 +v 0.09741 0.12409 0.13625 +v 0.09347 0.12475 0.12955 +v 0.09770 0.12411 0.13529 +v 0.09087 0.12494 0.12641 +v 0.08603 0.12492 0.12235 +v 0.08947 0.12494 0.12294 +v 0.08481 0.12489 0.12191 +v 0.08286 0.12487 0.12168 +v 0.02936 0.12406 0.12218 +v 0.02451 0.12438 0.14880 +v 0.02153 0.12440 0.14842 +v 0.02090 0.12465 0.14729 +v 0.02031 0.12472 0.14621 +v 0.01930 0.12450 0.14291 +v 0.01861 0.12493 0.13908 +v 0.01864 0.12453 0.14083 +v 0.01892 0.12421 0.13246 +v 0.02147 0.12363 0.12825 +v 0.02201 0.12412 0.12333 +v 0.02590 0.12407 0.12276 +v 0.02966 0.12398 0.12315 +v -0.02030 0.12248 0.23353 +v -0.01806 0.12238 0.23385 +v -0.02282 0.12297 0.23117 +v -0.02143 0.12409 0.22327 +v -0.02559 0.12353 0.22464 +v -0.02372 0.12322 0.22935 +v -0.02291 0.12392 0.22385 +v 0.09225 0.12493 0.12805 +v 0.09660 0.12441 0.12914 +v 0.09106 0.12500 0.12388 +v 0.08761 0.12499 0.12110 +v 0.08532 0.12468 0.12014 +v 0.08218 0.12462 0.12063 +v 0.07272 0.12449 0.11824 +v 0.07034 0.12458 0.11736 +v 0.06979 0.12460 0.11802 +v 0.09209 0.12495 0.12690 +v 0.02258 0.12400 0.14927 +v 0.01880 0.12449 0.14349 +v 0.01917 0.12448 0.14210 +v 0.01769 0.12494 0.13761 +v 0.01776 0.12507 0.13638 +v 0.01778 0.12457 0.13307 +v 0.01911 0.12362 0.12821 +v 0.02037 0.12394 0.12464 +v 0.02457 0.12413 0.12303 +v 0.02843 0.12393 0.12287 +v 0.01916 0.12364 0.12922 +v 0.01729 0.12383 0.13029 +v -0.01888 0.12213 0.23455 +v -0.02148 0.12424 0.22206 +v -0.02436 0.12364 0.22453 +v -0.02888 0.12360 0.22524 +v -0.02992 0.12353 0.22861 +v 0.09438 0.12466 0.12728 +v 0.09213 0.12487 0.12569 +v 0.08626 0.12481 0.12081 +v 0.09181 0.12483 0.12243 +v 0.08418 0.12450 0.11949 +v 0.08266 0.12417 0.11861 +v 0.06874 0.12454 0.11741 +v 0.03019 0.12399 0.12095 +v 0.02033 0.12450 0.14849 +v 0.01971 0.12469 0.14756 +v 0.01777 0.12465 0.14676 +v 0.01756 0.12483 0.13840 +v 0.01765 0.12445 0.14012 +v 0.01744 0.12432 0.14121 +v 0.01681 0.12497 0.13472 +v 0.01686 0.12487 0.13388 +v 0.01526 0.12434 0.13119 +v 0.02097 0.12399 0.12221 +v 0.02447 0.12414 0.12209 +v 0.02797 0.12408 0.12193 +v 0.01607 0.12415 0.13095 +v -0.02166 0.12222 0.23471 +v -0.02322 0.12303 0.23108 +v -0.02264 0.12412 0.22283 +v -0.02156 0.12445 0.21917 +v -0.02496 0.12361 0.22353 +v -0.02665 0.12378 0.22299 +v -0.02745 0.12327 0.23066 +v -0.02382 0.12383 0.22356 +v 0.08735 0.12479 0.11859 +v 0.08580 0.12463 0.11896 +v 0.08445 0.12437 0.11819 +v 0.08283 0.12403 0.11763 +v 0.06949 0.12437 0.11689 +v 0.09325 0.12466 0.12441 +v 0.02858 0.12410 0.12089 +v 0.01531 0.12466 0.14660 +v 0.01654 0.12456 0.13756 +v 0.01642 0.12491 0.13579 +v 0.01652 0.12471 0.13314 +v 0.01583 0.12455 0.13229 +v 0.01894 0.12390 0.12483 +v 0.01730 0.12371 0.12881 +v 0.02275 0.12405 0.12191 +v 0.01962 0.12390 0.12256 +v 0.02665 0.12415 0.12140 +v 0.01590 0.12392 0.13013 +v -0.01993 0.12168 0.23579 +v -0.01938 0.12186 0.23530 +v -0.02483 0.12272 0.23273 +v -0.02516 0.12304 0.23146 +v -0.02258 0.12435 0.22186 +v -0.02869 0.12405 0.22143 +v -0.03127 0.12353 0.22789 +v -0.03044 0.12345 0.22940 +v 0.02939 0.12400 0.12007 +v 0.03048 0.12378 0.11959 +v 0.01929 0.12465 0.14844 +v 0.01594 0.12458 0.14784 +v 0.01578 0.12450 0.14465 +v 0.01512 0.12417 0.14193 +v 0.01706 0.12450 0.13914 +v 0.01584 0.12473 0.13613 +v 0.01721 0.12428 0.14036 +v 0.01589 0.12479 0.13408 +v 0.01609 0.12490 0.13488 +v 0.01516 0.12451 0.13202 +v 0.01474 0.12420 0.13030 +v 0.01688 0.12387 0.12674 +v 0.02158 0.12394 0.12154 +v 0.02033 0.12399 0.12136 +v 0.02517 0.12414 0.12094 +v 0.01639 0.12378 0.12999 +v -0.02083 0.12170 0.23571 +v -0.02332 0.12211 0.23502 +v -0.02496 0.12377 0.22294 +v -0.02314 0.12446 0.22062 +v -0.02624 0.12414 0.22124 +v -0.03311 0.12404 0.22069 +v -0.03259 0.12353 0.22590 +v -0.02787 0.12308 0.23155 +v 0.02826 0.12405 0.11990 +v 0.01771 0.12462 0.14754 +v 0.01459 0.12473 0.14730 +v 0.01646 0.12422 0.13982 +v 0.01547 0.12423 0.13735 +v 0.01570 0.12415 0.13779 +v 0.01544 0.12468 0.13504 +v 0.01564 0.12469 0.13313 +v 0.01502 0.12454 0.13282 +v 0.01443 0.12427 0.13110 +v 0.01686 0.12393 0.12315 +v 0.01593 0.12396 0.12441 +v 0.01514 0.12399 0.12777 +v 0.02013 0.12401 0.12119 +v 0.02380 0.12398 0.12062 +v 0.01473 0.12406 0.12941 +v -0.02171 0.12191 0.23538 +v -0.02447 0.12237 0.23401 +v -0.02571 0.12461 0.21648 +v -0.02425 0.12441 0.22078 +v -0.02760 0.12439 0.21915 +v -0.03264 0.12347 0.22899 +v -0.03209 0.12312 0.23053 +v 0.02918 0.12382 0.11911 +v 0.01815 0.12447 0.14858 +v 0.01495 0.12460 0.14812 +v 0.01704 0.12440 0.14841 +v 0.01179 0.12422 0.14396 +v 0.01321 0.12458 0.14571 +v 0.01466 0.12393 0.13983 +v 0.01472 0.12432 0.13629 +v 0.01408 0.12409 0.13017 +v 0.01348 0.12419 0.12633 +v 0.02112 0.12372 0.12024 +v 0.02495 0.12403 0.12027 +v 0.02713 0.12385 0.11925 +v -0.02605 0.12232 0.23398 +v -0.02542 0.12187 0.23519 +v -0.02515 0.12451 0.21916 +v -0.03555 0.12357 0.22434 +v -0.03254 0.12338 0.22959 +v -0.03380 0.12331 0.22762 +v -0.03025 0.12265 0.23297 +v 0.01418 0.12470 0.14780 +v 0.01541 0.12432 0.14874 +v 0.01351 0.12382 0.13931 +v 0.01225 0.12470 0.14705 +v 0.01543 0.12404 0.13823 +v 0.01489 0.12447 0.13436 +v 0.01338 0.12391 0.13249 +v 0.01328 0.12378 0.13057 +v 0.01624 0.12393 0.12194 +v 0.01364 0.12407 0.12345 +v 0.01427 0.12406 0.12849 +v -0.03825 0.12380 0.22218 +v -0.03537 0.12323 0.22706 +v -0.03347 0.12308 0.23047 +v -0.03478 0.12306 0.22859 +v -0.03210 0.12266 0.23294 +v 0.01416 0.12447 0.14859 +v 0.01303 0.12471 0.14804 +v 0.00989 0.12422 0.14358 +v 0.01111 0.12433 0.14540 +v 0.01096 0.12452 0.14640 +v 0.01451 0.12385 0.13886 +v 0.01410 0.12412 0.13638 +v 0.01398 0.12410 0.13495 +v 0.01419 0.12420 0.13368 +v 0.01325 0.12377 0.13176 +v 0.01339 0.12398 0.12885 +v 0.01365 0.12409 0.12142 +v 0.01773 0.12391 0.12040 +v 0.01214 0.12409 0.12373 +v 0.01348 0.12413 0.12755 +v 0.01883 0.12389 0.12027 +v -0.02979 0.12208 0.23467 +v -0.02673 0.12170 0.23562 +v -0.03848 0.12339 0.22602 +v -0.03804 0.12422 0.21798 +v -0.03377 0.12319 0.22976 +v -0.03515 0.12302 0.22914 +v -0.03252 0.12300 0.23100 +v -0.03151 0.12225 0.23443 +v 0.01381 0.12468 0.14816 +v 0.01480 0.12418 0.14906 +v 0.00983 0.12397 0.14035 +v 0.00972 0.12466 0.14739 +v 0.01197 0.12476 0.14780 +v 0.01095 0.12383 0.13887 +v 0.01298 0.12388 0.13678 +v 0.01353 0.12392 0.13571 +v 0.01171 0.12347 0.13160 +v 0.01317 0.12388 0.13395 +v 0.01214 0.12339 0.13039 +v 0.01213 0.12350 0.12960 +v 0.01609 0.12387 0.12097 +v 0.01209 0.12409 0.12246 +v 0.01186 0.12407 0.12452 +v 0.01292 0.12422 0.12695 +v -0.02735 0.12169 0.23576 +v -0.04262 0.12368 0.22410 +v -0.04186 0.12424 0.21854 +v -0.03685 0.12302 0.22840 +v -0.03464 0.12307 0.23036 +v -0.03463 0.12274 0.23383 +v 0.01388 0.12399 0.14926 +v 0.00851 0.12448 0.14648 +v 0.00730 0.12424 0.14162 +v 0.01143 0.12468 0.14846 +v 0.01227 0.12377 0.13519 +v 0.01165 0.12363 0.13351 +v 0.01269 0.12398 0.12800 +v 0.01093 0.12395 0.12311 +v -0.03114 0.12172 0.23562 +v -0.02962 0.12161 0.23568 +v -0.04048 0.12342 0.22765 +v -0.04152 0.12459 0.21380 +v -0.03704 0.12308 0.23127 +v -0.03632 0.12306 0.23048 +v -0.03495 0.12291 0.23245 +v -0.03211 0.12207 0.23516 +v 0.01257 0.12456 0.14873 +v 0.00798 0.12444 0.14553 +v 0.00762 0.12389 0.13814 +v 0.00703 0.12450 0.14406 +v 0.01046 0.12375 0.13642 +v 0.01146 0.12333 0.13025 +v 0.00924 0.12341 0.13262 +v 0.01215 0.12408 0.12672 +v 0.01016 0.12400 0.12192 +v 0.00974 0.12356 0.12438 +v -0.04418 0.12352 0.22753 +v -0.04422 0.12394 0.22196 +v -0.04407 0.12462 0.21583 +v -0.03844 0.12315 0.22969 +v 0.01183 0.12442 0.14902 +v 0.00764 0.12446 0.14669 +v 0.00766 0.12453 0.14749 +v 0.00476 0.12472 0.14369 +v 0.00440 0.12437 0.14109 +v 0.01011 0.12466 0.14826 +v 0.00981 0.12327 0.13030 +v 0.01056 0.12334 0.12842 +v 0.01108 0.12360 0.12759 +v 0.00864 0.12373 0.12193 +v 0.01084 0.12369 0.12617 +v -0.04264 0.12346 0.22939 +v -0.04541 0.12352 0.22554 +v -0.04433 0.12424 0.21951 +v -0.04555 0.12365 0.22408 +v -0.04409 0.12472 0.21448 +v -0.04457 0.12446 0.21732 +v -0.03915 0.12313 0.23042 +v 0.00660 0.12465 0.14604 +v 0.00718 0.12451 0.14658 +v 0.00913 0.12468 0.14794 +v 0.00641 0.12357 0.13475 +v 0.00525 0.12490 0.14541 +v 0.00101 0.12448 0.14154 +v 0.01045 0.12461 0.14870 +v 0.01102 0.12447 0.14909 +v 0.00595 0.12332 0.13008 +v 0.00800 0.12346 0.12369 +v 0.00950 0.12334 0.12783 +v -0.04441 0.12349 0.22900 +v -0.04652 0.12342 0.22730 +v -0.04666 0.12407 0.22145 +v -0.04418 0.12480 0.21191 +v -0.04564 0.12492 0.21484 +v -0.04536 0.12465 0.21626 +v 0.00837 0.12456 0.14838 +v 0.00250 0.12361 0.13412 +v 0.00409 0.12502 0.14540 +v 0.00284 0.12472 0.14322 +v -0.00063 0.12403 0.13752 +v 0.00911 0.12457 0.14857 +v 0.00966 0.12430 0.14905 +v 0.00664 0.12336 0.12502 +v 0.00817 0.12367 0.12185 +v -0.04648 0.12348 0.22896 +v -0.04327 0.12335 0.23028 +v -0.04774 0.12340 0.22546 +v -0.04696 0.12418 0.22043 +v -0.04622 0.12427 0.21796 +v -0.04742 0.12390 0.22225 +v -0.04571 0.12487 0.21354 +v -0.04647 0.12452 0.21657 +v 0.00634 0.12466 0.14727 +v 0.00553 0.12489 0.14672 +v 0.00708 0.12451 0.14785 +v 0.00305 0.12492 0.14521 +v 0.00489 0.12501 0.14707 +v -0.00037 0.12479 0.14433 +v -0.00287 0.12448 0.14154 +v -0.04500 0.12346 0.22969 +v -0.04802 0.12331 0.22856 +v -0.04781 0.12329 0.22694 +v -0.04704 0.12433 0.21726 +v -0.04602 0.12481 0.21180 +v -0.04614 0.12484 0.21541 +v -0.04658 0.12501 0.21424 +v 0.00775 0.12436 0.14869 +v 0.00845 0.12425 0.14898 +v 0.00145 0.12348 0.13076 +v -0.00148 0.12379 0.13317 +v 0.00373 0.12493 0.14677 +v 0.00868 0.12346 0.14976 +v 0.00272 0.12337 0.12805 +v -0.04691 0.12337 0.23019 +v -0.04769 0.12332 0.22986 +v -0.04930 0.12330 0.22609 +v -0.04873 0.12379 0.22211 +v -0.04804 0.12422 0.22049 +v -0.04725 0.12424 0.21850 +v -0.04737 0.12483 0.21130 +v -0.04687 0.12477 0.21317 +v -0.04679 0.12494 0.21430 +v -0.04775 0.12429 0.21690 +v 0.00599 0.12457 0.14801 +v 0.00710 0.12435 0.14851 +v 0.00222 0.12485 0.14690 +v 0.00446 0.12498 0.14718 +v -0.00070 0.12487 0.14619 +v 0.00154 0.12350 0.12595 +v -0.05005 0.12324 0.22819 +v -0.04946 0.12313 0.23070 +v -0.05022 0.12351 0.22426 +v -0.04871 0.12394 0.22152 +v -0.04823 0.12452 0.21502 +v 0.00477 0.12486 0.14765 +v 0.00731 0.12391 0.14921 +v -0.00131 0.12376 0.13011 +v 0.00041 0.12349 0.12856 +v -0.00437 0.12386 0.13355 +v 0.00320 0.12454 0.14813 +v 0.00418 0.12478 0.14772 +v -0.04771 0.12318 0.23090 +v -0.05234 0.12345 0.22645 +v -0.05005 0.12386 0.22178 +v -0.04896 0.12411 0.22023 +v -0.04855 0.12420 0.21863 +v -0.04868 0.12467 0.21346 +v -0.04763 0.12473 0.21368 +v -0.04962 0.12441 0.21531 +v 0.00615 0.12423 0.14879 +v 0.00463 0.12456 0.14831 +v -0.00262 0.12398 0.13125 +v -0.00576 0.12381 0.13416 +v -0.00349 0.12398 0.13200 +v 0.00143 0.12477 0.14756 +v -0.00022 0.12351 0.12749 +v -0.05113 0.12316 0.22956 +v -0.05010 0.12294 0.23222 +v -0.05220 0.12364 0.22380 +v -0.05136 0.12488 0.21146 +v 0.00627 0.12379 0.14939 +v -0.00120 0.12366 0.12816 +v -0.00331 0.12413 0.12908 +v -0.00571 0.12385 0.13115 +v -0.00467 0.12394 0.13190 +v -0.00209 0.12381 0.12569 +v -0.05510 0.12338 0.22598 +v -0.05345 0.12334 0.22799 +v -0.05060 0.12404 0.22004 +v -0.05095 0.12423 0.21779 +v -0.04989 0.12508 0.20934 +v 0.00427 0.12395 0.14939 +v -0.00399 0.12421 0.13051 +v -0.00674 0.12376 0.13086 +v -0.05493 0.12288 0.23122 +v -0.05525 0.12387 0.22065 +v -0.05367 0.12470 0.21312 +v -0.05185 0.12517 0.20953 +v -0.00260 0.12387 0.12725 +v -0.00437 0.12420 0.12835 +v -0.00656 0.12375 0.13035 +v -0.00414 0.12394 0.12594 +v -0.05894 0.12367 0.22129 +v -0.05713 0.12304 0.22867 +v -0.05386 0.12410 0.21880 +v -0.05296 0.12499 0.21098 +v -0.05170 0.12525 0.20764 +v -0.00515 0.12421 0.12879 +v -0.00690 0.12374 0.13037 +v -0.05923 0.12349 0.22323 +v -0.05872 0.12413 0.21841 +v -0.05740 0.12319 0.22653 +v -0.05617 0.12443 0.21675 +v -0.05496 0.12449 0.21525 +v -0.05407 0.12486 0.21146 +v -0.05301 0.12529 0.20977 +v -0.05337 0.12546 0.20895 +v -0.00580 0.12411 0.12777 +v -0.00634 0.12402 0.12848 +v -0.00767 0.12387 0.12851 +v -0.05824 0.12295 0.23034 +v -0.06061 0.12365 0.22208 +v -0.05985 0.12406 0.21905 +v -0.05855 0.12299 0.22731 +v -0.05557 0.12466 0.21153 +v -0.05369 0.12540 0.20933 +v -0.05891 0.12299 0.22910 +v -0.06049 0.12328 0.22471 +v -0.05680 0.12447 0.21624 +v -0.05945 0.12436 0.21530 +v -0.05673 0.12452 0.21325 +v -0.05520 0.12509 0.20949 +v -0.05988 0.12308 0.23005 +v -0.05871 0.12288 0.23176 +v -0.06088 0.12392 0.22065 +v -0.06270 0.12344 0.22299 +v -0.06188 0.12441 0.21467 +v -0.06004 0.12295 0.22787 +v -0.06094 0.12307 0.22988 +v -0.05924 0.12304 0.23089 +v -0.06325 0.12384 0.22056 +v -0.06374 0.12428 0.21874 +v -0.06277 0.12314 0.22499 +v -0.06323 0.12436 0.21685 +v -0.06090 0.12301 0.22666 +v -0.06008 0.12322 0.23091 +v -0.05958 0.12306 0.23137 +v -0.06429 0.12349 0.22321 +v -0.06246 0.12283 0.22680 +v -0.06562 0.12382 0.22120 +v -0.06123 0.12292 0.22787 +v -0.06081 0.12312 0.23101 +v -0.06059 0.12294 0.23198 +v -0.06438 0.12403 0.21989 +v -0.06487 0.12447 0.21825 +v -0.06261 0.12285 0.22822 +v -0.06310 0.12311 0.23097 +v -0.06726 0.12331 0.22660 +v -0.06875 0.12368 0.22458 +v -0.06586 0.12397 0.21973 +v -0.06248 0.12279 0.22790 +v -0.06246 0.12310 0.23020 +v -0.06536 0.12415 0.21915 +v -0.06432 0.12296 0.22755 +v -0.06863 0.12385 0.22196 +v -0.06653 0.12390 0.22053 +v -0.06278 0.12281 0.22735 +v -0.06451 0.12302 0.22990 +v -0.06496 0.12302 0.23124 +v -0.06602 0.12416 0.21812 +v -0.07079 0.12327 0.22705 +v -0.06712 0.12313 0.22832 +v -0.07209 0.12383 0.22115 +v -0.06677 0.12391 0.21881 +v -0.06704 0.12382 0.21921 +v -0.06695 0.12312 0.23024 +v -0.06719 0.12301 0.23191 +v -0.07444 0.12344 0.22462 +v -0.06908 0.12305 0.22924 +v -0.06765 0.12386 0.22002 +v -0.07002 0.12393 0.21910 +v -0.06732 0.12417 0.21631 +v -0.07289 0.12330 0.22633 +v -0.07181 0.12310 0.22929 +v -0.07187 0.12397 0.21857 +v -0.07523 0.12368 0.22233 +v -0.06789 0.12390 0.21880 +v -0.06846 0.12303 0.23231 +v -0.06791 0.12310 0.23188 +v -0.07750 0.12305 0.22838 +v -0.07144 0.12305 0.23070 +v -0.06850 0.12309 0.23130 +v -0.07428 0.12386 0.22050 +v -0.07057 0.12308 0.23283 +v -0.06905 0.12409 0.21654 +v -0.07408 0.12297 0.22932 +v -0.07251 0.12297 0.23170 +v -0.07036 0.12310 0.23250 +v -0.07319 0.12396 0.21794 +v -0.07559 0.12377 0.22006 +v -0.07972 0.12324 0.22597 +v -0.06688 0.12430 0.21394 +v -0.07637 0.12299 0.23007 +v -0.07390 0.12296 0.23133 +v -0.07269 0.12421 0.21573 +v -0.07112 0.12420 0.21624 +v -0.07805 0.12352 0.22309 +v -0.07883 0.12297 0.22870 +v -0.07320 0.12279 0.23308 +v -0.06819 0.12437 0.21320 +v -0.07809 0.12289 0.23130 +v -0.07487 0.12387 0.21654 +v -0.07222 0.12446 0.21344 +v -0.07756 0.12371 0.21961 +v -0.08051 0.12277 0.22878 +v -0.07948 0.12349 0.22135 +v -0.07693 0.12291 0.23193 +v -0.07442 0.12293 0.23198 +v -0.07433 0.12424 0.21472 +v -0.07983 0.12279 0.23123 +v -0.08181 0.12293 0.22737 +v -0.08082 0.12326 0.22535 +v -0.06993 0.12451 0.21218 +v -0.07634 0.12409 0.21502 +v -0.07854 0.12385 0.21753 +v -0.08165 0.12367 0.21749 +v -0.08092 0.12281 0.23063 +v -0.08167 0.12283 0.22915 +v -0.08165 0.12324 0.22445 +v -0.07191 0.12471 0.21134 +v -0.06875 0.12464 0.21092 +v -0.07386 0.12437 0.21334 +v -0.07531 0.12426 0.21444 +v -0.08194 0.12337 0.22184 +v -0.08334 0.12286 0.22848 +v -0.07126 0.12474 0.20999 +v -0.07303 0.12454 0.21229 +v -0.06993 0.12464 0.21068 +v -0.07649 0.12414 0.21372 +v -0.08308 0.12352 0.21912 +v -0.08276 0.12298 0.23175 +v -0.08233 0.12296 0.23062 +v -0.08335 0.12299 0.22627 +v -0.08305 0.12287 0.22979 +v -0.08407 0.12316 0.22279 +v -0.07238 0.12489 0.20931 +v -0.07311 0.12466 0.21124 +v -0.07065 0.12466 0.20672 +v -0.07549 0.12418 0.21147 +v -0.07887 0.12404 0.21339 +v -0.08401 0.12388 0.21483 +v -0.08241 0.12271 0.23306 +v -0.08435 0.12278 0.22936 +v -0.08515 0.12300 0.22711 +v -0.07221 0.12491 0.20852 +v -0.07289 0.12485 0.20950 +v -0.07436 0.12445 0.21051 +v -0.07985 0.12415 0.21215 +v -0.08472 0.12352 0.21917 +v -0.08276 0.12405 0.21274 +v -0.08508 0.12373 0.21697 +v -0.08316 0.12297 0.23133 +v -0.08349 0.12281 0.23250 +v -0.08639 0.12299 0.22467 +v -0.08415 0.12281 0.23129 +v -0.07167 0.12475 0.20771 +v -0.07265 0.12503 0.20867 +v -0.07344 0.12478 0.20873 +v -0.07554 0.12430 0.21037 +v -0.07718 0.12433 0.20970 +v -0.08782 0.12352 0.21964 +v -0.08455 0.12417 0.21225 +v -0.08596 0.12375 0.21585 +v -0.08714 0.12278 0.22829 +v -0.07199 0.12464 0.20618 +v -0.07269 0.12497 0.20845 +v -0.07262 0.12489 0.20805 +v -0.07377 0.12470 0.20796 +v -0.07859 0.12448 0.20863 +v -0.08163 0.12435 0.21019 +v -0.08652 0.12372 0.21809 +v -0.08330 0.12435 0.21056 +v -0.08749 0.12290 0.22518 +v -0.08665 0.12253 0.23056 +v -0.07072 0.12450 0.20563 +v -0.07412 0.12469 0.20686 +v -0.07616 0.12442 0.20847 +v -0.07743 0.12457 0.20716 +v -0.08056 0.12459 0.20853 +v -0.08930 0.12361 0.21787 +v -0.08393 0.12441 0.21058 +v -0.08723 0.12374 0.21488 +v -0.08799 0.12367 0.21734 +v -0.08934 0.12292 0.22469 +v -0.08866 0.12261 0.23015 +v -0.08773 0.12242 0.23258 +v -0.08939 0.12282 0.22756 +v -0.07181 0.12435 0.20530 +v -0.07289 0.12475 0.20702 +v -0.07866 0.12452 0.20717 +v -0.08274 0.12437 0.20885 +v -0.08171 0.12443 0.20876 +v -0.09041 0.12335 0.22038 +v -0.08768 0.12406 0.21133 +v -0.07267 0.12459 0.20556 +v -0.07328 0.12466 0.20594 +v -0.07523 0.12469 0.20665 +v -0.07787 0.12455 0.20650 +v -0.08070 0.12445 0.20700 +v -0.08280 0.12430 0.20747 +v -0.09211 0.12354 0.21634 +v -0.09034 0.12381 0.21528 +v -0.08663 0.12445 0.20887 +v -0.08502 0.12454 0.20835 +v -0.09078 0.12413 0.20959 +v -0.08987 0.12388 0.21294 +v -0.09198 0.12275 0.22643 +v -0.09284 0.12333 0.22049 +v -0.09039 0.12263 0.23003 +v -0.09041 0.12236 0.23258 +v -0.07281 0.12441 0.20515 +v -0.07464 0.12469 0.20594 +v -0.07656 0.12477 0.20601 +v -0.07871 0.12443 0.20645 +v -0.07725 0.12463 0.20606 +v -0.08968 0.12383 0.21471 +v -0.09151 0.12300 0.22371 +v -0.09194 0.12269 0.22908 +v -0.09007 0.12248 0.23107 +v -0.07324 0.12453 0.20544 +v -0.07417 0.12446 0.20531 +v -0.07570 0.12482 0.20540 +v -0.07803 0.12436 0.20590 +v -0.08178 0.12420 0.20633 +v -0.09417 0.12343 0.21776 +v -0.09208 0.12366 0.21442 +v -0.09129 0.12380 0.21331 +v -0.08668 0.12451 0.20789 +v -0.08926 0.12447 0.20728 +v -0.08299 0.12419 0.20652 +v -0.09174 0.12399 0.21132 +v -0.09273 0.12276 0.22571 +v -0.09523 0.12261 0.22832 +v -0.09581 0.12300 0.22281 +v -0.09272 0.12261 0.23140 +v -0.09136 0.12181 0.23557 +v -0.07633 0.12475 0.20530 +v -0.07726 0.12428 0.20538 +v -0.09469 0.12324 0.22066 +v -0.08559 0.12446 0.20721 +v -0.09135 0.12414 0.20615 +v -0.09409 0.12374 0.20955 +v -0.07514 0.12439 0.20491 +v -0.07588 0.12459 0.20502 +v -0.09594 0.12322 0.21879 +v -0.09488 0.12346 0.21694 +v -0.09421 0.12363 0.21114 +v -0.08667 0.12448 0.20670 +v -0.08953 0.12423 0.20556 +v -0.09259 0.12398 0.20724 +v -0.08631 0.12433 0.20594 +v -0.09485 0.12285 0.22481 +v -0.09602 0.12244 0.23114 +v -0.09668 0.12310 0.22075 +v -0.09384 0.12199 0.23502 +v -0.09311 0.12172 0.23608 +v -0.07654 0.12457 0.20515 +v -0.09442 0.12356 0.21492 +v -0.09494 0.12348 0.21258 +v -0.08797 0.12437 0.20561 +v -0.08987 0.12413 0.20492 +v -0.09285 0.12409 0.20560 +v -0.09515 0.12356 0.21109 +v -0.09681 0.12271 0.22632 +v -0.09651 0.12250 0.22957 +v -0.09505 0.12234 0.23248 +v -0.09703 0.12299 0.22197 +v -0.09623 0.12333 0.21700 +v -0.09960 0.12305 0.21873 +v -0.09577 0.12340 0.21537 +v -0.08834 0.12414 0.20504 +v -0.08923 0.12390 0.20432 +v -0.09130 0.12406 0.20500 +v -0.09646 0.12364 0.21001 +v -0.09972 0.12289 0.22517 +v -0.09916 0.12272 0.22686 +v -0.09932 0.12248 0.22960 +v -0.09598 0.12224 0.23340 +v -0.10087 0.12305 0.22158 +v -0.09395 0.12179 0.23602 +v -0.09370 0.12162 0.23647 +v -0.09662 0.12327 0.21539 +v -0.09812 0.12323 0.21724 +v -0.09571 0.12346 0.21401 +v -0.09644 0.12347 0.21279 +v -0.08668 0.12406 0.20512 +v -0.09043 0.12395 0.20433 +v -0.09283 0.12404 0.20416 +v -0.09700 0.12358 0.21179 +v -0.09897 0.12246 0.23021 +v -0.09805 0.12252 0.23191 +v -0.10138 0.12307 0.21840 +v -0.10024 0.12313 0.21606 +v -0.09743 0.12337 0.21345 +v -0.08970 0.12333 0.20297 +v -0.09142 0.12377 0.20340 +v -0.10019 0.12343 0.21079 +v -0.10075 0.12263 0.22675 +v -0.10231 0.12240 0.22861 +v -0.10218 0.12282 0.22317 +v -0.09912 0.12320 0.21479 +v -0.10289 0.12288 0.22200 +v -0.10012 0.12358 0.20888 +v -0.10303 0.12244 0.23170 +v -0.10563 0.12298 0.21901 +v -0.10257 0.12323 0.21496 +v -0.10203 0.12318 0.21220 +v -0.10248 0.12335 0.21091 +v -0.10336 0.12231 0.22598 +v -0.10411 0.12235 0.23071 +v -0.10562 0.12248 0.22364 +v -0.10557 0.12280 0.22066 +v -0.10496 0.12316 0.21645 +v -0.10384 0.12343 0.20882 +v -0.10405 0.12225 0.22755 +v -0.10591 0.12223 0.23082 +v -0.10589 0.12207 0.23268 +v -0.10739 0.12297 0.21864 +v -0.10782 0.12308 0.21714 +v -0.10348 0.12321 0.21427 +v -0.10385 0.12325 0.21251 +v -0.10151 0.12355 0.20733 +v -0.10461 0.12334 0.21074 +v -0.10558 0.12218 0.22702 +v -0.10676 0.12254 0.22147 +v -0.10729 0.12305 0.21539 +v -0.10638 0.12307 0.21393 +v -0.10436 0.12349 0.20701 +v -0.10520 0.12332 0.20864 +v -0.10724 0.12235 0.22492 +v -0.10811 0.12210 0.23165 +v -0.10753 0.12236 0.22269 +v -0.10793 0.12255 0.22042 +v -0.10908 0.12274 0.21810 +v -0.10876 0.12291 0.21575 +v -0.10513 0.12319 0.21235 +v -0.10381 0.12351 0.20569 +v -0.10610 0.12316 0.21048 +v -0.10810 0.12216 0.23048 +v -0.10811 0.12220 0.22723 +v -0.10900 0.12244 0.22027 +v -0.10998 0.12264 0.21696 +v -0.11067 0.12277 0.21427 +v -0.10670 0.12307 0.20796 +v -0.10539 0.12334 0.20595 +v -0.10731 0.12304 0.21051 +v -0.11002 0.12217 0.22885 +v -0.10910 0.12231 0.22519 +v -0.11025 0.12223 0.22447 +v -0.11039 0.12208 0.23234 +v -0.10998 0.12216 0.23120 +v -0.10942 0.12237 0.22146 +v -0.11030 0.12259 0.21826 +v -0.10638 0.12302 0.21200 +v -0.11105 0.12269 0.21546 +v -0.10435 0.12354 0.20458 +v -0.11058 0.12216 0.22681 +v -0.11091 0.12247 0.22028 +v -0.11307 0.12237 0.21869 +v -0.10856 0.12292 0.21247 +v -0.11290 0.12270 0.21376 +v -0.10764 0.12309 0.20693 +v -0.10795 0.12297 0.20852 +v -0.10606 0.12335 0.20550 +v -0.10284 0.12357 0.20381 +v -0.11116 0.12211 0.22940 +v -0.11171 0.12243 0.22167 +v -0.11124 0.12219 0.23160 +v -0.11277 0.12230 0.22108 +v -0.11081 0.12276 0.21312 +v -0.11445 0.12245 0.21604 +v -0.10934 0.12303 0.21113 +v -0.10576 0.12366 0.20388 +v -0.10525 0.12368 0.20345 +v -0.11294 0.12205 0.22489 +v -0.11501 0.12201 0.22671 +v -0.11302 0.12210 0.22410 +v -0.11479 0.12161 0.23572 +v -0.11529 0.12226 0.21931 +v -0.11127 0.12286 0.21068 +v -0.11562 0.12256 0.21322 +v -0.10771 0.12326 0.20530 +v -0.10968 0.12291 0.20722 +v -0.10510 0.12359 0.20143 +v -0.11256 0.12211 0.23156 +v -0.11434 0.12193 0.22937 +v -0.11418 0.12280 0.21153 +v -0.11649 0.12248 0.21474 +v -0.11730 0.12228 0.21734 +v -0.11043 0.12306 0.20421 +v -0.11108 0.12285 0.20881 +v -0.10638 0.12362 0.20293 +v -0.10777 0.12344 0.20365 +v -0.10153 0.12348 0.20191 +v -0.11506 0.12205 0.22400 +v -0.11672 0.12193 0.22784 +v -0.11576 0.12165 0.23528 +v -0.11596 0.12211 0.22193 +v -0.11396 0.12286 0.20714 +v -0.11603 0.12268 0.20968 +v -0.11821 0.12244 0.21209 +v -0.11904 0.12223 0.21806 +v -0.10969 0.12321 0.20315 +v -0.11331 0.12295 0.20338 +v -0.10658 0.12361 0.20165 +v -0.10338 0.12355 0.19955 +v -0.11725 0.12172 0.23240 +v -0.11719 0.12190 0.22378 +v -0.11870 0.12170 0.23074 +v -0.11659 0.12191 0.22571 +v -0.11769 0.12221 0.22090 +v -0.11771 0.12242 0.21118 +v -0.11845 0.12247 0.21532 +v -0.11929 0.12249 0.21346 +v -0.11951 0.12233 0.21675 +v -0.11909 0.12229 0.21966 +v -0.11100 0.12306 0.20238 +v -0.11418 0.12294 0.20433 +v -0.10789 0.12361 0.20203 +v -0.10524 0.12338 0.19824 +v -0.10264 0.12360 0.19893 +v -0.11851 0.12178 0.22974 +v -0.12086 0.12191 0.22703 +v -0.11805 0.12158 0.23419 +v -0.11645 0.12275 0.20685 +v -0.11750 0.12254 0.21020 +v -0.11907 0.12255 0.21034 +v -0.12026 0.12255 0.20988 +v -0.12056 0.12213 0.21754 +v -0.12034 0.12211 0.21891 +v -0.10985 0.12325 0.20204 +v -0.11164 0.12307 0.20049 +v -0.11510 0.12304 0.20244 +v -0.11658 0.12284 0.20527 +v -0.10820 0.12370 0.20104 +v -0.10678 0.12346 0.19976 +v -0.12043 0.12162 0.23208 +v -0.11875 0.12193 0.22430 +v -0.12050 0.12157 0.23041 +v -0.12001 0.12189 0.22804 +v -0.12130 0.12186 0.22538 +v -0.12021 0.12219 0.22188 +v -0.11764 0.12273 0.20798 +v -0.12026 0.12255 0.21526 +v -0.12061 0.12242 0.21215 +v -0.12086 0.12218 0.22140 +v -0.11101 0.12305 0.20153 +v -0.10667 0.12335 0.19805 +v -0.10431 0.12363 0.19655 +v -0.12242 0.12189 0.22739 +v -0.12203 0.12195 0.22696 +v -0.12194 0.12145 0.23357 +v -0.11877 0.12260 0.20653 +v -0.11993 0.12263 0.20908 +v -0.12022 0.12244 0.21356 +v -0.12138 0.12232 0.21011 +v -0.12118 0.12231 0.21548 +v -0.12148 0.12209 0.22124 +v -0.11007 0.12322 0.19999 +v -0.10879 0.12356 0.20093 +v -0.11377 0.12311 0.19931 +v -0.11762 0.12285 0.20488 +v -0.10804 0.12360 0.20029 +v -0.10656 0.12341 0.19632 +v -0.10826 0.12337 0.19882 +v -0.10247 0.12372 0.19750 +v -0.10532 0.12368 0.19535 +v -0.12115 0.12153 0.23125 +v -0.12109 0.12197 0.22403 +v -0.12113 0.12172 0.22866 +v -0.11965 0.12264 0.20747 +v -0.12142 0.12220 0.21300 +v -0.12079 0.12255 0.20762 +v -0.12212 0.12221 0.20920 +v -0.12166 0.12212 0.21157 +v -0.12230 0.12206 0.21418 +v -0.11176 0.12306 0.19882 +v -0.11790 0.12291 0.20024 +v -0.11046 0.12316 0.19968 +v -0.11766 0.12296 0.20274 +v -0.10847 0.12323 0.19671 +v -0.10097 0.12367 0.19797 +v -0.10278 0.12383 0.19519 +v -0.12359 0.12134 0.23047 +v -0.12160 0.12153 0.22942 +v -0.12282 0.12155 0.22872 +v -0.11911 0.12295 0.20466 +v -0.11999 0.12265 0.20652 +v -0.12286 0.12176 0.21097 +v -0.12259 0.12171 0.21220 +v -0.10873 0.12359 0.20032 +v -0.11399 0.12306 0.19807 +v -0.10950 0.12328 0.19912 +v -0.10674 0.12341 0.19423 +v -0.11053 0.12305 0.19769 +v -0.10176 0.12378 0.19580 +v -0.10378 0.12379 0.19393 +v -0.11968 0.12281 0.20536 +v -0.12294 0.12180 0.21334 +v -0.12200 0.12263 0.20643 +v -0.11203 0.12298 0.19692 +v -0.11688 0.12305 0.19639 +v -0.11900 0.12299 0.20230 +v -0.10535 0.12363 0.19379 +v -0.10735 0.12339 0.19260 +v -0.10057 0.12363 0.19520 +v -0.10161 0.12389 0.19431 +v -0.10213 0.12399 0.19396 +v -0.12022 0.12289 0.20440 +v -0.12290 0.12241 0.20746 +v -0.12456 0.12187 0.20901 +v -0.11349 0.12311 0.19452 +v -0.12006 0.12309 0.19767 +v -0.11992 0.12304 0.20133 +v -0.10444 0.12380 0.19166 +v -0.09886 0.12326 0.19297 +v -0.10235 0.12396 0.19271 +v -0.12244 0.12261 0.20607 +v -0.11072 0.12330 0.19328 +v -0.11496 0.12312 0.19174 +v -0.12038 0.12307 0.19948 +v -0.11840 0.12312 0.19600 +v -0.10592 0.12369 0.19056 +v -0.10192 0.12400 0.19351 +v -0.10194 0.12407 0.19375 +v -0.12119 0.12278 0.20380 +v -0.12364 0.12233 0.20626 +v -0.11202 0.12335 0.19242 +v -0.11352 0.12324 0.19138 +v -0.11576 0.12312 0.19031 +v -0.12060 0.12310 0.19897 +v -0.12039 0.12313 0.19678 +v -0.11985 0.12328 0.19160 +v -0.12041 0.12304 0.20067 +v -0.10781 0.12366 0.18976 +v -0.10440 0.12380 0.19034 +v -0.10827 0.12341 0.19225 +v -0.09951 0.12331 0.19167 +v -0.10171 0.12391 0.19236 +v -0.10266 0.12390 0.19200 +v -0.12268 0.12257 0.20432 +v -0.11134 0.12359 0.19103 +v -0.11423 0.12313 0.18883 +v -0.12122 0.12303 0.19687 +v -0.12111 0.12294 0.19978 +v -0.12066 0.12323 0.19606 +v -0.12040 0.12331 0.19257 +v -0.12072 0.12303 0.20038 +v -0.10584 0.12385 0.18897 +v -0.12253 0.12250 0.20342 +v -0.11164 0.12351 0.18930 +v -0.11548 0.12309 0.18699 +v -0.11888 0.12327 0.19066 +v -0.12142 0.12297 0.19819 +v -0.12069 0.12334 0.19449 +v -0.12012 0.12330 0.19379 +v -0.12103 0.12322 0.19140 +v -0.12150 0.12270 0.20221 +v -0.12108 0.12290 0.20071 +v -0.10950 0.12363 0.19064 +v -0.10646 0.12389 0.18688 +v -0.10402 0.12389 0.18898 +v -0.10337 0.12374 0.18999 +v -0.10029 0.12334 0.19079 +v -0.10211 0.12375 0.19123 +v -0.12378 0.12210 0.20326 +v -0.11250 0.12346 0.18795 +v -0.11401 0.12320 0.18708 +v -0.11755 0.12324 0.18907 +v -0.12045 0.12332 0.19034 +v -0.12254 0.12263 0.19741 +v -0.12125 0.12322 0.19505 +v -0.12075 0.12327 0.19341 +v -0.10961 0.12365 0.18930 +v -0.10742 0.12379 0.18683 +v -0.10497 0.12395 0.18481 +v -0.10376 0.12393 0.18850 +v -0.12280 0.12223 0.20134 +v -0.11028 0.12370 0.18747 +v -0.11503 0.12310 0.18574 +v -0.11750 0.12322 0.18682 +v -0.11939 0.12344 0.18923 +v -0.12317 0.12256 0.19550 +v -0.12391 0.12197 0.20004 +v -0.12139 0.12312 0.19311 +v -0.12218 0.12287 0.19539 +v -0.12154 0.12314 0.19020 +v -0.10309 0.12366 0.18902 +v -0.10235 0.12343 0.18938 +v -0.10132 0.12340 0.19025 +v -0.12376 0.12197 0.20164 +v -0.11199 0.12355 0.18535 +v -0.11320 0.12335 0.18589 +v -0.11635 0.12315 0.18509 +v -0.11912 0.12345 0.18790 +v -0.12001 0.12360 0.18842 +v -0.12465 0.12201 0.19734 +v -0.12282 0.12258 0.19304 +v -0.12089 0.12341 0.18925 +v -0.12177 0.12307 0.19160 +v -0.10711 0.12372 0.18397 +v -0.10353 0.12388 0.18635 +v -0.10333 0.12388 0.18776 +v -0.10007 0.12296 0.18890 +v -0.12491 0.12152 0.20116 +v -0.11126 0.12360 0.18484 +v -0.11525 0.12321 0.18459 +v -0.11903 0.12342 0.18399 +v -0.11939 0.12340 0.18644 +v -0.12538 0.12199 0.19505 +v -0.12498 0.12163 0.19992 +v -0.12388 0.12229 0.19156 +v -0.12175 0.12310 0.18954 +v -0.12308 0.12266 0.19048 +v -0.10590 0.12391 0.18323 +v -0.10396 0.12396 0.18395 +v -0.10260 0.12346 0.18854 +v -0.10271 0.12350 0.18900 +v -0.10102 0.12288 0.18845 +v -0.11357 0.12368 0.18342 +v -0.11794 0.12351 0.18244 +v -0.11432 0.12356 0.18345 +v -0.11956 0.12342 0.18523 +v -0.12015 0.12348 0.18723 +v -0.12087 0.12354 0.18836 +v -0.12423 0.12230 0.19415 +v -0.12374 0.12235 0.19308 +v -0.12137 0.12331 0.18854 +v -0.10362 0.12399 0.18287 +v -0.10650 0.12375 0.18132 +v -0.10261 0.12360 0.18640 +v -0.10349 0.12388 0.18468 +v -0.10223 0.12333 0.18750 +v -0.10119 0.12280 0.18789 +v -0.10822 0.12354 0.18171 +v -0.11123 0.12357 0.18249 +v -0.11569 0.12348 0.18285 +v -0.12035 0.12351 0.18457 +v -0.12039 0.12347 0.18328 +v -0.12035 0.12340 0.18645 +v -0.12063 0.12345 0.18554 +v -0.12058 0.12355 0.18774 +v -0.12544 0.12195 0.19418 +v -0.12444 0.12211 0.19208 +v -0.12230 0.12283 0.18884 +v -0.12416 0.12223 0.18966 +v -0.10425 0.12397 0.18182 +v -0.10220 0.12357 0.18456 +v -0.10286 0.12385 0.18302 +v -0.11320 0.12359 0.18156 +v -0.11449 0.12359 0.18222 +v -0.11642 0.12356 0.18076 +v -0.11982 0.12357 0.18222 +v -0.12094 0.12330 0.18649 +v -0.12144 0.12317 0.18675 +v -0.12175 0.12306 0.18795 +v -0.12501 0.12214 0.19335 +v -0.12584 0.12163 0.19136 +v -0.12475 0.12214 0.19305 +v -0.12327 0.12244 0.18865 +v -0.12557 0.12177 0.19035 +v -0.10341 0.12403 0.18132 +v -0.10709 0.12371 0.18075 +v -0.10467 0.12398 0.18033 +v -0.10096 0.12302 0.18580 +v -0.10143 0.12300 0.18693 +v -0.10131 0.12283 0.18765 +v -0.11098 0.12362 0.18030 +v -0.11824 0.12370 0.18034 +v -0.12134 0.12340 0.18437 +v -0.12104 0.12352 0.18496 +v -0.12008 0.12402 0.17886 +v -0.12182 0.12336 0.18217 +v -0.12555 0.12179 0.19252 +v -0.12261 0.12252 0.18772 +v -0.12430 0.12221 0.18813 +v -0.12513 0.12197 0.18931 +v -0.10578 0.12402 0.17936 +v -0.10858 0.12364 0.17992 +v -0.10164 0.12347 0.18278 +v -0.10229 0.12380 0.18196 +v -0.10033 0.12282 0.18629 +v -0.11273 0.12368 0.18047 +v -0.11389 0.12360 0.18083 +v -0.11512 0.12354 0.18051 +v -0.11687 0.12361 0.17909 +v -0.12190 0.12330 0.18301 +v -0.12142 0.12334 0.18528 +v -0.12057 0.12389 0.18021 +v -0.12134 0.12382 0.18030 +v -0.12266 0.12289 0.18548 +v -0.12221 0.12280 0.18729 +v -0.12291 0.12242 0.18744 +v -0.10354 0.12398 0.17986 +v -0.10684 0.12406 0.17882 +v -0.10596 0.12406 0.17816 +v -0.10293 0.12394 0.18037 +v -0.10862 0.12376 0.17878 +v -0.11281 0.12389 0.17923 +v -0.11546 0.12340 0.17903 +v -0.12283 0.12302 0.18384 +v -0.12105 0.12399 0.17911 +v -0.12191 0.12364 0.18071 +v -0.12265 0.12317 0.18199 +v -0.12271 0.12272 0.18650 +v -0.12414 0.12244 0.18606 +v -0.10008 0.12294 0.18092 +v -0.10156 0.12356 0.17939 +v -0.11035 0.12385 0.17768 +v -0.11204 0.12396 0.17774 +v -0.11347 0.12377 0.17983 +v -0.11430 0.12363 0.17980 +v -0.11723 0.12381 0.17698 +v -0.11577 0.12350 0.17821 +v -0.12033 0.12406 0.17770 +v -0.12208 0.12370 0.17947 +v -0.10304 0.12391 0.17884 +v -0.10736 0.12393 0.17694 +v -0.10807 0.12388 0.17790 +v -0.10921 0.12383 0.17738 +v -0.11318 0.12400 0.17840 +v -0.11347 0.12396 0.17909 +v -0.11491 0.12348 0.17871 +v -0.11892 0.12401 0.17660 +v -0.12146 0.12392 0.17890 +v -0.12119 0.12393 0.17773 +v -0.10431 0.12377 0.17610 +v -0.10611 0.12390 0.17613 +v -0.09924 0.12270 0.17903 +v -0.10105 0.12353 0.17745 +v -0.11026 0.12386 0.17490 +v -0.11236 0.12404 0.17657 +v -0.11328 0.12400 0.17724 +v -0.11612 0.12381 0.17557 +v -0.11536 0.12356 0.17713 +v -0.12069 0.12403 0.17641 +v -0.11978 0.12406 0.17601 +v -0.12339 0.12312 0.17858 +v -0.10354 0.12369 0.17636 +v -0.10663 0.12394 0.17453 +v -0.10765 0.12392 0.17524 +v -0.10904 0.12384 0.17527 +v -0.10024 0.12316 0.17838 +v -0.10134 0.12352 0.17676 +v -0.11416 0.12383 0.17678 +v -0.11637 0.12392 0.17407 +v -0.12155 0.12383 0.17705 +v -0.12029 0.12398 0.17369 +v -0.10280 0.12349 0.17453 +v -0.10531 0.12382 0.17411 +v -0.10017 0.12319 0.17695 +v -0.10014 0.12322 0.17746 +v -0.11337 0.12404 0.17507 +v -0.10934 0.12388 0.17403 +v -0.11468 0.12387 0.17518 +v -0.11899 0.12401 0.17347 +v -0.12190 0.12374 0.17527 +v -0.12108 0.12390 0.17428 +v -0.12292 0.12328 0.17675 +v -0.12351 0.12317 0.17647 +v -0.10197 0.12343 0.17588 +v -0.10352 0.12364 0.17453 +v -0.10254 0.12345 0.17535 +v -0.10791 0.12410 0.17353 +v -0.10759 0.12411 0.17248 +v -0.10092 0.12310 0.17573 +v -0.11072 0.12369 0.17084 +v -0.10990 0.12380 0.17337 +v -0.11393 0.12398 0.17292 +v -0.11627 0.12392 0.17272 +v -0.12082 0.12408 0.17186 +v -0.12179 0.12394 0.17204 +v -0.10287 0.12360 0.17344 +v -0.10176 0.12318 0.17470 +v -0.10372 0.12372 0.17344 +v -0.10538 0.12379 0.17206 +v -0.09998 0.12263 0.17552 +v -0.09898 0.12252 0.17658 +v -0.11349 0.12400 0.17417 +v -0.10813 0.12414 0.17308 +v -0.10914 0.12390 0.17308 +v -0.11805 0.12408 0.17120 +v -0.10180 0.12317 0.17373 +v -0.10701 0.12400 0.17194 +v -0.10018 0.12239 0.17453 +v -0.11251 0.12383 0.17061 +v -0.10990 0.12363 0.17047 +v -0.10907 0.12382 0.17216 +v -0.11499 0.12384 0.17166 +v -0.11304 0.12391 0.17193 +v -0.11569 0.12385 0.17085 +v -0.12144 0.12402 0.17098 +v -0.12014 0.12417 0.17079 +v -0.10209 0.12339 0.17310 +v -0.10347 0.12380 0.17237 +v -0.10842 0.12411 0.17247 +v -0.10674 0.12392 0.17059 +v -0.10781 0.12402 0.17164 +v -0.09915 0.12213 0.17469 +v -0.11097 0.12366 0.16850 +v -0.11740 0.12412 0.16931 +v -0.11908 0.12430 0.16873 +v -0.10021 0.12243 0.17219 +v -0.10263 0.12374 0.17228 +v -0.10054 0.12246 0.17363 +v -0.10460 0.12382 0.16924 +v -0.10580 0.12391 0.16884 +v -0.10777 0.12396 0.17083 +v -0.09975 0.12209 0.17355 +v -0.11436 0.12368 0.17035 +v -0.11168 0.12368 0.16800 +v -0.11013 0.12366 0.16799 +v -0.10925 0.12369 0.17036 +v -0.10856 0.12391 0.17162 +v -0.11499 0.12377 0.17003 +v -0.12086 0.12425 0.16961 +v -0.10175 0.12340 0.17210 +v -0.10294 0.12395 0.17101 +v -0.10361 0.12390 0.17058 +v -0.10746 0.12397 0.16965 +v -0.11303 0.12375 0.16912 +v -0.11228 0.12374 0.16593 +v -0.11021 0.12365 0.16639 +v -0.11507 0.12387 0.16868 +v -0.11760 0.12414 0.16769 +v -0.12057 0.12418 0.16785 +v -0.10004 0.12224 0.17289 +v -0.10201 0.12375 0.17093 +v -0.10464 0.12370 0.16690 +v -0.10363 0.12392 0.16954 +v -0.10674 0.12408 0.16796 +v -0.10841 0.12388 0.16986 +v -0.11375 0.12375 0.16884 +v -0.11309 0.12364 0.16695 +v -0.11101 0.12375 0.16419 +v -0.10933 0.12378 0.16811 +v -0.10940 0.12368 0.16687 +v -0.11934 0.12411 0.16614 +v -0.12141 0.12394 0.16731 +v -0.09928 0.12211 0.17205 +v -0.10251 0.12415 0.17019 +v -0.10550 0.12394 0.16593 +v -0.10383 0.12374 0.16823 +v -0.10276 0.12411 0.16983 +v -0.10770 0.12414 0.16802 +v -0.11294 0.12364 0.16417 +v -0.11354 0.12370 0.16551 +v -0.10843 0.12401 0.16801 +v -0.10947 0.12361 0.16585 +v -0.11629 0.12387 0.16301 +v -0.12093 0.12400 0.16633 +v -0.10207 0.12393 0.16968 +v -0.10425 0.12383 0.16530 +v -0.10279 0.12375 0.16579 +v -0.10641 0.12411 0.16668 +v -0.10729 0.12428 0.16696 +v -0.11477 0.12382 0.16525 +v -0.11269 0.12368 0.16280 +v -0.10879 0.12389 0.16729 +v -0.10947 0.12368 0.16484 +v -0.10908 0.12367 0.16642 +v -0.11933 0.12404 0.16430 +v -0.12077 0.12402 0.16504 +v -0.10604 0.12402 0.16476 +v -0.10294 0.12376 0.16648 +v -0.10313 0.12385 0.16811 +v -0.10768 0.12426 0.16697 +v -0.10969 0.12374 0.16307 +v -0.10858 0.12382 0.16500 +v -0.11781 0.12393 0.16060 +v -0.10236 0.12390 0.16815 +v -0.10278 0.12385 0.16475 +v -0.10353 0.12384 0.16439 +v -0.10189 0.12364 0.16563 +v -0.10698 0.12414 0.16582 +v -0.10761 0.12421 0.16625 +v -0.11180 0.12360 0.15948 +v -0.11010 0.12365 0.16099 +v -0.10823 0.12404 0.16646 +v -0.10762 0.12399 0.16467 +v -0.10746 0.12395 0.16339 +v -0.12093 0.12409 0.16329 +v -0.11995 0.12409 0.16180 +v -0.11509 0.12383 0.16085 +v -0.10182 0.12381 0.16854 +v -0.10594 0.12387 0.16160 +v -0.10679 0.12401 0.16429 +v -0.10773 0.12411 0.16586 +v -0.11966 0.12395 0.15959 +v -0.11687 0.12401 0.15917 +v -0.10226 0.12373 0.16457 +v -0.10319 0.12374 0.16357 +v -0.11335 0.12378 0.15808 +v -0.10889 0.12364 0.15885 +v -0.10775 0.12393 0.16150 +v -0.12118 0.12401 0.16144 +v -0.12249 0.12401 0.16316 +v -0.11806 0.12391 0.15815 +v -0.11564 0.12396 0.15951 +v -0.10091 0.12328 0.16563 +v -0.10170 0.12346 0.16397 +v -0.10697 0.12394 0.16065 +v -0.10551 0.12368 0.15986 +v -0.11142 0.12368 0.15784 +v -0.11502 0.12396 0.15808 +v -0.12188 0.12390 0.16212 +v -0.11621 0.12410 0.15881 +v -0.10022 0.12296 0.16656 +v -0.10261 0.12337 0.16175 +v -0.10261 0.12322 0.16047 +v -0.11265 0.12373 0.15686 +v -0.11421 0.12379 0.15641 +v -0.10797 0.12368 0.15639 +v -0.10707 0.12372 0.15911 +v -0.12258 0.12395 0.16165 +v -0.11898 0.12387 0.15618 +v -0.11709 0.12385 0.15612 +v -0.09993 0.12282 0.16524 +v -0.09966 0.12264 0.16805 +v -0.10157 0.12290 0.16098 +v -0.10348 0.12329 0.15832 +v -0.11082 0.12366 0.15688 +v -0.11544 0.12397 0.15709 +v -0.10671 0.12366 0.15812 +v -0.10992 0.12364 0.15591 +v -0.12317 0.12390 0.16130 +v -0.12077 0.12387 0.15634 +v -0.09923 0.12258 0.16639 +v -0.10006 0.12288 0.16935 +v -0.10097 0.12287 0.16238 +v -0.10559 0.12361 0.15865 +v -0.10253 0.12319 0.15940 +v -0.11147 0.12351 0.15573 +v -0.11246 0.12348 0.15537 +v -0.11521 0.12372 0.15488 +v -0.10603 0.12356 0.15529 +v -0.10803 0.12357 0.15468 +v -0.12187 0.12378 0.15489 +v -0.12211 0.12376 0.15619 +v -0.11644 0.12372 0.15493 +v -0.09909 0.12247 0.16730 +v -0.09881 0.12247 0.16888 +v -0.10055 0.12242 0.16091 +v -0.10142 0.12282 0.15982 +v -0.10428 0.12325 0.15705 +v -0.10258 0.12335 0.15760 +v -0.11354 0.12359 0.15468 +v -0.10534 0.12349 0.15628 +v -0.10957 0.12352 0.15456 +v -0.12056 0.12384 0.15419 +v -0.11832 0.12384 0.15446 +v -0.09864 0.12238 0.16789 +v -0.09801 0.12238 0.16647 +v -0.10341 0.12322 0.15716 +v -0.10146 0.12305 0.15846 +v -0.10201 0.12322 0.15832 +v -0.11080 0.12327 0.15413 +v -0.11482 0.12374 0.15352 +v -0.10478 0.12351 0.15495 +v -0.10495 0.12352 0.15363 +v -0.10909 0.12348 0.15302 +v -0.11680 0.12385 0.15283 +v -0.09744 0.12232 0.16799 +v -0.10025 0.12232 0.15936 +v -0.10392 0.12314 0.15627 +v -0.10381 0.12313 0.15681 +v -0.10183 0.12342 0.15725 +v -0.10270 0.12335 0.15679 +v -0.10405 0.12335 0.15530 +v -0.10627 0.12334 0.15041 +v -0.10984 0.12345 0.15363 +v -0.11918 0.12393 0.15293 +v -0.12086 0.12387 0.15297 +v -0.10339 0.12313 0.15639 +v -0.10223 0.12351 0.15699 +v -0.11465 0.12383 0.15234 +v -0.10293 0.12322 0.15487 +v -0.10519 0.12349 0.15242 +v -0.11053 0.12341 0.15319 +v -0.10858 0.12340 0.15119 +v -0.11787 0.12388 0.15114 +v -0.10335 0.12324 0.15539 +v -0.10090 0.12318 0.15703 +v -0.10204 0.12358 0.15701 +v -0.10265 0.12332 0.15592 +v -0.10225 0.12345 0.15635 +v -0.11175 0.12348 0.15284 +v -0.11529 0.12378 0.15176 +v -0.10384 0.12350 0.15216 +v -0.10525 0.12346 0.15017 +v -0.11004 0.12335 0.15107 +v -0.10682 0.12338 0.14859 +v -0.11062 0.12344 0.15228 +v -0.12068 0.12406 0.15073 +v -0.12131 0.12394 0.15181 +v -0.10159 0.12342 0.15624 +v -0.11151 0.12353 0.15186 +v -0.11375 0.12373 0.15082 +v -0.10399 0.12356 0.15031 +v -0.10925 0.12345 0.14995 +v -0.12205 0.12393 0.15052 +v -0.11459 0.12359 0.15035 +v -0.12032 0.12384 0.14810 +v -0.10154 0.12328 0.15439 +v -0.11309 0.12376 0.15128 +v -0.10527 0.12358 0.14837 +v -0.10457 0.12354 0.14900 +v -0.11016 0.12349 0.15007 +v -0.10852 0.12342 0.14852 +v -0.11469 0.12353 0.14879 +v -0.12187 0.12386 0.14831 +v -0.11233 0.12387 0.15021 +v -0.10624 0.12345 0.14818 +v -0.10978 0.12345 0.14857 +v -0.11122 0.12361 0.15056 +v -0.10722 0.12338 0.14763 +v -0.12209 0.12379 0.14697 +v -0.11583 0.12350 0.14705 +v -0.11320 0.12374 0.14945 +v -0.10605 0.12335 0.14669 +v -0.10290 0.12336 0.14694 +v -0.11092 0.12359 0.14927 +v -0.10923 0.12313 0.14594 +v -0.10822 0.12325 0.14654 +v -0.12199 0.12363 0.14344 +v -0.11437 0.12338 0.14645 +v -0.11201 0.12384 0.14999 +v -0.11290 0.12360 0.14740 +v -0.11218 0.12375 0.14917 +v -0.10516 0.12332 0.14625 +v -0.11049 0.12344 0.14765 +v -0.11895 0.12343 0.14296 +v -0.11495 0.12343 0.14560 +v -0.10665 0.12333 0.14492 +v -0.11167 0.12362 0.14825 +v -0.10831 0.12329 0.14482 +v -0.11057 0.12339 0.14619 +v -0.12248 0.12350 0.14053 +v -0.12119 0.12356 0.14082 +v -0.11714 0.12321 0.14005 +v -0.11452 0.12350 0.14483 +v -0.11575 0.12341 0.14462 +v -0.11288 0.12362 0.14604 +v -0.11190 0.12358 0.14703 +v -0.10990 0.12336 0.14475 +v -0.11857 0.12328 0.14042 +v -0.11326 0.12376 0.14439 +v -0.10808 0.12333 0.14284 +v -0.11205 0.12363 0.14545 +v -0.12247 0.12351 0.13952 +v -0.12159 0.12352 0.13948 +v -0.11811 0.12307 0.13838 +v -0.11499 0.12341 0.14281 +v -0.11107 0.12353 0.14299 +v -0.12335 0.12313 0.13782 +v -0.12074 0.12341 0.13853 +v -0.12191 0.12342 0.13788 +v -0.05036 0.03720 0.19341 +v -0.04960 0.03648 0.19166 +v -0.05100 0.03678 0.19218 +v -0.04982 0.03689 0.19312 +v -0.05246 0.03657 0.18986 +v -0.05158 0.03710 0.19279 +v -0.04961 0.03721 0.19350 +v -0.05059 0.03548 0.18540 +v -0.05141 0.03811 0.19418 +v -0.04963 0.03846 0.19449 +v -0.04876 0.03740 0.19361 +v -0.05265 0.03740 0.19289 +v -0.04724 0.03506 0.18915 +v -0.05373 0.03603 0.18394 +v -0.04818 0.03664 0.19284 +v -0.05447 0.03730 0.19181 +v -0.04809 0.03603 0.19165 +v -0.04788 0.03391 0.18354 +v -0.05559 0.03660 0.18709 +v -0.05229 0.03564 0.18215 +v -0.05084 0.04066 0.19539 +v -0.05318 0.03896 0.19422 +v -0.04780 0.03861 0.19435 +v -0.04785 0.03724 0.19362 +v -0.04738 0.03617 0.19220 +v -0.04973 0.03465 0.18190 +v -0.04511 0.03324 0.18504 +v -0.05598 0.03599 0.18100 +v -0.05344 0.03553 0.18058 +v -0.05104 0.03522 0.18157 +v -0.04758 0.03672 0.19317 +v -0.05585 0.03698 0.19073 +v -0.05553 0.03933 0.19328 +v -0.04625 0.03602 0.19203 +v -0.04863 0.03384 0.18071 +v -0.04483 0.03425 0.18889 +v -0.04549 0.03223 0.18229 +v -0.05500 0.03583 0.18100 +v -0.05688 0.03632 0.18337 +v -0.05199 0.03522 0.18013 +v -0.05376 0.04266 0.19561 +v -0.04709 0.03701 0.19330 +v -0.05706 0.03805 0.18896 +v -0.05554 0.03736 0.19235 +v -0.04530 0.03504 0.19081 +v -0.05003 0.03429 0.17904 +v -0.04707 0.03275 0.18063 +v -0.04306 0.03397 0.18785 +v -0.04486 0.03238 0.18304 +v -0.05598 0.03565 0.18007 +v -0.05653 0.03606 0.18136 +v -0.05709 0.03672 0.18566 +v -0.05268 0.03455 0.17798 +v -0.04587 0.03775 0.19346 +v -0.05609 0.03748 0.19176 +v -0.05575 0.04173 0.19458 +v -0.04469 0.03596 0.19224 +v -0.04805 0.03322 0.17898 +v -0.04345 0.03494 0.19078 +v -0.04240 0.03338 0.18499 +v -0.04547 0.03189 0.18112 +v -0.04469 0.03188 0.18159 +v -0.04389 0.03228 0.18270 +v -0.05709 0.03608 0.18141 +v -0.05774 0.03680 0.18378 +v -0.05745 0.04447 0.19370 +v -0.04740 0.03264 0.17641 +v -0.04676 0.03220 0.17853 +v -0.04141 0.03451 0.18955 +v -0.04110 0.03401 0.18705 +v -0.04589 0.03165 0.17945 +v -0.05479 0.03463 0.17810 +v -0.05010 0.03383 0.17569 +v -0.05911 0.03941 0.18436 +v -0.05500 0.04465 0.19610 +v -0.04171 0.03236 0.18277 +v -0.04105 0.03384 0.18543 +v -0.04464 0.03097 0.17956 +v -0.04432 0.03140 0.18081 +v -0.04312 0.03145 0.18127 +v -0.05716 0.03614 0.18007 +v -0.05325 0.03356 0.17629 +v -0.05186 0.03369 0.17524 +v -0.05317 0.04790 0.19804 +v -0.04498 0.03092 0.17738 +v -0.04805 0.03322 0.17338 +v -0.03880 0.03407 0.18837 +v -0.04092 0.03341 0.18436 +v -0.03985 0.03368 0.18559 +v -0.05578 0.03493 0.17715 +v -0.05430 0.03373 0.17626 +v -0.05030 0.03411 0.17329 +v -0.06179 0.04639 0.18547 +v -0.05744 0.03842 0.17748 +v -0.04320 0.03078 0.17281 +v -0.04003 0.03516 0.19078 +v -0.03974 0.03275 0.18359 +v -0.04170 0.03084 0.18069 +v -0.04304 0.02994 0.17841 +v -0.04355 0.03075 0.18004 +v -0.05263 0.03321 0.17511 +v -0.05331 0.03328 0.17524 +v -0.05212 0.03379 0.17398 +v -0.06088 0.04123 0.18154 +v -0.04306 0.02971 0.17660 +v -0.03823 0.03497 0.19054 +v -0.03757 0.03280 0.18490 +v -0.04015 0.03146 0.18179 +v -0.04117 0.03009 0.17973 +v -0.05404 0.03448 0.17500 +v -0.04999 0.03640 0.17174 +v -0.06125 0.04570 0.17947 +v -0.04091 0.02938 0.17694 +v -0.03668 0.03425 0.18969 +v -0.03880 0.03625 0.19161 +v -0.03527 0.03308 0.18745 +v -0.03832 0.03178 0.18262 +v -0.03847 0.03050 0.18102 +v -0.04246 0.02934 0.17739 +v -0.06440 0.06271 0.18041 +v -0.05632 0.04648 0.17367 +v -0.03652 0.03559 0.19097 +v -0.03464 0.03198 0.18401 +v -0.03902 0.02954 0.17894 +v -0.04145 0.02976 0.17890 +v -0.03447 0.03404 0.18983 +v -0.03753 0.03886 0.19211 +v -0.03652 0.03150 0.18262 +v -0.03213 0.03207 0.18564 +v -0.03744 0.02983 0.18009 +v -0.03327 0.03584 0.19076 +v -0.03256 0.03274 0.18872 +v -0.03281 0.03171 0.18335 +v -0.03473 0.03109 0.18185 +v -0.03710 0.03058 0.18149 +v -0.03740 0.03015 0.18098 +v -0.03712 0.02947 0.17876 +v -0.03258 0.03361 0.19002 +v -0.03135 0.03167 0.18315 +v -0.03355 0.03145 0.18239 +v -0.03077 0.03215 0.18781 +v -0.03600 0.03072 0.18152 +v -0.03761 0.03029 0.18121 +v -0.03652 0.03016 0.18081 +v -0.03604 0.02982 0.17980 +v -0.03810 0.02921 0.17790 +v -0.03918 0.02915 0.17771 +v -0.03098 0.03345 0.18998 +v -0.03175 0.03288 0.18971 +v -0.03229 0.03136 0.18186 +v -0.03002 0.03182 0.18421 +v -0.03101 0.03252 0.18926 +v -0.02964 0.03204 0.18624 +v -0.03327 0.03098 0.18112 +v -0.03527 0.03034 0.18072 +v -0.03543 0.02959 0.17858 +v -0.03651 0.02938 0.17704 +v -0.03855 0.02914 0.17697 +v -0.03023 0.03155 0.18180 +v -0.02986 0.03238 0.18878 +v -0.02964 0.03216 0.18771 +v -0.03439 0.03002 0.17958 +v -0.03784 0.02919 0.17513 +v -0.03119 0.03117 0.18061 +v -0.02848 0.03186 0.18315 +v -0.02874 0.03194 0.18472 +v -0.03241 0.03072 0.17999 +v -0.02856 0.03272 0.18776 +v -0.03427 0.02974 0.17859 +v -0.03397 0.02977 0.17709 +v -0.02850 0.03168 0.18133 +v -0.02791 0.03230 0.18575 +v -0.03455 0.02964 0.17577 +v -0.03616 0.02940 0.17563 +v -0.03073 0.03096 0.17893 +v -0.02756 0.03194 0.18205 +v -0.02773 0.03211 0.18424 +v -0.02975 0.03111 0.17678 +v -0.03208 0.03028 0.17509 +v -0.03556 0.02934 0.17457 +v -0.02880 0.03140 0.17963 +v -0.02690 0.03233 0.18286 +v -0.02697 0.03214 0.18078 +v -0.02670 0.03257 0.18476 +v -0.03426 0.02952 0.17433 +v -0.03497 0.02944 0.17211 +v -0.02769 0.03175 0.18003 +v -0.02662 0.03232 0.18131 +v -0.02916 0.03126 0.17550 +v -0.02783 0.03163 0.17870 +v -0.02665 0.03217 0.17944 +v -0.02564 0.03302 0.18030 +v -0.02729 0.03176 0.17653 +v -0.02872 0.03188 0.17328 +v -0.02741 0.03185 0.17502 +v -0.02651 0.03210 0.17816 +v -0.02533 0.03294 0.17867 +v -0.02662 0.03204 0.17591 +v -0.02533 0.03295 0.17470 +v -0.02569 0.03249 0.17687 +v -0.02349 0.03387 0.17684 +v -0.08689 0.09963 0.11682 +v -0.08776 0.09863 0.11659 +v -0.08874 0.10031 0.11673 +v -0.08671 0.09830 0.11656 +v -0.08894 0.09871 0.11656 +v -0.08718 0.10228 0.11684 +v -0.08724 0.09754 0.11633 +v -0.08573 0.09869 0.11680 +v -0.08893 0.09738 0.11633 +v -0.09088 0.09975 0.11654 +v -0.09078 0.10329 0.11664 +v -0.08499 0.09970 0.11698 +v -0.08605 0.09712 0.11621 +v -0.08502 0.09732 0.11641 +v -0.09019 0.10664 0.11651 +v -0.08352 0.10231 0.11687 +v -0.08823 0.09647 0.11612 +v -0.08459 0.09811 0.11686 +v -0.09067 0.09750 0.11642 +v -0.09207 0.10212 0.11648 +v -0.08604 0.10718 0.11653 +v -0.09161 0.10550 0.11657 +v -0.08370 0.09925 0.11702 +v -0.08514 0.09613 0.11602 +v -0.08403 0.09754 0.11664 +v -0.08432 0.09840 0.11693 +v -0.09181 0.09769 0.11655 +v -0.09344 0.10134 0.11621 +v -0.09306 0.10405 0.11631 +v -0.08984 0.11030 0.11624 +v -0.09213 0.10787 0.11624 +v -0.08259 0.09944 0.11700 +v -0.07945 0.10806 0.11624 +v -0.08375 0.09648 0.11618 +v -0.08628 0.09297 0.11564 +v -0.09195 0.09647 0.11636 +v -0.09261 0.09896 0.11644 +v -0.08600 0.11305 0.11617 +v -0.09151 0.10895 0.11626 +v -0.09302 0.10630 0.11625 +v -0.08317 0.09852 0.11698 +v -0.08069 0.10106 0.11685 +v -0.08362 0.09810 0.11688 +v -0.08240 0.09474 0.11574 +v -0.09066 0.09437 0.11606 +v -0.08402 0.09255 0.11552 +v -0.08310 0.09666 0.11624 +v -0.09287 0.09816 0.11650 +v -0.09434 0.09604 0.11619 +v -0.09464 0.09956 0.11603 +v -0.09480 0.10239 0.11595 +v -0.09099 0.11256 0.11598 +v -0.09197 0.11006 0.11631 +v -0.09450 0.10534 0.11611 +v -0.09270 0.10861 0.11615 +v -0.09341 0.10727 0.11616 +v -0.08272 0.09786 0.11678 +v -0.08160 0.09864 0.11696 +v -0.08201 0.11394 0.11612 +v -0.07750 0.10214 0.11643 +v -0.08950 0.09227 0.11592 +v -0.08710 0.08945 0.11562 +v -0.09313 0.09486 0.11615 +v -0.09397 0.09835 0.11625 +v -0.08890 0.11444 0.11610 +v -0.09174 0.11110 0.11626 +v -0.09240 0.10940 0.11623 +v -0.08064 0.09881 0.11701 +v -0.07880 0.11380 0.11591 +v -0.08456 0.11534 0.11617 +v -0.07510 0.10334 0.11611 +v -0.07933 0.09895 0.11682 +v -0.08276 0.09277 0.11555 +v -0.08156 0.09458 0.11574 +v -0.09191 0.09254 0.11612 +v -0.08724 0.09182 0.11566 +v -0.08233 0.08910 0.11551 +v -0.09326 0.09352 0.11612 +v -0.08179 0.09751 0.11671 +v -0.09447 0.09692 0.11621 +v -0.09552 0.09370 0.11608 +v -0.09605 0.09991 0.11596 +v -0.09529 0.09822 0.11608 +v -0.09609 0.10229 0.11589 +v -0.09085 0.11337 0.11600 +v -0.08770 0.11510 0.11619 +v -0.09179 0.11243 0.11609 +v -0.09315 0.10985 0.11647 +v -0.09280 0.11092 0.11649 +v -0.09395 0.10823 0.11623 +v -0.09336 0.10932 0.11635 +v -0.08087 0.09789 0.11692 +v -0.07701 0.11177 0.11588 +v -0.08169 0.11558 0.11621 +v -0.08317 0.11636 0.11626 +v -0.08661 0.11511 0.11622 +v -0.07507 0.10523 0.11604 +v -0.07305 0.10075 0.11599 +v -0.07649 0.10006 0.11632 +v -0.08095 0.09587 0.11606 +v -0.08951 0.09066 0.11601 +v -0.08807 0.09051 0.11577 +v -0.08611 0.08581 0.11584 +v -0.09649 0.09629 0.11612 +v -0.09724 0.10503 0.11610 +v -0.09051 0.11437 0.11612 +v -0.08833 0.11553 0.11618 +v -0.09574 0.10798 0.11625 +v -0.08033 0.09822 0.11699 +v -0.07693 0.11362 0.11567 +v -0.07661 0.10976 0.11603 +v -0.07899 0.11598 0.11608 +v -0.08507 0.11688 0.11627 +v -0.07345 0.10347 0.11600 +v -0.07375 0.10267 0.11598 +v -0.07826 0.09829 0.11656 +v -0.07817 0.09216 0.11537 +v -0.07961 0.09469 0.11569 +v -0.09263 0.08920 0.11626 +v -0.09020 0.08939 0.11618 +v -0.08859 0.08890 0.11601 +v -0.08787 0.08708 0.11590 +v -0.08432 0.08331 0.11583 +v -0.09586 0.09102 0.11601 +v -0.09728 0.09372 0.11615 +v -0.09947 0.10112 0.11608 +v -0.09746 0.09834 0.11606 +v -0.09196 0.11311 0.11614 +v -0.08905 0.11553 0.11631 +v -0.08823 0.11588 0.11639 +v -0.08735 0.11599 0.11640 +v -0.09295 0.11258 0.11635 +v -0.09385 0.11095 0.11669 +v -0.09453 0.10981 0.11645 +v -0.08006 0.09766 0.11680 +v -0.07731 0.11449 0.11573 +v -0.07595 0.11315 0.11572 +v -0.07522 0.11054 0.11604 +v -0.08147 0.11678 0.11637 +v -0.08400 0.11826 0.11629 +v -0.07473 0.10826 0.11603 +v -0.07418 0.10565 0.11605 +v -0.07449 0.10024 0.11615 +v -0.07906 0.09782 0.11669 +v -0.07637 0.09867 0.11619 +v -0.07691 0.08714 0.11520 +v -0.07970 0.09593 0.11604 +v -0.08935 0.08533 0.11601 +v -0.10016 0.09614 0.11630 +v -0.10021 0.10692 0.11626 +v -0.09820 0.10942 0.11629 +v -0.09269 0.11366 0.11634 +v -0.09071 0.11544 0.11650 +v -0.09319 0.11124 0.11657 +v -0.09659 0.11123 0.11641 +v -0.07640 0.11439 0.11566 +v -0.07515 0.11200 0.11597 +v -0.07616 0.11393 0.11563 +v -0.08284 0.11754 0.11637 +v -0.07731 0.11668 0.11613 +v -0.08033 0.11748 0.11632 +v -0.08605 0.11911 0.11639 +v -0.08684 0.11708 0.11647 +v -0.07105 0.10358 0.11621 +v -0.06984 0.10123 0.11613 +v -0.07372 0.09904 0.11598 +v -0.07857 0.09722 0.11638 +v -0.07691 0.09744 0.11609 +v -0.07383 0.08999 0.11509 +v -0.07877 0.09504 0.11564 +v -0.09527 0.08679 0.11635 +v -0.09084 0.08839 0.11628 +v -0.08970 0.08784 0.11621 +v -0.08771 0.08166 0.11605 +v -0.07745 0.08136 0.11524 +v -0.09660 0.09096 0.11606 +v -0.09972 0.09257 0.11634 +v -0.10301 0.10216 0.11615 +v -0.08893 0.11631 0.11655 +v -0.08791 0.11656 0.11671 +v -0.09395 0.11213 0.11654 +v -0.09458 0.11133 0.11658 +v -0.07819 0.09632 0.11604 +v -0.07657 0.11513 0.11587 +v -0.07546 0.11386 0.11575 +v -0.07375 0.11136 0.11625 +v -0.08149 0.11954 0.11635 +v -0.07849 0.11772 0.11623 +v -0.08423 0.12033 0.11622 +v -0.07272 0.10619 0.11630 +v -0.07113 0.09844 0.11594 +v -0.07476 0.09764 0.11587 +v -0.07570 0.09381 0.11530 +v -0.07356 0.08837 0.11504 +v -0.09468 0.08669 0.11641 +v -0.09124 0.08690 0.11624 +v -0.09063 0.08563 0.11610 +v -0.08587 0.08061 0.11590 +v -0.08827 0.08071 0.11609 +v -0.07387 0.08501 0.11494 +v -0.08238 0.08157 0.11570 +v -0.10376 0.09435 0.11677 +v -0.10304 0.09795 0.11634 +v -0.10086 0.11123 0.11632 +v -0.10313 0.10052 0.11619 +v -0.10351 0.10648 0.11640 +v -0.09729 0.11351 0.11648 +v -0.09359 0.11309 0.11641 +v -0.09202 0.11525 0.11662 +v -0.09035 0.11634 0.11670 +v -0.08835 0.11661 0.11666 +v -0.09505 0.11336 0.11649 +v -0.07524 0.11512 0.11618 +v -0.07414 0.11311 0.11606 +v -0.07309 0.11233 0.11628 +v -0.07248 0.10956 0.11639 +v -0.08257 0.11972 0.11633 +v -0.07637 0.11783 0.11623 +v -0.07629 0.11622 0.11616 +v -0.08005 0.12047 0.11625 +v -0.07911 0.11921 0.11624 +v -0.08788 0.11863 0.11660 +v -0.08562 0.12059 0.11639 +v -0.08796 0.11716 0.11669 +v -0.07008 0.10548 0.11642 +v -0.06859 0.09765 0.11599 +v -0.07762 0.09572 0.11585 +v -0.07363 0.09150 0.11519 +v -0.07374 0.08691 0.11497 +v -0.07313 0.08950 0.11505 +v -0.07774 0.09506 0.11564 +v -0.09613 0.08492 0.11626 +v -0.09697 0.08694 0.11626 +v -0.09240 0.08350 0.11616 +v -0.08701 0.08025 0.11593 +v -0.09089 0.08313 0.11608 +v -0.07280 0.08307 0.11495 +v -0.08238 0.07945 0.11559 +v -0.09901 0.08818 0.11631 +v -0.10352 0.08795 0.11683 +v -0.10052 0.11415 0.11641 +v -0.10183 0.10765 0.11638 +v -0.10427 0.10158 0.11631 +v -0.10488 0.10384 0.11642 +v -0.09372 0.11452 0.11646 +v -0.09134 0.11603 0.11666 +v -0.08914 0.11757 0.11669 +v -0.07461 0.11419 0.11602 +v -0.08217 0.12069 0.11643 +v -0.07564 0.11983 0.11620 +v -0.08076 0.12038 0.11633 +v -0.07799 0.12018 0.11621 +v -0.08765 0.12027 0.11662 +v -0.08497 0.12127 0.11643 +v -0.08655 0.12061 0.11655 +v -0.08323 0.12040 0.11627 +v -0.06656 0.10209 0.11630 +v -0.07041 0.09677 0.11576 +v -0.06776 0.10063 0.11612 +v -0.07261 0.09677 0.11577 +v -0.07651 0.09554 0.11565 +v -0.07248 0.08984 0.11518 +v -0.07246 0.09313 0.11527 +v -0.07233 0.08755 0.11504 +v -0.07233 0.08877 0.11516 +v -0.09352 0.08527 0.11638 +v -0.08694 0.07947 0.11578 +v -0.08879 0.07974 0.11601 +v -0.09176 0.08159 0.11606 +v -0.07267 0.08082 0.11488 +v -0.07209 0.08510 0.11487 +v -0.07246 0.08635 0.11492 +v -0.08078 0.07718 0.11538 +v -0.10600 0.08853 0.11702 +v -0.10517 0.09445 0.11689 +v -0.10493 0.09884 0.11637 +v -0.10405 0.11298 0.11637 +v -0.10203 0.10962 0.11638 +v -0.10439 0.10013 0.11626 +v -0.10507 0.10259 0.11644 +v -0.10582 0.10457 0.11642 +v -0.10353 0.10804 0.11660 +v -0.09555 0.11500 0.11658 +v -0.09800 0.11472 0.11658 +v -0.09122 0.11710 0.11673 +v -0.09422 0.11528 0.11650 +v -0.07351 0.11464 0.11617 +v -0.07538 0.11601 0.11628 +v -0.07240 0.11311 0.11625 +v -0.08124 0.12072 0.11647 +v -0.07663 0.12039 0.11615 +v -0.07455 0.11698 0.11634 +v -0.08003 0.12082 0.11637 +v -0.07878 0.12055 0.11631 +v -0.08893 0.12016 0.11661 +v -0.08719 0.12145 0.11697 +v -0.08419 0.12136 0.11627 +v -0.08359 0.12132 0.11621 +v -0.06462 0.10660 0.11655 +v -0.06401 0.10425 0.11655 +v -0.07048 0.09579 0.11555 +v -0.06821 0.09743 0.11594 +v -0.07257 0.09554 0.11558 +v -0.07510 0.09513 0.11546 +v -0.07160 0.09023 0.11527 +v -0.07122 0.09247 0.11523 +v -0.09650 0.08319 0.11624 +v -0.09445 0.08335 0.11617 +v -0.08476 0.07872 0.11559 +v -0.08920 0.07989 0.11600 +v -0.07054 0.08188 0.11489 +v -0.07815 0.07573 0.11522 +v -0.07129 0.08416 0.11498 +v -0.08362 0.07769 0.11548 +v -0.10072 0.08552 0.11661 +v -0.10561 0.09148 0.11690 +v -0.10467 0.08549 0.11694 +v -0.10749 0.09697 0.11663 +v -0.10436 0.11472 0.11654 +v -0.10330 0.11134 0.11631 +v -0.10571 0.10145 0.11658 +v -0.10633 0.10298 0.11652 +v -0.10562 0.10749 0.11640 +v -0.10452 0.10787 0.11646 +v -0.09677 0.11492 0.11662 +v -0.09935 0.11591 0.11668 +v -0.09358 0.11643 0.11665 +v -0.09047 0.11893 0.11667 +v -0.06348 0.11098 0.11637 +v -0.08290 0.12135 0.11642 +v -0.08157 0.12124 0.11666 +v -0.07551 0.12071 0.11623 +v -0.07240 0.11939 0.11615 +v -0.07804 0.12102 0.11638 +v -0.07728 0.12079 0.11621 +v -0.08914 0.12079 0.11666 +v -0.08518 0.12187 0.11690 +v -0.08371 0.12177 0.11633 +v -0.06308 0.10321 0.11651 +v -0.06592 0.10088 0.11608 +v -0.06616 0.09940 0.11591 +v -0.07130 0.08898 0.11538 +v -0.06984 0.09485 0.11533 +v -0.07169 0.08695 0.11510 +v -0.09551 0.08348 0.11616 +v -0.09944 0.08361 0.11647 +v -0.08621 0.07752 0.11522 +v -0.08890 0.07861 0.11558 +v -0.08944 0.07866 0.11564 +v -0.09105 0.08016 0.11596 +v -0.06885 0.07963 0.11467 +v -0.07055 0.08329 0.11507 +v -0.07500 0.07412 0.11487 +v -0.07133 0.08509 0.11498 +v -0.08142 0.07540 0.11524 +v -0.08033 0.07614 0.11536 +v -0.10203 0.08481 0.11688 +v -0.11075 0.09110 0.11678 +v -0.10701 0.08495 0.11698 +v -0.10882 0.09490 0.11675 +v -0.10796 0.09212 0.11680 +v -0.10826 0.09853 0.11653 +v -0.10569 0.10007 0.11644 +v -0.10126 0.11653 0.11669 +v -0.10618 0.11449 0.11663 +v -0.10667 0.11200 0.11641 +v -0.10320 0.10967 0.11642 +v -0.10815 0.10209 0.11649 +v -0.10889 0.10596 0.11617 +v -0.10464 0.10939 0.11642 +v -0.09763 0.11670 0.11696 +v -0.09496 0.11690 0.11675 +v -0.09336 0.11773 0.11666 +v -0.07025 0.11486 0.11622 +v -0.06790 0.11428 0.11619 +v -0.08218 0.12153 0.11674 +v -0.08091 0.12132 0.11672 +v -0.07618 0.12111 0.11619 +v -0.07311 0.12093 0.11624 +v -0.07252 0.12051 0.11620 +v -0.07220 0.11793 0.11624 +v -0.07874 0.12133 0.11666 +v -0.07669 0.12125 0.11626 +v -0.08852 0.12127 0.11682 +v -0.08636 0.12182 0.11711 +v -0.08332 0.12176 0.11635 +v -0.06159 0.10790 0.11654 +v -0.06239 0.10475 0.11651 +v -0.06235 0.10353 0.11642 +v -0.06297 0.10268 0.11640 +v -0.06853 0.09560 0.11541 +v -0.06665 0.09698 0.11560 +v -0.07006 0.08919 0.11554 +v -0.06829 0.09412 0.11528 +v -0.06951 0.09389 0.11524 +v -0.07119 0.08805 0.11541 +v -0.09485 0.08129 0.11615 +v -0.09817 0.08191 0.11632 +v -0.08524 0.07649 0.11517 +v -0.08682 0.07815 0.11539 +v -0.09062 0.07911 0.11579 +v -0.09224 0.07970 0.11597 +v -0.07110 0.07917 0.11468 +v -0.06863 0.08189 0.11491 +v -0.06940 0.08276 0.11506 +v -0.07651 0.07250 0.11486 +v -0.07102 0.07593 0.11461 +v -0.07007 0.08413 0.11525 +v -0.08270 0.07493 0.11512 +v -0.07970 0.07442 0.11513 +v -0.11198 0.08578 0.11690 +v -0.10285 0.08434 0.11696 +v -0.10513 0.08409 0.11687 +v -0.10922 0.08293 0.11696 +v -0.11412 0.09557 0.11679 +v -0.10656 0.09969 0.11646 +v -0.10271 0.11734 0.11687 +v -0.10645 0.11701 0.11692 +v -0.10552 0.11059 0.11635 +v -0.10655 0.10149 0.11662 +v -0.10775 0.11038 0.11634 +v -0.09600 0.11658 0.11686 +v -0.09958 0.11739 0.11680 +v -0.09277 0.11922 0.11658 +v -0.07235 0.11649 0.11627 +v -0.06383 0.11433 0.11615 +v -0.08300 0.12197 0.11688 +v -0.08131 0.12175 0.11705 +v -0.07569 0.12154 0.11647 +v -0.07336 0.12127 0.11632 +v -0.07115 0.11991 0.11607 +v -0.08000 0.12137 0.11674 +v -0.07770 0.12183 0.11680 +v -0.07710 0.12166 0.11649 +v -0.08818 0.12179 0.11723 +v -0.08887 0.12154 0.11691 +v -0.09066 0.11992 0.11666 +v -0.08404 0.12217 0.11702 +v -0.08733 0.12202 0.11752 +v -0.08651 0.12230 0.11784 +v -0.08351 0.12171 0.11620 +v -0.06200 0.10580 0.11656 +v -0.05899 0.11001 0.11652 +v -0.06457 0.09931 0.11568 +v -0.06368 0.10113 0.11600 +v -0.06789 0.09537 0.11528 +v -0.06546 0.09770 0.11551 +v -0.06871 0.08879 0.11570 +v -0.06998 0.08721 0.11571 +v -0.07064 0.08724 0.11555 +v -0.09707 0.08099 0.11621 +v -0.09939 0.08228 0.11643 +v -0.09453 0.07819 0.11607 +v -0.08722 0.07660 0.11522 +v -0.08876 0.07812 0.11544 +v -0.09115 0.07826 0.11565 +v -0.06831 0.07688 0.11457 +v -0.06710 0.08168 0.11504 +v -0.06927 0.08414 0.11537 +v -0.07225 0.07089 0.11461 +v -0.07989 0.07279 0.11497 +v -0.07013 0.08509 0.11536 +v -0.10109 0.08324 0.11665 +v -0.11376 0.09024 0.11670 +v -0.10590 0.08361 0.11683 +v -0.10764 0.08223 0.11689 +v -0.11333 0.10141 0.11653 +v -0.10844 0.10026 0.11650 +v -0.10465 0.11659 0.11678 +v -0.10093 0.11815 0.11683 +v -0.10802 0.11381 0.11667 +v -0.10878 0.11660 0.11716 +v -0.11058 0.10288 0.11640 +v -0.10930 0.10812 0.11625 +v -0.09671 0.11775 0.11693 +v -0.09864 0.11897 0.11688 +v -0.09434 0.11916 0.11663 +v -0.09164 0.12008 0.11664 +v -0.06998 0.11647 0.11640 +v -0.06885 0.11566 0.11624 +v -0.06734 0.11538 0.11620 +v -0.05816 0.11454 0.11619 +v -0.08210 0.12199 0.11723 +v -0.07473 0.12129 0.11640 +v -0.07638 0.12173 0.11648 +v -0.07286 0.12154 0.11656 +v -0.07224 0.12125 0.11645 +v -0.07144 0.12086 0.11622 +v -0.07869 0.12186 0.11717 +v -0.08976 0.12109 0.11682 +v -0.09065 0.12090 0.11686 +v -0.08343 0.12195 0.11653 +v -0.08728 0.12240 0.11808 +v -0.06060 0.10535 0.11643 +v -0.05935 0.10753 0.11666 +v -0.06133 0.10485 0.11647 +v -0.06075 0.10393 0.11621 +v -0.06149 0.10280 0.11611 +v -0.06204 0.10128 0.11580 +v -0.06628 0.09613 0.11546 +v -0.06599 0.09720 0.11554 +v -0.06721 0.09412 0.11537 +v -0.07049 0.08637 0.11548 +v -0.09883 0.08043 0.11612 +v -0.08391 0.07363 0.11502 +v -0.08889 0.07743 0.11536 +v -0.09234 0.07664 0.11568 +v -0.06695 0.08308 0.11526 +v -0.07426 0.06947 0.11462 +v -0.07677 0.06895 0.11461 +v -0.06974 0.07454 0.11451 +v -0.11378 0.08020 0.11682 +v -0.11562 0.08704 0.11670 +v -0.10388 0.08286 0.11674 +v -0.10496 0.08254 0.11658 +v -0.10802 0.07939 0.11676 +v -0.11683 0.09771 0.11676 +v -0.10401 0.11856 0.11685 +v -0.10138 0.11940 0.11683 +v -0.10881 0.11220 0.11646 +v -0.10461 0.11881 0.11687 +v -0.10758 0.11848 0.11715 +v -0.11267 0.10562 0.11643 +v -0.11103 0.10764 0.11630 +v -0.11110 0.11021 0.11630 +v -0.09554 0.11963 0.11670 +v -0.09358 0.12039 0.11657 +v -0.09266 0.12042 0.11652 +v -0.06811 0.11543 0.11618 +v -0.06546 0.11525 0.11621 +v -0.06114 0.11513 0.11612 +v -0.08208 0.12230 0.11782 +v -0.08118 0.12226 0.11779 +v -0.08005 0.12203 0.11742 +v -0.07560 0.12200 0.11687 +v -0.07310 0.12178 0.11675 +v -0.07423 0.12177 0.11675 +v -0.07069 0.12102 0.11606 +v -0.07006 0.12052 0.11597 +v -0.07732 0.12240 0.11732 +v -0.07672 0.12203 0.11669 +v -0.08900 0.12175 0.11715 +v -0.08987 0.12167 0.11732 +v -0.08512 0.12264 0.11821 +v -0.08796 0.12261 0.11833 +v -0.08649 0.12258 0.11857 +v -0.05950 0.10618 0.11649 +v -0.05823 0.10769 0.11670 +v -0.05515 0.11096 0.11642 +v -0.06372 0.09738 0.11552 +v -0.06246 0.09984 0.11569 +v -0.06538 0.09576 0.11548 +v -0.06900 0.08637 0.11575 +v -0.06587 0.09158 0.11557 +v -0.09613 0.07821 0.11600 +v -0.09857 0.07803 0.11574 +v -0.10047 0.08084 0.11641 +v -0.08489 0.07193 0.11502 +v -0.09434 0.07715 0.11592 +v -0.06704 0.07674 0.11470 +v -0.06304 0.08117 0.11501 +v -0.06652 0.08434 0.11552 +v -0.07257 0.06375 0.11454 +v -0.07998 0.07101 0.11489 +v -0.06861 0.07067 0.11446 +v -0.06985 0.08631 0.11568 +v -0.11077 0.08052 0.11685 +v -0.11619 0.08076 0.11678 +v -0.11577 0.09253 0.11675 +v -0.11792 0.08727 0.11669 +v -0.11584 0.08414 0.11673 +v -0.10246 0.08143 0.11658 +v -0.10678 0.08021 0.11679 +v -0.11631 0.09489 0.11679 +v -0.11641 0.10004 0.11673 +v -0.09895 0.12039 0.11689 +v -0.10957 0.11343 0.11662 +v -0.10955 0.11561 0.11706 +v -0.10607 0.11917 0.11707 +v -0.10928 0.11789 0.11726 +v -0.11097 0.11197 0.11635 +v -0.09692 0.11929 0.11685 +v -0.09471 0.12035 0.11677 +v -0.09191 0.12100 0.11685 +v -0.06848 0.11694 0.11627 +v -0.06728 0.11617 0.11629 +v -0.06443 0.11535 0.11612 +v -0.06007 0.11605 0.11614 +v -0.06245 0.11508 0.11608 +v -0.08313 0.12246 0.11783 +v -0.07242 0.12186 0.11696 +v -0.07116 0.12151 0.11655 +v -0.07845 0.12241 0.11791 +v -0.08446 0.12273 0.11863 +v -0.08758 0.12265 0.11878 +v -0.05961 0.10484 0.11624 +v -0.05696 0.10868 0.11663 +v -0.05866 0.10692 0.11673 +v -0.05406 0.11499 0.11614 +v -0.06070 0.10231 0.11586 +v -0.06255 0.09838 0.11556 +v -0.06187 0.10082 0.11571 +v -0.06691 0.08649 0.11571 +v -0.09961 0.07804 0.11584 +v -0.10004 0.07960 0.11622 +v -0.08344 0.07158 0.11499 +v -0.09083 0.07492 0.11554 +v -0.08637 0.07296 0.11518 +v -0.09430 0.07594 0.11584 +v -0.06788 0.07243 0.11447 +v -0.06675 0.08060 0.11500 +v -0.06272 0.08376 0.11541 +v -0.06840 0.08510 0.11561 +v -0.06886 0.06736 0.11437 +v -0.07659 0.06629 0.11450 +v -0.07966 0.06666 0.11468 +v -0.11221 0.07742 0.11684 +v -0.11487 0.07723 0.11671 +v -0.11695 0.08569 0.11663 +v -0.10429 0.08207 0.11664 +v -0.10573 0.08157 0.11671 +v -0.10409 0.07672 0.11667 +v -0.10975 0.07731 0.11679 +v -0.12074 0.09700 0.11689 +v -0.11906 0.09899 0.11688 +v -0.11654 0.10211 0.11670 +v -0.10463 0.11958 0.11698 +v -0.10316 0.11946 0.11685 +v -0.10073 0.12061 0.11700 +v -0.11022 0.11482 0.11694 +v -0.11046 0.11298 0.11647 +v -0.10731 0.11999 0.11733 +v -0.10871 0.11972 0.11739 +v -0.11535 0.10480 0.11659 +v -0.11274 0.10748 0.11646 +v -0.11273 0.10884 0.11641 +v -0.11307 0.11119 0.11617 +v -0.09803 0.12017 0.11692 +v -0.09673 0.12018 0.11688 +v -0.09577 0.12060 0.11688 +v -0.09409 0.12127 0.11716 +v -0.09323 0.12076 0.11642 +v -0.09291 0.12095 0.11657 +v -0.06495 0.11669 0.11632 +v -0.06356 0.11582 0.11618 +v -0.05721 0.11586 0.11625 +v -0.06157 0.11630 0.11622 +v -0.08219 0.12267 0.11878 +v -0.08009 0.12254 0.11821 +v -0.07421 0.12222 0.11737 +v -0.07629 0.12241 0.11744 +v -0.07282 0.12228 0.11763 +v -0.07001 0.12140 0.11627 +v -0.06977 0.12076 0.11603 +v -0.06630 0.11752 0.11629 +v -0.07804 0.12274 0.11854 +v -0.08917 0.12206 0.11766 +v -0.09101 0.12134 0.11716 +v -0.08450 0.12301 0.12056 +v -0.08378 0.12271 0.11840 +v -0.08695 0.12279 0.11979 +v -0.08867 0.12267 0.11924 +v -0.05840 0.10511 0.11616 +v -0.05713 0.10779 0.11666 +v -0.05758 0.10701 0.11660 +v -0.05313 0.11385 0.11618 +v -0.05553 0.10885 0.11653 +v -0.05895 0.10386 0.11587 +v -0.06033 0.10048 0.11568 +v -0.06274 0.09361 0.11555 +v -0.05955 0.09666 0.11560 +v -0.06347 0.08816 0.11561 +v -0.09694 0.07662 0.11581 +v -0.09938 0.07724 0.11575 +v -0.10104 0.07894 0.11641 +v -0.08821 0.07222 0.11542 +v -0.08686 0.06795 0.11490 +v -0.08613 0.07134 0.11510 +v -0.09158 0.07300 0.11558 +v -0.06677 0.07134 0.11451 +v -0.06582 0.07764 0.11483 +v -0.06111 0.08156 0.11502 +v -0.06404 0.07968 0.11489 +v -0.06599 0.08511 0.11563 +v -0.07001 0.06432 0.11440 +v -0.07513 0.06231 0.11442 +v -0.08166 0.06932 0.11501 +v -0.06685 0.06895 0.11431 +v -0.11865 0.07985 0.11688 +v -0.11819 0.08515 0.11666 +v -0.12083 0.09404 0.11703 +v -0.12088 0.09011 0.11690 +v -0.10622 0.07599 0.11665 +v -0.10712 0.07405 0.11661 +v -0.11845 0.10116 0.11693 +v -0.10288 0.12037 0.11696 +v -0.09981 0.12087 0.11706 +v -0.10190 0.12052 0.11692 +v -0.11164 0.11316 0.11647 +v -0.11157 0.11822 0.11735 +v -0.11203 0.11535 0.11691 +v -0.10571 0.12039 0.11730 +v -0.11056 0.12023 0.11759 +v -0.11416 0.10830 0.11665 +v -0.11341 0.11195 0.11616 +v -0.09815 0.12085 0.11710 +v -0.09531 0.12100 0.11706 +v -0.09290 0.12129 0.11689 +v -0.06002 0.11737 0.11627 +v -0.06202 0.11729 0.11638 +v -0.08136 0.12266 0.11872 +v -0.07549 0.12241 0.11747 +v -0.07176 0.12213 0.11732 +v -0.06707 0.11984 0.11620 +v -0.07959 0.12325 0.11968 +v -0.07596 0.12284 0.11864 +v -0.08974 0.12227 0.11806 +v -0.08903 0.12243 0.11837 +v -0.09119 0.12148 0.11736 +v -0.08338 0.12288 0.11942 +v -0.08580 0.12301 0.12081 +v -0.05633 0.10777 0.11649 +v -0.05735 0.10581 0.11619 +v -0.05625 0.11628 0.11632 +v -0.05166 0.11539 0.11623 +v -0.05250 0.11248 0.11623 +v -0.05492 0.10889 0.11652 +v -0.05802 0.10277 0.11573 +v -0.09875 0.07564 0.11575 +v -0.10027 0.07674 0.11586 +v -0.10189 0.07848 0.11648 +v -0.09012 0.07196 0.11554 +v -0.08346 0.06831 0.11501 +v -0.09394 0.07363 0.11577 +v -0.06583 0.07407 0.11474 +v -0.06196 0.07921 0.11478 +v -0.06088 0.08428 0.11537 +v -0.06398 0.06649 0.11397 +v -0.06731 0.06111 0.11413 +v -0.08157 0.06271 0.11462 +v -0.07162 0.06059 0.11432 +v -0.10973 0.07478 0.11664 +v -0.11311 0.07399 0.11652 +v -0.11949 0.08346 0.11677 +v -0.11607 0.07628 0.11667 +v -0.12000 0.09217 0.11695 +v -0.12095 0.08687 0.11683 +v -0.10500 0.07622 0.11664 +v -0.10279 0.07706 0.11655 +v -0.12162 0.09872 0.11688 +v -0.12256 0.09508 0.11698 +v -0.12069 0.10002 0.11697 +v -0.11856 0.10540 0.11669 +v -0.11947 0.10169 0.11694 +v -0.09904 0.12111 0.11720 +v -0.10090 0.12135 0.11735 +v -0.10153 0.12090 0.11703 +v -0.11352 0.11684 0.11713 +v -0.10363 0.12077 0.11716 +v -0.10828 0.12087 0.11762 +v -0.10714 0.12114 0.11767 +v -0.10966 0.12120 0.11776 +v -0.11416 0.10974 0.11640 +v -0.11430 0.11120 0.11617 +v -0.09731 0.12051 0.11697 +v -0.09615 0.12108 0.11709 +v -0.09528 0.12165 0.11761 +v -0.09220 0.12147 0.11732 +v -0.06574 0.11972 0.11628 +v -0.08223 0.12301 0.12003 +v -0.08027 0.12297 0.11924 +v -0.07386 0.12270 0.11871 +v -0.07208 0.12257 0.11818 +v -0.06958 0.12203 0.11714 +v -0.06878 0.12109 0.11630 +v -0.06782 0.12082 0.11632 +v -0.07833 0.12302 0.11929 +v -0.07722 0.12299 0.11945 +v -0.08255 0.12322 0.12123 +v -0.08549 0.12313 0.12171 +v -0.08712 0.12297 0.12102 +v -0.08774 0.12293 0.12126 +v -0.05662 0.10436 0.11587 +v -0.05613 0.10693 0.11622 +v -0.05434 0.11648 0.11632 +v -0.05072 0.11412 0.11615 +v -0.05370 0.11013 0.11634 +v -0.05497 0.10823 0.11634 +v -0.05614 0.08808 0.11556 +v -0.09629 0.07339 0.11576 +v -0.10146 0.07725 0.11627 +v -0.08771 0.07097 0.11531 +v -0.08746 0.06938 0.11505 +v -0.08380 0.06653 0.11488 +v -0.09212 0.07166 0.11551 +v -0.09383 0.07179 0.11561 +v -0.06436 0.06990 0.11456 +v -0.06415 0.07711 0.11480 +v -0.05822 0.07701 0.11471 +v -0.05864 0.08159 0.11513 +v -0.08018 0.06136 0.11461 +v -0.07510 0.05905 0.11425 +v -0.08327 0.06370 0.11471 +v -0.06553 0.06947 0.11437 +v -0.06548 0.06824 0.11419 +v -0.12228 0.08165 0.11696 +v -0.11970 0.07569 0.11691 +v -0.12154 0.09355 0.11711 +v -0.12243 0.09302 0.11705 +v -0.12348 0.08780 0.11699 +v -0.10356 0.07563 0.11658 +v -0.10503 0.07495 0.11644 +v -0.10591 0.07424 0.11643 +v -0.10343 0.07631 0.11667 +v -0.10839 0.07240 0.11638 +v -0.12407 0.09930 0.11679 +v -0.10248 0.12110 0.11712 +v -0.09983 0.12140 0.11742 +v -0.11303 0.11323 0.11636 +v -0.11340 0.11866 0.11743 +v -0.11230 0.12012 0.11762 +v -0.11420 0.11511 0.11675 +v -0.10536 0.12141 0.11768 +v -0.10580 0.12165 0.11781 +v -0.11084 0.12170 0.11815 +v -0.11709 0.10794 0.11664 +v -0.11496 0.11239 0.11612 +v -0.09825 0.12125 0.11735 +v -0.09741 0.12109 0.11724 +v -0.09385 0.12177 0.11777 +v -0.09289 0.12194 0.11808 +v -0.06406 0.11901 0.11638 +v -0.05780 0.11811 0.11629 +v -0.05933 0.11864 0.11625 +v -0.07221 0.12279 0.11892 +v -0.06916 0.12164 0.11667 +v -0.06708 0.12091 0.11636 +v -0.06658 0.12067 0.11628 +v -0.08013 0.12331 0.12049 +v -0.07896 0.12329 0.11991 +v -0.07335 0.12320 0.12112 +v -0.09098 0.12207 0.11823 +v -0.09193 0.12186 0.11801 +v -0.08375 0.12325 0.12257 +v -0.08475 0.12320 0.12332 +v -0.08687 0.12326 0.12213 +v -0.08929 0.12291 0.12075 +v -0.09035 0.12253 0.11906 +v -0.05621 0.10603 0.11603 +v -0.05128 0.11099 0.11611 +v -0.10160 0.07330 0.11583 +v -0.10147 0.07526 0.11580 +v -0.09128 0.06958 0.11525 +v -0.08689 0.06516 0.11487 +v -0.06362 0.07173 0.11464 +v -0.06011 0.07701 0.11466 +v -0.05783 0.08363 0.11535 +v -0.06435 0.06284 0.11399 +v -0.07045 0.05822 0.11426 +v -0.07671 0.05918 0.11439 +v -0.08245 0.05948 0.11446 +v -0.07367 0.05810 0.11425 +v -0.08537 0.06206 0.11465 +v -0.06346 0.06715 0.11405 +v -0.10966 0.07133 0.11621 +v -0.11248 0.07001 0.11616 +v -0.12285 0.08434 0.11690 +v -0.12059 0.07929 0.11697 +v -0.11718 0.07447 0.11664 +v -0.12459 0.09067 0.11686 +v -0.12395 0.08679 0.11691 +v -0.10649 0.07369 0.11647 +v -0.10305 0.07602 0.11653 +v -0.10701 0.07214 0.11625 +v -0.10840 0.07112 0.11623 +v -0.12562 0.09629 0.11686 +v -0.12360 0.09402 0.11699 +v -0.12135 0.10110 0.11692 +v -0.12178 0.10424 0.11668 +v -0.10286 0.12121 0.11730 +v -0.09871 0.12154 0.11765 +v -0.10070 0.12178 0.11778 +v -0.10169 0.12136 0.11729 +v -0.11587 0.11651 0.11707 +v -0.10410 0.12152 0.11760 +v -0.10809 0.12185 0.11810 +v -0.10943 0.12172 0.11799 +v -0.10699 0.12170 0.11795 +v -0.11463 0.11281 0.11614 +v -0.11588 0.10945 0.11653 +v -0.11854 0.11119 0.11650 +v -0.09644 0.12189 0.11787 +v -0.09642 0.12234 0.11847 +v -0.06440 0.12080 0.11664 +v -0.06237 0.11889 0.11638 +v -0.07412 0.12300 0.11983 +v -0.06800 0.12230 0.11770 +v -0.06980 0.12278 0.11893 +v -0.06820 0.12161 0.11675 +v -0.06743 0.12144 0.11664 +v -0.06571 0.12089 0.11652 +v -0.07949 0.12340 0.12025 +v -0.07826 0.12323 0.12023 +v -0.07708 0.12320 0.12112 +v -0.08227 0.12345 0.12304 +v -0.08694 0.12329 0.12256 +v -0.08748 0.12316 0.12186 +v -0.08824 0.12311 0.12180 +v -0.05506 0.10623 0.11590 +v -0.05441 0.10520 0.11577 +v -0.05053 0.08500 0.11553 +v -0.09684 0.06994 0.11576 +v -0.10184 0.07569 0.11596 +v -0.10223 0.07631 0.11629 +v -0.09287 0.06800 0.11523 +v -0.09050 0.06651 0.11508 +v -0.06414 0.06893 0.11440 +v -0.06414 0.06943 0.11452 +v -0.06060 0.07537 0.11457 +v -0.05621 0.07954 0.11517 +v -0.05734 0.07417 0.11435 +v -0.05436 0.08206 0.11543 +v -0.06301 0.06397 0.11397 +v -0.06311 0.05969 0.11381 +v -0.06689 0.05495 0.11404 +v -0.07886 0.05877 0.11443 +v -0.07504 0.05812 0.11417 +v -0.06210 0.06497 0.11404 +v -0.11714 0.07044 0.11641 +v -0.12457 0.08249 0.11704 +v -0.12404 0.07990 0.11701 +v -0.12053 0.07015 0.11677 +v -0.12628 0.09397 0.11673 +v -0.12584 0.08796 0.11682 +v -0.10456 0.07412 0.11613 +v -0.10499 0.07347 0.11600 +v -0.12431 0.10196 0.11664 +v -0.12621 0.09898 0.11665 +v -0.10159 0.12174 0.11779 +v -0.11570 0.11365 0.11634 +v -0.10600 0.12220 0.11825 +v -0.10474 0.12207 0.11813 +v -0.11003 0.12228 0.11856 +v -0.09729 0.12161 0.11766 +v -0.09472 0.12226 0.11855 +v -0.09139 0.12232 0.11891 +v -0.06291 0.12011 0.11639 +v -0.05815 0.12022 0.11620 +v -0.05591 0.12007 0.11607 +v -0.06014 0.12090 0.11618 +v -0.06759 0.12195 0.11713 +v -0.06772 0.12326 0.12076 +v -0.06659 0.12112 0.11643 +v -0.07917 0.12338 0.12084 +v -0.07545 0.12323 0.12166 +v -0.08405 0.12326 0.12393 +v -0.08579 0.12322 0.12436 +v -0.09060 0.12270 0.11991 +v -0.08826 0.12331 0.12256 +v -0.10263 0.07453 0.11597 +v -0.10066 0.06996 0.11588 +v -0.09057 0.06382 0.11519 +v -0.09419 0.07020 0.11553 +v -0.06135 0.07034 0.11447 +v -0.05806 0.07353 0.11431 +v -0.05580 0.07758 0.11498 +v -0.05598 0.07503 0.11456 +v -0.06192 0.06189 0.11391 +v -0.07457 0.05331 0.11436 +v -0.06991 0.05350 0.11428 +v -0.07708 0.05716 0.11432 +v -0.08258 0.05593 0.11424 +v -0.08532 0.05755 0.11454 +v -0.07499 0.05522 0.11433 +v -0.08748 0.06286 0.11485 +v -0.06224 0.06773 0.11431 +v -0.06101 0.06627 0.11434 +v -0.10782 0.06988 0.11620 +v -0.10986 0.06792 0.11601 +v -0.11368 0.06635 0.11613 +v -0.12505 0.08457 0.11689 +v -0.12712 0.09125 0.11654 +v -0.12746 0.08582 0.11668 +v -0.10340 0.07480 0.11619 +v -0.10277 0.07545 0.11626 +v -0.10707 0.07123 0.11618 +v -0.10394 0.12192 0.11796 +v -0.10258 0.12180 0.11796 +v -0.09928 0.12194 0.11826 +v -0.10065 0.12194 0.11809 +v -0.10900 0.12219 0.11831 +v -0.10688 0.12213 0.11830 +v -0.11084 0.12255 0.11898 +v -0.09723 0.12215 0.11830 +v -0.09303 0.12248 0.11927 +v -0.09574 0.12246 0.11878 +v -0.06556 0.12160 0.11687 +v -0.06335 0.12119 0.11666 +v -0.06165 0.12051 0.11631 +v -0.05951 0.12013 0.11617 +v -0.05680 0.12003 0.11616 +v -0.06973 0.12324 0.12102 +v -0.06759 0.12287 0.11913 +v -0.06662 0.12206 0.11723 +v -0.06699 0.12177 0.11692 +v -0.06639 0.12150 0.11671 +v -0.07715 0.12321 0.12246 +v -0.08295 0.12332 0.12417 +v -0.08017 0.12348 0.12314 +v -0.08698 0.12325 0.12363 +v -0.09056 0.12316 0.12188 +v -0.08946 0.12346 0.12293 +v -0.05158 0.08173 0.11543 +v -0.04827 0.08370 0.11538 +v -0.10331 0.07323 0.11590 +v -0.09980 0.06774 0.11579 +v -0.10401 0.07049 0.11605 +v -0.09563 0.06514 0.11536 +v -0.09643 0.06920 0.11572 +v -0.06161 0.06891 0.11443 +v -0.05398 0.07906 0.11545 +v -0.05600 0.07295 0.11434 +v -0.06119 0.06388 0.11398 +v -0.06199 0.05999 0.11380 +v -0.06317 0.05540 0.11376 +v -0.07151 0.05372 0.11429 +v -0.06796 0.05165 0.11404 +v -0.07832 0.05635 0.11436 +v -0.08696 0.05602 0.11461 +v -0.08951 0.06130 0.11491 +v -0.06089 0.06498 0.11418 +v -0.10908 0.06672 0.11595 +v -0.10373 0.07400 0.11592 +v -0.10458 0.07292 0.11595 +v -0.10562 0.07262 0.11603 +v -0.10573 0.07162 0.11607 +v -0.09844 0.12208 0.11842 +v -0.10233 0.12205 0.11849 +v -0.10560 0.12248 0.11869 +v -0.10434 0.12224 0.11833 +v -0.10826 0.12238 0.11861 +v -0.10689 0.12251 0.11884 +v -0.10900 0.12259 0.11886 +v -0.10994 0.12284 0.11946 +v -0.11185 0.12240 0.11896 +v -0.09789 0.12241 0.11886 +v -0.09734 0.12249 0.11899 +v -0.09511 0.12261 0.11947 +v -0.09590 0.12267 0.11924 +v -0.09196 0.12272 0.12019 +v -0.06463 0.12178 0.11716 +v -0.06396 0.12158 0.11699 +v -0.06253 0.12106 0.11638 +v -0.05891 0.12067 0.11612 +v -0.05705 0.12098 0.11636 +v -0.05568 0.12058 0.11604 +v -0.05615 0.12071 0.11616 +v -0.06157 0.12133 0.11647 +v -0.05933 0.12114 0.11610 +v -0.06655 0.12272 0.11850 +v -0.06610 0.12230 0.11756 +v -0.06800 0.12352 0.12270 +v -0.06673 0.12310 0.11971 +v -0.07009 0.12330 0.12195 +v -0.07619 0.12318 0.12334 +v -0.08373 0.12324 0.12531 +v -0.08075 0.12338 0.12475 +v -0.08532 0.12319 0.12532 +v -0.08798 0.12335 0.12341 +v -0.08783 0.12317 0.12524 +v -0.08924 0.12349 0.12338 +v -0.05283 0.07996 0.11552 +v -0.05001 0.08269 0.11536 +v -0.10222 0.06691 0.11599 +v -0.09669 0.06573 0.11543 +v -0.09586 0.06798 0.11553 +v -0.09187 0.06312 0.11525 +v -0.05658 0.06937 0.11418 +v -0.06061 0.06742 0.11438 +v -0.05501 0.07722 0.11498 +v -0.05107 0.07487 0.11468 +v -0.05948 0.06287 0.11406 +v -0.06094 0.05670 0.11373 +v -0.06041 0.06041 0.11396 +v -0.06534 0.05223 0.11387 +v -0.07451 0.05183 0.11427 +v -0.07672 0.05269 0.11445 +v -0.07353 0.05050 0.11399 +v -0.06970 0.05052 0.11399 +v -0.08424 0.05597 0.11432 +v -0.08028 0.05502 0.11432 +v -0.08916 0.05934 0.11477 +v -0.05980 0.06580 0.11433 +v -0.10643 0.07019 0.11619 +v -0.10869 0.06864 0.11612 +v -0.11149 0.06396 0.11597 +v -0.10279 0.12209 0.11854 +v -0.09936 0.12226 0.11910 +v -0.10078 0.12255 0.12053 +v -0.10762 0.12253 0.11881 +v -0.11123 0.12290 0.11959 +v -0.09365 0.12262 0.11971 +v -0.06535 0.12215 0.11743 +v -0.06587 0.12193 0.11705 +v -0.06322 0.12193 0.11722 +v -0.06271 0.12153 0.11666 +v -0.05865 0.12109 0.11618 +v -0.05798 0.12121 0.11640 +v -0.05446 0.12049 0.11612 +v -0.06049 0.12145 0.11635 +v -0.05979 0.12131 0.11613 +v -0.06578 0.12332 0.12105 +v -0.07041 0.12332 0.12321 +v -0.07884 0.12338 0.12388 +v -0.08253 0.12323 0.12502 +v -0.08687 0.12319 0.12656 +v -0.08885 0.12306 0.12762 +v -0.09250 0.12304 0.12171 +v -0.09100 0.12328 0.12294 +v -0.05228 0.07945 0.11548 +v -0.05072 0.08058 0.11531 +v -0.04828 0.08238 0.11511 +v -0.04648 0.08308 0.11504 +v -0.10183 0.06498 0.11581 +v -0.09905 0.06644 0.11562 +v -0.10501 0.06767 0.11633 +v -0.09465 0.06285 0.11530 +v -0.05833 0.06706 0.11426 +v -0.05345 0.07879 0.11549 +v -0.05404 0.07685 0.11495 +v -0.05277 0.07596 0.11478 +v -0.05312 0.07141 0.11434 +v -0.05933 0.06435 0.11432 +v -0.05986 0.05870 0.11384 +v -0.06173 0.05367 0.11362 +v -0.07619 0.04839 0.11415 +v -0.07817 0.05057 0.11450 +v -0.07188 0.04954 0.11388 +v -0.06752 0.04949 0.11397 +v -0.08518 0.05460 0.11418 +v -0.07953 0.05243 0.11442 +v -0.08351 0.05376 0.11415 +v -0.08618 0.05517 0.11434 +v -0.08870 0.05626 0.11464 +v -0.09113 0.05868 0.11472 +v -0.10628 0.06868 0.11632 +v -0.10713 0.06754 0.11635 +v -0.10836 0.06733 0.11608 +v -0.10788 0.06544 0.11582 +v -0.10244 0.12259 0.12034 +v -0.10660 0.12277 0.11947 +v -0.10470 0.12261 0.11904 +v -0.10848 0.12285 0.11953 +v -0.11011 0.12322 0.12063 +v -0.11199 0.12299 0.12017 +v -0.09826 0.12257 0.11969 +v -0.09434 0.12286 0.12113 +v -0.09604 0.12279 0.12082 +v -0.06406 0.12209 0.11746 +v -0.06471 0.12230 0.11773 +v -0.06224 0.12144 0.11649 +v -0.05698 0.12153 0.11669 +v -0.05473 0.12136 0.11641 +v -0.06092 0.12179 0.11673 +v -0.05960 0.12162 0.11622 +v -0.06531 0.12262 0.11822 +v -0.06955 0.12333 0.12382 +v -0.06692 0.12356 0.12394 +v -0.06519 0.12303 0.11958 +v -0.07641 0.12328 0.12486 +v -0.07410 0.12322 0.12447 +v -0.08359 0.12327 0.12689 +v -0.08222 0.12326 0.12598 +v -0.08112 0.12338 0.12631 +v -0.09096 0.12320 0.12573 +v -0.09211 0.12323 0.12280 +v -0.09103 0.12329 0.12394 +v -0.05250 0.07880 0.11538 +v -0.04924 0.08146 0.11508 +v -0.04485 0.08339 0.11476 +v -0.10313 0.06516 0.11602 +v -0.10397 0.06609 0.11627 +v -0.09901 0.06287 0.11539 +v -0.09249 0.06012 0.11489 +v -0.09322 0.06207 0.11525 +v -0.05559 0.06486 0.11401 +v -0.05137 0.07655 0.11482 +v -0.05091 0.07326 0.11454 +v -0.05713 0.05931 0.11399 +v -0.05813 0.06376 0.11427 +v -0.05713 0.05822 0.11389 +v -0.06106 0.05170 0.11361 +v -0.05816 0.05363 0.11362 +v -0.07787 0.04956 0.11444 +v -0.07411 0.04753 0.11394 +v -0.06864 0.04860 0.11390 +v -0.07018 0.04770 0.11370 +v -0.06333 0.04694 0.11401 +v -0.08699 0.05543 0.11450 +v -0.08985 0.05729 0.11462 +v -0.10735 0.06262 0.11571 +v -0.09931 0.12276 0.12090 +v -0.10107 0.12287 0.12257 +v -0.11127 0.12308 0.12017 +v -0.09775 0.12283 0.12128 +v -0.06393 0.12243 0.11797 +v -0.06189 0.12193 0.11699 +v -0.05898 0.12150 0.11617 +v -0.05864 0.12162 0.11645 +v -0.05805 0.12177 0.11682 +v -0.05368 0.12115 0.11621 +v -0.06006 0.12176 0.11645 +v -0.05925 0.12158 0.11614 +v -0.06803 0.12345 0.12556 +v -0.06388 0.12348 0.12264 +v -0.06363 0.12289 0.11909 +v -0.06989 0.12320 0.12548 +v -0.07826 0.12340 0.12942 +v -0.07236 0.12324 0.12628 +v -0.08164 0.12343 0.12752 +v -0.08536 0.12321 0.12917 +v -0.08645 0.12315 0.12966 +v -0.08886 0.12322 0.12514 +v -0.09029 0.12309 0.12933 +v -0.09363 0.12310 0.12248 +v -0.05087 0.07945 0.11515 +v -0.05159 0.07843 0.11513 +v -0.04745 0.08165 0.11470 +v -0.04580 0.08247 0.11471 +v -0.09961 0.06457 0.11555 +v -0.10283 0.06396 0.11577 +v -0.10560 0.06664 0.11637 +v -0.10625 0.06754 0.11645 +v -0.09700 0.06253 0.11530 +v -0.09482 0.06089 0.11502 +v -0.05261 0.06464 0.11393 +v -0.05359 0.06981 0.11426 +v -0.05248 0.07755 0.11507 +v -0.04845 0.07438 0.11474 +v -0.04694 0.07248 0.11452 +v -0.05690 0.06036 0.11399 +v -0.05791 0.06265 0.11411 +v -0.05711 0.05674 0.11380 +v -0.05786 0.05120 0.11346 +v -0.06275 0.04805 0.11397 +v -0.07815 0.04811 0.11416 +v -0.07986 0.04975 0.11441 +v -0.07898 0.04870 0.11432 +v -0.07165 0.04754 0.11373 +v -0.08657 0.05354 0.11398 +v -0.08695 0.05443 0.11409 +v -0.08361 0.05014 0.11427 +v -0.08980 0.05617 0.11444 +v -0.08866 0.05537 0.11439 +v -0.09122 0.05719 0.11451 +v -0.09363 0.05814 0.11477 +v -0.10703 0.06567 0.11590 +v -0.10667 0.06389 0.11575 +v -0.11013 0.06185 0.11592 +v -0.10017 0.12286 0.12164 +v -0.10197 0.12295 0.12258 +v -0.10375 0.12294 0.12083 +v -0.10581 0.12304 0.12073 +v -0.10785 0.12307 0.12040 +v -0.10888 0.12329 0.12104 +v -0.11133 0.12331 0.12143 +v -0.09672 0.12275 0.12228 +v -0.06483 0.12267 0.11845 +v -0.06280 0.12234 0.11786 +v -0.05707 0.12205 0.11732 +v -0.05527 0.12194 0.11692 +v -0.05324 0.12159 0.11644 +v -0.06082 0.12218 0.11725 +v -0.05917 0.12179 0.11636 +v -0.06382 0.12347 0.12484 +v -0.06241 0.12325 0.12114 +v -0.06635 0.12354 0.12542 +v -0.07434 0.12318 0.12637 +v -0.08007 0.12340 0.12978 +v -0.08366 0.12332 0.13050 +v -0.08835 0.12303 0.12908 +v -0.09340 0.12326 0.12658 +v -0.09416 0.12322 0.12365 +v -0.09342 0.12328 0.12422 +v -0.04813 0.08090 0.11457 +v -0.10145 0.06292 0.11555 +v -0.10388 0.06445 0.11596 +v -0.10445 0.06517 0.11622 +v -0.10600 0.06718 0.11646 +v -0.09809 0.06170 0.11531 +v -0.05664 0.06308 0.11404 +v -0.05001 0.06743 0.11405 +v -0.05435 0.06074 0.11384 +v -0.05043 0.07799 0.11486 +v -0.04918 0.07692 0.11475 +v -0.05484 0.05856 0.11373 +v -0.05919 0.04861 0.11356 +v -0.05590 0.05492 0.11378 +v -0.05642 0.05159 0.11345 +v -0.07547 0.04656 0.11400 +v -0.07856 0.04654 0.11401 +v -0.07272 0.04664 0.11382 +v -0.06407 0.04575 0.11394 +v -0.06966 0.04561 0.11349 +v -0.07074 0.04701 0.11361 +v -0.06037 0.04610 0.11370 +v -0.09377 0.05955 0.11484 +v -0.10653 0.06702 0.11638 +v -0.10614 0.06491 0.11587 +v -0.10529 0.06333 0.11569 +v -0.11276 0.06178 0.11597 +v -0.10983 0.05899 0.11598 +v -0.09988 0.12300 0.12187 +v -0.10152 0.12301 0.12355 +v -0.10286 0.12305 0.12203 +v -0.10070 0.12296 0.12308 +v -0.10437 0.12314 0.12147 +v -0.10308 0.12296 0.12125 +v -0.10942 0.12340 0.12175 +v -0.11027 0.12335 0.12133 +v -0.09492 0.12293 0.12250 +v -0.09705 0.12279 0.12268 +v -0.06319 0.12263 0.11841 +v -0.05913 0.12212 0.11708 +v -0.05440 0.12193 0.11691 +v -0.05959 0.12191 0.11654 +v -0.06807 0.12349 0.12718 +v -0.06152 0.12342 0.12264 +v -0.06211 0.12260 0.11851 +v -0.07019 0.12320 0.12607 +v -0.07312 0.12329 0.12718 +v -0.08157 0.12329 0.13010 +v -0.08263 0.12334 0.12858 +v -0.08594 0.12331 0.13095 +v -0.08710 0.12305 0.13046 +v -0.08848 0.12294 0.13153 +v -0.04964 0.07974 0.11479 +v -0.04763 0.08090 0.11445 +v -0.04629 0.08147 0.11450 +v -0.10398 0.06284 0.11557 +v -0.10601 0.06604 0.11620 +v -0.10632 0.06721 0.11649 +v -0.10136 0.06123 0.11541 +v -0.09617 0.06105 0.11506 +v -0.09898 0.06073 0.11536 +v -0.09732 0.06035 0.11516 +v -0.04694 0.06578 0.11404 +v -0.04876 0.05951 0.11380 +v -0.04597 0.07606 0.11464 +v -0.04506 0.07366 0.11459 +v -0.05637 0.04968 0.11331 +v -0.05556 0.05351 0.11366 +v -0.07445 0.04441 0.11400 +v -0.08025 0.04804 0.11432 +v -0.08186 0.04783 0.11428 +v -0.07096 0.04606 0.11357 +v -0.07329 0.04555 0.11394 +v -0.06720 0.04575 0.11378 +v -0.06124 0.04472 0.11365 +v -0.08723 0.05394 0.11389 +v -0.08716 0.05174 0.11412 +v -0.08790 0.05427 0.11399 +v -0.08952 0.05499 0.11416 +v -0.09039 0.05565 0.11428 +v -0.09099 0.05438 0.11422 +v -0.09543 0.05965 0.11495 +v -0.10432 0.06193 0.11544 +v -0.10609 0.05865 0.11563 +v -0.09981 0.12303 0.12235 +v -0.10282 0.12308 0.12307 +v -0.10335 0.12315 0.12159 +v -0.10553 0.12318 0.12215 +v -0.10814 0.12332 0.12174 +v -0.10876 0.12341 0.12179 +v -0.11069 0.12350 0.12319 +v -0.09855 0.12315 0.12297 +v -0.09619 0.12281 0.12281 +v -0.09774 0.12294 0.12249 +v -0.05717 0.12243 0.11799 +v -0.05515 0.12233 0.11751 +v -0.06171 0.12348 0.12482 +v -0.06445 0.12360 0.12647 +v -0.06155 0.12335 0.12198 +v -0.06736 0.12364 0.12904 +v -0.06113 0.12315 0.12063 +v -0.07116 0.12329 0.12722 +v -0.08459 0.12328 0.13178 +v -0.09565 0.12342 0.12499 +v -0.09506 0.12306 0.12329 +v -0.09553 0.12325 0.12404 +v -0.04831 0.07982 0.11451 +v -0.04792 0.08058 0.11442 +v -0.04706 0.08062 0.11443 +v -0.04537 0.08131 0.11443 +v -0.10492 0.06437 0.11591 +v -0.05172 0.05822 0.11374 +v -0.04698 0.07909 0.11445 +v -0.04560 0.07128 0.11452 +v -0.05415 0.05920 0.11372 +v -0.05397 0.05592 0.11372 +v -0.05907 0.04503 0.11364 +v -0.05528 0.05434 0.11379 +v -0.05400 0.05301 0.11352 +v -0.05250 0.05189 0.11338 +v -0.07617 0.04393 0.11393 +v -0.08072 0.04548 0.11397 +v -0.08318 0.04703 0.11426 +v -0.07202 0.04538 0.11376 +v -0.06540 0.04469 0.11376 +v -0.06277 0.04390 0.11362 +v -0.06706 0.04364 0.11346 +v -0.08812 0.05339 0.11397 +v -0.08665 0.04855 0.11444 +v -0.09525 0.05432 0.11487 +v -0.09735 0.05778 0.11510 +v -0.10403 0.05932 0.11537 +v -0.11269 0.06044 0.11588 +v -0.10686 0.05694 0.11578 +v -0.10185 0.12300 0.12424 +v -0.10052 0.12308 0.12442 +v -0.10368 0.12323 0.12206 +v -0.09643 0.12288 0.12337 +v -0.09783 0.12314 0.12340 +v -0.06036 0.12245 0.11772 +v -0.06992 0.12353 0.12852 +v -0.05985 0.12352 0.12449 +v -0.06300 0.12364 0.12590 +v -0.05965 0.12343 0.12207 +v -0.08624 0.12321 0.13156 +v -0.08386 0.12337 0.13274 +v -0.08700 0.12305 0.13136 +v -0.04761 0.08030 0.11439 +v -0.04581 0.07997 0.11440 +v -0.10086 0.06003 0.11540 +v -0.09895 0.05952 0.11528 +v -0.04609 0.05933 0.11378 +v -0.04993 0.05687 0.11358 +v -0.04436 0.07720 0.11449 +v -0.04344 0.07086 0.11456 +v -0.04591 0.06710 0.11422 +v -0.05591 0.04659 0.11343 +v -0.05130 0.05181 0.11336 +v -0.07328 0.04425 0.11404 +v -0.07507 0.04239 0.11385 +v -0.08138 0.04387 0.11389 +v -0.07134 0.04382 0.11360 +v -0.07243 0.04467 0.11394 +v -0.06500 0.04382 0.11360 +v -0.06241 0.04217 0.11350 +v -0.06987 0.04449 0.11342 +v -0.06842 0.04404 0.11340 +v -0.05946 0.04287 0.11358 +v -0.09038 0.04647 0.11493 +v -0.09059 0.05248 0.11433 +v -0.08984 0.05427 0.11410 +v -0.10255 0.05992 0.11533 +v -0.11413 0.06114 0.11577 +v -0.11081 0.05822 0.11597 +v -0.10345 0.05765 0.11528 +v -0.10542 0.05590 0.11568 +v -0.10977 0.05719 0.11595 +v -0.05402 0.12290 0.11842 +v -0.05747 0.12282 0.11899 +v -0.06154 0.12364 0.12654 +v -0.06287 0.12367 0.12757 +v -0.05949 0.12332 0.12109 +v -0.08565 0.12310 0.13257 +v -0.08741 0.12287 0.13214 +v -0.09651 0.12327 0.12409 +v -0.04461 0.06409 0.11400 +v -0.04885 0.05554 0.11338 +v -0.05135 0.05566 0.11362 +v -0.04462 0.06703 0.11437 +v -0.05318 0.05468 0.11361 +v -0.05778 0.04359 0.11373 +v -0.05218 0.04579 0.11334 +v -0.05078 0.05457 0.11343 +v -0.07361 0.04361 0.11406 +v -0.07837 0.04105 0.11399 +v -0.07403 0.04298 0.11391 +v -0.07927 0.04195 0.11393 +v -0.08590 0.04485 0.11450 +v -0.06052 0.04064 0.11342 +v -0.06519 0.04269 0.11345 +v -0.06838 0.04279 0.11332 +v -0.09475 0.04941 0.11506 +v -0.09848 0.05450 0.11524 +v -0.10268 0.05878 0.11525 +v -0.11365 0.05907 0.11575 +v -0.11187 0.05723 0.11572 +v -0.10690 0.05593 0.11572 +v -0.09840 0.12323 0.12393 +v -0.09712 0.12326 0.12396 +v -0.05803 0.12338 0.12188 +v -0.08659 0.12303 0.13210 +v -0.08528 0.12314 0.13351 +v -0.08799 0.12281 0.13257 +v -0.10081 0.05737 0.11526 +v -0.04305 0.06586 0.11429 +v -0.05456 0.04418 0.11343 +v -0.07263 0.04361 0.11392 +v -0.07697 0.04088 0.11389 +v -0.07412 0.04156 0.11360 +v -0.08083 0.04187 0.11388 +v -0.06944 0.04325 0.11336 +v -0.06314 0.03942 0.11346 +v -0.06920 0.04391 0.11334 +v -0.06679 0.04157 0.11337 +v -0.05869 0.04095 0.11341 +v -0.05728 0.04202 0.11372 +v -0.08896 0.04389 0.11493 +v -0.09501 0.04520 0.11539 +v -0.09914 0.05175 0.11526 +v -0.09971 0.05544 0.11528 +v -0.11506 0.06081 0.11581 +v -0.11275 0.05668 0.11562 +v -0.10425 0.05634 0.11544 +v -0.10316 0.05571 0.11525 +v -0.10571 0.05509 0.11552 +v -0.10913 0.05611 0.11573 +v -0.05426 0.12315 0.11948 +v -0.05813 0.12320 0.12060 +v -0.08712 0.12290 0.13321 +v -0.08609 0.12293 0.13328 +v -0.08578 0.12330 0.13581 +v -0.08895 0.12296 0.13347 +v -0.04282 0.06367 0.11399 +v -0.05605 0.04220 0.11357 +v -0.05341 0.04137 0.11326 +v -0.07211 0.04289 0.11371 +v -0.07271 0.04168 0.11358 +v -0.07823 0.04046 0.11400 +v -0.07608 0.04015 0.11360 +v -0.07887 0.04037 0.11394 +v -0.08009 0.03954 0.11384 +v -0.08234 0.04298 0.11395 +v -0.08406 0.04357 0.11420 +v -0.07088 0.04145 0.11350 +v -0.06543 0.04016 0.11345 +v -0.06812 0.04018 0.11342 +v -0.05824 0.03971 0.11334 +v -0.08734 0.04277 0.11459 +v -0.09176 0.04369 0.11514 +v -0.09801 0.04654 0.11544 +v -0.09907 0.04911 0.11535 +v -0.10084 0.05254 0.11532 +v -0.11585 0.05880 0.11596 +v -0.11437 0.05580 0.11577 +v -0.11106 0.05577 0.11552 +v -0.11174 0.05609 0.11550 +v -0.10444 0.05523 0.11537 +v -0.10191 0.05466 0.11522 +v -0.10830 0.05523 0.11548 +v -0.04118 0.06554 0.11422 +v -0.07729 0.03974 0.11368 +v -0.07431 0.04058 0.11351 +v -0.08129 0.04000 0.11381 +v -0.08282 0.03807 0.11369 +v -0.08526 0.04295 0.11433 +v -0.06520 0.03618 0.11356 +v -0.06643 0.03822 0.11353 +v -0.05695 0.04115 0.11353 +v -0.08897 0.04272 0.11486 +v -0.08992 0.04307 0.11502 +v -0.09445 0.04338 0.11532 +v -0.09681 0.04394 0.11548 +v -0.10066 0.05030 0.11528 +v -0.10168 0.05140 0.11517 +v -0.11168 0.05536 0.11543 +v -0.10381 0.05404 0.11510 +v -0.10511 0.05437 0.11523 +v -0.10612 0.05393 0.11508 +v -0.10933 0.05496 0.11539 +v -0.05573 0.12336 0.12141 +v -0.08782 0.12314 0.13567 +v -0.07832 0.03948 0.11376 +v -0.07644 0.03954 0.11343 +v -0.07534 0.03977 0.11352 +v -0.07283 0.04041 0.11353 +v -0.08069 0.03774 0.11363 +v -0.08398 0.04180 0.11399 +v -0.06929 0.03906 0.11356 +v -0.05604 0.04001 0.11332 +v -0.08840 0.04094 0.11433 +v -0.09027 0.04225 0.11482 +v -0.09325 0.04297 0.11514 +v -0.09654 0.04364 0.11553 +v -0.10057 0.04726 0.11540 +v -0.09896 0.04509 0.11538 +v -0.10122 0.04920 0.11523 +v -0.10184 0.05231 0.11522 +v -0.11925 0.05525 0.11649 +v -0.11594 0.05184 0.11592 +v -0.10292 0.05248 0.11499 +v -0.10803 0.05461 0.11525 +v -0.11033 0.05416 0.11531 +v -0.07851 0.03850 0.11363 +v -0.07619 0.03936 0.11345 +v -0.07690 0.03909 0.11349 +v -0.08687 0.04047 0.11405 +v -0.06847 0.03505 0.11383 +v -0.07199 0.03824 0.11363 +v -0.07046 0.03537 0.11392 +v -0.09206 0.04247 0.11490 +v -0.09463 0.04225 0.11501 +v -0.09655 0.04328 0.11543 +v -0.09994 0.04635 0.11542 +v -0.09891 0.04314 0.11517 +v -0.12098 0.05753 0.11678 +v -0.11000 0.05123 0.11523 +v -0.10390 0.05212 0.11478 +v -0.10509 0.05329 0.11494 +v -0.10692 0.05374 0.11499 +v -0.10860 0.05430 0.11516 +v -0.10914 0.05391 0.11520 +v -0.07598 0.03798 0.11351 +v -0.08379 0.03607 0.11368 +v -0.07819 0.03710 0.11356 +v -0.09078 0.03624 0.11403 +v -0.08971 0.03902 0.11418 +v -0.08979 0.04076 0.11441 +v -0.09211 0.04149 0.11464 +v -0.09292 0.04241 0.11483 +v -0.10290 0.04844 0.11491 +v -0.10152 0.04501 0.11517 +v -0.09775 0.04268 0.11515 +v -0.09950 0.04440 0.11524 +v -0.10320 0.05113 0.11485 +v -0.12242 0.05630 0.11683 +v -0.12102 0.05114 0.11639 +v -0.11681 0.04966 0.11598 +v -0.10670 0.05295 0.11493 +v -0.10799 0.05370 0.11507 +v -0.07660 0.03545 0.11358 +v -0.08974 0.03505 0.11391 +v -0.08077 0.03568 0.11370 +v -0.06880 0.03414 0.11389 +v -0.07018 0.03452 0.11390 +v -0.07288 0.03572 0.11372 +v -0.09674 0.04184 0.11495 +v -0.09321 0.04157 0.11468 +v -0.10229 0.04651 0.11512 +v -0.09821 0.04160 0.11489 +v -0.09989 0.04298 0.11512 +v -0.11170 0.04414 0.11549 +v -0.10495 0.05174 0.11479 +v -0.08616 0.03323 0.11388 +v -0.08386 0.03357 0.11382 +v -0.07925 0.03476 0.11373 +v -0.09284 0.03723 0.11427 +v -0.09110 0.03473 0.11388 +v -0.07179 0.03388 0.11376 +v -0.09281 0.03990 0.11446 +v -0.09480 0.04090 0.11470 +v -0.10356 0.05035 0.11481 +v -0.10365 0.04795 0.11491 +v -0.10369 0.04589 0.11503 +v -0.09913 0.04136 0.11490 +v -0.12327 0.05180 0.11652 +v -0.12185 0.04970 0.11637 +v -0.10645 0.04714 0.11504 +v -0.11784 0.04586 0.11604 +v -0.07482 0.03357 0.11360 +v -0.08944 0.03358 0.11395 +v -0.08009 0.03268 0.11371 +v -0.09172 0.03475 0.11398 +v -0.09773 0.04072 0.11467 +v -0.10510 0.04959 0.11485 +v -0.10391 0.04278 0.11510 +v -0.10093 0.04175 0.11508 +v -0.10008 0.04089 0.11493 +v -0.12517 0.05406 0.11667 +v -0.10587 0.04362 0.11511 +v -0.11860 0.04167 0.11605 +v -0.07671 0.03339 0.11357 +v -0.08820 0.03096 0.11406 +v -0.08682 0.03027 0.11395 +v -0.08365 0.03212 0.11378 +v -0.09449 0.03485 0.11438 +v -0.09476 0.03830 0.11445 +v -0.09201 0.03309 0.11408 +v -0.09636 0.03955 0.11453 +v -0.10270 0.04144 0.11514 +v -0.09897 0.03959 0.11463 +v -0.12323 0.04794 0.11640 +v -0.12556 0.05173 0.11647 +v -0.12134 0.04644 0.11626 +v -0.10751 0.04004 0.11515 +v -0.11396 0.03678 0.11557 +v -0.07503 0.03160 0.11348 +v -0.09122 0.02860 0.11441 +v -0.08103 0.03055 0.11355 +v -0.07803 0.03043 0.11357 +v -0.09594 0.03606 0.11451 +v -0.09407 0.03353 0.11422 +v -0.09777 0.03816 0.11449 +v -0.10481 0.04039 0.11510 +v -0.10098 0.03951 0.11495 +v -0.10284 0.03786 0.11517 +v -0.10126 0.03743 0.11477 +v -0.12738 0.05184 0.11637 +v -0.10973 0.03703 0.11521 +v -0.11879 0.03822 0.11607 +v -0.12318 0.04281 0.11615 +v -0.08981 0.02791 0.11433 +v -0.08440 0.02961 0.11371 +v -0.09712 0.03375 0.11471 +v -0.09570 0.03326 0.11446 +v -0.09497 0.03099 0.11429 +v -0.10346 0.03851 0.11510 +v -0.12510 0.04856 0.11636 +v -0.12765 0.05050 0.11621 +v -0.10743 0.03727 0.11497 +v -0.10579 0.03807 0.11497 +v -0.12042 0.03959 0.11621 +v -0.11758 0.03531 0.11573 +v -0.11113 0.03537 0.11544 +v -0.12271 0.04130 0.11611 +v -0.07533 0.02919 0.11353 +v -0.08763 0.02774 0.11403 +v -0.09253 0.02744 0.11443 +v -0.08583 0.02812 0.11380 +v -0.08108 0.02956 0.11347 +v -0.07986 0.02960 0.11355 +v -0.09692 0.03092 0.11446 +v -0.10193 0.03849 0.11507 +v -0.10296 0.03745 0.11504 +v -0.09999 0.03524 0.11472 +v -0.12503 0.04471 0.11625 +v -0.10834 0.03517 0.11478 +v -0.12094 0.03679 0.11611 +v -0.11437 0.03441 0.11528 +v -0.11021 0.03507 0.11531 +v -0.11155 0.03448 0.11536 +v -0.12685 0.04084 0.11595 +v -0.07806 0.02624 0.11374 +v -0.08951 0.02584 0.11421 +v -0.09120 0.02556 0.11434 +v -0.08175 0.02836 0.11355 +v -0.09695 0.03313 0.11470 +v -0.09525 0.02968 0.11431 +v -0.10376 0.03687 0.11482 +v -0.10253 0.03762 0.11509 +v -0.10190 0.03533 0.11469 +v -0.12609 0.04235 0.11608 +v -0.12667 0.04873 0.11622 +v -0.12669 0.04499 0.11617 +v -0.12777 0.04844 0.11622 +v -0.10592 0.03651 0.11473 +v -0.10971 0.03421 0.11499 +v -0.10662 0.03535 0.11457 +v -0.12261 0.03623 0.11603 +v -0.12017 0.03503 0.11604 +v -0.11221 0.03368 0.11513 +v -0.11517 0.03355 0.11513 +v -0.11058 0.03434 0.11531 +v -0.12595 0.03896 0.11590 +v -0.08721 0.02517 0.11403 +v -0.09324 0.02567 0.11432 +v -0.09904 0.03241 0.11486 +v -0.09794 0.03239 0.11476 +v -0.09504 0.02699 0.11419 +v -0.09628 0.02787 0.11424 +v -0.10257 0.03674 0.11480 +v -0.10079 0.03263 0.11488 +v -0.10810 0.03430 0.11458 +v -0.12342 0.03678 0.11596 +v -0.12153 0.03551 0.11615 +v -0.11806 0.03339 0.11549 +v -0.11370 0.03309 0.11498 +v -0.11123 0.03371 0.11518 +v -0.12721 0.03945 0.11593 +v -0.12763 0.04282 0.11618 +v -0.09382 0.02274 0.11447 +v -0.08301 0.02435 0.11396 +v -0.09822 0.03127 0.11475 +v -0.09760 0.02765 0.11441 +v -0.10499 0.03548 0.11450 +v -0.10291 0.03607 0.11465 +v -0.10380 0.03401 0.11464 +v -0.12772 0.04597 0.11625 +v -0.10981 0.03275 0.11477 +v -0.10546 0.03445 0.11450 +v -0.12238 0.03482 0.11604 +v -0.12133 0.03432 0.11611 +v -0.11160 0.03243 0.11491 +v -0.11487 0.03234 0.11496 +v -0.11076 0.03325 0.11498 +v -0.12673 0.03765 0.11590 +v -0.12777 0.04086 0.11607 +v -0.12514 0.03550 0.11586 +v -0.12748 0.04141 0.11597 +v -0.07885 0.02190 0.11420 +v -0.09091 0.02239 0.11447 +v -0.09591 0.02536 0.11418 +v -0.08599 0.02065 0.11432 +v -0.08047 0.02346 0.11405 +v -0.09952 0.03064 0.11503 +v -0.09978 0.02987 0.11501 +v -0.09805 0.02429 0.11433 +v -0.10421 0.03554 0.11458 +v -0.10320 0.03520 0.11460 +v -0.10345 0.03121 0.11497 +v -0.10839 0.03326 0.11457 +v -0.12347 0.03362 0.11586 +v -0.11932 0.03276 0.11554 +v -0.11430 0.03175 0.11494 +v -0.11910 0.03199 0.11542 +v -0.08860 0.01909 0.11465 +v -0.09325 0.01879 0.11484 +v -0.09890 0.02231 0.11450 +v -0.08251 0.02170 0.11420 +v -0.10117 0.03028 0.11508 +v -0.10034 0.02411 0.11470 +v -0.10841 0.03182 0.11476 +v -0.12239 0.03355 0.11589 +v -0.12188 0.03435 0.11608 +v -0.12131 0.03332 0.11588 +v -0.11145 0.03127 0.11492 +v -0.11678 0.03072 0.11520 +v -0.12709 0.03550 0.11595 +v -0.12784 0.03673 0.11611 +v -0.12564 0.03238 0.11591 +v -0.08007 0.02131 0.11431 +v -0.09727 0.02009 0.11478 +v -0.08591 0.01707 0.11450 +v -0.09979 0.02288 0.11454 +v -0.10075 0.02751 0.11502 +v -0.10659 0.02999 0.11505 +v -0.10209 0.02871 0.11519 +v -0.12230 0.03220 0.11573 +v -0.12088 0.03206 0.11565 +v -0.11096 0.02673 0.11544 +v -0.11937 0.02860 0.11553 +v -0.12070 0.03051 0.11555 +v -0.12708 0.03311 0.11598 +v -0.12380 0.03121 0.11580 +v -0.08134 0.01906 0.11438 +v -0.08957 0.01564 0.11502 +v -0.09970 0.02195 0.11453 +v -0.08826 0.01746 0.11478 +v -0.10192 0.02144 0.11474 +v -0.10202 0.02634 0.11523 +v -0.10455 0.02699 0.11539 +v -0.11815 0.02465 0.11587 +v -0.12733 0.03134 0.11589 +v -0.12636 0.03096 0.11601 +v -0.09916 0.01586 0.11520 +v -0.08702 0.01430 0.11485 +v -0.10147 0.02450 0.11501 +v -0.10215 0.02727 0.11526 +v -0.12260 0.02977 0.11566 +v -0.11503 0.02300 0.11592 +v -0.12226 0.02810 0.11569 +v -0.12125 0.02546 0.11588 +v -0.12485 0.02918 0.11587 +v -0.10008 0.01771 0.11492 +v -0.10107 0.02016 0.11473 +v -0.10327 0.02247 0.11527 +v -0.10293 0.02505 0.11537 +v -0.10675 0.02244 0.11569 +v -0.11773 0.02008 0.11614 +v -0.11255 0.02067 0.11589 +v -0.12077 0.02032 0.11635 +v -0.12727 0.02915 0.11580 +v -0.12795 0.02915 0.11593 +v -0.12629 0.02864 0.11588 +v -0.10217 0.02124 0.11482 +v -0.10377 0.02319 0.11547 +v -0.10433 0.02422 0.11562 +v -0.12394 0.02676 0.11582 +v -0.12365 0.02373 0.11599 +v -0.10128 0.01799 0.11486 +v -0.10284 0.01878 0.11497 +v -0.10370 0.02038 0.11522 +v -0.10546 0.01977 0.11553 +v -0.10988 0.01847 0.11580 +v -0.11479 0.01709 0.11583 +v -0.12096 0.01716 0.11623 +v -0.12324 0.02158 0.11616 +v -0.12689 0.02616 0.11573 +v -0.12760 0.02730 0.11578 +v -0.12589 0.02631 0.11582 +v -0.10239 0.01680 0.11487 +v -0.10764 0.01877 0.11573 +v -0.11219 0.01735 0.11576 +v -0.11966 0.01573 0.11601 +v -0.12228 0.01927 0.11631 +v -0.12523 0.02495 0.11588 +v -0.12579 0.02124 0.11601 +v -0.12792 0.02550 0.11584 +v -0.10431 0.01898 0.11526 +v -0.10986 0.01708 0.11571 +v -0.11075 0.01650 0.11559 +v -0.11325 0.01623 0.11566 +v -0.11764 0.01395 0.11558 +v -0.12346 0.01442 0.11584 +v -0.12403 0.01661 0.11596 +v -0.12423 0.01951 0.11609 +v -0.10363 0.01738 0.11495 +v -0.10494 0.01509 0.11478 +v -0.10674 0.01747 0.11553 +v -0.11199 0.01579 0.11547 +v -0.11406 0.01559 0.11556 +v -0.11955 0.01341 0.11564 +v -0.12529 0.01723 0.11577 +v -0.12668 0.02277 0.11577 +v -0.12581 0.01956 0.11591 +v -0.12760 0.02368 0.11576 +v -0.10697 0.01356 0.11486 +v -0.10532 0.01648 0.11504 +v -0.10734 0.01513 0.11502 +v -0.10984 0.01640 0.11556 +v -0.11098 0.01534 0.11526 +v -0.11401 0.01428 0.11531 +v -0.11802 0.01235 0.11545 +v -0.12350 0.01314 0.11575 +v -0.12493 0.01543 0.11574 +v -0.12682 0.02143 0.11575 +v -0.12656 0.02061 0.11581 +v -0.10901 0.01586 0.11531 +v -0.11188 0.01432 0.11512 +v -0.11490 0.01276 0.11517 +v -0.12483 0.01391 0.11572 +v -0.12622 0.01567 0.11540 +v -0.12653 0.01831 0.11563 +v -0.10974 0.01282 0.11488 +v -0.10805 0.01426 0.11490 +v -0.10910 0.01474 0.11500 +v -0.11087 0.01479 0.11506 +v -0.11339 0.01232 0.11511 +v -0.11741 0.01125 0.11536 +v -0.12169 0.01148 0.11559 +v -0.12561 0.01231 0.11572 +v -0.12596 0.01419 0.11549 +v -0.12711 0.01599 0.11521 +v -0.10906 0.01362 0.11487 +v -0.11051 0.01418 0.11493 +v -0.11156 0.01283 0.11499 +v -0.12420 0.01162 0.11576 +v -0.12692 0.01474 0.11518 +v -0.11380 0.00667 0.11547 +v -0.11256 0.01073 0.11514 +v -0.12259 0.00979 0.11570 +v -0.12517 0.01067 0.11593 +v -0.12692 0.01339 0.11545 +v -0.12741 0.01519 0.11509 +v -0.11959 0.00787 0.11565 +v -0.12647 0.01111 0.11596 +v -0.12682 0.01208 0.11572 +v -0.12744 0.01457 0.11523 +v -0.11319 0.00444 0.11540 +v -0.12249 0.00688 0.11589 +v -0.12472 0.00911 0.11603 +v -0.12642 0.00976 0.11630 +v -0.11217 0.00395 0.11540 +v -0.11447 0.00529 0.11548 +v -0.11612 0.00628 0.11557 +v -0.12159 0.00620 0.11584 +v -0.12692 0.01047 0.11621 +v -0.11273 0.00357 0.11535 +v -0.11471 0.00415 0.11529 +v -0.11896 0.00569 0.11563 +v -0.12466 0.00728 0.11615 +v -0.12362 0.00546 0.11601 +v -0.12620 0.00794 0.11642 +v -0.11208 0.00330 0.11534 +v -0.11353 0.00327 0.11506 +v -0.11617 0.00495 0.11547 +v -0.11723 0.00569 0.11558 +v -0.12197 0.00477 0.11576 +v -0.12067 0.00519 0.11571 +v -0.11487 0.00322 0.11491 +v -0.11608 0.00399 0.11516 +v -0.11761 0.00447 0.11537 +v -0.12618 0.00620 0.11643 +v -0.12327 0.00437 0.11578 +v -0.11922 0.00441 0.11549 +v -0.12642 0.00515 0.11639 +v -0.12089 0.00391 0.11538 +v -0.12479 0.00439 0.11600 +v -0.12216 0.00390 0.11554 +v -0.11710 0.00342 0.11486 +v -0.11838 0.00396 0.11530 +v -0.12745 0.00558 0.11651 +v -0.12401 0.00345 0.11534 +v -0.12281 0.00343 0.11533 +v -0.11971 0.00387 0.11533 +v -0.11807 0.00353 0.11504 +v -0.11897 0.00351 0.11511 +v -0.12566 0.00375 0.11579 +v -0.12692 0.00448 0.11624 +v -0.12186 0.00324 0.11512 +v -0.11987 0.00316 0.11487 +v -0.12685 0.00359 0.11592 +v 0.06033 0.04517 0.11239 +v 0.05923 0.04658 0.11236 +v 0.06131 0.04592 0.11255 +v 0.05913 0.04523 0.11232 +v 0.06069 0.04762 0.11232 +v 0.06141 0.04484 0.11245 +v 0.05841 0.04579 0.11240 +v 0.06066 0.04339 0.11199 +v 0.06038 0.05019 0.11194 +v 0.06241 0.04693 0.11257 +v 0.06237 0.04493 0.11265 +v 0.05756 0.04638 0.11234 +v 0.05822 0.04513 0.11228 +v 0.05859 0.04426 0.11204 +v 0.05701 0.04828 0.11209 +v 0.06162 0.04899 0.11218 +v 0.06244 0.04567 0.11279 +v 0.06256 0.04359 0.11218 +v 0.05753 0.04564 0.11234 +v 0.05838 0.04305 0.11184 +v 0.05707 0.05064 0.11175 +v 0.06241 0.05084 0.11207 +v 0.06310 0.04576 0.11287 +v 0.06347 0.04868 0.11231 +v 0.06301 0.04515 0.11288 +v 0.06303 0.04421 0.11243 +v 0.06157 0.04262 0.11200 +v 0.05599 0.04636 0.11217 +v 0.05705 0.04436 0.11185 +v 0.05626 0.04525 0.11202 +v 0.05951 0.04225 0.11191 +v 0.05544 0.04945 0.11205 +v 0.05996 0.05212 0.11178 +v 0.06129 0.05286 0.11191 +v 0.06412 0.04620 0.11270 +v 0.06394 0.04388 0.11235 +v 0.06408 0.04292 0.11219 +v 0.05465 0.04756 0.11206 +v 0.05632 0.04239 0.11177 +v 0.05684 0.05081 0.11177 +v 0.05810 0.05215 0.11176 +v 0.06391 0.05030 0.11212 +v 0.06284 0.05267 0.11215 +v 0.06351 0.04529 0.11289 +v 0.06533 0.04805 0.11237 +v 0.06239 0.04048 0.11209 +v 0.05519 0.04601 0.11210 +v 0.05583 0.04435 0.11178 +v 0.06009 0.03975 0.11214 +v 0.05369 0.04862 0.11208 +v 0.05509 0.05065 0.11212 +v 0.05966 0.05376 0.11182 +v 0.06383 0.05133 0.11214 +v 0.06537 0.04978 0.11209 +v 0.06236 0.05442 0.11202 +v 0.06400 0.04492 0.11276 +v 0.06606 0.04568 0.11266 +v 0.06467 0.04411 0.11244 +v 0.06476 0.04373 0.11225 +v 0.06556 0.04113 0.11224 +v 0.05391 0.04643 0.11194 +v 0.05953 0.03864 0.11225 +v 0.05230 0.04438 0.11156 +v 0.05328 0.04944 0.11222 +v 0.05322 0.04742 0.11196 +v 0.05627 0.05228 0.11202 +v 0.05735 0.05361 0.11193 +v 0.05883 0.05545 0.11189 +v 0.06514 0.05089 0.11205 +v 0.06396 0.05226 0.11223 +v 0.06338 0.05344 0.11229 +v 0.06493 0.04474 0.11264 +v 0.06745 0.04750 0.11244 +v 0.06630 0.05028 0.11196 +v 0.06551 0.04298 0.11233 +v 0.06238 0.03852 0.11209 +v 0.05342 0.04553 0.11176 +v 0.05681 0.03840 0.11220 +v 0.05186 0.04243 0.11163 +v 0.05194 0.04823 0.11201 +v 0.05392 0.05106 0.11240 +v 0.06430 0.05763 0.11206 +v 0.06272 0.05564 0.11200 +v 0.06349 0.05291 0.11231 +v 0.06395 0.05432 0.11222 +v 0.06875 0.04501 0.11275 +v 0.06585 0.04437 0.11263 +v 0.06527 0.04386 0.11243 +v 0.06636 0.04204 0.11233 +v 0.06504 0.03903 0.11213 +v 0.05807 0.03604 0.11211 +v 0.05343 0.03877 0.11192 +v 0.06094 0.03633 0.11207 +v 0.05113 0.04636 0.11163 +v 0.04910 0.04364 0.11150 +v 0.05164 0.05010 0.11255 +v 0.05311 0.05024 0.11240 +v 0.05389 0.05283 0.11237 +v 0.05631 0.05727 0.11204 +v 0.05893 0.05864 0.11208 +v 0.06433 0.05327 0.11231 +v 0.06610 0.05162 0.11201 +v 0.06660 0.05034 0.11198 +v 0.07023 0.04890 0.11225 +v 0.06788 0.04361 0.11267 +v 0.06685 0.04080 0.11222 +v 0.06445 0.03705 0.11210 +v 0.05543 0.03678 0.11207 +v 0.05956 0.03830 0.11226 +v 0.06247 0.03667 0.11204 +v 0.05076 0.04540 0.11152 +v 0.04928 0.03903 0.11192 +v 0.05060 0.04877 0.11220 +v 0.05061 0.04745 0.11177 +v 0.05137 0.05113 0.11262 +v 0.05552 0.05537 0.11209 +v 0.06575 0.05909 0.11219 +v 0.06415 0.05587 0.11207 +v 0.06584 0.05533 0.11206 +v 0.07091 0.04580 0.11255 +v 0.06972 0.04393 0.11275 +v 0.06875 0.04245 0.11248 +v 0.06733 0.03879 0.11202 +v 0.05670 0.03457 0.11210 +v 0.05414 0.03392 0.11204 +v 0.06168 0.03391 0.11221 +v 0.04964 0.04610 0.11141 +v 0.04511 0.04008 0.11194 +v 0.05032 0.03530 0.11202 +v 0.05065 0.04956 0.11248 +v 0.05047 0.05401 0.11257 +v 0.05148 0.05835 0.11225 +v 0.05412 0.06112 0.11220 +v 0.06362 0.06034 0.11234 +v 0.06799 0.05762 0.11208 +v 0.06650 0.05329 0.11203 +v 0.06751 0.05207 0.11186 +v 0.07241 0.04616 0.11248 +v 0.07129 0.04158 0.11218 +v 0.06401 0.03393 0.11230 +v 0.06678 0.03679 0.11205 +v 0.07099 0.03902 0.11189 +v 0.06050 0.03229 0.11221 +v 0.04523 0.03551 0.11238 +v 0.04589 0.04536 0.11129 +v 0.04830 0.04566 0.11120 +v 0.04736 0.03559 0.11222 +v 0.04942 0.04935 0.11245 +v 0.04942 0.04828 0.11196 +v 0.04892 0.04723 0.11147 +v 0.04910 0.05124 0.11276 +v 0.05491 0.06446 0.11239 +v 0.05963 0.06156 0.11235 +v 0.06588 0.06045 0.11236 +v 0.06754 0.06031 0.11223 +v 0.06870 0.05485 0.11199 +v 0.06979 0.05202 0.11198 +v 0.07245 0.04508 0.11248 +v 0.07501 0.04895 0.11228 +v 0.07119 0.04399 0.11252 +v 0.07076 0.04256 0.11237 +v 0.07066 0.03802 0.11186 +v 0.05861 0.03160 0.11215 +v 0.05615 0.03156 0.11221 +v 0.05138 0.02827 0.11199 +v 0.06279 0.03231 0.11243 +v 0.04393 0.03680 0.11231 +v 0.04155 0.04326 0.11167 +v 0.04862 0.04647 0.11118 +v 0.04641 0.03396 0.11222 +v 0.05003 0.05016 0.11264 +v 0.04701 0.05419 0.11270 +v 0.04800 0.05246 0.11282 +v 0.04784 0.06128 0.11219 +v 0.05168 0.06528 0.11236 +v 0.06219 0.06242 0.11260 +v 0.06432 0.06172 0.11257 +v 0.06917 0.05937 0.11213 +v 0.07517 0.04517 0.11239 +v 0.07636 0.04683 0.11237 +v 0.07385 0.03911 0.11183 +v 0.07287 0.04339 0.11232 +v 0.06627 0.03247 0.11240 +v 0.06892 0.03484 0.11212 +v 0.07282 0.03805 0.11182 +v 0.05492 0.03065 0.11208 +v 0.04825 0.03190 0.11204 +v 0.05332 0.02914 0.11201 +v 0.06049 0.03067 0.11219 +v 0.06281 0.03085 0.11248 +v 0.06417 0.03109 0.11251 +v 0.04042 0.03872 0.11225 +v 0.04332 0.03493 0.11239 +v 0.04267 0.04622 0.11130 +v 0.04764 0.04640 0.11110 +v 0.04793 0.04889 0.11210 +v 0.04804 0.05050 0.11268 +v 0.04810 0.04680 0.11118 +v 0.04699 0.05931 0.11225 +v 0.04776 0.05135 0.11282 +v 0.05310 0.06840 0.11252 +v 0.05836 0.06558 0.11268 +v 0.06060 0.06395 0.11273 +v 0.06698 0.06159 0.11237 +v 0.06612 0.06212 0.11255 +v 0.06887 0.06190 0.11212 +v 0.07123 0.05561 0.11217 +v 0.07372 0.05294 0.11213 +v 0.07807 0.04877 0.11242 +v 0.07314 0.03711 0.11186 +v 0.05824 0.02807 0.11196 +v 0.04744 0.02685 0.11201 +v 0.05383 0.02470 0.11199 +v 0.06056 0.02783 0.11205 +v 0.04106 0.03582 0.11244 +v 0.04259 0.03198 0.11219 +v 0.03542 0.04247 0.11203 +v 0.03975 0.04621 0.11151 +v 0.04427 0.04697 0.11123 +v 0.04665 0.04688 0.11130 +v 0.04421 0.03127 0.11214 +v 0.04706 0.05186 0.11281 +v 0.04587 0.05561 0.11256 +v 0.04573 0.06066 0.11224 +v 0.04890 0.06487 0.11237 +v 0.05831 0.06800 0.11278 +v 0.05036 0.06860 0.11243 +v 0.06394 0.06349 0.11300 +v 0.06030 0.06556 0.11293 +v 0.06498 0.06333 0.11292 +v 0.07027 0.06173 0.11207 +v 0.07199 0.05868 0.11221 +v 0.07540 0.05144 0.11227 +v 0.07613 0.04397 0.11225 +v 0.07947 0.04650 0.11240 +v 0.06551 0.03086 0.11258 +v 0.06857 0.03125 0.11224 +v 0.07175 0.03279 0.11222 +v 0.05555 0.02823 0.11197 +v 0.05051 0.02399 0.11207 +v 0.06204 0.02907 0.11220 +v 0.06393 0.02905 0.11225 +v 0.03940 0.03576 0.11257 +v 0.04109 0.03441 0.11242 +v 0.03752 0.03698 0.11261 +v 0.04265 0.04751 0.11130 +v 0.04561 0.04716 0.11137 +v 0.04651 0.04920 0.11206 +v 0.04658 0.04789 0.11164 +v 0.04569 0.05349 0.11258 +v 0.04544 0.05460 0.11261 +v 0.04506 0.05893 0.11224 +v 0.04689 0.05100 0.11263 +v 0.05743 0.07100 0.11286 +v 0.04921 0.07143 0.11256 +v 0.06046 0.06715 0.11300 +v 0.06801 0.06297 0.11243 +v 0.06830 0.06507 0.11288 +v 0.06961 0.06343 0.11222 +v 0.07367 0.05603 0.11239 +v 0.07464 0.05364 0.11233 +v 0.07916 0.04519 0.11228 +v 0.08090 0.05031 0.11267 +v 0.07799 0.05150 0.11254 +v 0.07490 0.03919 0.11174 +v 0.06667 0.03067 0.11242 +v 0.06500 0.03041 0.11261 +v 0.07500 0.03505 0.11205 +v 0.05936 0.02466 0.11194 +v 0.05792 0.02313 0.11186 +v 0.04923 0.02137 0.11207 +v 0.04309 0.02586 0.11209 +v 0.05229 0.02160 0.11192 +v 0.05414 0.02117 0.11192 +v 0.06218 0.02750 0.11208 +v 0.04005 0.03288 0.11234 +v 0.04157 0.03027 0.11211 +v 0.03777 0.04627 0.11161 +v 0.03543 0.03695 0.11262 +v 0.04011 0.04773 0.11156 +v 0.04452 0.04764 0.11138 +v 0.04382 0.04762 0.11128 +v 0.04610 0.05033 0.11229 +v 0.04610 0.05150 0.11251 +v 0.04449 0.05588 0.11237 +v 0.04582 0.06596 0.11247 +v 0.04360 0.05966 0.11214 +v 0.04762 0.06897 0.11244 +v 0.05365 0.07130 0.11277 +v 0.06086 0.06949 0.11295 +v 0.06415 0.06472 0.11308 +v 0.06596 0.06470 0.11303 +v 0.07216 0.06288 0.11205 +v 0.07074 0.06359 0.11204 +v 0.07604 0.05576 0.11262 +v 0.07850 0.04189 0.11190 +v 0.08269 0.04596 0.11252 +v 0.08288 0.04876 0.11270 +v 0.07598 0.03821 0.11169 +v 0.06560 0.03007 0.11249 +v 0.07095 0.03076 0.11219 +v 0.06878 0.02998 0.11204 +v 0.07470 0.03111 0.11235 +v 0.06110 0.02441 0.11208 +v 0.04403 0.02399 0.11216 +v 0.06193 0.02527 0.11206 +v 0.06529 0.02928 0.11228 +v 0.03817 0.03505 0.11271 +v 0.03895 0.03408 0.11256 +v 0.03874 0.03033 0.11211 +v 0.03683 0.04683 0.11166 +v 0.03684 0.03536 0.11278 +v 0.03223 0.03762 0.11250 +v 0.03988 0.04836 0.11172 +v 0.04576 0.04778 0.11162 +v 0.04350 0.04824 0.11151 +v 0.04536 0.04852 0.11179 +v 0.04495 0.04954 0.11197 +v 0.04469 0.05325 0.11230 +v 0.04384 0.05403 0.11219 +v 0.04412 0.05911 0.11216 +v 0.04340 0.06272 0.11243 +v 0.04296 0.06021 0.11217 +v 0.05578 0.07235 0.11291 +v 0.05904 0.07648 0.11295 +v 0.04374 0.07415 0.11285 +v 0.05334 0.07371 0.11298 +v 0.06658 0.06721 0.11302 +v 0.06880 0.06418 0.11260 +v 0.07513 0.06196 0.11226 +v 0.07066 0.06431 0.11210 +v 0.07555 0.05476 0.11257 +v 0.07769 0.05346 0.11266 +v 0.08155 0.04433 0.11225 +v 0.08302 0.05157 0.11279 +v 0.07920 0.05270 0.11280 +v 0.06665 0.02949 0.11218 +v 0.07800 0.03395 0.11228 +v 0.05977 0.02240 0.11185 +v 0.06063 0.02263 0.11196 +v 0.05873 0.02062 0.11185 +v 0.04985 0.01472 0.11222 +v 0.04529 0.02060 0.11228 +v 0.04183 0.02704 0.11204 +v 0.04120 0.02489 0.11209 +v 0.05492 0.01751 0.11202 +v 0.06347 0.02560 0.11196 +v 0.06400 0.02710 0.11198 +v 0.06576 0.02776 0.11195 +v 0.03814 0.03263 0.11238 +v 0.03831 0.02760 0.11194 +v 0.03559 0.04756 0.11169 +v 0.03789 0.04759 0.11161 +v 0.03598 0.03455 0.11265 +v 0.02988 0.04032 0.11219 +v 0.03227 0.03556 0.11252 +v 0.04159 0.04963 0.11195 +v 0.04318 0.04932 0.11183 +v 0.04486 0.05091 0.11214 +v 0.04493 0.05179 0.11217 +v 0.04233 0.05520 0.11222 +v 0.04374 0.06535 0.11262 +v 0.04542 0.06929 0.11264 +v 0.04221 0.05821 0.11218 +v 0.05482 0.07224 0.11296 +v 0.06663 0.07323 0.11291 +v 0.04789 0.07486 0.11293 +v 0.04300 0.07273 0.11285 +v 0.05186 0.07570 0.11303 +v 0.06924 0.06493 0.11278 +v 0.06982 0.06452 0.11249 +v 0.06948 0.06590 0.11292 +v 0.07125 0.06447 0.11211 +v 0.07359 0.06423 0.11208 +v 0.08028 0.06040 0.11248 +v 0.07968 0.04158 0.11190 +v 0.08547 0.04472 0.11265 +v 0.08515 0.04664 0.11280 +v 0.08610 0.04929 0.11288 +v 0.07941 0.03949 0.11192 +v 0.07332 0.03009 0.11222 +v 0.07126 0.02968 0.11198 +v 0.06787 0.02845 0.11185 +v 0.07759 0.03794 0.11182 +v 0.07767 0.03078 0.11248 +v 0.06297 0.02328 0.11202 +v 0.06240 0.02247 0.11197 +v 0.05935 0.01814 0.11194 +v 0.04723 0.01600 0.11231 +v 0.03805 0.01996 0.11248 +v 0.04517 0.01631 0.11244 +v 0.03937 0.02668 0.11185 +v 0.03759 0.03402 0.11264 +v 0.03647 0.03131 0.11220 +v 0.03488 0.02769 0.11207 +v 0.03301 0.04755 0.11170 +v 0.03665 0.04802 0.11168 +v 0.03743 0.04836 0.11178 +v 0.02940 0.03779 0.11232 +v 0.02848 0.04494 0.11195 +v 0.03099 0.03654 0.11249 +v 0.03832 0.05007 0.11240 +v 0.04319 0.05067 0.11204 +v 0.04399 0.05220 0.11213 +v 0.04285 0.05211 0.11213 +v 0.04074 0.06106 0.11240 +v 0.04378 0.06763 0.11280 +v 0.04026 0.06259 0.11269 +v 0.04036 0.05996 0.11232 +v 0.05516 0.07362 0.11301 +v 0.06691 0.07780 0.11285 +v 0.05054 0.07562 0.11299 +v 0.05293 0.07608 0.11308 +v 0.07080 0.07068 0.11286 +v 0.07051 0.06777 0.11292 +v 0.07223 0.06481 0.11206 +v 0.07541 0.06498 0.11226 +v 0.07068 0.06491 0.11237 +v 0.07827 0.05502 0.11270 +v 0.08025 0.06292 0.11239 +v 0.08208 0.04125 0.11212 +v 0.08523 0.04254 0.11238 +v 0.08430 0.05384 0.11273 +v 0.07425 0.02974 0.11220 +v 0.07031 0.02895 0.11176 +v 0.06951 0.02799 0.11166 +v 0.08051 0.03485 0.11235 +v 0.07649 0.02949 0.11252 +v 0.08067 0.03373 0.11247 +v 0.06158 0.02116 0.11183 +v 0.04658 0.01413 0.11242 +v 0.05315 0.01492 0.11217 +v 0.04203 0.01815 0.11243 +v 0.03900 0.02372 0.11215 +v 0.05915 0.01564 0.11214 +v 0.06349 0.02337 0.11193 +v 0.06475 0.02494 0.11183 +v 0.03628 0.03302 0.11242 +v 0.03710 0.02490 0.11210 +v 0.03468 0.04917 0.11168 +v 0.03657 0.04891 0.11187 +v 0.03388 0.03405 0.11246 +v 0.02735 0.03776 0.11208 +v 0.02772 0.04083 0.11211 +v 0.02964 0.03539 0.11223 +v 0.04171 0.05082 0.11215 +v 0.03948 0.05242 0.11248 +v 0.04178 0.06587 0.11298 +v 0.04200 0.06903 0.11305 +v 0.05467 0.07530 0.11306 +v 0.06437 0.08078 0.11291 +v 0.06959 0.07625 0.11282 +v 0.04937 0.07651 0.11316 +v 0.04402 0.07652 0.11312 +v 0.03834 0.07026 0.11329 +v 0.05406 0.07399 0.11304 +v 0.05136 0.07711 0.11306 +v 0.05247 0.07693 0.11304 +v 0.07222 0.07428 0.11283 +v 0.07003 0.06530 0.11280 +v 0.07074 0.06647 0.11283 +v 0.07152 0.06546 0.11231 +v 0.07400 0.06565 0.11220 +v 0.07286 0.06557 0.11212 +v 0.08794 0.04312 0.11250 +v 0.08694 0.04554 0.11293 +v 0.08774 0.04705 0.11305 +v 0.08867 0.05656 0.11273 +v 0.07315 0.02936 0.11195 +v 0.07614 0.02909 0.11246 +v 0.07121 0.02828 0.11165 +v 0.06757 0.02538 0.11166 +v 0.07762 0.02897 0.11240 +v 0.07984 0.03092 0.11253 +v 0.06402 0.02224 0.11177 +v 0.06343 0.01774 0.11178 +v 0.04522 0.01477 0.11254 +v 0.04814 0.01207 0.11262 +v 0.04973 0.01254 0.11245 +v 0.05640 0.01343 0.11240 +v 0.03741 0.01474 0.11297 +v 0.04131 0.01161 0.11313 +v 0.06179 0.01517 0.11203 +v 0.03470 0.03098 0.11207 +v 0.03178 0.02309 0.11252 +v 0.03565 0.04914 0.11178 +v 0.03347 0.04976 0.11180 +v 0.03101 0.04816 0.11165 +v 0.02884 0.03639 0.11223 +v 0.02545 0.04048 0.11209 +v 0.03719 0.04979 0.11224 +v 0.03885 0.05089 0.11249 +v 0.03694 0.05490 0.11269 +v 0.03783 0.05915 0.11249 +v 0.03979 0.06097 0.11238 +v 0.04173 0.06726 0.11312 +v 0.03981 0.06556 0.11328 +v 0.06123 0.08193 0.11302 +v 0.06807 0.08064 0.11298 +v 0.07015 0.07814 0.11283 +v 0.05074 0.07791 0.11319 +v 0.05240 0.07792 0.11296 +v 0.07358 0.07090 0.11265 +v 0.07301 0.06949 0.11274 +v 0.07069 0.06568 0.11267 +v 0.07172 0.06702 0.11271 +v 0.07219 0.06558 0.11214 +v 0.07515 0.06664 0.11233 +v 0.08050 0.06541 0.11241 +v 0.08552 0.05822 0.11258 +v 0.08459 0.03963 0.11240 +v 0.08219 0.03811 0.11230 +v 0.08734 0.04099 0.11246 +v 0.09056 0.05138 0.11296 +v 0.07414 0.02913 0.11198 +v 0.07502 0.02876 0.11207 +v 0.07271 0.02843 0.11164 +v 0.07036 0.02652 0.11154 +v 0.08441 0.03612 0.11282 +v 0.07670 0.02868 0.11238 +v 0.07913 0.02948 0.11247 +v 0.08277 0.03216 0.11270 +v 0.06547 0.01976 0.11163 +v 0.04549 0.01242 0.11276 +v 0.05409 0.01292 0.11240 +v 0.03469 0.01878 0.11267 +v 0.05927 0.01354 0.11237 +v 0.03343 0.03244 0.11211 +v 0.03315 0.03040 0.11193 +v 0.03226 0.01998 0.11267 +v 0.03139 0.02617 0.11221 +v 0.03499 0.04979 0.11177 +v 0.03203 0.04963 0.11169 +v 0.03449 0.05009 0.11190 +v 0.03020 0.04970 0.11166 +v 0.03595 0.05009 0.11216 +v 0.03182 0.03336 0.11209 +v 0.02823 0.03575 0.11203 +v 0.02500 0.04255 0.11216 +v 0.03715 0.05137 0.11256 +v 0.03897 0.06093 0.11243 +v 0.03893 0.06195 0.11260 +v 0.04094 0.06656 0.11324 +v 0.03885 0.06410 0.11317 +v 0.03985 0.06713 0.11336 +v 0.05503 0.07862 0.11285 +v 0.05845 0.08174 0.11310 +v 0.06354 0.08301 0.11302 +v 0.06649 0.08223 0.11305 +v 0.07206 0.07748 0.11292 +v 0.03389 0.07082 0.11334 +v 0.07514 0.07277 0.11271 +v 0.07214 0.06801 0.11280 +v 0.07221 0.06619 0.11236 +v 0.07362 0.06695 0.11241 +v 0.08513 0.06286 0.11252 +v 0.08953 0.03900 0.11256 +v 0.08913 0.04461 0.11283 +v 0.09084 0.04568 0.11303 +v 0.09213 0.04793 0.11309 +v 0.09411 0.05535 0.11308 +v 0.07365 0.02871 0.11172 +v 0.07548 0.02766 0.11182 +v 0.07247 0.02658 0.11153 +v 0.07073 0.02370 0.11158 +v 0.08525 0.03460 0.11299 +v 0.07701 0.02786 0.11214 +v 0.07861 0.02805 0.11229 +v 0.08155 0.02976 0.11258 +v 0.06793 0.01863 0.11167 +v 0.06497 0.01475 0.11185 +v 0.04695 0.00915 0.11311 +v 0.04956 0.00992 0.11289 +v 0.05233 0.00949 0.11298 +v 0.05446 0.00886 0.11319 +v 0.03343 0.01635 0.11283 +v 0.03636 0.00815 0.11371 +v 0.05682 0.00896 0.11319 +v 0.06059 0.01272 0.11245 +v 0.03082 0.02908 0.11191 +v 0.03095 0.02057 0.11277 +v 0.02942 0.02442 0.11253 +v 0.03253 0.05086 0.11212 +v 0.03377 0.05072 0.11219 +v 0.02796 0.04953 0.11179 +v 0.02919 0.03438 0.11196 +v 0.02701 0.03505 0.11180 +v 0.02497 0.03759 0.11194 +v 0.02298 0.04123 0.11220 +v 0.02348 0.04370 0.11222 +v 0.03510 0.05870 0.11269 +v 0.03509 0.05210 0.11275 +v 0.03769 0.06108 0.11253 +v 0.03809 0.06297 0.11295 +v 0.03838 0.06562 0.11350 +v 0.03645 0.06631 0.11363 +v 0.05575 0.08090 0.11296 +v 0.05983 0.08348 0.11327 +v 0.06230 0.08350 0.11312 +v 0.06506 0.08277 0.11300 +v 0.06886 0.08158 0.11324 +v 0.07068 0.08020 0.11311 +v 0.07547 0.07579 0.11301 +v 0.07309 0.07941 0.11323 +v 0.05080 0.07887 0.11329 +v 0.03414 0.06820 0.11368 +v 0.05311 0.07927 0.11284 +v 0.07513 0.06962 0.11255 +v 0.07420 0.06793 0.11248 +v 0.07284 0.06736 0.11260 +v 0.08126 0.06813 0.11250 +v 0.08660 0.03765 0.11266 +v 0.09277 0.03958 0.11269 +v 0.09296 0.04382 0.11300 +v 0.09489 0.05289 0.11315 +v 0.09407 0.06034 0.11306 +v 0.07446 0.02837 0.11173 +v 0.07374 0.02784 0.11155 +v 0.08550 0.03596 0.11289 +v 0.08199 0.02781 0.11246 +v 0.08581 0.03399 0.11298 +v 0.08376 0.03096 0.11269 +v 0.04416 0.00963 0.11319 +v 0.03485 0.01392 0.11307 +v 0.03493 0.01133 0.11341 +v 0.03909 0.00739 0.11359 +v 0.05935 0.00951 0.11308 +v 0.03158 0.03174 0.11188 +v 0.03026 0.01917 0.11273 +v 0.02927 0.02197 0.11275 +v 0.02857 0.02745 0.11212 +v 0.03480 0.05082 0.11234 +v 0.03141 0.05076 0.11181 +v 0.02429 0.04807 0.11200 +v 0.02931 0.05087 0.11171 +v 0.03058 0.03312 0.11190 +v 0.02125 0.03915 0.11203 +v 0.03574 0.05104 0.11254 +v 0.03172 0.05525 0.11324 +v 0.03550 0.06022 0.11256 +v 0.03388 0.05362 0.11306 +v 0.03845 0.06161 0.11252 +v 0.03730 0.06484 0.11354 +v 0.03717 0.06395 0.11336 +v 0.05408 0.08020 0.11268 +v 0.05677 0.08332 0.11346 +v 0.06119 0.08386 0.11333 +v 0.05840 0.08384 0.11344 +v 0.06324 0.08404 0.11327 +v 0.06453 0.08345 0.11310 +v 0.06596 0.08296 0.11309 +v 0.06777 0.08242 0.11339 +v 0.07428 0.07791 0.11311 +v 0.05204 0.07970 0.11312 +v 0.03158 0.07054 0.11317 +v 0.03299 0.06935 0.11361 +v 0.07820 0.07159 0.11272 +v 0.08548 0.06811 0.11273 +v 0.08970 0.03520 0.11263 +v 0.09336 0.03613 0.11261 +v 0.09371 0.04567 0.11314 +v 0.09574 0.04989 0.11323 +v 0.09225 0.06719 0.11303 +v 0.07660 0.02671 0.11184 +v 0.07457 0.02771 0.11159 +v 0.07449 0.02663 0.11157 +v 0.07413 0.02406 0.11164 +v 0.08656 0.03500 0.11289 +v 0.07874 0.02676 0.11213 +v 0.06990 0.01742 0.11178 +v 0.06763 0.01505 0.11191 +v 0.06501 0.01357 0.11202 +v 0.04207 0.00738 0.11330 +v 0.04906 0.00772 0.11306 +v 0.04491 0.00743 0.11338 +v 0.05095 0.00805 0.11302 +v 0.05378 0.00774 0.11323 +v 0.05537 0.00752 0.11338 +v 0.03117 0.01709 0.11274 +v 0.03173 0.01443 0.11284 +v 0.03314 0.00875 0.11380 +v 0.03742 0.00673 0.11372 +v 0.05842 0.00783 0.11331 +v 0.06301 0.01092 0.11264 +v 0.02932 0.03198 0.11174 +v 0.02954 0.02056 0.11278 +v 0.02748 0.02993 0.11177 +v 0.02735 0.02436 0.11274 +v 0.02805 0.02294 0.11282 +v 0.03152 0.05133 0.11219 +v 0.03293 0.05135 0.11252 +v 0.02670 0.05113 0.11195 +v 0.02842 0.05144 0.11189 +v 0.03010 0.05112 0.11170 +v 0.03070 0.05103 0.11172 +v 0.02777 0.03334 0.11168 +v 0.02541 0.03388 0.11164 +v 0.02096 0.04243 0.11234 +v 0.03233 0.06104 0.11263 +v 0.03411 0.06157 0.11252 +v 0.03329 0.05206 0.11288 +v 0.03616 0.06148 0.11260 +v 0.03749 0.06238 0.11280 +v 0.03641 0.06318 0.11311 +v 0.03441 0.06653 0.11378 +v 0.05405 0.08105 0.11273 +v 0.05545 0.08266 0.11340 +v 0.06414 0.08404 0.11340 +v 0.06535 0.08360 0.11335 +v 0.06633 0.08281 0.11310 +v 0.06650 0.08312 0.11339 +v 0.06846 0.08243 0.11357 +v 0.07136 0.08100 0.11348 +v 0.07255 0.08080 0.11348 +v 0.07725 0.07635 0.11314 +v 0.07583 0.08019 0.11341 +v 0.03242 0.06976 0.11346 +v 0.03265 0.06869 0.11364 +v 0.05269 0.08029 0.11296 +v 0.05328 0.08039 0.11270 +v 0.08137 0.07071 0.11273 +v 0.08404 0.07113 0.11288 +v 0.09572 0.03914 0.11278 +v 0.09726 0.06512 0.11325 +v 0.07552 0.02628 0.11165 +v 0.08202 0.02654 0.11238 +v 0.08716 0.03324 0.11281 +v 0.08618 0.03123 0.11271 +v 0.08649 0.02876 0.11251 +v 0.04771 0.00727 0.11318 +v 0.04649 0.00691 0.11331 +v 0.05244 0.00774 0.11310 +v 0.05647 0.00715 0.11342 +v 0.03339 0.01229 0.11321 +v 0.03411 0.00677 0.11398 +v 0.03784 0.00600 0.11344 +v 0.03664 0.00606 0.11354 +v 0.04005 0.00657 0.11341 +v 0.05978 0.00776 0.11319 +v 0.05755 0.00702 0.11332 +v 0.06090 0.00938 0.11300 +v 0.02815 0.01744 0.11263 +v 0.02846 0.01995 0.11269 +v 0.02565 0.02711 0.11219 +v 0.02711 0.02639 0.11237 +v 0.02790 0.02228 0.11286 +v 0.03196 0.05150 0.11251 +v 0.03102 0.05134 0.11193 +v 0.02479 0.05197 0.11201 +v 0.02956 0.05167 0.11191 +v 0.02015 0.04139 0.11226 +v 0.02011 0.04654 0.11211 +v 0.03209 0.05417 0.11326 +v 0.02905 0.06259 0.11265 +v 0.03252 0.05289 0.11317 +v 0.03621 0.06429 0.11348 +v 0.03461 0.06564 0.11370 +v 0.03352 0.06681 0.11374 +v 0.05365 0.08068 0.11260 +v 0.05449 0.08153 0.11294 +v 0.05476 0.08207 0.11324 +v 0.06670 0.08373 0.11391 +v 0.07404 0.08083 0.11352 +v 0.05233 0.08077 0.11324 +v 0.02945 0.06901 0.11306 +v 0.03174 0.06875 0.11341 +v 0.03266 0.06763 0.11362 +v 0.03233 0.06917 0.11358 +v 0.08067 0.07386 0.11306 +v 0.09146 0.07218 0.11318 +v 0.08641 0.07211 0.11299 +v 0.09221 0.03240 0.11257 +v 0.09517 0.04194 0.11293 +v 0.09530 0.04400 0.11297 +v 0.09669 0.04797 0.11320 +v 0.09486 0.06773 0.11316 +v 0.09721 0.06406 0.11326 +v 0.07956 0.02534 0.11213 +v 0.07527 0.02147 0.11182 +v 0.07113 0.01454 0.11217 +v 0.06842 0.01300 0.11220 +v 0.06405 0.00877 0.11303 +v 0.04395 0.00632 0.11328 +v 0.04845 0.00672 0.11303 +v 0.05052 0.00689 0.11278 +v 0.04561 0.00651 0.11345 +v 0.05197 0.00694 0.11282 +v 0.05337 0.00682 0.11299 +v 0.05484 0.00659 0.11319 +v 0.05586 0.00660 0.11340 +v 0.02895 0.01554 0.11272 +v 0.03058 0.01294 0.11294 +v 0.03077 0.00874 0.11380 +v 0.03250 0.00661 0.11402 +v 0.03503 0.00656 0.11399 +v 0.03905 0.00611 0.11335 +v 0.03564 0.00591 0.11360 +v 0.04030 0.00581 0.11277 +v 0.05880 0.00674 0.11318 +v 0.06281 0.00919 0.11295 +v 0.02719 0.03188 0.11164 +v 0.02828 0.02147 0.11278 +v 0.02486 0.03045 0.11177 +v 0.02609 0.02464 0.11282 +v 0.02633 0.02324 0.11291 +v 0.02730 0.02228 0.11282 +v 0.03086 0.05196 0.11261 +v 0.03193 0.05213 0.11292 +v 0.02782 0.05231 0.11219 +v 0.02654 0.05268 0.11226 +v 0.02127 0.05170 0.11200 +v 0.02890 0.05224 0.11222 +v 0.03041 0.05157 0.11193 +v 0.01853 0.04102 0.11211 +v 0.01942 0.04361 0.11220 +v 0.03009 0.05417 0.11324 +v 0.03200 0.06261 0.11262 +v 0.02751 0.05684 0.11323 +v 0.03330 0.06218 0.11250 +v 0.03513 0.06249 0.11274 +v 0.03637 0.06221 0.11275 +v 0.03497 0.06465 0.11348 +v 0.03569 0.06372 0.11335 +v 0.03329 0.06614 0.11365 +v 0.05343 0.08089 0.11270 +v 0.05393 0.08157 0.11297 +v 0.07207 0.08181 0.11382 +v 0.07391 0.08263 0.11378 +v 0.08105 0.07786 0.11324 +v 0.03057 0.06915 0.11314 +v 0.08253 0.07541 0.11319 +v 0.08303 0.07382 0.11318 +v 0.09377 0.07162 0.11333 +v 0.08437 0.07405 0.11315 +v 0.08907 0.03120 0.11259 +v 0.09670 0.04084 0.11286 +v 0.09574 0.04658 0.11313 +v 0.09676 0.06652 0.11326 +v 0.09801 0.06478 0.11347 +v 0.07652 0.02259 0.11181 +v 0.07467 0.01642 0.11215 +v 0.08535 0.02549 0.11245 +v 0.08229 0.02451 0.11241 +v 0.06611 0.01096 0.11257 +v 0.04499 0.00636 0.11336 +v 0.04298 0.00614 0.11314 +v 0.04750 0.00629 0.11289 +v 0.04933 0.00657 0.11280 +v 0.04603 0.00619 0.11337 +v 0.05674 0.00631 0.11326 +v 0.03120 0.00743 0.11396 +v 0.03326 0.00558 0.11381 +v 0.03442 0.00582 0.11390 +v 0.03525 0.00622 0.11389 +v 0.03689 0.00525 0.11288 +v 0.03839 0.00537 0.11269 +v 0.03593 0.00527 0.11313 +v 0.04209 0.00592 0.11275 +v 0.06000 0.00658 0.11291 +v 0.06153 0.00748 0.11297 +v 0.05791 0.00595 0.11288 +v 0.02633 0.01890 0.11248 +v 0.02687 0.02158 0.11270 +v 0.02348 0.02756 0.11196 +v 0.02540 0.02456 0.11284 +v 0.02554 0.05312 0.11222 +v 0.02389 0.05322 0.11212 +v 0.03000 0.05210 0.11236 +v 0.01716 0.04405 0.11211 +v 0.01735 0.04774 0.11210 +v 0.03145 0.05307 0.11321 +v 0.02988 0.06350 0.11264 +v 0.02685 0.06146 0.11290 +v 0.03392 0.06240 0.11247 +v 0.03381 0.06508 0.11348 +v 0.05343 0.08128 0.11294 +v 0.05409 0.08238 0.11354 +v 0.07976 0.08130 0.11341 +v 0.07765 0.08446 0.11364 +v 0.05275 0.08136 0.11329 +v 0.03044 0.06761 0.11315 +v 0.03194 0.06703 0.11340 +v 0.09231 0.07532 0.11337 +v 0.08963 0.07476 0.11320 +v 0.08696 0.07474 0.11315 +v 0.09187 0.03007 0.11253 +v 0.09672 0.04237 0.11279 +v 0.09768 0.04039 0.11302 +v 0.09694 0.04575 0.11297 +v 0.09609 0.06984 0.11336 +v 0.09780 0.06572 0.11334 +v 0.07936 0.02289 0.11224 +v 0.07688 0.02071 0.11205 +v 0.07694 0.01887 0.11216 +v 0.09010 0.02455 0.11254 +v 0.09017 0.02774 0.11251 +v 0.06991 0.01099 0.11269 +v 0.07386 0.01350 0.11248 +v 0.06386 0.00764 0.11301 +v 0.06609 0.00863 0.11296 +v 0.04494 0.00580 0.11288 +v 0.04363 0.00582 0.11312 +v 0.04856 0.00626 0.11274 +v 0.04650 0.00611 0.11315 +v 0.05163 0.00627 0.11210 +v 0.05018 0.00625 0.11229 +v 0.04551 0.00606 0.11333 +v 0.05306 0.00628 0.11237 +v 0.05431 0.00618 0.11267 +v 0.05591 0.00612 0.11317 +v 0.02906 0.01033 0.11341 +v 0.02960 0.00727 0.11381 +v 0.03197 0.00555 0.11389 +v 0.03145 0.00618 0.11405 +v 0.03488 0.00509 0.11307 +v 0.03484 0.00551 0.11367 +v 0.04141 0.00542 0.11207 +v 0.05906 0.00606 0.11278 +v 0.02638 0.02067 0.11254 +v 0.02398 0.02624 0.11212 +v 0.02444 0.02515 0.11238 +v 0.03051 0.05261 0.11290 +v 0.02771 0.05318 0.11265 +v 0.02508 0.05369 0.11239 +v 0.02486 0.05309 0.11210 +v 0.02299 0.05414 0.11223 +v 0.02907 0.05287 0.11270 +v 0.01589 0.05146 0.11212 +v 0.02837 0.05410 0.11308 +v 0.03060 0.06455 0.11283 +v 0.02923 0.06318 0.11260 +v 0.03371 0.06297 0.11268 +v 0.02778 0.06350 0.11262 +v 0.02378 0.06012 0.11326 +v 0.03473 0.06355 0.11310 +v 0.03365 0.06417 0.11314 +v 0.03230 0.06525 0.11320 +v 0.05355 0.08182 0.11327 +v 0.08308 0.08076 0.11322 +v 0.07557 0.08508 0.11381 +v 0.02902 0.06720 0.11305 +v 0.09482 0.07382 0.11361 +v 0.09684 0.04378 0.11281 +v 0.09761 0.04191 0.11287 +v 0.09785 0.06795 0.11369 +v 0.09788 0.06659 0.11344 +v 0.09615 0.07086 0.11344 +v 0.09833 0.06542 0.11361 +v 0.07790 0.01467 0.11247 +v 0.08678 0.02238 0.11261 +v 0.08461 0.02309 0.11260 +v 0.08059 0.02038 0.11274 +v 0.04411 0.00580 0.11312 +v 0.04321 0.00567 0.11275 +v 0.04893 0.00610 0.11237 +v 0.04639 0.00584 0.11263 +v 0.04590 0.00589 0.11315 +v 0.05546 0.00596 0.11278 +v 0.05666 0.00578 0.11272 +v 0.02866 0.00872 0.11363 +v 0.03051 0.00602 0.11387 +v 0.03254 0.00501 0.11349 +v 0.03406 0.00518 0.11347 +v 0.03808 0.00491 0.11174 +v 0.03612 0.00499 0.11269 +v 0.04034 0.00509 0.11156 +v 0.03550 0.00487 0.11247 +v 0.04271 0.00540 0.11191 +v 0.06109 0.00620 0.11244 +v 0.05985 0.00591 0.11229 +v 0.05869 0.00561 0.11220 +v 0.06266 0.00633 0.11257 +v 0.02491 0.01974 0.11227 +v 0.02560 0.02206 0.11259 +v 0.02480 0.02389 0.11261 +v 0.02566 0.02315 0.11282 +v 0.02679 0.05329 0.11261 +v 0.02414 0.05418 0.11246 +v 0.02204 0.05429 0.11199 +v 0.01108 0.04483 0.11206 +v 0.01281 0.04774 0.11215 +v 0.01974 0.05461 0.11206 +v 0.02664 0.05509 0.11328 +v 0.02953 0.05335 0.11307 +v 0.03241 0.06367 0.11281 +v 0.02845 0.06426 0.11264 +v 0.02369 0.05676 0.11333 +v 0.08087 0.08401 0.11349 +v 0.07704 0.08660 0.11377 +v 0.07329 0.08517 0.11405 +v 0.02973 0.06618 0.11297 +v 0.03096 0.06620 0.11311 +v 0.09286 0.07780 0.11341 +v 0.09524 0.07675 0.11362 +v 0.09560 0.07269 0.11356 +v 0.09750 0.04293 0.11277 +v 0.09848 0.04187 0.11330 +v 0.09752 0.04457 0.11282 +v 0.09771 0.07010 0.11377 +v 0.09828 0.06605 0.11355 +v 0.07853 0.01685 0.11243 +v 0.09329 0.02057 0.11279 +v 0.08304 0.02198 0.11273 +v 0.07151 0.00985 0.11291 +v 0.07657 0.01074 0.11288 +v 0.06891 0.00864 0.11301 +v 0.06575 0.00655 0.11296 +v 0.04396 0.00564 0.11289 +v 0.04743 0.00590 0.11217 +v 0.04985 0.00591 0.11148 +v 0.05366 0.00602 0.11186 +v 0.05584 0.00576 0.11233 +v 0.05753 0.00554 0.11243 +v 0.02927 0.00604 0.11358 +v 0.03119 0.00500 0.11349 +v 0.03278 0.00479 0.11323 +v 0.03125 0.00570 0.11400 +v 0.03623 0.00478 0.11191 +v 0.03460 0.00468 0.11197 +v 0.04166 0.00501 0.11102 +v 0.05805 0.00552 0.11245 +v 0.06413 0.00624 0.11277 +v 0.02498 0.02106 0.11233 +v 0.02380 0.02379 0.11224 +v 0.02698 0.05384 0.11297 +v 0.02624 0.05376 0.11279 +v 0.02379 0.05493 0.11273 +v 0.02252 0.05493 0.11220 +v 0.02131 0.05433 0.11196 +v 0.01772 0.05552 0.11210 +v 0.01225 0.05016 0.11227 +v 0.02582 0.05547 0.11328 +v 0.02181 0.05795 0.11350 +v 0.07888 0.08566 0.11377 +v 0.08513 0.08561 0.11348 +v 0.07598 0.08788 0.11385 +v 0.09181 0.08195 0.11345 +v 0.09553 0.07484 0.11366 +v 0.09563 0.07352 0.11371 +v 0.08772 0.08264 0.11337 +v 0.09788 0.04385 0.11287 +v 0.09822 0.04291 0.11304 +v 0.09819 0.04506 0.11302 +v 0.09843 0.06678 0.11383 +v 0.09755 0.07153 0.11366 +v 0.09712 0.07260 0.11358 +v 0.07954 0.01846 0.11257 +v 0.08091 0.01389 0.11259 +v 0.08347 0.02025 0.11294 +v 0.08909 0.01751 0.11287 +v 0.08235 0.02062 0.11288 +v 0.08053 0.01171 0.11279 +v 0.06778 0.00681 0.11301 +v 0.04398 0.00554 0.11226 +v 0.04783 0.00577 0.11136 +v 0.04597 0.00566 0.11192 +v 0.05233 0.00592 0.11114 +v 0.05697 0.00552 0.11178 +v 0.02993 0.00553 0.11358 +v 0.03224 0.00468 0.11292 +v 0.03117 0.00533 0.11377 +v 0.03370 0.00474 0.11266 +v 0.04003 0.00486 0.11101 +v 0.06082 0.00580 0.11172 +v 0.06165 0.00592 0.11213 +v 0.05957 0.00558 0.11139 +v 0.05793 0.00544 0.11205 +v 0.06348 0.00583 0.11237 +v 0.02455 0.02236 0.11235 +v 0.02498 0.05472 0.11295 +v 0.02299 0.05522 0.11257 +v 0.02205 0.05514 0.11211 +v 0.02176 0.05493 0.11198 +v 0.00808 0.04566 0.11210 +v 0.00975 0.04760 0.11218 +v 0.01957 0.05641 0.11215 +v 0.02141 0.05554 0.11226 +v 0.01306 0.05216 0.11230 +v 0.02604 0.05455 0.11315 +v 0.02419 0.05554 0.11312 +v 0.02240 0.05696 0.11352 +v 0.08017 0.08612 0.11382 +v 0.08352 0.08760 0.11367 +v 0.07827 0.08654 0.11381 +v 0.07690 0.08914 0.11382 +v 0.09447 0.07962 0.11347 +v 0.09596 0.07856 0.11355 +v 0.09657 0.07637 0.11370 +v 0.09658 0.07332 0.11361 +v 0.09835 0.07152 0.11401 +v 0.08139 0.01975 0.11286 +v 0.08081 0.01581 0.11259 +v 0.08660 0.02015 0.11277 +v 0.09239 0.01692 0.11289 +v 0.07077 0.00772 0.11307 +v 0.07400 0.00803 0.11305 +v 0.08064 0.00862 0.11306 +v 0.06947 0.00707 0.11305 +v 0.06526 0.00585 0.11272 +v 0.06698 0.00613 0.11291 +v 0.04398 0.00539 0.11150 +v 0.05365 0.00569 0.11082 +v 0.05707 0.00538 0.11068 +v 0.03054 0.00516 0.11343 +v 0.02956 0.00519 0.11307 +v 0.03121 0.00474 0.11294 +v 0.03295 0.00468 0.11289 +v 0.03349 0.00448 0.11140 +v 0.06299 0.00564 0.11160 +v 0.05826 0.00542 0.11120 +v 0.06426 0.00567 0.11223 +v 0.02348 0.05567 0.11298 +v 0.01757 0.05729 0.11228 +v 0.01891 0.05700 0.11221 +v 0.02046 0.05655 0.11241 +v 0.00973 0.05029 0.11232 +v 0.01079 0.05168 0.11248 +v 0.02205 0.05690 0.11350 +v 0.02045 0.05880 0.11336 +v 0.07908 0.08634 0.11389 +v 0.08621 0.08941 0.11361 +v 0.09113 0.09021 0.11362 +v 0.07813 0.08849 0.11381 +v 0.09387 0.08945 0.11361 +v 0.09461 0.08319 0.11347 +v 0.09675 0.07742 0.11372 +v 0.09664 0.07512 0.11363 +v 0.09727 0.07453 0.11354 +v 0.09864 0.04404 0.11336 +v 0.09812 0.07248 0.11384 +v 0.08281 0.01384 0.11257 +v 0.08341 0.01433 0.11262 +v 0.08557 0.01857 0.11286 +v 0.09329 0.01462 0.11293 +v 0.09476 0.01869 0.11285 +v 0.07222 0.00782 0.11311 +v 0.07690 0.00830 0.11304 +v 0.08299 0.01119 0.11290 +v 0.06922 0.00611 0.11282 +v 0.06648 0.00586 0.11268 +v 0.06789 0.00600 0.11281 +v 0.04692 0.00553 0.11094 +v 0.03172 0.00448 0.11201 +v 0.03276 0.00453 0.11220 +v 0.06355 0.00566 0.11216 +v 0.02280 0.05596 0.11294 +v 0.00785 0.04857 0.11215 +v 0.01984 0.05716 0.11234 +v 0.02006 0.05683 0.11223 +v 0.02132 0.05643 0.11275 +v 0.02136 0.05729 0.11343 +v 0.02076 0.05786 0.11326 +v 0.01967 0.05973 0.11334 +v 0.08136 0.08749 0.11386 +v 0.08553 0.09084 0.11373 +v 0.07949 0.08837 0.11387 +v 0.07772 0.09151 0.11400 +v 0.09473 0.08714 0.11360 +v 0.09613 0.08063 0.11341 +v 0.09712 0.07815 0.11371 +v 0.09737 0.07662 0.11383 +v 0.09758 0.07528 0.11363 +v 0.08430 0.01644 0.11282 +v 0.09064 0.01350 0.11289 +v 0.09422 0.01549 0.11284 +v 0.08733 0.01365 0.11293 +v 0.07187 0.00677 0.11301 +v 0.07065 0.00636 0.11283 +v 0.07561 0.00668 0.11278 +v 0.07301 0.00688 0.11307 +v 0.08458 0.00929 0.11305 +v 0.07850 0.00704 0.11299 +v 0.06690 0.00558 0.11215 +v 0.06530 0.00564 0.11241 +v 0.06722 0.00580 0.11266 +v 0.03038 0.00480 0.11283 +v 0.03073 0.00456 0.11218 +v 0.03205 0.00437 0.11114 +v 0.02198 0.05611 0.11283 +v 0.01012 0.05281 0.11239 +v 0.01923 0.05795 0.11256 +v 0.01817 0.05879 0.11263 +v 0.02101 0.05710 0.11307 +v 0.00587 0.05328 0.11233 +v 0.02165 0.05668 0.11320 +v 0.01996 0.05837 0.11302 +v 0.01911 0.05939 0.11307 +v 0.09383 0.09157 0.11363 +v 0.07994 0.09093 0.11393 +v 0.09629 0.08864 0.11372 +v 0.09698 0.07968 0.11342 +v 0.09649 0.08582 0.11351 +v 0.09656 0.08270 0.11339 +v 0.09742 0.07898 0.11361 +v 0.09755 0.07753 0.11393 +v 0.08546 0.01413 0.11285 +v 0.08540 0.01192 0.11294 +v 0.09253 0.01168 0.11276 +v 0.09540 0.01316 0.11262 +v 0.09648 0.01642 0.11276 +v 0.07406 0.00653 0.11296 +v 0.07711 0.00692 0.11297 +v 0.08310 0.00709 0.11301 +v 0.07975 0.00711 0.11308 +v 0.06899 0.00562 0.11241 +v 0.07013 0.00574 0.11247 +v 0.06503 0.00547 0.11160 +v 0.06790 0.00567 0.11239 +v 0.02989 0.00470 0.11230 +v 0.02025 0.05755 0.11278 +v 0.08399 0.09268 0.11383 +v 0.08733 0.09339 0.11390 +v 0.09566 0.09146 0.11365 +v 0.09067 0.09360 0.11371 +v 0.07903 0.09368 0.11405 +v 0.09587 0.09001 0.11370 +v 0.09749 0.08043 0.11335 +v 0.09679 0.08379 0.11337 +v 0.09771 0.07826 0.11388 +v 0.09795 0.07594 0.11394 +v 0.09808 0.07688 0.11427 +v 0.09024 0.01160 0.11287 +v 0.07196 0.00592 0.11257 +v 0.07262 0.00626 0.11290 +v 0.07452 0.00616 0.11272 +v 0.07696 0.00639 0.11267 +v 0.07338 0.00617 0.11285 +v 0.08520 0.00752 0.11299 +v 0.08153 0.00725 0.11312 +v 0.08728 0.01062 0.11300 +v 0.07762 0.00658 0.11289 +v 0.08070 0.00690 0.11301 +v 0.07923 0.00670 0.11298 +v 0.07107 0.00565 0.11222 +v 0.02995 0.00455 0.11160 +v 0.08574 0.09310 0.11384 +v 0.08751 0.09499 0.11393 +v 0.09538 0.09342 0.11350 +v 0.09394 0.09506 0.11350 +v 0.08141 0.09291 0.11390 +v 0.09694 0.08986 0.11381 +v 0.09746 0.08759 0.11374 +v 0.09761 0.07975 0.11339 +v 0.09819 0.07883 0.11407 +v 0.09811 0.07786 0.11425 +v 0.09386 0.01006 0.11254 +v 0.09067 0.00984 0.11271 +v 0.09752 0.01386 0.11250 +v 0.07396 0.00607 0.11279 +v 0.07527 0.00599 0.11229 +v 0.07630 0.00613 0.11228 +v 0.08709 0.00823 0.11289 +v 0.08481 0.00655 0.11283 +v 0.08175 0.00659 0.11298 +v 0.07794 0.00631 0.11258 +v 0.07977 0.00652 0.11288 +v 0.07894 0.00631 0.11262 +v 0.06817 0.00538 0.11135 +v 0.06980 0.00550 0.11212 +v 0.02950 0.00455 0.11052 +v 0.08521 0.09438 0.11385 +v 0.08687 0.09443 0.11400 +v 0.09696 0.09267 0.11373 +v 0.09660 0.09067 0.11373 +v 0.08941 0.09636 0.11367 +v 0.08179 0.09575 0.11381 +v 0.09747 0.08881 0.11389 +v 0.09791 0.08003 0.11338 +v 0.09241 0.00913 0.11247 +v 0.09647 0.01158 0.11240 +v 0.08820 0.00931 0.11297 +v 0.07244 0.00549 0.11195 +v 0.07291 0.00587 0.11260 +v 0.07389 0.00577 0.11231 +v 0.07777 0.00601 0.11198 +v 0.08621 0.00670 0.11261 +v 0.08333 0.00615 0.11264 +v 0.08238 0.00627 0.11280 +v 0.08041 0.00619 0.11261 +v 0.07126 0.00527 0.11133 +v 0.08456 0.09733 0.11370 +v 0.08653 0.09682 0.11383 +v 0.09693 0.09137 0.11379 +v 0.09657 0.09402 0.11336 +v 0.09639 0.09498 0.11322 +v 0.09400 0.09794 0.11343 +v 0.07908 0.09663 0.11392 +v 0.09730 0.09068 0.11388 +v 0.09791 0.09012 0.11416 +v 0.09826 0.08802 0.11406 +v 0.09375 0.00829 0.11222 +v 0.09525 0.00926 0.11230 +v 0.08845 0.00843 0.11287 +v 0.09078 0.00795 0.11230 +v 0.09802 0.01215 0.11222 +v 0.07525 0.00571 0.11184 +v 0.07601 0.00578 0.11166 +v 0.07675 0.00591 0.11175 +v 0.08768 0.00678 0.11238 +v 0.08545 0.00617 0.11253 +v 0.08478 0.00603 0.11253 +v 0.08172 0.00605 0.11261 +v 0.08112 0.00629 0.11278 +v 0.07841 0.00612 0.11234 +v 0.07980 0.00604 0.11242 +v 0.09747 0.09438 0.11355 +v 0.09579 0.09631 0.11325 +v 0.08725 0.09878 0.11358 +v 0.08157 0.09820 0.11370 +v 0.09856 0.08911 0.11451 +v 0.09257 0.00734 0.11193 +v 0.09736 0.00901 0.11214 +v 0.09818 0.01075 0.11227 +v 0.09829 0.01286 0.11228 +v 0.07319 0.00533 0.11140 +v 0.07422 0.00524 0.11089 +v 0.08888 0.00743 0.11250 +v 0.08699 0.00600 0.11179 +v 0.08599 0.00603 0.11217 +v 0.08487 0.00583 0.11218 +v 0.08292 0.00576 0.11218 +v 0.07881 0.00594 0.11188 +v 0.08137 0.00584 0.11225 +v 0.08044 0.00584 0.11199 +v 0.08271 0.09864 0.11371 +v 0.09677 0.09551 0.11320 +v 0.09113 0.10060 0.11345 +v 0.09629 0.09734 0.11330 +v 0.08003 0.09959 0.11391 +v 0.09892 0.08805 0.11457 +v 0.09383 0.00700 0.11173 +v 0.09481 0.00764 0.11194 +v 0.09615 0.00760 0.11184 +v 0.09172 0.00677 0.11161 +v 0.09854 0.01163 0.11220 +v 0.09865 0.01225 0.11227 +v 0.09866 0.01318 0.11257 +v 0.07816 0.00565 0.11052 +v 0.08852 0.00661 0.11222 +v 0.08827 0.00611 0.11174 +v 0.08718 0.10028 0.11354 +v 0.09820 0.09428 0.11390 +v 0.09751 0.09651 0.11340 +v 0.09667 0.09612 0.11311 +v 0.09536 0.09943 0.11346 +v 0.09674 0.09650 0.11317 +v 0.07666 0.09970 0.11378 +v 0.09312 0.00654 0.11148 +v 0.09785 0.00706 0.11167 +v 0.09835 0.00954 0.11227 +v 0.08997 0.00681 0.11199 +v 0.09247 0.00641 0.11132 +v 0.09085 0.00653 0.11149 +v 0.09897 0.01143 0.11246 +v 0.08918 0.00643 0.11190 +v 0.08651 0.00565 0.11113 +v 0.08782 0.00570 0.11116 +v 0.08397 0.00557 0.11151 +v 0.08253 0.00560 0.11175 +v 0.08128 0.00555 0.11122 +v 0.08558 0.10328 0.11373 +v 0.09818 0.09517 0.11376 +v 0.09860 0.09464 0.11426 +v 0.09701 0.09616 0.11313 +v 0.09021 0.10324 0.11346 +v 0.09227 0.10138 0.11348 +v 0.09721 0.09815 0.11344 +v 0.07803 0.10065 0.11398 +v 0.08206 0.10112 0.11396 +v 0.09510 0.00656 0.11120 +v 0.09379 0.00635 0.11123 +v 0.09792 0.00813 0.11202 +v 0.09652 0.00665 0.11140 +v 0.09913 0.00998 0.11255 +v 0.09850 0.00851 0.11222 +v 0.09187 0.00615 0.11088 +v 0.08837 0.00572 0.11095 +v 0.08294 0.00552 0.11123 +v 0.09024 0.10429 0.11344 +v 0.09873 0.09625 0.11417 +v 0.09172 0.10350 0.11358 +v 0.09395 0.10210 0.11357 +v 0.09672 0.09979 0.11356 +v 0.07703 0.10163 0.11406 +v 0.08002 0.10108 0.11418 +v 0.09275 0.00610 0.11094 +v 0.09704 0.00642 0.11125 +v 0.09001 0.00623 0.11146 +v 0.09058 0.00594 0.11057 +v 0.08929 0.00595 0.11116 +v 0.08781 0.10851 0.11372 +v 0.08319 0.10309 0.11400 +v 0.09825 0.09789 0.11384 +v 0.09323 0.10310 0.11368 +v 0.09678 0.10100 0.11364 +v 0.09772 0.09757 0.11345 +v 0.09769 0.09902 0.11366 +v 0.07898 0.10165 0.11436 +v 0.08094 0.10265 0.11433 +v 0.09395 0.00604 0.11052 +v 0.09649 0.00613 0.11077 +v 0.09912 0.00752 0.11232 +v 0.09733 0.00621 0.11102 +v 0.09950 0.00863 0.11269 +v 0.09284 0.00596 0.11043 +v 0.09054 0.10895 0.11374 +v 0.08579 0.10820 0.11382 +v 0.08198 0.10575 0.11421 +v 0.09881 0.09775 0.11422 +v 0.09223 0.10745 0.11375 +v 0.09601 0.10269 0.11377 +v 0.09419 0.10574 0.11394 +v 0.09765 0.10031 0.11388 +v 0.07798 0.10262 0.11450 +v 0.07937 0.10238 0.11454 +v 0.09912 0.00674 0.11197 +v 0.09802 0.00628 0.11113 +v 0.08904 0.11085 0.11398 +v 0.08737 0.11063 0.11385 +v 0.09911 0.09669 0.11438 +v 0.09733 0.10220 0.11397 +v 0.09834 0.09922 0.11411 +v 0.09731 0.10133 0.11384 +v 0.07938 0.10367 0.11463 +v 0.09892 0.00630 0.11134 +v 0.09984 0.00681 0.11258 +v 0.09982 0.00766 0.11293 +v 0.09717 0.00595 0.11057 +v 0.09105 0.11024 0.11381 +v 0.09236 0.10942 0.11377 +v 0.08553 0.11167 0.11383 +v 0.08296 0.11010 0.11392 +v 0.09586 0.10429 0.11390 +v 0.09711 0.10299 0.11394 +v 0.09841 0.10029 0.11443 +v 0.09802 0.10140 0.11430 +v 0.09987 0.00633 0.11197 +v 0.09834 0.00605 0.11081 +v 0.09224 0.11262 0.11381 +v 0.08909 0.11184 0.11400 +v 0.08656 0.11328 0.11395 +v 0.09486 0.10806 0.11394 +v 0.09705 0.10399 0.11402 +v 0.09669 0.10545 0.11395 +v 0.09787 0.10317 0.11429 +v 0.09991 0.00605 0.11113 +v 0.09911 0.00598 0.11057 +v 0.09273 0.11121 0.11373 +v 0.09046 0.11443 0.11393 +v 0.08811 0.11320 0.11404 +v 0.08236 0.11309 0.11386 +v 0.08483 0.11420 0.11386 +v 0.09434 0.11149 0.11374 +v 0.09809 0.10232 0.11440 +v 0.09314 0.11651 0.11393 +v 0.07844 0.11250 0.11385 +v 0.08779 0.11476 0.11416 +v 0.09570 0.10976 0.11394 +v 0.09663 0.10802 0.11404 +v 0.09743 0.10509 0.11409 +v 0.09821 0.10436 0.11468 +v 0.09473 0.11397 0.11393 +v 0.07966 0.11313 0.11383 +v 0.08277 0.11456 0.11401 +v 0.09542 0.11129 0.11387 +v 0.09702 0.10651 0.11401 +v 0.09725 0.10574 0.11399 +v 0.09623 0.11249 0.11408 +v 0.08099 0.11409 0.11406 +v 0.07833 0.11350 0.11396 +v 0.08396 0.11588 0.11402 +v 0.09702 0.10998 0.11416 +v 0.09786 0.10591 0.11432 +v 0.07982 0.11391 0.11406 +v 0.08133 0.11501 0.11431 +v 0.08257 0.11580 0.11416 +v 0.08007 0.11477 0.11444 +v 0.07889 0.11437 0.11444 +v 0.07989 0.11540 0.11468 +v 0.10251 0.00596 0.11157 +v 0.10139 0.00597 0.11139 +v 0.10188 0.00599 0.11272 +v 0.10529 0.00592 0.11371 +v 0.10083 0.00607 0.11197 +v 0.10285 0.00595 0.11336 +v 0.10115 0.00618 0.11306 +v 0.10191 0.00605 0.11355 +v 0.10280 0.00590 0.11467 +v 0.10049 0.00629 0.11254 +v 0.10640 0.00568 0.11515 +v 0.10485 0.00579 0.11521 +v 0.10063 0.00648 0.11323 +v 0.10108 0.00642 0.11401 +v 0.10185 0.00605 0.11462 +v 0.10251 0.00586 0.11539 +v 0.10028 0.00660 0.11292 +v 0.10462 0.00583 0.11787 +v 0.10029 0.00715 0.11356 +v 0.10127 0.00635 0.11511 +v 0.10161 0.00605 0.11518 +v 0.10283 0.00594 0.11686 +v 0.10072 0.00701 0.11487 +v 0.10207 0.00598 0.11572 +v 0.10502 0.00585 0.12047 +v 0.10360 0.00591 0.11796 +v 0.10032 0.00809 0.11471 +v 0.10101 0.00676 0.11574 +v 0.10147 0.00632 0.11591 +v 0.10405 0.00588 0.11950 +v 0.10199 0.00620 0.11673 +v 0.10238 0.00616 0.11792 +v 0.10006 0.00787 0.11339 +v 0.10067 0.00760 0.11602 +v 0.10386 0.00579 0.12287 +v 0.10453 0.00565 0.12532 +v 0.10283 0.00604 0.11902 +v 0.09999 0.00876 0.11327 +v 0.10040 0.00916 0.11593 +v 0.10120 0.00677 0.11669 +v 0.10302 0.00594 0.12106 +v 0.10161 0.00655 0.11789 +v 0.10216 0.00624 0.11903 +v 0.10058 0.00813 0.11718 +v 0.10083 0.00740 0.11730 +v 0.10343 0.00568 0.12493 +v 0.10239 0.00599 0.12265 +v 0.10504 0.00574 0.12953 +v 0.10240 0.00608 0.12048 +v 0.09974 0.00989 0.11297 +v 0.10022 0.01094 0.11522 +v 0.10050 0.00897 0.11729 +v 0.10104 0.00705 0.11793 +v 0.10292 0.00587 0.12317 +v 0.10350 0.00580 0.12747 +v 0.10203 0.00621 0.12174 +v 0.10422 0.00571 0.12744 +v 0.10165 0.00658 0.11921 +v 0.10185 0.00637 0.12046 +v 0.09991 0.01060 0.11353 +v 0.10053 0.01038 0.11646 +v 0.10050 0.00858 0.11808 +v 0.10075 0.00771 0.11827 +v 0.10123 0.00693 0.11840 +v 0.10253 0.00582 0.12496 +v 0.10174 0.00628 0.12264 +v 0.10192 0.00615 0.12348 +v 0.09953 0.01115 0.11301 +v 0.10019 0.01209 0.11546 +v 0.10064 0.01166 0.11664 +v 0.10066 0.00981 0.11796 +v 0.10212 0.00597 0.12516 +v 0.10136 0.00661 0.12275 +v 0.10385 0.00579 0.12962 +v 0.10563 0.00566 0.13246 +v 0.10139 0.00680 0.12020 +v 0.10106 0.00733 0.11954 +v 0.10141 0.00670 0.12139 +v 0.09929 0.01271 0.11310 +v 0.09949 0.01306 0.11381 +v 0.10103 0.01212 0.11830 +v 0.10072 0.00815 0.11911 +v 0.10071 0.00915 0.11899 +v 0.10097 0.01070 0.11892 +v 0.10178 0.00614 0.12444 +v 0.10232 0.00613 0.12744 +v 0.10355 0.00579 0.13076 +v 0.10310 0.00592 0.12944 +v 0.10399 0.00571 0.13196 +v 0.09911 0.01231 0.11268 +v 0.09998 0.01414 0.11552 +v 0.10071 0.01370 0.11725 +v 0.10131 0.00661 0.12405 +v 0.10148 0.00645 0.12529 +v 0.10164 0.00644 0.12648 +v 0.10106 0.00704 0.12260 +v 0.10489 0.00592 0.13514 +v 0.10109 0.00724 0.12075 +v 0.10115 0.00711 0.12014 +v 0.09908 0.01427 0.11325 +v 0.09962 0.01414 0.11440 +v 0.10121 0.01178 0.11915 +v 0.10151 0.01522 0.11975 +v 0.10082 0.00837 0.12036 +v 0.10099 0.00970 0.12053 +v 0.10201 0.00629 0.12802 +v 0.10153 0.00679 0.12751 +v 0.10092 0.00733 0.12331 +v 0.10280 0.00599 0.13064 +v 0.10305 0.00581 0.13151 +v 0.10338 0.00596 0.13335 +v 0.10420 0.00599 0.13615 +v 0.10085 0.01677 0.11786 +v 0.09950 0.01607 0.11401 +v 0.10127 0.01124 0.12005 +v 0.10090 0.00728 0.12484 +v 0.10114 0.00707 0.12621 +v 0.10232 0.00627 0.12942 +v 0.10078 0.00777 0.12244 +v 0.10080 0.00784 0.12156 +v 0.10328 0.00582 0.13234 +v 0.09841 0.01439 0.11274 +v 0.09992 0.01698 0.11556 +v 0.10164 0.01490 0.12050 +v 0.10119 0.01812 0.11897 +v 0.10071 0.00840 0.12206 +v 0.10159 0.01184 0.12241 +v 0.10177 0.00662 0.12856 +v 0.10106 0.00790 0.12736 +v 0.10073 0.00807 0.12430 +v 0.10077 0.00840 0.12314 +v 0.10216 0.00645 0.13075 +v 0.10253 0.00601 0.13133 +v 0.10263 0.00598 0.13194 +v 0.10266 0.00614 0.13274 +v 0.10382 0.00585 0.13784 +v 0.09875 0.01550 0.11302 +v 0.09921 0.01584 0.11346 +v 0.10036 0.01909 0.11660 +v 0.09970 0.01843 0.11513 +v 0.10149 0.01825 0.12017 +v 0.10084 0.01958 0.11780 +v 0.10069 0.00788 0.12510 +v 0.10137 0.00732 0.12851 +v 0.10167 0.00702 0.12960 +v 0.09804 0.01586 0.11280 +v 0.09925 0.01704 0.11368 +v 0.09929 0.01895 0.11425 +v 0.10169 0.01848 0.12161 +v 0.10176 0.01331 0.12327 +v 0.10146 0.02174 0.11929 +v 0.10095 0.00942 0.12355 +v 0.10075 0.00845 0.12548 +v 0.10118 0.00811 0.12866 +v 0.10172 0.00726 0.13137 +v 0.10228 0.00621 0.13156 +v 0.10224 0.00636 0.13215 +v 0.10212 0.00673 0.13285 +v 0.09874 0.01759 0.11323 +v 0.10032 0.02079 0.11656 +v 0.09947 0.01901 0.11476 +v 0.10175 0.02043 0.12123 +v 0.10172 0.01662 0.12156 +v 0.10178 0.01509 0.12358 +v 0.10181 0.01318 0.12557 +v 0.10129 0.02263 0.11856 +v 0.10133 0.01084 0.12454 +v 0.10143 0.00775 0.12996 +v 0.10111 0.00916 0.12754 +v 0.10112 0.00871 0.12841 +v 0.10196 0.00672 0.13172 +v 0.09803 0.01779 0.11298 +v 0.09888 0.01890 0.11346 +v 0.10157 0.01952 0.12393 +v 0.10183 0.01487 0.12548 +v 0.10164 0.02344 0.11990 +v 0.10156 0.01142 0.12631 +v 0.10136 0.00857 0.13000 +v 0.10164 0.00780 0.13254 +v 0.09681 0.01880 0.11286 +v 0.09909 0.02061 0.11342 +v 0.10094 0.02354 0.11766 +v 0.09980 0.02144 0.11540 +v 0.10152 0.02086 0.12497 +v 0.10167 0.01655 0.12504 +v 0.10197 0.01479 0.12702 +v 0.10178 0.02288 0.12161 +v 0.10138 0.02478 0.11894 +v 0.10195 0.01269 0.12755 +v 0.10147 0.00981 0.12963 +v 0.10149 0.00875 0.13244 +v 0.10157 0.00800 0.13408 +v 0.09820 0.01981 0.11299 +v 0.09933 0.02087 0.11406 +v 0.09889 0.01997 0.11324 +v 0.10014 0.02308 0.11619 +v 0.10151 0.01812 0.12747 +v 0.10182 0.01560 0.12624 +v 0.10220 0.01415 0.12805 +v 0.10174 0.02410 0.12054 +v 0.10201 0.01217 0.12969 +v 0.10149 0.00942 0.13139 +v 0.09665 0.02176 0.11290 +v 0.09901 0.02153 0.11355 +v 0.09878 0.02043 0.11304 +v 0.10079 0.02566 0.11749 +v 0.09964 0.02249 0.11510 +v 0.09919 0.02215 0.11391 +v 0.10163 0.02116 0.12689 +v 0.10156 0.01725 0.12614 +v 0.10182 0.02348 0.12481 +v 0.10179 0.01619 0.12796 +v 0.10211 0.01506 0.12864 +v 0.10167 0.02545 0.11996 +v 0.10222 0.01381 0.12872 +v 0.10160 0.00966 0.13389 +v 0.10155 0.00917 0.13413 +v 0.10145 0.00866 0.13531 +v 0.09813 0.02143 0.11305 +v 0.09880 0.02095 0.11311 +v 0.09923 0.02604 0.11501 +v 0.10088 0.02728 0.11768 +v 0.09926 0.02315 0.11445 +v 0.10160 0.01837 0.12894 +v 0.10198 0.02398 0.12749 +v 0.10158 0.01725 0.12807 +v 0.10200 0.02798 0.12088 +v 0.10232 0.01377 0.12988 +v 0.10209 0.01203 0.13199 +v 0.09856 0.02068 0.11296 +v 0.09728 0.02255 0.11296 +v 0.09531 0.02483 0.11287 +v 0.09877 0.02281 0.11358 +v 0.09879 0.02588 0.11415 +v 0.09994 0.02877 0.11607 +v 0.10190 0.02938 0.12038 +v 0.10176 0.01992 0.12936 +v 0.10229 0.02297 0.13166 +v 0.10168 0.01701 0.12890 +v 0.10229 0.01461 0.12963 +v 0.10227 0.01363 0.13097 +v 0.10216 0.01245 0.13378 +v 0.09684 0.02394 0.11296 +v 0.09805 0.02352 0.11316 +v 0.09341 0.02520 0.11280 +v 0.09876 0.02663 0.11402 +v 0.10092 0.02939 0.11805 +v 0.09862 0.02411 0.11345 +v 0.10168 0.01862 0.13053 +v 0.10230 0.01456 0.13045 +v 0.10222 0.01360 0.13250 +v 0.10164 0.01011 0.13640 +v 0.10202 0.01187 0.13516 +v 0.09665 0.02604 0.11294 +v 0.09197 0.02336 0.11267 +v 0.09510 0.02766 0.11277 +v 0.09829 0.02589 0.11349 +v 0.09926 0.02856 0.11454 +v 0.09988 0.03029 0.11598 +v 0.10116 0.03151 0.11873 +v 0.09843 0.02430 0.11333 +v 0.10180 0.01862 0.13183 +v 0.10162 0.01773 0.12998 +v 0.10175 0.01681 0.13011 +v 0.10212 0.01519 0.13174 +v 0.10221 0.01311 0.13393 +v 0.10137 0.00937 0.13777 +v 0.09779 0.02466 0.11315 +v 0.09753 0.02579 0.11312 +v 0.09204 0.02647 0.11259 +v 0.09886 0.02787 0.11388 +v 0.09950 0.02953 0.11494 +v 0.10164 0.03161 0.12004 +v 0.10165 0.01784 0.13122 +v 0.10156 0.01761 0.13085 +v 0.10186 0.01863 0.13288 +v 0.10230 0.02360 0.13207 +v 0.10189 0.01638 0.13102 +v 0.10196 0.03064 0.12098 +v 0.10181 0.01148 0.13968 +v 0.10206 0.01356 0.13545 +v 0.10159 0.01022 0.13892 +v 0.09728 0.02747 0.11297 +v 0.09256 0.02945 0.11251 +v 0.09817 0.02731 0.11329 +v 0.09919 0.02924 0.11389 +v 0.09944 0.03060 0.11481 +v 0.10140 0.03302 0.11926 +v 0.10183 0.01713 0.13213 +v 0.10185 0.01894 0.13439 +v 0.10221 0.02288 0.13308 +v 0.10207 0.02512 0.13147 +v 0.10168 0.01721 0.13101 +v 0.10175 0.03267 0.12063 +v 0.10197 0.01574 0.13358 +v 0.10202 0.01276 0.13680 +v 0.10123 0.00884 0.13865 +v 0.09774 0.03003 0.11290 +v 0.09455 0.03024 0.11271 +v 0.09868 0.02903 0.11327 +v 0.09930 0.03018 0.11408 +v 0.09954 0.03184 0.11533 +v 0.10160 0.03329 0.12001 +v 0.10185 0.01764 0.13370 +v 0.10222 0.02415 0.13206 +v 0.10141 0.00941 0.14114 +v 0.10184 0.01256 0.14067 +v 0.10185 0.01603 0.13692 +v 0.10133 0.00880 0.13987 +v 0.09602 0.03051 0.11276 +v 0.09922 0.02993 0.11348 +v 0.09916 0.02950 0.11340 +v 0.09920 0.03118 0.11409 +v 0.10111 0.03411 0.11881 +v 0.10201 0.02232 0.13474 +v 0.10209 0.02424 0.13345 +v 0.10196 0.02516 0.13206 +v 0.10188 0.01198 0.14063 +v 0.10191 0.01374 0.13852 +v 0.09736 0.03101 0.11281 +v 0.09889 0.03010 0.11317 +v 0.09906 0.03110 0.11350 +v 0.09912 0.02969 0.11325 +v 0.09903 0.03205 0.11418 +v 0.09969 0.03426 0.11599 +v 0.10146 0.03446 0.11994 +v 0.10183 0.01747 0.13723 +v 0.10185 0.02049 0.13616 +v 0.10132 0.00827 0.14120 +v 0.10172 0.01192 0.14260 +v 0.10173 0.01462 0.13960 +v 0.09622 0.03297 0.11284 +v 0.09809 0.03164 0.11302 +v 0.09870 0.03092 0.11313 +v 0.09889 0.03179 0.11360 +v 0.09905 0.03283 0.11450 +v 0.10053 0.03660 0.11809 +v 0.10118 0.03616 0.11949 +v 0.10177 0.01684 0.13845 +v 0.10201 0.02359 0.13553 +v 0.10124 0.00882 0.14226 +v 0.10154 0.01126 0.14358 +v 0.10146 0.01420 0.14229 +v 0.09751 0.03282 0.11305 +v 0.09529 0.03440 0.11275 +v 0.09869 0.03167 0.11323 +v 0.09852 0.03267 0.11360 +v 0.09899 0.03396 0.11453 +v 0.09960 0.03689 0.11632 +v 0.10205 0.02404 0.13824 +v 0.10191 0.01995 0.14107 +v 0.10115 0.00800 0.14319 +v 0.10149 0.01236 0.14439 +v 0.09709 0.03420 0.11301 +v 0.09913 0.03541 0.11483 +v 0.10094 0.03791 0.11894 +v 0.10205 0.02193 0.14090 +v 0.10161 0.01717 0.14134 +v 0.10139 0.01046 0.14467 +v 0.10151 0.01176 0.14485 +v 0.10134 0.01425 0.14417 +v 0.09797 0.03361 0.11331 +v 0.09655 0.03575 0.11283 +v 0.09852 0.03387 0.11377 +v 0.09867 0.03515 0.11392 +v 0.09949 0.03850 0.11601 +v 0.09986 0.03897 0.11683 +v 0.10159 0.01735 0.14452 +v 0.10135 0.00722 0.14288 +v 0.10146 0.01285 0.14659 +v 0.10135 0.01361 0.14549 +v 0.09805 0.03446 0.11338 +v 0.09675 0.03736 0.11274 +v 0.09784 0.03545 0.11319 +v 0.09900 0.03694 0.11396 +v 0.09918 0.03704 0.11465 +v 0.10016 0.04043 0.11714 +v 0.10135 0.03939 0.11982 +v 0.10137 0.01530 0.14493 +v 0.10119 0.00742 0.14347 +v 0.10157 0.01150 0.14615 +v 0.09778 0.03672 0.11296 +v 0.09856 0.03648 0.11347 +v 0.09935 0.03857 0.11492 +v 0.09950 0.03903 0.11585 +v 0.09960 0.03976 0.11612 +v 0.10122 0.03977 0.11929 +v 0.10163 0.01672 0.14668 +v 0.10150 0.01172 0.14763 +v 0.10140 0.01373 0.14669 +v 0.10136 0.01496 0.14641 +v 0.09782 0.03760 0.11284 +v 0.09770 0.03861 0.11291 +v 0.09855 0.03783 0.11323 +v 0.09931 0.03840 0.11423 +v 0.09959 0.04023 0.11580 +v 0.10114 0.04039 0.11916 +v 0.10150 0.04037 0.12041 +v 0.10154 0.01291 0.14852 +v 0.09914 0.03850 0.11375 +v 0.09931 0.03926 0.11430 +v 0.09944 0.03975 0.11554 +v 0.09982 0.04162 0.11612 +v 0.10031 0.04195 0.11733 +v 0.10230 0.01668 0.15031 +v 0.10157 0.01473 0.14779 +v 0.09879 0.03940 0.11349 +v 0.09951 0.04110 0.11510 +v 0.09942 0.04012 0.11486 +v 0.10143 0.04192 0.11995 +v 0.10154 0.04104 0.12026 +v 0.10196 0.01396 0.15070 +v 0.09894 0.04091 0.11372 +v 0.09944 0.04374 0.11541 +v 0.09967 0.04444 0.11610 +v 0.10139 0.04363 0.11965 +v 0.10161 0.04184 0.12121 +v 0.10243 0.01689 0.15211 +v 0.09931 0.04075 0.11414 +v 0.09934 0.04143 0.11448 +v 0.10161 0.04316 0.12060 +v 0.10218 0.01508 0.15196 +v 0.09908 0.04211 0.11401 +v 0.09949 0.04549 0.11556 +v 0.09921 0.04312 0.11452 +v 0.10103 0.04605 0.11900 +v 0.09883 0.04299 0.11365 +v 0.09901 0.04388 0.11399 +v 0.09994 0.04659 0.11668 +v 0.10157 0.04610 0.12027 +v 0.09924 0.04588 0.11447 +v 0.09940 0.04725 0.11518 +v 0.10100 0.05015 0.11953 +v 0.10167 0.04649 0.12079 +v 0.09893 0.04526 0.11358 +v 0.09914 0.04852 0.11475 +v 0.09975 0.04996 0.11672 +v 0.09911 0.04613 0.11369 +v 0.09914 0.04688 0.11401 +v 0.09924 0.04980 0.11525 +v 0.09900 0.04782 0.11414 +v 0.09980 0.05253 0.11688 +v 0.09900 0.04595 0.11337 +v 0.09885 0.04925 0.11436 +v 0.09882 0.04856 0.11409 +v 0.09907 0.05155 0.11459 +v 0.10063 0.05564 0.11904 +v 0.09873 0.04582 0.11317 +v 0.09888 0.04655 0.11334 +v 0.09885 0.04736 0.11357 +v 0.09887 0.05023 0.11449 +v 0.09843 0.04806 0.11353 +v 0.09889 0.05302 0.11433 +v 0.09898 0.05458 0.11493 +v 0.09824 0.04628 0.11304 +v 0.09833 0.04960 0.11389 +v 0.09850 0.04890 0.11385 +v 0.09885 0.05119 0.11432 +v 0.09843 0.05204 0.11384 +v 0.09979 0.05675 0.11703 +v 0.10102 0.05455 0.12008 +v 0.09850 0.04716 0.11322 +v 0.09817 0.05069 0.11381 +v 0.09789 0.04877 0.11350 +v 0.09863 0.05315 0.11395 +v 0.09869 0.05498 0.11438 +v 0.09902 0.05768 0.11541 +v 0.10073 0.05876 0.11907 +v 0.10113 0.05622 0.12051 +v 0.09780 0.04727 0.11313 +v 0.09740 0.04963 0.11348 +v 0.09773 0.04809 0.11328 +v 0.09800 0.05333 0.11344 +v 0.09879 0.05628 0.11474 +v 0.09720 0.05071 0.11342 +v 0.09768 0.05149 0.11349 +v 0.09828 0.05459 0.11374 +v 0.09765 0.05232 0.11337 +v 0.09834 0.05620 0.11407 +v 0.09877 0.05969 0.11461 +v 0.09854 0.05773 0.11437 +v 0.09775 0.05472 0.11334 +v 0.09712 0.05358 0.11313 +v 0.10015 0.06018 0.11758 +v 0.09657 0.05185 0.11325 +v 0.09745 0.05392 0.11316 +v 0.09740 0.05634 0.11342 +v 0.09812 0.05717 0.11384 +v 0.09819 0.05821 0.11377 +v 0.09925 0.06122 0.11535 +v 0.09702 0.05465 0.11313 +v 0.09723 0.05533 0.11320 +v 0.09832 0.05956 0.11385 +v 0.09959 0.06305 0.11603 +v 0.09858 0.06129 0.11372 +v 0.09646 0.05559 0.11316 +v 0.09762 0.05794 0.11339 +v 0.09849 0.06050 0.11384 +v 0.09795 0.05859 0.11349 +v 0.09887 0.06256 0.11412 +v 0.09563 0.05704 0.11317 +v 0.09667 0.05779 0.11323 +v 0.09810 0.06024 0.11347 +v 0.09787 0.05943 0.11343 +v 0.09900 0.06368 0.11454 +v 0.09849 0.06207 0.11356 +v 0.09830 0.06077 0.11346 +v 0.09914 0.06462 0.11491 +v 0.09746 0.05877 0.11327 +v 0.09773 0.05845 0.11331 +v 0.09865 0.06304 0.11368 +v 0.09818 0.06104 0.11332 +v 0.09609 0.05973 0.11315 +v 0.09736 0.06008 0.11323 +v 0.09838 0.06370 0.11366 +v 0.09868 0.06481 0.11405 +v 0.09777 0.06165 0.11326 +v 0.09826 0.06260 0.11336 +v 0.09833 0.06308 0.11342 +v 0.09772 0.06296 0.11329 +v -0.09445 0.00344 0.23875 +v -0.09173 0.00342 0.23847 +v -0.09349 0.00349 0.23859 +v -0.09579 0.00337 0.23877 +v -0.09395 0.00459 0.23846 +v -0.09526 0.00422 0.23850 +v -0.09288 0.00381 0.23844 +v -0.09039 0.00370 0.23821 +v -0.09665 0.00454 0.23839 +v -0.09716 0.00327 0.23865 +v -0.09125 0.00447 0.23829 +v -0.09244 0.00467 0.23839 +v -0.09648 0.00571 0.23833 +v -0.08898 0.00380 0.23798 +v -0.09009 0.00502 0.23823 +v -0.09350 0.00613 0.23851 +v -0.09920 0.00352 0.23836 +v -0.09155 0.00568 0.23842 +v -0.09648 0.00875 0.23863 +v -0.08869 0.00492 0.23809 +v -0.08819 0.00324 0.23793 +v -0.09047 0.00662 0.23849 +v -0.09393 0.00827 0.23862 +v -0.09098 0.00825 0.23866 +v -0.08773 0.00444 0.23801 +v -0.08913 0.00608 0.23833 +v -0.08813 0.00369 0.23782 +v -0.09219 0.01012 0.23858 +v -0.08638 0.00356 0.23830 +v -0.08758 0.00348 0.23795 +v -0.08724 0.00647 0.23832 +v -0.08929 0.00773 0.23851 +v -0.09420 0.01282 0.23872 +v -0.08626 0.00515 0.23823 +v -0.08868 0.00946 0.23840 +v -0.09551 0.01558 0.23866 +v -0.09185 0.01278 0.23870 +v -0.09015 0.01056 0.23849 +v -0.08361 0.00324 0.23900 +v -0.08484 0.00355 0.23862 +v -0.08554 0.00612 0.23830 +v -0.08770 0.00822 0.23844 +v -0.09370 0.01497 0.23872 +v -0.09210 0.01456 0.23881 +v -0.08518 0.00459 0.23835 +v -0.08224 0.00372 0.23875 +v -0.08615 0.00749 0.23837 +v -0.08405 0.00568 0.23835 +v -0.08731 0.00936 0.23832 +v -0.08790 0.01134 0.23818 +v -0.09500 0.01759 0.23848 +v -0.09390 0.01678 0.23859 +v -0.08959 0.01252 0.23857 +v -0.08984 0.01534 0.23891 +v -0.08366 0.00445 0.23851 +v -0.08390 0.00735 0.23829 +v -0.08648 0.00899 0.23838 +v -0.08781 0.01011 0.23823 +v -0.08915 0.01410 0.23879 +v -0.08119 0.00370 0.23865 +v -0.08206 0.00477 0.23846 +v -0.08572 0.00886 0.23830 +v -0.08628 0.00969 0.23817 +v -0.08713 0.01039 0.23805 +v -0.08801 0.01358 0.23856 +v -0.08876 0.01623 0.23897 +v -0.08822 0.01498 0.23885 +v -0.08731 0.01091 0.23795 +v -0.08656 0.01320 0.23823 +v -0.08843 0.01428 0.23880 +v -0.08893 0.01558 0.23897 +v -0.08477 0.00987 0.23805 +v -0.08612 0.01050 0.23788 +v -0.08658 0.01179 0.23785 +v -0.08767 0.01599 0.23894 +v -0.08614 0.01100 0.23770 +v -0.08611 0.01140 0.23769 +v -0.08548 0.01104 0.23776 +v -0.11008 0.00371 0.23875 +v -0.11288 0.00346 0.23841 +v -0.11140 0.00432 0.23847 +v -0.11463 0.00389 0.23817 +v -0.11542 0.00341 0.23816 +v -0.11663 0.00430 0.23822 +v -0.11782 0.00372 0.23828 +v -0.11927 0.00407 0.23811 +v -0.11778 0.00632 0.23816 +v -0.11803 0.00487 0.23812 +v -0.11905 0.00781 0.23808 +v -0.12107 0.00420 0.23778 +v -0.11992 0.00543 0.23786 +v -0.12212 0.00345 0.23766 +v -0.12225 0.00314 0.23782 +v -0.12191 0.00388 0.23759 +v -0.12182 0.00604 0.23753 +v -0.12189 0.00820 0.23769 +v -0.12366 0.00388 0.23729 +v -0.12332 0.01031 0.23746 +v -0.12385 0.00324 0.23747 +v -0.12346 0.00532 0.23715 +v -0.12318 0.00732 0.23728 +v -0.12484 0.00453 0.23684 +v -0.12432 0.00870 0.23707 +v -0.12524 0.00350 0.23711 +v -0.12477 0.00607 0.23662 +v -0.12480 0.00759 0.23670 +v -0.12549 0.00505 0.23638 +v -0.12583 0.00408 0.23648 +v -0.12490 0.00832 0.23680 +v -0.12589 0.00576 0.23580 +v -0.12567 0.00460 0.23645 +v -0.12605 0.00335 0.23681 +v -0.12553 0.00697 0.23612 +v -0.12513 0.00876 0.23670 +v -0.12602 0.00472 0.23599 +v -0.12651 0.00337 0.23631 +v -0.12619 0.00687 0.23540 +v -0.12645 0.00485 0.23515 +v -0.12656 0.00391 0.23561 +v -0.12719 0.00329 0.23479 +v -0.12681 0.00406 0.23464 +v -0.02342 0.00314 0.24100 +v -0.02007 0.00334 0.23992 +v -0.02316 0.00367 0.23906 +v -0.01819 0.00342 0.24012 +v -0.02123 0.00377 0.23878 +v -0.02423 0.00408 0.23798 +v -0.01643 0.00336 0.24057 +v -0.01441 0.00332 0.24071 +v -0.01916 0.00391 0.23893 +v -0.02023 0.00379 0.23872 +v -0.02221 0.00412 0.23829 +v -0.02516 0.00406 0.23787 +v -0.02312 0.00424 0.23799 +v -0.01303 0.00322 0.24110 +v -0.01644 0.00384 0.23943 +v -0.01783 0.00395 0.23901 +v -0.02056 0.00394 0.23838 +v -0.02141 0.00426 0.23814 +v -0.02491 0.00425 0.23758 +v -0.02372 0.00444 0.23764 +v -0.01448 0.00376 0.23945 +v -0.01330 0.00340 0.24002 +v -0.02008 0.00417 0.23830 +v -0.01824 0.00438 0.23843 +v -0.02218 0.00501 0.23769 +v -0.02543 0.00428 0.23755 +v -0.02446 0.00467 0.23746 +v -0.02316 0.00459 0.23763 +v -0.01244 0.00325 0.24042 +v -0.01712 0.00452 0.23846 +v -0.01508 0.00489 0.23834 +v -0.01912 0.00505 0.23798 +v -0.02069 0.00463 0.23794 +v -0.02516 0.00454 0.23739 +v -0.02360 0.00506 0.23742 +v -0.01311 0.00368 0.23919 +v -0.01210 0.00349 0.23951 +v -0.01345 0.00420 0.23855 +v -0.01792 0.00484 0.23811 +v -0.02068 0.00559 0.23765 +v -0.02417 0.00572 0.23732 +v -0.01159 0.00332 0.24009 +v -0.01037 0.00331 0.24038 +v -0.01717 0.00569 0.23786 +v -0.01343 0.00486 0.23803 +v -0.01211 0.00395 0.23867 +v -0.00868 0.00325 0.24070 +v -0.01533 0.00680 0.23772 +v -0.01258 0.00455 0.23806 +v -0.01331 0.00599 0.23774 +v -0.01075 0.00416 0.23845 +v -0.00980 0.00378 0.23909 +v -0.00859 0.00342 0.23986 +v -0.00645 0.00357 0.24031 +v -0.01283 0.00506 0.23782 +v -0.01157 0.00456 0.23800 +v -0.00954 0.00347 0.23968 +v -0.00738 0.00359 0.23973 +v -0.00508 0.00362 0.24043 +v -0.01096 0.00562 0.23754 +v -0.00946 0.00452 0.23816 +v -0.01053 0.00492 0.23781 +v -0.00836 0.00363 0.23929 +v -0.00605 0.00395 0.23915 +v -0.01205 0.00720 0.23753 +v -0.01139 0.00513 0.23768 +v -0.00846 0.00411 0.23861 +v -0.00731 0.00401 0.23880 +v -0.00210 0.00325 0.24089 +v -0.00352 0.00348 0.24070 +v -0.00424 0.00383 0.23941 +v -0.00949 0.00531 0.23768 +v -0.00873 0.00487 0.23791 +v -0.00662 0.00434 0.23837 +v -0.00476 0.00439 0.23854 +v -0.00917 0.00680 0.23740 +v -0.00742 0.00469 0.23810 +v -0.00134 0.00319 0.23976 +v -0.00257 0.00353 0.23946 +v -0.00593 0.00463 0.23820 +v -0.00329 0.00422 0.23853 +v -0.00865 0.00834 0.23724 +v -0.00825 0.00576 0.23760 +v 0.00287 0.00314 0.24023 +v -0.00658 0.00473 0.23802 +v -0.00380 0.00541 0.23788 +v -0.00525 0.00524 0.23790 +v -0.00823 0.00740 0.23724 +v -0.00651 0.00554 0.23772 +v 0.00123 0.00318 0.23923 +v 0.00362 0.00316 0.24105 +v -0.00053 0.00327 0.23905 +v -0.00155 0.00343 0.23896 +v -0.00211 0.00388 0.23847 +v -0.00238 0.00467 0.23796 +v -0.00736 0.00875 0.23725 +v -0.00797 0.00687 0.23732 +v 0.00051 0.00331 0.23879 +v 0.00205 0.00320 0.23955 +v 0.00408 0.00329 0.23978 +v -0.00528 0.00653 0.23757 +v -0.00208 0.00586 0.23765 +v -0.00677 0.00959 0.23722 +v -0.00635 0.00654 0.23747 +v 0.00617 0.00319 0.24127 +v 0.00113 0.00334 0.23867 +v 0.00180 0.00351 0.23868 +v 0.00275 0.00340 0.23911 +v 0.00485 0.00318 0.24071 +v 0.00336 0.00329 0.23953 +v -0.00016 0.00372 0.23825 +v -0.00115 0.00369 0.23838 +v -0.00158 0.00417 0.23802 +v -0.00342 0.00729 0.23755 +v -0.00126 0.00477 0.23776 +v 0.00087 0.00374 0.23824 +v 0.00520 0.00337 0.23955 +v 0.00360 0.00358 0.23883 +v -0.00509 0.00828 0.23741 +v -0.00029 0.00559 0.23759 +v -0.00123 0.00757 0.23750 +v -0.00530 0.01007 0.23714 +v 0.00595 0.00319 0.24043 +v 0.00273 0.00392 0.23834 +v 0.00440 0.00353 0.23894 +v 0.00029 0.00403 0.23795 +v -0.00089 0.00410 0.23797 +v -0.00364 0.00909 0.23740 +v -0.00027 0.00441 0.23782 +v -0.00209 0.00901 0.23746 +v 0.00766 0.00329 0.24084 +v 0.00172 0.00427 0.23799 +v 0.00492 0.00388 0.23845 +v 0.00620 0.00330 0.23987 +v 0.00417 0.00380 0.23840 +v 0.00064 0.00451 0.23779 +v 0.00081 0.00680 0.23742 +v -0.00036 0.00940 0.23744 +v -0.00383 0.01023 0.23721 +v 0.01200 0.00355 0.24144 +v 0.01009 0.00345 0.24104 +v 0.00742 0.00335 0.23988 +v 0.00366 0.00415 0.23810 +v 0.00278 0.00491 0.23772 +v 0.00616 0.00361 0.23902 +v -0.00276 0.01034 0.23716 +v 0.00071 0.00863 0.23735 +v 0.00134 0.00536 0.23759 +v -0.00121 0.00994 0.23737 +v 0.00848 0.00331 0.24041 +v 0.00428 0.00411 0.23808 +v 0.00595 0.00434 0.23801 +v 0.00277 0.00738 0.23719 +v 0.00226 0.00622 0.23738 +v 0.00012 0.01020 0.23721 +v 0.01358 0.00355 0.24026 +v 0.01190 0.00359 0.24011 +v 0.01536 0.00347 0.23939 +v 0.00957 0.00336 0.24039 +v 0.00897 0.00342 0.23969 +v 0.00438 0.00482 0.23773 +v 0.00732 0.00382 0.23860 +v -0.00129 0.01075 0.23714 +v 0.00288 0.00827 0.23719 +v 0.00213 0.01007 0.23711 +v -0.00187 0.01116 0.23681 +v 0.01060 0.00358 0.23972 +v 0.01665 0.00347 0.23962 +v 0.00810 0.00351 0.23918 +v 0.00340 0.00583 0.23741 +v 0.00635 0.00468 0.23762 +v 0.00572 0.00542 0.23742 +v 0.00476 0.00753 0.23718 +v 0.00081 0.01129 0.23684 +v -0.00043 0.01113 0.23687 +v 0.01313 0.00373 0.23927 +v 0.01451 0.00359 0.23911 +v 0.01615 0.00370 0.23851 +v 0.01934 0.00364 0.24039 +v 0.00872 0.00380 0.23865 +v 0.00449 0.00619 0.23730 +v 0.00800 0.00428 0.23803 +v -0.00107 0.01152 0.23659 +v 0.00461 0.00954 0.23717 +v 0.00227 0.01156 0.23686 +v 0.01511 0.00371 0.23852 +v 0.01094 0.00393 0.23871 +v 0.01737 0.00366 0.23869 +v 0.01896 0.00370 0.23897 +v 0.00974 0.00366 0.23902 +v 0.00783 0.00518 0.23752 +v 0.00671 0.00517 0.23743 +v 0.00589 0.00676 0.23717 +v 0.00645 0.00795 0.23721 +v -0.00100 0.01183 0.23638 +v 0.01400 0.00411 0.23819 +v 0.01215 0.00441 0.23816 +v 0.01702 0.00424 0.23771 +v 0.01542 0.00421 0.23776 +v 0.02057 0.00365 0.23933 +v 0.00978 0.00400 0.23840 +v 0.00916 0.00459 0.23788 +v 0.00677 0.00631 0.23726 +v 0.00668 0.00955 0.23729 +v 0.01114 0.00433 0.23808 +v 0.02264 0.00364 0.24057 +v 0.01836 0.00394 0.23797 +v 0.02027 0.00389 0.23839 +v 0.02188 0.00364 0.23946 +v 0.00905 0.00572 0.23741 +v 0.00832 0.00853 0.23733 +v 0.01329 0.00512 0.23747 +v 0.01445 0.00473 0.23746 +v 0.01039 0.00442 0.23799 +v 0.01112 0.00483 0.23774 +v 0.02441 0.00360 0.24041 +v 0.01819 0.00423 0.23761 +v 0.01609 0.00478 0.23729 +v 0.01946 0.00404 0.23800 +v 0.02121 0.00377 0.23872 +v 0.00807 0.00621 0.23730 +v 0.01025 0.00528 0.23753 +v 0.00876 0.00692 0.23728 +v 0.01168 0.00596 0.23733 +v 0.01524 0.00495 0.23724 +v 0.02761 0.00359 0.24014 +v 0.02276 0.00361 0.23966 +v 0.02378 0.00369 0.23956 +v 0.01796 0.00498 0.23724 +v 0.01906 0.00453 0.23742 +v 0.01690 0.00521 0.23717 +v 0.02128 0.00420 0.23800 +v 0.02024 0.00453 0.23755 +v 0.02211 0.00389 0.23853 +v 0.01008 0.00647 0.23728 +v 0.00962 0.00780 0.23727 +v 0.01313 0.00621 0.23712 +v 0.01445 0.00579 0.23711 +v 0.02708 0.00375 0.23907 +v 0.02275 0.00370 0.23909 +v 0.01592 0.00571 0.23706 +v 0.01241 0.00738 0.23713 +v 0.02847 0.00377 0.23881 +v 0.02455 0.00405 0.23845 +v 0.01895 0.00549 0.23701 +v 0.01748 0.00660 0.23699 +v 0.01970 0.00504 0.23710 +v 0.02305 0.00461 0.23759 +v 0.02148 0.00516 0.23731 +v 0.02325 0.00405 0.23836 +v 0.01103 0.00741 0.23720 +v 0.01170 0.00690 0.23713 +v 0.01420 0.00712 0.23705 +v 0.02972 0.00378 0.23895 +v 0.02790 0.00392 0.23829 +v 0.02578 0.00405 0.23834 +v 0.02033 0.00551 0.23704 +v 0.02879 0.00401 0.23818 +v 0.02694 0.00402 0.23823 +v 0.02521 0.00467 0.23765 +v 0.02404 0.00446 0.23781 +v 0.01954 0.00658 0.23688 +v 0.01968 0.00558 0.23691 +v 0.01760 0.00776 0.23698 +v 0.02248 0.00515 0.23726 +v 0.02108 0.00661 0.23694 +v 0.03028 0.00399 0.23842 +v 0.02810 0.00429 0.23773 +v 0.02754 0.00413 0.23788 +v 0.02965 0.00412 0.23810 +v 0.02627 0.00440 0.23774 +v 0.02403 0.00527 0.23727 +v 0.02314 0.00593 0.23703 +v 0.02302 0.00490 0.23736 +v 0.02909 0.00455 0.23763 +v 0.02718 0.00456 0.23753 +v 0.02625 0.00495 0.23734 +v 0.02309 0.00545 0.23712 +v 0.02318 0.00770 0.23689 +v 0.02811 0.00505 0.23727 +v 0.02563 0.00581 0.23708 +v 0.02475 0.00685 0.23692 +v 0.02699 0.00555 0.23709 +v 0.02804 0.00618 0.23696 +v 0.02599 0.00689 0.23688 +v 0.10582 0.00444 0.24147 +v 0.10596 0.00462 0.23934 +v 0.10004 0.00424 0.24143 +v 0.10461 0.00454 0.24065 +v 0.10445 0.00464 0.23799 +v 0.10492 0.00465 0.23963 +v 0.10178 0.00443 0.23945 +v 0.10322 0.00454 0.24023 +v 0.09680 0.00409 0.23917 +v 0.09083 0.00441 0.24150 +v 0.10622 0.00419 0.23593 +v 0.10421 0.00472 0.23860 +v 0.09871 0.00419 0.23843 +v 0.09538 0.00416 0.24103 +v 0.09214 0.00445 0.23889 +v 0.10348 0.00445 0.23675 +v 0.09896 0.00420 0.23730 +v 0.09353 0.00431 0.24020 +v 0.09748 0.00417 0.23771 +v 0.08911 0.00452 0.23794 +v 0.08820 0.00435 0.24010 +v 0.10636 0.00423 0.23384 +v 0.10469 0.00427 0.23501 +v 0.10251 0.00448 0.23780 +v 0.10192 0.00440 0.23657 +v 0.09542 0.00425 0.23773 +v 0.09335 0.00446 0.23798 +v 0.09011 0.00454 0.23708 +v 0.08663 0.00438 0.23966 +v 0.10324 0.00442 0.23588 +v 0.10021 0.00430 0.23658 +v 0.09944 0.00427 0.23623 +v 0.09709 0.00427 0.23667 +v 0.09168 0.00455 0.23750 +v 0.08803 0.00459 0.23726 +v 0.08972 0.00470 0.23638 +v 0.08474 0.00448 0.23921 +v 0.08289 0.00444 0.24056 +v 0.10483 0.00444 0.23315 +v 0.10386 0.00442 0.23474 +v 0.10098 0.00446 0.23558 +v 0.09371 0.00454 0.23704 +v 0.09524 0.00444 0.23607 +v 0.09253 0.00467 0.23674 +v 0.09137 0.00478 0.23634 +v 0.08495 0.00462 0.23777 +v 0.08290 0.00464 0.23942 +v 0.10603 0.00446 0.23186 +v 0.10407 0.00455 0.23361 +v 0.10553 0.00449 0.23199 +v 0.10307 0.00449 0.23517 +v 0.10208 0.00457 0.23521 +v 0.09992 0.00451 0.23541 +v 0.09715 0.00448 0.23576 +v 0.09515 0.00439 0.23660 +v 0.08815 0.00481 0.23654 +v 0.09060 0.00497 0.23578 +v 0.08697 0.00468 0.23704 +v 0.08309 0.00464 0.23804 +v 0.08209 0.00457 0.23933 +v 0.10436 0.00474 0.23205 +v 0.10285 0.00488 0.23406 +v 0.10115 0.00472 0.23481 +v 0.10056 0.00456 0.23503 +v 0.09883 0.00446 0.23574 +v 0.09345 0.00476 0.23617 +v 0.09457 0.00461 0.23600 +v 0.09591 0.00461 0.23537 +v 0.09236 0.00497 0.23588 +v 0.08933 0.00484 0.23607 +v 0.09148 0.00530 0.23550 +v 0.08577 0.00471 0.23707 +v 0.08373 0.00478 0.23722 +v 0.08050 0.00438 0.23979 +v 0.10479 0.00488 0.22989 +v 0.10555 0.00481 0.22925 +v 0.10359 0.00495 0.23282 +v 0.10176 0.00498 0.23438 +v 0.10022 0.00466 0.23484 +v 0.09903 0.00512 0.23489 +v 0.09806 0.00482 0.23522 +v 0.09598 0.00482 0.23505 +v 0.09526 0.00458 0.23563 +v 0.08711 0.00497 0.23631 +v 0.08896 0.00511 0.23587 +v 0.09072 0.00519 0.23545 +v 0.09003 0.00527 0.23551 +v 0.08471 0.00484 0.23684 +v 0.08654 0.00483 0.23651 +v 0.08126 0.00463 0.23844 +v 0.08271 0.00485 0.23701 +v 0.10629 0.00483 0.22788 +v 0.10375 0.00502 0.23192 +v 0.10419 0.00495 0.23048 +v 0.10265 0.00580 0.23275 +v 0.10099 0.00524 0.23424 +v 0.09994 0.00485 0.23477 +v 0.09708 0.00486 0.23517 +v 0.09306 0.00524 0.23548 +v 0.09401 0.00503 0.23548 +v 0.09542 0.00489 0.23514 +v 0.09476 0.00485 0.23540 +v 0.09236 0.00532 0.23544 +v 0.08791 0.00511 0.23607 +v 0.09073 0.00550 0.23531 +v 0.08549 0.00491 0.23653 +v 0.08640 0.00499 0.23623 +v 0.07843 0.00442 0.23888 +v 0.07777 0.00397 0.24095 +v 0.07372 0.00410 0.24094 +v 0.07557 0.00405 0.24142 +v 0.08311 0.00520 0.23647 +v 0.08404 0.00520 0.23632 +v 0.10374 0.00503 0.22926 +v 0.10466 0.00485 0.22705 +v 0.10343 0.00529 0.23105 +v 0.10324 0.00538 0.23201 +v 0.10171 0.00576 0.23369 +v 0.10001 0.00553 0.23433 +v 0.09759 0.00553 0.23479 +v 0.09600 0.00541 0.23490 +v 0.09256 0.00594 0.23522 +v 0.08719 0.00555 0.23580 +v 0.08927 0.00575 0.23544 +v 0.08829 0.00557 0.23566 +v 0.09110 0.00618 0.23523 +v 0.08491 0.00519 0.23613 +v 0.07127 0.00387 0.24143 +v 0.08253 0.00513 0.23655 +v 0.10346 0.00514 0.23001 +v 0.10283 0.00599 0.23144 +v 0.10077 0.00594 0.23391 +v 0.09421 0.00552 0.23513 +v 0.09021 0.00580 0.23528 +v 0.08584 0.00544 0.23591 +v 0.07723 0.00425 0.23925 +v 0.07425 0.00423 0.23984 +v 0.08347 0.00603 0.23590 +v 0.08446 0.00566 0.23579 +v 0.10347 0.00497 0.22693 +v 0.10455 0.00491 0.22593 +v 0.10654 0.00507 0.22525 +v 0.10302 0.00546 0.23028 +v 0.10292 0.00517 0.22913 +v 0.10241 0.00697 0.23205 +v 0.10007 0.00652 0.23394 +v 0.08831 0.00648 0.23546 +v 0.09002 0.00657 0.23527 +v 0.08506 0.00556 0.23577 +v 0.07249 0.00435 0.23867 +v 0.10303 0.00522 0.22964 +v 0.10256 0.00683 0.23097 +v 0.08658 0.00644 0.23557 +v 0.08515 0.00622 0.23560 +v 0.07504 0.00444 0.23862 +v 0.07371 0.00444 0.23861 +v 0.07123 0.00425 0.23916 +v 0.08430 0.00623 0.23562 +v 0.10377 0.00489 0.22544 +v 0.10259 0.00537 0.22770 +v 0.10566 0.00509 0.22354 +v 0.10268 0.00610 0.23024 +v 0.10273 0.00547 0.22953 +v 0.10241 0.00800 0.23145 +v 0.08972 0.00781 0.23541 +v 0.08739 0.00789 0.23554 +v 0.06976 0.00402 0.24053 +v 0.07293 0.00467 0.23783 +v 0.10399 0.00491 0.22417 +v 0.10315 0.00492 0.22575 +v 0.10267 0.00515 0.22684 +v 0.10262 0.00536 0.22873 +v 0.10249 0.00762 0.22959 +v 0.08579 0.00725 0.23555 +v 0.10294 0.00500 0.22468 +v 0.10265 0.00513 0.22601 +v 0.10231 0.00545 0.22682 +v 0.10249 0.00585 0.22889 +v 0.10444 0.00495 0.22307 +v 0.10335 0.00489 0.22305 +v 0.10226 0.00612 0.22770 +v 0.10593 0.00517 0.22172 +v 0.10256 0.00506 0.22366 +v 0.10235 0.00535 0.22521 +v 0.10220 0.00573 0.22607 +v 0.10211 0.00577 0.22679 +v 0.10665 0.00514 0.22152 +v 0.10416 0.00486 0.22157 +v 0.10224 0.00551 0.22422 +v 0.10246 0.00511 0.22277 +v 0.10630 0.00509 0.22024 +v 0.10340 0.00477 0.22155 +v 0.10517 0.00504 0.22033 +v 0.10218 0.00523 0.22349 +v 0.10296 0.00485 0.22198 +v 0.10386 0.00494 0.22011 +v 0.10466 0.00503 0.21908 +v 0.10250 0.00514 0.22165 +v 0.10293 0.00493 0.22049 +v 0.10608 0.00504 0.21871 +v 0.10375 0.00511 0.21863 +v 0.10307 0.00513 0.21958 +v 0.10570 0.00497 0.21652 +v 0.10472 0.00504 0.21757 +v 0.10374 0.00486 0.21471 +v 0.10306 0.00526 0.21868 +v 0.10316 0.00525 0.21743 +v 0.10393 0.00500 0.21630 +v 0.10493 0.00487 0.21366 +v 0.04420 0.00417 0.23969 +v 0.03974 0.00405 0.24018 +v 0.04192 0.00428 0.23874 +v 0.03622 0.00358 0.24128 +v 0.04036 0.00433 0.23814 +v 0.03783 0.00394 0.23992 +v 0.03228 0.00371 0.23931 +v 0.04107 0.00439 0.23799 +v 0.03593 0.00360 0.24088 +v 0.03408 0.00373 0.23999 +v 0.04056 0.00448 0.23772 +v -0.09514 0.12335 0.13572 +v -0.09498 0.12339 0.13430 +v -0.09604 0.12314 0.13740 +v -0.09393 0.12361 0.13523 +v -0.09679 0.12328 0.13213 +v -0.09481 0.12327 0.13755 +v -0.09359 0.12348 0.13410 +v -0.09409 0.12340 0.13322 +v -0.09831 0.12301 0.13512 +v -0.09396 0.12332 0.13854 +v -0.09164 0.12323 0.13243 +v -0.09358 0.12343 0.13693 +v -0.09629 0.12325 0.13068 +v -0.09871 0.12294 0.13729 +v -0.09855 0.12308 0.13223 +v -0.09272 0.12348 0.13735 +v -0.09857 0.12312 0.13900 +v -0.09268 0.12351 0.13603 +v -0.09854 0.12302 0.12860 +v -0.09398 0.12326 0.13026 +v -0.09965 0.12289 0.13649 +v -0.09999 0.12301 0.13215 +v -0.09242 0.12353 0.13889 +v -0.09579 0.12329 0.14048 +v -0.09061 0.12327 0.13529 +v -0.09637 0.12322 0.12843 +v -0.09971 0.12285 0.13625 +v -0.10024 0.12315 0.13860 +v -0.10011 0.12283 0.12831 +v -0.09976 0.12298 0.13048 +v -0.09201 0.12349 0.13676 +v -0.09328 0.12336 0.13962 +v -0.09799 0.12319 0.14092 +v -0.09802 0.12319 0.12709 +v -0.10164 0.12298 0.13540 +v -0.10129 0.12305 0.13757 +v -0.10004 0.12330 0.14080 +v -0.10071 0.12278 0.12797 +v -0.10015 0.12290 0.13516 +v -0.10177 0.12296 0.13188 +v -0.09119 0.12367 0.13948 +v -0.09267 0.12348 0.14029 +v -0.09341 0.12346 0.14132 +v -0.09596 0.12324 0.14182 +v -0.08878 0.12330 0.13739 +v -0.10027 0.12301 0.12630 +v -0.10230 0.12299 0.13791 +v -0.10099 0.12321 0.13947 +v -0.10059 0.12280 0.12906 +v -0.08901 0.12354 0.13924 +v -0.09472 0.12335 0.14321 +v -0.09874 0.12320 0.14367 +v -0.09685 0.12316 0.14298 +v -0.09649 0.12339 0.12506 +v -0.10251 0.12296 0.13373 +v -0.10399 0.12293 0.13666 +v -0.10305 0.12311 0.14079 +v -0.10136 0.12289 0.12681 +v -0.10226 0.12282 0.12818 +v -0.10359 0.12275 0.13035 +v -0.08891 0.12365 0.14172 +v -0.09217 0.12354 0.14168 +v -0.10169 0.12319 0.14329 +v -0.08678 0.12338 0.13866 +v -0.09743 0.12333 0.12478 +v -0.10298 0.12298 0.13939 +v -0.10549 0.12293 0.13748 +v -0.10309 0.12313 0.14174 +v -0.10236 0.12289 0.12557 +v -0.09321 0.12344 0.14327 +v -0.10098 0.12326 0.14431 +v -0.09740 0.12345 0.14577 +v -0.09537 0.12336 0.14423 +v -0.09683 0.12333 0.12404 +v -0.10530 0.12279 0.13433 +v -0.10443 0.12313 0.14148 +v -0.10268 0.12291 0.12673 +v -0.10372 0.12277 0.12951 +v -0.09133 0.12362 0.14445 +v -0.08567 0.12359 0.14190 +v -0.09368 0.12346 0.14587 +v -0.10330 0.12305 0.14423 +v -0.10217 0.12322 0.14482 +v -0.09922 0.12339 0.14564 +v -0.10294 0.12282 0.12479 +v -0.10654 0.12284 0.13574 +v -0.10325 0.12288 0.12545 +v -0.10382 0.12297 0.12752 +v -0.10618 0.12274 0.13201 +v -0.10757 0.12277 0.13395 +v -0.08799 0.12373 0.14273 +v -0.09309 0.12348 0.14657 +v -0.10055 0.12343 0.14551 +v -0.09794 0.12353 0.14691 +v -0.10608 0.12302 0.13899 +v -0.10741 0.12277 0.13701 +v -0.10526 0.12326 0.14475 +v -0.10388 0.12299 0.12636 +v -0.10576 0.12288 0.12832 +v -0.08966 0.12382 0.14737 +v -0.08765 0.12377 0.14383 +v -0.09342 0.12365 0.14850 +v -0.10333 0.12321 0.14555 +v -0.10017 0.12346 0.14698 +v -0.09528 0.12366 0.14800 +v -0.10442 0.12319 0.12336 +v -0.10513 0.12317 0.12464 +v -0.10729 0.12330 0.14179 +v -0.10667 0.12290 0.13805 +v -0.10834 0.12288 0.13543 +v -0.10641 0.12339 0.14317 +v -0.10561 0.12316 0.12510 +v -0.10666 0.12302 0.12693 +v -0.10618 0.12280 0.13054 +v -0.10767 0.12285 0.13199 +v -0.08820 0.12378 0.14449 +v -0.08579 0.12409 0.14593 +v -0.09060 0.12385 0.14896 +v -0.10242 0.12335 0.14795 +v -0.10012 0.12347 0.14874 +v -0.09687 0.12364 0.14908 +v -0.10740 0.12317 0.14016 +v -0.10751 0.12297 0.13902 +v -0.10801 0.12273 0.13761 +v -0.10969 0.12301 0.13566 +v -0.10681 0.12284 0.12820 +v -0.10702 0.12276 0.12945 +v -0.10929 0.12287 0.13223 +v -0.08642 0.12416 0.14704 +v -0.09363 0.12363 0.14969 +v -0.09534 0.12368 0.14925 +v -0.10655 0.12314 0.12384 +v -0.10983 0.12339 0.14141 +v -0.10779 0.12293 0.12569 +v -0.10741 0.12280 0.13058 +v -0.10187 0.12346 0.14983 +v -0.09829 0.12356 0.15059 +v -0.09625 0.12359 0.15008 +v -0.10699 0.12319 0.12303 +v -0.10898 0.12316 0.13991 +v -0.10835 0.12280 0.13828 +v -0.11209 0.12318 0.13450 +v -0.10790 0.12296 0.12438 +v -0.10859 0.12264 0.12767 +v -0.10817 0.12254 0.12962 +v -0.10823 0.12273 0.13075 +v -0.09967 0.12353 0.15097 +v -0.11058 0.12326 0.13941 +v -0.11097 0.12318 0.13712 +v -0.11125 0.12287 0.13068 +v -0.10888 0.12299 0.12522 +v -0.10937 0.12278 0.12675 +v -0.10911 0.12264 0.13013 +v -0.10817 0.12326 0.12278 +v -0.11272 0.12361 0.14257 +v -0.11256 0.12350 0.14020 +v -0.11380 0.12355 0.13831 +v -0.11490 0.12320 0.13237 +v -0.10932 0.12335 0.12324 +v -0.10857 0.12255 0.12925 +v -0.11117 0.12284 0.12778 +v -0.10856 0.12250 0.12985 +v -0.11470 0.12345 0.13647 +v -0.11339 0.12294 0.12955 +v -0.11034 0.12350 0.12376 +v -0.11013 0.12303 0.12564 +v -0.11379 0.12356 0.14142 +v -0.11412 0.12353 0.14250 +v -0.11544 0.12345 0.13755 +v -0.11569 0.12308 0.12946 +v -0.11668 0.12351 0.13474 +v -0.11139 0.12310 0.12546 +v -0.11758 0.12345 0.13565 +v -0.11493 0.12305 0.12705 +v -0.11727 0.12318 0.13106 +v -0.11733 0.12326 0.13260 +v -0.11138 0.12326 0.12463 +v -0.11181 0.12341 0.12277 +v -0.11346 0.12302 0.12620 +v -0.11774 0.12326 0.13688 +v -0.11814 0.12323 0.12898 +v -0.11843 0.12344 0.13481 +v -0.11303 0.12332 0.12359 +v -0.11332 0.12318 0.12468 +v -0.11594 0.12334 0.13914 +v -0.11649 0.12328 0.13782 +v -0.12023 0.12334 0.13608 +v -0.11772 0.12338 0.12666 +v -0.12057 0.12310 0.13276 +v -0.12083 0.12317 0.13380 +v -0.11329 0.12327 0.12187 +v -0.11387 0.12333 0.12291 +v -0.11751 0.12312 0.13783 +v -0.11951 0.12328 0.13702 +v -0.11566 0.12324 0.12499 +v -0.11914 0.12339 0.12769 +v -0.12038 0.12328 0.12905 +v -0.11253 0.12315 0.12085 +v -0.11545 0.12334 0.12318 +v -0.11683 0.12316 0.13904 +v -0.12137 0.12342 0.13731 +v -0.12040 0.12339 0.12714 +v -0.11786 0.12349 0.12477 +v -0.12185 0.12314 0.13319 +v -0.12129 0.12328 0.13060 +v -0.12218 0.12310 0.13492 +v -0.11454 0.12324 0.12149 +v -0.11392 0.12290 0.12021 +v -0.11496 0.12334 0.12221 +v -0.12011 0.12353 0.12574 +v -0.11656 0.12342 0.12315 +v -0.12188 0.12317 0.13150 +v -0.12186 0.12318 0.12867 +v -0.11283 0.12271 0.11960 +v -0.11547 0.12325 0.12157 +v -0.12165 0.12331 0.12703 +v -0.11873 0.12351 0.12320 +v -0.12002 0.12372 0.12459 +v -0.12277 0.12300 0.13462 +v -0.12226 0.12314 0.13289 +v -0.12282 0.12303 0.12872 +v -0.11488 0.12306 0.12056 +v -0.11396 0.12239 0.11911 +v -0.11776 0.12330 0.12114 +v -0.12265 0.12306 0.13139 +v -0.11668 0.12318 0.12106 +v -0.11526 0.12265 0.11942 +v -0.11272 0.12222 0.11875 +v -0.12024 0.12372 0.12349 +v -0.11859 0.12335 0.12158 +v -0.11558 0.12294 0.12019 +v -0.11534 0.12235 0.11893 +v -0.11316 0.12190 0.11844 +v -0.11218 0.12147 0.11799 +v -0.11966 0.12353 0.12251 +v -0.11799 0.12305 0.11994 +v -0.11889 0.12305 0.12027 +v -0.11623 0.12259 0.11935 +v -0.11417 0.12197 0.11859 +v -0.12161 0.12367 0.12220 +v -0.11995 0.12333 0.12149 +v -0.11573 0.12188 0.11852 +v -0.11406 0.12139 0.11818 +v -0.11145 0.12126 0.11772 +v -0.12128 0.12341 0.12123 +v -0.11704 0.12250 0.11899 +v -0.11842 0.12281 0.11947 +v -0.12045 0.12309 0.12055 +v -0.11668 0.12200 0.11859 +v -0.11299 0.12082 0.11781 +v -0.11178 0.12145 0.11770 +v -0.12480 0.12338 0.12036 +v -0.12269 0.12332 0.12064 +v -0.11779 0.12250 0.11897 +v -0.11967 0.12253 0.11943 +v -0.11606 0.12106 0.11810 +v -0.11399 0.12022 0.11775 +v -0.11165 0.12094 0.11765 +v -0.12160 0.12311 0.12034 +v -0.11736 0.12214 0.11861 +v -0.11878 0.12232 0.11892 +v -0.12074 0.12259 0.11959 +v -0.11737 0.12151 0.11827 +v -0.12624 0.12327 0.11947 +v -0.12349 0.12303 0.11966 +v -0.12224 0.12278 0.11973 +v -0.11884 0.12183 0.11851 +v -0.11991 0.12162 0.11861 +v -0.12110 0.12232 0.11926 +v -0.11585 0.11967 0.11768 +v -0.11751 0.12082 0.11800 +v -0.12536 0.12303 0.11925 +v -0.12706 0.12337 0.11947 +v -0.12442 0.12300 0.11924 +v -0.11933 0.12128 0.11832 +v -0.12615 0.12286 0.11872 +v -0.12723 0.12307 0.11871 +v -0.12341 0.12247 0.11906 +v -0.12391 0.12308 0.11913 +v -0.12137 0.12188 0.11894 +v -0.12243 0.12210 0.11908 +v -0.11946 0.12086 0.11820 +v -0.12524 0.12231 0.11863 +v -0.12375 0.12293 0.11909 +v -0.12398 0.12303 0.11895 +v -0.12131 0.12117 0.11851 +v -0.11995 0.11940 0.11787 +v -0.12639 0.12256 0.11833 +v -0.12411 0.12273 0.11890 +v -0.12842 0.12296 0.11835 +v -0.12342 0.12150 0.11866 +v -0.12078 0.12046 0.11818 +v -0.12281 0.12100 0.11849 +v -0.11951 0.11653 0.11736 +v -0.12788 0.12247 0.11790 +v -0.12745 0.12169 0.11767 +v -0.12407 0.12199 0.11872 +v -0.11822 0.11563 0.11712 +v -0.12375 0.11843 0.11776 +v -0.12382 0.12003 0.11814 +v -0.12584 0.12065 0.11805 +v -0.12526 0.12112 0.11833 +v -0.12839 0.12274 0.11792 +v -0.11814 0.11384 0.11669 +v -0.12241 0.11219 0.11648 +v -0.12837 0.12176 0.11754 +v -0.12758 0.12025 0.11742 +v -0.12891 0.12276 0.11819 +v -0.12867 0.12241 0.11788 +v -0.12492 0.12041 0.11819 +v -0.11975 0.11351 0.11676 +v -0.12541 0.11932 0.11787 +v -0.12375 0.11397 0.11690 +v -0.12830 0.12097 0.11736 +v -0.12653 0.12006 0.11774 +v -0.12640 0.11788 0.11764 +v -0.12457 0.11148 0.11662 +v -0.12563 0.11567 0.11721 +v -0.12689 0.11884 0.11751 +v -0.12857 0.11993 0.11718 +v -0.12249 0.10949 0.11648 +v -0.12589 0.11387 0.11689 +v -0.12849 0.11862 0.11696 +v -0.12772 0.11777 0.11714 +v -0.12697 0.11656 0.11721 +v -0.12479 0.10856 0.11655 +v -0.12719 0.11349 0.11679 +v -0.12626 0.11484 0.11705 +v -0.12909 0.11994 0.11732 +v -0.12903 0.11881 0.11720 +v -0.12694 0.11506 0.11697 +v -0.12309 0.10616 0.11658 +v -0.12626 0.10929 0.11659 +v -0.12718 0.11169 0.11671 +v -0.12858 0.11752 0.11702 +v -0.12787 0.11624 0.11695 +v -0.12587 0.10619 0.11651 +v -0.12793 0.11483 0.11684 +v -0.12471 0.10375 0.11654 +v -0.12746 0.10702 0.11662 +v -0.12856 0.11576 0.11697 +v -0.12659 0.10400 0.11640 +v -0.12729 0.10513 0.11647 +v -0.12624 0.10236 0.11639 +v -0.12815 0.10538 0.11668 +v -0.12703 0.10005 0.11643 +v -0.12709 0.10289 0.11631 +v -0.12782 0.10365 0.11652 +v -0.12736 0.10202 0.11635 +v -0.12698 0.10241 0.11627 +v -0.12755 0.10049 0.11638 +v -0.12737 0.09705 0.11658 +v -0.12775 0.09925 0.11638 +v -0.12815 0.09999 0.11643 +v -0.12699 0.09568 0.11668 +v -0.12782 0.09807 0.11647 +v -0.12854 0.09887 0.11669 +v -0.12769 0.09602 0.11660 +v -0.12830 0.09663 0.11674 +v -0.12780 0.09463 0.11669 +v -0.12742 0.09320 0.11657 +v -0.12805 0.09224 0.11668 +v -0.12746 0.09242 0.11650 +v -0.12818 0.08969 0.11670 +v -0.12730 0.08906 0.11662 +v -0.12767 0.08841 0.11659 +v -0.12821 0.08800 0.11666 +v -0.12746 0.08714 0.11665 +v -0.12835 0.08645 0.11678 +v -0.12811 0.08387 0.11681 +v -0.12674 0.08352 0.11680 +v -0.12742 0.08255 0.11671 +v -0.12795 0.08179 0.11666 +v -0.12586 0.08220 0.11698 +v -0.12803 0.08044 0.11659 +v -0.12645 0.08101 0.11689 +v -0.12828 0.07950 0.11663 +v -0.12750 0.07988 0.11659 +v -0.12791 0.07966 0.11650 +v -0.12564 0.08010 0.11696 +v -0.12684 0.07905 0.11679 +v -0.12773 0.07900 0.11658 +v -0.12817 0.07834 0.11670 +v -0.12826 0.07689 0.11696 +v -0.12603 0.07822 0.11696 +v -0.12750 0.07788 0.11677 +v -0.12561 0.07624 0.11703 +v -0.12719 0.07664 0.11693 +v -0.12803 0.07520 0.11699 +v -0.12772 0.07596 0.11693 +v -0.12366 0.07014 0.11696 +v -0.12601 0.07321 0.11698 +v -0.12171 0.07103 0.11688 +v -0.12702 0.07414 0.11694 +v -0.12774 0.07357 0.11692 +v -0.12601 0.06996 0.11701 +v -0.12218 0.06730 0.11694 +v -0.12797 0.07298 0.11696 +v -0.12594 0.06756 0.11702 +v -0.12400 0.06643 0.11706 +v -0.12787 0.07145 0.11710 +v -0.12758 0.06667 0.11702 +v -0.12019 0.06651 0.11673 +v -0.12236 0.06580 0.11705 +v -0.12781 0.06874 0.11718 +v -0.12584 0.06548 0.11701 +v -0.11829 0.06777 0.11647 +v -0.12350 0.06502 0.11712 +v -0.12760 0.06466 0.11689 +v -0.12852 0.06739 0.11732 +v -0.12180 0.06236 0.11699 +v -0.11839 0.06485 0.11642 +v -0.12632 0.06353 0.11695 +v -0.12829 0.06557 0.11698 +v -0.12876 0.06617 0.11730 +v -0.12453 0.06321 0.11710 +v -0.11615 0.06591 0.11618 +v -0.12284 0.06249 0.11707 +v -0.12744 0.06327 0.11682 +v -0.12876 0.06464 0.11709 +v -0.11743 0.06188 0.11618 +v -0.11615 0.06413 0.11600 +v -0.12261 0.05973 0.11691 +v -0.12709 0.06041 0.11689 +v -0.12823 0.06322 0.11685 +v -0.12469 0.05993 0.11696 +v -0.12082 0.06100 0.11680 +v -0.11474 0.06446 0.11595 +v -0.12762 0.06118 0.11685 +v -0.12815 0.06198 0.11681 +v -0.11571 0.06304 0.11583 +v -0.11533 0.06368 0.11580 +v -0.11361 0.06387 0.11593 +v -0.12704 0.05709 0.11691 +v -0.12792 0.06015 0.11689 +v -0.11455 0.06308 0.11581 +v -0.12780 0.05811 0.11692 +v -0.12842 0.06109 0.11694 +v -0.12833 0.05850 0.11692 +v -0.12746 0.05550 0.11678 +v -0.12869 0.05888 0.11705 +v -0.12768 0.05368 0.11659 +v -0.12839 0.05583 0.11686 +v -0.12832 0.05476 0.11674 +v -0.12824 0.05539 0.11672 +v -0.12831 0.05241 0.11653 +v -0.12858 0.05534 0.11680 +v -0.05682 0.12400 0.13278 +v -0.05431 0.12382 0.13170 +v -0.05551 0.12388 0.13000 +v -0.05417 0.12399 0.13432 +v -0.05349 0.12371 0.13093 +v -0.05673 0.12383 0.12917 +v -0.05502 0.12405 0.13605 +v -0.05164 0.12363 0.13238 +v -0.05437 0.12386 0.12900 +v -0.05526 0.12391 0.12902 +v -0.05928 0.12408 0.13282 +v -0.05718 0.12394 0.13530 +v -0.05370 0.12408 0.13727 +v -0.05098 0.12385 0.13463 +v -0.05185 0.12356 0.13068 +v -0.05310 0.12367 0.12882 +v -0.05748 0.12364 0.12691 +v -0.06001 0.12387 0.13022 +v -0.06073 0.12409 0.13490 +v -0.05776 0.12393 0.13689 +v -0.05364 0.12423 0.13862 +v -0.05292 0.12401 0.13731 +v -0.05252 0.12398 0.13567 +v -0.04904 0.12364 0.13242 +v -0.04991 0.12360 0.13185 +v -0.05549 0.12356 0.12601 +v -0.05322 0.12360 0.12734 +v -0.06036 0.12402 0.13208 +v -0.05594 0.12413 0.13795 +v -0.05568 0.12438 0.14081 +v -0.05111 0.12401 0.13643 +v -0.04859 0.12378 0.13494 +v -0.05150 0.12356 0.12835 +v -0.06089 0.12377 0.12910 +v -0.05802 0.12344 0.12413 +v -0.06287 0.12367 0.13196 +v -0.06158 0.12405 0.13467 +v -0.06009 0.12389 0.13750 +v -0.05816 0.12387 0.13853 +v -0.05450 0.12446 0.14115 +v -0.05214 0.12412 0.13813 +v -0.04930 0.12370 0.13029 +v -0.04586 0.12359 0.13253 +v -0.05472 0.12353 0.12477 +v -0.05208 0.12350 0.12623 +v -0.06128 0.12374 0.12787 +v -0.06303 0.12378 0.13323 +v -0.05680 0.12413 0.13988 +v -0.05258 0.12429 0.14071 +v -0.05488 0.12456 0.14182 +v -0.05068 0.12418 0.13966 +v -0.04872 0.12389 0.13721 +v -0.04619 0.12370 0.13028 +v -0.04514 0.12373 0.13427 +v -0.04772 0.12359 0.12619 +v -0.05564 0.12353 0.12332 +v -0.06354 0.12360 0.12948 +v -0.06462 0.12367 0.13288 +v -0.06313 0.12385 0.13457 +v -0.06323 0.12388 0.13694 +v -0.05993 0.12398 0.13960 +v -0.05772 0.12421 0.14096 +v -0.05289 0.12437 0.14267 +v -0.05767 0.12446 0.14301 +v -0.05008 0.12407 0.13806 +v -0.04615 0.12379 0.13549 +v -0.04597 0.12372 0.12886 +v -0.04528 0.12363 0.13205 +v -0.05455 0.12351 0.12353 +v -0.05192 0.12356 0.12363 +v -0.06429 0.12358 0.13209 +v -0.06391 0.12374 0.13405 +v -0.06154 0.12389 0.13808 +v -0.04971 0.12404 0.14111 +v -0.05284 0.12437 0.14432 +v -0.05494 0.12460 0.14288 +v -0.04934 0.12417 0.13857 +v -0.04651 0.12394 0.13696 +v -0.04295 0.12388 0.13050 +v -0.04214 0.12388 0.13176 +v -0.04332 0.12381 0.13519 +v -0.04460 0.12374 0.13559 +v -0.04416 0.12360 0.12432 +v -0.05025 0.12355 0.12290 +v -0.06652 0.12368 0.13111 +v -0.06501 0.12372 0.13384 +v -0.06410 0.12366 0.13503 +v -0.06543 0.12429 0.14382 +v -0.06172 0.12417 0.14184 +v -0.04764 0.12383 0.14491 +v -0.04967 0.12418 0.13957 +v -0.05708 0.12454 0.14359 +v -0.04781 0.12407 0.13774 +v -0.04509 0.12389 0.13706 +v -0.04718 0.12414 0.13789 +v -0.04255 0.12385 0.12855 +v -0.04271 0.12379 0.13247 +v -0.04219 0.12374 0.12617 +v -0.04594 0.12355 0.12317 +v -0.05485 0.12340 0.12240 +v -0.05363 0.12328 0.12036 +v -0.05186 0.12337 0.12173 +v -0.04738 0.12350 0.12361 +v -0.06677 0.12377 0.13326 +v -0.06550 0.12377 0.13533 +v -0.06685 0.12402 0.13870 +v -0.06007 0.12457 0.14550 +v -0.04766 0.12398 0.14118 +v -0.05524 0.12454 0.14501 +v -0.04817 0.12428 0.13916 +v -0.04759 0.12426 0.13815 +v -0.04611 0.12412 0.13805 +v -0.04099 0.12390 0.13086 +v -0.04131 0.12398 0.13222 +v -0.04153 0.12397 0.13533 +v -0.04301 0.12393 0.13650 +v -0.04234 0.12363 0.12478 +v -0.04442 0.12352 0.12328 +v -0.04893 0.12314 0.12109 +v -0.06826 0.12372 0.13077 +v -0.06824 0.12367 0.13217 +v -0.06273 0.12434 0.14444 +v -0.06774 0.12430 0.14240 +v -0.04440 0.12398 0.14223 +v -0.06177 0.12469 0.14763 +v -0.04482 0.12400 0.13744 +v -0.04705 0.12426 0.13890 +v -0.04135 0.12383 0.12772 +v -0.04026 0.12377 0.12866 +v -0.04176 0.12363 0.12320 +v -0.04058 0.12363 0.12554 +v -0.04679 0.12325 0.12203 +v -0.04508 0.12324 0.12174 +v -0.05149 0.12314 0.11942 +v -0.05065 0.12318 0.12068 +v -0.06917 0.12367 0.13022 +v -0.06815 0.12383 0.13524 +v -0.06929 0.12364 0.13178 +v -0.06518 0.12438 0.14656 +v -0.07097 0.12426 0.14152 +v -0.06751 0.12454 0.14462 +v -0.06363 0.12448 0.14704 +v -0.04525 0.12422 0.14013 +v -0.04482 0.12389 0.14438 +v -0.04664 0.12418 0.13988 +v -0.04490 0.12423 0.13886 +v -0.04621 0.12420 0.13891 +v -0.04021 0.12401 0.13247 +v -0.04075 0.12383 0.12665 +v -0.03988 0.12379 0.12992 +v -0.03981 0.12411 0.13451 +v -0.04018 0.12407 0.13683 +v -0.03953 0.12354 0.12485 +v -0.04621 0.12336 0.12239 +v -0.04376 0.12347 0.12269 +v -0.04256 0.12357 0.12267 +v -0.05239 0.12309 0.11890 +v -0.04926 0.12310 0.11991 +v -0.04709 0.12304 0.11940 +v -0.07029 0.12405 0.13779 +v -0.06703 0.12457 0.14589 +v -0.06956 0.12443 0.14304 +v -0.06897 0.12467 0.14422 +v -0.04247 0.12414 0.14046 +v -0.04094 0.12418 0.14148 +v -0.06275 0.12469 0.14840 +v -0.03846 0.12391 0.13256 +v -0.03822 0.12363 0.12995 +v -0.04145 0.12416 0.13870 +v -0.03994 0.12362 0.12290 +v -0.03933 0.12355 0.12600 +v -0.04635 0.12317 0.12121 +v -0.04356 0.12305 0.12088 +v -0.04058 0.12356 0.12225 +v -0.05141 0.12299 0.11863 +v -0.04838 0.12305 0.11979 +v -0.07168 0.12381 0.13455 +v -0.07014 0.12368 0.13215 +v -0.06669 0.12450 0.14736 +v -0.06497 0.12439 0.14819 +v -0.07069 0.12446 0.14370 +v -0.07312 0.12423 0.13899 +v -0.06945 0.12495 0.14515 +v -0.06873 0.12501 0.14619 +v -0.06359 0.12459 0.14895 +v -0.06246 0.12461 0.14908 +v -0.03842 0.12349 0.12834 +v -0.03822 0.12408 0.13710 +v -0.03861 0.12362 0.12363 +v -0.03684 0.12337 0.12575 +v -0.04509 0.12308 0.12035 +v -0.04193 0.12326 0.12113 +v -0.05221 0.12265 0.11784 +v -0.05015 0.12307 0.11876 +v -0.04893 0.12307 0.11952 +v -0.04524 0.12307 0.11933 +v -0.04788 0.12282 0.11860 +v -0.07056 0.12368 0.13014 +v -0.06712 0.12455 0.14786 +v -0.06593 0.12435 0.14759 +v -0.07009 0.12468 0.14444 +v -0.07186 0.12443 0.14558 +v -0.07338 0.12428 0.14127 +v -0.03975 0.12416 0.13926 +v -0.03641 0.12367 0.13186 +v -0.03765 0.12337 0.12718 +v -0.03673 0.12401 0.13793 +v -0.03694 0.12366 0.12212 +v -0.04916 0.12298 0.11894 +v -0.04598 0.12294 0.11844 +v -0.07257 0.12355 0.12881 +v -0.07191 0.12365 0.13115 +v -0.07521 0.12412 0.13828 +v -0.06600 0.12439 0.14852 +v -0.06456 0.12442 0.14923 +v -0.07068 0.12474 0.14549 +v -0.07339 0.12422 0.14420 +v -0.07472 0.12415 0.14347 +v -0.06995 0.12502 0.14586 +v -0.06923 0.12506 0.14642 +v -0.03805 0.12418 0.14054 +v -0.06384 0.12448 0.14986 +v -0.03455 0.12387 0.13756 +v -0.03535 0.12360 0.12363 +v -0.03400 0.12338 0.12702 +v -0.04899 0.12265 0.11797 +v -0.07508 0.12340 0.12979 +v -0.07616 0.12366 0.13473 +v -0.06573 0.12433 0.14933 +v -0.07136 0.12459 0.14721 +v -0.07282 0.12431 0.14643 +v -0.07475 0.12421 0.14136 +v -0.06827 0.12470 0.14846 +v -0.03248 0.12357 0.13260 +v -0.03456 0.12408 0.14023 +v -0.03566 0.12358 0.12241 +v -0.03526 0.12342 0.12498 +v -0.03034 0.12351 0.13104 +v -0.07692 0.12388 0.13699 +v -0.06474 0.12425 0.14983 +v -0.07559 0.12411 0.14490 +v -0.07411 0.12421 0.14654 +v -0.07598 0.12404 0.14236 +v -0.06968 0.12496 0.14706 +v -0.06955 0.12482 0.14789 +v -0.03448 0.12361 0.12335 +v -0.03406 0.12347 0.12490 +v -0.02936 0.12347 0.12902 +v -0.07833 0.12368 0.13550 +v -0.07596 0.12407 0.13806 +v -0.07050 0.12473 0.14764 +v -0.07173 0.12453 0.14827 +v -0.07665 0.12393 0.14378 +v -0.07327 0.12452 0.14903 +v -0.06971 0.12466 0.15001 +v -0.06977 0.12472 0.14883 +v -0.02849 0.12364 0.13047 +v -0.02990 0.12342 0.12510 +v -0.03214 0.12345 0.12443 +v -0.07811 0.12362 0.13322 +v -0.08057 0.12353 0.13616 +v -0.07827 0.12381 0.13848 +v -0.07080 0.12464 0.14963 +v -0.07697 0.12419 0.14552 +v -0.07655 0.12432 0.14711 +v -0.07567 0.12447 0.14881 +v -0.07696 0.12397 0.14253 +v -0.02849 0.12366 0.13200 +v -0.02698 0.12375 0.12898 +v -0.02847 0.12349 0.12722 +v -0.07911 0.12353 0.13168 +v -0.07946 0.12368 0.13314 +v -0.08101 0.12352 0.13386 +v -0.07930 0.12377 0.13867 +v -0.07771 0.12402 0.14348 +v -0.07473 0.12456 0.14956 +v -0.02664 0.12351 0.12649 +v -0.08362 0.12346 0.13401 +v -0.08169 0.12366 0.13918 +v -0.07268 0.12458 0.14942 +v -0.07898 0.12434 0.14547 +v -0.07797 0.12440 0.14834 +v -0.07393 0.12453 0.14944 +v -0.07553 0.12448 0.14948 +v -0.07891 0.12386 0.14129 +v -0.07088 0.12453 0.15020 +v -0.02648 0.12371 0.12802 +v -0.02579 0.12383 0.12961 +v -0.02429 0.12353 0.12588 +v -0.08024 0.12348 0.13192 +v -0.08421 0.12348 0.13530 +v -0.08231 0.12341 0.13233 +v -0.08214 0.12359 0.13812 +v -0.08039 0.12385 0.14027 +v -0.07306 0.12448 0.14987 +v -0.07198 0.12449 0.15014 +v -0.07944 0.12413 0.14343 +v -0.07416 0.12436 0.15014 +v -0.07553 0.12432 0.15018 +v -0.02562 0.12370 0.12784 +v -0.02435 0.12392 0.13081 +v -0.02707 0.12360 0.12372 +v -0.02522 0.12355 0.12649 +v -0.08344 0.12334 0.13948 +v -0.08148 0.12386 0.14059 +v -0.08094 0.12414 0.14372 +v -0.08079 0.12410 0.14150 +v -0.02384 0.12378 0.13001 +v -0.02369 0.12363 0.12457 +v -0.02408 0.12352 0.12716 +v -0.08326 0.12338 0.14024 +v -0.08443 0.12338 0.13830 +v -0.08060 0.12415 0.14253 +v -0.08183 0.12428 0.14665 +v -0.02349 0.12356 0.12877 +v -0.02507 0.12372 0.12314 +v -0.02194 0.12338 0.12610 +v -0.02217 0.12328 0.12751 +v -0.02633 0.12369 0.12304 +v -0.08451 0.12334 0.13982 +v -0.08139 0.12421 0.14175 +v -0.08264 0.12364 0.14108 +v -0.08145 0.12413 0.14265 +v -0.02297 0.12382 0.12303 +v -0.02174 0.12380 0.12292 +v -0.02255 0.12333 0.12828 +v -0.08555 0.12332 0.13737 +v -0.08425 0.12341 0.14103 +v -0.08337 0.12366 0.14196 +v -0.08223 0.12403 0.14355 +v -0.08409 0.12396 0.14418 +v -0.02213 0.12343 0.12891 +v -0.02047 0.12333 0.12724 +v -0.02016 0.12366 0.12417 +v -0.02115 0.12332 0.12827 +v -0.08216 0.12397 0.14222 +v -0.02098 0.12347 0.12964 +v -0.02212 0.12366 0.12182 +v -0.02136 0.12381 0.12268 +v -0.02039 0.12332 0.12784 +v -0.01888 0.12357 0.12607 +v -0.01913 0.12353 0.13014 +v -0.01890 0.12347 0.12892 +v -0.01856 0.12368 0.12445 +v -0.01677 0.12367 0.12712 +v 0.09030 0.12482 0.12085 +v 0.09155 0.12479 0.12068 +v 0.09122 0.12464 0.11912 +v 0.09295 0.12468 0.12019 +v 0.08915 0.12487 0.12007 +v 0.09661 0.12447 0.11859 +v 0.08889 0.12471 0.11829 +v 0.09439 0.12453 0.12331 +v 0.09573 0.12453 0.12050 +v 0.09611 0.12439 0.11752 +v 0.09082 0.12440 0.11765 +v 0.08749 0.12483 0.11883 +v 0.09756 0.12440 0.12198 +v 0.09443 0.12429 0.11723 +v 0.09727 0.12450 0.11761 +v 0.09298 0.12436 0.11770 +v 0.08727 0.12448 0.11680 +v 0.09515 0.12458 0.12600 +v 0.09696 0.12451 0.12295 +v 0.09735 0.12438 0.12000 +v 0.09560 0.12425 0.11653 +v 0.09660 0.12444 0.11645 +v 0.09091 0.12406 0.11660 +v 0.08885 0.12424 0.11651 +v 0.09662 0.12453 0.12501 +v 0.09734 0.12449 0.12439 +v 0.09796 0.12425 0.12038 +v 0.09488 0.12401 0.11606 +v 0.09367 0.12403 0.11657 +v 0.09818 0.12446 0.11780 +v 0.09728 0.12463 0.11621 +v 0.09249 0.12391 0.11647 +v 0.08616 0.12461 0.11749 +v 0.08712 0.12426 0.11607 +v 0.09738 0.12445 0.12683 +v 0.09661 0.12452 0.12619 +v 0.09806 0.12425 0.12380 +v 0.09811 0.12419 0.12194 +v 0.09819 0.12427 0.11960 +v 0.09618 0.12436 0.11565 +v 0.09544 0.12401 0.11551 +v 0.09841 0.12433 0.11885 +v 0.09785 0.12461 0.11686 +v 0.09673 0.12458 0.11523 +v 0.08855 0.12377 0.11563 +v 0.09084 0.12358 0.11581 +v 0.08587 0.12454 0.11656 +v 0.08601 0.12445 0.11619 +v 0.09755 0.12438 0.12609 +v 0.09776 0.12435 0.12516 +v 0.09780 0.12437 0.12444 +v 0.09838 0.12406 0.12084 +v 0.09859 0.12395 0.12004 +v 0.09422 0.12379 0.11585 +v 0.09478 0.12370 0.11533 +v 0.09330 0.12356 0.11576 +v 0.09861 0.12423 0.11825 +v 0.09829 0.12447 0.11680 +v 0.09799 0.12468 0.11583 +v 0.09753 0.12473 0.11548 +v 0.09213 0.12336 0.11564 +v 0.08534 0.12452 0.11734 +v 0.08663 0.12393 0.11550 +v 0.09827 0.12403 0.12894 +v 0.09854 0.12390 0.12343 +v 0.09845 0.12398 0.12463 +v 0.09860 0.12385 0.12145 +v 0.09858 0.12415 0.11946 +v 0.09587 0.12417 0.11503 +v 0.09630 0.12450 0.11489 +v 0.09535 0.12365 0.11479 +v 0.09853 0.12425 0.11754 +v 0.09869 0.12409 0.11887 +v 0.09719 0.12458 0.11491 +v 0.09127 0.12284 0.11507 +v 0.08524 0.12437 0.11624 +v 0.08551 0.12430 0.11598 +v 0.08712 0.12339 0.11492 +v 0.09812 0.12419 0.12681 +v 0.09880 0.12384 0.12789 +v 0.09792 0.12423 0.13049 +v 0.09821 0.12419 0.12559 +v 0.09847 0.12401 0.12397 +v 0.09866 0.12374 0.12244 +v 0.09873 0.12374 0.12076 +v 0.09873 0.12396 0.11945 +v 0.09648 0.12443 0.11473 +v 0.09413 0.12337 0.11521 +v 0.09496 0.12338 0.11470 +v 0.09322 0.12311 0.11529 +v 0.09875 0.12381 0.11804 +v 0.09874 0.12409 0.11842 +v 0.09834 0.12437 0.11599 +v 0.09856 0.12397 0.11672 +v 0.09786 0.12475 0.11510 +v 0.09230 0.12285 0.11519 +v 0.08475 0.12434 0.11719 +v 0.08518 0.12410 0.11579 +v 0.08517 0.12375 0.11551 +v 0.09841 0.12400 0.12604 +v 0.09896 0.12363 0.12847 +v 0.09848 0.12400 0.13044 +v 0.09793 0.12431 0.13164 +v 0.09874 0.12369 0.12402 +v 0.09901 0.12321 0.12335 +v 0.09886 0.12354 0.12175 +v 0.09893 0.12331 0.12105 +v 0.09885 0.12351 0.11926 +v 0.09607 0.12408 0.11460 +v 0.09615 0.12438 0.11481 +v 0.09522 0.12309 0.11444 +v 0.09822 0.12447 0.11517 +v 0.09812 0.12474 0.11518 +v 0.09669 0.12413 0.11443 +v 0.09783 0.12452 0.11467 +v 0.08809 0.12289 0.11458 +v 0.09226 0.12222 0.11481 +v 0.08430 0.12393 0.11617 +v 0.08396 0.12413 0.11718 +v 0.08595 0.12310 0.11491 +v 0.09894 0.12370 0.12731 +v 0.09896 0.12366 0.12955 +v 0.09911 0.12347 0.12723 +v 0.09873 0.12373 0.12530 +v 0.09918 0.12301 0.12238 +v 0.09906 0.12305 0.12472 +v 0.09906 0.12314 0.12195 +v 0.09609 0.12350 0.11428 +v 0.09421 0.12294 0.11481 +v 0.09334 0.12255 0.11490 +v 0.09871 0.12330 0.11703 +v 0.09835 0.12390 0.11558 +v 0.09813 0.12468 0.11487 +v 0.09734 0.12421 0.11445 +v 0.08975 0.12260 0.11462 +v 0.08755 0.12240 0.11431 +v 0.09141 0.12206 0.11458 +v 0.08433 0.12287 0.11504 +v 0.09908 0.12319 0.12624 +v 0.09924 0.12335 0.12901 +v 0.09935 0.12296 0.12860 +v 0.09915 0.12345 0.13033 +v 0.09877 0.12392 0.13130 +v 0.09742 0.12440 0.13203 +v 0.09879 0.12366 0.12488 +v 0.09945 0.12176 0.12377 +v 0.09906 0.12239 0.11991 +v 0.09466 0.12235 0.11449 +v 0.09596 0.12264 0.11420 +v 0.09854 0.12336 0.11613 +v 0.09885 0.12270 0.11801 +v 0.09785 0.12390 0.11467 +v 0.09698 0.12362 0.11424 +v 0.09812 0.12447 0.11471 +v 0.08880 0.12227 0.11428 +v 0.09082 0.12225 0.11452 +v 0.09159 0.12116 0.11443 +v 0.09361 0.12108 0.11449 +v 0.08327 0.12379 0.11617 +v 0.08575 0.12222 0.11459 +v 0.09935 0.12327 0.12978 +v 0.09938 0.12276 0.12741 +v 0.09829 0.12414 0.13233 +v 0.09930 0.12243 0.12222 +v 0.09656 0.12312 0.11412 +v 0.09862 0.12217 0.11633 +v 0.09819 0.12299 0.11526 +v 0.09090 0.12180 0.11434 +v 0.08850 0.12165 0.11416 +v 0.08329 0.12345 0.11563 +v 0.08259 0.12366 0.11623 +v 0.08457 0.12167 0.11449 +v 0.08741 0.12179 0.11428 +v 0.09947 0.12294 0.12968 +v 0.09925 0.12338 0.13140 +v 0.09897 0.12367 0.13231 +v 0.09803 0.12425 0.13313 +v 0.09968 0.12039 0.12283 +v 0.09939 0.12131 0.12127 +v 0.09890 0.12153 0.11784 +v 0.09606 0.12105 0.11427 +v 0.09720 0.12257 0.11439 +v 0.09103 0.12138 0.11427 +v 0.09154 0.11903 0.11448 +v 0.08140 0.12378 0.11695 +v 0.08287 0.12282 0.11499 +v 0.08624 0.12072 0.11433 +v 0.09951 0.12272 0.13061 +v 0.09861 0.12390 0.13328 +v 0.09792 0.12423 0.13365 +v 0.09925 0.12063 0.11952 +v 0.09820 0.12155 0.11510 +v 0.09859 0.12079 0.11561 +v 0.09038 0.12118 0.11426 +v 0.08862 0.12073 0.11426 +v 0.09054 0.11967 0.11441 +v 0.09399 0.11940 0.11432 +v 0.08210 0.12334 0.11552 +v 0.08171 0.12345 0.11586 +v 0.08376 0.12045 0.11425 +v 0.08206 0.12206 0.11451 +v 0.09938 0.12308 0.13219 +v 0.09954 0.12280 0.13150 +v 0.09903 0.12338 0.13330 +v 0.09804 0.12412 0.13443 +v 0.10006 0.11769 0.12095 +v 0.09977 0.11948 0.12160 +v 0.09964 0.11979 0.12077 +v 0.09892 0.11975 0.11756 +v 0.09739 0.12143 0.11446 +v 0.09853 0.12012 0.11512 +v 0.09116 0.11832 0.11440 +v 0.09244 0.11847 0.11438 +v 0.09553 0.11908 0.11419 +v 0.07737 0.12410 0.11760 +v 0.08060 0.12350 0.11605 +v 0.08162 0.12306 0.11518 +v 0.08582 0.11931 0.11429 +v 0.08805 0.11899 0.11435 +v 0.09958 0.12195 0.13132 +v 0.09860 0.12381 0.13419 +v 0.09834 0.12407 0.13391 +v 0.09959 0.11924 0.11973 +v 0.09868 0.11958 0.11632 +v 0.09914 0.11908 0.11811 +v 0.09777 0.12046 0.11455 +v 0.09847 0.12085 0.11513 +v 0.08985 0.11810 0.11435 +v 0.09365 0.11773 0.11414 +v 0.09697 0.11969 0.11426 +v 0.07844 0.12379 0.11670 +v 0.08043 0.12311 0.11520 +v 0.08317 0.11759 0.11402 +v 0.08154 0.12116 0.11428 +v 0.08103 0.12258 0.11458 +v 0.09937 0.12238 0.13302 +v 0.09955 0.12261 0.13200 +v 0.09897 0.12318 0.13471 +v 0.09843 0.12383 0.13506 +v 0.10007 0.11678 0.12006 +v 0.10003 0.11799 0.12011 +v 0.09857 0.11796 0.11577 +v 0.09889 0.11748 0.11683 +v 0.09835 0.12055 0.11486 +v 0.09850 0.11925 0.11527 +v 0.09008 0.11652 0.11409 +v 0.09705 0.11852 0.11427 +v 0.09563 0.11723 0.11410 +v 0.07529 0.12448 0.11873 +v 0.07757 0.12366 0.11649 +v 0.07971 0.12341 0.11595 +v 0.08431 0.11707 0.11409 +v 0.08744 0.11746 0.11430 +v 0.08100 0.12202 0.11434 +v 0.09954 0.12082 0.13212 +v 0.09969 0.11645 0.11861 +v 0.09785 0.11932 0.11447 +v 0.09828 0.11969 0.11478 +v 0.08914 0.11624 0.11414 +v 0.07408 0.12432 0.11796 +v 0.07633 0.12388 0.11688 +v 0.07959 0.12284 0.11520 +v 0.08262 0.11698 0.11412 +v 0.08110 0.12048 0.11429 +v 0.08034 0.12143 0.11445 +v 0.08068 0.12241 0.11439 +v 0.08036 0.12260 0.11462 +v 0.09930 0.12201 0.13464 +v 0.09870 0.12360 0.13541 +v 0.09993 0.11734 0.11947 +v 0.09845 0.11844 0.11521 +v 0.09892 0.11586 0.11674 +v 0.09834 0.11892 0.11482 +v 0.09439 0.11578 0.11394 +v 0.09807 0.11843 0.11466 +v 0.09742 0.11730 0.11441 +v 0.07710 0.12332 0.11608 +v 0.07839 0.12305 0.11570 +v 0.08586 0.11583 0.11400 +v 0.08110 0.11815 0.11429 +v 0.08045 0.12220 0.11440 +v 0.09915 0.12266 0.13519 +v 0.09885 0.12337 0.13563 +v 0.09993 0.11410 0.11900 +v 0.09828 0.11748 0.11502 +v 0.09855 0.11623 0.11553 +v 0.09940 0.11375 0.11766 +v 0.08764 0.11604 0.11419 +v 0.09678 0.11558 0.11427 +v 0.07530 0.12378 0.11673 +v 0.07598 0.12368 0.11650 +v 0.07852 0.12222 0.11518 +v 0.08000 0.12227 0.11463 +v 0.08093 0.11649 0.11446 +v 0.09901 0.12304 0.13593 +v 0.09920 0.12230 0.13594 +v 0.09888 0.12332 0.13635 +v 0.09838 0.11664 0.11510 +v 0.09844 0.11543 0.11534 +v 0.09867 0.11480 0.11594 +v 0.09792 0.11647 0.11465 +v 0.07286 0.12421 0.11720 +v 0.07404 0.12374 0.11666 +v 0.07544 0.12300 0.11579 +v 0.07747 0.12270 0.11557 +v 0.07946 0.12199 0.11481 +v 0.07954 0.11693 0.11477 +v 0.07903 0.12090 0.11483 +v 0.10005 0.11217 0.11899 +v 0.09825 0.11598 0.11493 +v 0.09888 0.11199 0.11644 +v 0.09666 0.11392 0.11421 +v 0.09782 0.11583 0.11457 +v 0.07184 0.12445 0.11715 +v 0.07515 0.12341 0.11622 +v 0.07667 0.12281 0.11562 +v 0.07745 0.12146 0.11519 +v 0.07934 0.11884 0.11478 +v 0.09911 0.12294 0.13681 +v 0.09796 0.11528 0.11475 +v 0.09833 0.11454 0.11519 +v 0.09969 0.11146 0.11812 +v 0.09849 0.11329 0.11553 +v 0.09767 0.11434 0.11461 +v 0.07291 0.12384 0.11650 +v 0.07199 0.12411 0.11660 +v 0.07437 0.12296 0.11582 +v 0.07615 0.12247 0.11535 +v 0.07679 0.12231 0.11534 +v 0.07878 0.11602 0.11488 +v 0.07879 0.11771 0.11505 +v 0.07790 0.11936 0.11519 +v 0.09849 0.11409 0.11540 +v 0.09881 0.11004 0.11591 +v 0.09920 0.11069 0.11693 +v 0.09751 0.11312 0.11452 +v 0.07334 0.12338 0.11605 +v 0.07174 0.12437 0.11681 +v 0.07135 0.12441 0.11689 +v 0.07570 0.12232 0.11525 +v 0.07503 0.12223 0.11537 +v 0.07635 0.12180 0.11517 +v 0.07788 0.11503 0.11478 +v 0.07823 0.11676 0.11509 +v 0.07827 0.11803 0.11529 +v 0.09981 0.10941 0.11829 +v 0.09828 0.11351 0.11516 +v 0.09817 0.11252 0.11496 +v 0.09766 0.11160 0.11456 +v 0.07049 0.12439 0.11680 +v 0.07353 0.12281 0.11559 +v 0.07596 0.12207 0.11514 +v 0.07409 0.12211 0.11531 +v 0.07629 0.12045 0.11520 +v 0.07772 0.11845 0.11539 +v 0.09865 0.10616 0.11511 +v 0.09842 0.11038 0.11519 +v 0.09897 0.10551 0.11610 +v 0.07126 0.12332 0.11555 +v 0.07071 0.12405 0.11625 +v 0.07459 0.12077 0.11516 +v 0.07693 0.11841 0.11542 +v 0.07830 0.11429 0.11459 +v 0.07667 0.11640 0.11516 +v 0.07751 0.11776 0.11539 +v 0.09854 0.10747 0.11499 +v 0.09836 0.10850 0.11488 +v 0.09795 0.10929 0.11452 +v 0.07298 0.12227 0.11518 +v 0.07371 0.12157 0.11508 +v 0.07557 0.11886 0.11537 +v 0.07771 0.11417 0.11457 +v 0.07695 0.11462 0.11463 +v 0.09831 0.10628 0.11463 +v 0.09849 0.10546 0.11501 +v 0.09911 0.10433 0.11650 +v 0.09771 0.10837 0.11433 +v 0.06912 0.12337 0.11551 +v 0.06906 0.12392 0.11608 +v 0.07097 0.12286 0.11521 +v 0.07286 0.12113 0.11495 +v 0.07579 0.11756 0.11539 +v 0.07795 0.11387 0.11431 +v 0.07554 0.11603 0.11507 +v 0.09815 0.10767 0.11454 +v 0.09868 0.10442 0.11545 +v 0.06800 0.12394 0.11607 +v 0.07153 0.12205 0.11491 +v 0.07270 0.11810 0.11503 +v 0.07448 0.11896 0.11528 +v 0.07526 0.11806 0.11546 +v 0.07779 0.11339 0.11403 +v 0.07718 0.11395 0.11437 +v 0.07496 0.11728 0.11538 +v 0.07571 0.11450 0.11452 +v 0.09765 0.10722 0.11423 +v 0.09872 0.10360 0.11523 +v 0.06939 0.12276 0.11512 +v 0.06852 0.12372 0.11577 +v 0.06717 0.12424 0.11651 +v 0.07027 0.12244 0.11500 +v 0.07119 0.12038 0.11476 +v 0.07440 0.11673 0.11519 +v 0.09897 0.10230 0.11576 +v 0.06850 0.12290 0.11514 +v 0.06745 0.12325 0.11536 +v 0.07162 0.12150 0.11481 +v 0.07057 0.12148 0.11478 +v 0.07388 0.11784 0.11526 +v 0.07189 0.11838 0.11493 +v 0.07655 0.11303 0.11411 +v 0.07386 0.11581 0.11480 +v 0.09853 0.10384 0.11484 +v 0.09877 0.10285 0.11524 +v 0.06965 0.12201 0.11485 +v 0.06882 0.12220 0.11483 +v 0.07353 0.11703 0.11507 +v 0.07169 0.11734 0.11488 +v 0.07042 0.11844 0.11488 +v 0.07669 0.11163 0.11402 +v 0.07458 0.11325 0.11430 +v 0.07286 0.11470 0.11454 +v 0.09847 0.10351 0.11475 +v 0.09859 0.10204 0.11499 +v 0.09866 0.10321 0.11496 +v 0.06815 0.12211 0.11467 +v 0.06922 0.12111 0.11473 +v 0.06975 0.11948 0.11484 +v 0.07913 0.10856 0.11428 +v 0.09874 0.10105 0.11502 +v 0.09846 0.10284 0.11474 +v 0.06694 0.12258 0.11494 +v 0.07001 0.11755 0.11490 +v 0.06849 0.11799 0.11508 +v 0.07371 0.11217 0.11437 +v 0.07638 0.10910 0.11440 +v 0.07256 0.11319 0.11446 +v 0.06737 0.12200 0.11469 +v 0.06740 0.12119 0.11465 +v 0.06807 0.11992 0.11485 +v 0.07482 0.11033 0.11436 +v 0.07645 0.10714 0.11469 +v 0.07105 0.11549 0.11469 +v 0.09884 0.10052 0.11491 +v 0.06658 0.12223 0.11475 +v 0.06876 0.11619 0.11492 +v 0.07196 0.11237 0.11455 +v 0.07219 0.11112 0.11460 +v 0.07803 0.10536 0.11469 +v 0.07510 0.10791 0.11453 +v 0.07453 0.10916 0.11444 +v 0.06991 0.11320 0.11477 +v 0.06655 0.12170 0.11464 +v 0.07316 0.11055 0.11451 +v 0.07608 0.10582 0.11478 +v 0.07515 0.10685 0.11465 +v 0.07135 0.11150 0.11458 +v 0.07362 0.10891 0.11438 +v 0.07807 0.10379 0.11474 +v 0.07564 0.10646 0.11481 +v 0.07637 0.10463 0.11463 +v 0.07419 0.10822 0.11438 +v 0.07440 0.10729 0.11439 +v 0.06962 0.11239 0.11469 +v 0.07067 0.10989 0.11433 +v 0.07713 0.10387 0.11463 +v 0.07500 0.10591 0.11464 +v 0.07527 0.10528 0.11456 +v 0.07445 0.10628 0.11441 +v 0.06706 0.11308 0.11481 +v 0.07256 0.10825 0.11412 +v 0.07434 0.10462 0.11407 +v 0.07366 0.10690 0.11413 +v 0.06754 0.11197 0.11463 +v 0.06889 0.11153 0.11452 +v 0.07044 0.10878 0.11422 +v 0.07450 0.10543 0.11434 +v 0.07519 0.10389 0.11404 +v 0.07568 0.10288 0.11391 +v 0.07263 0.10737 0.11396 +v 0.07360 0.10566 0.11408 +v 0.07449 0.10249 0.11356 +v 0.07539 0.10141 0.11363 +v 0.07362 0.10442 0.11388 +v 0.07202 0.10499 0.11390 +v 0.07305 0.10344 0.11364 +v 0.07437 0.09985 0.11335 +v 0.07410 0.10133 0.11334 +v 0.07364 0.10236 0.11343 +v 0.07623 0.09656 0.11384 +v 0.07201 0.10312 0.11369 +v 0.07304 0.10149 0.11326 +v 0.07306 0.10002 0.11311 +v 0.07462 0.09575 0.11364 +v 0.07170 0.10203 0.11360 +v 0.07303 0.09818 0.11325 +v 0.07716 0.09541 0.11406 +v 0.07587 0.09358 0.11418 +v 0.07207 0.09853 0.11322 +v 0.07258 0.10085 0.11322 +v 0.07730 0.09415 0.11417 +v 0.07409 0.09312 0.11371 +v 0.07273 0.09564 0.11335 +v 0.07150 0.09881 0.11331 +v 0.07557 0.09242 0.11407 +v 0.07134 0.09499 0.11333 +v 0.07674 0.09283 0.11420 +v 0.07244 0.09239 0.11357 +v 0.07426 0.09156 0.11375 +v 0.07582 0.09093 0.11389 +v 0.07008 0.09267 0.11357 +v 0.07217 0.09032 0.11379 +v 0.07454 0.08971 0.11380 +v 0.06651 0.08873 0.11429 +v 0.06936 0.08938 0.11405 +v 0.07146 0.08733 0.11411 +v 0.06451 0.09039 0.11417 +v 0.06839 0.08677 0.11435 +v 0.06979 0.08791 0.11422 +v 0.06414 0.08775 0.11444 +v 0.06574 0.08609 0.11442 +v 0.07104 0.08431 0.11426 +v 0.06306 0.08904 0.11438 +v 0.06739 0.08485 0.11441 +v 0.06933 0.08466 0.11427 +v 0.07100 0.08322 0.11425 +v 0.06446 0.08617 0.11448 +v 0.06279 0.08690 0.11442 +v 0.06611 0.08471 0.11425 +v 0.07020 0.08329 0.11421 +v 0.07003 0.08381 0.11428 +v 0.06454 0.08542 0.11431 +v 0.06362 0.08591 0.11434 +v 0.06511 0.08462 0.11397 +v 0.06711 0.08401 0.11420 +v 0.06736 0.08432 0.11433 +v 0.07131 0.08195 0.11391 +v 0.06282 0.08587 0.11430 +v 0.06851 0.08326 0.11397 +v 0.07004 0.08246 0.11390 +v 0.06392 0.08488 0.11395 +v 0.06281 0.08515 0.11397 +v -0.03282 0.08275 0.20629 +v -0.03433 0.08162 0.20600 +v -0.03399 0.08238 0.20686 +v -0.03305 0.08187 0.20570 +v -0.03569 0.08154 0.20669 +v -0.03300 0.08313 0.20710 +v -0.03449 0.08095 0.20559 +v -0.03135 0.08269 0.20549 +v -0.03574 0.08125 0.20634 +v -0.03516 0.08205 0.20762 +v -0.03208 0.08364 0.20687 +v -0.03326 0.08307 0.20811 +v -0.03533 0.08069 0.20578 +v -0.03284 0.08075 0.20518 +v -0.03164 0.08326 0.20601 +v -0.03201 0.08128 0.20512 +v -0.03659 0.08097 0.20683 +v -0.03621 0.08150 0.20745 +v -0.03420 0.08257 0.20830 +v -0.03217 0.08382 0.20762 +v -0.03421 0.08014 0.20527 +v -0.03051 0.08350 0.20564 +v -0.02964 0.08245 0.20488 +v -0.03664 0.08022 0.20614 +v -0.03640 0.08178 0.20897 +v -0.03495 0.08232 0.20905 +v -0.03128 0.08426 0.20735 +v -0.03084 0.08410 0.20644 +v -0.03212 0.08378 0.20851 +v -0.03285 0.08326 0.20953 +v -0.03564 0.07939 0.20535 +v -0.03220 0.07960 0.20478 +v -0.03090 0.08033 0.20456 +v -0.03705 0.08115 0.20773 +v -0.03752 0.08054 0.20725 +v -0.03408 0.08268 0.21009 +v -0.03152 0.08422 0.20803 +v -0.03414 0.07817 0.20480 +v -0.03012 0.08412 0.20592 +v -0.02931 0.08390 0.20547 +v -0.02928 0.08060 0.20435 +v -0.03790 0.07974 0.20643 +v -0.03733 0.07903 0.20553 +v -0.03635 0.08234 0.21121 +v -0.03576 0.08225 0.21006 +v -0.03079 0.08453 0.20804 +v -0.03025 0.08466 0.20724 +v -0.03120 0.08384 0.20995 +v -0.03127 0.08424 0.20868 +v -0.03287 0.08328 0.21093 +v -0.03624 0.07782 0.20486 +v -0.03254 0.07692 0.20444 +v -0.03088 0.07812 0.20434 +v -0.02952 0.08462 0.20633 +v -0.02854 0.08336 0.20493 +v -0.02978 0.07923 0.20425 +v -0.02851 0.08194 0.20442 +v -0.03830 0.08068 0.20879 +v -0.03862 0.07993 0.20743 +v -0.03682 0.08208 0.21102 +v -0.03392 0.08286 0.21098 +v -0.03464 0.07561 0.20427 +v -0.03326 0.07550 0.20421 +v -0.02832 0.08391 0.20518 +v -0.02800 0.07812 0.20408 +v -0.02725 0.08143 0.20426 +v -0.03794 0.08132 0.21042 +v -0.03832 0.07917 0.20595 +v -0.03889 0.07933 0.20660 +v -0.03812 0.07780 0.20494 +v -0.03623 0.08244 0.21163 +v -0.03512 0.08282 0.21175 +v -0.03052 0.08446 0.20883 +v -0.02975 0.08481 0.20815 +v -0.02906 0.08507 0.20729 +v -0.03169 0.08352 0.21165 +v -0.03384 0.08315 0.21162 +v -0.03869 0.07647 0.20456 +v -0.03071 0.07473 0.20394 +v -0.02839 0.08459 0.20571 +v -0.02671 0.08282 0.20444 +v -0.02869 0.08418 0.20542 +v -0.02716 0.08448 0.20527 +v -0.03885 0.08092 0.21080 +v -0.03968 0.08022 0.20959 +v -0.03839 0.07866 0.20548 +v -0.04023 0.07880 0.20700 +v -0.03810 0.08182 0.21201 +v -0.03689 0.08226 0.21203 +v -0.02829 0.08522 0.20655 +v -0.03294 0.08351 0.21199 +v -0.03008 0.08343 0.21147 +v -0.02943 0.08450 0.20927 +v -0.03637 0.07369 0.20404 +v -0.03347 0.07229 0.20374 +v -0.02629 0.08377 0.20475 +v -0.02502 0.08051 0.20419 +v -0.02542 0.08227 0.20431 +v -0.03839 0.08124 0.21124 +v -0.03905 0.07878 0.20594 +v -0.03900 0.07817 0.20532 +v -0.03892 0.07768 0.20490 +v -0.03625 0.08278 0.21258 +v -0.03401 0.08392 0.21268 +v -0.02830 0.08512 0.20830 +v -0.02809 0.08543 0.20730 +v -0.03195 0.08393 0.21262 +v -0.02954 0.08393 0.21040 +v -0.03055 0.08340 0.21246 +v -0.03860 0.07480 0.20428 +v -0.02682 0.07309 0.20361 +v -0.02890 0.06596 0.20277 +v -0.02723 0.08533 0.20600 +v -0.02524 0.08333 0.20452 +v -0.02624 0.08506 0.20539 +v -0.02386 0.07689 0.20393 +v -0.04000 0.08086 0.21146 +v -0.03882 0.08112 0.21162 +v -0.04114 0.07865 0.20771 +v -0.03976 0.07819 0.20583 +v -0.03955 0.07738 0.20508 +v -0.03725 0.08253 0.21268 +v -0.03531 0.08318 0.21278 +v -0.02724 0.08570 0.20683 +v -0.02854 0.08362 0.21122 +v -0.02960 0.08307 0.21236 +v -0.02780 0.08470 0.20948 +v -0.03656 0.06649 0.20322 +v -0.03984 0.07587 0.20461 +v -0.03970 0.07176 0.20407 +v -0.02482 0.08460 0.20496 +v -0.02369 0.08304 0.20446 +v -0.02204 0.08114 0.20426 +v -0.04086 0.07977 0.20977 +v -0.04108 0.07795 0.20658 +v -0.03879 0.08129 0.21204 +v -0.03795 0.08266 0.21294 +v -0.03602 0.08323 0.21313 +v -0.03746 0.08384 0.21342 +v -0.03555 0.08387 0.21323 +v -0.02740 0.08558 0.20764 +v -0.03196 0.08581 0.21309 +v -0.03016 0.08403 0.21315 +v -0.02896 0.08313 0.21202 +v -0.02930 0.08314 0.21296 +v -0.03973 0.07434 0.20429 +v -0.02172 0.07103 0.20333 +v -0.02679 0.08579 0.20634 +v -0.02615 0.08571 0.20600 +v -0.02490 0.08574 0.20572 +v -0.01617 0.07809 0.20399 +v -0.04150 0.08029 0.21106 +v -0.03916 0.08110 0.21192 +v -0.04289 0.07798 0.20798 +v -0.04204 0.07886 0.20886 +v -0.04101 0.07734 0.20580 +v -0.04060 0.07680 0.20518 +v -0.03939 0.08158 0.21237 +v -0.03940 0.08315 0.21325 +v -0.03548 0.08613 0.21344 +v -0.02550 0.08572 0.20853 +v -0.02625 0.08587 0.20752 +v -0.02762 0.08316 0.21235 +v -0.02668 0.08417 0.21109 +v -0.02875 0.08293 0.21261 +v -0.04072 0.07468 0.20452 +v -0.02642 0.08594 0.20663 +v -0.02302 0.08497 0.20476 +v -0.02333 0.08597 0.20526 +v -0.02207 0.08422 0.20448 +v -0.01746 0.08423 0.20439 +v -0.04193 0.07952 0.20990 +v -0.04133 0.08090 0.21193 +v -0.04230 0.07727 0.20657 +v -0.04088 0.07595 0.20483 +v -0.02875 0.08550 0.21346 +v -0.03169 0.09274 0.21229 +v -0.02847 0.08355 0.21345 +v -0.02812 0.08296 0.21307 +v -0.04238 0.07409 0.20484 +v -0.01556 0.07243 0.20334 +v -0.02551 0.08606 0.20657 +v -0.02243 0.08680 0.20554 +v -0.02104 0.08477 0.20451 +v -0.01519 0.08093 0.20406 +v -0.04280 0.07994 0.21079 +v -0.04279 0.08065 0.21211 +v -0.04144 0.08218 0.21312 +v -0.04321 0.07707 0.20683 +v -0.04312 0.07895 0.20948 +v -0.04274 0.07619 0.20573 +v -0.04147 0.07642 0.20526 +v -0.04271 0.08808 0.21473 +v -0.02474 0.08513 0.21060 +v -0.02486 0.08627 0.20735 +v -0.02670 0.08352 0.21217 +v -0.04167 0.07555 0.20495 +v -0.04324 0.07149 0.20457 +v -0.01386 0.07688 0.20370 +v -0.02214 0.08602 0.20483 +v -0.02437 0.08634 0.20638 +v -0.01461 0.08316 0.20401 +v -0.01445 0.07884 0.20395 +v -0.01994 0.08662 0.20479 +v -0.04421 0.07938 0.21037 +v -0.04467 0.07615 0.20625 +v -0.04429 0.07817 0.20897 +v -0.02399 0.08638 0.20828 +v -0.02521 0.08461 0.21197 +v -0.02759 0.08381 0.21371 +v -0.02701 0.08717 0.21323 +v -0.02733 0.08316 0.21342 +v -0.02671 0.08328 0.21268 +v -0.02610 0.08386 0.21251 +v -0.02745 0.08291 0.21305 +v -0.04212 0.06724 0.20377 +v -0.04417 0.07352 0.20508 +v -0.01224 0.07523 0.20318 +v -0.02169 0.08670 0.20490 +v -0.01360 0.08184 0.20370 +v -0.01466 0.08539 0.20412 +v -0.01321 0.07936 0.20359 +v -0.02127 0.08627 0.20463 +v -0.04407 0.08015 0.21140 +v -0.04367 0.08120 0.21380 +v -0.04386 0.07654 0.20639 +v -0.04470 0.07704 0.20763 +v -0.02321 0.08676 0.20837 +v -0.02414 0.08524 0.21170 +v -0.02365 0.08675 0.20710 +v -0.02733 0.08424 0.21377 +v -0.02485 0.08981 0.21269 +v -0.02682 0.08480 0.21360 +v -0.02704 0.08304 0.21300 +v -0.04638 0.06864 0.20468 +v -0.04400 0.07500 0.20546 +v -0.04557 0.07244 0.20523 +v -0.01240 0.07734 0.20343 +v -0.02117 0.08724 0.20529 +v -0.01377 0.08285 0.20383 +v -0.01331 0.08344 0.20342 +v -0.01624 0.08691 0.20474 +v -0.02110 0.08678 0.20477 +v -0.04548 0.08054 0.21299 +v -0.04471 0.08002 0.21119 +v -0.04417 0.07599 0.20595 +v -0.04510 0.07626 0.20683 +v -0.04555 0.07696 0.20823 +v -0.04533 0.07820 0.20961 +v -0.02337 0.08685 0.20779 +v -0.02309 0.08591 0.21064 +v -0.02537 0.08464 0.21289 +v -0.02452 0.08534 0.21262 +v -0.02681 0.08374 0.21363 +v -0.02409 0.09578 0.21139 +v -0.02484 0.08647 0.21304 +v -0.02577 0.08526 0.21333 +v -0.02657 0.08340 0.21317 +v -0.04523 0.07431 0.20561 +v -0.01152 0.07682 0.20306 +v -0.01203 0.08099 0.20248 +v -0.01298 0.08575 0.20326 +v -0.01460 0.08744 0.20460 +v -0.04561 0.07978 0.21137 +v -0.04492 0.07551 0.20600 +v -0.04564 0.07903 0.21055 +v -0.02265 0.08723 0.20754 +v -0.02233 0.08656 0.21048 +v -0.02612 0.08414 0.21330 +v -0.02367 0.08567 0.21228 +v -0.02317 0.08578 0.21159 +v -0.02101 0.09185 0.21232 +v -0.02504 0.10909 0.20761 +v -0.02334 0.08740 0.21271 +v -0.04723 0.07090 0.20526 +v -0.04628 0.07392 0.20592 +v -0.01163 0.07839 0.20284 +v -0.01091 0.07599 0.20258 +v -0.01344 0.08721 0.20411 +v -0.01203 0.08393 0.20157 +v -0.04590 0.07510 0.20636 +v -0.04694 0.07545 0.20752 +v -0.02225 0.08716 0.20897 +v -0.02258 0.08612 0.21124 +v -0.02505 0.08531 0.21309 +v -0.02383 0.08614 0.21271 +v -0.01851 0.09720 0.21110 +v -0.02243 0.08910 0.21268 +v -0.04631 0.11021 0.20920 +v -0.04718 0.07295 0.20588 +v -0.01079 0.07719 0.20232 +v -0.01042 0.07845 0.20095 +v -0.01218 0.08657 0.20163 +v -0.02223 0.08644 0.21135 +v -0.02302 0.08629 0.21231 +v -0.02255 0.08622 0.21181 +v -0.02147 0.08971 0.21259 +v -0.03666 0.11955 0.20461 +v -0.02218 0.08795 0.21243 +v -0.04718 0.07454 0.20677 +v -0.00987 0.07618 0.20102 +v -0.01071 0.08114 0.19987 +v -0.01143 0.08549 0.19747 +v -0.02186 0.08697 0.21114 +v -0.02077 0.09019 0.21234 +v -0.02176 0.08880 0.21253 +v -0.04237 0.11782 0.20575 +v -0.02749 0.12079 0.20356 +v -0.02253 0.08645 0.21217 +v -0.00818 0.07637 0.19566 +v -0.02217 0.08669 0.21183 +v -0.02126 0.08925 0.21239 +v -0.04435 0.12068 0.20465 +v -0.04188 0.12108 0.20443 +v -0.03245 0.12229 0.20310 +v -0.02154 0.11965 0.20422 +v -0.02115 0.08896 0.21208 +v -0.02177 0.08747 0.21178 +v -0.04773 0.11939 0.20518 +v -0.04023 0.12259 0.20393 +v -0.03000 0.12304 0.20263 +v -0.03500 0.12284 0.20318 +v -0.02305 0.12218 0.20343 +v -0.04393 0.12228 0.20414 +v -0.05145 0.11914 0.20526 +v -0.04765 0.12171 0.20424 +v -0.03869 0.12296 0.20376 +v -0.04130 0.12306 0.20382 +v -0.02854 0.12265 0.20262 +v -0.03195 0.12374 0.20272 +v -0.03354 0.12373 0.20279 +v -0.03690 0.12330 0.20345 +v -0.02459 0.12292 0.20310 +v -0.02137 0.12218 0.20356 +v -0.04276 0.12259 0.20404 +v -0.04591 0.12205 0.20412 +v -0.04980 0.12108 0.20433 +v -0.05300 0.11654 0.20678 +v -0.04880 0.12200 0.20407 +v -0.04021 0.12419 0.20383 +v -0.03762 0.12233 0.20368 +v -0.04163 0.12414 0.20383 +v -0.02767 0.12319 0.20258 +v -0.02896 0.12362 0.20240 +v -0.03064 0.12433 0.20267 +v -0.03463 0.12400 0.20286 +v -0.03561 0.12401 0.20310 +v -0.02275 0.12370 0.20317 +v -0.02601 0.12348 0.20278 +v -0.02012 0.12292 0.20340 +v -0.02139 0.12339 0.20332 +v -0.04329 0.12345 0.20392 +v -0.04516 0.12328 0.20387 +v -0.05097 0.12179 0.20390 +v -0.05635 0.11627 0.20759 +v -0.05733 0.12047 0.20503 +v -0.04803 0.12289 0.20387 +v -0.03931 0.12436 0.20394 +v -0.03801 0.12337 0.20347 +v -0.02981 0.12386 0.20242 +v -0.03201 0.12465 0.20303 +v -0.03284 0.12429 0.20282 +v -0.03407 0.12421 0.20278 +v -0.03630 0.12434 0.20333 +v -0.02410 0.12442 0.20302 +v -0.01914 0.12213 0.20345 +v -0.05007 0.12277 0.20359 +v -0.05228 0.12194 0.20386 +v -0.05401 0.12151 0.20416 +v -0.04909 0.12360 0.20371 +v -0.03997 0.12486 0.20408 +v -0.03853 0.12402 0.20367 +v -0.04103 0.12485 0.20386 +v -0.04288 0.12395 0.20387 +v -0.02697 0.12413 0.20255 +v -0.02810 0.12450 0.20255 +v -0.02945 0.12441 0.20250 +v -0.03105 0.12496 0.20315 +v -0.03367 0.12452 0.20293 +v -0.03495 0.12455 0.20305 +v -0.03436 0.12447 0.20290 +v -0.03559 0.12477 0.20333 +v -0.03687 0.12452 0.20361 +v -0.03792 0.12395 0.20349 +v -0.02243 0.12474 0.20321 +v -0.02150 0.12434 0.20324 +v -0.02532 0.12445 0.20280 +v -0.02022 0.12444 0.20328 +v -0.01882 0.12346 0.20312 +v -0.04411 0.12395 0.20379 +v -0.04696 0.12341 0.20380 +v -0.05149 0.12267 0.20350 +v -0.05068 0.12311 0.20332 +v -0.05564 0.12218 0.20386 +v -0.04809 0.12389 0.20376 +v -0.04054 0.12509 0.20404 +v -0.03953 0.12502 0.20450 +v -0.03868 0.12473 0.20421 +v -0.04160 0.12502 0.20397 +v -0.04383 0.12403 0.20385 +v -0.04267 0.12454 0.20392 +v -0.02616 0.12452 0.20273 +v -0.03294 0.12474 0.20306 +v -0.03053 0.12488 0.20288 +v -0.03182 0.12531 0.20385 +v -0.03625 0.12487 0.20359 +v -0.03757 0.12435 0.20365 +v -0.02312 0.12512 0.20325 +v -0.02446 0.12499 0.20310 +v -0.01917 0.12415 0.20317 +v -0.01780 0.12306 0.20302 +v -0.04490 0.12412 0.20386 +v -0.04591 0.12386 0.20380 +v -0.05004 0.12376 0.20345 +v -0.05333 0.12265 0.20360 +v -0.05216 0.12305 0.20347 +v -0.05038 0.12346 0.20328 +v -0.05415 0.12282 0.20363 +v -0.05706 0.12237 0.20403 +v -0.04855 0.12440 0.20386 +v -0.04058 0.12547 0.20439 +v -0.03819 0.12442 0.20376 +v -0.04114 0.12533 0.20411 +v -0.04235 0.12495 0.20404 +v -0.04340 0.12467 0.20404 +v -0.02699 0.12488 0.20275 +v -0.02900 0.12504 0.20281 +v -0.03327 0.12506 0.20337 +v -0.03041 0.12512 0.20313 +v -0.03065 0.12533 0.20367 +v -0.03436 0.12494 0.20325 +v -0.03496 0.12495 0.20328 +v -0.03571 0.12530 0.20385 +v -0.03660 0.12517 0.20406 +v -0.03730 0.12484 0.20394 +v -0.02229 0.12546 0.20348 +v -0.02386 0.12534 0.20338 +v -0.02111 0.12517 0.20340 +v -0.02556 0.12491 0.20292 +v -0.01883 0.12519 0.20339 +v -0.01814 0.12426 0.20293 +v -0.04424 0.12444 0.20395 +v -0.04744 0.12416 0.20379 +v -0.04672 0.12411 0.20380 +v -0.04970 0.12416 0.20367 +v -0.05127 0.12352 0.20332 +v -0.05066 0.12369 0.20320 +v -0.05514 0.12284 0.20353 +v -0.05617 0.12263 0.20364 +v -0.05810 0.12217 0.20429 +v -0.04761 0.12455 0.20393 +v -0.04923 0.12452 0.20392 +v -0.04043 0.12551 0.20471 +v -0.03892 0.12506 0.20490 +v -0.03791 0.12481 0.20412 +v -0.04184 0.12543 0.20443 +v -0.04293 0.12489 0.20403 +v -0.02789 0.12528 0.20287 +v -0.02618 0.12524 0.20313 +v -0.02961 0.12537 0.20338 +v -0.03108 0.12556 0.20452 +v -0.03305 0.12546 0.20399 +v -0.02304 0.12553 0.20347 +v -0.01994 0.12533 0.20337 +v -0.02479 0.12531 0.20331 +v -0.04497 0.12466 0.20406 +v -0.04573 0.12448 0.20392 +v -0.04619 0.12433 0.20382 +v -0.05044 0.12418 0.20350 +v -0.05308 0.12336 0.20353 +v -0.05222 0.12386 0.20352 +v -0.05565 0.12273 0.20352 +v -0.05498 0.12346 0.20356 +v -0.05616 0.12297 0.20357 +v -0.05916 0.12231 0.20432 +v -0.05840 0.12307 0.20414 +v -0.04831 0.12487 0.20418 +v -0.04874 0.12472 0.20402 +v -0.04115 0.12557 0.20446 +v -0.04102 0.12563 0.20473 +v -0.03949 0.12519 0.20532 +v -0.03805 0.12511 0.20493 +v -0.04264 0.12529 0.20435 +v -0.04415 0.12505 0.20438 +v -0.04330 0.12526 0.20450 +v -0.02761 0.12561 0.20319 +v -0.02822 0.12559 0.20315 +v -0.03246 0.12568 0.20463 +v -0.02997 0.12560 0.20435 +v -0.03404 0.12533 0.20363 +v -0.03481 0.12560 0.20402 +v -0.03600 0.12549 0.20420 +v -0.03734 0.12514 0.20442 +v -0.02254 0.12577 0.20372 +v -0.02147 0.12578 0.20396 +v -0.02020 0.12568 0.20364 +v -0.02436 0.12558 0.20357 +v -0.01963 0.12556 0.20344 +v -0.04636 0.12472 0.20401 +v -0.05005 0.12458 0.20388 +v -0.05405 0.12386 0.20364 +v -0.05116 0.12417 0.20349 +v -0.05546 0.12309 0.20346 +v -0.05741 0.12339 0.20399 +v -0.05997 0.12142 0.20461 +v -0.04750 0.12506 0.20440 +v -0.04917 0.12499 0.20434 +v -0.04048 0.12554 0.20510 +v -0.04019 0.12538 0.20565 +v -0.03871 0.12511 0.20571 +v -0.02654 0.12573 0.20374 +v -0.03196 0.12583 0.20529 +v -0.03048 0.12570 0.20520 +v -0.03395 0.12568 0.20433 +v -0.03319 0.12575 0.20467 +v -0.02830 0.12573 0.20351 +v -0.03653 0.12546 0.20471 +v -0.02402 0.12572 0.20389 +v -0.01988 0.12559 0.20341 +v -0.02575 0.12561 0.20364 +v -0.02491 0.12567 0.20387 +v -0.01945 0.12571 0.20372 +v -0.04566 0.12502 0.20428 +v -0.04492 0.12521 0.20454 +v -0.05102 0.12472 0.20394 +v -0.05308 0.12418 0.20369 +v -0.05225 0.12467 0.20395 +v -0.05487 0.12411 0.20373 +v -0.05579 0.12341 0.20356 +v -0.05951 0.12320 0.20423 +v -0.06017 0.12244 0.20425 +v -0.05830 0.12381 0.20422 +v -0.04680 0.12503 0.20425 +v -0.04834 0.12529 0.20487 +v -0.04125 0.12558 0.20579 +v -0.03944 0.12515 0.20638 +v -0.03790 0.12519 0.20580 +v -0.04185 0.12563 0.20529 +v -0.04336 0.12562 0.20518 +v -0.04380 0.12539 0.20475 +v -0.02748 0.12582 0.20357 +v -0.03287 0.12585 0.20549 +v -0.02940 0.12585 0.20511 +v -0.03461 0.12579 0.20450 +v -0.03568 0.12565 0.20509 +v -0.02251 0.12587 0.20414 +v -0.02044 0.12589 0.20425 +v -0.02358 0.12582 0.20444 +v -0.01886 0.12575 0.20400 +v -0.04429 0.12549 0.20504 +v -0.05022 0.12516 0.20447 +v -0.05418 0.12450 0.20388 +v -0.05562 0.12402 0.20377 +v -0.05716 0.12414 0.20412 +v -0.05921 0.12380 0.20431 +v -0.06211 0.12252 0.20435 +v -0.04598 0.12531 0.20457 +v -0.04730 0.12543 0.20526 +v -0.03833 0.12491 0.20903 +v -0.03764 0.12511 0.20683 +v -0.04260 0.12568 0.20545 +v -0.02728 0.12591 0.20409 +v -0.02624 0.12584 0.20435 +v -0.02813 0.12591 0.20411 +v -0.03186 0.12588 0.20597 +v -0.02984 0.12579 0.20609 +v -0.03365 0.12583 0.20503 +v -0.02188 0.12590 0.20452 +v -0.02113 0.12588 0.20475 +v -0.01983 0.12592 0.20413 +v -0.01818 0.12568 0.20386 +v -0.04543 0.12539 0.20479 +v -0.05092 0.12535 0.20464 +v -0.04939 0.12527 0.20474 +v -0.05317 0.12471 0.20400 +v -0.05167 0.12517 0.20453 +v -0.05548 0.12453 0.20406 +v -0.05632 0.12423 0.20399 +v -0.06151 0.12344 0.20420 +v -0.06075 0.12420 0.20436 +v -0.05891 0.12442 0.20454 +v -0.04802 0.12550 0.20554 +v -0.04216 0.12563 0.20621 +v -0.04008 0.12511 0.20777 +v -0.03612 0.12545 0.20639 +v -0.04298 0.12574 0.20581 +v -0.03060 0.12577 0.20594 +v -0.03256 0.12586 0.20626 +v -0.02864 0.12608 0.20538 +v -0.02853 0.12596 0.20473 +v -0.03449 0.12578 0.20504 +v -0.03319 0.12579 0.20633 +v -0.02252 0.12579 0.20494 +v -0.02012 0.12582 0.20502 +v -0.02508 0.12577 0.20468 +v -0.01911 0.12585 0.20473 +v -0.01826 0.12587 0.20435 +v -0.01696 0.12525 0.20333 +v -0.04559 0.12554 0.20538 +v -0.05009 0.12542 0.20499 +v -0.05429 0.12496 0.20430 +v -0.05269 0.12495 0.20425 +v -0.05711 0.12481 0.20452 +v -0.05985 0.12444 0.20454 +v -0.06253 0.12340 0.20420 +v -0.04910 0.12542 0.20534 +v -0.04757 0.12554 0.20602 +v -0.04186 0.12530 0.20761 +v -0.04131 0.12486 0.21046 +v -0.03710 0.12499 0.20867 +v -0.03601 0.12530 0.20730 +v -0.04349 0.12575 0.20562 +v -0.02770 0.12598 0.20476 +v -0.03101 0.12575 0.20679 +v -0.03219 0.12573 0.20713 +v -0.02949 0.12567 0.20683 +v -0.02486 0.12567 0.20516 +v -0.02160 0.12584 0.20501 +v -0.02622 0.12579 0.20485 +v -0.01755 0.12582 0.20415 +v -0.04428 0.12561 0.20587 +v -0.05089 0.12561 0.20507 +v -0.05126 0.12551 0.20495 +v -0.05327 0.12505 0.20456 +v -0.05236 0.12519 0.20489 +v -0.05568 0.12500 0.20470 +v -0.06205 0.12392 0.20422 +v -0.06058 0.12486 0.20482 +v -0.06343 0.12277 0.20439 +v -0.05841 0.12508 0.20511 +v -0.05956 0.12497 0.20499 +v -0.04661 0.12546 0.20625 +v -0.04773 0.12552 0.20653 +v -0.04311 0.12572 0.20632 +v -0.03790 0.12469 0.21199 +v -0.03564 0.12480 0.21076 +v -0.03439 0.12515 0.20918 +v -0.03164 0.12584 0.20645 +v -0.02780 0.12596 0.20518 +v -0.02868 0.12602 0.20573 +v -0.01767 0.12589 0.20460 +v -0.01683 0.12573 0.20408 +v -0.04533 0.12553 0.20602 +v -0.05067 0.12566 0.20556 +v -0.05168 0.12542 0.20527 +v -0.05016 0.12552 0.20576 +v -0.05411 0.12508 0.20446 +v -0.05277 0.12513 0.20466 +v -0.05441 0.12516 0.20483 +v -0.06128 0.12459 0.20443 +v -0.06097 0.12470 0.20451 +v -0.06280 0.12398 0.20428 +v -0.06325 0.12374 0.20432 +v -0.05738 0.12504 0.20480 +v -0.04918 0.12545 0.20588 +v -0.04294 0.12540 0.20726 +v -0.04296 0.12512 0.20832 +v -0.03277 0.12541 0.20885 +v -0.02820 0.12598 0.20571 +v -0.03088 0.12555 0.20822 +v -0.01652 0.12579 0.20447 +v -0.01642 0.12541 0.20368 +v -0.04394 0.12547 0.20671 +v -0.05112 0.12562 0.20540 +v -0.05335 0.12517 0.20531 +v -0.05227 0.12531 0.20607 +v -0.05669 0.12519 0.20503 +v -0.05525 0.12523 0.20574 +v -0.06174 0.12465 0.20459 +v -0.06021 0.12515 0.20531 +v -0.06138 0.12490 0.20477 +v -0.06236 0.12431 0.20446 +v -0.06389 0.12343 0.20432 +v -0.05745 0.12528 0.20531 +v -0.05919 0.12523 0.20528 +v -0.04570 0.12524 0.20757 +v -0.04892 0.12519 0.20821 +v -0.04437 0.12499 0.20922 +v -0.01607 0.12562 0.20425 +v -0.01617 0.12498 0.20323 +v -0.04396 0.12516 0.20774 +v -0.05138 0.12549 0.20591 +v -0.05067 0.12530 0.20703 +v -0.05612 0.12528 0.20545 +v -0.05462 0.12522 0.20617 +v -0.06062 0.12518 0.20559 +v -0.05969 0.12526 0.20557 +v -0.06330 0.12444 0.20479 +v -0.06472 0.12321 0.20443 +v -0.06452 0.12409 0.20457 +v -0.05789 0.12536 0.20602 +v -0.05895 0.12535 0.20575 +v -0.04685 0.12505 0.20919 +v -0.01499 0.12543 0.20420 +v -0.01542 0.12510 0.20352 +v -0.05315 0.12530 0.20698 +v -0.05150 0.12529 0.20689 +v -0.05653 0.12534 0.20589 +v -0.05616 0.12525 0.20711 +v -0.06225 0.12475 0.20501 +v -0.06198 0.12497 0.20574 +v -0.05517 0.12527 0.20773 +v -0.05869 0.12540 0.20644 +v -0.06032 0.12517 0.20736 +v -0.06300 0.12485 0.20551 +v -0.06409 0.12444 0.20476 +v -0.06579 0.12370 0.20449 +v -0.05789 0.12533 0.20697 +v -0.05622 0.12504 0.20896 +v -0.06200 0.12504 0.20689 +v -0.06419 0.12470 0.20512 +v -0.06505 0.12445 0.20483 +v -0.06590 0.12426 0.20483 +v -0.05750 0.12481 0.21037 +v -0.05867 0.12515 0.20815 +v -0.06279 0.12500 0.20616 +v -0.06101 0.12510 0.20833 +v -0.06493 0.12500 0.20590 +v -0.06660 0.12366 0.20451 +v -0.06413 0.12510 0.20680 +v -0.06231 0.12504 0.20846 +v -0.06534 0.12487 0.20552 +v -0.06587 0.12475 0.20538 +v -0.06775 0.12428 0.20498 +v -0.06060 0.12512 0.20951 +v -0.05894 0.12456 0.21250 +v -0.06168 0.12502 0.20970 +v -0.06598 0.12502 0.20618 +v -0.06714 0.12470 0.20541 +v -0.06011 0.12464 0.21182 +v -0.06566 0.12508 0.20697 +v -0.06356 0.12494 0.20938 +v -0.06637 0.12492 0.20573 +v -0.06791 0.12479 0.20583 +v -0.06088 0.12493 0.21050 +v -0.06156 0.12441 0.21391 +v -0.05780 0.12445 0.21513 +v -0.06201 0.12493 0.21057 +v -0.06849 0.12487 0.20669 +v -0.06744 0.12494 0.20607 +v -0.06871 0.12470 0.20572 +v -0.06269 0.12468 0.21183 +v -0.06524 0.12486 0.21003 +v -0.06706 0.12480 0.21031 +v -0.06910 0.12446 0.20508 +v -0.06302 0.12462 0.21218 +v -0.06433 0.12455 0.21212 +v -0.06880 0.12413 0.20461 +v -0.06964 0.12468 0.20574 +v -0.06566 0.12455 0.21273 +v -0.06632 0.12472 0.21165 +v -0.06962 0.12407 0.20464 +v -0.06993 0.12444 0.20514 +v -0.06483 0.12446 0.21408 +v -0.06483 0.12440 0.21629 +v -0.07038 0.12415 0.20493 +v -0.06571 0.12432 0.21726 +v -0.06389 0.12246 0.17557 +v -0.06476 0.12289 0.17665 +v -0.06412 0.12292 0.17654 +v -0.06458 0.12231 0.17541 +v -0.06265 0.12287 0.17645 +v -0.06340 0.12215 0.17469 +v -0.06543 0.12191 0.17520 +v -0.06131 0.12263 0.17582 +v -0.06131 0.12195 0.17403 +v -0.06393 0.12176 0.17386 +v -0.06672 0.12198 0.17656 +v -0.06107 0.12326 0.17694 +v -0.06313 0.12185 0.17363 +v -0.06619 0.12171 0.17564 +v -0.06492 0.12130 0.17400 +v -0.06049 0.12217 0.17465 +v -0.06015 0.12274 0.17616 +v -0.06184 0.12117 0.17190 +v -0.06378 0.12141 0.17296 +v -0.06679 0.12165 0.17620 +v -0.06559 0.12160 0.17487 +v -0.06419 0.12121 0.17307 +v -0.06010 0.12239 0.17546 +v -0.06055 0.12183 0.17374 +v -0.05956 0.12316 0.17685 +v -0.06113 0.12122 0.17221 +v -0.06241 0.12088 0.17128 +v -0.06672 0.12119 0.17598 +v -0.06749 0.12145 0.17683 +v -0.06455 0.12064 0.17316 +v -0.05949 0.12202 0.17480 +v -0.06012 0.12201 0.17404 +v -0.05911 0.12239 0.17587 +v -0.06315 0.12081 0.17147 +v -0.06399 0.12061 0.17217 +v -0.06794 0.12181 0.17766 +v -0.06023 0.12101 0.17233 +v -0.05964 0.12171 0.17391 +v -0.05818 0.12278 0.17676 +v -0.06792 0.12095 0.17741 +v -0.05847 0.12173 0.17515 +v -0.05788 0.12190 0.17599 +v -0.05885 0.12152 0.17435 +v -0.05889 0.12088 0.17344 +v -0.05730 0.12209 0.17662 +v -0.05749 0.12105 0.17513 +v -0.05673 0.12271 0.17733 +v -0.05710 0.12149 0.17625 +v -0.05607 0.12168 0.17718 +v -0.05639 0.12108 0.17653 +v -0.05584 0.12267 0.17775 +v -0.05521 0.12095 0.17740 +v 0.09974 0.05517 0.23405 +v 0.10039 0.05364 0.23379 +v 0.10054 0.05480 0.23356 +v 0.09916 0.05405 0.23443 +v 0.10115 0.05449 0.23283 +v 0.10070 0.05628 0.23317 +v 0.09853 0.05621 0.23459 +v 0.09967 0.05277 0.23432 +v 0.10117 0.05313 0.23299 +v 0.09968 0.05660 0.23394 +v 0.09752 0.05559 0.23494 +v 0.09828 0.05324 0.23473 +v 0.10029 0.05246 0.23408 +v 0.10077 0.05199 0.23356 +v 0.10176 0.05323 0.23177 +v 0.10147 0.05625 0.23221 +v 0.09990 0.05880 0.23371 +v 0.09730 0.05834 0.23520 +v 0.09726 0.05758 0.23518 +v 0.09911 0.05221 0.23453 +v 0.09972 0.05163 0.23428 +v 0.10144 0.05181 0.23273 +v 0.10183 0.05514 0.23151 +v 0.10117 0.05694 0.23259 +v 0.10074 0.05790 0.23299 +v 0.09842 0.05873 0.23461 +v 0.09433 0.05346 0.23561 +v 0.09820 0.05148 0.23478 +v 0.10130 0.05031 0.23279 +v 0.10231 0.05407 0.22997 +v 0.10177 0.05154 0.23190 +v 0.10140 0.05774 0.23217 +v 0.10225 0.05688 0.23053 +v 0.10069 0.05922 0.23301 +v 0.09949 0.06012 0.23399 +v 0.09728 0.05917 0.23509 +v 0.09555 0.05915 0.23555 +v 0.09416 0.05786 0.23586 +v 0.10030 0.05044 0.23388 +v 0.10226 0.05205 0.23016 +v 0.10186 0.05748 0.23140 +v 0.10036 0.06067 0.23339 +v 0.09892 0.06221 0.23429 +v 0.09594 0.05055 0.23534 +v 0.09905 0.05013 0.23449 +v 0.10206 0.04995 0.23086 +v 0.10067 0.04937 0.23360 +v 0.10166 0.05910 0.23167 +v 0.10091 0.06079 0.23279 +v 0.10026 0.06145 0.23353 +v 0.09976 0.06151 0.23387 +v 0.09644 0.06036 0.23529 +v 0.09397 0.06038 0.23608 +v 0.09718 0.04957 0.23495 +v 0.09429 0.05099 0.23566 +v 0.09881 0.04889 0.23454 +v 0.09983 0.04872 0.23419 +v 0.10169 0.04904 0.23214 +v 0.10118 0.04870 0.23302 +v 0.09929 0.06246 0.23409 +v 0.09504 0.06122 0.23577 +v 0.09495 0.04911 0.23548 +v 0.10038 0.04760 0.23376 +v 0.10223 0.06369 0.23061 +v 0.10095 0.06246 0.23260 +v 0.10020 0.06215 0.23348 +v 0.09932 0.06386 0.23394 +v 0.09574 0.06370 0.23538 +v 0.09381 0.06106 0.23623 +v 0.09679 0.04863 0.23494 +v 0.09956 0.04744 0.23425 +v 0.10293 0.06155 0.22936 +v 0.10024 0.06317 0.23341 +v 0.09827 0.06395 0.23442 +v 0.09425 0.06206 0.23607 +v 0.09434 0.04788 0.23561 +v 0.09838 0.04752 0.23463 +v 0.10124 0.06389 0.23206 +v 0.10262 0.06368 0.22993 +v 0.09858 0.06587 0.23432 +v 0.09997 0.06431 0.23351 +v 0.09643 0.06554 0.23506 +v 0.10230 0.06478 0.23070 +v 0.10062 0.06426 0.23288 +v 0.10298 0.06401 0.22908 +v 0.09926 0.06660 0.23406 +v 0.09994 0.06648 0.23366 +v 0.10278 0.06537 0.23007 +v 0.09886 0.06781 0.23433 +v 0.09738 0.06737 0.23481 +v 0.10084 0.06542 0.23272 +v 0.10056 0.06620 0.23313 +v 0.09511 0.06849 0.23550 +v 0.10258 0.06524 0.23041 +v 0.10288 0.06549 0.22961 +v 0.09982 0.06807 0.23385 +v 0.10076 0.06989 0.23317 +v 0.10195 0.06634 0.23141 +v 0.10253 0.06649 0.23051 +v 0.10298 0.06612 0.22870 +v 0.09873 0.06951 0.23452 +v 0.09931 0.06839 0.23420 +v 0.09634 0.07064 0.23526 +v 0.10129 0.06840 0.23249 +v 0.10283 0.06674 0.22956 +v 0.09968 0.06990 0.23406 +v 0.10150 0.07019 0.23229 +v 0.10202 0.06929 0.23155 +v 0.10269 0.06859 0.23010 +v 0.10291 0.06757 0.22881 +v 0.09801 0.07135 0.23469 +v 0.10065 0.07073 0.23327 +v 0.10247 0.06937 0.23076 +v 0.10302 0.06769 0.22685 +v 0.09569 0.07276 0.23556 +v 0.09892 0.07042 0.23443 +v 0.10012 0.07097 0.23374 +v 0.10211 0.07156 0.23124 +v 0.10157 0.07295 0.23214 +v 0.10297 0.06863 0.22851 +v 0.10270 0.07191 0.22984 +v 0.10307 0.06767 0.22490 +v 0.09749 0.07242 0.23486 +v 0.09941 0.07137 0.23409 +v 0.09942 0.07029 0.23427 +v 0.10016 0.07258 0.23348 +v 0.10120 0.07289 0.23260 +v 0.10315 0.07221 0.22840 +v 0.10327 0.07092 0.22710 +v 0.09762 0.07421 0.23488 +v 0.09887 0.07269 0.23418 +v 0.09499 0.07680 0.23604 +v 0.10241 0.07395 0.23069 +v 0.10138 0.07356 0.23246 +v 0.10275 0.07336 0.22942 +v 0.10334 0.07145 0.22466 +v 0.09672 0.07621 0.23538 +v 0.10077 0.07365 0.23303 +v 0.10340 0.07148 0.22624 +v 0.10297 0.07345 0.22845 +v 0.09983 0.07398 0.23366 +v 0.09821 0.07569 0.23468 +v 0.09626 0.07914 0.23568 +v 0.10178 0.07507 0.23179 +v 0.10084 0.07430 0.23304 +v 0.10258 0.07442 0.22981 +v 0.10326 0.07314 0.22762 +v 0.10273 0.07472 0.22849 +v 0.10325 0.07367 0.22467 +v 0.09850 0.07765 0.23478 +v 0.09899 0.07874 0.23471 +v 0.10235 0.07489 0.23068 +v 0.10112 0.07488 0.23273 +v 0.10331 0.07310 0.22688 +v 0.10305 0.07405 0.22694 +v 0.10330 0.07476 0.22019 +v 0.09942 0.07535 0.23397 +v 0.09922 0.07734 0.23434 +v 0.09793 0.08197 0.23506 +v 0.09830 0.07999 0.23491 +v 0.10226 0.07607 0.23091 +v 0.10119 0.07530 0.23257 +v 0.10052 0.07518 0.23322 +v 0.10262 0.07606 0.22851 +v 0.10251 0.07564 0.22994 +v 0.10289 0.07603 0.22479 +v 0.10299 0.07637 0.22188 +v 0.09917 0.07980 0.23450 +v 0.10184 0.07612 0.23165 +v 0.10244 0.07543 0.23045 +v 0.10092 0.07646 0.23279 +v 0.10010 0.07627 0.23357 +v 0.09966 0.07835 0.23414 +v 0.09875 0.08194 0.23476 +v 0.09699 0.08357 0.23542 +v 0.09969 0.07947 0.23414 +v 0.09967 0.08066 0.23427 +v 0.10189 0.07674 0.23143 +v 0.10243 0.07638 0.23030 +v 0.10270 0.07776 0.22633 +v 0.10250 0.07677 0.22965 +v 0.10277 0.07896 0.22256 +v 0.09886 0.08337 0.23465 +v 0.09607 0.08580 0.23590 +v 0.09827 0.08399 0.23496 +v 0.10006 0.08006 0.23391 +v 0.10225 0.07725 0.23055 +v 0.10264 0.07850 0.22812 +v 0.10248 0.07810 0.22953 +v 0.10043 0.07911 0.23341 +v 0.09971 0.08174 0.23423 +v 0.09983 0.08243 0.23404 +v 0.09761 0.08499 0.23534 +v 0.10030 0.08057 0.23379 +v 0.10166 0.07833 0.23165 +v 0.10262 0.07895 0.22892 +v 0.10265 0.08350 0.22410 +v 0.09949 0.08387 0.23426 +v 0.09887 0.08499 0.23472 +v 0.09754 0.08599 0.23556 +v 0.09625 0.08735 0.23594 +v 0.10061 0.08027 0.23336 +v 0.10102 0.07915 0.23268 +v 0.10210 0.07853 0.23073 +v 0.10277 0.08258 0.21913 +v 0.10068 0.08176 0.23328 +v 0.10038 0.08366 0.23352 +v 0.09828 0.08559 0.23514 +v 0.10075 0.08088 0.23324 +v 0.10130 0.08078 0.23235 +v 0.10190 0.08093 0.23108 +v 0.10247 0.08149 0.22844 +v 0.10255 0.07916 0.22943 +v 0.10282 0.08648 0.22009 +v 0.10008 0.08494 0.23390 +v 0.09869 0.08656 0.23496 +v 0.09671 0.08865 0.23575 +v 0.10247 0.08299 0.22822 +v 0.10254 0.08734 0.22326 +v 0.10138 0.08322 0.23228 +v 0.10077 0.08497 0.23325 +v 0.10009 0.08647 0.23414 +v 0.09882 0.08846 0.23484 +v 0.10159 0.08165 0.23194 +v 0.10214 0.08182 0.23021 +v 0.10221 0.08290 0.22996 +v 0.10247 0.08471 0.22757 +v 0.10257 0.08828 0.22098 +v 0.10246 0.08622 0.22621 +v 0.10114 0.08202 0.23270 +v 0.10100 0.08403 0.23289 +v 0.10061 0.08563 0.23357 +v 0.09990 0.08722 0.23421 +v 0.09570 0.09215 0.23605 +v 0.09865 0.09012 0.23474 +v 0.10187 0.08281 0.23122 +v 0.10235 0.08366 0.22943 +v 0.10244 0.08485 0.22861 +v 0.10241 0.08873 0.22212 +v 0.10235 0.08847 0.22642 +v 0.10134 0.08481 0.23249 +v 0.10125 0.08634 0.23282 +v 0.10064 0.08661 0.23358 +v 0.09989 0.08977 0.23405 +v 0.09658 0.09146 0.23568 +v 0.10220 0.08533 0.23035 +v 0.10230 0.08655 0.22794 +v 0.10224 0.08954 0.22103 +v 0.10232 0.08929 0.22354 +v 0.10223 0.08983 0.22545 +v 0.10233 0.08818 0.22734 +v 0.10177 0.08432 0.23169 +v 0.10080 0.08808 0.23322 +v 0.09495 0.09252 0.23633 +v 0.09824 0.09549 0.23538 +v 0.09913 0.09116 0.23454 +v 0.10206 0.08444 0.23095 +v 0.10232 0.08567 0.22933 +v 0.10221 0.08990 0.22180 +v 0.10231 0.09003 0.22779 +v 0.10193 0.08543 0.23132 +v 0.10164 0.08631 0.23214 +v 0.10062 0.08965 0.23339 +v 0.09810 0.09258 0.23514 +v 0.10011 0.09091 0.23387 +v 0.10220 0.08752 0.22938 +v 0.10214 0.09021 0.22116 +v 0.10221 0.09082 0.22317 +v 0.10223 0.09115 0.22725 +v 0.10237 0.09007 0.22846 +v 0.10155 0.08734 0.23210 +v 0.10127 0.08925 0.23254 +v 0.09777 0.09583 0.23557 +v 0.09850 0.09465 0.23519 +v 0.09938 0.09218 0.23446 +v 0.10214 0.08602 0.23066 +v 0.10234 0.09064 0.21978 +v 0.10222 0.09164 0.22118 +v 0.10189 0.08745 0.23111 +v 0.10158 0.08842 0.23196 +v 0.10116 0.09061 0.23269 +v 0.09818 0.09696 0.23519 +v 0.09506 0.09550 0.23637 +v 0.09904 0.09370 0.23484 +v 0.09839 0.09533 0.23531 +v 0.10059 0.09233 0.23353 +v 0.10217 0.08942 0.23013 +v 0.10232 0.09133 0.22886 +v 0.10185 0.08953 0.23138 +v 0.09689 0.09694 0.23575 +v 0.09902 0.09809 0.23454 +v 0.09384 0.09663 0.23665 +v 0.09968 0.09395 0.23449 +v 0.09889 0.09546 0.23496 +v 0.10215 0.09029 0.23081 +v 0.10231 0.09491 0.22649 +v 0.10235 0.09293 0.22886 +v 0.10223 0.09206 0.23000 +v 0.10143 0.09187 0.23238 +v 0.10191 0.09113 0.23147 +v 0.09776 0.09814 0.23526 +v 0.10009 0.09676 0.23405 +v 0.10069 0.09325 0.23357 +v 0.10239 0.09733 0.22387 +v 0.10108 0.09241 0.23300 +v 0.09636 0.09834 0.23577 +v 0.09879 0.09943 0.23465 +v 0.10024 0.09777 0.23373 +v 0.09494 0.09814 0.23618 +v 0.09301 0.09796 0.23687 +v 0.10062 0.09645 0.23366 +v 0.10215 0.09184 0.23057 +v 0.10243 0.09679 0.22892 +v 0.10234 0.09851 0.22797 +v 0.10220 0.09309 0.23000 +v 0.10125 0.09337 0.23278 +v 0.10155 0.09264 0.23215 +v 0.09748 0.09916 0.23535 +v 0.09989 0.09931 0.23383 +v 0.10104 0.09415 0.23316 +v 0.10193 0.09279 0.23106 +v 0.10250 0.10016 0.22252 +v 0.10237 0.09447 0.22980 +v 0.10240 0.09906 0.22640 +v 0.09596 0.10138 0.23592 +v 0.09815 0.10043 0.23507 +v 0.09957 0.10214 0.23410 +v 0.10102 0.09849 0.23292 +v 0.10105 0.09701 0.23306 +v 0.10124 0.09564 0.23292 +v 0.10255 0.09993 0.22454 +v 0.10220 0.09652 0.23071 +v 0.10228 0.09918 0.22972 +v 0.10234 0.10014 0.22757 +v 0.10205 0.09488 0.23108 +v 0.10161 0.09343 0.23200 +v 0.10154 0.09432 0.23234 +v 0.09696 0.10279 0.23555 +v 0.09838 0.10189 0.23491 +v 0.10025 0.10286 0.23353 +v 0.10081 0.10011 0.23299 +v 0.10144 0.09490 0.23263 +v 0.10267 0.10168 0.22504 +v 0.10243 0.10172 0.22228 +v 0.10227 0.09936 0.23026 +v 0.10216 0.10028 0.22886 +v 0.10263 0.10091 0.22546 +v 0.09590 0.10366 0.23607 +v 0.09910 0.10390 0.23436 +v 0.09807 0.10360 0.23499 +v 0.10161 0.09774 0.23223 +v 0.10145 0.09856 0.23246 +v 0.10173 0.09647 0.23205 +v 0.10197 0.09555 0.23156 +v 0.10202 0.09788 0.23140 +v 0.10208 0.10012 0.23023 +v 0.10212 0.10224 0.22833 +v 0.10264 0.10170 0.22602 +v 0.09961 0.10505 0.23401 +v 0.10079 0.10207 0.23299 +v 0.10139 0.10003 0.23233 +v 0.10201 0.09986 0.23096 +v 0.10185 0.10143 0.23022 +v 0.10055 0.10497 0.23315 +v 0.09865 0.10515 0.23476 +v 0.10126 0.10125 0.23248 +v 0.10181 0.09871 0.23187 +v 0.10229 0.10423 0.22332 +v 0.10249 0.10338 0.22530 +v 0.10182 0.09983 0.23157 +v 0.10166 0.10165 0.23147 +v 0.10191 0.10214 0.22979 +v 0.10241 0.10316 0.22635 +v 0.10001 0.10679 0.23375 +v 0.09885 0.10699 0.23482 +v 0.10098 0.10413 0.23268 +v 0.10138 0.10253 0.23208 +v 0.10157 0.10110 0.23194 +v 0.10220 0.10536 0.22160 +v 0.09825 0.10668 0.23518 +v 0.10077 0.10677 0.23291 +v 0.10212 0.10596 0.22383 +v 0.10237 0.10432 0.22616 +v 0.10176 0.10303 0.23084 +v 0.10024 0.10844 0.23361 +v 0.09941 0.10764 0.23428 +v 0.09870 0.10819 0.23469 +v 0.10148 0.10397 0.23176 +v 0.10121 0.10610 0.23231 +v 0.10222 0.10564 0.22616 +v 0.10209 0.10719 0.22271 +v 0.10219 0.10860 0.22024 +v 0.10192 0.10470 0.23061 +v 0.10219 0.10407 0.22806 +v 0.10097 0.10743 0.23263 +v 0.09817 0.10797 0.23498 +v 0.10130 0.10467 0.23221 +v 0.10135 0.10655 0.23196 +v 0.10193 0.10709 0.22425 +v 0.10222 0.10541 0.22753 +v 0.10218 0.10550 0.22932 +v 0.10068 0.10875 0.23310 +v 0.09911 0.10901 0.23441 +v 0.10189 0.10798 0.22601 +v 0.10224 0.11107 0.22053 +v 0.10185 0.10901 0.22466 +v 0.10183 0.10599 0.23059 +v 0.09762 0.10890 0.23508 +v 0.10111 0.10824 0.23227 +v 0.10000 0.10912 0.23379 +v 0.10190 0.10770 0.22847 +v 0.10208 0.11085 0.22230 +v 0.10239 0.11228 0.21874 +v 0.10160 0.10835 0.22986 +v 0.10144 0.10767 0.23120 +v 0.10107 0.10926 0.23247 +v 0.10082 0.10957 0.23301 +v 0.09931 0.11006 0.23431 +v 0.09823 0.11001 0.23486 +v 0.10172 0.10989 0.22595 +v 0.10209 0.11217 0.22212 +v 0.10189 0.11060 0.22346 +v 0.10236 0.11331 0.21802 +v 0.10239 0.11260 0.22067 +v 0.09585 0.10963 0.23567 +v 0.10124 0.10898 0.23177 +v 0.09972 0.11087 0.23410 +v 0.10169 0.11026 0.22792 +v 0.10178 0.11016 0.22454 +v 0.10185 0.11203 0.22312 +v 0.10249 0.11326 0.21940 +v 0.10160 0.10991 0.22926 +v 0.10110 0.11101 0.23227 +v 0.10049 0.11086 0.23330 +v 0.09928 0.11142 0.23454 +v 0.09880 0.11173 0.23483 +v 0.09782 0.11234 0.23518 +v 0.10142 0.11212 0.22553 +v 0.10152 0.11154 0.22488 +v 0.10236 0.11360 0.22083 +v 0.10151 0.11258 0.22431 +v 0.10240 0.11437 0.21899 +v 0.10138 0.11135 0.23103 +v 0.10090 0.11083 0.23276 +v 0.10016 0.11212 0.23361 +v 0.09948 0.11207 0.23439 +v 0.09554 0.11058 0.23591 +v 0.10164 0.11169 0.22833 +v 0.10167 0.11326 0.22378 +v 0.10209 0.11529 0.21881 +v 0.09379 0.11028 0.23682 +v 0.10101 0.11184 0.23216 +v 0.10067 0.11169 0.23291 +v 0.09915 0.11233 0.23468 +v 0.09664 0.11239 0.23560 +v 0.10158 0.11233 0.22975 +v 0.10148 0.11301 0.22653 +v 0.10167 0.11480 0.22363 +v 0.10150 0.11401 0.22525 +v 0.10199 0.11531 0.22144 +v 0.09349 0.10968 0.23694 +v 0.10143 0.11278 0.23061 +v 0.10002 0.11313 0.23383 +v 0.10067 0.11254 0.23271 +v 0.09897 0.11365 0.23463 +v 0.09547 0.11178 0.23608 +v 0.09839 0.11474 0.23487 +v 0.10141 0.11530 0.22963 +v 0.10141 0.11560 0.22731 +v 0.10145 0.11714 0.21924 +v 0.10185 0.11591 0.22092 +v 0.09284 0.11026 0.23703 +v 0.10096 0.11349 0.23180 +v 0.10042 0.11306 0.23319 +v 0.09969 0.11378 0.23415 +v 0.09411 0.11171 0.23674 +v 0.09624 0.11426 0.23577 +v 0.09797 0.11582 0.23504 +v 0.10133 0.11405 0.23050 +v 0.10144 0.11549 0.22872 +v 0.10136 0.11620 0.22542 +v 0.10164 0.11568 0.22321 +v 0.10139 0.11672 0.22288 +v 0.09330 0.11111 0.23702 +v 0.10023 0.11344 0.23361 +v 0.10020 0.11423 0.23364 +v 0.09919 0.11475 0.23447 +v 0.09900 0.11659 0.23459 +v 0.10095 0.11584 0.23146 +v 0.10113 0.11645 0.23030 +v 0.10113 0.11797 0.22721 +v 0.10141 0.11639 0.22403 +v 0.10098 0.11867 0.21873 +v 0.10113 0.11741 0.22150 +v 0.09264 0.11181 0.23709 +v 0.10061 0.11530 0.23253 +v 0.09989 0.11487 0.23390 +v 0.09381 0.11336 0.23680 +v 0.09317 0.11144 0.23709 +v 0.09664 0.11571 0.23554 +v 0.09798 0.11705 0.23516 +v 0.10095 0.11895 0.22806 +v 0.10109 0.11767 0.22511 +v 0.10059 0.11884 0.22108 +v 0.10070 0.11820 0.22226 +v 0.09958 0.11612 0.23419 +v 0.09318 0.11470 0.23687 +v 0.09358 0.11209 0.23693 +v 0.09612 0.11666 0.23576 +v 0.09899 0.11762 0.23477 +v 0.10083 0.11770 0.23197 +v 0.10091 0.11829 0.23098 +v 0.10076 0.11952 0.22603 +v 0.10106 0.11756 0.22378 +v 0.10061 0.11984 0.21925 +v 0.09113 0.11270 0.23721 +v 0.10031 0.11480 0.23328 +v 0.09993 0.11561 0.23384 +v 0.09965 0.11732 0.23419 +v 0.09284 0.11339 0.23704 +v 0.09473 0.11625 0.23619 +v 0.09877 0.11884 0.23529 +v 0.09690 0.11719 0.23560 +v 0.10072 0.11744 0.23237 +v 0.10064 0.12205 0.23209 +v 0.10060 0.12094 0.22729 +v 0.10077 0.11879 0.22452 +v 0.10004 0.12186 0.22054 +v 0.10052 0.11887 0.22258 +v 0.10061 0.11874 0.22329 +v 0.10012 0.11623 0.23354 +v 0.09988 0.11688 0.23395 +v 0.09226 0.11471 0.23707 +v 0.09452 0.11765 0.23624 +v 0.09386 0.11652 0.23653 +v 0.09944 0.11875 0.23476 +v 0.09572 0.11822 0.23600 +v 0.10056 0.11900 0.23257 +v 0.10044 0.11770 0.23299 +v 0.10066 0.12111 0.23223 +v 0.10060 0.12227 0.22901 +v 0.10028 0.12189 0.22555 +v 0.10035 0.12134 0.21917 +v 0.10019 0.12048 0.22195 +v 0.08924 0.11323 0.23739 +v 0.08983 0.11477 0.23731 +v 0.10009 0.11703 0.23362 +v 0.09229 0.11530 0.23707 +v 0.09301 0.11593 0.23686 +v 0.09984 0.11836 0.23420 +v 0.09918 0.11928 0.23522 +v 0.09786 0.11884 0.23567 +v 0.09682 0.11896 0.23592 +v 0.10063 0.12192 0.23300 +v 0.10059 0.12240 0.23119 +v 0.10031 0.12101 0.22461 +v 0.10025 0.12247 0.22719 +v 0.09981 0.12228 0.22154 +v 0.10019 0.12289 0.21937 +v 0.08743 0.11169 0.23739 +v 0.10011 0.11780 0.23367 +v 0.09013 0.11568 0.23717 +v 0.09346 0.11774 0.23649 +v 0.09408 0.11859 0.23627 +v 0.09341 0.11632 0.23677 +v 0.09992 0.11918 0.23417 +v 0.09550 0.12003 0.23606 +v 0.10046 0.12079 0.23306 +v 0.10019 0.12026 0.23368 +v 0.10051 0.12239 0.23317 +v 0.10035 0.12309 0.23085 +v 0.10043 0.12289 0.23186 +v 0.10014 0.12299 0.22807 +v 0.10009 0.12259 0.22605 +v 0.10004 0.12203 0.22445 +v 0.10002 0.12138 0.22318 +v 0.09975 0.12263 0.22085 +v 0.09994 0.12154 0.22241 +v 0.10005 0.12319 0.21948 +v 0.08738 0.11325 0.23757 +v 0.08862 0.11470 0.23750 +v 0.09195 0.11665 0.23695 +v 0.08817 0.11561 0.23745 +v 0.09305 0.11683 0.23679 +v 0.09759 0.11940 0.23591 +v 0.09979 0.12052 0.23455 +v 0.09716 0.11994 0.23607 +v 0.10032 0.12189 0.23390 +v 0.10040 0.12296 0.22978 +v 0.09993 0.12304 0.22661 +v 0.10041 0.12282 0.22903 +v 0.09998 0.12246 0.22488 +v 0.09950 0.12278 0.22180 +v 0.09969 0.12234 0.22252 +v 0.08628 0.11284 0.23755 +v 0.08783 0.11418 0.23754 +v 0.08945 0.11660 0.23706 +v 0.09240 0.11886 0.23651 +v 0.09367 0.11999 0.23621 +v 0.09785 0.12028 0.23603 +v 0.09896 0.12037 0.23545 +v 0.09706 0.12098 0.23608 +v 0.10007 0.12250 0.23429 +v 0.10021 0.12317 0.23256 +v 0.10027 0.12345 0.23156 +v 0.09996 0.12352 0.22986 +v 0.09959 0.12340 0.22734 +v 0.09997 0.12333 0.22874 +v 0.09969 0.12311 0.22575 +v 0.09966 0.12244 0.22358 +v 0.09970 0.12276 0.22462 +v 0.09941 0.12337 0.22021 +v 0.09908 0.12331 0.22110 +v 0.08664 0.11345 0.23759 +v 0.08689 0.11397 0.23753 +v 0.08789 0.11497 0.23751 +v 0.08837 0.11652 0.23711 +v 0.09411 0.12138 0.23592 +v 0.09937 0.12118 0.23525 +v 0.09578 0.12127 0.23593 +v 0.10001 0.12290 0.23386 +v 0.09980 0.12191 0.23479 +v 0.10012 0.12305 0.23321 +v 0.10005 0.12353 0.23209 +v 0.10015 0.12365 0.23129 +v 0.10028 0.12327 0.22969 +v 0.09976 0.12381 0.23094 +v 0.09968 0.12334 0.22650 +v 0.09948 0.12319 0.22518 +v 0.09981 0.12339 0.21961 +v 0.09888 0.12333 0.22204 +v 0.09919 0.12308 0.22290 +v 0.08608 0.11367 0.23745 +v 0.09200 0.12051 0.23630 +v 0.09295 0.12119 0.23613 +v 0.09829 0.12107 0.23587 +v 0.09892 0.12124 0.23563 +v 0.09679 0.12173 0.23587 +v 0.09749 0.12137 0.23599 +v 0.09966 0.12289 0.23451 +v 0.09985 0.12250 0.23478 +v 0.09984 0.12345 0.23280 +v 0.10008 0.12373 0.23162 +v 0.09940 0.12397 0.23031 +v 0.09924 0.12360 0.22802 +v 0.09933 0.12353 0.22663 +v 0.09907 0.12354 0.22591 +v 0.09910 0.12318 0.22394 +v 0.09853 0.12361 0.22110 +v 0.09296 0.12181 0.23591 +v 0.09492 0.12194 0.23566 +v 0.09917 0.12183 0.23547 +v 0.09596 0.12188 0.23574 +v 0.09955 0.12330 0.23359 +v 0.09927 0.12255 0.23518 +v 0.09949 0.12365 0.23262 +v 0.09966 0.12383 0.23171 +v 0.09997 0.12383 0.23140 +v 0.09940 0.12369 0.22914 +v 0.09907 0.12406 0.23077 +v 0.09860 0.12366 0.22714 +v 0.09869 0.12353 0.22476 +v 0.09888 0.12372 0.21984 +v 0.09846 0.12351 0.22281 +v 0.09780 0.12371 0.22200 +v 0.09220 0.12159 0.23601 +v 0.09351 0.12215 0.23564 +v 0.09272 0.12159 0.23609 +v 0.09410 0.12232 0.23536 +v 0.09847 0.12200 0.23587 +v 0.09678 0.12231 0.23553 +v 0.09754 0.12214 0.23578 +v 0.09916 0.12319 0.23450 +v 0.09906 0.12409 0.23036 +v 0.09909 0.12397 0.23127 +v 0.09861 0.12372 0.22846 +v 0.09891 0.12367 0.22648 +v 0.09819 0.12366 0.22553 +v 0.09880 0.12340 0.22330 +v 0.09828 0.12364 0.22445 +v 0.09761 0.12380 0.22090 +v 0.09268 0.12222 0.23556 +v 0.09496 0.12245 0.23519 +v 0.09585 0.12230 0.23541 +v 0.09871 0.12228 0.23570 +v 0.09921 0.12298 0.23485 +v 0.09874 0.12358 0.23307 +v 0.09866 0.12387 0.22957 +v 0.09748 0.12376 0.23018 +v 0.09740 0.12366 0.23189 +v 0.09763 0.12366 0.22850 +v 0.09830 0.12356 0.22352 +v 0.09743 0.12370 0.22372 +v 0.09558 0.12396 0.22165 +v 0.09365 0.12236 0.23548 +v 0.09335 0.12247 0.23524 +v 0.09448 0.12263 0.23489 +v 0.09820 0.12228 0.23583 +v 0.09869 0.12270 0.23549 +v 0.09749 0.12269 0.23535 +v 0.09666 0.12274 0.23492 +v 0.09877 0.12294 0.23512 +v 0.09824 0.12324 0.23435 +v 0.09604 0.12358 0.22772 +v 0.09675 0.12367 0.22593 +v 0.09641 0.12376 0.22462 +v 0.09653 0.12398 0.21962 +v 0.09582 0.12392 0.22319 +v 0.09504 0.12281 0.23447 +v 0.09383 0.12283 0.23436 +v 0.09572 0.12261 0.23496 +v 0.09796 0.12256 0.23566 +v 0.09837 0.12259 0.23569 +v 0.09806 0.12293 0.23525 +v 0.09615 0.12332 0.23287 +v 0.09643 0.12359 0.23153 +v 0.09564 0.12362 0.23009 +v 0.09497 0.12416 0.22073 +v 0.09443 0.12429 0.22352 +v 0.09750 0.12300 0.23477 +v 0.09599 0.12300 0.23404 +v 0.09703 0.12310 0.23416 +v 0.09567 0.12361 0.22710 +v 0.09513 0.12393 0.22505 +v 0.09417 0.12443 0.22138 +v 0.09398 0.12427 0.21957 +v 0.09292 0.12297 0.23390 +v 0.09491 0.12352 0.23154 +v 0.09367 0.12450 0.22068 +v 0.09357 0.12446 0.22393 +v 0.09381 0.12455 0.22279 +v 0.09423 0.12324 0.23293 +v 0.09312 0.12471 0.22102 +v 0.09291 0.12452 0.22012 +v 0.09312 0.12420 0.21865 +v 0.09390 0.12447 0.22370 +v 0.09304 0.12490 0.22198 +v 0.09319 0.12466 0.22310 +v -0.00020 0.11907 0.15670 +v -0.00007 0.11802 0.15754 +v 0.00027 0.11911 0.15798 +v -0.00039 0.11770 0.15589 +v 0.00014 0.11796 0.15807 +v 0.00006 0.11994 0.15698 +v 0.00003 0.11592 0.15693 +v -0.00025 0.11952 0.15543 +v 0.00049 0.11689 0.15849 +v 0.00054 0.11818 0.15873 +v 0.00066 0.12038 0.15773 +v -0.00019 0.11976 0.15634 +v -0.00089 0.11699 0.15419 +v -0.00081 0.11858 0.15380 +v 0.00103 0.11909 0.15918 +v 0.00080 0.11986 0.15858 +v 0.00036 0.12063 0.15679 +v 0.00004 0.12032 0.15616 +v 0.00064 0.11517 0.15840 +v -0.00029 0.11462 0.15584 +v -0.00003 0.12030 0.15390 +v 0.00112 0.11775 0.15955 +v 0.00110 0.12048 0.15856 +v 0.00099 0.12115 0.15691 +v 0.00118 0.11591 0.15992 +v 0.00014 0.11408 0.15712 +v -0.00088 0.11471 0.15438 +v -0.00164 0.11717 0.15266 +v -0.00091 0.11986 0.15247 +v 0.00033 0.12069 0.15528 +v 0.00129 0.12012 0.15916 +v 0.00179 0.11872 0.16010 +v 0.00156 0.12112 0.15808 +v 0.00049 0.12093 0.15616 +v 0.00100 0.11468 0.15932 +v 0.00057 0.11362 0.15872 +v -0.00021 0.11380 0.15617 +v -0.00116 0.11593 0.15351 +v -0.00076 0.11368 0.15534 +v -0.00159 0.11862 0.15235 +v 0.00001 0.12089 0.15271 +v 0.00096 0.12126 0.15444 +v 0.00184 0.11763 0.16062 +v 0.00187 0.11982 0.15976 +v 0.00154 0.12077 0.15902 +v 0.00114 0.12139 0.15575 +v 0.00156 0.12146 0.15723 +v 0.00085 0.11381 0.16043 +v -0.00006 0.11279 0.15742 +v -0.00038 0.11316 0.15642 +v -0.00140 0.11495 0.15322 +v -0.00119 0.11389 0.15430 +v -0.00288 0.11835 0.15143 +v -0.00153 0.11622 0.15269 +v 0.00063 0.12112 0.15346 +v -0.00075 0.12116 0.15167 +v -0.00185 0.11937 0.15173 +v 0.00188 0.11688 0.16127 +v 0.00184 0.12061 0.15951 +v 0.00265 0.11949 0.16047 +v 0.00241 0.11855 0.16088 +v 0.00204 0.12107 0.15911 +v 0.00158 0.12158 0.15664 +v 0.00227 0.12167 0.15726 +v 0.00156 0.11558 0.16175 +v -0.00011 0.11212 0.15831 +v -0.00135 0.11427 0.15365 +v -0.00168 0.11562 0.15262 +v -0.00162 0.11329 0.15467 +v -0.00266 0.11667 0.15164 +v -0.00195 0.11622 0.15224 +v 0.00081 0.12145 0.15279 +v 0.00035 0.12162 0.15203 +v -0.00154 0.12025 0.15157 +v 0.00180 0.12171 0.15495 +v 0.00142 0.12160 0.15360 +v 0.00273 0.11785 0.16196 +v 0.00291 0.12078 0.15979 +v 0.00275 0.12146 0.15854 +v 0.00186 0.12093 0.15942 +v 0.00215 0.12179 0.15603 +v 0.00024 0.11234 0.15953 +v 0.00099 0.11352 0.16243 +v -0.00068 0.11237 0.15672 +v -0.00051 0.11200 0.15741 +v -0.00133 0.11266 0.15582 +v -0.00192 0.11430 0.15299 +v -0.00192 0.11499 0.15255 +v -0.00177 0.11373 0.15375 +v -0.00252 0.12003 0.15119 +v -0.00385 0.11701 0.15095 +v -0.00017 0.12216 0.15119 +v -0.00188 0.12056 0.15125 +v 0.00224 0.11656 0.16292 +v 0.00392 0.11997 0.16094 +v 0.00313 0.11900 0.16124 +v 0.00348 0.12177 0.15805 +v -0.00014 0.11142 0.16119 +v 0.00170 0.11510 0.16328 +v -0.00099 0.11136 0.15786 +v -0.00050 0.11131 0.15917 +v -0.00254 0.11549 0.15193 +v -0.00246 0.11275 0.15488 +v -0.00432 0.12010 0.15075 +v -0.00483 0.11825 0.15078 +v -0.00338 0.11605 0.15122 +v 0.00164 0.12192 0.15265 +v 0.00095 0.12215 0.15173 +v -0.00131 0.12199 0.15095 +v -0.00165 0.12139 0.15111 +v 0.00297 0.12195 0.15507 +v 0.00229 0.12193 0.15357 +v 0.00313 0.11744 0.16373 +v 0.00441 0.12093 0.16041 +v 0.00404 0.11897 0.16190 +v 0.00378 0.12151 0.15917 +v 0.00329 0.12189 0.15653 +v 0.00039 0.11174 0.16350 +v 0.00132 0.11352 0.16450 +v -0.00109 0.11196 0.15672 +v -0.00240 0.11370 0.15327 +v -0.00240 0.11466 0.15236 +v -0.00248 0.11206 0.15573 +v -0.00315 0.12099 0.15078 +v -0.00507 0.11706 0.15064 +v -0.00447 0.11608 0.15082 +v 0.00081 0.12276 0.15086 +v -0.00139 0.12262 0.15048 +v -0.00254 0.12209 0.15052 +v 0.00410 0.11830 0.16310 +v 0.00241 0.11597 0.16469 +v 0.00417 0.12133 0.15983 +v 0.00511 0.12050 0.16096 +v 0.00507 0.12165 0.15910 +v 0.00445 0.12181 0.15751 +v -0.00116 0.11059 0.15979 +v -0.00051 0.11020 0.16338 +v -0.00254 0.11139 0.15638 +v -0.00189 0.11132 0.15698 +v -0.00136 0.11075 0.15865 +v -0.00273 0.11406 0.15266 +v -0.00316 0.11457 0.15198 +v -0.00394 0.11168 0.15552 +v -0.00358 0.11340 0.15308 +v -0.00416 0.12184 0.15034 +v -0.00605 0.11964 0.15066 +v -0.00685 0.11773 0.15087 +v -0.00363 0.11522 0.15134 +v 0.00298 0.12218 0.15303 +v 0.00210 0.12256 0.15164 +v -0.00012 0.12318 0.15017 +v 0.00486 0.12186 0.15558 +v 0.00283 0.12202 0.15400 +v 0.00415 0.11807 0.16445 +v 0.00334 0.11741 0.16514 +v 0.00508 0.12134 0.16002 +v 0.00532 0.12102 0.16055 +v 0.00522 0.11969 0.16158 +v 0.00523 0.11887 0.16258 +v 0.00476 0.12156 0.15942 +v -0.00122 0.11024 0.16082 +v -0.00116 0.10982 0.16200 +v -0.00002 0.11033 0.16609 +v 0.00235 0.11436 0.16696 +v -0.00189 0.11054 0.15837 +v -0.00434 0.11278 0.15368 +v -0.00543 0.12135 0.15035 +v -0.00646 0.12096 0.15042 +v -0.00547 0.11661 0.15064 +v -0.00458 0.11516 0.15112 +v 0.00180 0.12342 0.15023 +v -0.00188 0.12328 0.14982 +v 0.00382 0.12207 0.15420 +v 0.00537 0.11848 0.16392 +v 0.00301 0.11670 0.16610 +v 0.00605 0.12063 0.16080 +v 0.00567 0.12024 0.16120 +v 0.00557 0.12162 0.15833 +v 0.00595 0.12140 0.15933 +v 0.00590 0.12169 0.15540 +v -0.00219 0.11000 0.16016 +v -0.00129 0.10927 0.16321 +v -0.00134 0.10914 0.16442 +v -0.00309 0.11068 0.15719 +v -0.00354 0.11387 0.15245 +v -0.00393 0.11460 0.15145 +v -0.00353 0.11100 0.15640 +v -0.00504 0.11188 0.15430 +v -0.00487 0.11308 0.15289 +v -0.00381 0.12314 0.14983 +v -0.00547 0.12267 0.14981 +v -0.00810 0.12057 0.15076 +v -0.00561 0.11592 0.15090 +v 0.00362 0.12255 0.15198 +v 0.00038 0.12383 0.14968 +v 0.00289 0.12303 0.15094 +v -0.00117 0.12389 0.14920 +v 0.00453 0.12219 0.15324 +v 0.00497 0.11838 0.16503 +v 0.00415 0.11805 0.16570 +v 0.00348 0.11759 0.16603 +v 0.00588 0.12115 0.16022 +v 0.00628 0.11992 0.16136 +v 0.00628 0.11922 0.16207 +v 0.00635 0.11869 0.16300 +v -0.00184 0.10973 0.16117 +v -0.00167 0.10916 0.16258 +v -0.00188 0.10858 0.16567 +v 0.00173 0.11085 0.16946 +v 0.00347 0.11671 0.16710 +v -0.00324 0.11022 0.15819 +v -0.00426 0.11396 0.15197 +v -0.00396 0.11419 0.15187 +v -0.00460 0.11066 0.15605 +v -0.00575 0.11201 0.15353 +v -0.00492 0.11136 0.15511 +v -0.00557 0.11244 0.15324 +v -0.00643 0.12202 0.15002 +v -0.00752 0.12192 0.15015 +v -0.01046 0.11983 0.15135 +v -0.00694 0.11561 0.15134 +v -0.00545 0.11437 0.15155 +v -0.00449 0.11449 0.15149 +v 0.00136 0.12413 0.14922 +v -0.00008 0.12361 0.14974 +v 0.00262 0.12393 0.14943 +v -0.00303 0.12381 0.14938 +v -0.00238 0.12422 0.14892 +v 0.00564 0.11849 0.16503 +v 0.00339 0.11734 0.16648 +v 0.00688 0.12085 0.16016 +v 0.00662 0.11847 0.16398 +v 0.00822 0.12103 0.15820 +v 0.00598 0.12198 0.15315 +v -0.00283 0.10954 0.16105 +v -0.00298 0.11006 0.15909 +v -0.00215 0.10927 0.16194 +v -0.00170 0.10883 0.16394 +v -0.00192 0.10879 0.16341 +v -0.00240 0.10846 0.16458 +v -0.00159 0.10827 0.16682 +v 0.00018 0.10907 0.16826 +v 0.00367 0.11454 0.16958 +v 0.00343 0.11569 0.16798 +v -0.00433 0.11021 0.15694 +v -0.00405 0.10999 0.15798 +v -0.00599 0.11132 0.15402 +v -0.00548 0.11107 0.15479 +v -0.00598 0.11295 0.15270 +v -0.00527 0.11368 0.15216 +v -0.00428 0.12387 0.14929 +v -0.00711 0.12328 0.14928 +v -0.00856 0.12203 0.15048 +v -0.00921 0.11662 0.15161 +v -0.01034 0.12139 0.15129 +v 0.00507 0.12246 0.15192 +v 0.00405 0.12303 0.15089 +v 0.00097 0.12445 0.14869 +v -0.00030 0.12416 0.14897 +v -0.00319 0.12427 0.14900 +v -0.00180 0.12441 0.14860 +v 0.00501 0.11827 0.16599 +v 0.00390 0.11773 0.16659 +v 0.00788 0.11993 0.16098 +v 0.00808 0.11952 0.16136 +v 0.00726 0.11886 0.16242 +v 0.00728 0.11853 0.16323 +v 0.00807 0.12119 0.15561 +v 0.00779 0.12095 0.15926 +v -0.00324 0.10974 0.16056 +v -0.00233 0.10883 0.16277 +v -0.00324 0.10782 0.16546 +v -0.00258 0.10771 0.16647 +v -0.00089 0.10818 0.16777 +v -0.00003 0.10734 0.16964 +v 0.00418 0.11239 0.17382 +v 0.00441 0.11661 0.16825 +v -0.00389 0.10985 0.15883 +v -0.00537 0.10962 0.15643 +v -0.00555 0.11030 0.15544 +v -0.00640 0.11207 0.15319 +v -0.00736 0.11075 0.15362 +v -0.00580 0.12359 0.14921 +v -0.00833 0.12285 0.14987 +v -0.00913 0.12166 0.15090 +v -0.01215 0.11899 0.15168 +v -0.01114 0.12156 0.15130 +v -0.00813 0.11443 0.15205 +v 0.00168 0.12452 0.14835 +v -0.00110 0.12440 0.14845 +v -0.00209 0.12468 0.14802 +v 0.00551 0.11829 0.16614 +v 0.00796 0.11824 0.16548 +v 0.00454 0.11807 0.16648 +v 0.00836 0.12038 0.16031 +v 0.00879 0.11827 0.16430 +v 0.00953 0.12087 0.15767 +v 0.00975 0.12066 0.15918 +v 0.00710 0.12206 0.15197 +v 0.00841 0.12157 0.15358 +v -0.00361 0.10940 0.16098 +v -0.00310 0.10903 0.16189 +v -0.00339 0.10816 0.16430 +v -0.00242 0.10724 0.16729 +v 0.00194 0.10831 0.17181 +v 0.00495 0.11518 0.17105 +v 0.00427 0.11749 0.16721 +v -0.00493 0.10956 0.15764 +v -0.00457 0.10971 0.15804 +v -0.00641 0.11044 0.15435 +v -0.00750 0.11269 0.15275 +v -0.00585 0.12414 0.14870 +v -0.00450 0.12432 0.14883 +v -0.00900 0.12280 0.15028 +v -0.00933 0.12246 0.15071 +v -0.01252 0.12070 0.15144 +v -0.01142 0.11457 0.15228 +v -0.01001 0.12219 0.15103 +v -0.01097 0.12236 0.15111 +v -0.01198 0.12154 0.15124 +v 0.00526 0.12292 0.15080 +v -0.00001 0.12457 0.14813 +v 0.00503 0.12356 0.14990 +v -0.00307 0.12459 0.14853 +v 0.00606 0.11827 0.16608 +v 0.00538 0.11786 0.16708 +v 0.00447 0.11790 0.16687 +v 0.00904 0.11975 0.16117 +v 0.00811 0.11902 0.16200 +v 0.00826 0.11858 0.16286 +v 0.00888 0.12105 0.15594 +v 0.00654 0.12253 0.15084 +v -0.00380 0.10958 0.16037 +v -0.00318 0.10868 0.16267 +v -0.00395 0.10771 0.16496 +v -0.00345 0.10720 0.16632 +v -0.00196 0.10682 0.16818 +v 0.00094 0.10551 0.17177 +v 0.00300 0.10613 0.17465 +v 0.00548 0.11496 0.17222 +v 0.00491 0.11607 0.16962 +v -0.00620 0.10900 0.15575 +v -0.00563 0.10894 0.15720 +v -0.00695 0.10994 0.15415 +v -0.00697 0.10950 0.15437 +v -0.00390 0.12473 0.14834 +v -0.00840 0.12359 0.14922 +v -0.00698 0.12427 0.14816 +v -0.00936 0.12348 0.14973 +v -0.01420 0.12093 0.15160 +v -0.01172 0.12232 0.15109 +v -0.00083 0.12478 0.14721 +v -0.00317 0.12493 0.14772 +v 0.00702 0.11811 0.16663 +v 0.00970 0.11822 0.16542 +v 0.00877 0.11897 0.16206 +v 0.01016 0.12023 0.16055 +v 0.00904 0.11835 0.16362 +v 0.01161 0.12086 0.15724 +v 0.00751 0.12239 0.15078 +v 0.00853 0.12221 0.15144 +v 0.01128 0.12135 0.15455 +v -0.00425 0.10915 0.16076 +v -0.00432 0.10854 0.16191 +v -0.00408 0.10821 0.16332 +v -0.00462 0.10770 0.16416 +v -0.00416 0.10732 0.16551 +v -0.00324 0.10601 0.16794 +v -0.00072 0.10494 0.17051 +v -0.00140 0.10589 0.16939 +v 0.00586 0.10848 0.18050 +v 0.00598 0.11610 0.17104 +v 0.00577 0.11475 0.17329 +v 0.00560 0.11635 0.17019 +v 0.00605 0.11704 0.16911 +v -0.00536 0.10902 0.15863 +v -0.00499 0.10906 0.15970 +v -0.00585 0.10884 0.15657 +v -0.00947 0.11145 0.15302 +v -0.00765 0.10920 0.15418 +v -0.00484 0.12476 0.14811 +v -0.00788 0.12396 0.14863 +v -0.00585 0.12459 0.14811 +v -0.00949 0.12305 0.15039 +v -0.00988 0.12290 0.15069 +v -0.01325 0.12181 0.15121 +v -0.01067 0.12312 0.15061 +v -0.01173 0.12306 0.15064 +v -0.01271 0.12270 0.15077 +v 0.00598 0.12318 0.15013 +v -0.00223 0.12493 0.14659 +v 0.00850 0.11802 0.16751 +v 0.00991 0.11834 0.16429 +v 0.00951 0.11811 0.16675 +v 0.00980 0.11922 0.16206 +v 0.01023 0.11985 0.16131 +v 0.00934 0.11864 0.16279 +v 0.01134 0.12051 0.15994 +v 0.00703 0.12244 0.15060 +v 0.01027 0.12223 0.15165 +v 0.01012 0.12161 0.15347 +v -0.00450 0.10727 0.16503 +v -0.00431 0.10651 0.16621 +v -0.00226 0.10550 0.16911 +v 0.00010 0.10375 0.17167 +v 0.00128 0.10359 0.17284 +v 0.00409 0.10575 0.17701 +v 0.00448 0.11337 0.17726 +v 0.00662 0.11590 0.17211 +v 0.00556 0.11457 0.17474 +v 0.00682 0.11774 0.16790 +v -0.00638 0.10808 0.15634 +v -0.00692 0.10903 0.15484 +v -0.00612 0.10815 0.15711 +v -0.00605 0.10813 0.15812 +v -0.01023 0.10780 0.15384 +v -0.00408 0.12500 0.14767 +v -0.00927 0.12409 0.14870 +v -0.00639 0.12470 0.14756 +v -0.00804 0.12438 0.14787 +v -0.01003 0.12339 0.15026 +v -0.01461 0.12204 0.15132 +v 0.00714 0.12265 0.15034 +v -0.00362 0.12505 0.14692 +v 0.01118 0.11840 0.16560 +v 0.01062 0.11820 0.16623 +v 0.01117 0.11970 0.16199 +v 0.00989 0.11849 0.16341 +v 0.01403 0.12077 0.15796 +v 0.01229 0.12120 0.15604 +v 0.01249 0.12020 0.16150 +v 0.00827 0.12254 0.15063 +v 0.00907 0.12274 0.15061 +v 0.01193 0.12172 0.15278 +v -0.00497 0.10857 0.16090 +v -0.00472 0.10794 0.16314 +v -0.00471 0.10751 0.16443 +v -0.00417 0.10547 0.16744 +v -0.00290 0.10437 0.16964 +v -0.00103 0.10350 0.17123 +v 0.00226 0.10324 0.17419 +v 0.00337 0.10313 0.17631 +v 0.00400 0.11364 0.17609 +v 0.00579 0.11498 0.17924 +v 0.00618 0.11669 0.17022 +v 0.00711 0.11678 0.17057 +v 0.00441 0.11408 0.17558 +v 0.00718 0.11574 0.17369 +v 0.00807 0.11751 0.16898 +v -0.00555 0.10849 0.16000 +v -0.00704 0.10783 0.15558 +v -0.00621 0.10772 0.15976 +v -0.01275 0.11101 0.15277 +v -0.00790 0.10808 0.15473 +v -0.00545 0.12491 0.14763 +v -0.00487 0.12498 0.14704 +v -0.01022 0.12402 0.14919 +v -0.00722 0.12465 0.14704 +v -0.01056 0.12391 0.14968 +v -0.01389 0.12277 0.15079 +v -0.01068 0.12373 0.14999 +v -0.01276 0.12365 0.14994 +v -0.00377 0.12488 0.14525 +v 0.00944 0.11786 0.16810 +v 0.01098 0.11880 0.16375 +v 0.01132 0.11803 0.16776 +v 0.01016 0.11879 0.16289 +v 0.01346 0.12055 0.16000 +v 0.01277 0.12141 0.15549 +v 0.00825 0.12281 0.15026 +v 0.01029 0.12336 0.15005 +v 0.01254 0.12154 0.15404 +v -0.00516 0.10792 0.16181 +v -0.00503 0.10754 0.16365 +v -0.00507 0.10716 0.16419 +v -0.00519 0.10491 0.16651 +v -0.00389 0.10428 0.16888 +v -0.00188 0.10415 0.17039 +v 0.00035 0.10290 0.17228 +v -0.00072 0.10294 0.17176 +v 0.00136 0.10239 0.17348 +v 0.00469 0.10131 0.17855 +v 0.00489 0.11507 0.17782 +v 0.00810 0.11783 0.18193 +v 0.00825 0.11658 0.17191 +v 0.00508 0.11469 0.17582 +v 0.00673 0.11548 0.17524 +v -0.00695 0.10715 0.15609 +v -0.00689 0.10664 0.15692 +v -0.00656 0.10716 0.15762 +v -0.00699 0.10637 0.16010 +v -0.01980 0.10558 0.15278 +v -0.00839 0.10714 0.15489 +v -0.01026 0.12432 0.14847 +v -0.00927 0.12446 0.14787 +v -0.00586 0.12489 0.14680 +v -0.00876 0.12465 0.14680 +v -0.01396 0.12337 0.15027 +v -0.01498 0.12304 0.15079 +v 0.01234 0.11884 0.16520 +v 0.01096 0.11929 0.16261 +v 0.01242 0.11974 0.16288 +v 0.01493 0.12083 0.15821 +v 0.01498 0.12119 0.15664 +v 0.01378 0.12138 0.15574 +v 0.01395 0.12039 0.16156 +v 0.01161 0.12277 0.15053 +v 0.01214 0.12211 0.15137 +v 0.01383 0.12159 0.15326 +v -0.00568 0.10736 0.16184 +v -0.00544 0.10728 0.16294 +v -0.00472 0.10420 0.16801 +v -0.00340 0.10340 0.17027 +v -0.00264 0.10335 0.17082 +v 0.00070 0.10254 0.17281 +v -0.00168 0.10290 0.17163 +v 0.00204 0.10199 0.17455 +v 0.00618 0.09819 0.18138 +v 0.00342 0.10041 0.17720 +v 0.00406 0.11427 0.17637 +v 0.00429 0.11454 0.17700 +v 0.00549 0.11631 0.17833 +v 0.00626 0.11848 0.17936 +v 0.00991 0.11819 0.18630 +v 0.00877 0.11703 0.17079 +v 0.00422 0.11445 0.17617 +v 0.00600 0.11521 0.17601 +v 0.00833 0.11641 0.17509 +v 0.00910 0.11647 0.17335 +v -0.00592 0.10794 0.16024 +v -0.00765 0.10664 0.15571 +v -0.00722 0.10588 0.15910 +v -0.00626 0.10704 0.16104 +v -0.01211 0.10395 0.15386 +v -0.00872 0.10580 0.15510 +v -0.00715 0.12469 0.14587 +v -0.01220 0.12419 0.14912 +v -0.01410 0.12405 0.14946 +v 0.01039 0.11739 0.17003 +v 0.01269 0.11847 0.16680 +v 0.01350 0.12005 0.16294 +v 0.01561 0.12056 0.16092 +v 0.01352 0.12154 0.15473 +v 0.01178 0.12377 0.14961 +v 0.01319 0.12174 0.15197 +v -0.00615 0.10432 0.16530 +v -0.00517 0.10296 0.16857 +v -0.00436 0.10334 0.16929 +v -0.00035 0.10252 0.17240 +v 0.00234 0.10155 0.17533 +v 0.00045 0.10207 0.17337 +v 0.00115 0.10182 0.17399 +v 0.00726 0.09869 0.18877 +v 0.00480 0.09885 0.17896 +v 0.00218 0.10080 0.17623 +v 0.00411 0.09946 0.17800 +v 0.00397 0.11394 0.17672 +v 0.00479 0.11522 0.17714 +v 0.00508 0.11571 0.17774 +v 0.00751 0.12063 0.18070 +v 0.00989 0.11945 0.18401 +v 0.00842 0.11231 0.19140 +v 0.00984 0.11685 0.17186 +v 0.00491 0.11497 0.17648 +v 0.00695 0.11607 0.17611 +v 0.00641 0.11547 0.17602 +v -0.00746 0.10586 0.15669 +v -0.00725 0.10584 0.15749 +v -0.00784 0.10455 0.15903 +v -0.00719 0.10530 0.16125 +v -0.00980 0.10474 0.15449 +v -0.01343 0.09996 0.15424 +v -0.01156 0.12446 0.14845 +v -0.01043 0.12463 0.14751 +v -0.00614 0.12462 0.14369 +v -0.00898 0.12470 0.14554 +v -0.01581 0.12393 0.14995 +v 0.01377 0.11958 0.16451 +v 0.01400 0.11896 0.16622 +v 0.01363 0.11828 0.16804 +v 0.01620 0.12080 0.15896 +v 0.01585 0.12135 0.15593 +v 0.01417 0.12152 0.15518 +v 0.01522 0.12044 0.16282 +v 0.01247 0.12245 0.15069 +v 0.01275 0.12301 0.15013 +v 0.01342 0.12224 0.15094 +v 0.01403 0.12162 0.15211 +v -0.00628 0.10628 0.16229 +v -0.00708 0.10422 0.16327 +v -0.00663 0.10234 0.16692 +v -0.00389 0.10254 0.17081 +v -0.00258 0.10248 0.17194 +v -0.00176 0.10230 0.17250 +v 0.00196 0.10140 0.17486 +v 0.00136 0.10141 0.17469 +v 0.00469 0.09745 0.17942 +v 0.00252 0.09953 0.17722 +v 0.00337 0.09895 0.17773 +v 0.00436 0.11473 0.17661 +v 0.00439 0.11488 0.17693 +v 0.00589 0.11731 0.17806 +v 0.00545 0.11615 0.17756 +v 0.00904 0.12081 0.18170 +v 0.00585 0.12155 0.17947 +v 0.01016 0.12056 0.18297 +v 0.01096 0.12053 0.18457 +v 0.00552 0.11557 0.17685 +v 0.00788 0.11714 0.17625 +v -0.00832 0.10503 0.15595 +v -0.00796 0.10441 0.15808 +v -0.00782 0.10447 0.16003 +v -0.01033 0.10349 0.15439 +v -0.01083 0.10228 0.15464 +v -0.01820 0.09189 0.15415 +v -0.00903 0.10438 0.15526 +v -0.01062 0.12479 0.14620 +v -0.00866 0.12457 0.14358 +v -0.01336 0.12451 0.14844 +v -0.01524 0.12428 0.14930 +v 0.01431 0.12016 0.16350 +v 0.01802 0.12071 0.15897 +v 0.01380 0.12175 0.15159 +v 0.01586 0.12161 0.15363 +v 0.01479 0.12165 0.15244 +v -0.00762 0.10231 0.16500 +v -0.00471 0.10168 0.17067 +v -0.00343 0.10194 0.17208 +v -0.00088 0.10197 0.17340 +v 0.00175 0.10113 0.17527 +v 0.00034 0.10161 0.17428 +v 0.00539 0.09624 0.18021 +v 0.00402 0.09832 0.17837 +v 0.00093 0.09948 0.17724 +v 0.00857 0.12223 0.18064 +v 0.00724 0.12208 0.18028 +v 0.01251 0.12184 0.18584 +v 0.00687 0.11702 0.17685 +v 0.00573 0.11631 0.17738 +v -0.00826 0.10432 0.15692 +v -0.00867 0.10262 0.15930 +v -0.00840 0.10280 0.16127 +v -0.00962 0.10331 0.15512 +v -0.01091 0.10092 0.15538 +v -0.01276 0.09617 0.15491 +v -0.01195 0.12481 0.14708 +v -0.01190 0.12480 0.14571 +v -0.01270 0.12474 0.14770 +v -0.01473 0.12450 0.14877 +v -0.01594 0.12437 0.14922 +v 0.01522 0.11883 0.16719 +v 0.01502 0.12004 0.16410 +v 0.01768 0.12029 0.16171 +v 0.01373 0.12295 0.15017 +v 0.01453 0.12191 0.15149 +v -0.00822 0.10202 0.16389 +v -0.00849 0.10040 0.16564 +v -0.00421 0.10147 0.17184 +v -0.00260 0.10158 0.17324 +v 0.00058 0.10092 0.17559 +v 0.00391 0.09604 0.17976 +v 0.00636 0.09518 0.18079 +v 0.00355 0.09752 0.17871 +v 0.00254 0.09832 0.17804 +v 0.00339 0.09820 0.17814 +v 0.01065 0.12201 0.18159 +v 0.00683 0.12267 0.17971 +v 0.01191 0.12178 0.18346 +v 0.01173 0.12190 0.18829 +v -0.00940 0.10298 0.15583 +v -0.00776 0.10365 0.16221 +v -0.00996 0.10224 0.15564 +v -0.01143 0.09903 0.15547 +v -0.01390 0.09383 0.15475 +v -0.01313 0.12452 0.14333 +v -0.01343 0.12481 0.14681 +v -0.01446 0.12473 0.14790 +v -0.01648 0.12410 0.14965 +v -0.01555 0.12462 0.14836 +v 0.01895 0.12038 0.16018 +v 0.01838 0.12103 0.15693 +v 0.01789 0.12146 0.15402 +v 0.01482 0.12273 0.15053 +v 0.01560 0.12191 0.15198 +v -0.00389 0.10108 0.17265 +v -0.00070 0.10146 0.17474 +v -0.00164 0.10156 0.17422 +v 0.00546 0.09480 0.18050 +v 0.00721 0.09438 0.18188 +v -0.00041 0.10038 0.17655 +v 0.00137 0.09776 0.17857 +v 0.00637 0.11756 0.17745 +v 0.00759 0.12259 0.18026 +v 0.00999 0.12276 0.18007 +v 0.00571 0.12275 0.17916 +v 0.01293 0.12277 0.18761 +v 0.01390 0.12251 0.18389 +v -0.00935 0.10256 0.15678 +v -0.00898 0.10218 0.15877 +v -0.00944 0.10110 0.15997 +v -0.00868 0.10191 0.16238 +v -0.01006 0.10148 0.15654 +v -0.01064 0.10026 0.15627 +v -0.01123 0.09760 0.15579 +v -0.01225 0.09479 0.15554 +v -0.01401 0.09300 0.15529 +v -0.01688 0.12338 0.15051 +v -0.01652 0.12447 0.14881 +v 0.01981 0.12082 0.15837 +v 0.01903 0.11999 0.16179 +v 0.01705 0.12201 0.15233 +v 0.01519 0.12372 0.14955 +v 0.01525 0.12219 0.15123 +v -0.00931 0.10002 0.16371 +v -0.00358 0.10071 0.17350 +v -0.00234 0.10112 0.17460 +v -0.00094 0.10098 0.17573 +v 0.00378 0.09438 0.18081 +v 0.00266 0.09714 0.17892 +v 0.00639 0.09414 0.18083 +v 0.00684 0.09418 0.18102 +v -0.00114 0.09968 0.17746 +v 0.00781 0.12283 0.17997 +v 0.01157 0.12263 0.18009 +v 0.00867 0.12297 0.17962 +v 0.01315 0.12245 0.18157 +v 0.00647 0.12304 0.17902 +v 0.00493 0.12258 0.17907 +v 0.01280 0.12310 0.18888 +v 0.01404 0.12302 0.18692 +v 0.01469 0.12289 0.18561 +v -0.01082 0.09894 0.15695 +v -0.01132 0.09630 0.15574 +v -0.01445 0.09146 0.15657 +v -0.01495 0.12476 0.14663 +v -0.01437 0.12487 0.14719 +v -0.01740 0.12389 0.14964 +v -0.01697 0.12427 0.14921 +v -0.01657 0.12462 0.14745 +v 0.02033 0.12049 0.15927 +v 0.02034 0.12003 0.16070 +v 0.01854 0.11994 0.16332 +v 0.02070 0.12123 0.15495 +v 0.01842 0.12123 0.15523 +v 0.01869 0.12180 0.15285 +v 0.01625 0.12319 0.15026 +v 0.01606 0.12248 0.15115 +v -0.01073 0.09720 0.16335 +v -0.00316 0.10069 0.17422 +v -0.00427 0.10015 0.17320 +v -0.00155 0.10128 0.17503 +v 0.00595 0.09359 0.18134 +v 0.00197 0.09624 0.17964 +v 0.00682 0.09373 0.18130 +v -0.00149 0.10049 0.17651 +v -0.00185 0.09862 0.17841 +v 0.00572 0.12304 0.17864 +v 0.00746 0.12306 0.17924 +v 0.00495 0.12293 0.17872 +v 0.00449 0.12229 0.17895 +v 0.01212 0.12297 0.18971 +v 0.01372 0.12343 0.18890 +v 0.01522 0.12266 0.18248 +v 0.01596 0.12290 0.18421 +v -0.00971 0.10105 0.15863 +v -0.01028 0.09974 0.15909 +v -0.01029 0.10054 0.15721 +v -0.00979 0.10152 0.15745 +v -0.01099 0.09730 0.15639 +v -0.01288 0.09372 0.15637 +v -0.01135 0.09566 0.15599 +v -0.01591 0.08711 0.15715 +v -0.01671 0.12449 0.14472 +v -0.01839 0.12397 0.14920 +v -0.01746 0.12438 0.14854 +v 0.02101 0.12083 0.15775 +v 0.02022 0.11975 0.16226 +v 0.01951 0.12121 0.15500 +v 0.01914 0.12128 0.15420 +v 0.01842 0.12222 0.15196 +v 0.01646 0.12395 0.14924 +v 0.01705 0.12265 0.15121 +v -0.01090 0.09733 0.16244 +v -0.01011 0.09697 0.16524 +v -0.00393 0.09999 0.17416 +v -0.00204 0.10081 0.17565 +v -0.00300 0.10044 0.17518 +v 0.00037 0.09517 0.18058 +v 0.00712 0.09312 0.18211 +v -0.00213 0.10011 0.17697 +v -0.00186 0.09949 0.17786 +v 0.00649 0.12311 0.17857 +v 0.00426 0.12276 0.17869 +v 0.01136 0.12238 0.19024 +v 0.01291 0.12346 0.19006 +v 0.01516 0.12324 0.18661 +v 0.01533 0.12342 0.18779 +v 0.01528 0.12257 0.18101 +v 0.01668 0.12325 0.18624 +v -0.01055 0.09958 0.15795 +v -0.01131 0.09710 0.15735 +v -0.01114 0.09634 0.15636 +v -0.01179 0.09541 0.15658 +v -0.01436 0.08984 0.15834 +v -0.01324 0.09347 0.15760 +v -0.01811 0.12455 0.14706 +v 0.02167 0.11985 0.16086 +v 0.02157 0.12047 0.15907 +v 0.02006 0.11970 0.16385 +v 0.02161 0.12128 0.15448 +v 0.01987 0.12146 0.15379 +v 0.02034 0.12214 0.15211 +v 0.01691 0.12297 0.15076 +v 0.01736 0.12347 0.14989 +v -0.01150 0.09549 0.16310 +v -0.01106 0.09511 0.16480 +v -0.00225 0.10046 0.17633 +v -0.00209 0.09961 0.17775 +v 0.00818 0.12313 0.17876 +v 0.00445 0.12289 0.17834 +v 0.01220 0.12331 0.19110 +v 0.01339 0.12369 0.19087 +v 0.01442 0.12368 0.19011 +v 0.01743 0.12271 0.18250 +v 0.01836 0.12299 0.18431 +v -0.01070 0.09825 0.16083 +v -0.01080 0.09903 0.15761 +v -0.01086 0.09864 0.15810 +v -0.01254 0.09467 0.15721 +v -0.01489 0.08770 0.15962 +v -0.01369 0.09195 0.15823 +v 0.02193 0.12088 0.15760 +v 0.02219 0.11979 0.16203 +v 0.02017 0.11956 0.16513 +v 0.02086 0.11968 0.16290 +v 0.01937 0.12255 0.15135 +v 0.01788 0.12397 0.14931 +v -0.01206 0.09514 0.16149 +v -0.00385 0.09971 0.17537 +v -0.00271 0.10031 0.17617 +v -0.00189 0.09563 0.18037 +v -0.00287 0.09968 0.17724 +v -0.00313 0.09892 0.17799 +v 0.01921 0.12327 0.18656 +v 0.01746 0.12248 0.18054 +v -0.01168 0.09647 0.16049 +v -0.01136 0.09748 0.15871 +v -0.01212 0.09581 0.15763 +v -0.01401 0.09003 0.15995 +v -0.01370 0.09116 0.15919 +v -0.01246 0.09571 0.15830 +v -0.01329 0.09331 0.15863 +v 0.02257 0.11994 0.16077 +v 0.02271 0.12077 0.15849 +v 0.02175 0.11967 0.16401 +v 0.02125 0.12160 0.15327 +v 0.02263 0.12123 0.15542 +v 0.02121 0.12277 0.15098 +v 0.01817 0.12360 0.14970 +v -0.01175 0.09439 0.16401 +v -0.01210 0.09435 0.16267 +v -0.00356 0.09966 0.17644 +v -0.00288 0.09716 0.17935 +v -0.00238 0.09404 0.18155 +v -0.00279 0.09816 0.17867 +v 0.01295 0.12372 0.19202 +v 0.01382 0.12384 0.19198 +v 0.01857 0.12346 0.18945 +v 0.01963 0.12245 0.18205 +v 0.01846 0.12251 0.18136 +v 0.02129 0.12292 0.18596 +v -0.01137 0.09728 0.15953 +v -0.01189 0.09661 0.15830 +v -0.01401 0.09010 0.16136 +v -0.01301 0.09272 0.16066 +v -0.01306 0.09428 0.15853 +v 0.02309 0.12115 0.15696 +v 0.02355 0.12008 0.16115 +v 0.02198 0.11949 0.16577 +v 0.02222 0.12129 0.15417 +v 0.02250 0.12168 0.15293 +v 0.01912 0.12310 0.15051 +v 0.02269 0.12213 0.15201 +v 0.01915 0.12376 0.14975 +v -0.01255 0.09512 0.15984 +v -0.01261 0.09361 0.16152 +v -0.00485 0.09885 0.17632 +v -0.00366 0.09608 0.18006 +v -0.00396 0.09502 0.18087 +v -0.00387 0.09917 0.17720 +v -0.00405 0.09794 0.17855 +v 0.01489 0.12388 0.19269 +v 0.02055 0.12323 0.18780 +v 0.01923 0.12226 0.18034 +v -0.01214 0.09634 0.15898 +v -0.01342 0.09151 0.16028 +v -0.01360 0.09087 0.16080 +v -0.01451 0.08864 0.16143 +v -0.01267 0.09527 0.15896 +v -0.01296 0.09412 0.15945 +v 0.02413 0.12093 0.15894 +v 0.02432 0.12140 0.15717 +v 0.02433 0.12049 0.16032 +v 0.02444 0.12010 0.16179 +v 0.02347 0.11975 0.16467 +v 0.02354 0.12141 0.15501 +v 0.02130 0.12389 0.14944 +v 0.01868 0.12431 0.14924 +v -0.01250 0.09324 0.16322 +v -0.01226 0.09587 0.15964 +v -0.00519 0.09675 0.17945 +v -0.00404 0.09872 0.17778 +v 0.01354 0.12384 0.19314 +v 0.01828 0.12363 0.19264 +v 0.02234 0.12315 0.18867 +v 0.02244 0.12237 0.18404 +v 0.02417 0.12284 0.18683 +v -0.01322 0.09188 0.16175 +v -0.01427 0.08979 0.16244 +v -0.01468 0.08621 0.16198 +v 0.02529 0.11958 0.16734 +v 0.02373 0.12166 0.15356 +v 0.02359 0.12199 0.15256 +v 0.02332 0.12210 0.15211 +v 0.01891 0.12456 0.14884 +v 0.01903 0.12445 0.14928 +v -0.00504 0.09851 0.17725 +v 0.01450 0.12394 0.19360 +v 0.02145 0.12337 0.19206 +v 0.02285 0.12322 0.19155 +v 0.02203 0.12201 0.18222 +v 0.02076 0.12191 0.18039 +v -0.01379 0.09092 0.16269 +v -0.01453 0.08862 0.16293 +v 0.02619 0.12145 0.15885 +v 0.02639 0.12190 0.15762 +v 0.02496 0.12187 0.15440 +v 0.02527 0.12048 0.16075 +v 0.02607 0.12001 0.16445 +v 0.02029 0.12409 0.14929 +v 0.02352 0.12305 0.15082 +v 0.01946 0.12439 0.14913 +v -0.01298 0.09239 0.16384 +v -0.00529 0.09780 0.17833 +v 0.01411 0.12387 0.19491 +v 0.02055 0.12354 0.19381 +v 0.01750 0.12370 0.19467 +v 0.02464 0.12291 0.18822 +v 0.02395 0.12304 0.19131 +v 0.02449 0.12186 0.18360 +v 0.02483 0.12249 0.18571 +v -0.01407 0.09068 0.16325 +v -0.01438 0.08983 0.16333 +v -0.01437 0.08729 0.16403 +v 0.02609 0.12203 0.15666 +v 0.02548 0.12026 0.16162 +v 0.02719 0.11982 0.16703 +v 0.02462 0.12210 0.15302 +v 0.02454 0.12248 0.15212 +v 0.02089 0.12426 0.14892 +v 0.02475 0.12297 0.15141 +v 0.02448 0.12344 0.15033 +v 0.01461 0.12374 0.19741 +v 0.02284 0.12351 0.19378 +v 0.01713 0.12362 0.19741 +v 0.02653 0.12254 0.18773 +v 0.02389 0.12317 0.19268 +v 0.02367 0.12136 0.18137 +v 0.02680 0.12239 0.18675 +v -0.01445 0.08950 0.16450 +v -0.01349 0.08368 0.16493 +v 0.02779 0.12167 0.15872 +v 0.02754 0.12115 0.16035 +v 0.02725 0.12222 0.15676 +v 0.02667 0.12232 0.15586 +v 0.02662 0.12054 0.16152 +v 0.02757 0.12033 0.16424 +v 0.02937 0.12029 0.16588 +v 0.02635 0.11966 0.16851 +v 0.02590 0.12226 0.15375 +v 0.01870 0.12360 0.19691 +v 0.02249 0.12353 0.19435 +v 0.02617 0.12263 0.18991 +v 0.02582 0.12263 0.19197 +v 0.02628 0.12220 0.18564 +v 0.02590 0.12106 0.18236 +v -0.01412 0.09073 0.16414 +v -0.01417 0.08782 0.16607 +v 0.02961 0.12030 0.16677 +v 0.02747 0.11987 0.16805 +v 0.02586 0.12265 0.15228 +v 0.02516 0.12288 0.15161 +v 0.02681 0.12328 0.15070 +v 0.02333 0.12348 0.19389 +v 0.02096 0.12348 0.19600 +v 0.02170 0.12353 0.19468 +v 0.02862 0.12210 0.18973 +v 0.02462 0.12295 0.19327 +v 0.02610 0.11986 0.17906 +v 0.02865 0.12124 0.18502 +v 0.02902 0.12144 0.16007 +v 0.02887 0.12222 0.15652 +v 0.02822 0.12090 0.16196 +v 0.02755 0.12260 0.15539 +v 0.02733 0.12259 0.15467 +v 0.02938 0.12097 0.16329 +v 0.03053 0.12061 0.16560 +v 0.02959 0.12037 0.16802 +v 0.02759 0.12002 0.16931 +v 0.02718 0.12268 0.15319 +v 0.02277 0.12332 0.19523 +v 0.02897 0.12196 0.18853 +v 0.02584 0.12250 0.19444 +v 0.02683 0.12007 0.18022 +v 0.02867 0.12171 0.18649 +v 0.02887 0.12172 0.15870 +v 0.02781 0.12249 0.15591 +v 0.03044 0.12091 0.16408 +v 0.03131 0.12075 0.16682 +v 0.02621 0.11962 0.17033 +v 0.02712 0.12296 0.15174 +v 0.02791 0.12381 0.14991 +v 0.02415 0.12305 0.19443 +v 0.02792 0.12030 0.18182 +v 0.02774 0.11959 0.17888 +v 0.03090 0.12110 0.18580 +v 0.03019 0.12124 0.16216 +v 0.03010 0.12163 0.15947 +v 0.03018 0.12180 0.15808 +v 0.02818 0.12261 0.15513 +v 0.02824 0.12279 0.15369 +v 0.03199 0.12110 0.16416 +v 0.03288 0.12116 0.16505 +v 0.03219 0.12118 0.16849 +v 0.02820 0.12040 0.17073 +v 0.02842 0.12303 0.15216 +v 0.02816 0.12335 0.15087 +v 0.02256 0.12319 0.19650 +v 0.02439 0.12276 0.19624 +v 0.03072 0.12157 0.18797 +v 0.02978 0.11990 0.18200 +v 0.02870 0.11971 0.18027 +v 0.03057 0.12041 0.18384 +v 0.03067 0.12201 0.15652 +v 0.02923 0.12265 0.15448 +v 0.03332 0.12126 0.16645 +v 0.02788 0.12031 0.17139 +v 0.02938 0.12373 0.15015 +v 0.02923 0.11950 0.17898 +v 0.03194 0.12054 0.18437 +v 0.03361 0.12142 0.16316 +v 0.03146 0.12169 0.15928 +v 0.03173 0.12211 0.15514 +v 0.03060 0.12247 0.15448 +v 0.02973 0.12310 0.15217 +v 0.03423 0.12140 0.16503 +v 0.03071 0.12100 0.17035 +v 0.03434 0.12162 0.16735 +v 0.02979 0.12077 0.17197 +v 0.02977 0.12336 0.15116 +v 0.03174 0.11996 0.18304 +v 0.02972 0.11951 0.18004 +v 0.02846 0.11949 0.17808 +v 0.03330 0.12170 0.16027 +v 0.03287 0.12196 0.15568 +v 0.03118 0.12293 0.15243 +v 0.03562 0.12166 0.16585 +v 0.03309 0.12170 0.17056 +v 0.03449 0.12193 0.16899 +v 0.03022 0.12072 0.17330 +v 0.03001 0.12369 0.15041 +v 0.02977 0.12412 0.14971 +v 0.03196 0.11959 0.18198 +v 0.03157 0.11948 0.18106 +v 0.03142 0.11942 0.17939 +v 0.02978 0.11958 0.17798 +v 0.03282 0.12021 0.18341 +v 0.03300 0.12073 0.18439 +v 0.03561 0.12171 0.16217 +v 0.03290 0.12204 0.15463 +v 0.03271 0.12253 0.15272 +v 0.03085 0.12336 0.15119 +v 0.03572 0.12160 0.16446 +v 0.03156 0.12128 0.17216 +v 0.03640 0.12191 0.16679 +v 0.03672 0.12236 0.16865 +v 0.02933 0.12039 0.17389 +v 0.03251 0.11975 0.18255 +v 0.03498 0.12207 0.15810 +v 0.03410 0.12202 0.15659 +v 0.03460 0.12225 0.15383 +v 0.03262 0.12317 0.15114 +v 0.03757 0.12178 0.16487 +v 0.03538 0.12236 0.16991 +v 0.03317 0.12177 0.17229 +v 0.03125 0.12101 0.17334 +v 0.03029 0.12041 0.17446 +v 0.03079 0.12413 0.14982 +v 0.03107 0.12373 0.15038 +v 0.03245 0.11948 0.18103 +v 0.03281 0.11959 0.18187 +v 0.03154 0.11947 0.17850 +v 0.03299 0.12048 0.18378 +v 0.03335 0.12001 0.18279 +v 0.03679 0.12218 0.15888 +v 0.03843 0.12181 0.16359 +v 0.03507 0.12250 0.15209 +v 0.03459 0.12257 0.15159 +v 0.03358 0.12281 0.15142 +v 0.03467 0.12227 0.17168 +v 0.03191 0.12137 0.17308 +v 0.03627 0.12266 0.17066 +v 0.03102 0.12064 0.17415 +v 0.03282 0.11957 0.17981 +v 0.03239 0.11979 0.17682 +v 0.03243 0.11951 0.17887 +v 0.03360 0.12066 0.18386 +v 0.03784 0.12184 0.16240 +v 0.03600 0.12245 0.15690 +v 0.03525 0.12234 0.15633 +v 0.03506 0.12234 0.15498 +v 0.03616 0.12264 0.15314 +v 0.03422 0.12288 0.15106 +v 0.03329 0.12160 0.17354 +v 0.03414 0.12200 0.17290 +v 0.03811 0.12284 0.16964 +v 0.03228 0.12131 0.17377 +v 0.03178 0.12085 0.17422 +v 0.03156 0.12024 0.17540 +v 0.03254 0.12387 0.15006 +v 0.03334 0.11967 0.18158 +v 0.03450 0.12059 0.18305 +v 0.03913 0.12208 0.15993 +v 0.03684 0.12263 0.15619 +v 0.03930 0.12188 0.16194 +v 0.03609 0.12278 0.15164 +v 0.03504 0.12276 0.15117 +v 0.03615 0.12282 0.17252 +v 0.03507 0.12235 0.17303 +v 0.03803 0.12325 0.17218 +v 0.03288 0.12450 0.14932 +v 0.03372 0.11986 0.17867 +v 0.03363 0.11990 0.17793 +v 0.03849 0.12218 0.15878 +v 0.03595 0.12270 0.15553 +v 0.03711 0.12292 0.15232 +v 0.03552 0.12269 0.15136 +v 0.03410 0.12380 0.14988 +v 0.03451 0.12182 0.17412 +v 0.03359 0.12124 0.17447 +v 0.03277 0.12074 0.17481 +v 0.03501 0.12053 0.18212 +v 0.03558 0.12062 0.18007 +v 0.03364 0.12000 0.17700 +v 0.03580 0.12092 0.18282 +v 0.04012 0.12196 0.15881 +v 0.03704 0.12278 0.15347 +v 0.03809 0.12244 0.15684 +v 0.03726 0.12327 0.15112 +v 0.03580 0.12306 0.15085 +v 0.03460 0.12369 0.14994 +v 0.03582 0.12263 0.17420 +v 0.03698 0.12327 0.17376 +v 0.03286 0.12021 0.17554 +v 0.03593 0.12084 0.18159 +v 0.03549 0.12066 0.17885 +v 0.03475 0.12042 0.17789 +v 0.03280 0.11998 0.17623 +v 0.03420 0.12011 0.17741 +v 0.03955 0.12218 0.15703 +v 0.04181 0.12165 0.15905 +v 0.03778 0.12279 0.15387 +v 0.03885 0.12255 0.15495 +v 0.03792 0.12297 0.15244 +v 0.03487 0.12402 0.14964 +v 0.03804 0.12357 0.17403 +v 0.03394 0.12082 0.17536 +v 0.03536 0.12205 0.17498 +v 0.03329 0.12042 0.17534 +v 0.03668 0.12121 0.18048 +v 0.03344 0.12011 0.17598 +v 0.03438 0.12049 0.17666 +v 0.03662 0.12114 0.18346 +v 0.04123 0.12180 0.15712 +v 0.04268 0.12154 0.15991 +v 0.03889 0.12293 0.15248 +v 0.03602 0.12391 0.14990 +v 0.03660 0.12321 0.17474 +v 0.03732 0.12351 0.17504 +v 0.03472 0.12121 0.17562 +v 0.03627 0.12283 0.17538 +v 0.03856 0.12373 0.17539 +v 0.03320 0.12004 0.17593 +v 0.03746 0.12138 0.18280 +v 0.03799 0.12189 0.18072 +v 0.04055 0.12219 0.15534 +v 0.03897 0.12335 0.15101 +v 0.03733 0.12412 0.14978 +v 0.03600 0.12229 0.17606 +v 0.03535 0.12138 0.17649 +v 0.03719 0.12172 0.17920 +v 0.03794 0.12162 0.18255 +v 0.04057 0.12254 0.15346 +v 0.03845 0.12390 0.15011 +v 0.04064 0.12296 0.15160 +v 0.03673 0.12328 0.17530 +v 0.03765 0.12356 0.17607 +v 0.03690 0.12321 0.17593 +v 0.03883 0.12378 0.17654 +v 0.03805 0.12218 0.17948 +v 0.03862 0.12206 0.18188 +v 0.03701 0.12193 0.17841 +v 0.03959 0.12373 0.15023 +v 0.04056 0.12338 0.15070 +v 0.03830 0.12373 0.17665 +v 0.03729 0.12327 0.17673 +v 0.03902 0.12241 0.18008 +v 0.03884 0.12227 0.18102 +v 0.03954 0.12418 0.14976 +v 0.04247 0.12303 0.15110 +v 0.03781 0.12344 0.17703 +v 0.03722 0.12235 0.17799 +v 0.03913 0.12370 0.17717 +v 0.03852 0.12368 0.17724 +v 0.03814 0.12272 0.17848 +v 0.03899 0.12271 0.17901 +v 0.03952 0.12232 0.18200 +v 0.03909 0.12233 0.18147 +v 0.04061 0.12397 0.14991 +v 0.04285 0.12362 0.14998 +v 0.03771 0.12295 0.17776 +v 0.03961 0.12341 0.17756 +v 0.04022 0.12253 0.17998 +v 0.03952 0.12242 0.18099 +v 0.04316 0.12320 0.15051 +v 0.03807 0.12345 0.17753 +v 0.03894 0.12358 0.17761 +v 0.04082 0.12311 0.17698 +v 0.03893 0.12320 0.17816 +v 0.04015 0.12286 0.17856 +v 0.03854 0.12352 0.17773 +v 0.03822 0.12325 0.17791 +v 0.04121 0.12250 0.17922 +v 0.04344 0.12360 0.14984 +v 0.04151 0.12231 0.18023 +v -0.02691 0.12095 0.15442 +v -0.02645 0.12097 0.15476 +v -0.02650 0.12116 0.15419 +v -0.02653 0.12090 0.15491 +v -0.02590 0.12075 0.15442 +v -0.02637 0.12061 0.15469 +v -0.02632 0.12085 0.15491 +v 0.10248 0.04531 0.22803 +v 0.10232 0.04729 0.22809 +v 0.10234 0.04671 0.22953 +v 0.10228 0.04677 0.22683 +v 0.10234 0.04914 0.22867 +v 0.10238 0.04491 0.22984 +v 0.10240 0.04831 0.22459 +v 0.10251 0.04515 0.22614 +v 0.10224 0.04750 0.23044 +v 0.10218 0.04614 0.23077 +v 0.10255 0.04436 0.22861 +v 0.10244 0.04667 0.22455 +v 0.10274 0.04372 0.22275 +v 0.10253 0.05067 0.22624 +v 0.10203 0.04411 0.23166 +v 0.10287 0.04131 0.22544 +v 0.10266 0.04072 0.22913 +v 0.10233 0.04811 0.22167 +v 0.10259 0.04553 0.22247 +v 0.10250 0.04994 0.22221 +v 0.10250 0.05187 0.22882 +v 0.10197 0.04723 0.23150 +v 0.10209 0.04793 0.23118 +v 0.10179 0.04606 0.23191 +v 0.10218 0.04277 0.23132 +v 0.10275 0.04030 0.22837 +v 0.10240 0.04703 0.22163 +v 0.10299 0.04003 0.22371 +v 0.10281 0.04544 0.22051 +v 0.10265 0.05138 0.22153 +v 0.10259 0.05194 0.22762 +v 0.10170 0.04513 0.23228 +v 0.10184 0.04338 0.23216 +v 0.10234 0.04037 0.23086 +v 0.10235 0.03620 0.23067 +v 0.10242 0.04824 0.22097 +v 0.10252 0.04917 0.22074 +v 0.10281 0.04232 0.22105 +v 0.10288 0.04445 0.21989 +v 0.10271 0.05333 0.22512 +v 0.10255 0.05295 0.22835 +v 0.10162 0.04760 0.23229 +v 0.10114 0.04643 0.23293 +v 0.10174 0.04118 0.23235 +v 0.10278 0.03741 0.22434 +v 0.10205 0.03853 0.23175 +v 0.10253 0.03697 0.22921 +v 0.10257 0.04756 0.22040 +v 0.10281 0.03992 0.22007 +v 0.10278 0.04708 0.21955 +v 0.10295 0.04657 0.21830 +v 0.10274 0.05386 0.22269 +v 0.10271 0.05032 0.21995 +v 0.10138 0.04409 0.23296 +v 0.10082 0.04587 0.23329 +v 0.10117 0.04282 0.23316 +v 0.10180 0.03923 0.23232 +v 0.10265 0.03642 0.22249 +v 0.10218 0.03735 0.23132 +v 0.10255 0.03431 0.22882 +v 0.10270 0.03773 0.21984 +v 0.10287 0.04054 0.21664 +v 0.10298 0.04424 0.21697 +v 0.10292 0.05626 0.22418 +v 0.10279 0.05313 0.22012 +v 0.10282 0.04874 0.21884 +v 0.10266 0.05541 0.22805 +v 0.10096 0.04125 0.23335 +v 0.10133 0.03972 0.23299 +v 0.10279 0.03546 0.22455 +v 0.10273 0.03591 0.22340 +v 0.10203 0.03657 0.23190 +v 0.10173 0.03748 0.23231 +v 0.10164 0.03833 0.23244 +v 0.10228 0.03291 0.22999 +v 0.10280 0.03868 0.21804 +v 0.10294 0.04792 0.21719 +v 0.10288 0.05662 0.22625 +v 0.10291 0.05711 0.22141 +v 0.10286 0.05659 0.21931 +v 0.10294 0.05051 0.21727 +v 0.10250 0.05516 0.22922 +v 0.10084 0.04410 0.23355 +v 0.10004 0.04590 0.23398 +v 0.09984 0.04215 0.23418 +v 0.10269 0.03452 0.22248 +v 0.10263 0.03615 0.22052 +v 0.10191 0.03556 0.23186 +v 0.10200 0.03305 0.23130 +v 0.10243 0.03160 0.22896 +v 0.10260 0.03349 0.22701 +v 0.10269 0.03647 0.21888 +v 0.10297 0.03743 0.21566 +v 0.10285 0.04090 0.21528 +v 0.10289 0.04550 0.21463 +v 0.10313 0.05920 0.22739 +v 0.10310 0.05931 0.22268 +v 0.10304 0.05573 0.21643 +v 0.10279 0.05722 0.22786 +v 0.10240 0.05652 0.22985 +v 0.10040 0.04351 0.23392 +v 0.10029 0.03998 0.23378 +v 0.10102 0.03885 0.23317 +v 0.10282 0.03506 0.22368 +v 0.10259 0.03500 0.22191 +v 0.10264 0.03532 0.22103 +v 0.10160 0.03616 0.23256 +v 0.10178 0.03431 0.23200 +v 0.10141 0.03689 0.23286 +v 0.10098 0.03761 0.23322 +v 0.10278 0.03404 0.22346 +v 0.10295 0.03857 0.21475 +v 0.10335 0.06204 0.22677 +v 0.10288 0.06034 0.21869 +v 0.10341 0.06259 0.22487 +v 0.10311 0.05717 0.21539 +v 0.10303 0.05491 0.21594 +v 0.10017 0.04457 0.23404 +v 0.09867 0.04609 0.23464 +v 0.09960 0.04410 0.23438 +v 0.09918 0.04064 0.23449 +v 0.10107 0.03959 0.23324 +v 0.10275 0.03371 0.22106 +v 0.10299 0.03449 0.21660 +v 0.10114 0.03500 0.23297 +v 0.10177 0.03355 0.23208 +v 0.10206 0.03127 0.23107 +v 0.10249 0.03134 0.22789 +v 0.10272 0.03231 0.22360 +v 0.10318 0.03719 0.21326 +v 0.10262 0.04229 0.21181 +v 0.10270 0.04078 0.21251 +v 0.10295 0.04710 0.21122 +v 0.10319 0.06014 0.22744 +v 0.10258 0.05744 0.22916 +v 0.10285 0.05958 0.21789 +v 0.10326 0.06271 0.22118 +v 0.10293 0.05258 0.21317 +v 0.09848 0.04269 0.23478 +v 0.09823 0.04099 0.23492 +v 0.09854 0.03916 0.23459 +v 0.09989 0.03816 0.23390 +v 0.10276 0.03273 0.22196 +v 0.10299 0.03267 0.21825 +v 0.10097 0.03629 0.23333 +v 0.10160 0.03340 0.23241 +v 0.10081 0.03678 0.23359 +v 0.10251 0.03083 0.22896 +v 0.10179 0.03195 0.23188 +v 0.10241 0.02986 0.22625 +v 0.10247 0.03079 0.22476 +v 0.10319 0.03541 0.21405 +v 0.10291 0.03912 0.21227 +v 0.10270 0.04299 0.20975 +v 0.10292 0.05099 0.20991 +v 0.10287 0.04501 0.21122 +v 0.10332 0.06190 0.22818 +v 0.10290 0.05961 0.22876 +v 0.10338 0.06371 0.22504 +v 0.10301 0.06143 0.21607 +v 0.10318 0.06332 0.21844 +v 0.10329 0.06484 0.22189 +v 0.10302 0.05650 0.21256 +v 0.10242 0.05869 0.23011 +v 0.10027 0.03728 0.23377 +v 0.10285 0.03184 0.22005 +v 0.10302 0.03271 0.21569 +v 0.10017 0.03507 0.23380 +v 0.10118 0.03338 0.23301 +v 0.10223 0.03048 0.23073 +v 0.10173 0.03052 0.23206 +v 0.10258 0.03035 0.22858 +v 0.10268 0.03044 0.22328 +v 0.10274 0.02956 0.22248 +v 0.10314 0.03846 0.21125 +v 0.10345 0.03630 0.21175 +v 0.10248 0.04103 0.20985 +v 0.10250 0.04169 0.20990 +v 0.10280 0.03976 0.21096 +v 0.10322 0.06372 0.22776 +v 0.10309 0.06237 0.21673 +v 0.10326 0.06564 0.21841 +v 0.10311 0.05798 0.21276 +v 0.10302 0.05466 0.21068 +v 0.09696 0.03878 0.23506 +v 0.09843 0.03721 0.23453 +v 0.10011 0.03650 0.23390 +v 0.10278 0.02905 0.21972 +v 0.10278 0.02762 0.21836 +v 0.10069 0.03365 0.23344 +v 0.10105 0.03189 0.23306 +v 0.10255 0.03041 0.22933 +v 0.10241 0.02788 0.22583 +v 0.10251 0.02962 0.22774 +v 0.10313 0.03358 0.21366 +v 0.10338 0.03717 0.21143 +v 0.10288 0.03921 0.21148 +v 0.10340 0.03519 0.21169 +v 0.10264 0.04237 0.20885 +v 0.10288 0.04410 0.20922 +v 0.10310 0.06642 0.22668 +v 0.10321 0.06664 0.21998 +v 0.10260 0.06046 0.22988 +v 0.10318 0.06184 0.21300 +v 0.10326 0.06365 0.21542 +v 0.10335 0.05773 0.20938 +v 0.10285 0.02945 0.21399 +v 0.09955 0.03396 0.23411 +v 0.10203 0.02914 0.23157 +v 0.10254 0.03007 0.22982 +v 0.10111 0.03033 0.23305 +v 0.10242 0.02809 0.22731 +v 0.10274 0.02985 0.22934 +v 0.10335 0.03832 0.21015 +v 0.10346 0.03630 0.21054 +v 0.10257 0.04117 0.20896 +v 0.10277 0.04008 0.20975 +v 0.10277 0.04228 0.20833 +v 0.10331 0.06604 0.21571 +v 0.10322 0.06724 0.21617 +v 0.10325 0.06150 0.21158 +v 0.09627 0.03676 0.23520 +v 0.09790 0.03431 0.23481 +v 0.10257 0.02681 0.22321 +v 0.10271 0.02688 0.21988 +v 0.10279 0.02728 0.21615 +v 0.10001 0.03249 0.23387 +v 0.10148 0.02915 0.23260 +v 0.10242 0.02937 0.23040 +v 0.10033 0.03157 0.23373 +v 0.10234 0.02658 0.22642 +v 0.10260 0.02899 0.22879 +v 0.10272 0.02730 0.20888 +v 0.10352 0.03792 0.20879 +v 0.10302 0.03942 0.20998 +v 0.10283 0.04122 0.20817 +v 0.10326 0.06386 0.21183 +v 0.10328 0.06866 0.21598 +v 0.10282 0.02573 0.21759 +v 0.10270 0.02442 0.21369 +v 0.09891 0.03218 0.23435 +v 0.10229 0.02821 0.23079 +v 0.10266 0.02950 0.22943 +v 0.10055 0.02930 0.23351 +v 0.10235 0.02649 0.22724 +v 0.10249 0.02795 0.22870 +v 0.10341 0.03874 0.20867 +v 0.10307 0.04006 0.20850 +v 0.10333 0.06674 0.21051 +v 0.10331 0.06780 0.21498 +v 0.10239 0.02371 0.22671 +v 0.10288 0.02484 0.21834 +v 0.09941 0.03054 0.23416 +v 0.09562 0.03006 0.23532 +v 0.10251 0.02871 0.22975 +v 0.10261 0.02088 0.22397 +v 0.10288 0.02337 0.21673 +v 0.10247 0.02767 0.22971 +v 0.10249 0.02113 0.22790 +v 0.10264 0.02633 0.20535 +v 0.10289 0.02012 0.21793 +v 0.10271 0.02102 0.22152 +v 0.10249 0.01985 0.22878 +v 0.10246 0.01681 0.22348 +v 0.10248 0.01664 0.22575 +v 0.10266 0.01752 0.21582 +v 0.10287 0.01970 0.21778 +v 0.10272 0.01740 0.21808 +v 0.10238 0.01604 0.22835 +v 0.10256 0.01593 0.22072 +v 0.10251 0.01569 0.22423 +v 0.10262 0.01459 0.22471 +v 0.10270 0.01570 0.21874 +v 0.10251 0.01545 0.22232 +v 0.10270 0.01370 0.22727 +v 0.10277 0.01435 0.22001 +v 0.10252 0.01480 0.22170 +v 0.10269 0.01421 0.22286 +v 0.10256 0.01426 0.22950 +v 0.10278 0.01305 0.22588 +v 0.10281 0.01392 0.21841 +v 0.10292 0.01291 0.22283 +v 0.10250 0.01500 0.23013 +v 0.10270 0.01333 0.22943 +v 0.10288 0.01250 0.22643 +v 0.10288 0.01251 0.22486 +v 0.10313 0.01145 0.21980 +v 0.10280 0.01360 0.22142 +v 0.10247 0.01360 0.23066 +v 0.10296 0.01241 0.22719 +v 0.10300 0.01217 0.22584 +v 0.10299 0.01149 0.21846 +v 0.10300 0.01243 0.22046 +v 0.10295 0.01156 0.22433 +v 0.10296 0.01215 0.22204 +v 0.10264 0.01243 0.23018 +v 0.10282 0.01252 0.22949 +v 0.10318 0.01184 0.22677 +v 0.10303 0.01179 0.22530 +v 0.10307 0.01092 0.21916 +v 0.10298 0.01143 0.22128 +v 0.10306 0.01133 0.22513 +v 0.10245 0.01143 0.23119 +v 0.10311 0.01160 0.22779 +v 0.10337 0.01140 0.22639 +v 0.10269 0.01016 0.21713 +v 0.10287 0.01040 0.21838 +v 0.10286 0.01029 0.22113 +v 0.10289 0.01072 0.22355 +v 0.10295 0.01018 0.22491 +v 0.10280 0.01131 0.22963 +v 0.10344 0.01118 0.22697 +v 0.10328 0.01095 0.22590 +v 0.10238 0.00845 0.21814 +v 0.10259 0.00895 0.22022 +v 0.10249 0.00988 0.23096 +v 0.10299 0.01038 0.22818 +v 0.10323 0.01051 0.22731 +v 0.10350 0.01095 0.22660 +v 0.10235 0.00830 0.21668 +v 0.10239 0.00766 0.22200 +v 0.10268 0.00922 0.22347 +v 0.10320 0.01016 0.22642 +v 0.10232 0.01089 0.23199 +v 0.10275 0.00980 0.22921 +v 0.10350 0.01080 0.22686 +v 0.10359 0.01101 0.22685 +v 0.10227 0.00707 0.21968 +v 0.10240 0.00778 0.22404 +v 0.10272 0.00875 0.22573 +v 0.10228 0.00927 0.23196 +v 0.10276 0.00889 0.22750 +v 0.10226 0.00626 0.21657 +v 0.10213 0.00703 0.21807 +v 0.10237 0.00575 0.22084 +v 0.10214 0.00622 0.21852 +v 0.10212 0.00621 0.22340 +v 0.10249 0.00568 0.21938 +v 0.10222 0.00579 0.22231 +v 0.10232 0.00703 0.22601 +v 0.10224 0.00852 0.23218 +v 0.10233 0.00711 0.22750 +v 0.10229 0.00603 0.21555 +v 0.10204 0.00631 0.21777 +v 0.10221 0.00657 0.22459 +v 0.10263 0.00522 0.22010 +v 0.10235 0.00786 0.23196 +v 0.10247 0.00569 0.21538 +v 0.10214 0.00594 0.21774 +v 0.10247 0.00560 0.21822 +v 0.10209 0.00546 0.22313 +v 0.10259 0.00508 0.22077 +v 0.10218 0.00593 0.22519 +v 0.10214 0.00624 0.22677 +v 0.10289 0.00527 0.21600 +v 0.10241 0.00564 0.21736 +v 0.10205 0.00550 0.22358 +v 0.10281 0.00521 0.21502 +v 0.10316 0.00497 0.21507 +v 0.10355 0.00492 0.21546 +v -0.00488 0.09287 0.20227 +v -0.00303 0.09209 0.20232 +v -0.00377 0.09265 0.20036 +v -0.00436 0.09283 0.20394 +v -0.00248 0.09176 0.20152 +v -0.00655 0.09363 0.20173 +v -0.00630 0.09344 0.20370 +v -0.00248 0.09269 0.20390 +v -0.00202 0.09157 0.20178 +v -0.00217 0.09242 0.19786 +v -0.00594 0.09385 0.19948 +v -0.00554 0.09382 0.20545 +v -0.00162 0.09163 0.20253 +v -0.00388 0.09349 0.20508 +v -0.00123 0.09133 0.20153 +v -0.00049 0.09141 0.19887 +v -0.00418 0.09346 0.19798 +v -0.00778 0.09393 0.20346 +v -0.00854 0.09431 0.20193 +v -0.00769 0.09402 0.20537 +v -0.00071 0.09205 0.20297 +v -0.00284 0.09479 0.20505 +v -0.00036 0.09119 0.20053 +v -0.00019 0.09152 0.19700 +v -0.00291 0.09319 0.19645 +v -0.00547 0.09429 0.19716 +v -0.00801 0.09468 0.19909 +v -0.00670 0.09428 0.20633 +v -0.00414 0.09520 0.20575 +v -0.00040 0.09128 0.20184 +v -0.00106 0.09431 0.20386 +v -0.00146 0.09259 0.19485 +v 0.00082 0.09102 0.19759 +v 0.00081 0.09105 0.19933 +v -0.00484 0.09431 0.19622 +v -0.00916 0.09426 0.20394 +v -0.00684 0.09462 0.19783 +v -0.00939 0.09475 0.20005 +v -0.00798 0.09481 0.20718 +v -0.00578 0.09559 0.20656 +v 0.00045 0.09163 0.20202 +v 0.00047 0.09280 0.20259 +v -0.00279 0.10049 0.20509 +v 0.00078 0.09125 0.20084 +v 0.00005 0.09176 0.19428 +v 0.00088 0.09108 0.19604 +v -0.00435 0.09421 0.19539 +v -0.00968 0.09452 0.20220 +v -0.00921 0.09418 0.20537 +v -0.00558 0.09463 0.19568 +v -0.00817 0.09501 0.19793 +v -0.00999 0.09458 0.20132 +v -0.00928 0.09505 0.19831 +v -0.00897 0.09424 0.20641 +v 0.00136 0.09572 0.20193 +v 0.00185 0.09077 0.19634 +v 0.00190 0.09091 0.19797 +v 0.00209 0.09155 0.19964 +v -0.00407 0.09417 0.19430 +v -0.01023 0.09423 0.20331 +v -0.00994 0.09415 0.20477 +v -0.01086 0.09460 0.20023 +v -0.01043 0.09492 0.19902 +v -0.00983 0.09442 0.20764 +v -0.00789 0.09726 0.20791 +v 0.00160 0.09243 0.20123 +v 0.00492 0.10280 0.19793 +v -0.00357 0.09387 0.19334 +v -0.00464 0.09447 0.19449 +v -0.00512 0.09461 0.19472 +v -0.01030 0.09442 0.20221 +v -0.01029 0.09399 0.20604 +v -0.00641 0.09488 0.19455 +v -0.01092 0.09433 0.20136 +v -0.01036 0.09508 0.19793 +v -0.00878 0.09520 0.19635 +v -0.00946 0.09558 0.20864 +v -0.01200 0.10202 0.20898 +v 0.00347 0.09408 0.19952 +v 0.00186 0.11320 0.20248 +v 0.00326 0.09091 0.19669 +v 0.00335 0.09165 0.19838 +v -0.00508 0.09452 0.19353 +v -0.01091 0.09364 0.20420 +v -0.01110 0.09384 0.20245 +v -0.01131 0.09430 0.20077 +v -0.01122 0.09468 0.19921 +v -0.00978 0.09522 0.19662 +v -0.01117 0.09482 0.19825 +v -0.01086 0.09461 0.20899 +v -0.01083 0.09399 0.20737 +v -0.00994 0.09749 0.20910 +v 0.00488 0.09483 0.19778 +v 0.00645 0.11391 0.19922 +v -0.00874 0.09514 0.19403 +v -0.01157 0.09418 0.20029 +v -0.01164 0.09377 0.20103 +v -0.01160 0.09439 0.19933 +v -0.01098 0.09502 0.19698 +v -0.01068 0.09528 0.19470 +v -0.01082 0.09666 0.20954 +v -0.01065 0.09424 0.20813 +v -0.00864 0.11537 0.20629 +v 0.00572 0.09452 0.19477 +v 0.00424 0.09270 0.19843 +v 0.00775 0.11203 0.19648 +v 0.00507 0.11756 0.20098 +v -0.00153 0.11929 0.20359 +v 0.00448 0.09225 0.19715 +v -0.00706 0.09496 0.19360 +v -0.01137 0.09504 0.19572 +v -0.01197 0.09447 0.19748 +v -0.01141 0.09535 0.20994 +v -0.01113 0.09395 0.20823 +v -0.01167 0.09678 0.21004 +v -0.01407 0.11793 0.20474 +v -0.00646 0.11804 0.20593 +v 0.00870 0.11879 0.19714 +v 0.00253 0.12006 0.20207 +v 0.00691 0.11813 0.19964 +v -0.00684 0.12050 0.20408 +v 0.00449 0.09143 0.19558 +v -0.00614 0.09475 0.19222 +v -0.01012 0.09520 0.19340 +v -0.00866 0.09522 0.19255 +v -0.01212 0.09354 0.19960 +v -0.01170 0.09482 0.19659 +v -0.01134 0.09513 0.19459 +v -0.01202 0.09443 0.20993 +v -0.01193 0.09333 0.20875 +v -0.01243 0.09592 0.21035 +v 0.00574 0.12126 0.20081 +v -0.00298 0.12204 0.20299 +v -0.00033 0.12148 0.20269 +v -0.00772 0.09516 0.19209 +v -0.01111 0.09509 0.19322 +v -0.01228 0.09392 0.19827 +v -0.01225 0.09451 0.19616 +v -0.01206 0.09478 0.19494 +v -0.01187 0.09539 0.21025 +v -0.01368 0.09581 0.21084 +v -0.01016 0.12161 0.20353 +v 0.01002 0.11979 0.19313 +v 0.00395 0.12138 0.20160 +v -0.00499 0.12244 0.20296 +v 0.00121 0.12249 0.20239 +v -0.00676 0.09489 0.19087 +v -0.00968 0.09530 0.19219 +v -0.01055 0.09516 0.19245 +v -0.00918 0.09541 0.19178 +v -0.01262 0.09318 0.19775 +v -0.01250 0.09400 0.19728 +v -0.01188 0.09491 0.19398 +v -0.01313 0.09328 0.20991 +v -0.01433 0.09689 0.21106 +v -0.01322 0.09441 0.21060 +v -0.01517 0.09756 0.21100 +v -0.01793 0.12054 0.20388 +v -0.00830 0.12239 0.20328 +v -0.01289 0.12244 0.20328 +v 0.01058 0.12196 0.19524 +v 0.01009 0.11912 0.19056 +v 0.00838 0.12244 0.19977 +v 0.00341 0.12236 0.20188 +v -0.00614 0.12229 0.20308 +v -0.00386 0.12280 0.20281 +v -0.00182 0.12307 0.20290 +v -0.00824 0.09537 0.19104 +v -0.01133 0.09498 0.19236 +v -0.01273 0.09409 0.19507 +v -0.01274 0.09383 0.19636 +v -0.01242 0.09460 0.19407 +v -0.01268 0.09431 0.21035 +v -0.01486 0.09509 0.21148 +v -0.01425 0.09372 0.21076 +v -0.01603 0.09540 0.21165 +v -0.01625 0.12214 0.20324 +v -0.00689 0.12268 0.20307 +v -0.00950 0.12278 0.20315 +v -0.01038 0.12319 0.20313 +v -0.01475 0.12304 0.20312 +v 0.01094 0.12232 0.19331 +v 0.01045 0.12233 0.19719 +v 0.01030 0.12078 0.19181 +v 0.00950 0.12184 0.19827 +v 0.00682 0.12337 0.20123 +v 0.00454 0.12355 0.20197 +v -0.00580 0.12334 0.20286 +v -0.00318 0.12326 0.20296 +v -0.00435 0.12348 0.20289 +v 0.00036 0.12397 0.20281 +v 0.00227 0.12371 0.20241 +v -0.00973 0.09546 0.19092 +v -0.01119 0.09511 0.19148 +v -0.01472 0.09430 0.21129 +v -0.01732 0.09477 0.21187 +v -0.00771 0.12338 0.20300 +v -0.00891 0.12354 0.20309 +v -0.01161 0.12333 0.20308 +v -0.01335 0.12385 0.20293 +v 0.01152 0.12314 0.19448 +v 0.01055 0.12166 0.19226 +v 0.01114 0.12300 0.19571 +v 0.01064 0.12149 0.19106 +v 0.01073 0.12084 0.18934 +v 0.01023 0.12312 0.19907 +v 0.00808 0.12399 0.20133 +v 0.00578 0.12323 0.20152 +v 0.00352 0.12365 0.20212 +v -0.00240 0.12382 0.20313 +v -0.00127 0.12407 0.20309 +v -0.01230 0.09448 0.19222 +v -0.01293 0.09297 0.19591 +v -0.01285 0.09413 0.19391 +v -0.01559 0.09411 0.21160 +v -0.01480 0.09256 0.21006 +v -0.01543 0.09351 0.21130 +v -0.01676 0.09377 0.21186 +v -0.01826 0.09347 0.21205 +v -0.01638 0.12348 0.20275 +v -0.00695 0.12375 0.20293 +v -0.01231 0.12410 0.20296 +v -0.01108 0.12431 0.20319 +v -0.01395 0.12461 0.20308 +v 0.01209 0.12339 0.19288 +v 0.01120 0.12264 0.19182 +v 0.01143 0.12326 0.19672 +v 0.00940 0.12377 0.20067 +v 0.00706 0.12436 0.20194 +v -0.00482 0.12449 0.20308 +v -0.00313 0.12443 0.20332 +v 0.00136 0.12446 0.20283 +v -0.01310 0.09340 0.19424 +v -0.01287 0.09406 0.19316 +v -0.01521 0.09311 0.21089 +v -0.01622 0.12421 0.20282 +v -0.01756 0.12396 0.20271 +v -0.00795 0.12429 0.20312 +v -0.01000 0.12411 0.20315 +v -0.01524 0.12456 0.20313 +v -0.01304 0.12450 0.20286 +v 0.01188 0.12346 0.19566 +v 0.01268 0.12368 0.19440 +v 0.01153 0.12334 0.19787 +v 0.01082 0.12385 0.20055 +v -0.00625 0.12437 0.20299 +v -0.01308 0.09383 0.19361 +v -0.01629 0.09279 0.21110 +v -0.01745 0.09310 0.21192 +v -0.01919 0.09205 0.21223 +v -0.01725 0.12438 0.20273 +v -0.00733 0.12456 0.20309 +v -0.00930 0.12446 0.20325 +v -0.01201 0.12489 0.20323 +v -0.00988 0.12493 0.20346 +v -0.01473 0.12505 0.20348 +v -0.01313 0.12490 0.20298 +v -0.01262 0.12477 0.20296 +v 0.01239 0.12361 0.19683 +v 0.01176 0.12358 0.19925 +v 0.01032 0.12440 0.20163 +v -0.01689 0.09290 0.21153 +v -0.01803 0.09240 0.21181 +v -0.01988 0.09115 0.21220 +v -0.01685 0.12478 0.20292 +v -0.00829 0.12504 0.20344 +v -0.01394 0.12535 0.20370 +v -0.01339 0.12518 0.20326 +v 0.01311 0.12376 0.19572 +v 0.01313 0.12366 0.19822 +v 0.01230 0.12376 0.20036 +v 0.01185 0.12412 0.20141 +v -0.00687 0.12511 0.20324 +v -0.01721 0.09233 0.21115 +v -0.01897 0.09170 0.21202 +v -0.01758 0.12493 0.20306 +v -0.01269 0.12550 0.20352 +v -0.01274 0.12522 0.20324 +v 0.01310 0.12366 0.19965 +v 0.01148 0.12468 0.20221 +v -0.01627 0.09231 0.21051 +v -0.01926 0.09114 0.21169 +v -0.02009 0.09026 0.21179 +v -0.01883 0.09151 0.21165 +v -0.00689 0.12550 0.20339 +v -0.01268 0.12562 0.20380 +v -0.01374 0.12561 0.20453 +v -0.01315 0.12552 0.20363 +v 0.01473 0.12374 0.19902 +v 0.01269 0.12388 0.20107 +v 0.01333 0.12377 0.20082 +v 0.01245 0.12454 0.20222 +v -0.01808 0.09187 0.21129 +v -0.01754 0.09170 0.21048 +v -0.01348 0.12561 0.20398 +v 0.01290 0.12410 0.20164 +v -0.01659 0.09174 0.20972 +v -0.01950 0.09045 0.21105 +v -0.02062 0.08906 0.21123 +v -0.01848 0.09107 0.21040 +v -0.01302 0.12568 0.20414 +v 0.01520 0.12396 0.20036 +v 0.01400 0.12433 0.20208 +v -0.01523 0.09179 0.20912 +v -0.01747 0.09135 0.20954 +v -0.02121 0.08809 0.21130 +v 0.01434 0.12399 0.20107 +v 0.01585 0.12386 0.19972 +v 0.01892 0.12368 0.19849 +v 0.01377 0.12411 0.20171 +v -0.01671 0.09140 0.20883 +v -0.01950 0.09000 0.20981 +v -0.02094 0.08827 0.21028 +v 0.01560 0.12450 0.20162 +v 0.01686 0.12418 0.20051 +v 0.01429 0.12473 0.20237 +v 0.01453 0.12430 0.20186 +v -0.01840 0.09081 0.20938 +v -0.01783 0.09089 0.20809 +v -0.02029 0.08914 0.21025 +v -0.02143 0.08758 0.21097 +v 0.01775 0.12383 0.19936 +v 0.02044 0.12352 0.19802 +v -0.01728 0.09088 0.20765 +v -0.02030 0.08903 0.20905 +v -0.01939 0.09003 0.20833 +v -0.02163 0.08739 0.21015 +v 0.01495 0.12457 0.20209 +v 0.01692 0.12472 0.20161 +v 0.01879 0.12401 0.19996 +v 0.02020 0.12369 0.19931 +v -0.01845 0.09067 0.20843 +v -0.01795 0.09057 0.20737 +v -0.02122 0.08804 0.20894 +v 0.01813 0.12443 0.20090 +v 0.02131 0.12346 0.19912 +v 0.02168 0.12330 0.19806 +v -0.01852 0.09044 0.20765 +v -0.01754 0.09028 0.20681 +v -0.02059 0.08866 0.20750 +v -0.01900 0.09031 0.20812 +v 0.01807 0.12496 0.20179 +v 0.01974 0.12399 0.20022 +v 0.01976 0.12426 0.20080 +v 0.02066 0.12379 0.20000 +v -0.01615 0.09037 0.20681 +v -0.01847 0.08957 0.20627 +v -0.01888 0.08982 0.20687 +v -0.01949 0.08976 0.20749 +v -0.02168 0.08779 0.20784 +v 0.01906 0.12488 0.20165 +v 0.02211 0.12353 0.20023 +v 0.02280 0.12308 0.19913 +v 0.02305 0.12299 0.19773 +v -0.01489 0.09097 0.20749 +v -0.01574 0.08981 0.20615 +v -0.01776 0.08930 0.20592 +v -0.01975 0.08908 0.20658 +v -0.02160 0.08768 0.20646 +v 0.02063 0.12455 0.20141 +v 0.02143 0.12408 0.20099 +v -0.01519 0.09032 0.20657 +v -0.01885 0.08818 0.20536 +v -0.02047 0.08834 0.20620 +v -0.01439 0.09040 0.20632 +v -0.01675 0.08908 0.20562 +v -0.01503 0.08988 0.20601 +v -0.01968 0.08859 0.20585 +v -0.01720 0.08828 0.20525 +v -0.02277 0.08709 0.20650 +v -0.02088 0.08783 0.20577 +v -0.01355 0.09096 0.20677 +v -0.01558 0.08890 0.20541 +v -0.02020 0.08786 0.20545 +v -0.01797 0.08692 0.20483 +v -0.01342 0.09039 0.20547 +v -0.01445 0.08973 0.20560 +v -0.02338 0.08667 0.20609 +v -0.01393 0.08892 0.20483 +v -0.11866 0.12115 0.23663 +v -0.11737 0.12098 0.23735 +v -0.11760 0.12132 0.23622 +v -0.11886 0.12080 0.23757 +v -0.11670 0.12126 0.23696 +v -0.11802 0.12146 0.23531 +v -0.12076 0.12110 0.23715 +v -0.11709 0.12044 0.23844 +v -0.11645 0.12087 0.23781 +v -0.11989 0.12088 0.23756 +v -0.11858 0.12017 0.23842 +v -0.11584 0.12146 0.23656 +v -0.12179 0.12121 0.23667 +v -0.12095 0.12081 0.23799 +v -0.11974 0.12040 0.23824 +v -0.11768 0.12021 0.23861 +v -0.11654 0.12030 0.23859 +v -0.11558 0.12135 0.23693 +v -0.12205 0.12136 0.23576 +v -0.12305 0.12102 0.23742 +v -0.12058 0.12058 0.23830 +v -0.11921 0.11915 0.23899 +v -0.11708 0.11999 0.23891 +v -0.11799 0.11957 0.23897 +v -0.11581 0.12068 0.23809 +v -0.11528 0.12103 0.23750 +v -0.12351 0.12123 0.23683 +v -0.12138 0.12045 0.23856 +v -0.12322 0.12065 0.23816 +v -0.12030 0.11985 0.23889 +v -0.11749 0.11983 0.23900 +v -0.11645 0.11966 0.23907 +v -0.11571 0.11997 0.23874 +v -0.11454 0.12085 0.23769 +v -0.11403 0.12123 0.23690 +v -0.12369 0.12136 0.23546 +v -0.12423 0.12105 0.23750 +v -0.12083 0.12016 0.23889 +v -0.12249 0.12036 0.23858 +v -0.12057 0.11901 0.23922 +v -0.11784 0.11848 0.23923 +v -0.11717 0.11934 0.23920 +v -0.11528 0.12050 0.23821 +v -0.11257 0.12133 0.23667 +v -0.12445 0.12121 0.23660 +v -0.12189 0.11983 0.23913 +v -0.12414 0.12040 0.23856 +v -0.12321 0.11992 0.23890 +v -0.12091 0.11979 0.23911 +v -0.11980 0.11810 0.23922 +v -0.11888 0.11804 0.23921 +v -0.11577 0.11916 0.23917 +v -0.11645 0.11901 0.23931 +v -0.11455 0.12015 0.23841 +v -0.11322 0.12088 0.23753 +v -0.12137 0.11938 0.23931 +v -0.11927 0.11845 0.23917 +v -0.12096 0.11797 0.23928 +v -0.11710 0.11694 0.23934 +v -0.11686 0.11854 0.23935 +v -0.11479 0.11941 0.23889 +v -0.11380 0.12035 0.23823 +v -0.11196 0.12111 0.23731 +v -0.12282 0.11930 0.23924 +v -0.12410 0.11974 0.23903 +v -0.12188 0.11935 0.23939 +v -0.12053 0.11700 0.23925 +v -0.11951 0.11585 0.23930 +v -0.11528 0.11847 0.23924 +v -0.11600 0.11821 0.23934 +v -0.11310 0.12014 0.23830 +v -0.11222 0.12076 0.23778 +v -0.12363 0.11912 0.23920 +v -0.12179 0.11687 0.23920 +v -0.11541 0.11478 0.23941 +v -0.11411 0.11833 0.23905 +v -0.11134 0.12046 0.23806 +v -0.12242 0.11870 0.23934 +v -0.12345 0.11863 0.23926 +v -0.12442 0.11917 0.23918 +v -0.12071 0.11576 0.23931 +v -0.11797 0.11456 0.23941 +v -0.11599 0.11590 0.23938 +v -0.11331 0.11912 0.23880 +v -0.11447 0.11580 0.23926 +v -0.11211 0.12015 0.23832 +v -0.12419 0.11838 0.23915 +v -0.12231 0.11572 0.23917 +v -0.11984 0.11453 0.23954 +v -0.11732 0.11270 0.23948 +v -0.11295 0.11800 0.23892 +v -0.11273 0.11577 0.23895 +v -0.11166 0.11970 0.23852 +v -0.12424 0.11711 0.23894 +v -0.12309 0.11686 0.23910 +v -0.11527 0.11319 0.23953 +v -0.11966 0.11329 0.23966 +v -0.11391 0.11402 0.23948 +v -0.11259 0.11879 0.23883 +v -0.11340 0.11514 0.23921 +v -0.12384 0.11544 0.23893 +v -0.11596 0.11184 0.23949 +v -0.11926 0.11136 0.23956 +v -0.11175 0.11853 0.23879 +v -0.11221 0.11416 0.23934 +v -0.11097 0.11920 0.23867 +v -0.12068 0.11167 0.23954 +v -0.12439 0.11356 0.23896 +v -0.11358 0.11232 0.23976 +v -0.11552 0.11081 0.23947 +v -0.11441 0.11202 0.23970 +v -0.11840 0.10932 0.23955 +v -0.11054 0.11500 0.23905 +v -0.12502 0.11603 0.23858 +v -0.12459 0.11422 0.23886 +v -0.11206 0.11247 0.23974 +v -0.11758 0.11011 0.23954 +v -0.12031 0.10958 0.23964 +v -0.11013 0.11272 0.23948 +v -0.12526 0.11490 0.23844 +v -0.12172 0.10945 0.23956 +v -0.12512 0.11368 0.23869 +v -0.11227 0.11140 0.23979 +v -0.11509 0.10994 0.23960 +v -0.11392 0.11052 0.23969 +v -0.11754 0.10855 0.23970 +v -0.11927 0.10843 0.23969 +v -0.12381 0.10929 0.23926 +v -0.12473 0.11291 0.23897 +v -0.11119 0.11193 0.23970 +v -0.12111 0.10757 0.23975 +v -0.12230 0.10836 0.23960 +v -0.12523 0.11226 0.23886 +v -0.11365 0.10901 0.23955 +v -0.10961 0.11158 0.23952 +v -0.11465 0.10938 0.23962 +v -0.11738 0.10779 0.23969 +v -0.12442 0.11117 0.23907 +v -0.12354 0.10728 0.23943 +v -0.10994 0.11053 0.23947 +v -0.11867 0.10657 0.23964 +v -0.12212 0.10653 0.23967 +v -0.12495 0.10953 0.23905 +v -0.12557 0.11116 0.23872 +v -0.12108 0.10554 0.23965 +v -0.12473 0.10483 0.23913 +v -0.11525 0.10448 0.23912 +v -0.12024 0.10410 0.23947 +v -0.12187 0.10275 0.23929 +v -0.12345 0.10323 0.23918 +v -0.12433 0.10285 0.23899 +v -0.11473 0.10242 0.23896 +v -0.11675 0.10337 0.23916 +v -0.12016 0.10266 0.23933 +v -0.12327 0.10117 0.23911 +v -0.11882 0.10324 0.23932 +v -0.12160 0.10128 0.23927 +v -0.12412 0.10130 0.23903 +v -0.11628 0.10161 0.23920 +v -0.11423 0.10147 0.23878 +v -0.11836 0.10250 0.23930 +v -0.12022 0.10122 0.23938 +v -0.12134 0.09955 0.23927 +v -0.12476 0.10031 0.23889 +v -0.12488 0.10169 0.23889 +v -0.11536 0.10126 0.23903 +v -0.11416 0.10077 0.23875 +v -0.12074 0.10009 0.23939 +v -0.12287 0.09799 0.23887 +v -0.11558 0.10042 0.23922 +v -0.11655 0.10070 0.23941 +v -0.11323 0.10034 0.23881 +v -0.11947 0.10040 0.23954 +v -0.12182 0.09780 0.23905 +v -0.12051 0.09874 0.23949 +v -0.11474 0.10030 0.23894 +v -0.11832 0.10170 0.23940 +v -0.11417 0.10018 0.23883 +v -0.11215 0.10036 0.23881 +v -0.11912 0.09909 0.23976 +v -0.12156 0.09572 0.23908 +v -0.11496 0.09958 0.23937 +v -0.11600 0.09932 0.23966 +v -0.11769 0.10020 0.23968 +v -0.11446 0.10040 0.23876 +v -0.11413 0.09981 0.23901 +v -0.11232 0.09953 0.23907 +v -0.11823 0.09932 0.23983 +v -0.11965 0.09749 0.23979 +v -0.11158 0.09990 0.23887 +v -0.11809 0.09761 0.23993 +v -0.12035 0.09542 0.23957 +v -0.11398 0.09895 0.23959 +v -0.11471 0.09864 0.23981 +v -0.11668 0.09833 0.23992 +v -0.11204 0.09881 0.23953 +v -0.12127 0.09348 0.23927 +v -0.11978 0.09500 0.23971 +v -0.11553 0.09805 0.23994 +v -0.11639 0.09723 0.23996 +v -0.12034 0.09338 0.23948 +v -0.12269 0.09091 0.23898 +v -0.11859 0.09617 0.23986 +v -0.11377 0.09829 0.24005 +v -0.11256 0.09800 0.24025 +v -0.11442 0.09780 0.24012 +v -0.11728 0.09609 0.23987 +v -0.11751 0.09377 0.23958 +v -0.11943 0.09324 0.23958 +v -0.11518 0.09690 0.24008 +v -0.11612 0.09586 0.23994 +v -0.12016 0.09145 0.23949 +v -0.11305 0.09784 0.24034 +v -0.11379 0.09776 0.24031 +v -0.12171 0.08964 0.23915 +v -0.11722 0.09196 0.23961 +v -0.11610 0.09405 0.23971 +v -0.12394 0.08768 0.23878 +v -0.11808 0.08687 0.23938 +v -0.11718 0.08986 0.23960 +v -0.12493 0.08882 0.23858 +v -0.12243 0.08677 0.23892 +v -0.11585 0.09007 0.23986 +v -0.12451 0.08717 0.23858 +v -0.12376 0.08649 0.23870 +v -0.12020 0.08618 0.23920 +v -0.11648 0.08701 0.23965 +v -0.12287 0.08497 0.23889 +v -0.11816 0.08523 0.23941 +v -0.12141 0.08555 0.23913 +v -0.11606 0.08434 0.23976 +v -0.12503 0.08643 0.23818 +v -0.12445 0.08533 0.23844 +v -0.12106 0.08469 0.23928 +v -0.11503 0.08573 0.23987 +v -0.11455 0.08681 0.24004 +v -0.12425 0.08468 0.23853 +v -0.11878 0.08369 0.23947 +v -0.11733 0.08320 0.23971 +v -0.11438 0.08469 0.23982 +v -0.11416 0.08750 0.24026 +v -0.12535 0.08548 0.23793 +v -0.12527 0.08388 0.23799 +v -0.12360 0.08398 0.23865 +v -0.12255 0.08227 0.23885 +v -0.12084 0.08264 0.23919 +v -0.11625 0.08169 0.23982 +v -0.11359 0.08591 0.23993 +v -0.11501 0.08273 0.23977 +v -0.12602 0.08606 0.23722 +v -0.12475 0.08315 0.23813 +v -0.12371 0.08269 0.23854 +v -0.12128 0.08133 0.23913 +v -0.11842 0.08061 0.23956 +v -0.11322 0.08468 0.23974 +v -0.12586 0.08440 0.23749 +v -0.12576 0.08311 0.23741 +v -0.12302 0.07902 0.23900 +v -0.11381 0.08161 0.23962 +v -0.11683 0.07959 0.23964 +v -0.12642 0.08439 0.23675 +v -0.12533 0.08211 0.23776 +v -0.12475 0.08187 0.23818 +v -0.12381 0.07917 0.23878 +v -0.12124 0.07799 0.23925 +v -0.11393 0.07949 0.23947 +v -0.11894 0.07780 0.23946 +v -0.12646 0.08323 0.23663 +v -0.12615 0.08196 0.23693 +v -0.12390 0.07790 0.23874 +v -0.11607 0.07753 0.23960 +v -0.12709 0.08290 0.23566 +v -0.12550 0.08035 0.23772 +v -0.12491 0.07969 0.23825 +v -0.12356 0.07660 0.23888 +v -0.12444 0.07877 0.23850 +v -0.12126 0.07435 0.23898 +v -0.11710 0.07449 0.23951 +v -0.12597 0.07946 0.23701 +v -0.12297 0.07601 0.23896 +v -0.12476 0.07756 0.23823 +v -0.12401 0.07637 0.23871 +v -0.11924 0.07503 0.23930 +v -0.11456 0.07445 0.23968 +v -0.12522 0.07888 0.23790 +v -0.12291 0.07469 0.23889 +v -0.11902 0.07273 0.23934 +v -0.11596 0.06972 0.23949 +v -0.12728 0.08126 0.23516 +v -0.12557 0.07751 0.23736 +v -0.12381 0.07512 0.23874 +v -0.12468 0.07565 0.23832 +v -0.12277 0.07238 0.23884 +v -0.11893 0.07097 0.23936 +v -0.11402 0.07158 0.23957 +v -0.12677 0.07913 0.23560 +v -0.12668 0.07775 0.23560 +v -0.12524 0.07588 0.23787 +v -0.12364 0.07384 0.23878 +v -0.11384 0.07277 0.23965 +v -0.11459 0.07027 0.23955 +v -0.11901 0.06685 0.23909 +v -0.12735 0.07873 0.23434 +v -0.12637 0.07660 0.23620 +v -0.12441 0.07380 0.23850 +v -0.12587 0.07559 0.23713 +v -0.12515 0.07415 0.23791 +v -0.12426 0.07219 0.23846 +v -0.12332 0.06998 0.23870 +v -0.11224 0.07192 0.23960 +v -0.11270 0.06973 0.23947 +v -0.11326 0.06842 0.23961 +v -0.11517 0.06763 0.23952 +v -0.12119 0.06821 0.23884 +v -0.12720 0.07669 0.23452 +v -0.12392 0.07102 0.23853 +v -0.11789 0.06320 0.23913 +v -0.12007 0.06470 0.23885 +v -0.12520 0.07243 0.23793 +v -0.12459 0.07134 0.23830 +v -0.12336 0.06828 0.23849 +v -0.11416 0.06674 0.23954 +v -0.11470 0.06138 0.23934 +v -0.12291 0.06674 0.23839 +v -0.11291 0.06719 0.23952 +v -0.11782 0.06017 0.23910 +v -0.12063 0.06289 0.23880 +v -0.12344 0.06499 0.23818 +v -0.12426 0.06758 0.23814 +v -0.11185 0.06611 0.23944 +v -0.12415 0.06672 0.23805 +v -0.12126 0.06160 0.23869 +v -0.11917 0.05722 0.23896 +v -0.12426 0.06535 0.23795 +v -0.12479 0.06684 0.23777 +v -0.11374 0.05617 0.23938 +v -0.12405 0.06225 0.23811 +v -0.12478 0.06556 0.23772 +v -0.12481 0.06264 0.23792 +v -0.12211 0.05935 0.23857 +v -0.11774 0.05515 0.23902 +v -0.12342 0.05997 0.23830 +v -0.12532 0.06275 0.23769 +v -0.12537 0.06571 0.23732 +v -0.11952 0.05329 0.23871 +v -0.11510 0.05312 0.23908 +v -0.12408 0.06090 0.23812 +v -0.12494 0.06163 0.23779 +v -0.12379 0.05846 0.23822 +v -0.12156 0.05565 0.23848 +v -0.11741 0.05265 0.23894 +v -0.12484 0.05957 0.23782 +v -0.12564 0.06325 0.23737 +v -0.12588 0.06158 0.23711 +v -0.12300 0.05706 0.23831 +v -0.12101 0.05361 0.23843 +v -0.12000 0.05185 0.23864 +v -0.12612 0.06337 0.23684 +v -0.12549 0.06068 0.23746 +v -0.12457 0.05812 0.23792 +v -0.12406 0.05710 0.23807 +v -0.12321 0.05541 0.23820 +v -0.12296 0.05335 0.23816 +v -0.11923 0.05063 0.23875 +v -0.12624 0.06054 0.23677 +v -0.12577 0.05953 0.23722 +v -0.12441 0.05644 0.23798 +v -0.12168 0.05185 0.23838 +v -0.12104 0.04986 0.23860 +v -0.12558 0.06015 0.23744 +v -0.12525 0.05703 0.23748 +v -0.12332 0.05153 0.23801 +v -0.11755 0.04573 0.23860 +v -0.12228 0.04949 0.23832 +v -0.12059 0.04606 0.23848 +v -0.12215 0.04692 0.23828 +v -0.12387 0.05003 0.23779 +v -0.11940 0.04375 0.23853 +v -0.12351 0.04656 0.23796 +v -0.12433 0.04899 0.23766 +v -0.11703 0.04242 0.23858 +v -0.12102 0.04380 0.23839 +v -0.11828 0.04288 0.23857 +v -0.11943 0.04152 0.23866 +v -0.12437 0.04676 0.23771 +v -0.12407 0.04309 0.23787 +v -0.11754 0.04148 0.23862 +v -0.11579 0.04118 0.23887 +v -0.11823 0.04133 0.23871 +v -0.12002 0.04046 0.23869 +v -0.12524 0.04750 0.23720 +v -0.12325 0.04287 0.23803 +v -0.11675 0.04120 0.23869 +v -0.11800 0.04020 0.23893 +v -0.12487 0.04654 0.23754 +v -0.12491 0.04505 0.23754 +v -0.12434 0.04247 0.23770 +v -0.11692 0.04028 0.23887 +v -0.12548 0.04588 0.23714 +v -0.12518 0.04390 0.23737 +v -0.12596 0.04763 0.23651 +v -0.12621 0.04531 0.23643 +v -0.12591 0.04398 0.23676 +v -0.04406 0.12425 0.14835 +v -0.04226 0.12448 0.14845 +v -0.04241 0.12436 0.14726 +v -0.04342 0.12433 0.14917 +v -0.04040 0.12471 0.14749 +v -0.04382 0.12399 0.14651 +v -0.04478 0.12419 0.14939 +v -0.04243 0.12440 0.14924 +v -0.04250 0.12414 0.14544 +v -0.04064 0.12467 0.14848 +v -0.04614 0.12412 0.14886 +v -0.04400 0.12414 0.14996 +v -0.04154 0.12447 0.14909 +v -0.04257 0.12424 0.14974 +v -0.03978 0.12436 0.14383 +v -0.03932 0.12489 0.14871 +v -0.04560 0.12392 0.14669 +v -0.04675 0.12403 0.14972 +v -0.04524 0.12391 0.15022 +v -0.03911 0.12488 0.14791 +v -0.04047 0.12438 0.14952 +v -0.04756 0.12395 0.14664 +v -0.04724 0.12416 0.14883 +v -0.04389 0.12394 0.15046 +v -0.04136 0.12419 0.14983 +v -0.03796 0.12488 0.14754 +v -0.03943 0.12432 0.14988 +v -0.03832 0.12488 0.14874 +v -0.04774 0.12410 0.14780 +v -0.04686 0.12357 0.15058 +v -0.04785 0.12417 0.14965 +v -0.04557 0.12354 0.15082 +v -0.04208 0.12387 0.15043 +v -0.03604 0.12451 0.14424 +v -0.04049 0.12385 0.15040 +v -0.03827 0.12466 0.14950 +v -0.04974 0.12411 0.14573 +v -0.04755 0.12381 0.15032 +v -0.04820 0.12436 0.14905 +v -0.04400 0.12291 0.15194 +v -0.04204 0.12326 0.15140 +v -0.03607 0.12474 0.14662 +v -0.03760 0.12493 0.14830 +v -0.03691 0.12431 0.15026 +v -0.03903 0.12309 0.15140 +v -0.03700 0.12488 0.14886 +v -0.05003 0.12435 0.14745 +v -0.04841 0.12295 0.15118 +v -0.04648 0.12286 0.15146 +v -0.04852 0.12383 0.15037 +v -0.04899 0.12442 0.14959 +v -0.04915 0.12457 0.14900 +v -0.04259 0.12277 0.15223 +v -0.03359 0.12477 0.14698 +v -0.03225 0.12419 0.14213 +v -0.03669 0.12472 0.14941 +v -0.04023 0.12308 0.15143 +v -0.05193 0.12435 0.14633 +v -0.04330 0.12226 0.15267 +v -0.04485 0.12241 0.15220 +v -0.04136 0.12235 0.15303 +v -0.03465 0.12484 0.14835 +v -0.03621 0.12483 0.14875 +v -0.03752 0.12330 0.15140 +v -0.03557 0.12461 0.14974 +v -0.03971 0.12275 0.15181 +v -0.05142 0.12454 0.14799 +v -0.04963 0.12355 0.15087 +v -0.04774 0.12189 0.15244 +v -0.05058 0.12449 0.15020 +v -0.05063 0.12472 0.14940 +v -0.04232 0.12177 0.15335 +v -0.04614 0.12205 0.15226 +v -0.04092 0.12278 0.15217 +v -0.03555 0.12482 0.14841 +v -0.03337 0.12477 0.14834 +v -0.02955 0.12431 0.14465 +v -0.03789 0.12269 0.15223 +v -0.03579 0.12419 0.15051 +v -0.03544 0.12472 0.14935 +v -0.03913 0.12259 0.15228 +v -0.03998 0.12266 0.15217 +v -0.05271 0.12438 0.14702 +v -0.05144 0.12471 0.14881 +v -0.05021 0.12302 0.15161 +v -0.04881 0.12191 0.15263 +v -0.05067 0.12465 0.14994 +v -0.04360 0.12130 0.15311 +v -0.04496 0.12135 0.15278 +v -0.04006 0.12233 0.15311 +v -0.04131 0.12178 0.15386 +v -0.03414 0.12466 0.14913 +v -0.03251 0.12470 0.14740 +v -0.03078 0.12451 0.14711 +v -0.03701 0.12251 0.15245 +v -0.03626 0.12303 0.15179 +v -0.03429 0.12435 0.14981 +v -0.05403 0.12453 0.14821 +v -0.05296 0.12450 0.14822 +v -0.05078 0.12364 0.15098 +v -0.04901 0.12066 0.15410 +v -0.04656 0.12063 0.15323 +v -0.05115 0.12450 0.15012 +v -0.05122 0.12469 0.14972 +v -0.05152 0.12470 0.14929 +v -0.04256 0.12059 0.15377 +v -0.04062 0.12197 0.15388 +v -0.04113 0.12089 0.15433 +v -0.03307 0.12459 0.14919 +v -0.03216 0.12460 0.14862 +v -0.02880 0.12436 0.14663 +v -0.02713 0.12419 0.14543 +v -0.03845 0.12225 0.15304 +v -0.03543 0.12351 0.15123 +v -0.03355 0.12342 0.15079 +v -0.05517 0.12462 0.14819 +v -0.05313 0.12449 0.14907 +v -0.05151 0.12407 0.15052 +v -0.05109 0.12314 0.15165 +v -0.04986 0.12191 0.15312 +v -0.04367 0.11900 0.15363 +v -0.03963 0.12173 0.15418 +v -0.04078 0.12158 0.15432 +v -0.03265 0.12440 0.14954 +v -0.02955 0.12433 0.14796 +v -0.02524 0.12398 0.14454 +v -0.03902 0.12227 0.15319 +v -0.03601 0.12213 0.15269 +v -0.03750 0.12175 0.15365 +v -0.03514 0.12270 0.15200 +v -0.05677 0.12464 0.14665 +v -0.05426 0.12449 0.14915 +v -0.05203 0.12344 0.15132 +v -0.05092 0.12260 0.15257 +v -0.04736 0.11856 0.15429 +v -0.05058 0.12182 0.15400 +v -0.05188 0.12446 0.14988 +v -0.04148 0.11967 0.15419 +v -0.04029 0.12167 0.15441 +v -0.04028 0.12126 0.15467 +v -0.03062 0.12435 0.14847 +v -0.02809 0.12433 0.14703 +v -0.02488 0.12403 0.14720 +v -0.03840 0.12157 0.15403 +v -0.03659 0.12152 0.15357 +v -0.03387 0.12246 0.15196 +v -0.03165 0.12344 0.15052 +v -0.05715 0.12460 0.14811 +v -0.05459 0.12439 0.14954 +v -0.05285 0.12395 0.15048 +v -0.05032 0.12109 0.15505 +v -0.05290 0.12433 0.14980 +v -0.04000 0.11964 0.15473 +v -0.03956 0.11827 0.15414 +v -0.04560 0.11431 0.15422 +v -0.03996 0.12150 0.15460 +v -0.03979 0.12050 0.15492 +v -0.02659 0.12413 0.14773 +v -0.02864 0.12417 0.14883 +v -0.03057 0.12422 0.14896 +v -0.02345 0.12407 0.14557 +v -0.02553 0.12406 0.14783 +v -0.03558 0.12075 0.15343 +v -0.03452 0.12173 0.15268 +v -0.03750 0.12125 0.15417 +v -0.03700 0.12137 0.15398 +v -0.03221 0.12249 0.15153 +v -0.03123 0.12401 0.14967 +v -0.06017 0.12470 0.14763 +v -0.05625 0.12441 0.14932 +v -0.05369 0.12333 0.15148 +v -0.05246 0.12292 0.15242 +v -0.05184 0.12242 0.15369 +v -0.04992 0.12014 0.15553 +v -0.05081 0.12162 0.15493 +v -0.03995 0.11606 0.15342 +v -0.03881 0.12109 0.15464 +v -0.03954 0.12112 0.15478 +v -0.02731 0.12411 0.14891 +v -0.02394 0.12422 0.14695 +v -0.02438 0.12402 0.14819 +v -0.03644 0.12081 0.15397 +v -0.03781 0.12047 0.15473 +v -0.03669 0.12120 0.15400 +v -0.03363 0.12183 0.15255 +v -0.03293 0.12182 0.15233 +v -0.03096 0.12217 0.15189 +v -0.03007 0.12362 0.15032 +v -0.05837 0.12454 0.14878 +v -0.05573 0.12406 0.15028 +v -0.05139 0.12198 0.15470 +v -0.05039 0.12057 0.15576 +v -0.05087 0.12101 0.15581 +v -0.03891 0.11908 0.15490 +v -0.03909 0.11977 0.15512 +v -0.03653 0.11693 0.15343 +v -0.03356 0.11206 0.15275 +v -0.03873 0.12036 0.15507 +v -0.02679 0.12403 0.14904 +v -0.02610 0.12402 0.14892 +v -0.02979 0.12397 0.14962 +v -0.02850 0.12403 0.14961 +v -0.02161 0.12437 0.14657 +v -0.02430 0.12417 0.14742 +v -0.02306 0.12421 0.14664 +v -0.02548 0.12395 0.14880 +v -0.03666 0.11960 0.15424 +v -0.03385 0.12046 0.15299 +v -0.03696 0.12082 0.15425 +v -0.03364 0.12147 0.15276 +v -0.03194 0.12185 0.15212 +v -0.03045 0.12316 0.15095 +v -0.06025 0.12459 0.14875 +v -0.05728 0.12436 0.14955 +v -0.06133 0.12466 0.14869 +v -0.05464 0.12337 0.15166 +v -0.05355 0.12295 0.15251 +v -0.05309 0.12269 0.15359 +v -0.05260 0.12232 0.15485 +v -0.05071 0.12008 0.15645 +v -0.05166 0.12170 0.15564 +v -0.03785 0.11874 0.15461 +v -0.03763 0.11785 0.15406 +v -0.04405 0.10222 0.15358 +v -0.02688 0.12372 0.14999 +v -0.02400 0.12427 0.14729 +v -0.02324 0.12424 0.14745 +v -0.02500 0.12353 0.14970 +v -0.03540 0.11888 0.15357 +v -0.03210 0.12072 0.15270 +v -0.03076 0.12128 0.15255 +v -0.02900 0.12237 0.15211 +v -0.02826 0.12336 0.15090 +v -0.02859 0.12378 0.15017 +v -0.05919 0.12436 0.14948 +v -0.05808 0.12421 0.14989 +v -0.05651 0.12374 0.15085 +v -0.05602 0.12365 0.15118 +v -0.05156 0.12107 0.15654 +v -0.03824 0.11956 0.15516 +v -0.03278 0.11797 0.15294 +v -0.03665 0.11827 0.15401 +v -0.03167 0.10396 0.15222 +v -0.03794 0.11994 0.15517 +v -0.02597 0.12381 0.14948 +v -0.01972 0.12458 0.14720 +v -0.02383 0.12366 0.14935 +v -0.03617 0.11876 0.15398 +v -0.03762 0.11957 0.15492 +v -0.02948 0.12158 0.15266 +v -0.02847 0.12280 0.15164 +v -0.06012 0.12414 0.15000 +v -0.06098 0.12461 0.14903 +v -0.06134 0.12439 0.14963 +v -0.05431 0.12292 0.15308 +v -0.05597 0.12325 0.15276 +v -0.05416 0.12275 0.15445 +v -0.05244 0.12187 0.15636 +v -0.05196 0.12152 0.15653 +v -0.02880 0.11677 0.15285 +v -0.02930 0.09692 0.15220 +v -0.02659 0.12341 0.15046 +v -0.02092 0.12457 0.14747 +v -0.02232 0.12434 0.14793 +v -0.02321 0.12406 0.14852 +v -0.02454 0.12301 0.15045 +v -0.02937 0.11980 0.15314 +v -0.02832 0.12177 0.15296 +v -0.02774 0.12220 0.15243 +v -0.02760 0.12308 0.15115 +v -0.05879 0.12384 0.15065 +v -0.05704 0.12365 0.15116 +v -0.06257 0.12439 0.14985 +v -0.05707 0.12344 0.15194 +v -0.05359 0.12240 0.15588 +v -0.05142 0.12029 0.15709 +v -0.05216 0.12081 0.15728 +v -0.02258 0.11534 0.15268 +v -0.03458 0.09258 0.15165 +v -0.01917 0.12457 0.14780 +v -0.02044 0.12455 0.14794 +v -0.02289 0.12365 0.14952 +v -0.02808 0.12101 0.15358 +v -0.06027 0.12354 0.15094 +v -0.06161 0.12390 0.15046 +v -0.06202 0.12421 0.15016 +v -0.05580 0.12311 0.15390 +v -0.05708 0.12327 0.15307 +v -0.05481 0.12278 0.15583 +v -0.05316 0.12153 0.15731 +v -0.05369 0.12214 0.15682 +v -0.02603 0.11847 0.15342 +v -0.01625 0.11338 0.15244 +v -0.03831 0.09049 0.15188 +v -0.02794 0.08703 0.15231 +v -0.02675 0.12243 0.15180 +v -0.01834 0.12442 0.14817 +v -0.02174 0.12434 0.14876 +v -0.02241 0.12416 0.14875 +v -0.02565 0.12230 0.15152 +v -0.02330 0.12268 0.15071 +v -0.02703 0.12015 0.15406 +v -0.02728 0.12150 0.15355 +v -0.05968 0.12323 0.15159 +v -0.05793 0.12351 0.15158 +v -0.06271 0.12395 0.15048 +v -0.05800 0.12325 0.15268 +v -0.05441 0.12252 0.15668 +v -0.05194 0.11980 0.15757 +v -0.05300 0.12061 0.15791 +v -0.02341 0.11886 0.15330 +v -0.01767 0.11635 0.15242 +v -0.04419 0.08756 0.15477 +v -0.03368 0.08790 0.15116 +v -0.02072 0.12430 0.14872 +v -0.01909 0.12440 0.14831 +v -0.02235 0.12328 0.14998 +v -0.02207 0.12392 0.14927 +v -0.02666 0.12174 0.15295 +v -0.06148 0.12278 0.15169 +v -0.06036 0.12319 0.15139 +v -0.05882 0.12331 0.15191 +v -0.06378 0.12367 0.15077 +v -0.05659 0.12311 0.15502 +v -0.05772 0.12309 0.15499 +v -0.05561 0.12287 0.15701 +v -0.05516 0.12280 0.15675 +v -0.05442 0.12211 0.15752 +v -0.05389 0.12135 0.15800 +v -0.02548 0.11987 0.15409 +v -0.02014 0.11905 0.15259 +v -0.01449 0.11706 0.15217 +v -0.01815 0.11880 0.15250 +v -0.03869 0.08754 0.15200 +v -0.03599 0.08707 0.15119 +v -0.03207 0.08552 0.15143 +v -0.02571 0.12177 0.15243 +v -0.02086 0.12373 0.14946 +v -0.02342 0.12192 0.15160 +v -0.02189 0.12187 0.15126 +v -0.06202 0.12317 0.15121 +v -0.05481 0.12258 0.15712 +v -0.05399 0.12063 0.15850 +v -0.02436 0.12046 0.15350 +v -0.02246 0.12016 0.15288 +v -0.01058 0.11268 0.15269 +v -0.03778 0.08619 0.15196 +v -0.03399 0.08601 0.15105 +v -0.03128 0.08262 0.15252 +v -0.02452 0.12171 0.15214 +v -0.01952 0.12394 0.14913 +v -0.02124 0.12259 0.15057 +v -0.02581 0.12121 0.15353 +v -0.05715 0.12300 0.15605 +v -0.05526 0.12264 0.15737 +v -0.05549 0.12223 0.15811 +v -0.05503 0.12084 0.15900 +v -0.02107 0.12098 0.15195 +v -0.01893 0.12008 0.15239 +v -0.01673 0.12008 0.15216 +v -0.00930 0.11324 0.15258 +v -0.03653 0.08423 0.15233 +v -0.03532 0.08551 0.15134 +v -0.03370 0.08446 0.15159 +v -0.02486 0.12123 0.15294 +v -0.01973 0.12315 0.15006 +v -0.02387 0.12110 0.15275 +v -0.05783 0.12296 0.15596 +v -0.05679 0.12283 0.15707 +v -0.05650 0.12267 0.15778 +v -0.05546 0.12164 0.15875 +v -0.05437 0.11982 0.15891 +v -0.02334 0.12068 0.15299 +v -0.01962 0.12038 0.15222 +v -0.02274 0.12101 0.15243 +v -0.03766 0.08152 0.15376 +v -0.03387 0.08290 0.15219 +v -0.01853 0.12292 0.15044 +v -0.02009 0.12198 0.15112 +v -0.05771 0.12262 0.15686 +v -0.05854 0.12281 0.15579 +v -0.05609 0.12197 0.15871 +v -0.05594 0.12132 0.15912 +v -0.05518 0.12005 0.15930 +v -0.01958 0.12121 0.15176 +v -0.01753 0.12083 0.15204 +v -0.01894 0.12081 0.15206 +v -0.03512 0.08199 0.15264 +v -0.03346 0.08106 0.15275 +v -0.01847 0.12218 0.15113 +v -0.05701 0.12243 0.15781 +v -0.05561 0.12063 0.15934 +v -0.05506 0.11912 0.15909 +v -0.01601 0.12074 0.15195 +v -0.00647 0.11373 0.15216 +v -0.03512 0.08033 0.15318 +v -0.01697 0.12245 0.15125 +v -0.05865 0.12220 0.15682 +v -0.05674 0.12198 0.15856 +v -0.05763 0.12148 0.15805 +v -0.05640 0.12174 0.15897 +v -0.05617 0.12064 0.15929 +v -0.05548 0.11972 0.15936 +v -0.05570 0.12014 0.15941 +v -0.01799 0.12153 0.15166 +v -0.01601 0.12196 0.15160 +v -0.01625 0.12264 0.15132 +v -0.05667 0.12136 0.15897 +v -0.05611 0.11965 0.15914 +v -0.01581 0.12291 0.15115 +v -0.05682 0.12063 0.15893 +v -0.01539 0.12255 0.15133 +v -0.01583 0.12255 0.15148 +v -0.12859 0.07454 0.23047 +v -0.12857 0.07601 0.23010 +v -0.12880 0.07406 0.22893 +v -0.12812 0.07771 0.23165 +v -0.12903 0.07534 0.22740 +v -0.12856 0.07333 0.23055 +v -0.12836 0.07360 0.23168 +v -0.12862 0.07771 0.22891 +v -0.12858 0.07034 0.22960 +v -0.12805 0.07367 0.23280 +v -0.12826 0.07883 0.23080 +v -0.12937 0.07520 0.22569 +v -0.12949 0.07599 0.22510 +v -0.12845 0.07190 0.23172 +v -0.12825 0.07192 0.23278 +v -0.12790 0.07600 0.23276 +v -0.12802 0.07912 0.23228 +v -0.12850 0.08041 0.22879 +v -0.12870 0.06846 0.22836 +v -0.12893 0.07798 0.22716 +v -0.12832 0.06952 0.23194 +v -0.12727 0.07428 0.23459 +v -0.12773 0.07764 0.23316 +v -0.12824 0.08017 0.23105 +v -0.12840 0.06849 0.23129 +v -0.12912 0.07806 0.22564 +v -0.12678 0.07140 0.23582 +v -0.12772 0.07934 0.23356 +v -0.12801 0.08057 0.23300 +v -0.12895 0.08002 0.22617 +v -0.12836 0.08177 0.22938 +v -0.12855 0.06523 0.22994 +v -0.12920 0.07748 0.22449 +v -0.12797 0.06858 0.23305 +v -0.12797 0.06614 0.23285 +v -0.12712 0.06866 0.23491 +v -0.12635 0.07274 0.23668 +v -0.12629 0.07557 0.23653 +v -0.12822 0.08132 0.23182 +v -0.12867 0.08195 0.22738 +v -0.12834 0.06484 0.23150 +v -0.12900 0.07890 0.22485 +v -0.12765 0.06722 0.23400 +v -0.12632 0.06938 0.23662 +v -0.12622 0.07103 0.23681 +v -0.12633 0.07395 0.23646 +v -0.12784 0.08172 0.23415 +v -0.12822 0.08267 0.23355 +v -0.12846 0.08372 0.22806 +v -0.12831 0.06125 0.23046 +v -0.12744 0.06799 0.23428 +v -0.12750 0.06533 0.23416 +v -0.12781 0.06329 0.23346 +v -0.12630 0.06809 0.23643 +v -0.12593 0.07293 0.23718 +v -0.12826 0.08443 0.23160 +v -0.12805 0.06164 0.23245 +v -0.12696 0.06707 0.23523 +v -0.12713 0.06564 0.23498 +v -0.12582 0.06961 0.23740 +v -0.12567 0.07207 0.23751 +v -0.12806 0.08306 0.23410 +v -0.12819 0.08447 0.23289 +v -0.12812 0.06026 0.23199 +v -0.12830 0.05946 0.23081 +v -0.12727 0.06341 0.23490 +v -0.12788 0.06226 0.23327 +v -0.12617 0.06680 0.23647 +v -0.12573 0.06809 0.23724 +v -0.12577 0.07108 0.23737 +v -0.12823 0.08310 0.23382 +v -0.12818 0.08349 0.23364 +v -0.12803 0.06068 0.23313 +v -0.12831 0.05873 0.23098 +v -0.12662 0.06540 0.23592 +v -0.12678 0.06299 0.23592 +v -0.12765 0.06204 0.23432 +v -0.12790 0.06135 0.23377 +v -0.12535 0.06861 0.23775 +v -0.12496 0.07051 0.23805 +v -0.12803 0.08441 0.23377 +v -0.12824 0.08919 0.23179 +v -0.12805 0.05913 0.23207 +v -0.12792 0.05983 0.23306 +v -0.12717 0.06201 0.23540 +v -0.12556 0.06716 0.23724 +v -0.12610 0.06527 0.23664 +v -0.12509 0.06779 0.23776 +v -0.12509 0.06897 0.23807 +v -0.12773 0.08495 0.23433 +v -0.12807 0.08564 0.23332 +v -0.12805 0.06062 0.23348 +v -0.12796 0.06042 0.23360 +v -0.12796 0.05801 0.23221 +v -0.12834 0.05634 0.22981 +v -0.12686 0.06062 0.23599 +v -0.12752 0.06123 0.23497 +v -0.12775 0.06102 0.23468 +v -0.12463 0.06850 0.23822 +v -0.12478 0.06941 0.23827 +v -0.12672 0.08541 0.23614 +v -0.12786 0.08717 0.23384 +v -0.12814 0.09086 0.23226 +v -0.12760 0.05862 0.23352 +v -0.12782 0.06078 0.23425 +v -0.12767 0.05984 0.23406 +v -0.12818 0.05728 0.23122 +v -0.12468 0.06894 0.23841 +v -0.12416 0.06998 0.23847 +v -0.12753 0.08718 0.23461 +v -0.12782 0.08999 0.23365 +v -0.12813 0.09263 0.23250 +v -0.12795 0.05665 0.23235 +v -0.12758 0.05723 0.23339 +v -0.12790 0.05513 0.23282 +v -0.12814 0.05597 0.23139 +v -0.12736 0.06027 0.23510 +v -0.12412 0.06915 0.23850 +v -0.12683 0.08706 0.23602 +v -0.12744 0.08911 0.23489 +v -0.12789 0.09223 0.23373 +v -0.12712 0.05823 0.23479 +v -0.12721 0.05712 0.23427 +v -0.12664 0.05857 0.23606 +v -0.12635 0.08800 0.23712 +v -0.12745 0.09123 0.23508 +v -0.12794 0.09494 0.23311 +v -0.12788 0.05574 0.23303 +v -0.12771 0.05254 0.23254 +v -0.12634 0.05944 0.23664 +v -0.12719 0.09041 0.23584 +v -0.12574 0.08783 0.23787 +v -0.12748 0.09395 0.23493 +v -0.12668 0.05746 0.23565 +v -0.12725 0.05482 0.23460 +v -0.12759 0.05448 0.23370 +v -0.12760 0.05074 0.23274 +v -0.12610 0.05775 0.23669 +v -0.12651 0.08924 0.23705 +v -0.12612 0.08928 0.23764 +v -0.12698 0.09420 0.23603 +v -0.12785 0.09724 0.23417 +v -0.12753 0.09473 0.23481 +v -0.12675 0.05604 0.23541 +v -0.12735 0.05173 0.23362 +v -0.12666 0.09015 0.23693 +v -0.12565 0.08910 0.23812 +v -0.12526 0.08810 0.23834 +v -0.12664 0.09274 0.23672 +v -0.12610 0.05649 0.23659 +v -0.12615 0.05540 0.23649 +v -0.12702 0.05240 0.23459 +v -0.12733 0.05056 0.23366 +v -0.12759 0.04931 0.23338 +v -0.12620 0.09021 0.23752 +v -0.12652 0.09412 0.23684 +v -0.12765 0.09768 0.23495 +v -0.12622 0.05400 0.23630 +v -0.12644 0.05162 0.23554 +v -0.12697 0.05077 0.23452 +v -0.12776 0.04830 0.23326 +v -0.12625 0.09168 0.23738 +v -0.12548 0.09039 0.23814 +v -0.12622 0.09520 0.23746 +v -0.12596 0.09378 0.23750 +v -0.12599 0.05592 0.23682 +v -0.12583 0.05332 0.23684 +v -0.12559 0.05465 0.23711 +v -0.12719 0.04934 0.23436 +v -0.12785 0.04720 0.23332 +v -0.12750 0.04830 0.23415 +v -0.12559 0.05585 0.23720 +v -0.12513 0.08965 0.23845 +v -0.12572 0.05183 0.23661 +v -0.12621 0.05036 0.23582 +v -0.12669 0.04943 0.23517 +v -0.12772 0.04743 0.23402 +v -0.12508 0.05613 0.23766 +v -0.12604 0.09204 0.23755 +v -0.12562 0.09178 0.23788 +v -0.12458 0.09054 0.23854 +v -0.12549 0.09464 0.23803 +v -0.12498 0.05367 0.23751 +v -0.12465 0.05529 0.23778 +v -0.12508 0.05247 0.23733 +v -0.12774 0.04657 0.23394 +v -0.12785 0.04610 0.23266 +v -0.12732 0.04743 0.23475 +v -0.12529 0.09272 0.23801 +v -0.12468 0.09192 0.23836 +v -0.12519 0.09372 0.23808 +v -0.12572 0.05064 0.23650 +v -0.12474 0.05128 0.23737 +v -0.12592 0.04927 0.23645 +v -0.12761 0.04694 0.23444 +v -0.12357 0.09237 0.23871 +v -0.12473 0.09448 0.23840 +v -0.12416 0.05266 0.23781 +v -0.12377 0.05405 0.23802 +v -0.12653 0.04791 0.23573 +v -0.12700 0.04652 0.23533 +v -0.12732 0.04636 0.23486 +v -0.12754 0.04535 0.23409 +v -0.12767 0.04333 0.23222 +v -0.12455 0.09341 0.23838 +v -0.12299 0.09444 0.23881 +v -0.12507 0.09540 0.23846 +v -0.12507 0.04981 0.23717 +v -0.12762 0.04396 0.23290 +v -0.12771 0.04254 0.23177 +v -0.12396 0.09401 0.23860 +v -0.12403 0.09531 0.23868 +v -0.12564 0.04895 0.23683 +v -0.12714 0.04500 0.23504 +v -0.12737 0.04390 0.23398 +v -0.12741 0.04283 0.23344 +v -0.12756 0.04203 0.23286 +v -0.12281 0.09578 0.23886 +v -0.12466 0.09613 0.23869 +v -0.12510 0.04872 0.23726 +v -0.12623 0.04382 0.23637 +v -0.12772 0.03848 0.23269 +v -0.12672 0.04253 0.23518 +v -0.12706 0.04269 0.23446 +v -0.12724 0.04168 0.23394 +v -0.12765 0.03975 0.23289 +v -0.12623 0.04312 0.23619 +v -0.12734 0.04039 0.23386 +v -0.12743 0.03885 0.23418 +v -0.12782 0.03610 0.23320 +v -0.12617 0.04147 0.23611 +v -0.12686 0.04085 0.23481 +v -0.12764 0.03788 0.23395 +v -0.12771 0.03688 0.23389 +v -0.12796 0.03385 0.23312 +v -0.12547 0.04264 0.23702 +v -0.12572 0.04185 0.23679 +v -0.12679 0.03964 0.23505 +v -0.12760 0.03831 0.23427 +v -0.12767 0.03590 0.23435 +v -0.12793 0.03491 0.23373 +v -0.12569 0.04084 0.23678 +v -0.12623 0.04049 0.23589 +v -0.12685 0.03857 0.23524 +v -0.12738 0.03707 0.23478 +v -0.12748 0.03809 0.23457 +v -0.12798 0.03194 0.23279 +v -0.12806 0.03394 0.23416 +v -0.12506 0.04179 0.23735 +v -0.12523 0.04107 0.23727 +v -0.12587 0.03874 0.23629 +v -0.12725 0.03830 0.23489 +v -0.12700 0.03570 0.23554 +v -0.12777 0.03462 0.23475 +v -0.12805 0.03296 0.23407 +v -0.12532 0.03993 0.23699 +v -0.12535 0.04055 0.23718 +v -0.12674 0.03737 0.23561 +v -0.12803 0.03143 0.23379 +v -0.12790 0.02973 0.23143 +v -0.12809 0.03350 0.23449 +v -0.12801 0.03386 0.23469 +v -0.12433 0.04108 0.23770 +v -0.12494 0.04046 0.23743 +v -0.12466 0.03878 0.23738 +v -0.12586 0.03720 0.23646 +v -0.12727 0.03407 0.23556 +v -0.12607 0.03582 0.23647 +v -0.12786 0.03220 0.23488 +v -0.12786 0.03331 0.23494 +v -0.12782 0.03396 0.23501 +v -0.12417 0.03976 0.23769 +v -0.12463 0.03754 0.23733 +v -0.12793 0.02936 0.23303 +v -0.12793 0.03049 0.23509 +v -0.12792 0.02806 0.23103 +v -0.12418 0.03833 0.23769 +v -0.12552 0.03577 0.23688 +v -0.12624 0.03343 0.23654 +v -0.12795 0.03011 0.23432 +v -0.12756 0.03160 0.23559 +v -0.12733 0.03274 0.23567 +v -0.12364 0.03869 0.23790 +v -0.12364 0.03728 0.23781 +v -0.12498 0.03432 0.23726 +v -0.12778 0.02812 0.23310 +v -0.12776 0.02874 0.23409 +v -0.12772 0.02993 0.23538 +v -0.12772 0.03073 0.23553 +v -0.12784 0.02594 0.23057 +v -0.12683 0.03186 0.23624 +v -0.12783 0.02735 0.23189 +v -0.12771 0.02915 0.23491 +v -0.12743 0.03055 0.23590 +v -0.12544 0.03308 0.23712 +v -0.12573 0.03198 0.23698 +v -0.12756 0.02779 0.23407 +v -0.12757 0.02704 0.23343 +v -0.12736 0.02814 0.23497 +v -0.12734 0.02904 0.23559 +v -0.12764 0.02601 0.23258 +v -0.12763 0.02372 0.23190 +v -0.12664 0.03048 0.23642 +v -0.12728 0.02979 0.23594 +v -0.12753 0.02218 0.23023 +v -0.12518 0.03033 0.23722 +v -0.12725 0.02714 0.23462 +v -0.12725 0.02597 0.23418 +v -0.12662 0.02809 0.23601 +v -0.12688 0.02932 0.23615 +v -0.12743 0.02460 0.23335 +v -0.12735 0.02220 0.23284 +v -0.12498 0.03173 0.23738 +v -0.12623 0.02937 0.23657 +v -0.12663 0.02663 0.23564 +v -0.12718 0.02107 0.23284 +v -0.12565 0.02867 0.23687 +v -0.12707 0.02429 0.23444 +v -0.12570 0.02664 0.23681 +v -0.12696 0.02188 0.23430 +v -0.12708 0.01961 0.23223 +v -0.12672 0.02510 0.23530 +v -0.12588 0.02766 0.23666 +v -0.12609 0.02552 0.23634 +v -0.12703 0.01861 0.23045 +v -0.12695 0.01973 0.23394 +v -0.12508 0.02773 0.23720 +v -0.12634 0.02430 0.23587 +v -0.12668 0.02297 0.23512 +v -0.12546 0.02561 0.23710 +v -0.12702 0.01773 0.23234 +v -0.12701 0.01834 0.23346 +v -0.12662 0.02047 0.23517 +v -0.12647 0.02202 0.23547 +v -0.12475 0.02663 0.23749 +v -0.12561 0.02443 0.23676 +v -0.12511 0.02601 0.23743 +v -0.12688 0.01719 0.23005 +v -0.12671 0.01854 0.23517 +v -0.12592 0.02286 0.23626 +v -0.12477 0.02451 0.23738 +v -0.12703 0.01731 0.23425 +v -0.12596 0.02118 0.23619 +v -0.12608 0.01859 0.23626 +v -0.12498 0.02335 0.23713 +v -0.12711 0.01590 0.23376 +v -0.12693 0.01750 0.23506 +v -0.12656 0.01750 0.23574 +v -0.12510 0.02175 0.23694 +v -0.12424 0.02375 0.23752 +v -0.12685 0.01660 0.23502 +v -0.12545 0.01977 0.23680 +v -0.12579 0.01778 0.23654 +v -0.12416 0.02198 0.23739 +v -0.12705 0.01518 0.23422 +v -0.12549 0.01848 0.23679 +v -0.12608 0.01667 0.23614 +v -0.12471 0.02041 0.23723 +v -0.12653 0.01568 0.23547 +v -0.12501 0.01818 0.23699 +v -0.12514 0.01655 0.23680 +v -0.12692 0.01407 0.23409 +v -0.12671 0.01483 0.23494 +v -0.12545 0.01506 0.23657 +v -0.12703 0.01311 0.23353 +v -0.12612 0.01529 0.23602 +v -0.12442 0.01685 0.23709 +v -0.12451 0.01534 0.23704 +v -0.12643 0.01389 0.23521 +v -0.12674 0.01283 0.23452 +v -0.12577 0.01488 0.23631 +v -0.12472 0.01426 0.23689 +v -0.12701 0.01218 0.23373 +v -0.12559 0.01372 0.23624 +v -0.12366 0.01522 0.23733 +v -0.12368 0.01457 0.23728 +v -0.12618 0.01181 0.23545 +v -0.12694 0.01039 0.23372 +v -0.12689 0.01233 0.23425 +v -0.12433 0.01291 0.23700 +v -0.12585 0.01171 0.23588 +v -0.12510 0.01171 0.23659 +v -0.12258 0.01355 0.23752 +v -0.12658 0.01092 0.23475 +v -0.12691 0.00856 0.23363 +v -0.12549 0.01031 0.23632 +v -0.12419 0.01121 0.23714 +v -0.12649 0.00865 0.23501 +v -0.12673 0.00880 0.23443 +v -0.12602 0.00925 0.23572 +v -0.12480 0.01053 0.23689 +v -0.12548 0.00905 0.23640 +v -0.12414 0.00997 0.23721 +v -0.12894 0.00330 0.11529 +v -0.12746 0.00312 0.11558 +v -0.12968 0.00350 0.11567 +v -0.12823 0.00355 0.11568 +v -0.13046 0.00343 0.11648 +v -0.12886 0.00380 0.11579 +v -0.12756 0.00382 0.11600 +v -0.12964 0.00406 0.11652 +v -0.12911 0.00416 0.11619 +v -0.12821 0.00449 0.11625 +v -0.12793 0.00606 0.11663 +v -0.05144 0.11778 0.15692 +v -0.05096 0.11897 0.15690 +v -0.05210 0.11871 0.15759 +v -0.04949 0.11776 0.15571 +v -0.05303 0.11754 0.15774 +v -0.05127 0.11603 0.15623 +v -0.04968 0.11891 0.15581 +v -0.05118 0.11976 0.15713 +v -0.05317 0.11943 0.15824 +v -0.04901 0.11901 0.15507 +v -0.05335 0.11571 0.15705 +v -0.05404 0.11869 0.15862 +v -0.05388 0.11329 0.15581 +v -0.04946 0.11949 0.15536 +v -0.05402 0.11645 0.15788 +v -0.05479 0.11756 0.15850 +v -0.05434 0.11543 0.15733 +v -0.05932 0.10943 0.15591 +v -0.06119 0.11448 0.15549 +v -0.06888 0.10380 0.15947 +v -0.06651 0.11327 0.15658 +v -0.06484 0.11655 0.15497 +v -0.06973 0.11151 0.15766 +v -0.05651 0.07786 0.16434 +v -0.06248 0.11746 0.15447 +v -0.06658 0.11625 0.15578 +v -0.07224 0.11324 0.15753 +v -0.06968 0.11497 0.15699 +v -0.06432 0.11818 0.15390 +v -0.06627 0.11751 0.15509 +v -0.06771 0.11611 0.15647 +v -0.07449 0.11257 0.15756 +v -0.06863 0.11592 0.15687 +v -0.06566 0.11860 0.15415 +v -0.06351 0.11921 0.15335 +v -0.06730 0.11746 0.15568 +v -0.07171 0.11575 0.15680 +v -0.07485 0.11541 0.15690 +v -0.06917 0.11675 0.15661 +v -0.06474 0.11932 0.15336 +v -0.06691 0.11862 0.15484 +v -0.06830 0.11728 0.15622 +v -0.06840 0.11661 0.15666 +v -0.07047 0.11707 0.15626 +v -0.07299 0.11548 0.15705 +v -0.07353 0.11511 0.15725 +v -0.07547 0.11442 0.15716 +v -0.06567 0.12032 0.15323 +v -0.06445 0.12047 0.15277 +v -0.06672 0.11979 0.15404 +v -0.06815 0.11868 0.15524 +v -0.07239 0.11826 0.15539 +v -0.07370 0.11644 0.15645 +v -0.07379 0.11572 0.15702 +v -0.07650 0.11491 0.15691 +v -0.06744 0.11950 0.15455 +v -0.06925 0.11772 0.15604 +v -0.06992 0.11913 0.15500 +v -0.07326 0.11724 0.15586 +v -0.07800 0.11688 0.15618 +v -0.06525 0.12168 0.15228 +v -0.06675 0.12130 0.15311 +v -0.06803 0.12068 0.15387 +v -0.07137 0.12028 0.15423 +v -0.07416 0.11841 0.15535 +v -0.07518 0.11744 0.15597 +v -0.07710 0.11812 0.15575 +v -0.06422 0.12202 0.15193 +v -0.06979 0.12104 0.15371 +v -0.07263 0.12007 0.15445 +v -0.07369 0.11976 0.15474 +v -0.08004 0.11826 0.15562 +v -0.06552 0.12256 0.15172 +v -0.06807 0.12214 0.15295 +v -0.07097 0.12175 0.15314 +v -0.07252 0.12138 0.15350 +v -0.07568 0.11913 0.15528 +v -0.07590 0.12047 0.15472 +v -0.07831 0.11988 0.15501 +v -0.06407 0.12298 0.15130 +v -0.06959 0.12239 0.15266 +v -0.07332 0.12125 0.15391 +v -0.07410 0.12114 0.15401 +v -0.07689 0.11970 0.15515 +v -0.06646 0.12321 0.15144 +v -0.06535 0.12324 0.15117 +v -0.07043 0.12370 0.15145 +v -0.07183 0.12237 0.15247 +v -0.07370 0.12215 0.15278 +v -0.07496 0.12131 0.15408 +v -0.07718 0.12060 0.15475 +v -0.06798 0.12390 0.15114 +v -0.06458 0.12383 0.15055 +v -0.06861 0.12323 0.15188 +v -0.07022 0.12407 0.15115 +v -0.07272 0.12223 0.15246 +v -0.07601 0.12157 0.15385 +v -0.06696 0.12389 0.15086 +v -0.06593 0.12388 0.15059 +v -0.07252 0.12290 0.15183 +v -0.07056 0.12425 0.15083 +v -0.07290 0.12238 0.15217 +v -0.07662 0.12103 0.15444 +v -0.07517 0.12266 0.15244 +v -0.06763 0.12426 0.15052 +v -0.06538 0.12414 0.15005 +v -0.07155 0.12381 0.15119 +v -0.06977 0.12448 0.15052 +v -0.07355 0.12321 0.15161 +v -0.07760 0.12141 0.15413 +v -0.07698 0.12307 0.15220 +v -0.06621 0.12424 0.14997 +v -0.07273 0.12371 0.15115 +v -0.07149 0.12425 0.15069 +v -0.07468 0.12388 0.15092 +v -0.07614 0.12382 0.15125 +v -0.07283 0.12419 0.15064 +v -0.07337 0.12405 0.15071 +v -0.07154 0.12447 0.15037 +v -0.05452 0.09532 0.21806 +v -0.04870 0.08740 0.21731 +v -0.05701 0.10750 0.21399 +v -0.05042 0.08184 0.21616 +v -0.04682 0.08485 0.21676 +v -0.06182 0.10446 0.21825 +v -0.05795 0.11352 0.21018 +v -0.06027 0.08578 0.22167 +v -0.04544 0.08303 0.21574 +v -0.06251 0.11162 0.21314 +v -0.05812 0.07829 0.21889 +v -0.06591 0.10829 0.21706 +v -0.06283 0.11642 0.20904 +v -0.06011 0.11670 0.20819 +v -0.06647 0.08549 0.22305 +v -0.06319 0.07830 0.22048 +v -0.06690 0.11528 0.21072 +v -0.06956 0.11013 0.21560 +v -0.07238 0.09130 0.22204 +v -0.06101 0.07246 0.21773 +v -0.06792 0.07745 0.21842 +v -0.06402 0.07340 0.21875 +v -0.06311 0.07119 0.21807 +v -0.06429 0.07079 0.21771 +v -0.06281 0.07046 0.21772 +v -0.06555 0.07127 0.21745 +v -0.06257 0.06955 0.21707 +v -0.06451 0.06928 0.21682 +v -0.06543 0.07041 0.21643 +v -0.06354 0.06872 0.21670 +v -0.06622 0.07122 0.21497 +v -0.06385 0.06827 0.21578 +v -0.06470 0.06879 0.21484 +v -0.06508 0.06909 0.21434 +v -0.06454 0.06873 0.21344 +v -0.01337 0.09147 0.20815 +v -0.01296 0.09181 0.20850 +v -0.01597 0.09134 0.20838 +v -0.01276 0.09165 0.20801 +v -0.01304 0.09133 0.20749 +v -0.01241 0.09222 0.20824 +v -0.01282 0.09132 0.20687 +v -0.01238 0.09174 0.20694 +v -0.01275 0.09246 0.20898 +v -0.01282 0.09124 0.20615 +v -0.01194 0.09268 0.20746 +v -0.01209 0.09215 0.20612 +v -0.01262 0.09130 0.20534 +v -0.01145 0.09353 0.20764 +v -0.01152 0.09328 0.20683 +v -0.01264 0.09077 0.20443 +v -0.01145 0.09308 0.20568 +v -0.01207 0.09204 0.20474 +v -0.01306 0.08965 0.20439 +v -0.01126 0.09371 0.20711 +v -0.01110 0.09369 0.20661 +v -0.01223 0.09142 0.20353 +v -0.01249 0.08968 0.20308 +v -0.01174 0.09262 0.20378 +v -0.01297 0.08842 0.20401 +v -0.01203 0.09219 0.20268 +v -0.01230 0.09113 0.20249 +v -0.01248 0.08816 0.20343 +v -0.01157 0.09309 0.20301 +v -0.01237 0.09050 0.20171 +v -0.01299 0.08721 0.20386 +v -0.01231 0.08809 0.20254 +v -0.01264 0.08770 0.20374 +v -0.01228 0.09181 0.20142 +v -0.01185 0.09296 0.20189 +v -0.01228 0.08908 0.20065 +v -0.01250 0.08719 0.20321 +v -0.01244 0.09080 0.20046 +v -0.01217 0.09286 0.20063 +v -0.01245 0.09209 0.19969 +v -0.01257 0.09082 0.19744 +v -0.01232 0.09284 0.20001 +v -0.01273 0.09053 0.19303 +v -0.01103 0.08479 0.18838 +v -0.01302 0.09216 0.19479 +v -0.01312 0.09096 0.18982 +v -0.01313 0.09271 0.19340 +v -0.01335 0.09216 0.19090 +v -0.01324 0.09054 0.18689 +v -0.01312 0.09265 0.19252 +v -0.01351 0.09260 0.18975 +v -0.01323 0.09256 0.19167 +v -0.01352 0.09172 0.18855 +v -0.01298 0.08873 0.18182 +v -0.01302 0.09355 0.19272 +v -0.01314 0.09355 0.19337 +v -0.01347 0.09301 0.19051 +v -0.01370 0.09250 0.18804 +v -0.01371 0.09186 0.18445 +v -0.01119 0.08291 0.17942 +v -0.01301 0.09354 0.19189 +v -0.01339 0.09343 0.19016 +v -0.01325 0.09356 0.19082 +v -0.01385 0.09259 0.18667 +v -0.01366 0.09111 0.18235 +v -0.01267 0.08650 0.17713 +v -0.01347 0.09358 0.18895 +v -0.01381 0.09355 0.18760 +v -0.01372 0.09327 0.18406 +v -0.01364 0.09097 0.18100 +v -0.01393 0.09310 0.18584 +v -0.01320 0.08976 0.17727 +v -0.01214 0.08390 0.17608 +v -0.01279 0.09420 0.19105 +v -0.01291 0.09427 0.18996 +v -0.01395 0.09355 0.18672 +v -0.01372 0.09173 0.18180 +v -0.01352 0.09056 0.17969 +v -0.01314 0.08881 0.17417 +v -0.01141 0.08185 0.17546 +v -0.01277 0.08564 0.17428 +v -0.01202 0.09488 0.19091 +v -0.01342 0.09440 0.18777 +v -0.01272 0.09480 0.18862 +v -0.01377 0.09414 0.18702 +v -0.01379 0.09403 0.18603 +v -0.01355 0.09259 0.18119 +v -0.01369 0.09097 0.18025 +v -0.01341 0.09114 0.17864 +v -0.01314 0.09026 0.17449 +v -0.01223 0.08347 0.17418 +v -0.00960 0.07785 0.17498 +v -0.01247 0.09468 0.19042 +v -0.01193 0.09511 0.18970 +v -0.01364 0.09426 0.18488 +v -0.01348 0.09429 0.18283 +v -0.01361 0.09145 0.18013 +v -0.01316 0.09139 0.17737 +v -0.01304 0.09143 0.17584 +v -0.01314 0.09119 0.17353 +v -0.01318 0.08706 0.17207 +v -0.01169 0.08197 0.17278 +v -0.01271 0.08466 0.17232 +v -0.01115 0.09530 0.19056 +v -0.01289 0.09505 0.18751 +v -0.01334 0.09481 0.18665 +v -0.01191 0.09533 0.18859 +v -0.01345 0.09482 0.18541 +v -0.01349 0.09455 0.18382 +v -0.01337 0.09421 0.18210 +v -0.01334 0.09320 0.18064 +v -0.01310 0.09273 0.17822 +v -0.01319 0.09077 0.17213 +v -0.01332 0.08893 0.17180 +v -0.01194 0.08223 0.17071 +v -0.01205 0.09539 0.18771 +v -0.01120 0.09552 0.18878 +v -0.01346 0.09489 0.18457 +v -0.01332 0.09484 0.18306 +v -0.01317 0.09474 0.18233 +v -0.01316 0.09319 0.17924 +v -0.01301 0.09224 0.17705 +v -0.01283 0.09341 0.17396 +v -0.01297 0.09254 0.17239 +v -0.01327 0.08614 0.16992 +v -0.01347 0.08826 0.17036 +v -0.01256 0.08385 0.17095 +v -0.01071 0.09553 0.18974 +v -0.01261 0.09539 0.18674 +v -0.01148 0.09551 0.18817 +v -0.01288 0.09536 0.18556 +v -0.01326 0.09524 0.18482 +v -0.01317 0.09522 0.18420 +v -0.01320 0.09510 0.18350 +v -0.01283 0.09478 0.18145 +v -0.01311 0.09412 0.18089 +v -0.01299 0.09418 0.17981 +v -0.01294 0.09335 0.17603 +v -0.01299 0.09392 0.17741 +v -0.01302 0.09399 0.17864 +v -0.01287 0.09245 0.17093 +v -0.01341 0.08986 0.17057 +v -0.01268 0.08394 0.16945 +v -0.00978 0.09561 0.18962 +v -0.01186 0.09560 0.18670 +v -0.01034 0.09562 0.18890 +v -0.01069 0.09551 0.18766 +v -0.01295 0.09519 0.18292 +v -0.01256 0.09522 0.18215 +v -0.01284 0.09476 0.17540 +v -0.01272 0.09358 0.17237 +v -0.01323 0.09119 0.17054 +v -0.01283 0.09319 0.17176 +v -0.01370 0.08807 0.16908 +v -0.01366 0.08947 0.16915 +v -0.01187 0.08158 0.16853 +v -0.00884 0.09550 0.18985 +v -0.01240 0.09560 0.18623 +v -0.01303 0.09540 0.18474 +v -0.01277 0.09538 0.18361 +v -0.01190 0.09541 0.18097 +v -0.01271 0.09476 0.18059 +v -0.01286 0.09478 0.17900 +v -0.01297 0.09568 0.17698 +v -0.01294 0.09486 0.17810 +v -0.01271 0.09487 0.17442 +v -0.01227 0.09444 0.17264 +v -0.01305 0.09211 0.17037 +v -0.01263 0.09352 0.17139 +v -0.01342 0.09060 0.16968 +v -0.01385 0.08755 0.16801 +v -0.01331 0.08524 0.16773 +v -0.00924 0.09542 0.18871 +v -0.00865 0.09551 0.19049 +v -0.01209 0.09563 0.18593 +v -0.01112 0.09550 0.18593 +v -0.01252 0.09548 0.18447 +v -0.01236 0.09541 0.18295 +v -0.01192 0.09542 0.18226 +v -0.01253 0.09515 0.17976 +v -0.01261 0.09594 0.17575 +v -0.01242 0.09496 0.17375 +v -0.01258 0.09557 0.17483 +v -0.01247 0.09398 0.17180 +v -0.01272 0.09362 0.17180 +v -0.01317 0.09165 0.16964 +v -0.01223 0.09316 0.16969 +v -0.01223 0.09368 0.17084 +v -0.01412 0.08883 0.16743 +v -0.01353 0.09085 0.16855 +v -0.00800 0.09510 0.18896 +v -0.00779 0.09526 0.19009 +v -0.01202 0.09556 0.18524 +v -0.00999 0.09516 0.18584 +v -0.00906 0.09508 0.18730 +v -0.01213 0.09548 0.18369 +v -0.01108 0.09541 0.18205 +v -0.01257 0.09572 0.17859 +v -0.01292 0.09574 0.17765 +v -0.01279 0.09603 0.17655 +v -0.01252 0.09539 0.17428 +v -0.01173 0.09457 0.17153 +v -0.01161 0.09510 0.17250 +v -0.01277 0.09237 0.16898 +v -0.01235 0.09394 0.17134 +v -0.01395 0.08981 0.16782 +v -0.01124 0.09539 0.18434 +v -0.01154 0.09542 0.18307 +v -0.01185 0.09592 0.17947 +v -0.01068 0.09562 0.18108 +v -0.01282 0.09619 0.17713 +v -0.01231 0.09616 0.17506 +v -0.01230 0.09656 0.17653 +v -0.01205 0.09587 0.17426 +v -0.01326 0.09166 0.16789 +v -0.01120 0.09443 0.17026 +v -0.01192 0.09334 0.16807 +v -0.01430 0.08981 0.16663 +v -0.01382 0.09091 0.16708 +v -0.00506 0.09392 0.18915 +v -0.00533 0.09368 0.18725 +v -0.00994 0.09503 0.18411 +v -0.00808 0.09443 0.18566 +v -0.01062 0.09620 0.17974 +v -0.00994 0.09535 0.18181 +v -0.01029 0.09519 0.18304 +v -0.01276 0.09619 0.17789 +v -0.01184 0.09640 0.17860 +v -0.01288 0.09622 0.17756 +v -0.01214 0.09649 0.17561 +v -0.01076 0.09567 0.17258 +v -0.01148 0.09639 0.17462 +v -0.01267 0.09254 0.16678 +v -0.01066 0.09470 0.16866 +v -0.01449 0.08972 0.16574 +v -0.00886 0.09465 0.18468 +v -0.01135 0.09638 0.17906 +v -0.00976 0.09572 0.18081 +v -0.01232 0.09647 0.17800 +v -0.01260 0.09649 0.17744 +v -0.01187 0.09645 0.17502 +v -0.01135 0.09684 0.17575 +v -0.01001 0.09553 0.17118 +v -0.01342 0.09165 0.16659 +v -0.01005 0.09525 0.16983 +v -0.01154 0.09389 0.16645 +v -0.01089 0.09451 0.16740 +v -0.01428 0.09062 0.16628 +v -0.01448 0.09030 0.16605 +v -0.00297 0.09294 0.18756 +v -0.00531 0.09434 0.19109 +v -0.00486 0.09326 0.18575 +v -0.00882 0.09466 0.18344 +v -0.00760 0.09410 0.18393 +v -0.01092 0.09680 0.17834 +v -0.00847 0.09523 0.18143 +v -0.00926 0.09503 0.18243 +v -0.00897 0.09621 0.17995 +v -0.01169 0.09679 0.17793 +v -0.01199 0.09682 0.17733 +v -0.01135 0.09706 0.17655 +v -0.01045 0.09636 0.17379 +v -0.00929 0.09640 0.17271 +v -0.01334 0.09188 0.16562 +v -0.00950 0.09584 0.16897 +v -0.01218 0.09342 0.16485 +v -0.01007 0.09562 0.16739 +v -0.01394 0.09123 0.16579 +v -0.01435 0.09056 0.16553 +v -0.00464 0.09389 0.19016 +v -0.00625 0.09354 0.18403 +v -0.00996 0.09685 0.17871 +v -0.00852 0.09712 0.17857 +v -0.00991 0.09723 0.17622 +v -0.00989 0.09680 0.17447 +v -0.00882 0.09621 0.17135 +v -0.00906 0.09603 0.17026 +v -0.01143 0.09432 0.16526 +v -0.01101 0.09461 0.16600 +v -0.00359 0.09362 0.19072 +v -0.00289 0.09257 0.18499 +v -0.00440 0.09417 0.19213 +v -0.00490 0.09311 0.18401 +v -0.00849 0.09477 0.18246 +v -0.00791 0.09428 0.18324 +v -0.00709 0.09400 0.18301 +v -0.00986 0.09714 0.17785 +v -0.00814 0.09581 0.18048 +v -0.00823 0.09677 0.17920 +v -0.01104 0.09708 0.17719 +v -0.00801 0.09670 0.17190 +v -0.01365 0.09150 0.16446 +v -0.00902 0.09678 0.16823 +v -0.00828 0.09697 0.16963 +v -0.01052 0.09551 0.16585 +v -0.00107 0.09233 0.18780 +v -0.00410 0.09284 0.18461 +v -0.00092 0.09210 0.18570 +v -0.00568 0.09340 0.18323 +v -0.00631 0.09360 0.18313 +v -0.00826 0.09749 0.17781 +v -0.00766 0.09636 0.17980 +v -0.00731 0.09557 0.18062 +v -0.00616 0.09393 0.18239 +v -0.00773 0.09721 0.17863 +v -0.00817 0.09750 0.17428 +v -0.00796 0.09671 0.17088 +v -0.00972 0.09665 0.16658 +v -0.01083 0.09495 0.16556 +v -0.00196 0.09292 0.19061 +v -0.00374 0.09285 0.18379 +v -0.00145 0.09215 0.18447 +v -0.00475 0.09345 0.18277 +v -0.00855 0.09761 0.17674 +v -0.00678 0.09493 0.18113 +v -0.00732 0.09699 0.17906 +v -0.00731 0.09795 0.17514 +v -0.00753 0.09684 0.17181 +v -0.00799 0.09806 0.16886 +v -0.00856 0.09801 0.16778 +v -0.00729 0.09739 0.17062 +v -0.00024 0.09212 0.18921 +v 0.00063 0.09179 0.18697 +v -0.00244 0.09260 0.18367 +v -0.00073 0.09194 0.18475 +v -0.00724 0.09795 0.17674 +v -0.00715 0.09764 0.17804 +v -0.00682 0.09644 0.17971 +v -0.00606 0.09531 0.18071 +v -0.00648 0.09464 0.18143 +v -0.00750 0.09778 0.17415 +v -0.00733 0.09711 0.17211 +v -0.00723 0.09711 0.17111 +v -0.00717 0.09832 0.16995 +v -0.00029 0.09211 0.19203 +v 0.00106 0.09175 0.18584 +v -0.00337 0.09321 0.18274 +v -0.00067 0.09197 0.18424 +v 0.00008 0.09193 0.18462 +v -0.00110 0.09235 0.18354 +v -0.00537 0.09436 0.18160 +v -0.00595 0.09443 0.18153 +v -0.00608 0.09743 0.17873 +v -0.00652 0.09757 0.17848 +v -0.00705 0.09756 0.17292 +v -0.00693 0.09803 0.17444 +v -0.00696 0.09732 0.17152 +v -0.00545 0.10022 0.17093 +v -0.00729 0.10056 0.16786 +v -0.00664 0.09794 0.17119 +v -0.00693 0.09741 0.17109 +v 0.00222 0.09127 0.18842 +v 0.00135 0.09144 0.19051 +v 0.00323 0.09120 0.18699 +v -0.00208 0.09315 0.18254 +v -0.00341 0.09381 0.18193 +v -0.00620 0.09797 0.17778 +v -0.00602 0.09837 0.17596 +v -0.00675 0.09794 0.17381 +v -0.00633 0.09820 0.17473 +v -0.00663 0.09772 0.17214 +v -0.00618 0.09892 0.17094 +v 0.00202 0.09103 0.19275 +v 0.00167 0.09185 0.18477 +v -0.00024 0.09207 0.18385 +v -0.00059 0.09293 0.18267 +v -0.00615 0.09826 0.17694 +v -0.00626 0.09806 0.17300 +v -0.00577 0.09937 0.17116 +v -0.00585 0.09862 0.17210 +v 0.00379 0.09079 0.18869 +v 0.00301 0.09092 0.18919 +v 0.00421 0.09143 0.18533 +v 0.00064 0.09232 0.18353 +v -0.00030 0.09232 0.18339 +v -0.00143 0.09345 0.18207 +v -0.00543 0.09851 0.17449 +v -0.00465 0.10045 0.17225 +v 0.00494 0.09087 0.18706 +v 0.00405 0.09048 0.19160 +v 0.00233 0.09210 0.18389 +v -0.00000 0.09383 0.18170 +v -0.00510 0.09879 0.17535 +v -0.00538 0.09865 0.17345 +v -0.00466 0.10102 0.17162 +v -0.00502 0.09931 0.17289 +v 0.00495 0.09052 0.18862 +v 0.00481 0.09040 0.18979 +v 0.00389 0.09061 0.19340 +v 0.00285 0.09064 0.19500 +v 0.00637 0.09068 0.18721 +v 0.00451 0.09163 0.18458 +v 0.00231 0.09256 0.18301 +v 0.00133 0.09303 0.18247 +v -0.00462 0.09918 0.17446 +v -0.00441 0.10105 0.17214 +v 0.00612 0.09035 0.18860 +v 0.00541 0.09026 0.19102 +v 0.00498 0.09049 0.19230 +v 0.00673 0.09106 0.18603 +v 0.00439 0.09193 0.18386 +v 0.00229 0.09382 0.18151 +v -0.00457 0.09944 0.17369 +v 0.00610 0.09020 0.18997 +v 0.00406 0.09072 0.19474 +v 0.00525 0.09133 0.19351 +v 0.00710 0.09047 0.18782 +v 0.00753 0.09085 0.18690 +v 0.00685 0.09178 0.18432 +v 0.00458 0.09254 0.18276 +v 0.00378 0.09367 0.18144 +v 0.00602 0.09069 0.19160 +v 0.00618 0.09025 0.19076 +v 0.00368 0.09068 0.19562 +v 0.00733 0.09037 0.18860 +v 0.00740 0.09124 0.18570 +v 0.00624 0.09259 0.18267 +v 0.00483 0.09324 0.18181 +v 0.00686 0.09022 0.18937 +v 0.00684 0.09058 0.19034 +v 0.00688 0.09258 0.19123 +v 0.00781 0.09067 0.18785 +v 0.00819 0.09125 0.18621 +v 0.00816 0.09172 0.18513 +v 0.00754 0.09224 0.18330 +v 0.00746 0.09047 0.18937 +v 0.00806 0.09103 0.18860 +v 0.00845 0.09133 0.18725 +v 0.00796 0.09201 0.18412 +v 0.00732 0.09254 0.18267 +v 0.00763 0.09125 0.18977 +v 0.00863 0.09169 0.18606 +v 0.00841 0.09243 0.18437 +v 0.00772 0.09242 0.18288 +v 0.00818 0.09229 0.18366 +v 0.00815 0.09283 0.18890 +v 0.00854 0.09167 0.18817 +v 0.00873 0.09245 0.18640 +v 0.00862 0.09235 0.18530 +v 0.00770 0.09266 0.18267 +v 0.00800 0.09250 0.18312 +v 0.00846 0.09389 0.18734 +v 0.00870 0.09225 0.18768 +v 0.00830 0.09278 0.18367 +v 0.00813 0.09411 0.18463 +v 0.00790 0.09314 0.18292 +v -0.06199 0.05200 0.19285 +v -0.06171 0.05409 0.19873 +v -0.05905 0.05183 0.19883 +v -0.06416 0.05762 0.19760 +v -0.06012 0.05561 0.20166 +v -0.06219 0.05574 0.20039 +v -0.05841 0.05429 0.20135 +v -0.05625 0.05094 0.19932 +v -0.06227 0.05707 0.20170 +v -0.06822 0.06447 0.19633 +v -0.05738 0.05312 0.20071 +v -0.05825 0.05578 0.20234 +v -0.05768 0.05195 0.19984 +v -0.06356 0.05924 0.20337 +v -0.06613 0.06120 0.20242 +v -0.07234 0.07653 0.19092 +v -0.06086 0.05853 0.20350 +v -0.05708 0.05523 0.20211 +v -0.05894 0.05706 0.20283 +v -0.05280 0.05334 0.20107 +v -0.07733 0.09318 0.17564 +v -0.05542 0.05444 0.20163 +v -0.05772 0.05642 0.20273 +v -0.05099 0.05180 0.20043 +v -0.05600 0.05597 0.20248 +v -0.05669 0.05666 0.20278 +v -0.05364 0.05578 0.20227 +v -0.05039 0.05383 0.20140 +v -0.05015 0.05001 0.19936 +v -0.05495 0.05653 0.20266 +v -0.05174 0.05651 0.20254 +v -0.05083 0.05517 0.20198 +v -0.04961 0.05276 0.20093 +v -0.04808 0.04603 0.19690 +v -0.05355 0.05799 0.20315 +v -0.04935 0.05536 0.20195 +v -0.04868 0.05372 0.20111 +v -0.04864 0.05146 0.19995 +v -0.05511 0.05899 0.20349 +v -0.04999 0.05657 0.20254 +v -0.05013 0.05876 0.20344 +v -0.04920 0.05275 0.20084 +v -0.04586 0.05302 0.19998 +v -0.04871 0.05684 0.20250 +v -0.04749 0.05566 0.20172 +v -0.04213 0.04991 0.19656 +v -0.04855 0.04071 0.19532 +v -0.04868 0.05810 0.20313 +v -0.04246 0.05344 0.19914 +v -0.04324 0.04571 0.19491 +v -0.04677 0.04075 0.19485 +v -0.04768 0.05816 0.20280 +v -0.04611 0.05525 0.20134 +v -0.04387 0.05452 0.20054 +v -0.04043 0.05267 0.19786 +v -0.04014 0.04675 0.19414 +v -0.04777 0.03999 0.19497 +v -0.04855 0.06057 0.20365 +v -0.04583 0.05685 0.20203 +v -0.04504 0.05535 0.20144 +v -0.03988 0.05560 0.19995 +v -0.04469 0.05514 0.20127 +v -0.03720 0.05166 0.19674 +v -0.04405 0.03942 0.19361 +v -0.03922 0.04922 0.19494 +v -0.04130 0.04235 0.19347 +v -0.04641 0.05911 0.20282 +v -0.04319 0.05615 0.20129 +v -0.03738 0.04810 0.19425 +v -0.03723 0.04448 0.19318 +v -0.04701 0.06236 0.20371 +v -0.04449 0.05828 0.20229 +v -0.04389 0.05729 0.20195 +v -0.04202 0.05744 0.20143 +v -0.03530 0.05526 0.19933 +v -0.04403 0.03701 0.19291 +v -0.04144 0.03821 0.19269 +v -0.04411 0.06046 0.20272 +v -0.04093 0.05910 0.20171 +v -0.03027 0.05452 0.19879 +v -0.03305 0.04783 0.19458 +v -0.03370 0.04255 0.19247 +v -0.04290 0.05881 0.20208 +v -0.04380 0.03632 0.19256 +v -0.04266 0.03617 0.19214 +v -0.03935 0.03726 0.19219 +v -0.03330 0.03909 0.19148 +v -0.02540 0.04903 0.19526 +v -0.04369 0.03569 0.19205 +v -0.04066 0.03642 0.19200 +v -0.03006 0.04438 0.19303 +v -0.03074 0.04063 0.19158 +v -0.02450 0.05590 0.19939 +v -0.04172 0.03531 0.19124 +v -0.03117 0.03774 0.19083 +v -0.02710 0.04207 0.19183 +v -0.02871 0.03819 0.19053 +v -0.08899 0.12229 0.19248 +v -0.08876 0.12185 0.19409 +v -0.08854 0.12201 0.19294 +v -0.08983 0.12223 0.19416 +v -0.08769 0.12128 0.19369 +v -0.08876 0.12226 0.19194 +v -0.09075 0.12242 0.19396 +v -0.08950 0.12206 0.19485 +v -0.08743 0.12144 0.19267 +v -0.08792 0.12104 0.19513 +v -0.08912 0.12229 0.19136 +v -0.08846 0.12210 0.19212 +v -0.09050 0.12235 0.19549 +v -0.09019 0.12246 0.19213 +v -0.08876 0.12168 0.19514 +v -0.08660 0.12074 0.19311 +v -0.08655 0.11973 0.19520 +v -0.09178 0.12254 0.19385 +v -0.08953 0.12193 0.19619 +v -0.08770 0.12170 0.19165 +v -0.08679 0.12117 0.19201 +v -0.08857 0.12118 0.19691 +v -0.08734 0.11987 0.19723 +v -0.09000 0.12256 0.19009 +v -0.09225 0.12275 0.19708 +v -0.09156 0.12253 0.19244 +v -0.09079 0.12238 0.19779 +v -0.08627 0.12072 0.19229 +v -0.08602 0.12005 0.19320 +v -0.08465 0.11523 0.20171 +v -0.08912 0.12233 0.18958 +v -0.09102 0.12267 0.19074 +v -0.08771 0.12173 0.18987 +v -0.09366 0.12294 0.19735 +v -0.09301 0.12254 0.19233 +v -0.08921 0.12153 0.19802 +v -0.08676 0.12117 0.19098 +v -0.08630 0.12086 0.19151 +v -0.08521 0.11830 0.19446 +v -0.08771 0.12010 0.19906 +v -0.08961 0.12259 0.18729 +v -0.09176 0.12299 0.18890 +v -0.09289 0.12302 0.19894 +v -0.09586 0.12283 0.19427 +v -0.09296 0.12268 0.19131 +v -0.09367 0.12264 0.19347 +v -0.08929 0.12178 0.19953 +v -0.08585 0.12024 0.19193 +v -0.08521 0.11902 0.19296 +v -0.08347 0.11501 0.19459 +v -0.08832 0.12211 0.18800 +v -0.09184 0.12288 0.19008 +v -0.08669 0.12113 0.18993 +v -0.09138 0.12292 0.20032 +v -0.09510 0.12297 0.19741 +v -0.09461 0.12311 0.19886 +v -0.09437 0.12265 0.19240 +v -0.08596 0.12043 0.19069 +v -0.08506 0.11886 0.19213 +v -0.08321 0.11213 0.19871 +v -0.08782 0.12213 0.18636 +v -0.09029 0.12277 0.18582 +v -0.08703 0.12151 0.18833 +v -0.09387 0.12312 0.18937 +v -0.09310 0.12337 0.20064 +v -0.09506 0.12267 0.19314 +v -0.09579 0.12291 0.19597 +v -0.09403 0.12348 0.20083 +v -0.09589 0.12295 0.19122 +v -0.08960 0.12257 0.20126 +v -0.08426 0.11807 0.19103 +v -0.08089 0.10572 0.20084 +v -0.08905 0.12254 0.18608 +v -0.09275 0.12305 0.18714 +v -0.09358 0.12306 0.18793 +v -0.08607 0.12078 0.18912 +v -0.09278 0.12368 0.20228 +v -0.09705 0.12296 0.19344 +v -0.09796 0.12307 0.19699 +v -0.09600 0.12303 0.19881 +v -0.09564 0.12322 0.20012 +v -0.09439 0.12295 0.19046 +v -0.09696 0.12301 0.19188 +v -0.09101 0.12329 0.20201 +v -0.08510 0.11961 0.19001 +v -0.08306 0.11731 0.19005 +v -0.08032 0.11331 0.19012 +v -0.08798 0.12230 0.18475 +v -0.08676 0.12161 0.18711 +v -0.09117 0.12285 0.18520 +v -0.09564 0.12298 0.18877 +v -0.08583 0.12108 0.18765 +v -0.09732 0.12302 0.19898 +v -0.09452 0.12390 0.20274 +v -0.09510 0.12303 0.18977 +v -0.09694 0.12301 0.19032 +v -0.08422 0.11897 0.18943 +v -0.07730 0.10019 0.18830 +v -0.08677 0.12194 0.18563 +v -0.08964 0.12255 0.18279 +v -0.09132 0.12271 0.18314 +v -0.09573 0.12264 0.18543 +v -0.08478 0.12015 0.18837 +v -0.09842 0.12315 0.20000 +v -0.09661 0.12308 0.20015 +v -0.09603 0.12372 0.20292 +v -0.09799 0.12311 0.19139 +v -0.08185 0.11840 0.18792 +v -0.08357 0.11924 0.18836 +v -0.07478 0.11696 0.18375 +v -0.08589 0.12187 0.18489 +v -0.08578 0.12151 0.18633 +v -0.09360 0.12266 0.18381 +v -0.08557 0.12182 0.18379 +v -0.09667 0.12271 0.18685 +v -0.08437 0.12085 0.18684 +v -0.09374 0.12406 0.20350 +v -0.09744 0.12313 0.20062 +v -0.09972 0.12337 0.19938 +v -0.09658 0.12331 0.20133 +v -0.09521 0.12403 0.20368 +v -0.09852 0.12302 0.18978 +v -0.07928 0.11859 0.18643 +v -0.08462 0.12155 0.18538 +v -0.09067 0.12245 0.18150 +v -0.09223 0.12262 0.18262 +v -0.09569 0.12242 0.18326 +v -0.08579 0.12169 0.18216 +v -0.09733 0.12288 0.18870 +v -0.09689 0.12262 0.18521 +v -0.08401 0.12012 0.18766 +v -0.09442 0.12416 0.20394 +v -0.09987 0.12329 0.20247 +v -0.09755 0.12342 0.20273 +v -0.09594 0.12392 0.20433 +v -0.08090 0.11951 0.18680 +v -0.08317 0.11999 0.18728 +v -0.07690 0.11985 0.18455 +v -0.08444 0.12171 0.18387 +v -0.09027 0.12227 0.18075 +v -0.09426 0.12224 0.18157 +v -0.08467 0.12155 0.18215 +v -0.08700 0.12182 0.18089 +v -0.09927 0.12282 0.18786 +v -0.09953 0.12275 0.18682 +v -0.10097 0.12351 0.19979 +v -0.09880 0.12328 0.20257 +v -0.09708 0.12369 0.20413 +v -0.09494 0.12409 0.20475 +v -0.07992 0.11987 0.18626 +v -0.08199 0.12009 0.18675 +v -0.07881 0.12033 0.18545 +v -0.07449 0.11990 0.18404 +v -0.08317 0.12157 0.18473 +v -0.08360 0.12128 0.18579 +v -0.09180 0.12225 0.18058 +v -0.08849 0.12192 0.17976 +v -0.09562 0.12210 0.18051 +v -0.09783 0.12256 0.18442 +v -0.08476 0.12142 0.18144 +v -0.08550 0.12157 0.18069 +v -0.09909 0.12270 0.18528 +v -0.08301 0.12081 0.18636 +v -0.09909 0.12350 0.20412 +v -0.09801 0.12369 0.20512 +v -0.09560 0.12392 0.20547 +v -0.09646 0.12385 0.20548 +v -0.08081 0.12047 0.18608 +v -0.07805 0.12080 0.18451 +v -0.07205 0.12001 0.18397 +v -0.07562 0.12071 0.18383 +v -0.08379 0.12162 0.18186 +v -0.08296 0.12171 0.18309 +v -0.09002 0.12209 0.17967 +v -0.09430 0.12194 0.17959 +v -0.09750 0.12235 0.18194 +v -0.09825 0.12239 0.18279 +v -0.08607 0.12161 0.17899 +v -0.10023 0.12360 0.20421 +v -0.10154 0.12352 0.20293 +v -0.09516 0.12383 0.20654 +v -0.07971 0.12072 0.18562 +v -0.08203 0.12094 0.18590 +v -0.07890 0.12101 0.18488 +v -0.07710 0.12111 0.18346 +v -0.07316 0.12064 0.18398 +v -0.07429 0.12082 0.18377 +v -0.08234 0.12134 0.18533 +v -0.08167 0.12155 0.18417 +v -0.09181 0.12210 0.17967 +v -0.08960 0.12201 0.17820 +v -0.09591 0.12189 0.17824 +v -0.09763 0.12229 0.18040 +v -0.09913 0.12261 0.18363 +v -0.08438 0.12165 0.17956 +v -0.08320 0.12174 0.18040 +v -0.08656 0.12154 0.17761 +v -0.10050 0.12295 0.18485 +v -0.09901 0.12373 0.20616 +v -0.09963 0.12362 0.20520 +v -0.09714 0.12384 0.20593 +v -0.09577 0.12379 0.20659 +v -0.08036 0.12119 0.18492 +v -0.07918 0.12085 0.18537 +v -0.08140 0.12118 0.18528 +v -0.07867 0.12130 0.18389 +v -0.07212 0.12091 0.18388 +v -0.07552 0.12110 0.18336 +v -0.08098 0.12203 0.17918 +v -0.08003 0.12185 0.18178 +v -0.09149 0.12209 0.17893 +v -0.08768 0.12172 0.17763 +v -0.09278 0.12202 0.17890 +v -0.09405 0.12186 0.17613 +v -0.09909 0.12263 0.18146 +v -0.09885 0.12252 0.18246 +v -0.08504 0.12162 0.17830 +v -0.08548 0.12153 0.17728 +v -0.09619 0.12377 0.20811 +v -0.07948 0.12108 0.18514 +v -0.07948 0.12130 0.18447 +v -0.07849 0.12160 0.18250 +v -0.07277 0.12095 0.18390 +v -0.07076 0.12106 0.18375 +v -0.07330 0.12098 0.18376 +v -0.07420 0.12106 0.18335 +v -0.07621 0.12133 0.18268 +v -0.08011 0.12162 0.18320 +v -0.09130 0.12226 0.17687 +v -0.08931 0.12201 0.17644 +v -0.09342 0.12196 0.17788 +v -0.09828 0.12239 0.17951 +v -0.09611 0.12189 0.17646 +v -0.10037 0.12293 0.18310 +v -0.08267 0.12186 0.17910 +v -0.08372 0.12179 0.17737 +v -0.08618 0.12145 0.17629 +v -0.09955 0.12371 0.20734 +v -0.09764 0.12396 0.20692 +v -0.10147 0.12353 0.20577 +v -0.07709 0.12149 0.18205 +v -0.07257 0.12110 0.18359 +v -0.07208 0.12117 0.18365 +v -0.06964 0.12067 0.18406 +v -0.07516 0.12122 0.18276 +v -0.07884 0.12187 0.18049 +v -0.08844 0.12183 0.17493 +v -0.09220 0.12212 0.17730 +v -0.09707 0.12202 0.17724 +v -0.09309 0.12192 0.17631 +v -0.09491 0.12173 0.17491 +v -0.08060 0.12200 0.17870 +v -0.08503 0.12146 0.17613 +v -0.08724 0.12153 0.17509 +v -0.09837 0.12390 0.20730 +v -0.09739 0.12371 0.20890 +v -0.07133 0.12131 0.18308 +v -0.06961 0.12116 0.18398 +v -0.07323 0.12110 0.18332 +v -0.07391 0.12113 0.18275 +v -0.07587 0.12133 0.18174 +v -0.09030 0.12209 0.17610 +v -0.08955 0.12194 0.17490 +v -0.09807 0.12227 0.17761 +v -0.09241 0.12175 0.17458 +v -0.09664 0.12186 0.17553 +v -0.09363 0.12158 0.17391 +v -0.08289 0.12181 0.17745 +v -0.08380 0.12164 0.17612 +v -0.08544 0.12123 0.17473 +v -0.08602 0.12116 0.17412 +v -0.07697 0.12148 0.18046 +v -0.07253 0.12117 0.18274 +v -0.07012 0.12151 0.18287 +v -0.06846 0.12134 0.18386 +v -0.06956 0.12140 0.18359 +v -0.07465 0.12115 0.18189 +v -0.07875 0.12181 0.17882 +v -0.09155 0.12210 0.17619 +v -0.08863 0.12177 0.17417 +v -0.09811 0.12214 0.17611 +v -0.09556 0.12155 0.17334 +v -0.08190 0.12177 0.17694 +v -0.08409 0.12139 0.17538 +v -0.08452 0.12126 0.17477 +v -0.08676 0.12130 0.17401 +v -0.07143 0.12133 0.18228 +v -0.07040 0.12158 0.18170 +v -0.07520 0.12102 0.18064 +v -0.07901 0.12178 0.17810 +v -0.09006 0.12186 0.17425 +v -0.08756 0.12153 0.17361 +v -0.09914 0.12270 0.17784 +v -0.09341 0.12142 0.17285 +v -0.09823 0.12180 0.17385 +v -0.09400 0.12150 0.17274 +v -0.09692 0.12174 0.17422 +v -0.08224 0.12160 0.17637 +v -0.08322 0.12144 0.17553 +v -0.08570 0.12118 0.17385 +v -0.08473 0.12116 0.17389 +v -0.08651 0.12141 0.17256 +v -0.06833 0.12229 0.18041 +v -0.06879 0.12175 0.18290 +v -0.08942 0.12178 0.17321 +v -0.08846 0.12170 0.17300 +v -0.09090 0.12171 0.17331 +v -0.09344 0.12159 0.17174 +v -0.09665 0.12166 0.17309 +v -0.08132 0.12127 0.17583 +v -0.08008 0.12143 0.17651 +v -0.08299 0.12125 0.17515 +v -0.08378 0.12114 0.17445 +v -0.06824 0.12217 0.18161 +v -0.08864 0.12178 0.17219 +v -0.09258 0.12148 0.17233 +v -0.09589 0.12162 0.17252 +v -0.07850 0.12116 0.17658 +v -0.08321 0.12090 0.17337 +v -0.09038 0.12177 0.17223 +v -0.09804 0.12178 0.17265 +v -0.09726 0.12188 0.17167 +v -0.08178 0.12084 0.17481 +v -0.08279 0.12091 0.17425 +v -0.08680 0.12194 0.16952 +v -0.09093 0.12192 0.17065 +v -0.09245 0.12210 0.16969 +v -0.09551 0.12204 0.17080 +v -0.08194 0.12045 0.17354 +v -0.08809 0.12219 0.16819 +v -0.08995 0.12209 0.16941 +v -0.09401 0.12204 0.17013 +v -0.09850 0.12203 0.17151 +v -0.09781 0.12231 0.17026 +v -0.08468 0.12204 0.16842 +v -0.09150 0.12218 0.16863 +v -0.09395 0.12220 0.16895 +v -0.09941 0.12236 0.17107 +v -0.09889 0.12243 0.17019 +v -0.09539 0.12224 0.16969 +v -0.09631 0.12237 0.16951 +v -0.08978 0.12239 0.16647 +v -0.09790 0.12239 0.16944 +v -0.09333 0.12222 0.16683 +v -0.09586 0.12229 0.16838 +v -0.10004 0.12275 0.17056 +v -0.10099 0.12328 0.17070 +v -0.03609 0.04558 0.16500 +v -0.04603 0.04735 0.16697 +v -0.04049 0.03641 0.16726 +v -0.03577 0.05754 0.16409 +v -0.03153 0.03936 0.16628 +v -0.04619 0.05942 0.16488 +v -0.02543 0.05000 0.16761 +v -0.03538 0.03195 0.16799 +v -0.05411 0.05492 0.17010 +v -0.03925 0.02983 0.16887 +v -0.04772 0.03353 0.17202 +v -0.02347 0.04133 0.16824 +v -0.02851 0.03462 0.16951 +v -0.05430 0.06373 0.16808 +v -0.03927 0.02778 0.17050 +v -0.04913 0.03428 0.17209 +v -0.03730 0.02812 0.16959 +v -0.03886 0.02816 0.17182 +v -0.03757 0.02739 0.17085 +v -0.03914 0.02905 0.17324 +v -0.07089 0.08659 0.16941 +v -0.04040 0.02938 0.17450 +v -0.07669 0.09733 0.16735 +v -0.07994 0.10499 0.16522 +v -0.08081 0.11099 0.15978 +v -0.08358 0.11254 0.16219 +v -0.08214 0.10939 0.16785 +v -0.08035 0.10750 0.17484 +v -0.08437 0.11704 0.16243 +v -0.08062 0.11812 0.16762 +v -0.01376 0.12452 0.21847 +v -0.01267 0.12445 0.21665 +v -0.01652 0.12455 0.21715 +v -0.01435 0.12451 0.21489 +v -0.01623 0.12468 0.21975 +v -0.01240 0.12460 0.21312 +v -0.01600 0.12465 0.21263 +v -0.01436 0.12465 0.22012 +v -0.01751 0.12463 0.21974 +v -0.02105 0.12463 0.21331 +v -0.01749 0.12475 0.22073 +v -0.01959 0.12445 0.21958 +v -0.01150 0.12489 0.21057 +v -0.01471 0.12486 0.20993 +v -0.01837 0.12504 0.20845 +v -0.01341 0.12455 0.22096 +v -0.01462 0.12480 0.22087 +v -0.02143 0.12484 0.20867 +v -0.01790 0.12472 0.22127 +v -0.01591 0.12546 0.20591 +v -0.02073 0.12518 0.20691 +v -0.02369 0.12472 0.20895 +v -0.01257 0.12569 0.20510 +v -0.01452 0.12550 0.20555 +v -0.01839 0.12537 0.20663 +v -0.02174 0.12497 0.20730 +v -0.01929 0.12538 0.20666 +v -0.02282 0.12495 0.20722 +v -0.02600 0.12483 0.21106 +v -0.01180 0.12563 0.20474 +v -0.01555 0.12557 0.20490 +v -0.02182 0.12524 0.20643 +v -0.01980 0.12565 0.20569 +v -0.02399 0.12483 0.20733 +v -0.02571 0.12491 0.20798 +v -0.02912 0.12498 0.21237 +v -0.01628 0.12569 0.20482 +v -0.01826 0.12581 0.20502 +v -0.02090 0.12565 0.20555 +v -0.02462 0.12494 0.20694 +v -0.02458 0.12475 0.20767 +v -0.02792 0.12520 0.20838 +v -0.03100 0.12460 0.21605 +v -0.02292 0.12542 0.20587 +v -0.02775 0.12534 0.20722 +v -0.03184 0.12505 0.21185 +v -0.02592 0.12526 0.20635 +v -0.02868 0.12556 0.20706 +v -0.03370 0.12467 0.21431 +v -0.03078 0.12524 0.21075 +v -0.02752 0.12571 0.20599 +v -0.03593 0.12444 0.21582 +v -0.03478 0.12481 0.21196 +v -0.02695 0.12577 0.20533 +v -0.03319 0.12514 0.21042 +v -0.12719 0.12012 0.23395 +v -0.12730 0.12000 0.23453 +v -0.12684 0.12057 0.23468 +v -0.12756 0.11927 0.23443 +v -0.12716 0.12006 0.23542 +v -0.12666 0.12064 0.23402 +v -0.12668 0.12042 0.23633 +v -0.12691 0.12047 0.23359 +v -0.12637 0.12087 0.23479 +v -0.12747 0.11927 0.23623 +v -0.12767 0.11893 0.23318 +v -0.12711 0.11978 0.23661 +v -0.12631 0.12074 0.23340 +v -0.12775 0.11856 0.23584 +v -0.12788 0.11759 0.23419 +v -0.12604 0.12076 0.23686 +v -0.12673 0.12023 0.23706 +v -0.12633 0.12051 0.23226 +v -0.12564 0.12090 0.23282 +v -0.12713 0.11912 0.23732 +v -0.12781 0.11798 0.23502 +v -0.12769 0.11818 0.23689 +v -0.12538 0.12107 0.23625 +v -0.12635 0.12055 0.23710 +v -0.12692 0.11980 0.23736 +v -0.12440 0.12118 0.23177 +v -0.12781 0.11792 0.23600 +v -0.12775 0.11705 0.23579 +v -0.12520 0.12098 0.23711 +v -0.12483 0.12125 0.23511 +v -0.12574 0.12067 0.23760 +v -0.12662 0.12010 0.23772 +v -0.12644 0.12036 0.23122 +v -0.12537 0.12092 0.23176 +v -0.12669 0.11961 0.23793 +v -0.12667 0.11863 0.23800 +v -0.12773 0.11766 0.23671 +v -0.12801 0.11506 0.23274 +v -0.12781 0.11644 0.23474 +v -0.12618 0.12030 0.23799 +v -0.12579 0.12078 0.23083 +v -0.12351 0.12133 0.23189 +v -0.12508 0.12108 0.23066 +v -0.12754 0.11758 0.23726 +v -0.12820 0.11297 0.23180 +v -0.12790 0.11407 0.23325 +v -0.12753 0.11498 0.23558 +v -0.12560 0.12051 0.23807 +v -0.12655 0.12002 0.23805 +v -0.12625 0.11940 0.23840 +v -0.12720 0.11715 0.23752 +v -0.12753 0.11685 0.23690 +v -0.12763 0.11724 0.23717 +v -0.12752 0.11599 0.23622 +v -0.12583 0.12014 0.23841 +v -0.12630 0.11990 0.23827 +v -0.12557 0.12110 0.22997 +v -0.12471 0.12122 0.22961 +v -0.12573 0.11889 0.23871 +v -0.12670 0.11698 0.23789 +v -0.12799 0.10906 0.23348 +v -0.12753 0.11395 0.23527 +v -0.12714 0.11537 0.23681 +v -0.12513 0.12020 0.23857 +v -0.12568 0.11969 0.23870 +v -0.12712 0.11645 0.23739 +v -0.12764 0.11098 0.23460 +v -0.12718 0.11414 0.23647 +v -0.12522 0.12105 0.22887 +v -0.12402 0.12137 0.22822 +v -0.12519 0.11802 0.23883 +v -0.12506 0.11940 0.23904 +v -0.12679 0.11577 0.23747 +v -0.12790 0.10666 0.23515 +v -0.12752 0.10966 0.23577 +v -0.12717 0.11286 0.23689 +v -0.12646 0.11464 0.23757 +v -0.12475 0.11983 0.23898 +v -0.12518 0.11980 0.23891 +v -0.12570 0.11697 0.23842 +v -0.12494 0.11878 0.23906 +v -0.12599 0.11579 0.23808 +v -0.12770 0.10815 0.23588 +v -0.12736 0.11008 0.23630 +v -0.12688 0.11373 0.23718 +v -0.12727 0.11202 0.23646 +v -0.12770 0.10527 0.23588 +v -0.12742 0.10841 0.23652 +v -0.12683 0.11296 0.23748 +v -0.12687 0.11186 0.23745 +v -0.12642 0.11360 0.23778 +v -0.12459 0.11956 0.23914 +v -0.12787 0.10360 0.23469 +v -0.12713 0.10922 0.23698 +v -0.12576 0.11390 0.23827 +v -0.12786 0.10215 0.23458 +v -0.12753 0.10367 0.23588 +v -0.12749 0.10494 0.23632 +v -0.12707 0.10734 0.23704 +v -0.12614 0.11209 0.23841 +v -0.12768 0.10128 0.23513 +v -0.12665 0.10959 0.23776 +v -0.12628 0.11087 0.23820 +v -0.12722 0.10144 0.23615 +v -0.12707 0.10381 0.23674 +v -0.12656 0.10460 0.23758 +v -0.12630 0.10753 0.23794 +v -0.12775 0.09923 0.23517 +v -0.12610 0.10574 0.23816 +v -0.12616 0.10933 0.23840 +v -0.12628 0.10852 0.23810 +v -0.12573 0.10963 0.23875 +v -0.12674 0.10171 0.23696 +v -0.12708 0.09966 0.23635 +v -0.12579 0.10478 0.23864 +v -0.12529 0.10594 0.23890 +v -0.12561 0.10745 0.23856 +v -0.12722 0.09814 0.23596 +v -0.12590 0.10221 0.23816 +v -0.12594 0.10332 0.23820 +v -0.12487 0.10751 0.23901 +v -0.12572 0.10090 0.23844 +v -0.12648 0.09902 0.23715 +v -0.12499 0.10551 0.23909 +v -0.12566 0.10473 0.23875 +v -0.12625 0.09774 0.23745 +v -0.12547 0.10143 0.23864 +v -0.12531 0.10280 0.23866 +v -0.12580 0.09952 0.23809 +v -0.12629 0.09642 0.23753 +v -0.12548 0.09854 0.23817 +v -0.12517 0.10051 0.23886 +v -0.12532 0.10440 0.23890 +v -0.12527 0.09990 0.23863 +v -0.12585 0.09632 0.23817 +v -0.12570 0.09764 0.23809 +v -0.12532 0.09935 0.23851 +v -0.12512 0.09770 0.23844 +v -0.12406 0.09823 0.23874 +v -0.12575 0.09542 0.23805 +v -0.12563 0.09646 0.23837 +v -0.12551 0.09594 0.23840 +v -0.12475 0.09702 0.23865 +v -0.12525 0.09642 0.23857 +v -0.12516 0.09597 0.23860 +v -0.04629 0.07923 0.21101 +v -0.04653 0.07958 0.21152 +v -0.04669 0.07832 0.21071 +v -0.04690 0.07920 0.21149 +v -0.04729 0.07991 0.21270 +v -0.04664 0.07712 0.20949 +v -0.04765 0.07883 0.21209 +v -0.04735 0.07715 0.21041 +v -0.04778 0.07765 0.21145 +v -0.04854 0.07960 0.21352 +v -0.04573 0.08130 0.21487 +v -0.04792 0.07609 0.20964 +v -0.04707 0.07601 0.20837 +v -0.05057 0.07696 0.21358 +v -0.04795 0.07668 0.21082 +v -0.04853 0.07683 0.21178 +v -0.05484 0.07462 0.21497 +v -0.04922 0.07692 0.21261 +v -0.04434 0.08162 0.21490 +v -0.04802 0.07561 0.20856 +v -0.04860 0.07589 0.21082 +v -0.04790 0.07511 0.20773 +v -0.05134 0.07480 0.21208 +v -0.04949 0.07601 0.21198 +v -0.04333 0.08281 0.21464 +v -0.04885 0.07530 0.20873 +v -0.04864 0.07552 0.21006 +v -0.05321 0.07361 0.21253 +v -0.04893 0.07505 0.20828 +v -0.04884 0.07538 0.20938 +v -0.04892 0.07536 0.21047 +v -0.04825 0.07432 0.20710 +v -0.04956 0.07522 0.21095 +v -0.05216 0.07379 0.21111 +v -0.05449 0.07282 0.21306 +v -0.05857 0.07094 0.21524 +v -0.04979 0.07476 0.20911 +v -0.04892 0.07452 0.20762 +v -0.04929 0.07511 0.21003 +v -0.04874 0.07311 0.20646 +v -0.05045 0.07456 0.21025 +v -0.05325 0.07310 0.21138 +v -0.05385 0.07280 0.21205 +v -0.05633 0.07146 0.21335 +v -0.05030 0.07424 0.20839 +v -0.05009 0.07379 0.20756 +v -0.04988 0.07299 0.20675 +v -0.05339 0.07278 0.20985 +v -0.05168 0.07375 0.20970 +v -0.05489 0.07196 0.21191 +v -0.05839 0.06989 0.21361 +v -0.05132 0.07367 0.20848 +v -0.04834 0.07217 0.20589 +v -0.04967 0.07204 0.20612 +v -0.05398 0.07250 0.21113 +v -0.05642 0.07077 0.21129 +v -0.05732 0.07026 0.21257 +v -0.05135 0.07325 0.20764 +v -0.05111 0.07278 0.20692 +v -0.05086 0.07230 0.20642 +v -0.05256 0.07299 0.20832 +v -0.05844 0.06951 0.21169 +v -0.04923 0.07064 0.20557 +v -0.05082 0.07167 0.20610 +v -0.05367 0.07252 0.20853 +v -0.05672 0.07059 0.20977 +v -0.05220 0.07279 0.20738 +v -0.05300 0.07226 0.20685 +v -0.04801 0.06959 0.20511 +v -0.05234 0.07119 0.20604 +v -0.05377 0.07232 0.20766 +v -0.05491 0.07179 0.20840 +v -0.05291 0.07257 0.20738 +v -0.05293 0.07179 0.20639 +v -0.04907 0.06836 0.20511 +v -0.05123 0.07011 0.20567 +v -0.05658 0.07081 0.20827 +v -0.05423 0.07185 0.20693 +v -0.05340 0.07041 0.20591 +v -0.05453 0.07195 0.20747 +v -0.05615 0.07098 0.20737 +v -0.05471 0.07118 0.20648 +v -0.04542 0.06457 0.20391 +v -0.05018 0.06788 0.20522 +v -0.05432 0.07065 0.20610 +v -0.05509 0.07148 0.20713 +v -0.04881 0.06471 0.20450 +v -0.05421 0.07027 0.20596 +v -0.05260 0.06746 0.20550 +v -0.05570 0.07053 0.20656 +v -0.05491 0.07057 0.20623 +v -0.05052 0.06542 0.20497 +v -0.05467 0.06953 0.20599 +v -0.05718 0.07009 0.20698 +v -0.05068 0.06407 0.20468 +v -0.05607 0.06722 0.20587 +v -0.05375 0.06525 0.20526 +v -0.05665 0.06916 0.20630 +v -0.04942 0.06261 0.20421 +v -0.05148 0.06284 0.20449 +v -0.05612 0.06596 0.20573 +v -0.05007 0.06103 0.20405 +v -0.05442 0.06243 0.20460 +v -0.05726 0.06445 0.20549 +v -0.04955 0.06009 0.20384 +v -0.05170 0.06161 0.20425 +v -0.05036 0.05999 0.20389 +v -0.05689 0.06303 0.20502 +v -0.05385 0.06036 0.20396 +v -0.05710 0.06150 0.20451 +v -0.05828 0.06272 0.20515 +v -0.05169 0.06022 0.20391 +v -0.05811 0.06022 0.20399 +v -0.05872 0.06156 0.20475 +v -0.05965 0.05968 0.20397 +v -0.05822 0.05986 0.20380 +v -0.05840 0.05797 0.20319 +v -0.05916 0.05864 0.20346 +v -0.03204 0.07665 0.15634 +v -0.03221 0.07840 0.15448 +v -0.03409 0.07707 0.15565 +v -0.03007 0.07771 0.15574 +v -0.03384 0.07832 0.15414 +v -0.03360 0.07457 0.15811 +v -0.03051 0.07660 0.15687 +v -0.02985 0.07913 0.15445 +v -0.03569 0.07771 0.15486 +v -0.03300 0.07908 0.15361 +v -0.03991 0.07678 0.15716 +v -0.02893 0.07713 0.15662 +v -0.02921 0.07795 0.15558 +v -0.03216 0.08000 0.15338 +v -0.03492 0.07883 0.15376 +v -0.03373 0.07911 0.15343 +v -0.03026 0.07491 0.15899 +v -0.03770 0.06811 0.16121 +v -0.02904 0.07595 0.15823 +v -0.02810 0.07785 0.15571 +v -0.03657 0.07798 0.15474 +v -0.03324 0.07978 0.15315 +v -0.03130 0.07404 0.15944 +v -0.04722 0.06858 0.16276 +v -0.03292 0.07229 0.16014 +v -0.02671 0.07677 0.15764 +v -0.02747 0.07878 0.15472 +v -0.02749 0.08108 0.15364 +v -0.03401 0.07979 0.15312 +v -0.03661 0.07899 0.15426 +v -0.02958 0.07398 0.16012 +v -0.02864 0.07496 0.15967 +v -0.03191 0.07040 0.16186 +v -0.02742 0.07558 0.15969 +v -0.02660 0.07778 0.15570 +v -0.03010 0.07234 0.16134 +v -0.03124 0.07246 0.16078 +v -0.03343 0.06592 0.16281 +v -0.02593 0.07599 0.16015 +v -0.02556 0.07885 0.15487 +v -0.02320 0.08124 0.15426 +v -0.02886 0.07332 0.16094 +v -0.02803 0.07420 0.16073 +v -0.02777 0.07492 0.16027 +v -0.03000 0.06853 0.16361 +v -0.02534 0.07755 0.15617 +v -0.02454 0.07662 0.15927 +v -0.02657 0.07547 0.16072 +v -0.02218 0.08578 0.15340 +v -0.02842 0.07216 0.16231 +v -0.02697 0.07485 0.16103 +v -0.03133 0.06405 0.16409 +v -0.03003 0.07056 0.16277 +v -0.02968 0.07156 0.16224 +v -0.02425 0.07718 0.15740 +v -0.02420 0.07607 0.16144 +v -0.02568 0.07527 0.16181 +v -0.02369 0.07827 0.15579 +v -0.02005 0.08437 0.15425 +v -0.02758 0.07271 0.16236 +v -0.02862 0.06089 0.16570 +v -0.02854 0.06616 0.16505 +v -0.02858 0.07095 0.16319 +v -0.02273 0.07683 0.16022 +v -0.02311 0.07710 0.15860 +v -0.02208 0.07869 0.15569 +v -0.01982 0.08099 0.15520 +v -0.02710 0.07164 0.16349 +v -0.02807 0.06850 0.16474 +v -0.02810 0.06977 0.16418 +v -0.02214 0.07770 0.15726 +v -0.02254 0.07626 0.16196 +v -0.02432 0.07545 0.16304 +v -0.02636 0.07407 0.16237 +v -0.02097 0.07930 0.15547 +v -0.01788 0.08383 0.15571 +v -0.02650 0.07275 0.16324 +v -0.02450 0.06060 0.16845 +v -0.02617 0.06567 0.16680 +v -0.02713 0.06774 0.16558 +v -0.02712 0.07087 0.16410 +v -0.02356 0.07540 0.16381 +v -0.02086 0.07690 0.16112 +v -0.02164 0.07722 0.15997 +v -0.02496 0.07453 0.16346 +v -0.02090 0.07832 0.15640 +v -0.01944 0.07895 0.15664 +v -0.01839 0.08055 0.15619 +v -0.02549 0.07242 0.16440 +v -0.02687 0.06938 0.16514 +v -0.02141 0.07556 0.16354 +v -0.02402 0.07503 0.16396 +v -0.02087 0.07745 0.15948 +v -0.02497 0.07374 0.16405 +v -0.02038 0.07799 0.15749 +v -0.01666 0.08298 0.15766 +v -0.01752 0.08111 0.15704 +v -0.02620 0.06811 0.16612 +v -0.02493 0.07098 0.16574 +v -0.02281 0.07532 0.16400 +v -0.01972 0.07635 0.16271 +v -0.02376 0.07420 0.16460 +v -0.02333 0.07499 0.16433 +v -0.01994 0.07777 0.15869 +v -0.01810 0.07959 0.15728 +v -0.02400 0.07274 0.16531 +v -0.02544 0.06782 0.16694 +v -0.02548 0.06940 0.16619 +v -0.02238 0.07456 0.16472 +v -0.01996 0.07744 0.15992 +v -0.01877 0.07751 0.16115 +v -0.01920 0.07523 0.16433 +v -0.01936 0.07812 0.15806 +v -0.01727 0.07991 0.15921 +v -0.01854 0.07875 0.15800 +v -0.02485 0.06704 0.16797 +v -0.02378 0.07028 0.16713 +v -0.02082 0.07450 0.16491 +v -0.01938 0.07744 0.16039 +v -0.01806 0.07649 0.16314 +v -0.01902 0.07802 0.15922 +v -0.02273 0.07344 0.16549 +v -0.01937 0.07790 0.15863 +v -0.02351 0.07154 0.16642 +v -0.02444 0.06848 0.16766 +v -0.02148 0.07370 0.16564 +v -0.01619 0.07806 0.16253 +v -0.01921 0.07363 0.16604 +v -0.01627 0.07527 0.16480 +v -0.02289 0.07249 0.16609 +v -0.02263 0.07113 0.16750 +v -0.02347 0.06936 0.16804 +v -0.02041 0.07298 0.16663 +v -0.01718 0.07331 0.16656 +v -0.02185 0.07280 0.16633 +v -0.02238 0.07196 0.16684 +v -0.02286 0.07033 0.16801 +v -0.01871 0.07283 0.16717 +v -0.01372 0.07243 0.16717 +v -0.02231 0.07014 0.16887 +v -0.02199 0.07159 0.16759 +v -0.02127 0.07219 0.16729 +v -0.01742 0.07251 0.16774 +v -0.01921 0.07202 0.16835 +v -0.01617 0.07204 0.16815 +v -0.02128 0.07154 0.16831 +v -0.02045 0.07231 0.16753 +v -0.01815 0.07244 0.16789 +v -0.01419 0.07109 0.16892 +v -0.01765 0.07158 0.16917 +v -0.02037 0.07146 0.16897 +v -0.01553 0.07094 0.16985 +v -0.01930 0.07078 0.17017 +v -0.01371 0.07036 0.17043 +v -0.01662 0.07063 0.17085 +v -0.01763 0.07055 0.17098 +v -0.01504 0.07017 0.17164 +v -0.01826 0.07003 0.17166 +v -0.01668 0.06998 0.17224 +v -0.08771 0.12025 0.15940 +v -0.08793 0.12120 0.16074 +v -0.08724 0.12087 0.16063 +v -0.08880 0.12088 0.15987 +v -0.08719 0.12153 0.16163 +v -0.08658 0.12007 0.16040 +v -0.08953 0.12058 0.15848 +v -0.08868 0.12150 0.16125 +v -0.08586 0.12076 0.16134 +v -0.08624 0.11896 0.16003 +v -0.08978 0.12093 0.15998 +v -0.08745 0.12211 0.16270 +v -0.08580 0.12171 0.16227 +v -0.08560 0.11940 0.16107 +v -0.09071 0.12062 0.15903 +v -0.09012 0.12134 0.16119 +v -0.08886 0.12221 0.16278 +v -0.08517 0.12132 0.16187 +v -0.08458 0.11987 0.16188 +v -0.09082 0.12089 0.16013 +v -0.08596 0.12220 0.16335 +v -0.08809 0.12239 0.16334 +v -0.08447 0.12166 0.16245 +v -0.08473 0.12095 0.16183 +v -0.09218 0.12089 0.15938 +v -0.09145 0.12121 0.16106 +v -0.09064 0.12179 0.16232 +v -0.08516 0.12205 0.16293 +v -0.08694 0.12243 0.16391 +v -0.08970 0.12243 0.16397 +v -0.08302 0.11972 0.16335 +v -0.08377 0.12091 0.16233 +v -0.09068 0.12219 0.16341 +v -0.08513 0.12226 0.16365 +v -0.08578 0.12238 0.16480 +v -0.08763 0.12260 0.16446 +v -0.08451 0.12212 0.16323 +v -0.09320 0.12117 0.16103 +v -0.09316 0.12195 0.16295 +v -0.08670 0.12255 0.16476 +v -0.09030 0.12242 0.16477 +v -0.08855 0.12260 0.16503 +v -0.08292 0.12184 0.16323 +v -0.08332 0.12163 0.16271 +v -0.08195 0.12043 0.16434 +v -0.08278 0.12108 0.16299 +v -0.09419 0.12092 0.15968 +v -0.09252 0.12220 0.16402 +v -0.08423 0.12223 0.16418 +v -0.08669 0.12239 0.16617 +v -0.08759 0.12260 0.16528 +v -0.08131 0.12102 0.16531 +v -0.09504 0.12097 0.16089 +v -0.09333 0.12161 0.16205 +v -0.09327 0.12214 0.16367 +v -0.08351 0.12219 0.16518 +v -0.08458 0.12220 0.16628 +v -0.09234 0.12228 0.16530 +v -0.08278 0.12189 0.16436 +v -0.08275 0.12164 0.16297 +v -0.07978 0.12090 0.16656 +v -0.09605 0.12076 0.15979 +v -0.09430 0.12150 0.16195 +v -0.09391 0.12179 0.16238 +v -0.09479 0.12191 0.16325 +v -0.08057 0.12127 0.16592 +v -0.09666 0.12074 0.16095 +v -0.09579 0.12134 0.16201 +v -0.09444 0.12221 0.16522 +v -0.08284 0.12190 0.16677 +v -0.08191 0.12169 0.16540 +v -0.08109 0.12148 0.16594 +v -0.08036 0.12135 0.16637 +v -0.09718 0.12054 0.16019 +v -0.09597 0.12218 0.16452 +v -0.08089 0.12150 0.16694 +v -0.08245 0.12161 0.16820 +v -0.09590 0.12229 0.16594 +v -0.07983 0.12134 0.16693 +v -0.09733 0.12126 0.16200 +v -0.09751 0.12048 0.16066 +v -0.09746 0.12085 0.15940 +v -0.09655 0.12183 0.16321 +v -0.07875 0.12132 0.16733 +v -0.09762 0.12071 0.16115 +v -0.09803 0.12070 0.16026 +v -0.09818 0.12225 0.16438 +v -0.09776 0.12237 0.16533 +v -0.09797 0.12104 0.16152 +v -0.09805 0.12192 0.16328 +v -0.09789 0.12054 0.16077 +v -0.09842 0.12112 0.15955 +v -0.09824 0.12091 0.16100 +v -0.09864 0.12154 0.16191 +v -0.09913 0.12152 0.16042 +v -0.09905 0.12252 0.16520 +v -0.09910 0.12231 0.16403 +v -0.09910 0.12203 0.16305 +v -0.09904 0.12173 0.15896 +v -0.09960 0.12206 0.16228 +v -0.09957 0.12219 0.16310 +v -0.09996 0.12265 0.16414 +v -0.08146 0.11248 0.21049 +v -0.07554 0.11081 0.21376 +v -0.07372 0.08685 0.22000 +v -0.07162 0.08452 0.22135 +v -0.07307 0.08406 0.21002 +v -0.06401 0.06836 0.21137 +v -0.06522 0.06841 0.20984 +v -0.06696 0.07176 0.21179 +v -0.06379 0.06773 0.21008 +v -0.06804 0.07047 0.20822 +v -0.06342 0.06703 0.20893 +v -0.06286 0.06771 0.21027 +v -0.06562 0.06702 0.20848 +v -0.06321 0.06793 0.21266 +v -0.06211 0.06794 0.21165 +v -0.06683 0.06695 0.20800 +v -0.07100 0.07433 0.20196 +v -0.06825 0.07489 0.21437 +v -0.06333 0.06783 0.21349 +v -0.06129 0.06790 0.20947 +v -0.06439 0.06532 0.20773 +v -0.06753 0.06745 0.20765 +v -0.06599 0.06572 0.20780 +v -0.06833 0.06833 0.20645 +v -0.06741 0.07372 0.21603 +v -0.06236 0.06779 0.21349 +v -0.06341 0.06784 0.21445 +v -0.06182 0.06701 0.20802 +v -0.06266 0.06595 0.20765 +v -0.06035 0.06848 0.21148 +v -0.06709 0.06615 0.20727 +v -0.06792 0.06642 0.20558 +v -0.06116 0.06814 0.21289 +v -0.06072 0.06756 0.20762 +v -0.06290 0.06464 0.20711 +v -0.06596 0.06466 0.20699 +v -0.05936 0.06898 0.20976 +v -0.07046 0.06919 0.19893 +v -0.06854 0.06561 0.20259 +v -0.06125 0.06815 0.21431 +v -0.06234 0.06778 0.21487 +v -0.06135 0.06640 0.20716 +v -0.05985 0.06857 0.20828 +v -0.06134 0.06706 0.20754 +v -0.06403 0.06327 0.20670 +v -0.06201 0.06541 0.20706 +v -0.05998 0.06877 0.21339 +v -0.06610 0.06298 0.20551 +v -0.06301 0.06772 0.21529 +v -0.05967 0.06834 0.20725 +v -0.06265 0.06372 0.20672 +v -0.06156 0.06453 0.20662 +v -0.05871 0.06940 0.20832 +v -0.06161 0.06822 0.21537 +v -0.06052 0.06858 0.21451 +v -0.06255 0.06820 0.21595 +v -0.06108 0.06561 0.20672 +v -0.05917 0.06898 0.20756 +v -0.05995 0.06777 0.20696 +v -0.06013 0.06689 0.20670 +v -0.06211 0.06267 0.20617 +v -0.06448 0.06171 0.20604 +v -0.06490 0.06087 0.20500 +v -0.06088 0.06857 0.21513 +v -0.05991 0.06921 0.21478 +v -0.05894 0.06883 0.20697 +v -0.05904 0.06797 0.20654 +v -0.06333 0.06170 0.20607 +v -0.06001 0.06539 0.20630 +v -0.05764 0.07014 0.20789 +v -0.05838 0.06948 0.20730 +v -0.06104 0.06934 0.21604 +v -0.06038 0.06337 0.20593 +v -0.06212 0.06066 0.20509 +v -0.06373 0.06068 0.20541 +v -0.05898 0.06676 0.20620 +v -0.05807 0.06901 0.20662 +v -0.06073 0.06188 0.20545 +v -0.05898 0.06403 0.20573 +v -0.05698 0.07060 0.20751 +v -0.05837 0.06557 0.20589 +v -0.05838 0.06745 0.20612 +v -0.05962 0.06251 0.20546 +v -0.05779 0.06687 0.20596 +v -0.05705 0.06587 0.20577 +v -0.02056 0.06665 0.20283 +v -0.01963 0.06494 0.20242 +v -0.02232 0.06572 0.20258 +v -0.01888 0.06781 0.20294 +v -0.02102 0.06311 0.20200 +v -0.01603 0.06575 0.20251 +v -0.01794 0.06230 0.20167 +v -0.01646 0.06775 0.20289 +v -0.01957 0.06120 0.20138 +v -0.01522 0.06669 0.20276 +v -0.01532 0.06295 0.20173 +v -0.01726 0.05973 0.20065 +v -0.01461 0.06811 0.20293 +v -0.01408 0.06505 0.20238 +v -0.01478 0.06074 0.20093 +v -0.02050 0.05902 0.20053 +v -0.01147 0.06955 0.20270 +v -0.01257 0.06659 0.20276 +v -0.01282 0.06348 0.20192 +v -0.01284 0.06167 0.20120 +v -0.01685 0.05648 0.19886 +v -0.01473 0.05886 0.20006 +v -0.01149 0.07270 0.20277 +v -0.01260 0.06497 0.20246 +v -0.01216 0.05936 0.20013 +v -0.02056 0.05429 0.19798 +v -0.00983 0.07149 0.20227 +v -0.01024 0.06697 0.20263 +v -0.01166 0.06535 0.20267 +v -0.01090 0.06255 0.20153 +v -0.01031 0.06051 0.20055 +v -0.01244 0.05596 0.19812 +v -0.01639 0.05067 0.19464 +v -0.00972 0.07306 0.20209 +v -0.00898 0.06998 0.20194 +v -0.01048 0.07456 0.20228 +v -0.00889 0.06813 0.20205 +v -0.01092 0.06589 0.20278 +v -0.01053 0.06482 0.20257 +v -0.00955 0.06419 0.20232 +v -0.00965 0.05787 0.19914 +v -0.00899 0.07234 0.20178 +v -0.00867 0.07138 0.20164 +v -0.00833 0.06602 0.20202 +v -0.00959 0.06545 0.20259 +v -0.00871 0.06257 0.20130 +v -0.00811 0.05997 0.19958 +v -0.00949 0.05302 0.19524 +v -0.00863 0.05555 0.19769 +v -0.00884 0.07314 0.20153 +v -0.00904 0.07422 0.20086 +v -0.00781 0.06897 0.20138 +v -0.00776 0.07044 0.20098 +v -0.00715 0.06735 0.20085 +v -0.00829 0.06383 0.20202 +v -0.00697 0.05692 0.19840 +v -0.01080 0.04929 0.19104 +v -0.00823 0.07274 0.20055 +v -0.00855 0.06476 0.20231 +v -0.00699 0.06519 0.20080 +v -0.00737 0.06200 0.20002 +v -0.00769 0.06346 0.20158 +v -0.00636 0.05868 0.19757 +v -0.00748 0.05445 0.19662 +v -0.00763 0.05155 0.19264 +v -0.00666 0.05542 0.19760 +v -0.00862 0.07337 0.20124 +v -0.00694 0.06905 0.20050 +v -0.00674 0.07071 0.19904 +v -0.00769 0.06446 0.20181 +v -0.00600 0.06629 0.19862 +v -0.00735 0.06299 0.20084 +v -0.00667 0.06126 0.19826 +v -0.00588 0.05669 0.19770 +v -0.00729 0.05378 0.19573 +v -0.00680 0.05313 0.19447 +v -0.00764 0.05086 0.19014 +v -0.00611 0.05589 0.19814 +v -0.00614 0.06813 0.19953 +v -0.00710 0.06384 0.20107 +v -0.00658 0.06351 0.19937 +v -0.00607 0.06083 0.19464 +v -0.00593 0.05614 0.19816 +v -0.00570 0.05659 0.19580 +v -0.00623 0.05464 0.19607 +v -0.00603 0.05233 0.19277 +v -0.00951 0.04826 0.18795 +v -0.00659 0.05141 0.19185 +v -0.00581 0.05574 0.19746 +v -0.00589 0.07016 0.19634 +v -0.00558 0.06753 0.19869 +v -0.00592 0.06421 0.19645 +v -0.00622 0.06251 0.19737 +v -0.00570 0.05396 0.19379 +v -0.00872 0.04937 0.18655 +v -0.00625 0.05168 0.19165 +v -0.00568 0.06866 0.19840 +v -0.00556 0.07086 0.19229 +v -0.00547 0.06781 0.19746 +v -0.00552 0.06732 0.19442 +v -0.00607 0.05619 0.19225 +v -0.00555 0.05288 0.19282 +v -0.00790 0.05374 0.18789 +v -0.00608 0.05292 0.19166 +v -0.00583 0.06454 0.19331 +v -0.00707 0.05935 0.18946 +v -0.00583 0.06636 0.19045 +v -0.00644 0.06345 0.19029 +v -0.01869 0.04055 0.17386 +v -0.01917 0.03906 0.17468 +v -0.01881 0.04000 0.17510 +v -0.01942 0.03903 0.17345 +v -0.01913 0.03927 0.17561 +v -0.01868 0.04110 0.17546 +v -0.01939 0.04005 0.17187 +v -0.02013 0.03732 0.17446 +v -0.01892 0.04005 0.17570 +v -0.01950 0.03826 0.17539 +v -0.01808 0.04244 0.17418 +v -0.01830 0.04220 0.17224 +v -0.02044 0.03807 0.17243 +v -0.01941 0.03985 0.17642 +v -0.01955 0.03856 0.17605 +v -0.01829 0.04327 0.17615 +v -0.01973 0.04178 0.17016 +v -0.02043 0.03886 0.17119 +v -0.02005 0.03732 0.17592 +v -0.02204 0.03559 0.17342 +v -0.01908 0.04149 0.17671 +v -0.01771 0.04343 0.17313 +v -0.01769 0.04408 0.17433 +v -0.01868 0.04363 0.17084 +v -0.02066 0.03981 0.17022 +v -0.02253 0.03740 0.17075 +v -0.02050 0.03609 0.17555 +v -0.02102 0.03554 0.17491 +v -0.02011 0.03827 0.17668 +v -0.01989 0.04069 0.17769 +v -0.01793 0.04398 0.17209 +v -0.01764 0.04496 0.17559 +v -0.01910 0.04237 0.17781 +v -0.02089 0.04453 0.16890 +v -0.02084 0.03604 0.17648 +v -0.02486 0.03426 0.17228 +v -0.02203 0.03456 0.17533 +v -0.02027 0.03926 0.17729 +v -0.02043 0.03731 0.17668 +v -0.01771 0.04467 0.17300 +v -0.01763 0.04568 0.17411 +v -0.01786 0.04478 0.17694 +v -0.01836 0.04380 0.17754 +v -0.01899 0.04642 0.17164 +v -0.02120 0.03501 0.17592 +v -0.02369 0.03415 0.17360 +v -0.02321 0.03412 0.17469 +v -0.02080 0.03812 0.17737 +v -0.02105 0.03919 0.17834 +v -0.02034 0.04075 0.17899 +v -0.01738 0.04625 0.17570 +v -0.01822 0.04402 0.17687 +v -0.01738 0.04600 0.17675 +v -0.01856 0.04332 0.17902 +v -0.02263 0.04511 0.16760 +v -0.02165 0.03483 0.17674 +v -0.02172 0.03581 0.17731 +v -0.02203 0.03428 0.17637 +v -0.02175 0.03728 0.17800 +v -0.01943 0.04203 0.17922 +v -0.01767 0.04784 0.17472 +v -0.01733 0.04595 0.17767 +v -0.01779 0.04469 0.17844 +v -0.01897 0.05161 0.17358 +v -0.02109 0.03988 0.17945 +v -0.02000 0.04106 0.18013 +v -0.01716 0.04734 0.17679 +v -0.01888 0.04267 0.17977 +v -0.01765 0.04424 0.17983 +v -0.02068 0.05778 0.17215 +v -0.02063 0.04048 0.17974 +v -0.01910 0.04209 0.18033 +v -0.01695 0.04990 0.17686 +v -0.01663 0.04575 0.17958 +v -0.01682 0.04715 0.17817 +v -0.01829 0.04305 0.18041 +v -0.01792 0.05544 0.17539 +v -0.02088 0.03996 0.18040 +v -0.01874 0.04188 0.18125 +v -0.01684 0.04817 0.17764 +v -0.01712 0.04419 0.18072 +v -0.01721 0.05413 0.17643 +v -0.01779 0.05871 0.17559 +v -0.01992 0.04055 0.18109 +v -0.01650 0.04859 0.17808 +v -0.01607 0.04773 0.17902 +v -0.01662 0.04791 0.17824 +v -0.01547 0.04543 0.18114 +v -0.01761 0.04272 0.18180 +v -0.01628 0.05568 0.17762 +v -0.01678 0.05735 0.17702 +v -0.01658 0.05100 0.17748 +v -0.01838 0.04138 0.18231 +v -0.01585 0.04936 0.17863 +v -0.01492 0.04705 0.18057 +v -0.01629 0.04409 0.18168 +v -0.01599 0.05275 0.17819 +v -0.01556 0.06084 0.17820 +v -0.01592 0.05132 0.17828 +v -0.01916 0.03904 0.18353 +v -0.01495 0.04858 0.17986 +v -0.01469 0.04472 0.18254 +v -0.01400 0.04637 0.18183 +v -0.01649 0.04306 0.18279 +v -0.01423 0.05569 0.17978 +v -0.01410 0.06053 0.17988 +v -0.01736 0.04190 0.18325 +v -0.01817 0.04053 0.18364 +v -0.01468 0.05040 0.17972 +v -0.01332 0.04880 0.18148 +v -0.01545 0.04368 0.18305 +v -0.01405 0.04728 0.18125 +v -0.01483 0.05264 0.17935 +v -0.01871 0.03919 0.18436 +v -0.01345 0.04544 0.18310 +v -0.01467 0.04404 0.18342 +v -0.01588 0.04310 0.18418 +v -0.01338 0.05241 0.18081 +v -0.01198 0.05758 0.18206 +v -0.01701 0.04177 0.18440 +v -0.01768 0.04069 0.18467 +v -0.01242 0.04672 0.18301 +v -0.01387 0.04474 0.18371 +v -0.01507 0.04362 0.18371 +v -0.01256 0.05461 0.18144 +v -0.01805 0.03974 0.18558 +v -0.01099 0.05299 0.18334 +v -0.01267 0.04566 0.18392 +v -0.01461 0.04407 0.18415 +v -0.01098 0.04854 0.18360 +v -0.01657 0.04218 0.18573 +v -0.01170 0.04628 0.18399 +v -0.01356 0.04501 0.18493 +v -0.01131 0.04695 0.18373 +v -0.01489 0.04425 0.18501 +v -0.01565 0.04365 0.18541 +v -0.00945 0.05040 0.18506 +v -0.01204 0.04582 0.18490 +v -0.01059 0.04690 0.18478 +v -0.01551 0.04396 0.18632 +v -0.00952 0.04810 0.18483 +v -0.01296 0.04535 0.18614 +v -0.01450 0.04480 0.18569 +v -0.01513 0.04441 0.18577 +v -0.01148 0.04606 0.18584 +v -0.00928 0.04749 0.18497 +v -0.01485 0.04467 0.18644 +v -0.00907 0.04794 0.18533 +v -0.01055 0.04676 0.18651 +v -0.01518 0.04459 0.18815 +v -0.01211 0.04584 0.18697 +v -0.00943 0.04754 0.18571 +v -0.01218 0.07043 0.17502 +v -0.01207 0.07014 0.17649 +v -0.01076 0.07081 0.17561 +v -0.01282 0.07014 0.17558 +v -0.01025 0.07046 0.17747 +v -0.01127 0.07076 0.17442 +v -0.01364 0.06966 0.17590 +v -0.01291 0.07018 0.17467 +v -0.01152 0.06976 0.17801 +v -0.00963 0.07118 0.17625 +v -0.01004 0.07118 0.17412 +v -0.01214 0.07039 0.17372 +v -0.01301 0.06944 0.17759 +v -0.01021 0.06962 0.17936 +v -0.00979 0.07129 0.17529 +v -0.00895 0.07136 0.17734 +v -0.01184 0.07035 0.17278 +v -0.01426 0.06908 0.17699 +v -0.01393 0.06970 0.17457 +v -0.01326 0.06999 0.17387 +v -0.01198 0.06923 0.17896 +v -0.00866 0.07066 0.17907 +v -0.00933 0.07165 0.17494 +v -0.00894 0.07175 0.17615 +v -0.01097 0.07050 0.17231 +v -0.01289 0.07008 0.17278 +v -0.01395 0.06895 0.17798 +v -0.01477 0.06912 0.17605 +v -0.01480 0.06935 0.17504 +v -0.01331 0.06897 0.17867 +v -0.00869 0.06980 0.18033 +v -0.01112 0.06873 0.18041 +v -0.00848 0.07258 0.17669 +v -0.00807 0.07215 0.17847 +v -0.00903 0.07179 0.17399 +v -0.01235 0.07017 0.17152 +v -0.00953 0.07105 0.17256 +v -0.01460 0.06854 0.17763 +v -0.01525 0.06846 0.17675 +v -0.01397 0.06971 0.17385 +v -0.01470 0.06954 0.17403 +v -0.01408 0.06984 0.17302 +v -0.01253 0.06874 0.17957 +v -0.00928 0.06882 0.18153 +v -0.00742 0.07050 0.18084 +v -0.00870 0.07239 0.17494 +v -0.00753 0.07151 0.17985 +v -0.01107 0.07016 0.17072 +v -0.00987 0.07046 0.17117 +v -0.01357 0.07005 0.17188 +v -0.01423 0.06841 0.17845 +v -0.01388 0.06880 0.17858 +v -0.01568 0.06892 0.17552 +v -0.01552 0.06923 0.17475 +v -0.01351 0.06831 0.17931 +v -0.00804 0.06960 0.18134 +v -0.01007 0.06841 0.18164 +v -0.01243 0.06808 0.18039 +v -0.00855 0.07410 0.17552 +v -0.00824 0.07445 0.17795 +v -0.00733 0.07320 0.18033 +v -0.00843 0.07234 0.17347 +v -0.00871 0.07170 0.17294 +v -0.00874 0.07085 0.17122 +v -0.01501 0.06755 0.17795 +v -0.01614 0.06830 0.17609 +v -0.01557 0.06958 0.17356 +v -0.00825 0.06903 0.18209 +v -0.00684 0.07164 0.18103 +v -0.00682 0.07000 0.18245 +v -0.01112 0.06770 0.18165 +v -0.01018 0.06806 0.18210 +v -0.00837 0.07389 0.17337 +v -0.00849 0.07140 0.17199 +v -0.01001 0.07008 0.17000 +v -0.00896 0.07033 0.17020 +v -0.01599 0.06738 0.17687 +v -0.01426 0.06745 0.17908 +v -0.01682 0.06867 0.17520 +v -0.01627 0.06921 0.17452 +v -0.01346 0.06717 0.18017 +v -0.00868 0.06846 0.18258 +v -0.00667 0.07096 0.18168 +v -0.00688 0.07044 0.18156 +v -0.01246 0.06726 0.18106 +v -0.00834 0.07753 0.18239 +v -0.00613 0.07245 0.18314 +v -0.00799 0.07220 0.17197 +v -0.01586 0.06623 0.17745 +v -0.01473 0.06613 0.17898 +v -0.01681 0.06780 0.17592 +v -0.00778 0.06872 0.18303 +v -0.01001 0.06772 0.18250 +v -0.00885 0.06776 0.18322 +v -0.01204 0.06610 0.18176 +v -0.01674 0.06670 0.17638 +v -0.01418 0.06663 0.17963 +v -0.01769 0.06801 0.17508 +v -0.01725 0.06917 0.17424 +v -0.01781 0.06946 0.17314 +v -0.01288 0.06672 0.18102 +v -0.00676 0.06900 0.18369 +v -0.01025 0.06654 0.18286 +v -0.00653 0.07525 0.18737 +v -0.01532 0.06454 0.17844 +v -0.01690 0.06579 0.17634 +v -0.01401 0.06528 0.18022 +v -0.01734 0.06719 0.17567 +v -0.01769 0.06877 0.17466 +v -0.01329 0.06595 0.18083 +v -0.00750 0.06809 0.18406 +v -0.00586 0.06944 0.18396 +v -0.00533 0.07032 0.18375 +v -0.01112 0.06305 0.18285 +v -0.00826 0.07879 0.18843 +v -0.00507 0.07241 0.18599 +v -0.01824 0.06846 0.17449 +v -0.01793 0.06689 0.17510 +v -0.01821 0.06895 0.17400 +v -0.01906 0.06914 0.17247 +v -0.00823 0.06626 0.18478 +v -0.00655 0.06863 0.18450 +v -0.00473 0.07088 0.18464 +v -0.01275 0.06477 0.18145 +v -0.00542 0.07268 0.18924 +v -0.01445 0.06294 0.17962 +v -0.01352 0.06489 0.18077 +v -0.01866 0.06748 0.17427 +v -0.01855 0.06908 0.17336 +v -0.01911 0.06981 0.17148 +v -0.00694 0.06784 0.18500 +v -0.00549 0.06918 0.18487 +v -0.00496 0.06968 0.18453 +v -0.00465 0.07008 0.18439 +v -0.00803 0.06287 0.18665 +v -0.00456 0.07071 0.18639 +v -0.01718 0.06446 0.17607 +v -0.01835 0.06530 0.17467 +v -0.01859 0.06845 0.17414 +v -0.01895 0.06847 0.17354 +v -0.01993 0.06957 0.17118 +v -0.00668 0.06733 0.18607 +v -0.00588 0.06858 0.18563 +v -0.00452 0.07003 0.18502 +v -0.00935 0.05836 0.18530 +v -0.00675 0.06580 0.18756 +v -0.00483 0.07024 0.18846 +v -0.01684 0.06171 0.17652 +v -0.01945 0.06620 0.17347 +v -0.02003 0.06846 0.17201 +v -0.01962 0.06817 0.17279 +v -0.00486 0.06953 0.18567 +v -0.00463 0.06982 0.18677 +v -0.01814 0.06301 0.17487 +v -0.01947 0.06752 0.17333 +v -0.01915 0.06337 0.17361 +v -0.02045 0.07039 0.17025 +v -0.02108 0.06831 0.17104 +v -0.00583 0.06771 0.18767 +v -0.00508 0.06907 0.18720 +v -0.00527 0.06861 0.18994 +v -0.01881 0.06283 0.17389 +v -0.02026 0.06718 0.17238 +v -0.02041 0.06524 0.17247 +v -0.02110 0.06974 0.17031 +v -0.02066 0.07098 0.16958 +v -0.01877 0.06096 0.17427 +v -0.01895 0.06250 0.17387 +v -0.02023 0.06221 0.17270 +v -0.02112 0.07053 0.16981 +v -0.02211 0.06912 0.16975 +v -0.02135 0.06650 0.17140 +v -0.02230 0.06539 0.17070 +v -0.02167 0.07016 0.16960 +v -0.02150 0.07089 0.16907 +v -0.02100 0.07130 0.16900 +v -0.02248 0.06759 0.17008 +v -0.08190 0.12407 0.20586 +v -0.08230 0.12388 0.20567 +v -0.08165 0.12395 0.20573 +v -0.08172 0.12333 0.20535 +v -0.08321 0.12398 0.20571 +v -0.08095 0.12429 0.20636 +v -0.08110 0.12369 0.20556 +v -0.08239 0.12342 0.20516 +v -0.08331 0.12362 0.20506 +v -0.08038 0.12419 0.20608 +v -0.08044 0.12378 0.20567 +v -0.08072 0.12300 0.20548 +v -0.08230 0.12292 0.20498 +v -0.08550 0.12409 0.20539 +v -0.08346 0.12387 0.20537 +v -0.08171 0.12212 0.20528 +v -0.08286 0.12303 0.20473 +v -0.08445 0.12389 0.20522 +v -0.07968 0.12428 0.20620 +v -0.07978 0.12402 0.20582 +v -0.07966 0.12336 0.20559 +v -0.08053 0.12184 0.20573 +v -0.08259 0.12241 0.20479 +v -0.08330 0.12313 0.20466 +v -0.08496 0.12380 0.20493 +v -0.08568 0.12368 0.20477 +v -0.08459 0.12341 0.20461 +v -0.07959 0.12257 0.20564 +v -0.08111 0.12119 0.20577 +v -0.08337 0.12245 0.20446 +v -0.08300 0.12147 0.20475 +v -0.08389 0.12318 0.20451 +v -0.08736 0.12366 0.20440 +v -0.07901 0.12406 0.20586 +v -0.07949 0.12417 0.20590 +v -0.07858 0.12323 0.20552 +v -0.08187 0.12026 0.20576 +v -0.08016 0.12016 0.20659 +v -0.07942 0.12161 0.20597 +v -0.08367 0.12290 0.20440 +v -0.08623 0.12302 0.20401 +v -0.08417 0.12272 0.20428 +v -0.07851 0.12219 0.20573 +v -0.08427 0.12139 0.20412 +v -0.08323 0.11832 0.20530 +v -0.08527 0.12275 0.20408 +v -0.08714 0.12296 0.20359 +v -0.08836 0.12382 0.20429 +v -0.07807 0.12393 0.20548 +v -0.07773 0.12275 0.20546 +v -0.08028 0.11693 0.20831 +v -0.07891 0.12031 0.20674 +v -0.07804 0.12137 0.20611 +v -0.08586 0.12266 0.20378 +v -0.08606 0.12217 0.20341 +v -0.08830 0.12335 0.20359 +v -0.07784 0.12349 0.20532 +v -0.07835 0.11790 0.20841 +v -0.08577 0.12007 0.20253 +v -0.08778 0.12218 0.20232 +v -0.07761 0.12385 0.20527 +v -0.07664 0.12237 0.20544 +v -0.07715 0.12351 0.20517 +v -0.07762 0.12005 0.20696 +v -0.07643 0.12037 0.20666 +v -0.08671 0.11955 0.20074 +v -0.08729 0.12095 0.20115 +v -0.07643 0.12412 0.20494 +v -0.07633 0.12340 0.20497 +v -0.07564 0.12171 0.20563 +v -0.07557 0.11776 0.20857 +v -0.08836 0.12172 0.20077 +v -0.07545 0.12292 0.20500 +v -0.07490 0.12041 0.20644 +v -0.07406 0.11806 0.20825 +v -0.08787 0.12089 0.20011 +v -0.07583 0.12377 0.20478 +v -0.07474 0.12198 0.20536 +v -0.07135 0.11696 0.20922 +v -0.07569 0.12422 0.20478 +v -0.07505 0.12380 0.20478 +v -0.07379 0.12299 0.20492 +v -0.07385 0.12141 0.20562 +v -0.07394 0.12025 0.20645 +v -0.07287 0.12019 0.20647 +v -0.07110 0.12117 0.20551 +v -0.07431 0.12410 0.20493 +v -0.07275 0.12180 0.20528 +v -0.06884 0.12011 0.20606 +v -0.07331 0.12408 0.20497 +v -0.07204 0.12267 0.20482 +v -0.06557 0.11936 0.20674 +v -0.06959 0.12156 0.20471 +v -0.07253 0.12357 0.20478 +v -0.06742 0.12186 0.20477 +v -0.07099 0.12267 0.20467 +v -0.06917 0.12122 0.20479 +v -0.07019 0.12218 0.20458 +v -0.07257 0.12414 0.20492 +v -0.07152 0.12334 0.20470 +v -0.06156 0.11941 0.20622 +v -0.06888 0.12155 0.20463 +v -0.06460 0.12161 0.20498 +v -0.07153 0.12289 0.20467 +v -0.06915 0.12245 0.20431 +v -0.07194 0.12400 0.20491 +v -0.06612 0.12297 0.20444 +v -0.06973 0.12301 0.20428 +v -0.07111 0.12400 0.20495 +v -0.06258 0.12144 0.20488 +v -0.06828 0.12294 0.20427 +v -0.06743 0.12326 0.20443 +v -0.07037 0.12349 0.20455 +v -0.06900 0.12330 0.20420 +v -0.06154 0.12066 0.20523 +v -0.06954 0.12360 0.20431 +v -0.06838 0.12366 0.20437 +v -0.06616 0.12343 0.20438 +v -0.06907 0.12381 0.20433 +v 0.02376 0.11876 0.17254 +v 0.02377 0.11866 0.17109 +v 0.02283 0.11854 0.17057 +v 0.02455 0.11894 0.17089 +v 0.02381 0.11872 0.17015 +v 0.02149 0.11840 0.17189 +v 0.02551 0.11928 0.17212 +v 0.02275 0.11870 0.16901 +v 0.02197 0.11860 0.17347 +v 0.02099 0.11843 0.16972 +v 0.02525 0.11930 0.16959 +v 0.02520 0.11908 0.17344 +v 0.02427 0.11920 0.16846 +v 0.02306 0.11889 0.17440 +v 0.02018 0.11839 0.17303 +v 0.02031 0.11822 0.17119 +v 0.02733 0.11975 0.17422 +v 0.02444 0.11886 0.17344 +v 0.02148 0.11881 0.16819 +v 0.02261 0.11921 0.16729 +v 0.02437 0.11896 0.17427 +v 0.02116 0.11874 0.17435 +v 0.01982 0.11835 0.16950 +v 0.02612 0.11931 0.17520 +v 0.01986 0.11879 0.16804 +v 0.02378 0.11929 0.17600 +v 0.02229 0.11923 0.17572 +v 0.01857 0.11815 0.17242 +v 0.01933 0.11865 0.17418 +v 0.01869 0.11817 0.17080 +v 0.02835 0.12006 0.17450 +v 0.02740 0.11956 0.17579 +v 0.02535 0.11911 0.17451 +v 0.02064 0.11920 0.16677 +v 0.02518 0.11919 0.17561 +v 0.02108 0.11911 0.17537 +v 0.01910 0.11832 0.17330 +v 0.01980 0.11913 0.17524 +v 0.01859 0.11847 0.16905 +v 0.02678 0.11938 0.17632 +v 0.01837 0.11931 0.16653 +v 0.02491 0.11934 0.17662 +v 0.02334 0.11973 0.17694 +v 0.02169 0.11969 0.17658 +v 0.01824 0.11816 0.17291 +v 0.01738 0.11799 0.17155 +v 0.01771 0.11923 0.17520 +v 0.01837 0.11845 0.17387 +v 0.01678 0.11809 0.17015 +v 0.02927 0.12025 0.17486 +v 0.02890 0.11964 0.17716 +v 0.01741 0.11989 0.16461 +v 0.02426 0.11948 0.17681 +v 0.02642 0.11939 0.17706 +v 0.01629 0.11782 0.17268 +v 0.01599 0.11775 0.17154 +v 0.01945 0.11989 0.17625 +v 0.01650 0.11886 0.16751 +v 0.01639 0.11838 0.16891 +v 0.01622 0.11979 0.16504 +v 0.02491 0.11960 0.17733 +v 0.02588 0.11951 0.17754 +v 0.02312 0.12009 0.17742 +v 0.02402 0.11979 0.17727 +v 0.01723 0.11822 0.17363 +v 0.01830 0.12069 0.17678 +v 0.01467 0.11783 0.17002 +v 0.03062 0.11992 0.17639 +v 0.01621 0.12022 0.16371 +v 0.02782 0.11947 0.17815 +v 0.02271 0.12066 0.17830 +v 0.02066 0.12015 0.17689 +v 0.01507 0.11801 0.17422 +v 0.01411 0.11734 0.17254 +v 0.01682 0.12063 0.17654 +v 0.01986 0.12127 0.17783 +v 0.01666 0.12036 0.16268 +v 0.02437 0.12004 0.17783 +v 0.02522 0.11985 0.17821 +v 0.02370 0.12025 0.17767 +v 0.02345 0.12056 0.17797 +v 0.02140 0.12061 0.17772 +v 0.01439 0.11751 0.17121 +v 0.01480 0.11985 0.17606 +v 0.01712 0.12157 0.17736 +v 0.02376 0.12052 0.17829 +v 0.02124 0.12133 0.17890 +v 0.01371 0.11722 0.17378 +v 0.01285 0.11736 0.17099 +v 0.01312 0.11798 0.17534 +v 0.01572 0.12114 0.17691 +v 0.01550 0.12052 0.16223 +v 0.02366 0.12059 0.17794 +v 0.02459 0.12025 0.17872 +v 0.02370 0.12077 0.17942 +v 0.02232 0.12136 0.18000 +v 0.01325 0.11721 0.17451 +v 0.01227 0.11685 0.17389 +v 0.01225 0.11703 0.17205 +v 0.01242 0.11931 0.17618 +v 0.01511 0.12132 0.17698 +v 0.01539 0.12181 0.17757 +v 0.01263 0.11710 0.17502 +v 0.01151 0.11789 0.17576 +v 0.01299 0.12067 0.17673 +v 0.01420 0.12107 0.17691 +v 0.01256 0.11687 0.17463 +v 0.01082 0.11675 0.17295 +v 0.01214 0.11725 0.17535 +v 0.01162 0.12039 0.17668 +v 0.01444 0.12184 0.17769 +v 0.01187 0.11685 0.17495 +v 0.01029 0.11668 0.17444 +v 0.00996 0.11803 0.17603 +v 0.01150 0.11706 0.17531 +v 0.01315 0.12174 0.17751 +v 0.01169 0.12171 0.17727 +v 0.01067 0.11713 0.17535 +v 0.00957 0.11991 0.17672 +v 0.00961 0.11701 0.17541 +v 0.00865 0.11833 0.17647 +v 0.00889 0.11730 0.17589 +v -0.03908 0.06644 0.20333 +v -0.04029 0.06496 0.20307 +v -0.04151 0.06426 0.20311 +v -0.03911 0.06420 0.20282 +v -0.03773 0.06456 0.20294 +v -0.04087 0.06307 0.20266 +v -0.03983 0.06250 0.20238 +v -0.03625 0.06366 0.20286 +v -0.04340 0.06285 0.20321 +v -0.03794 0.06291 0.20254 +v -0.03355 0.06528 0.20293 +v -0.04071 0.06154 0.20233 +v -0.03856 0.06139 0.20214 +v -0.03383 0.06326 0.20264 +v -0.03700 0.06186 0.20230 +v -0.02967 0.06316 0.20242 +v -0.03558 0.06283 0.20266 +v -0.03924 0.06005 0.20184 +v -0.03622 0.06006 0.20172 +v -0.02630 0.06206 0.20205 +v -0.03044 0.06166 0.20218 +v -0.03476 0.06188 0.20231 +v -0.03847 0.05862 0.20130 +v -0.02536 0.06382 0.20224 +v -0.02927 0.06097 0.20191 +v -0.03223 0.06129 0.20210 +v -0.03305 0.06020 0.20174 +v -0.02614 0.06793 0.20295 +v -0.02454 0.06167 0.20179 +v -0.02734 0.06019 0.20167 +v -0.03121 0.05974 0.20161 +v -0.03652 0.05734 0.20063 +v -0.03283 0.05761 0.20065 +v -0.02565 0.05947 0.20150 +v -0.02286 0.06265 0.20193 +v -0.02941 0.05823 0.20094 +v -0.02495 0.05965 0.20139 +v -0.02159 0.06121 0.20145 +v -0.02609 0.05900 0.20138 +v -0.02360 0.05926 0.20097 +v -0.02536 0.05901 0.20131 +v -0.02702 0.05790 0.20089 +v -0.03075 0.05671 0.20020 +v -0.02533 0.05818 0.20086 +v -0.02079 0.06201 0.20171 +v -0.02825 0.05679 0.20029 +v -0.02691 0.05666 0.20017 +v -0.02379 0.03529 0.18081 +v -0.02439 0.03436 0.18136 +v -0.02360 0.03498 0.18227 +v -0.02461 0.03412 0.18058 +v -0.02460 0.03389 0.18237 +v -0.02293 0.03660 0.18126 +v -0.02518 0.03349 0.18148 +v -0.02430 0.03426 0.17949 +v -0.02389 0.03417 0.18328 +v -0.02321 0.03644 0.18066 +v -0.02215 0.03665 0.18247 +v -0.02332 0.03604 0.17972 +v -0.02264 0.03510 0.18394 +v -0.02470 0.03357 0.18347 +v -0.02555 0.03312 0.18261 +v -0.02280 0.03732 0.18011 +v -0.02223 0.03758 0.18142 +v -0.02607 0.03275 0.18164 +v -0.02282 0.03555 0.17823 +v -0.02510 0.03335 0.17951 +v -0.02388 0.03404 0.18427 +v -0.02406 0.03394 0.18356 +v -0.02233 0.03803 0.18066 +v -0.02137 0.03615 0.18419 +v -0.02132 0.03896 0.18113 +v -0.02259 0.03711 0.17904 +v -0.02298 0.03452 0.18522 +v -0.02498 0.03339 0.18439 +v -0.02249 0.03808 0.18005 +v -0.02187 0.03519 0.18511 +v -0.02075 0.03732 0.18343 +v -0.02050 0.03861 0.18237 +v -0.02236 0.03473 0.17723 +v -0.02438 0.03398 0.18572 +v -0.02239 0.03808 0.17955 +v -0.02160 0.03928 0.18041 +v -0.02077 0.03611 0.18574 +v -0.02023 0.03709 0.18454 +v -0.02199 0.03817 0.17882 +v -0.02230 0.03424 0.17685 +v -0.02308 0.03470 0.18642 +v -0.02220 0.03486 0.18582 +v -0.02179 0.03898 0.17942 +v -0.02168 0.03931 0.18003 +v -0.02158 0.03523 0.18581 +v -0.01969 0.03830 0.18371 +v -0.02366 0.03477 0.18707 +v -0.02559 0.03318 0.18512 +v -0.01966 0.03728 0.18564 +v -0.02179 0.03541 0.18657 +v -0.01941 0.03794 0.18471 +v -0.02281 0.03538 0.18744 +v -0.02501 0.03445 0.18714 +v -0.02563 0.03354 0.18621 +v -0.02678 0.03273 0.18584 +v -0.02001 0.03672 0.18618 +v -0.02078 0.03647 0.18691 +v -0.02370 0.03519 0.18767 +v -0.01965 0.03738 0.18655 +v -0.02014 0.03686 0.18667 +v -0.01893 0.03836 0.18535 +v -0.02173 0.03637 0.18762 +v -0.02329 0.03584 0.18808 +v -0.02614 0.03391 0.18721 +v -0.02443 0.03573 0.18821 +v -0.02731 0.03280 0.18667 +v -0.01891 0.03845 0.18631 +v -0.01978 0.03874 0.18769 +v -0.02265 0.03608 0.18802 +v -0.02627 0.03502 0.18829 +v -0.02275 0.03745 0.18868 +v -0.02799 0.03422 0.18871 +v -0.02557 0.03803 0.18973 +v -0.01764 0.04053 0.18676 +v -0.02171 0.04279 0.19095 +v -0.02766 0.03601 0.18945 +v -0.02895 0.03353 0.18909 +v -0.02975 0.03519 0.18993 +v -0.02928 0.03281 0.18906 +v -0.02967 0.03341 0.18964 +v -0.01139 0.04682 0.18813 +v -0.02993 0.03278 0.18954 +v -0.03037 0.03262 0.18955 +v -0.03831 0.12144 0.23621 +v -0.03820 0.12090 0.23677 +v -0.03736 0.12107 0.23660 +v -0.03941 0.12104 0.23676 +v -0.03735 0.12044 0.23713 +v -0.03714 0.12160 0.23585 +v -0.03936 0.12178 0.23583 +v -0.03842 0.11980 0.23745 +v -0.03679 0.12073 0.23694 +v -0.03840 0.12195 0.23540 +v -0.03654 0.12119 0.23640 +v -0.04046 0.12158 0.23635 +v -0.04028 0.12059 0.23737 +v -0.03666 0.11967 0.23747 +v -0.03671 0.12034 0.23722 +v -0.03712 0.12216 0.23480 +v -0.03575 0.12165 0.23577 +v -0.04030 0.12105 0.23701 +v -0.03915 0.11944 0.23772 +v -0.03687 0.11852 0.23780 +v -0.03604 0.12045 0.23705 +v -0.03600 0.12208 0.23502 +v -0.03520 0.12119 0.23635 +v -0.04195 0.12150 0.23655 +v -0.04128 0.12062 0.23741 +v -0.04036 0.11961 0.23775 +v -0.03454 0.11843 0.23786 +v -0.03431 0.12218 0.23512 +v -0.03323 0.12152 0.23615 +v -0.04185 0.12095 0.23717 +v -0.04144 0.12022 0.23760 +v -0.03474 0.12037 0.23702 +v -0.03392 0.11915 0.23762 +v -0.03323 0.12181 0.23578 +v -0.03339 0.12086 0.23671 +v -0.03132 0.11845 0.23777 +v -0.03162 0.12137 0.23613 +v -0.03357 0.12002 0.23723 +v -0.03183 0.11977 0.23731 +v -0.03127 0.12064 0.23681 +v -0.02982 0.11945 0.23756 +v -0.02997 0.12108 0.23644 +v -0.03011 0.12028 0.23713 +v -0.02833 0.12008 0.23743 +v -0.02619 0.11882 0.23778 +v -0.02677 0.11999 0.23752 +v -0.02863 0.12102 0.23667 +v -0.02835 0.12059 0.23711 +v -0.02735 0.12071 0.23703 +v -0.02454 0.11844 0.23772 +v -0.02566 0.12004 0.23766 +v -0.02627 0.12058 0.23727 +v -0.02712 0.12125 0.23645 +v -0.02510 0.11946 0.23770 +v -0.02589 0.12046 0.23748 +v -0.02409 0.11941 0.23758 +v -0.02277 0.11882 0.23752 +v -0.02480 0.12046 0.23746 +v -0.02497 0.12129 0.23635 +v -0.02490 0.12078 0.23713 +v -0.02356 0.12010 0.23727 +v -0.02099 0.11933 0.23742 +v -0.02433 0.12052 0.23728 +v -0.02402 0.12084 0.23686 +v -0.02231 0.11999 0.23717 +v -0.01927 0.11903 0.23741 +v -0.02359 0.12138 0.23617 +v -0.02293 0.12073 0.23677 +v -0.02028 0.12007 0.23704 +v -0.02164 0.12067 0.23670 +v -0.01893 0.12010 0.23703 +v -0.02176 0.12138 0.23607 +v -0.01795 0.12026 0.23696 +v -0.01951 0.12071 0.23665 +v -0.02049 0.12110 0.23634 +v -0.01848 0.12083 0.23652 +v -0.01940 0.12136 0.23606 +v 0.10173 0.01547 0.23281 +v 0.10030 0.01480 0.23360 +v 0.10140 0.01418 0.23296 +v 0.10156 0.01653 0.23297 +v 0.10127 0.01249 0.23306 +v 0.10189 0.01471 0.23261 +v 0.10210 0.01611 0.23253 +v 0.10091 0.01747 0.23341 +v 0.10186 0.01304 0.23248 +v 0.10221 0.01511 0.23219 +v 0.10203 0.01416 0.23227 +v 0.10221 0.01684 0.23224 +v 0.10004 0.01843 0.23383 +v 0.10161 0.01783 0.23296 +v 0.10177 0.01155 0.23273 +v 0.10248 0.01565 0.23170 +v 0.10088 0.01868 0.23342 +v 0.09872 0.01593 0.23426 +v 0.10222 0.01338 0.23173 +v 0.10211 0.01194 0.23218 +v 0.10237 0.01456 0.23146 +v 0.10253 0.01647 0.23132 +v 0.10194 0.01805 0.23252 +v 0.10035 0.01928 0.23360 +v 0.09757 0.01817 0.23471 +v 0.10135 0.01926 0.23291 +v 0.10253 0.01727 0.23137 +v 0.10253 0.01640 0.23026 +v 0.10235 0.01783 0.23185 +v 0.09936 0.01986 0.23399 +v 0.09665 0.01667 0.23486 +v 0.10260 0.01693 0.23087 +v 0.10219 0.01878 0.23192 +v 0.10043 0.02007 0.23347 +v 0.10251 0.01817 0.23110 +v 0.10184 0.02048 0.23223 +v 0.09996 0.02116 0.23369 +v 0.10100 0.02085 0.23308 +v 0.09872 0.02172 0.23419 +v 0.10250 0.01885 0.23012 +v 0.10243 0.01927 0.23120 +v 0.10229 0.01959 0.23162 +v 0.09768 0.02374 0.23452 +v 0.10228 0.02051 0.23136 +v 0.10154 0.02175 0.23269 +v 0.10096 0.02198 0.23322 +v 0.09931 0.02504 0.23400 +v 0.10243 0.02060 0.23039 +v 0.10208 0.02144 0.23181 +v 0.10086 0.02350 0.23339 +v 0.09814 0.02605 0.23439 +v 0.10252 0.02259 0.22958 +v 0.10231 0.02152 0.23116 +v 0.10132 0.02278 0.23306 +v 0.10184 0.02286 0.23254 +v 0.10009 0.02487 0.23367 +v 0.09947 0.02833 0.23402 +v 0.10247 0.02424 0.23053 +v 0.10170 0.02248 0.23269 +v 0.10124 0.02368 0.23315 +v 0.10118 0.02475 0.23302 +v 0.10028 0.02642 0.23356 +v 0.09697 0.02675 0.23473 +v 0.10236 0.02352 0.23118 +v 0.10250 0.02382 0.22925 +v 0.10212 0.02328 0.23193 +v 0.10161 0.02332 0.23288 +v 0.10039 0.02781 0.23358 +v 0.10256 0.02602 0.22944 +v 0.10230 0.02532 0.23123 +v 0.10123 0.02613 0.23289 +v 0.10095 0.02752 0.23325 +v 0.10206 0.02434 0.23202 +v 0.10251 0.02602 0.23018 +v 0.10175 0.02459 0.23250 +v 0.10187 0.02537 0.23215 +v 0.10110 0.02819 0.23309 +v 0.10250 0.02700 0.22937 +v 0.10236 0.02661 0.23095 +v 0.10133 0.02718 0.23287 +v 0.10167 0.02691 0.23238 +v 0.10240 0.02706 0.23051 +v 0.10209 0.02643 0.23165 +v 0.10178 0.02863 0.23219 +v 0.10209 0.02750 0.23152 +v -0.06737 0.12270 0.17927 +v -0.06627 0.12310 0.17894 +v -0.06653 0.12310 0.17849 +v -0.06663 0.12287 0.17985 +v -0.06615 0.12311 0.17829 +v -0.06781 0.12252 0.17892 +v -0.06512 0.12327 0.17972 +v -0.06698 0.12249 0.17773 +v -0.06503 0.12343 0.17823 +v -0.06853 0.12222 0.17951 +v -0.06802 0.12228 0.17830 +v -0.06604 0.12302 0.18138 +v -0.06431 0.12356 0.17903 +v -0.06846 0.12221 0.17873 +v -0.06425 0.12351 0.18071 +v -0.06377 0.12378 0.17953 +v -0.06949 0.12187 0.18006 +v -0.06404 0.12347 0.17789 +v -0.06355 0.12373 0.17865 +v -0.06896 0.12192 0.17892 +v -0.06840 0.12220 0.17844 +v -0.06478 0.12334 0.18181 +v -0.06853 0.12201 0.17836 +v -0.06405 0.12362 0.18148 +v -0.06350 0.12398 0.18067 +v -0.06304 0.12418 0.17930 +v -0.06950 0.12159 0.17903 +v -0.07094 0.12132 0.18075 +v -0.06892 0.12149 0.17827 +v -0.06322 0.12341 0.17759 +v -0.06399 0.12358 0.18227 +v -0.06325 0.12422 0.17981 +v -0.06236 0.12423 0.17871 +v -0.07004 0.12149 0.17955 +v -0.07061 0.12133 0.18001 +v -0.06317 0.12400 0.18193 +v -0.06291 0.12460 0.18012 +v -0.06269 0.12470 0.17953 +v -0.06298 0.12450 0.17973 +v -0.06973 0.12110 0.17881 +v -0.07112 0.12083 0.18006 +v -0.06908 0.12107 0.17811 +v -0.06247 0.12404 0.18296 +v -0.06282 0.12448 0.18093 +v -0.06243 0.12491 0.17940 +v -0.07048 0.12114 0.17947 +v -0.06057 0.12396 0.17789 +v -0.06209 0.12458 0.18172 +v -0.06246 0.12495 0.18042 +v -0.06245 0.12505 0.17973 +v -0.06209 0.12488 0.17925 +v -0.07029 0.12085 0.17928 +v -0.06116 0.12486 0.17912 +v -0.06105 0.12462 0.18258 +v -0.06216 0.12510 0.18055 +v -0.06260 0.12493 0.17994 +v -0.06223 0.12509 0.17956 +v -0.05971 0.12489 0.17889 +v -0.05872 0.12400 0.17779 +v -0.06179 0.12516 0.17961 +v -0.06036 0.12530 0.17978 +v -0.06098 0.12511 0.18144 +v -0.06170 0.12532 0.18013 +v -0.06121 0.12529 0.17989 +v -0.05958 0.12545 0.17973 +v -0.05855 0.12507 0.17874 +v -0.05749 0.12337 0.17744 +v -0.05949 0.12555 0.18154 +v -0.06077 0.12538 0.18058 +v -0.05903 0.12547 0.17938 +v -0.05968 0.12564 0.18059 +v -0.05755 0.12526 0.17872 +v -0.05757 0.12426 0.17800 +v -0.05902 0.12581 0.18005 +v -0.05819 0.12595 0.17961 +v -0.05689 0.12375 0.17780 +v -0.05894 0.12596 0.18064 +v -0.05742 0.12613 0.17940 +v -0.05671 0.12456 0.17828 +v -0.05618 0.12369 0.17800 +v -0.05846 0.12612 0.18101 +v -0.05853 0.12611 0.18035 +v -0.05778 0.12626 0.17962 +v -0.05619 0.12593 0.17903 +v -0.05775 0.12612 0.18175 +v -0.05796 0.12640 0.18043 +v -0.05760 0.12645 0.17990 +v -0.05680 0.12654 0.17970 +v -0.05580 0.12454 0.17844 +v -0.05530 0.12363 0.17829 +v -0.05768 0.12648 0.18096 +v -0.05574 0.12673 0.17978 +v -0.05503 0.12522 0.17877 +v -0.05447 0.12243 0.17835 +v -0.05716 0.12667 0.18082 +v -0.05745 0.12665 0.18030 +v -0.05634 0.12680 0.18021 +v -0.05548 0.12662 0.17922 +v -0.05534 0.12631 0.17894 +v -0.05428 0.12420 0.17875 +v -0.05764 0.12660 0.18066 +v -0.05577 0.12681 0.18062 +v -0.05507 0.12683 0.17954 +v -0.05446 0.12616 0.17909 +v -0.05180 0.12457 0.17975 +v -0.05465 0.12687 0.18032 +v -0.05497 0.12665 0.17917 +v -0.05373 0.12523 0.17912 +v -0.05442 0.12671 0.17952 +v -0.05305 0.12597 0.17957 +v -0.05351 0.12667 0.18001 +v -0.05384 0.12646 0.17946 +v -0.05181 0.12596 0.17991 +v -0.05359 0.12690 0.18072 +v -0.05241 0.12647 0.18016 +v -0.05049 0.12623 0.18003 +v -0.05278 0.12680 0.18068 +v -0.05142 0.12648 0.18038 +v -0.05284 0.12691 0.18154 +v -0.05201 0.12670 0.18068 +v -0.05057 0.12669 0.18070 +v -0.05218 0.12685 0.18126 +v -0.05137 0.12675 0.18106 +v -0.05153 0.12684 0.18183 +v -0.05057 0.12681 0.18163 +v -0.05147 0.12679 0.18270 +v 0.10334 0.03642 0.16511 +v 0.10323 0.03654 0.16383 +v 0.10298 0.03518 0.15997 +v 0.10319 0.03736 0.16319 +v 0.10269 0.03239 0.16001 +v 0.10307 0.03677 0.16092 +v 0.10277 0.03259 0.15818 +v 0.10291 0.03896 0.16261 +v 0.10290 0.03605 0.15855 +v 0.10290 0.03901 0.16083 +v 0.10256 0.03111 0.15960 +v 0.10288 0.03467 0.15774 +v 0.10255 0.03158 0.16058 +v 0.10281 0.03811 0.15897 +v 0.10264 0.03007 0.15846 +v 0.10278 0.04108 0.15963 +v 0.10277 0.03878 0.15771 +v 0.10286 0.03653 0.15500 +v 0.10282 0.04022 0.15903 +v 0.10267 0.04244 0.16035 +v 0.10296 0.04160 0.15733 +v 0.10281 0.03947 0.15619 +v 0.10272 0.04237 0.15892 +v 0.10278 0.03867 0.15374 +v 0.10262 0.04316 0.15919 +v 0.10271 0.04336 0.15743 +v 0.10278 0.04238 0.15576 +v 0.10267 0.04092 0.15430 +v 0.09913 0.08763 0.11472 +v 0.09962 0.08647 0.11603 +v 0.09871 0.08728 0.11427 +v 0.09910 0.08607 0.11490 +v 0.10029 0.08577 0.11758 +v 0.09952 0.08408 0.11556 +v 0.09814 0.08714 0.11389 +v 0.09850 0.08625 0.11414 +v 0.10069 0.08560 0.11876 +v 0.09989 0.08323 0.11649 +v 0.09926 0.08429 0.11496 +v 0.09866 0.08495 0.11421 +v 0.09926 0.08295 0.11474 +v 0.09961 0.08286 0.11583 +v 0.09756 0.08644 0.11367 +v 0.09800 0.08520 0.11371 +v 0.10064 0.08217 0.11897 +v 0.09910 0.08373 0.11454 +v 0.09896 0.07990 0.11477 +v 0.09852 0.08369 0.11398 +v 0.10010 0.08092 0.11760 +v 0.09889 0.08245 0.11428 +v 0.09928 0.08253 0.11492 +v 0.09900 0.08073 0.11465 +v 0.09728 0.08464 0.11344 +v 0.09766 0.08371 0.11348 +v 0.10085 0.07783 0.11986 +v 0.09856 0.07992 0.11410 +v 0.09956 0.07990 0.11639 +v 0.09778 0.08235 0.11355 +v 0.09896 0.08154 0.11438 +v 0.09852 0.08120 0.11390 +v 0.09878 0.07900 0.11481 +v 0.09924 0.07866 0.11588 +v 0.09726 0.08315 0.11338 +v 0.10025 0.07827 0.11826 +v 0.09812 0.08039 0.11352 +v 0.09937 0.07751 0.11634 +v 0.10066 0.07560 0.11929 +v 0.09979 0.07624 0.11725 +v 0.09791 0.08113 0.11344 +v 0.09855 0.07759 0.11486 +v 0.09865 0.07661 0.11499 +v 0.10043 0.07487 0.11853 +v 0.10095 0.07273 0.11928 +v 0.09894 0.07582 0.11533 +v 0.09836 0.07590 0.11430 +v 0.10029 0.07307 0.11768 +v 0.09922 0.07463 0.11551 +v 0.09874 0.07463 0.11441 +v 0.09822 0.07506 0.11386 +v 0.09960 0.07293 0.11597 +v 0.09914 0.07393 0.11496 +v 0.09861 0.07351 0.11416 +v 0.09829 0.07426 0.11379 +v 0.09795 0.07492 0.11356 +v 0.09913 0.07291 0.11474 +v 0.09805 0.07462 0.11357 +v 0.09776 0.07470 0.11350 +v 0.09810 0.07370 0.11371 +v 0.09876 0.07248 0.11428 +v 0.09778 0.07405 0.11355 +v 0.09797 0.07315 0.11373 +v -0.07147 0.12125 0.18150 +v -0.07171 0.12105 0.18090 +v -0.07255 0.12102 0.18167 +v -0.07257 0.12075 0.18088 +v -0.07227 0.11973 0.18057 +v -0.07378 0.12096 0.18139 +v -0.06924 0.12035 0.17910 +v -0.07386 0.12051 0.18042 +v -0.07370 0.12108 0.18212 +v -0.06668 0.11932 0.18139 +v -0.07413 0.11998 0.17993 +v -0.07510 0.12038 0.17963 +v -0.07521 0.11909 0.17969 +v -0.06914 0.12084 0.17828 +v -0.07620 0.12099 0.17935 +v -0.07737 0.11610 0.17893 +v -0.07609 0.12032 0.17854 +v -0.07660 0.11945 0.17768 +v -0.07716 0.12138 0.17907 +v -0.07691 0.12100 0.17824 +v -0.07726 0.11906 0.17687 +v -0.07682 0.12049 0.17744 +v -0.07703 0.11996 0.17665 +v -0.07684 0.12019 0.17696 +v -0.07782 0.12144 0.17824 +v -0.07767 0.12104 0.17720 +v -0.07767 0.12004 0.17601 +v -0.07725 0.12049 0.17663 +v -0.07799 0.12075 0.17619 +v -0.07863 0.12076 0.16710 +v -0.07892 0.12112 0.16689 +v -0.07773 0.12133 0.16748 +v -0.07754 0.12109 0.16734 +v -0.07809 0.12146 0.16778 +v -0.07816 0.12044 0.16738 +v -0.07708 0.12131 0.16768 +v -0.07738 0.12139 0.16794 +v -0.07780 0.12050 0.16789 +v -0.07724 0.12100 0.16757 +v -0.07870 0.12037 0.16857 +v -0.07693 0.12130 0.16803 +v -0.07691 0.12113 0.16791 +v -0.08069 0.11980 0.17037 +v -0.07710 0.12095 0.16817 +v -0.07742 0.12109 0.16830 +v -0.07977 0.11456 0.17532 +v -0.07685 0.12120 0.16815 +v -0.06556 0.12194 0.18432 +v -0.06557 0.12226 0.18398 +v -0.06647 0.12166 0.18408 +v -0.06501 0.12214 0.18434 +v -0.06630 0.12238 0.18323 +v -0.06501 0.12170 0.18448 +v -0.06465 0.12258 0.18402 +v -0.06518 0.12281 0.18337 +v -0.06751 0.12192 0.18326 +v -0.06557 0.12109 0.18438 +v -0.06405 0.12219 0.18445 +v -0.06563 0.12300 0.18245 +v -0.06763 0.12215 0.18252 +v -0.06325 0.12142 0.18467 +v -0.06752 0.12074 0.18415 +v -0.06460 0.12309 0.18334 +v -0.06350 0.12297 0.18406 +v -0.06485 0.12322 0.18258 +v -0.06642 0.12273 0.18222 +v -0.06550 0.12034 0.18387 +v -0.06279 0.12244 0.18475 +v -0.06068 0.12067 0.18428 +v -0.06938 0.11963 0.18365 +v -0.06385 0.12341 0.18311 +v -0.06260 0.12303 0.18456 +v -0.06138 0.12229 0.18547 +v -0.06118 0.12144 0.18514 +v -0.06214 0.12378 0.18393 +v -0.06263 0.12338 0.18417 +v -0.06197 0.12293 0.18506 +v -0.05957 0.11904 0.18099 +v -0.05968 0.12199 0.18594 +v -0.06204 0.12341 0.18464 +v -0.06131 0.12309 0.18557 +v -0.05616 0.12092 0.18435 +v -0.05702 0.12233 0.18645 +v -0.06080 0.12413 0.18419 +v -0.06159 0.12338 0.18515 +v -0.06074 0.12296 0.18598 +v -0.06017 0.12266 0.18619 +v -0.05784 0.12107 0.18511 +v -0.05490 0.11937 0.18138 +v -0.05846 0.12248 0.18666 +v -0.06125 0.12380 0.18482 +v -0.06075 0.12345 0.18591 +v -0.06117 0.12354 0.18547 +v -0.05910 0.12293 0.18671 +v -0.05686 0.11802 0.17886 +v -0.05109 0.12244 0.18421 +v -0.05806 0.12303 0.18699 +v -0.05995 0.12443 0.18381 +v -0.06037 0.12386 0.18585 +v -0.05992 0.12341 0.18631 +v -0.05313 0.12313 0.18741 +v -0.05985 0.11820 0.17792 +v -0.05425 0.11795 0.17923 +v -0.05268 0.11950 0.18029 +v -0.05720 0.12337 0.18714 +v -0.05971 0.12497 0.18267 +v -0.05941 0.12418 0.18512 +v -0.06036 0.12375 0.18597 +v -0.05881 0.12364 0.18683 +v -0.05457 0.12351 0.18736 +v -0.05541 0.11748 0.17757 +v -0.05799 0.12373 0.18701 +v -0.05637 0.12341 0.18723 +v -0.05850 0.12344 0.18707 +v -0.05876 0.12469 0.18374 +v -0.05866 0.12443 0.18447 +v -0.05990 0.12395 0.18576 +v -0.05949 0.12396 0.18604 +v -0.05568 0.12338 0.18720 +v -0.05321 0.12403 0.18802 +v -0.05308 0.11769 0.17889 +v -0.05709 0.12392 0.18708 +v -0.05662 0.12379 0.18726 +v -0.05690 0.12563 0.18318 +v -0.05805 0.12441 0.18551 +v -0.05846 0.12367 0.18710 +v -0.05767 0.12418 0.18650 +v -0.05490 0.12407 0.18718 +v -0.05373 0.12434 0.18740 +v -0.05259 0.12397 0.18902 +v -0.05611 0.12389 0.18728 +v -0.05571 0.12378 0.18731 +v -0.05525 0.12574 0.18426 +v -0.05663 0.12495 0.18513 +v -0.05284 0.12463 0.18783 +v -0.05238 0.12374 0.18909 +v -0.05238 0.12456 0.18863 +v -0.05628 0.12424 0.18692 +v -0.05403 0.12474 0.18677 +v -0.05561 0.12415 0.18714 +v -0.05282 0.12503 0.18700 +v -0.05245 0.12395 0.18957 +v -0.05213 0.12439 0.18940 +v -0.05513 0.12464 0.18656 +v -0.05480 0.12535 0.18541 +v -0.05236 0.12411 0.18963 +v -0.05220 0.12399 0.18963 +v -0.05160 0.12395 0.18917 +v -0.05216 0.12420 0.18973 +v -0.05180 0.12425 0.18961 +v -0.09516 0.12113 0.15872 +v -0.09655 0.12114 0.15873 +v -0.09551 0.12192 0.15733 +v -0.09418 0.12185 0.15729 +v -0.09709 0.12176 0.15787 +v -0.09755 0.12129 0.15863 +v -0.09361 0.12131 0.15823 +v -0.09453 0.12217 0.15659 +v -0.09723 0.12210 0.15735 +v -0.09819 0.12128 0.15892 +v -0.09312 0.12156 0.15756 +v -0.09335 0.12204 0.15674 +v -0.09626 0.12237 0.15651 +v -0.09825 0.12176 0.15825 +v -0.09238 0.12125 0.15775 +v -0.09309 0.12239 0.15580 +v -0.09515 0.12238 0.15588 +v -0.09771 0.12252 0.15664 +v -0.09901 0.12227 0.15781 +v -0.09131 0.12070 0.15819 +v -0.09209 0.12166 0.15678 +v -0.09182 0.12189 0.15624 +v -0.09368 0.12242 0.15543 +v -0.09781 0.12272 0.15595 +v -0.09132 0.12102 0.15738 +v -0.09127 0.12220 0.15502 +v -0.09227 0.12244 0.15396 +v -0.09509 0.12250 0.15497 +v -0.09690 0.12266 0.15500 +v -0.09971 0.12283 0.15698 +v -0.09973 0.12239 0.15818 +v -0.09059 0.12067 0.15774 +v -0.09057 0.12050 0.15828 +v -0.09101 0.12142 0.15673 +v -0.09051 0.12181 0.15597 +v -0.09813 0.12281 0.15534 +v -0.10047 0.12321 0.15597 +v -0.09059 0.12100 0.15716 +v -0.08966 0.12206 0.15508 +v -0.09671 0.12272 0.15392 +v -0.09991 0.12319 0.15519 +v -0.09825 0.12279 0.15454 +v -0.10046 0.12285 0.15772 +v -0.08999 0.12082 0.15745 +v -0.08980 0.12131 0.15672 +v -0.09195 0.12260 0.15285 +v -0.08896 0.12177 0.15592 +v -0.09383 0.12274 0.15260 +v -0.09817 0.12281 0.15376 +v -0.10125 0.12333 0.15511 +v -0.08973 0.12257 0.15244 +v -0.08783 0.12198 0.15483 +v -0.09661 0.12299 0.15271 +v -0.09964 0.12316 0.15358 +v -0.10070 0.12327 0.15382 +v -0.08920 0.12083 0.15739 +v -0.08892 0.12158 0.15633 +v -0.09113 0.12290 0.15191 +v -0.09305 0.12289 0.15196 +v -0.08698 0.12169 0.15531 +v -0.09526 0.12339 0.15075 +v -0.09899 0.12347 0.15173 +v -0.08804 0.12037 0.15772 +v -0.08846 0.12118 0.15670 +v -0.08970 0.12295 0.15182 +v -0.09661 0.12348 0.15107 +v -0.09738 0.12342 0.15145 +v -0.10058 0.12335 0.15303 +v -0.10028 0.12349 0.15242 +v -0.10183 0.12326 0.15339 +v -0.08726 0.12129 0.15611 +v -0.09100 0.12321 0.15136 +v -0.08853 0.12293 0.15204 +v -0.09228 0.12328 0.15120 +v -0.09368 0.12336 0.15081 +v -0.08721 0.12064 0.15672 +v -0.08979 0.12353 0.15101 +v -0.08889 0.12349 0.15127 +v -0.10189 0.12339 0.15216 +v -0.09084 0.12359 0.15071 +v -0.09147 0.12360 0.15081 +v -0.08780 0.12359 0.15118 +v -0.09240 0.12364 0.15033 +v -0.08974 0.12391 0.15022 +v -0.08903 0.12396 0.15067 +v -0.08683 0.12308 0.15199 +v -0.08849 0.12396 0.15092 +v -0.09157 0.12375 0.14993 +v -0.09054 0.12384 0.14972 +v -0.08694 0.12382 0.15059 +v -0.08820 0.12410 0.15073 +v -0.08961 0.12401 0.14943 +v -0.08918 0.12411 0.14998 +v -0.08846 0.12423 0.15076 +v -0.08775 0.12404 0.15030 +v -0.08574 0.12352 0.15128 +v -0.08845 0.12427 0.15060 +v -0.08635 0.12408 0.14958 +v -0.08605 0.12388 0.15044 +v -0.08587 0.12241 0.15329 +v -0.08848 0.12419 0.14975 +v -0.08737 0.12414 0.14937 +v -0.08517 0.12389 0.15064 +v -0.08478 0.12278 0.15236 +v -0.08631 0.12420 0.14840 +v -0.08401 0.12332 0.15144 +v -0.08443 0.12200 0.15332 +v -0.08802 0.12413 0.14881 +v -0.08457 0.12419 0.14967 +v -0.08303 0.12373 0.15068 +v -0.08353 0.12203 0.15287 +v -0.08410 0.12408 0.14994 +v -0.08382 0.12418 0.14771 +v -0.08265 0.12335 0.15128 +v -0.08294 0.12215 0.15263 +v -0.08341 0.12124 0.15387 +v -0.08303 0.12412 0.14914 +v -0.08275 0.12399 0.14997 +v -0.08188 0.12355 0.15103 +v -0.08124 0.12395 0.15030 +v -0.08165 0.12297 0.15179 +v -0.08208 0.12223 0.15256 +v -0.08228 0.12087 0.15410 +v -0.08111 0.12424 0.14887 +v -0.08098 0.12354 0.15120 +v -0.08152 0.12150 0.15349 +v -0.08076 0.12434 0.14728 +v -0.07898 0.12424 0.15049 +v -0.07969 0.12209 0.15309 +v -0.07918 0.12376 0.15139 +v -0.08048 0.12380 0.15097 +v -0.08125 0.12076 0.15428 +v -0.07779 0.12438 0.14987 +v -0.08004 0.12407 0.15055 +v -0.08078 0.12098 0.15418 +v -0.07907 0.12415 0.15083 +v -0.07719 0.12417 0.15069 +v -0.07841 0.12294 0.15237 +v -0.07831 0.12401 0.15111 +v -0.07630 0.12443 0.14987 +v -0.07816 0.12370 0.15158 +v -0.08581 0.12050 0.15589 +v -0.08419 0.11950 0.15559 +v -0.08454 0.12095 0.15471 +v -0.08537 0.11909 0.15639 +v -0.08306 0.12014 0.15483 +v -0.08564 0.12130 0.15510 +v -0.08441 0.11836 0.15614 +v -0.08640 0.11970 0.15693 +v -0.08292 0.11920 0.15536 +v -0.08545 0.12177 0.15425 +v -0.08517 0.11775 0.15679 +v -0.08286 0.11808 0.15587 +v -0.08597 0.11868 0.15717 +v -0.08161 0.11990 0.15484 +v -0.08412 0.11738 0.15635 +v -0.08713 0.11999 0.15737 +v -0.08671 0.11916 0.15817 +v -0.08649 0.12216 0.15396 +v -0.08456 0.11646 0.15689 +v -0.08582 0.11771 0.15780 +v -0.08306 0.11623 0.15659 +v -0.08060 0.11527 0.15672 +v -0.08023 0.12010 0.15478 +v -0.08525 0.11672 0.15732 +v -0.08575 0.11758 0.15938 +v -0.07895 0.11565 0.15652 +v -0.08773 0.12257 0.15294 +v -0.08880 0.12225 0.15400 +v -0.08501 0.11631 0.15713 +v -0.08351 0.11505 0.15743 +v -0.08532 0.11642 0.15840 +v -0.07880 0.11187 0.15796 +v -0.07690 0.11281 0.15738 +v -0.07912 0.12114 0.15414 +v -0.08480 0.11591 0.15754 +v -0.08191 0.11342 0.15792 +v -0.08500 0.11581 0.16011 +v -0.07796 0.12092 0.15450 +v -0.08881 0.12252 0.15285 +v -0.08411 0.11451 0.15892 +v -0.08298 0.11366 0.15830 +v 0.00637 0.12301 0.17817 +v 0.00516 0.12292 0.17825 +v 0.00734 0.12302 0.17828 +v 0.00612 0.12253 0.17770 +v 0.00646 0.12272 0.17787 +v 0.00464 0.12259 0.17797 +v 0.00735 0.12266 0.17783 +v 0.00824 0.12308 0.17832 +v 0.00557 0.12193 0.17753 +v 0.00677 0.12204 0.17752 +v 0.00802 0.12288 0.17799 +v 0.00917 0.12304 0.17884 +v 0.00416 0.12279 0.17813 +v 0.00733 0.12196 0.17745 +v 0.00800 0.12252 0.17773 +v 0.00992 0.12271 0.17821 +v 0.00886 0.12251 0.17783 +v 0.00702 0.12086 0.17736 +v 0.00951 0.12302 0.17945 +v 0.01018 0.12293 0.17913 +v 0.00810 0.12170 0.17738 +v 0.00981 0.12209 0.17751 +v 0.01097 0.12272 0.17841 +v 0.00910 0.12167 0.17729 +v 0.01119 0.12233 0.17774 +v 0.01057 0.12290 0.17939 +v 0.01086 0.12259 0.17806 +v 0.00913 0.12091 0.17701 +v 0.00990 0.12124 0.17707 +v 0.01056 0.12166 0.17722 +v 0.01223 0.12259 0.17892 +v 0.01228 0.12230 0.17804 +v 0.01210 0.12194 0.17749 +v 0.01309 0.12252 0.17954 +v 0.01316 0.12234 0.17849 +v 0.01283 0.12253 0.17896 +v 0.01416 0.12249 0.18013 +v 0.01461 0.12227 0.17866 +v 0.01631 0.12240 0.17933 +v 0.01464 0.12204 0.17797 +v 0.01662 0.12227 0.17843 +v 0.01729 0.12222 0.17863 +v 0.01795 0.12231 0.17938 +v 0.01680 0.12193 0.17774 +v 0.01909 0.12209 0.17911 +v 0.01836 0.12187 0.17821 +v 0.02018 0.12185 0.17933 +v 0.02039 0.12152 0.17839 +v 0.01975 0.12153 0.17813 +v -0.05417 0.11755 0.17760 +v -0.05358 0.11794 0.17789 +v -0.05324 0.11741 0.17818 +v -0.05452 0.11842 0.17717 +v -0.05299 0.11806 0.17867 +v -0.05370 0.11733 0.17829 +v -0.05433 0.11962 0.17765 +v -0.05533 0.11776 0.17671 +v -0.05293 0.11900 0.17903 +v -0.05292 0.11741 0.17849 +v -0.05306 0.11725 0.17842 +v -0.05576 0.11968 0.17621 +v -0.05326 0.11974 0.17871 +v -0.05560 0.11844 0.17619 +v -0.05393 0.12072 0.17837 +v -0.05629 0.11758 0.17642 +v -0.05666 0.11804 0.17554 +v -0.05273 0.11975 0.17945 +v -0.05621 0.11877 0.17548 +v -0.05242 0.12136 0.17979 +v -0.05657 0.11934 0.17504 +v -0.05665 0.12063 0.17577 +v -0.05817 0.11781 0.17605 +v -0.05697 0.11870 0.17471 +v -0.05132 0.12158 0.18159 +v -0.05698 0.12021 0.17496 +v -0.05738 0.11827 0.17462 +v -0.04987 0.12352 0.18172 +v -0.05743 0.11949 0.17421 +v -0.05798 0.11803 0.17469 +v -0.05812 0.11872 0.17392 +v -0.05788 0.12030 0.17400 +v -0.04886 0.12525 0.18076 +v -0.04775 0.12460 0.18369 +v -0.05860 0.11979 0.17324 +v -0.04961 0.12586 0.18000 +v -0.04723 0.12531 0.18201 +v -0.05893 0.11826 0.17394 +v -0.04816 0.12452 0.18549 +v -0.05983 0.11901 0.17281 +v -0.04846 0.12620 0.18034 +v -0.04714 0.12612 0.18118 +v -0.05876 0.11792 0.17462 +v -0.04683 0.12528 0.18296 +v -0.04712 0.12532 0.18489 +v -0.04902 0.12636 0.17992 +v -0.04942 0.12651 0.17984 +v -0.04647 0.12598 0.18157 +v -0.04652 0.12578 0.18255 +v -0.04670 0.12553 0.18354 +v -0.04686 0.12527 0.18417 +v -0.04751 0.12541 0.18595 +v -0.04799 0.12671 0.18077 +v -0.04879 0.12672 0.18001 +v -0.04957 0.12679 0.17995 +v -0.04627 0.12604 0.18184 +v -0.04625 0.12624 0.18150 +v -0.04669 0.12568 0.18430 +v -0.04721 0.12581 0.18537 +v -0.04696 0.12653 0.18150 +v -0.04920 0.12683 0.17982 +v -0.04639 0.12638 0.18153 +v -0.04684 0.12620 0.18301 +v -0.04642 0.12631 0.18201 +v -0.04696 0.12592 0.18473 +v -0.04766 0.12675 0.18163 +v -0.04868 0.12699 0.18026 +v -0.04908 0.12699 0.17998 +v -0.04612 0.12632 0.18168 +v -0.04671 0.12595 0.18388 +v -0.04677 0.12598 0.18429 +v -0.04697 0.12652 0.18212 +v -0.04814 0.12690 0.18111 +v -0.04874 0.12700 0.18076 +v -0.04720 0.12624 0.18412 +v -0.04750 0.12658 0.18249 +v -0.04862 0.12696 0.18125 +v -0.04771 0.12651 0.18319 +v 0.00363 0.12505 0.20758 +v 0.00459 0.12562 0.20644 +v 0.00165 0.12498 0.20678 +v 0.00290 0.12548 0.20595 +v -0.00122 0.12384 0.20725 +v 0.00159 0.12561 0.20560 +v 0.00036 0.12518 0.20606 +v 0.00318 0.12577 0.20524 +v 0.00101 0.12547 0.20578 +v -0.00077 0.12509 0.20606 +v 0.00119 0.12569 0.20551 +v 0.00081 0.12570 0.20533 +v -0.00171 0.12514 0.20621 +v -0.00073 0.12545 0.20545 +v 0.00137 0.12590 0.20496 +v -0.00223 0.12523 0.20637 +v -0.05670 0.11881 0.15862 +v -0.05641 0.11767 0.15832 +v -0.05577 0.11849 0.15888 +v -0.05804 0.11872 0.15760 +v -0.05729 0.11993 0.15848 +v -0.05747 0.11738 0.15761 +v -0.05564 0.11669 0.15817 +v -0.05829 0.12034 0.15776 +v -0.05863 0.11678 0.15629 +v -0.05676 0.11675 0.15770 +v -0.05483 0.11629 0.15803 +v -0.05929 0.12022 0.15688 +v -0.05990 0.11915 0.15601 +v -0.05568 0.11577 0.15734 +v -0.05891 0.12131 0.15717 +v -0.06131 0.11865 0.15470 +v -0.05980 0.12131 0.15635 +v -0.06024 0.12051 0.15587 +v -0.06114 0.12034 0.15468 +v -0.05939 0.12194 0.15654 +v -0.06236 0.11978 0.15363 +v -0.06253 0.11871 0.15384 +v -0.05937 0.12245 0.15598 +v -0.05989 0.12201 0.15595 +v -0.06051 0.12157 0.15525 +v -0.06190 0.12114 0.15337 +v -0.06099 0.12167 0.15426 +v -0.06322 0.12088 0.15268 +v -0.05944 0.12274 0.15509 +v -0.06002 0.12233 0.15531 +v -0.06075 0.12185 0.15474 +v -0.06220 0.12216 0.15220 +v -0.06115 0.12210 0.15320 +v -0.05877 0.12299 0.15447 +v -0.06053 0.12212 0.15471 +v -0.06359 0.12209 0.15190 +v -0.06048 0.12235 0.15402 +v -0.05970 0.12277 0.15410 +v -0.06007 0.12254 0.15466 +v -0.06306 0.12275 0.15150 +v -0.06089 0.12260 0.15232 +v -0.06023 0.12262 0.15320 +v -0.05912 0.12301 0.15307 +v -0.05980 0.12293 0.15231 +v -0.01568 0.08575 0.15856 +v -0.01543 0.08499 0.15983 +v -0.01588 0.08466 0.15879 +v -0.01590 0.08357 0.15918 +v -0.01608 0.08447 0.15813 +v -0.01510 0.08199 0.16154 +v -0.01626 0.08324 0.15838 +v -0.01624 0.08227 0.15908 +v -0.01326 0.08056 0.16405 +v -0.01122 0.07781 0.16638 +v -0.01373 0.07848 0.16390 +v -0.01286 0.07546 0.16550 +v -0.00962 0.07722 0.17023 +v -0.01464 0.07683 0.16411 +v -0.01047 0.07462 0.16631 +v -0.00834 0.07430 0.16846 +v -0.01097 0.07290 0.16673 +v -0.00900 0.07410 0.16706 +v -0.00783 0.07362 0.17065 +v -0.00936 0.07297 0.16688 +v -0.00723 0.07274 0.16937 +v -0.00866 0.07553 0.17222 +v -0.00794 0.07308 0.16782 +v -0.01097 0.07091 0.16790 +v -0.00931 0.07151 0.16753 +v -0.00813 0.07211 0.16767 +v -0.00707 0.07236 0.16987 +v -0.00733 0.07213 0.16871 +v -0.01229 0.07094 0.16805 +v -0.00696 0.07206 0.16947 +v -0.00733 0.07166 0.17007 +v -0.00922 0.07029 0.16851 +v -0.01168 0.07033 0.16872 +v -0.00811 0.07067 0.16827 +v -0.00746 0.07112 0.16844 +v -0.01021 0.07013 0.16848 +v -0.01075 0.07009 0.16868 +v -0.00797 0.07131 0.17112 +v -0.00723 0.07105 0.16908 +v -0.01004 0.06996 0.16906 +v -0.00825 0.07017 0.16865 +v -0.01096 0.07001 0.16948 +v -0.00757 0.07048 0.16884 +v -0.00800 0.07075 0.17023 +v -0.00751 0.07068 0.16949 +v -0.00924 0.07006 0.16938 +v -0.00823 0.07023 0.16923 +v -0.00791 0.07020 0.16872 +v -0.08455 0.09986 0.23799 +v -0.08415 0.09909 0.23900 +v -0.08373 0.09995 0.23895 +v -0.08464 0.09905 0.23819 +v -0.08352 0.09923 0.23938 +v -0.08408 0.10105 0.23836 +v -0.08462 0.09855 0.23866 +v -0.08505 0.09870 0.23627 +v -0.08315 0.10072 0.23912 +v -0.08423 0.09846 0.23937 +v -0.08345 0.10169 0.23888 +v -0.08450 0.09806 0.23933 +v -0.08487 0.09796 0.23871 +v -0.08312 0.10244 0.23897 +v -0.08595 0.09774 0.23435 +v -0.08697 0.09699 0.23640 +v -0.04842 0.12639 0.18519 +v -0.04784 0.12646 0.18401 +v -0.04750 0.12619 0.18512 +v -0.04887 0.12666 0.18284 +v -0.04781 0.12621 0.18566 +v -0.05011 0.12653 0.18384 +v -0.04820 0.12611 0.18608 +v -0.04760 0.12596 0.18584 +v -0.04956 0.12680 0.18212 +v -0.04984 0.12608 0.18622 +v -0.04919 0.12609 0.18637 +v -0.04967 0.12690 0.18100 +v -0.05134 0.12642 0.18416 +v -0.04845 0.12568 0.18723 +v -0.04785 0.12569 0.18651 +v -0.05199 0.12606 0.18500 +v -0.04913 0.12575 0.18719 +v -0.04932 0.12700 0.18030 +v -0.05227 0.12676 0.18301 +v -0.05221 0.12564 0.18596 +v -0.05301 0.12660 0.18341 +v -0.05000 0.12536 0.18786 +v -0.04993 0.12678 0.18033 +v -0.04894 0.12709 0.18024 +v -0.05150 0.12548 0.18688 +v -0.05321 0.12549 0.18582 +v -0.05378 0.12618 0.18423 +v -0.05108 0.12504 0.18836 +v -0.05393 0.12688 0.18145 +v -0.05490 0.12661 0.18198 +v -0.05028 0.12477 0.18855 +v -0.05192 0.12504 0.18788 +v -0.05615 0.12613 0.18248 +v -0.05139 0.12462 0.18918 +v -0.05508 0.12675 0.18129 +v -0.05176 0.12486 0.18869 +v -0.05616 0.12654 0.18149 +v -0.05195 0.12468 0.18908 +v -0.08075 0.12117 0.16839 +v -0.07969 0.12137 0.16768 +v -0.08191 0.12111 0.16931 +v -0.07944 0.12123 0.16835 +v -0.08279 0.12162 0.16871 +v -0.07939 0.12084 0.16884 +v -0.07878 0.12138 0.16803 +v -0.08199 0.12082 0.17043 +v -0.07848 0.12127 0.16838 +v -0.08138 0.12036 0.17106 +v -0.08443 0.12190 0.16905 +v -0.08307 0.12114 0.17094 +v -0.07836 0.12100 0.16857 +v -0.08084 0.11932 0.17319 +v -0.08203 0.12066 0.17147 +v -0.08177 0.12033 0.17244 +v -0.08473 0.12158 0.17045 +v -0.08281 0.12081 0.17242 +v -0.08379 0.12107 0.17221 +v -0.08486 0.12125 0.17227 +v -0.06225 0.11871 0.17529 +v -0.05990 0.11823 0.17421 +v -0.06281 0.11875 0.17860 +v -0.07912 0.12031 0.17518 +v -0.07942 0.12082 0.17555 +v -0.07892 0.12068 0.17541 +v -0.07997 0.12041 0.17513 +v -0.07877 0.12091 0.17586 +v -0.07846 0.12045 0.17545 +v -0.08028 0.12104 0.17572 +v -0.07925 0.11900 0.17525 +v -0.07876 0.12001 0.17513 +v -0.08086 0.12076 0.17515 +v -0.08080 0.12017 0.17444 +v -0.07836 0.11982 0.17539 +v -0.07794 0.11897 0.17624 +v -0.02365 0.06862 0.16828 +v -0.02312 0.06849 0.16904 +v -0.02379 0.06818 0.16852 +v -0.02265 0.06872 0.16947 +v -0.02355 0.06757 0.16921 +v -0.02424 0.06752 0.16858 +v -0.02401 0.06685 0.16911 +v -0.02336 0.06664 0.16968 +v -0.02439 0.06679 0.16873 +v -0.02405 0.06536 0.16903 +v 0.02896 0.12325 0.20205 +v 0.02896 0.12388 0.20233 +v 0.02990 0.12457 0.20241 +v 0.02801 0.12419 0.20255 +v 0.02871 0.12478 0.20257 +v 0.02922 0.12538 0.20269 +v 0.03114 0.12513 0.20250 +v 0.02814 0.12550 0.20267 +v 0.03014 0.12547 0.20274 +v 0.02876 0.12584 0.20285 +v 0.02948 0.12586 0.20300 +v 0.03086 0.12578 0.20284 +v 0.02794 0.12608 0.20281 +v 0.03021 0.12594 0.20314 +v 0.02883 0.12613 0.20332 +v 0.02968 0.12611 0.20355 +v 0.03070 0.12605 0.20330 +v 0.02742 0.12613 0.20257 +v 0.02806 0.12627 0.20337 +v 0.02725 0.12615 0.20260 +v 0.02747 0.12626 0.20266 +v -0.06462 0.09307 0.23842 +v -0.06564 0.09326 0.23755 +v -0.06646 0.09466 0.23502 +v -0.06467 0.09190 0.23864 +v -0.06637 0.12045 0.17621 +v -0.06583 0.11965 0.17756 +v -0.06503 0.11993 0.17523 +v -0.06592 0.12078 0.17515 +v -0.06608 0.12131 0.17518 +v -0.06513 0.12061 0.17418 +v -0.06411 0.11979 0.17342 +v -0.06562 0.12116 0.17460 +v -0.06288 0.11907 0.17215 +v -0.06387 0.11984 0.17195 +v -0.06426 0.12021 0.17259 +v -0.06353 0.11951 0.17096 +v -0.06309 0.11915 0.17070 +v -0.06364 0.12015 0.17103 +v -0.06337 0.11950 0.17035 +v -0.06257 0.11899 0.17099 +v -0.06357 0.11980 0.17045 +v -0.06289 0.11946 0.17027 +v -0.06276 0.11910 0.17049 +v -0.06348 0.12007 0.17044 +v -0.06323 0.11987 0.17022 +v -0.06312 0.12034 0.17060 +v -0.06132 0.11865 0.17313 +v -0.05966 0.12073 0.17243 +v -0.06020 0.12041 0.17182 +v -0.05963 0.12024 0.17216 +v -0.06092 0.12054 0.17140 +v -0.05917 0.12032 0.17263 +v -0.06004 0.11981 0.17196 +v -0.06119 0.12090 0.17161 +v -0.06076 0.12000 0.17139 +v -0.05940 0.11983 0.17245 +v -0.06171 0.12064 0.17109 +v -0.06148 0.12017 0.17091 +v -0.06071 0.11945 0.17169 +v -0.06149 0.11960 0.17103 +v -0.06194 0.12031 0.17067 +v -0.06226 0.11989 0.17046 +v -0.06159 0.11904 0.17168 +v -0.06243 0.12043 0.17064 +v -0.06227 0.11926 0.17068 +v -0.06279 0.12066 0.17090 +v -0.06280 0.12010 0.17029 +v -0.06283 0.11983 0.17016 +v -0.01226 0.07022 0.16984 +v -0.01288 0.07078 0.16865 +v -0.01324 0.07049 0.16943 +v 0.00534 0.12083 0.17813 +v 0.00487 0.12146 0.17806 +v 0.00564 0.12116 0.17768 +v 0.00481 0.12152 0.17862 +v 0.00482 0.12193 0.17783 +v 0.00609 0.12006 0.17783 +v 0.00431 0.12203 0.17826 +v 0.00569 0.12017 0.17860 +v 0.00413 0.12224 0.17864 +v 0.00419 0.12244 0.17806 +v 0.00616 0.11871 0.17810 +v 0.00687 0.11894 0.17736 +v 0.00397 0.12256 0.17842 +v 0.00806 0.11972 0.17698 +v 0.00402 0.12255 0.17874 +v 0.00414 0.12267 0.17803 +v 0.00398 0.12271 0.17816 +v 0.00799 0.12085 0.17716 +v 0.00754 0.11813 0.17685 +v 0.00404 0.12282 0.17834 +v 0.00690 0.11786 0.17713 +v -0.04929 0.12478 0.18825 +v -0.05037 0.12401 0.18790 +v -0.04914 0.12448 0.18798 +v -0.04879 0.12452 0.18706 +v -0.04883 0.12471 0.18796 +v -0.04947 0.12513 0.18824 +v -0.05094 0.12430 0.18916 +v -0.04877 0.12509 0.18787 +v -0.04907 0.12514 0.18817 +v -0.04912 0.12539 0.18789 +v -0.05120 0.12416 0.18950 +v -0.05133 0.12427 0.18952 +v -0.04837 0.12531 0.18737 +v -0.04789 0.12502 0.18648 +v -0.04801 0.12527 0.18691 +v -0.04869 0.12550 0.18759 +v -0.04813 0.12560 0.18703 +v -0.04771 0.12537 0.18653 +v -0.00025 0.12369 0.12026 +v 0.00140 0.12331 0.11936 +v 0.00113 0.12346 0.12041 +v -0.09243 0.03459 0.23982 +v -0.06961 0.11720 0.15640 +v -0.05323 0.05489 0.23927 +v 0.00394 0.11369 0.17672 +v -0.13260 0.00314 0.12586 +v -0.13260 0.00315 0.12523 +v -0.13260 0.00315 0.12452 +v -0.13260 0.00312 0.12356 +v -0.13260 0.00313 0.13914 +v -0.13260 0.00316 0.13845 +v -0.13260 0.00315 0.13804 +v -0.13260 0.00313 0.13728 +v -0.13260 0.00313 0.13643 +v 0.10674 0.00512 0.20196 +v 0.10674 0.00516 0.20253 +v 0.10674 0.00498 0.19983 +v 0.10674 0.00500 0.20009 +v 0.10674 0.00491 0.19748 +v 0.10674 0.00505 0.19283 +v 0.10674 0.00490 0.19666 +v 0.10674 0.00519 0.20415 +v 0.10674 0.00519 0.20426 +v 0.10674 0.00503 0.20061 +v 0.10674 0.00508 0.19175 +v 0.10674 0.00489 0.19699 +v 0.10674 0.00489 0.19694 +v 0.10674 0.00510 0.19098 +v 0.10674 0.00518 0.20439 +v 0.10674 0.00513 0.18940 +v 0.10674 0.00516 0.20581 +v 0.10674 0.00514 0.18896 +v 0.10674 0.00511 0.20677 +v 0.10674 0.00512 0.18633 +v 0.10674 0.00512 0.18407 +v 0.10674 0.00512 0.18364 +v 0.10674 0.00512 0.18353 +v 0.10674 0.00513 0.18318 +v 0.10674 0.00520 0.18131 +v 0.10674 0.00521 0.17845 +v 0.10674 0.00523 0.17752 +v 0.10674 0.00522 0.17724 +v 0.10674 0.00521 0.17706 +v 0.10674 0.00516 0.17484 +v 0.10674 0.00515 0.17446 +v 0.10674 0.00513 0.17402 +v 0.10674 0.00502 0.17110 +v 0.10674 0.00501 0.17044 +v 0.10674 0.00508 0.17224 +v 0.10674 0.00502 0.17149 +v 0.10674 0.00498 0.16929 +v 0.10674 0.00502 0.16778 +v 0.10674 0.00501 0.16814 +v 0.10674 0.00505 0.16731 +v 0.10674 0.00509 0.16616 +v 0.10674 0.00525 0.16348 +v 0.10674 0.00524 0.16362 +v 0.10674 0.00526 0.16339 +v 0.10674 0.00526 0.16335 +v 0.10674 0.00525 0.16319 +v 0.10674 0.00518 0.16165 +v 0.10674 0.00516 0.16127 +v 0.10674 0.00513 0.16042 +v 0.10674 0.00514 0.16026 +v 0.10674 0.00525 0.15831 +v 0.10674 0.00541 0.15636 +v 0.10674 0.00545 0.15570 +v 0.10674 0.00542 0.15499 +v 0.10674 0.00536 0.15286 +v 0.10674 0.00539 0.15250 +v 0.10674 0.00553 0.14992 +v 0.10674 0.00537 0.15278 +v 0.10674 0.00558 0.14899 +v 0.10674 0.00558 0.14756 +v 0.10674 0.00558 0.14749 +v 0.10674 0.00558 0.14744 +v 0.10674 0.00558 0.14729 +v 0.10674 0.00567 0.14047 +v 0.10674 0.00558 0.14739 +v 0.10674 0.00567 0.13975 +v 0.10674 0.00606 0.11100 +v 0.10674 0.00604 0.11180 +v 0.10674 0.00587 0.11399 +v 0.10674 0.00573 0.11484 +v 0.10674 0.00570 0.11531 +v 0.10674 0.00572 0.11578 +v 0.10674 0.00585 0.11787 +v 0.10674 0.00585 0.11890 +v 0.10674 0.00587 0.12103 +v 0.10674 0.00578 0.12326 +v 0.10674 0.00573 0.12495 +v 0.10674 0.00575 0.12604 +v 0.10674 0.00579 0.12930 +v 0.10674 0.00577 0.13063 +v 0.10674 0.00570 0.13246 +v 0.10674 0.00572 0.13331 +v 0.10674 0.00579 0.13403 +v 0.10674 0.00587 0.13511 +v 0.10674 0.00579 0.13413 +v 0.10674 0.00589 0.13718 +v 0.10674 0.00587 0.13743 +v 0.10674 0.00568 0.13970 +v 0.10674 0.00459 0.23980 +v 0.10674 0.00462 0.23946 +v 0.10674 0.00456 0.23854 +v 0.10674 0.00454 0.23825 +v 0.10674 0.00424 0.23637 +v 0.10674 0.00422 0.23627 +v 0.10674 0.00419 0.23589 +v 0.10674 0.00442 0.23751 +v 0.10674 0.00419 0.23571 +v 0.10674 0.00423 0.23395 +v 0.10674 0.00426 0.23369 +v 0.10674 0.00429 0.23329 +v 0.10674 0.00448 0.23162 +v 0.10674 0.00472 0.22947 +v 0.10674 0.00473 0.22942 +v 0.10674 0.00473 0.22938 +v 0.10674 0.00481 0.22822 +v 0.10674 0.00490 0.22701 +v 0.10674 0.00491 0.22679 +v 0.10674 0.00492 0.22673 +v 0.10674 0.00498 0.22620 +v 0.10674 0.00505 0.22533 +v 0.10674 0.00505 0.22521 +v 0.10674 0.00506 0.22456 +v 0.10674 0.00507 0.22361 +v 0.10674 0.00507 0.22254 +v 0.10674 0.00509 0.22217 +v 0.10674 0.00512 0.22174 +v 0.10674 0.00512 0.22152 +v 0.10674 0.00513 0.22143 +v 0.10674 0.00507 0.22030 +v 0.10674 0.00508 0.22012 +v 0.10674 0.00503 0.21895 +v 0.10674 0.00498 0.21765 +v 0.10674 0.00497 0.21697 +v 0.10674 0.00498 0.21460 +v 0.10674 0.00497 0.21433 +v 0.10674 0.00497 0.21426 +v 0.10674 0.00496 0.21413 +v 0.10674 0.00495 0.21229 +v 0.10674 0.00489 0.21143 +v 0.10674 0.00487 0.21008 +v 0.10674 0.00488 0.20979 +v 0.10674 0.00505 0.20779 +v -0.12903 0.00311 0.20812 +v -0.12904 0.00311 0.20804 +v -0.12951 0.00311 0.19326 +v -0.12943 0.00311 0.19222 +v -0.12956 0.00311 0.19472 +v -0.12953 0.00311 0.19337 +v -0.12934 0.00311 0.19623 +v -0.12947 0.00311 0.19580 +v -0.12992 0.00311 0.17769 +v -0.12996 0.00311 0.17749 +v -0.12904 0.00311 0.20798 +v -0.12891 0.00311 0.20916 +v -0.12871 0.00311 0.21005 +v -0.12874 0.00311 0.20994 +v -0.12925 0.00311 0.20683 +v -0.12926 0.00311 0.20667 +v -0.12954 0.00311 0.19831 +v -0.12941 0.00311 0.19774 +v -0.12930 0.00311 0.19176 +v -0.12953 0.00311 0.19333 +v -0.12957 0.00311 0.19506 +v -0.12939 0.00311 0.19654 +v -0.12840 0.00311 0.22089 +v -0.12841 0.00311 0.22084 +v -0.13014 0.00311 0.17574 +v -0.13018 0.00311 0.17550 +v -0.12997 0.00311 0.17733 +v -0.12980 0.00311 0.17913 +v -0.12983 0.00311 0.17871 +v -0.12979 0.00311 0.17833 +v -0.13002 0.00311 0.17122 +v -0.13001 0.00311 0.17103 +v -0.12873 0.00311 0.21037 +v -0.12949 0.00311 0.20458 +v -0.12966 0.00311 0.20396 +v -0.12927 0.00311 0.20575 +v -0.12925 0.00311 0.20558 +v -0.12989 0.00311 0.20211 +v -0.12990 0.00311 0.20123 +v -0.12938 0.00311 0.19702 +v -0.12955 0.00311 0.19937 +v -0.12958 0.00311 0.19958 +v -0.12965 0.00311 0.19018 +v -0.12968 0.00311 0.18972 +v -0.12961 0.00311 0.18800 +v -0.12954 0.00311 0.18759 +v -0.12952 0.00311 0.19052 +v -0.12931 0.00311 0.19162 +v -0.12945 0.00311 0.19099 +v -0.12914 0.00311 0.21289 +v -0.12909 0.00311 0.21150 +v -0.12868 0.00311 0.21748 +v -0.12870 0.00311 0.21711 +v -0.12873 0.00311 0.21932 +v -0.12868 0.00311 0.21869 +v -0.12838 0.00311 0.22095 +v -0.12864 0.00311 0.21994 +v -0.12960 0.00311 0.18273 +v -0.12960 0.00311 0.18252 +v -0.12970 0.00311 0.18190 +v -0.12957 0.00311 0.18135 +v -0.12973 0.00311 0.17975 +v -0.12974 0.00311 0.17955 +v -0.12938 0.00311 0.18504 +v -0.12954 0.00311 0.18412 +v -0.12927 0.00311 0.18677 +v -0.12925 0.00311 0.18597 +v -0.13019 0.00311 0.17507 +v -0.13010 0.00311 0.17649 +v -0.13024 0.00311 0.16711 +v -0.13043 0.00311 0.16638 +v -0.13006 0.00311 0.16982 +v -0.12999 0.00311 0.16891 +v -0.13002 0.00311 0.17148 +v -0.12879 0.00311 0.21085 +v -0.12965 0.00311 0.20385 +v -0.12939 0.00311 0.20504 +v -0.12932 0.00311 0.20517 +v -0.12973 0.00311 0.20349 +v -0.12978 0.00311 0.20049 +v -0.12993 0.00311 0.20266 +v -0.12973 0.00311 0.18899 +v -0.12969 0.00311 0.18839 +v -0.12979 0.00311 0.18926 +v -0.12927 0.00311 0.18679 +v -0.12872 0.00311 0.21419 +v -0.12911 0.00311 0.21313 +v -0.12918 0.00311 0.21298 +v -0.12860 0.00311 0.21569 +v -0.12853 0.00311 0.21532 +v -0.12868 0.00311 0.21793 +v -0.12889 0.00311 0.21653 +v -0.12871 0.00311 0.21830 +v -0.12814 0.00311 0.22155 +v -0.12807 0.00311 0.22228 +v -0.12815 0.00311 0.22179 +v -0.12951 0.00311 0.18335 +v -0.12957 0.00311 0.18132 +v -0.12975 0.00311 0.18061 +v -0.12989 0.00311 0.18014 +v -0.12950 0.00311 0.18347 +v -0.12927 0.00311 0.18678 +v -0.13028 0.00311 0.17442 +v -0.13001 0.00311 0.16834 +v -0.13009 0.00311 0.16759 +v -0.13050 0.00311 0.16545 +v -0.13046 0.00311 0.16466 +v -0.13002 0.00311 0.16857 +v -0.13021 0.00311 0.17227 +v -0.13030 0.00311 0.17337 +v -0.13026 0.00311 0.17296 +v -0.12766 0.00311 0.22449 +v -0.12773 0.00311 0.22399 +v -0.12855 0.00311 0.21452 +v -0.12917 0.00311 0.21305 +v -0.12851 0.00311 0.21467 +v -0.12850 0.00311 0.21477 +v -0.12788 0.00311 0.22275 +v -0.12950 0.00311 0.18344 +v -0.13039 0.00311 0.17403 +v -0.13053 0.00311 0.16377 +v -0.12774 0.00311 0.22505 +v -0.12781 0.00311 0.22363 +v -0.12780 0.00311 0.22336 +v -0.13021 0.00311 0.16233 +v -0.13009 0.00311 0.16146 +v -0.12754 0.00311 0.23049 +v -0.12761 0.00311 0.22986 +v -0.12773 0.00311 0.22919 +v -0.12780 0.00311 0.22820 +v -0.12784 0.00311 0.22695 +v -0.12779 0.00311 0.22632 +v -0.12782 0.00311 0.22781 +v -0.12782 0.00311 0.22616 +v -0.12779 0.00311 0.22529 +v -0.12777 0.00311 0.22516 +v -0.13008 0.00311 0.16124 +v -0.13011 0.00311 0.16099 +v -0.13011 0.00311 0.15891 +v -0.13011 0.00311 0.15877 +v -0.13189 0.00311 0.14384 +v -0.13206 0.00311 0.14287 +v -0.12748 0.00311 0.23130 +v -0.12784 0.00311 0.22806 +v -0.12783 0.00311 0.22797 +v -0.13010 0.00311 0.15868 +v -0.13034 0.00311 0.16002 +v -0.13158 0.00311 0.14415 +v -0.13219 0.00311 0.14247 +v -0.13243 0.00311 0.14177 +v -0.12744 0.00311 0.23173 +v -0.13014 0.00311 0.15786 +v -0.13133 0.00311 0.14685 +v -0.13118 0.00311 0.14606 +v -0.13119 0.00311 0.14532 +v -0.13121 0.00311 0.14505 +v -0.13121 0.00311 0.14502 +v -0.13237 0.00311 0.14057 +v -0.13239 0.00311 0.14019 +v -0.12748 0.00311 0.23196 +v -0.13021 0.00311 0.15724 +v -0.13203 0.00311 0.13135 +v -0.13213 0.00311 0.12977 +v -0.13214 0.00311 0.12960 +v -0.13221 0.00311 0.12886 +v -0.13226 0.00311 0.12818 +v -0.13230 0.00311 0.12774 +v -0.13188 0.00311 0.12261 +v -0.13157 0.00311 0.12175 +v -0.13134 0.00311 0.12087 +v -0.13131 0.00311 0.12034 +v -0.13123 0.00311 0.11962 +v -0.13116 0.00311 0.11886 +v -0.13119 0.00311 0.11796 +v -0.13120 0.00311 0.11767 +v -0.13119 0.00311 0.14818 +v -0.13119 0.00311 0.14590 +v -0.13235 0.00311 0.13991 +v -0.12744 0.00311 0.23261 +v -0.13079 0.00311 0.15566 +v -0.13079 0.00311 0.15561 +v -0.13057 0.00311 0.15619 +v -0.13030 0.00311 0.15704 +v -0.13193 0.00311 0.13314 +v -0.13193 0.00311 0.13296 +v -0.13193 0.00311 0.13290 +v -0.13202 0.00311 0.13151 +v -0.13260 0.00311 0.12647 +v -0.13227 0.00311 0.12309 +v -0.13260 0.00311 0.12352 +v -0.13121 0.00311 0.11861 +v -0.13118 0.00311 0.14843 +v -0.13240 0.00311 0.13981 +v -0.13260 0.00311 0.13939 +v -0.12743 0.00311 0.23274 +v -0.12748 0.00311 0.23335 +v -0.13080 0.00311 0.15549 +v -0.13203 0.00311 0.13386 +v -0.13157 0.00311 0.14927 +v -0.12753 0.00311 0.23386 +v -0.13106 0.00311 0.15439 +v -0.13179 0.00311 0.15176 +v -0.13169 0.00311 0.14999 +v -0.13169 0.00311 0.14988 +v -0.13229 0.00311 0.13579 +v -0.13172 0.00311 0.14948 +v -0.13147 0.00311 0.15262 +v -0.13171 0.00311 0.15195 +v -0.13172 0.00311 0.14968 +v -0.13260 0.00311 0.13594 +v -0.03785 0.00311 0.11043 +v -0.03947 0.00311 0.11060 +v -0.03796 0.00311 0.11104 +v -0.03905 0.00311 0.11123 +v -0.03811 0.00311 0.11130 +v -0.03850 0.00311 0.11130 +v -0.04763 0.00311 0.11060 +v -0.04877 0.00311 0.11210 +v -0.04808 0.00311 0.11156 +v -0.04903 0.00311 0.11218 +v -0.04929 0.00311 0.11222 +v -0.04984 0.00311 0.11207 +v -0.05083 0.00311 0.11239 +v -0.05098 0.00311 0.11241 +v -0.05125 0.00311 0.11242 +v -0.05376 0.00311 0.11249 +v -0.05415 0.00311 0.11238 +v -0.05523 0.00311 0.11228 +v -0.05739 0.00311 0.11194 +v -0.05783 0.00311 0.11181 +v -0.05560 0.00311 0.11219 +v -0.05657 0.00311 0.11190 +v -0.05904 0.00311 0.11242 +v -0.05938 0.00311 0.11253 +v -0.05948 0.00311 0.11260 +v -0.06031 0.00311 0.11320 +v -0.05942 0.00311 0.11255 +v -0.06095 0.00311 0.11336 +v -0.06177 0.00311 0.11351 +v -0.06228 0.00311 0.11360 +v -0.06293 0.00311 0.11389 +v -0.06328 0.00311 0.11388 +v -0.07025 0.00311 0.11336 +v -0.07003 0.00311 0.11335 +v -0.06894 0.00311 0.11298 +v -0.06877 0.00311 0.11287 +v -0.06383 0.00311 0.11381 +v -0.06571 0.00311 0.11332 +v -0.06575 0.00311 0.11330 +v -0.06577 0.00311 0.11330 +v -0.06410 0.00311 0.11365 +v -0.07068 0.00311 0.11357 +v -0.06830 0.00311 0.11296 +v -0.07384 0.00311 0.11404 +v -0.07291 0.00311 0.11398 +v -0.07245 0.00311 0.11381 +v -0.07144 0.00311 0.11377 +v -0.06729 0.00311 0.11294 +v -0.07434 0.00311 0.11410 +v -0.07486 0.00311 0.11416 +v -0.07561 0.00311 0.11409 +v -0.07680 0.00311 0.11381 +v -0.07640 0.00311 0.11392 +v -0.07702 0.00311 0.11382 +v -0.07570 0.00311 0.11406 +v -0.07790 0.00311 0.11365 +v -0.07855 0.00311 0.11374 +v -0.07914 0.00311 0.11386 +v -0.08026 0.00311 0.11411 +v -0.07967 0.00311 0.11400 +v -0.08072 0.00311 0.11419 +v -0.08175 0.00311 0.11464 +v -0.08126 0.00311 0.11443 +v -0.08311 0.00311 0.11505 +v -0.08301 0.00311 0.11504 +v -0.08486 0.00311 0.11516 +v -0.08475 0.00311 0.11516 +v -0.08513 0.00311 0.11510 +v -0.08290 0.00311 0.11502 +v -0.08212 0.00311 0.11473 +v -0.08370 0.00311 0.11509 +v -0.08580 0.00311 0.11494 +v -0.08589 0.00311 0.11483 +v -0.08721 0.00311 0.11480 +v -0.08615 0.00311 0.11482 +v -0.08796 0.00311 0.11479 +v -0.08729 0.00311 0.11482 +v -0.08865 0.00311 0.11474 +v -0.08834 0.00311 0.11478 +v -0.08929 0.00311 0.11441 +v -0.08901 0.00311 0.11455 +v -0.09003 0.00311 0.11438 +v -0.09172 0.00311 0.11432 +v -0.09114 0.00311 0.11429 +v -0.09055 0.00311 0.11425 +v -0.09219 0.00311 0.11448 +v -0.09244 0.00311 0.11454 +v -0.09311 0.00311 0.11468 +v -0.09310 0.00311 0.11468 +v -0.09275 0.00311 0.11460 +v -0.09389 0.00311 0.11450 +v -0.09356 0.00311 0.11446 +v -0.09476 0.00311 0.11467 +v -0.09501 0.00311 0.11482 +v -0.09734 0.00311 0.11456 +v -0.09713 0.00311 0.11460 +v -0.09635 0.00311 0.11470 +v -0.09607 0.00311 0.11479 +v -0.09789 0.00311 0.11458 +v -0.09577 0.00311 0.11483 +v -0.09526 0.00311 0.11488 +v -0.10217 0.00311 0.11511 +v -0.10180 0.00311 0.11505 +v -0.10086 0.00311 0.11484 +v -0.09998 0.00311 0.11472 +v -0.09840 0.00311 0.11453 +v -0.09951 0.00311 0.11458 +v -0.09866 0.00311 0.11454 +v -0.10241 0.00311 0.11515 +v -0.10443 0.00311 0.11484 +v -0.10443 0.00311 0.11485 +v -0.10123 0.00311 0.11486 +v -0.09975 0.00311 0.11466 +v -0.09866 0.00311 0.11454 +v -0.10444 0.00311 0.11484 +v -0.10286 0.00311 0.11523 +v -0.10320 0.00311 0.11519 +v -0.10348 0.00311 0.11512 +v -0.10445 0.00311 0.11484 +v -0.10568 0.00311 0.11467 +v -0.10671 0.00311 0.11482 +v -0.10673 0.00311 0.11482 +v -0.10775 0.00311 0.11508 +v -0.10674 0.00311 0.11483 +v -0.10804 0.00311 0.11518 +v -0.10839 0.00311 0.11523 +v -0.10990 0.00311 0.11489 +v -0.10957 0.00311 0.11489 +v -0.10883 0.00311 0.11517 +v -0.10888 0.00311 0.11516 +v -0.11088 0.00311 0.11476 +v -0.02739 0.00311 0.24075 +v -0.02873 0.00311 0.24033 +v -0.03013 0.00311 0.24027 +v -0.02599 0.00311 0.24091 +v -0.03049 0.00311 0.24030 +v -0.03068 0.00311 0.24037 +v -0.02506 0.00311 0.24124 +v -0.03121 0.00311 0.24053 +v -0.03151 0.00311 0.24055 +v -0.03253 0.00311 0.24077 +v -0.03213 0.00311 0.24065 +v -0.05663 0.00311 0.23933 +v -0.05696 0.00311 0.23925 +v -0.05464 0.00311 0.23958 +v -0.05581 0.00311 0.23952 +v -0.05411 0.00311 0.23953 +v -0.05815 0.00311 0.23944 +v -0.05886 0.00311 0.23924 +v -0.03319 0.00311 0.24078 +v -0.04662 0.00311 0.24074 +v -0.04675 0.00311 0.24075 +v -0.05727 0.00311 0.23950 +v -0.05636 0.00311 0.23949 +v -0.05614 0.00311 0.23960 +v -0.05244 0.00311 0.23951 +v -0.05235 0.00311 0.23952 +v -0.05943 0.00311 0.23904 +v -0.06005 0.00311 0.23894 +v -0.06078 0.00311 0.23877 +v -0.06103 0.00311 0.23874 +v -0.03443 0.00311 0.24061 +v -0.03457 0.00311 0.24057 +v -0.03568 0.00311 0.24049 +v -0.03590 0.00311 0.24054 +v -0.03779 0.00311 0.24059 +v -0.03830 0.00311 0.24067 +v -0.03405 0.00311 0.24061 +v -0.04803 0.00311 0.24034 +v -0.04841 0.00311 0.24014 +v -0.04606 0.00311 0.24082 +v -0.05227 0.00311 0.23952 +v -0.05056 0.00311 0.23980 +v -0.06140 0.00311 0.23871 +v -0.06223 0.00311 0.23865 +v -0.06264 0.00311 0.23867 +v -0.03611 0.00311 0.24050 +v -0.03747 0.00311 0.24049 +v -0.03968 0.00311 0.24093 +v -0.05032 0.00311 0.23984 +v -0.04477 0.00311 0.24114 +v -0.05039 0.00311 0.23983 +v -0.06192 0.00311 0.23875 +v -0.06357 0.00311 0.23851 +v -0.06415 0.00311 0.23848 +v -0.06314 0.00311 0.23879 +v -0.04025 0.00311 0.24117 +v -0.05038 0.00311 0.23984 +v -0.06481 0.00311 0.23852 +v -0.06516 0.00311 0.23853 +v -0.06680 0.00311 0.23853 +v -0.06692 0.00311 0.23853 +v -0.06585 0.00311 0.23873 +v -0.06797 0.00311 0.23842 +v -0.06806 0.00311 0.23841 +v -0.06827 0.00311 0.23840 +v -0.06890 0.00311 0.23841 +v -0.06945 0.00311 0.23846 +v -0.06973 0.00311 0.23851 +v -0.07032 0.00311 0.23864 +v -0.07081 0.00311 0.23857 +v -0.07115 0.00311 0.23854 +v -0.07160 0.00311 0.23862 +v -0.07377 0.00311 0.23881 +v -0.07453 0.00311 0.23884 +v -0.07233 0.00311 0.23854 +v -0.07260 0.00311 0.23856 +v -0.07527 0.00311 0.23890 +v -0.07694 0.00311 0.23879 +v -0.07740 0.00311 0.23878 +v -0.07295 0.00311 0.23864 +v -0.07608 0.00311 0.23894 +v -0.07757 0.00311 0.23875 +v -0.07903 0.00311 0.23882 +v -0.07949 0.00311 0.23894 +v -0.07802 0.00311 0.23875 +v -0.08021 0.00311 0.23903 +v -0.07863 0.00311 0.23877 +v -0.10148 0.00311 0.23883 +v -0.10185 0.00311 0.23888 +v -0.10494 0.00311 0.23928 +v -0.10549 0.00311 0.23926 +v -0.10444 0.00311 0.23919 +v -0.10285 0.00311 0.23906 +v -0.10333 0.00311 0.23909 +v -0.10067 0.00311 0.23867 +v -0.10680 0.00311 0.23924 +v -0.10769 0.00311 0.23923 +v -0.10628 0.00311 0.23932 +v -0.10390 0.00311 0.23917 +v -0.10885 0.00311 0.23914 +v -0.10895 0.00311 0.23915 +v -0.11177 0.00311 0.11521 +v -0.11139 0.00311 0.11513 +v -0.11260 0.00311 0.11522 +v -0.11244 0.00311 0.11524 +v -0.11289 0.00311 0.11515 +v -0.11213 0.00311 0.11531 +v -0.11331 0.00311 0.11495 +v -0.11466 0.00311 0.11483 +v -0.11365 0.00311 0.11491 +v -0.11491 0.00311 0.11481 +v -0.11596 0.00311 0.11454 +v -0.11529 0.00311 0.11472 +v -0.11635 0.00311 0.11458 +v -0.11711 0.00311 0.11458 +v -0.11784 0.00311 0.11471 +v -0.11759 0.00311 0.11468 +v -0.12148 0.00311 0.11494 +v -0.12094 0.00311 0.11482 +v -0.12341 0.00311 0.11504 +v -0.12305 0.00311 0.11504 +v -0.12509 0.00311 0.11511 +v -0.12467 0.00311 0.11507 +v -0.12259 0.00311 0.11506 +v -0.12211 0.00311 0.11503 +v -0.12009 0.00311 0.11483 +v -0.11844 0.00311 0.11474 +v -0.11872 0.00311 0.11477 +v -0.12195 0.00311 0.11498 +v -0.12393 0.00311 0.11487 +v -0.12591 0.00311 0.11527 +v -0.11964 0.00311 0.11485 +v -0.11915 0.00311 0.11486 +v -0.11989 0.00311 0.11480 +v -0.12665 0.00311 0.11560 +v -0.12650 0.00311 0.11557 +v -0.11981 0.00311 0.11482 +v -0.09459 0.00311 0.23903 +v -0.09394 0.00311 0.23888 +v -0.09191 0.00311 0.23862 +v -0.09161 0.00311 0.23865 +v -0.09343 0.00311 0.23881 +v -0.09550 0.00311 0.23901 +v -0.09277 0.00311 0.23863 +v -0.09113 0.00311 0.23850 +v -0.09262 0.00311 0.23862 +v -0.09602 0.00311 0.23894 +v -0.09272 0.00311 0.23862 +v -0.09051 0.00311 0.23841 +v -0.09700 0.00311 0.23879 +v -0.08982 0.00311 0.23820 +v -0.09725 0.00311 0.23873 +v -0.08954 0.00311 0.23816 +v -0.09778 0.00311 0.23862 +v -0.08884 0.00311 0.23814 +v -0.09856 0.00311 0.23854 +v -0.08836 0.00311 0.23801 +v -0.09920 0.00311 0.23851 +v -0.08799 0.00311 0.23806 +v -0.09972 0.00311 0.23851 +v -0.10013 0.00311 0.23856 +v -0.08704 0.00311 0.23834 +v -0.08657 0.00311 0.23838 +v -0.08754 0.00311 0.23818 +v -0.08629 0.00311 0.23849 +v -0.08575 0.00311 0.23861 +v -0.08392 0.00311 0.23905 +v -0.08365 0.00311 0.23913 +v -0.08537 0.00311 0.23869 +v -0.08478 0.00311 0.23894 +v -0.08332 0.00311 0.23912 +v -0.08234 0.00311 0.23920 +v -0.08121 0.00311 0.23898 +v -0.08120 0.00311 0.23898 +v -0.08118 0.00311 0.23898 +v -0.10904 0.00311 0.23912 +v -0.11021 0.00311 0.23905 +v -0.11117 0.00311 0.23882 +v -0.11276 0.00311 0.23860 +v -0.11190 0.00311 0.23870 +v -0.11145 0.00311 0.23879 +v -0.11314 0.00311 0.23848 +v -0.11190 0.00311 0.23870 +v -0.11404 0.00311 0.23827 +v -0.11427 0.00311 0.23824 +v -0.11531 0.00311 0.23817 +v -0.11445 0.00311 0.23823 +v -0.11619 0.00311 0.23835 +v -0.11553 0.00311 0.23818 +v -0.11672 0.00311 0.23844 +v -0.11827 0.00311 0.23855 +v -0.11702 0.00311 0.23843 +v -0.11871 0.00311 0.23855 +v -0.12029 0.00311 0.23833 +v -0.12045 0.00311 0.23831 +v -0.12199 0.00311 0.23795 +v -0.12079 0.00311 0.23820 +v -0.12237 0.00311 0.23781 +v -0.12223 0.00311 0.23784 +v -0.12279 0.00311 0.23775 +v -0.12390 0.00311 0.23755 +v -0.12351 0.00311 0.23762 +v -0.12319 0.00311 0.23771 +v -0.12428 0.00311 0.23751 +v -0.12489 0.00311 0.23744 +v -0.12531 0.00311 0.23738 +v -0.12575 0.00311 0.23719 +v -0.12635 0.00311 0.23679 +v -0.12602 0.00311 0.23704 +v -0.12663 0.00311 0.23651 +v -0.12701 0.00311 0.23586 +v -0.12708 0.00311 0.23575 +v -0.12738 0.00311 0.23487 +v -0.12713 0.00311 0.23553 +v -0.12741 0.00311 0.23452 +v -0.02359 0.00311 0.24116 +v -0.02338 0.00311 0.24117 +v -0.02314 0.00311 0.24108 +v -0.02075 0.00311 0.24094 +v -0.01892 0.00311 0.24102 +v -0.01840 0.00311 0.24116 +v -0.01792 0.00311 0.24122 +v -0.00118 0.00311 0.24065 +v -0.00106 0.00311 0.24033 +v 0.00199 0.00311 0.24013 +v 0.00236 0.00311 0.24099 +v -0.00066 0.00311 0.23983 +v 0.00053 0.00311 0.23957 +v -0.00024 0.00311 0.23965 +v 0.00003 0.00311 0.23962 +v -0.12860 0.00311 0.11517 +v -0.12922 0.00311 0.11491 +v -0.12746 0.00311 0.11558 +v -0.12750 0.00311 0.11556 +v -0.12964 0.00311 0.11490 +v -0.13059 0.00311 0.11543 +v -0.12824 0.00311 0.11524 +v -0.12739 0.00311 0.11558 +v -0.13080 0.00311 0.11572 +v -0.13130 0.00311 0.11654 +v -0.13120 0.00311 0.11758 +v 0.02320 0.00429 0.11041 +v 0.02322 0.00429 0.11041 +v 0.02319 0.00429 0.11041 +v 0.02528 0.00435 0.11041 +v 0.02621 0.00441 0.11041 +v 0.02316 0.00428 0.11041 +v 0.02729 0.00447 0.11041 +v 0.02798 0.00450 0.11041 +v 0.02299 0.00427 0.11041 +v 0.02115 0.00419 0.11041 +v 0.02079 0.00420 0.11041 +v 0.01939 0.00433 0.11041 +v 0.01838 0.00438 0.11041 +v 0.01843 0.00438 0.11041 +v 0.01817 0.00439 0.11041 +v 0.01694 0.00447 0.11041 +v 0.01512 0.00437 0.11041 +v 0.01517 0.00438 0.11041 +v 0.01667 0.00447 0.11041 +v 0.01642 0.00445 0.11041 +v 0.01510 0.00437 0.11041 +v 0.01386 0.00430 0.11041 +v 0.01323 0.00421 0.11041 +v 0.01294 0.00414 0.11041 +v 0.01257 0.00411 0.11041 +v 0.01107 0.00406 0.11041 +v 0.01067 0.00406 0.11041 +v 0.01000 0.00410 0.11041 +v 0.00879 0.00417 0.11041 +v 0.00694 0.00417 0.11041 +v 0.00507 0.00420 0.11041 +v 0.00351 0.00423 0.11041 +v 0.00160 0.00419 0.11041 +v 0.00076 0.00417 0.11041 +v -0.00034 0.00411 0.11041 +v -0.00167 0.00406 0.11041 +v -0.00034 0.00411 0.11041 +v -0.00186 0.00403 0.11041 +v -0.00235 0.00401 0.11041 +v -0.00383 0.00394 0.11041 +v -0.00454 0.00395 0.11041 +v -0.00454 0.00395 0.11041 +v -0.00548 0.00391 0.11041 +v -0.00757 0.00394 0.11041 +v -0.00759 0.00395 0.11041 +v -0.00633 0.00391 0.11041 +v -0.00763 0.00395 0.11041 +v -0.00963 0.00396 0.11041 +v -0.01072 0.00396 0.11041 +v -0.00893 0.00404 0.11041 +v -0.01209 0.00386 0.11041 +v -0.01384 0.00382 0.11041 +v -0.01132 0.00391 0.11041 +v -0.01445 0.00381 0.11041 +v -0.01768 0.00363 0.11041 +v -0.01802 0.00361 0.11041 +v -0.01889 0.00358 0.11041 +v -0.02030 0.00355 0.11041 +v -0.01817 0.00360 0.11041 +v -0.02353 0.00348 0.11041 +v -0.02390 0.00347 0.11041 +v -0.02189 0.00353 0.11041 +v -0.02505 0.00338 0.11041 +v -0.02237 0.00353 0.11041 +v -0.02565 0.00339 0.11041 +v -0.02634 0.00347 0.11041 +v -0.02565 0.00339 0.11041 +v -0.02865 0.00357 0.11041 +v -0.02888 0.00358 0.11041 +v -0.02865 0.00357 0.11041 +v -0.02898 0.00359 0.11041 +v -0.02909 0.00359 0.11041 +v -0.03115 0.00365 0.11041 +v -0.03187 0.00357 0.11041 +v -0.03291 0.00352 0.11041 +v -0.03470 0.00338 0.11041 +v -0.03579 0.00329 0.11041 +v -0.03335 0.00351 0.11041 +v -0.03784 0.00311 0.11041 +v -0.03787 0.00311 0.11041 +v -0.03794 0.00311 0.11041 +v -0.03372 0.00347 0.11041 +v -0.03600 0.00328 0.11041 +v -0.03347 0.00349 0.11041 +v -0.03907 0.00311 0.11041 +v -0.03991 0.00312 0.11041 +v -0.03763 0.00313 0.11041 +v -0.04138 0.00318 0.11041 +v -0.04253 0.00324 0.11041 +v -0.04484 0.00325 0.11041 +v -0.04209 0.00324 0.11041 +v -0.04534 0.00322 0.11041 +v -0.04670 0.00316 0.11041 +v -0.04755 0.00311 0.11041 +v 0.04983 0.00554 0.11041 +v 0.05045 0.00559 0.11041 +v 0.03848 0.00462 0.11041 +v 0.03866 0.00464 0.11041 +v 0.04236 0.00486 0.11041 +v 0.04271 0.00489 0.11041 +v 0.04053 0.00476 0.11041 +v 0.04092 0.00478 0.11041 +v 0.05181 0.00563 0.11041 +v 0.04898 0.00545 0.11041 +v 0.05213 0.00564 0.11041 +v 0.04808 0.00541 0.11041 +v 0.04040 0.00474 0.11041 +v 0.03901 0.00466 0.11041 +v 0.03848 0.00462 0.11041 +v 0.03606 0.00451 0.11041 +v 0.03592 0.00450 0.11041 +v 0.03606 0.00451 0.11041 +v 0.04298 0.00491 0.11041 +v 0.05282 0.00559 0.11041 +v 0.05363 0.00553 0.11041 +v 0.05489 0.00550 0.11041 +v 0.05567 0.00546 0.11041 +v 0.04748 0.00537 0.11041 +v 0.05681 0.00534 0.11041 +v 0.03571 0.00448 0.11041 +v 0.04524 0.00520 0.11041 +v 0.06012 0.00545 0.11041 +v 0.06028 0.00547 0.11041 +v 0.05988 0.00542 0.11041 +v 0.04726 0.00535 0.11041 +v 0.05419 0.00552 0.11041 +v 0.05715 0.00534 0.11041 +v 0.03366 0.00439 0.11041 +v 0.04554 0.00523 0.11041 +v 0.06155 0.00549 0.11041 +v 0.06176 0.00548 0.11041 +v 0.05805 0.00532 0.11041 +v 0.03305 0.00435 0.11041 +v 0.06407 0.00539 0.11041 +v 0.03268 0.00436 0.11041 +v 0.06434 0.00537 0.11041 +v 0.02994 0.00452 0.11041 +v 0.06808 0.00523 0.11041 +v 0.06888 0.00522 0.11041 +v 0.02960 0.00455 0.11041 +v 0.07075 0.00506 0.11041 +v 0.07081 0.00506 0.11041 +v 0.07083 0.00506 0.11041 +v 0.02884 0.00452 0.11041 +v 0.02953 0.00455 0.11041 +v 0.07657 0.00555 0.11041 +v 0.07665 0.00555 0.11041 +v 0.07088 0.00506 0.11041 +v 0.07650 0.00553 0.11041 +v 0.07745 0.00558 0.11041 +v 0.07320 0.00517 0.11041 +v 0.07603 0.00545 0.11041 +v 0.07325 0.00517 0.11041 +v 0.07821 0.00562 0.11041 +v 0.07451 0.00524 0.11041 +v 0.07846 0.00562 0.11041 +v 0.08090 0.00547 0.11041 +v 0.08749 0.00553 0.11041 +v 0.08784 0.00554 0.11041 +v 0.08802 0.00556 0.11041 +v 0.08530 0.00546 0.11041 +v 0.08554 0.00548 0.11041 +v 0.08516 0.00546 0.11041 +v 0.09083 0.00592 0.11041 +v 0.09194 0.00602 0.11041 +v 0.08169 0.00546 0.11041 +v 0.08895 0.00569 0.11041 +v 0.08925 0.00574 0.11041 +v 0.09415 0.00602 0.11041 +v 0.09523 0.00619 0.11041 +v 0.09609 0.00605 0.11041 +v 0.09282 0.00595 0.11041 +v 0.09058 0.00591 0.11041 +v 0.09006 0.00584 0.11041 +v 0.09415 0.00602 0.11041 +v 0.09391 0.00602 0.11041 +v 0.09285 0.00596 0.11041 +v 0.09671 0.00601 0.11041 +v 0.09713 0.00592 0.11041 +v 0.09747 0.00593 0.11041 +v 0.09830 0.00597 0.11041 +v 0.09888 0.00595 0.11041 +v 0.09930 0.00596 0.11041 +v 0.09980 0.00596 0.11041 +v 0.10258 0.00598 0.11041 +v 0.10090 0.00593 0.11041 +v 0.10039 0.00594 0.11041 +v 0.10365 0.00601 0.11041 +v 0.10439 0.00604 0.11041 +v 0.10021 0.00593 0.11041 +v 0.10630 0.00607 0.11041 +v 0.10674 0.00608 0.11041 +v 0.04984 0.00390 0.24152 +v 0.04954 0.00388 0.24152 +v 0.05245 0.00388 0.24152 +v 0.05058 0.00390 0.24152 +v 0.04881 0.00386 0.24152 +v 0.05245 0.00388 0.24152 +v 0.05327 0.00385 0.24152 +v 0.05672 0.00377 0.24152 +v 0.05543 0.00380 0.24152 +v 0.05790 0.00381 0.24152 +v 0.05391 0.00382 0.24152 +v 0.05942 0.00387 0.24152 +v 0.06317 0.00403 0.24152 +v 0.06170 0.00399 0.24152 +v 0.05974 0.00390 0.24152 +v 0.06022 0.00395 0.24152 +v 0.06375 0.00405 0.24152 +v 0.06545 0.00395 0.24152 +v 0.06590 0.00393 0.24152 +v 0.06648 0.00391 0.24152 +v -0.04338 0.00312 0.24152 +v -0.04318 0.00314 0.24152 +v -0.04356 0.00311 0.24152 +v -0.04125 0.00314 0.24152 +v -0.04129 0.00314 0.24152 +v -0.04097 0.00311 0.24152 +v -0.04301 0.00314 0.24152 +v -0.04132 0.00314 0.24152 +v -0.04133 0.00314 0.24152 +v -0.01617 0.00317 0.24152 +v -0.01698 0.00311 0.24152 +v -0.01461 0.00322 0.24152 +v -0.01441 0.00323 0.24152 +v -0.01553 0.00317 0.24152 +v -0.01603 0.00317 0.24152 +v -0.01343 0.00319 0.24152 +v -0.01269 0.00319 0.24152 +v -0.01215 0.00319 0.24152 +v -0.01033 0.00314 0.24152 +v -0.00952 0.00316 0.24152 +v -0.01003 0.00315 0.24152 +v -0.00887 0.00315 0.24152 +v -0.00926 0.00316 0.24152 +v -0.00870 0.00317 0.24152 +v -0.00662 0.00341 0.24152 +v -0.00643 0.00344 0.24152 +v -0.00634 0.00344 0.24152 +v -0.00500 0.00354 0.24152 +v -0.00407 0.00349 0.24152 +v -0.00251 0.00329 0.24152 +v -0.00188 0.00322 0.24152 +v -0.00314 0.00338 0.24152 +v -0.00367 0.00346 0.24152 +v -0.00117 0.00312 0.24152 +v -0.00115 0.00311 0.24152 +v 0.00310 0.00313 0.24152 +v 0.00271 0.00312 0.24152 +v 0.00253 0.00311 0.24152 +v 0.00332 0.00315 0.24152 +v 0.00367 0.00317 0.24152 +v 0.00591 0.00320 0.24152 +v 0.00591 0.00320 0.24152 +v 0.00637 0.00322 0.24152 +v 0.00724 0.00329 0.24152 +v 0.00764 0.00333 0.24152 +v 0.01187 0.00355 0.24152 +v 0.01197 0.00355 0.24152 +v 0.00959 0.00348 0.24152 +v 0.00992 0.00347 0.24152 +v 0.00803 0.00335 0.24152 +v 0.01210 0.00355 0.24152 +v 0.01354 0.00354 0.24152 +v 0.01413 0.00351 0.24152 +v 0.01675 0.00352 0.24152 +v 0.01711 0.00352 0.24152 +v 0.01819 0.00358 0.24152 +v 0.02016 0.00369 0.24152 +v 0.02080 0.00370 0.24152 +v 0.02220 0.00369 0.24152 +v 0.02291 0.00368 0.24152 +v 0.02449 0.00355 0.24152 +v 0.02607 0.00354 0.24152 +v 0.02755 0.00354 0.24152 +v 0.02990 0.00359 0.24152 +v 0.10579 0.00444 0.24152 +v 0.10598 0.00442 0.24152 +v 0.10674 0.00439 0.24152 +v 0.10573 0.00444 0.24152 +v 0.10542 0.00445 0.24152 +v 0.10007 0.00425 0.24152 +v 0.10020 0.00426 0.24152 +v 0.10094 0.00431 0.24152 +v 0.10365 0.00450 0.24152 +v 0.09981 0.00424 0.24152 +v 0.10322 0.00448 0.24152 +v 0.10336 0.00450 0.24152 +v 0.09662 0.00413 0.24152 +v 0.09083 0.00441 0.24152 +v 0.09097 0.00440 0.24152 +v 0.09570 0.00416 0.24152 +v 0.09486 0.00416 0.24152 +v 0.09413 0.00420 0.24152 +v 0.09082 0.00441 0.24152 +v 0.09422 0.00420 0.24152 +v 0.08882 0.00424 0.24152 +v 0.08687 0.00410 0.24152 +v 0.08620 0.00409 0.24152 +v 0.08530 0.00407 0.24152 +v 0.08513 0.00408 0.24152 +v 0.08309 0.00431 0.24152 +v 0.08478 0.00411 0.24152 +v 0.08497 0.00409 0.24152 +v 0.08229 0.00430 0.24152 +v 0.08212 0.00429 0.24152 +v 0.08191 0.00428 0.24152 +v 0.08006 0.00399 0.24152 +v 0.07891 0.00386 0.24152 +v 0.07875 0.00385 0.24152 +v 0.07756 0.00393 0.24152 +v 0.07856 0.00385 0.24152 +v 0.07340 0.00406 0.24152 +v 0.07409 0.00408 0.24152 +v 0.07552 0.00405 0.24152 +v 0.07570 0.00404 0.24152 +v 0.07139 0.00388 0.24152 +v 0.07124 0.00387 0.24152 +v 0.07121 0.00387 0.24152 +v 0.07106 0.00387 0.24152 +v 0.06981 0.00394 0.24152 +v 0.06890 0.00393 0.24152 +v 0.04780 0.00383 0.24152 +v 0.04740 0.00383 0.24152 +v 0.04521 0.00393 0.24152 +v 0.04492 0.00394 0.24152 +v 0.04309 0.00399 0.24152 +v 0.04483 0.00395 0.24152 +v 0.03941 0.00389 0.24152 +v 0.04074 0.00395 0.24152 +v 0.04199 0.00399 0.24152 +v 0.03683 0.00362 0.24152 +v 0.04147 0.00399 0.24152 +v 0.03653 0.00360 0.24152 +v 0.03626 0.00358 0.24152 +v 0.03510 0.00360 0.24152 +v 0.03272 0.00364 0.24152 +v 0.03314 0.00364 0.24152 +v 0.03428 0.00362 0.24152 +v 0.03345 0.00365 0.24152 +v 0.03179 0.00364 0.24152 +v 0.03111 0.00364 0.24152 +vt 0.035802 0.808961 +vt 0.036150 0.810913 +vt 0.035638 0.809943 +vt 0.036748 0.810291 +vt 0.034895 0.811664 +vt 0.035196 0.809191 +vt 0.037049 0.811498 +vt 0.036525 0.807390 +vt 0.035961 0.813759 +vt 0.035829 0.807804 +vt 0.037353 0.810060 +vt 0.036435 0.812604 +vt 0.036861 0.809481 +vt 0.034333 0.813865 +vt 0.034690 0.807692 +vt 0.037685 0.811003 +vt 0.037225 0.814097 +vt 0.036969 0.807434 +vt 0.036073 0.805741 +vt 0.033768 0.817106 +vt 0.032992 0.812316 +vt 0.035219 0.805717 +vt 0.037766 0.809578 +vt 0.037406 0.808920 +vt 0.037097 0.804789 +vt 0.036606 0.805130 +vt 0.036691 0.815483 +vt 0.030665 0.814794 +vt 0.036471 0.817772 +vt 0.032976 0.807781 +vt 0.034356 0.805477 +vt 0.038654 0.808136 +vt 0.038180 0.812639 +vt 0.037487 0.807071 +vt 0.035681 0.804998 +vt 0.038016 0.815728 +vt 0.032689 0.819091 +vt 0.033770 0.822481 +vt 0.031493 0.811534 +vt 0.034732 0.804932 +vt 0.038501 0.811249 +vt 0.036979 0.803564 +vt 0.037976 0.803610 +vt 0.035335 0.804366 +vt 0.036607 0.802302 +vt 0.030598 0.819163 +vt 0.036393 0.822000 +vt 0.029006 0.811701 +vt 0.030989 0.803866 +vt 0.033551 0.802996 +vt 0.039608 0.811826 +vt 0.038961 0.814329 +vt 0.037391 0.803311 +vt 0.035431 0.803284 +vt 0.035897 0.802286 +vt 0.038310 0.819270 +vt 0.028435 0.815468 +vt 0.034665 0.825325 +vt 0.029148 0.804972 +vt 0.034933 0.802698 +vt 0.041739 0.807682 +vt 0.038986 0.816216 +vt 0.039920 0.801701 +vt 0.036970 0.801399 +vt 0.037603 0.801737 +vt 0.036411 0.800477 +vt 0.038930 0.818819 +vt 0.031783 0.825792 +vt 0.028642 0.822225 +vt 0.033407 0.825613 +vt 0.036946 0.824542 +vt 0.038278 0.821577 +vt 0.027936 0.809617 +vt 0.028387 0.809235 +vt 0.028703 0.804197 +vt 0.031640 0.800336 +vt 0.033857 0.799612 +vt 0.041542 0.813480 +vt 0.039992 0.814977 +vt 0.038754 0.800692 +vt 0.038259 0.799844 +vt 0.035192 0.800583 +vt 0.039727 0.823498 +vt 0.031206 0.825060 +vt 0.026542 0.821261 +vt 0.033399 0.828109 +vt 0.037976 0.827830 +vt 0.027015 0.812301 +vt 0.029939 0.799669 +vt 0.028425 0.805708 +vt 0.044794 0.810182 +vt 0.042384 0.798869 +vt 0.040963 0.818234 +vt 0.039178 0.798609 +vt 0.037182 0.800577 +vt 0.036902 0.800818 +vt 0.037703 0.799814 +vt 0.035239 0.797665 +vt 0.040602 0.820982 +vt 0.029494 0.825571 +vt 0.031967 0.828665 +vt 0.026499 0.824067 +vt 0.033858 0.829212 +vt 0.035436 0.827816 +vt 0.038727 0.825573 +vt 0.027290 0.804416 +vt 0.027943 0.798522 +vt 0.031099 0.797316 +vt 0.031915 0.798236 +vt 0.045210 0.812754 +vt 0.045009 0.804389 +vt 0.041696 0.817606 +vt 0.041200 0.797023 +vt 0.039967 0.798189 +vt 0.037921 0.798426 +vt 0.036938 0.798329 +vt 0.041978 0.824344 +vt 0.029103 0.829337 +vt 0.030649 0.830212 +vt 0.022955 0.815943 +vt 0.025442 0.822777 +vt 0.033334 0.829891 +vt 0.032216 0.829917 +vt 0.036090 0.829984 +vt 0.039440 0.827300 +vt 0.026576 0.804380 +vt 0.030056 0.795477 +vt 0.027898 0.801916 +vt 0.028125 0.802989 +vt 0.033252 0.795832 +vt 0.046745 0.812395 +vt 0.043354 0.817025 +vt 0.047116 0.805979 +vt 0.042124 0.795861 +vt 0.045280 0.798335 +vt 0.042287 0.821445 +vt 0.043013 0.819418 +vt 0.038664 0.797095 +vt 0.039550 0.796671 +vt 0.036181 0.794944 +vt 0.028068 0.826767 +vt 0.023504 0.817242 +vt 0.025053 0.813513 +vt 0.024713 0.825225 +vt 0.023947 0.820710 +vt 0.033202 0.831686 +vt 0.039014 0.833957 +vt 0.034728 0.831867 +vt 0.026807 0.802975 +vt 0.026074 0.811599 +vt 0.027444 0.794219 +vt 0.026849 0.800958 +vt 0.031118 0.795277 +vt 0.031929 0.794651 +vt 0.033426 0.792573 +vt 0.047007 0.809582 +vt 0.045895 0.815484 +vt 0.044653 0.817337 +vt 0.047343 0.801793 +vt 0.040352 0.796193 +vt 0.041035 0.794892 +vt 0.044302 0.794682 +vt 0.037845 0.795932 +vt 0.043183 0.822651 +vt 0.041694 0.829227 +vt 0.027903 0.828966 +vt 0.029733 0.831875 +vt 0.030459 0.831286 +vt 0.020140 0.818084 +vt 0.022299 0.812580 +vt 0.026984 0.825706 +vt 0.025990 0.826322 +vt 0.023746 0.823813 +vt 0.032405 0.831816 +vt 0.035579 0.833338 +vt 0.041111 0.831175 +vt 0.025470 0.803593 +vt 0.025309 0.806154 +vt 0.028179 0.792516 +vt 0.025899 0.796102 +vt 0.024922 0.798117 +vt 0.030999 0.793703 +vt 0.032644 0.793622 +vt 0.048749 0.810411 +vt 0.048386 0.817376 +vt 0.044459 0.820128 +vt 0.048701 0.804073 +vt 0.048061 0.807063 +vt 0.041281 0.792916 +vt 0.042652 0.792801 +vt 0.046065 0.795992 +vt 0.048099 0.798892 +vt 0.039132 0.794881 +vt 0.039774 0.794877 +vt 0.037406 0.793054 +vt 0.035084 0.790042 +vt 0.044563 0.824597 +vt 0.043446 0.825996 +vt 0.028570 0.832030 +vt 0.026699 0.828238 +vt 0.031011 0.832316 +vt 0.021830 0.820760 +vt 0.020994 0.813425 +vt 0.022914 0.809335 +vt 0.024810 0.827795 +vt 0.023858 0.827029 +vt 0.032795 0.833806 +vt 0.034476 0.836193 +vt 0.037686 0.838985 +vt 0.039839 0.835569 +vt 0.030195 0.790641 +vt 0.026922 0.790919 +vt 0.025064 0.790504 +vt 0.032527 0.792119 +vt 0.048779 0.813536 +vt 0.046886 0.818822 +vt 0.048727 0.800786 +vt 0.040648 0.792673 +vt 0.044993 0.792537 +vt 0.039108 0.792643 +vt 0.033190 0.789928 +vt 0.042187 0.832697 +vt 0.026869 0.831561 +vt 0.026319 0.831332 +vt 0.030204 0.833921 +vt 0.019067 0.822416 +vt 0.019328 0.812651 +vt 0.021295 0.810271 +vt 0.025617 0.831111 +vt 0.023296 0.827686 +vt 0.021893 0.823403 +vt 0.031332 0.834120 +vt 0.025036 0.804974 +vt 0.027987 0.789353 +vt 0.025786 0.790341 +vt 0.024117 0.789416 +vt 0.023657 0.799609 +vt 0.031440 0.790993 +vt 0.049196 0.808386 +vt 0.050351 0.811388 +vt 0.047424 0.819584 +vt 0.049979 0.816903 +vt 0.045428 0.823086 +vt 0.049477 0.801622 +vt 0.042267 0.789764 +vt 0.040015 0.790915 +vt 0.043329 0.790798 +vt 0.046711 0.794743 +vt 0.049008 0.799439 +vt 0.038400 0.788350 +vt 0.033434 0.788167 +vt 0.044034 0.836057 +vt 0.028121 0.833719 +vt 0.017223 0.819652 +vt 0.017293 0.816792 +vt 0.020903 0.807179 +vt 0.022926 0.806393 +vt 0.023779 0.830710 +vt 0.033018 0.836579 +vt 0.041441 0.840893 +vt 0.035042 0.843763 +vt 0.042821 0.840117 +vt 0.021822 0.804015 +vt 0.029852 0.787276 +vt 0.025578 0.789092 +vt 0.021448 0.791861 +vt 0.030625 0.786783 +vt 0.032437 0.789421 +vt 0.050191 0.809912 +vt 0.050033 0.814058 +vt 0.046983 0.821866 +vt 0.049050 0.818874 +vt 0.049465 0.804113 +vt 0.049105 0.800185 +vt 0.045050 0.790672 +vt 0.047153 0.791123 +vt 0.049224 0.798106 +vt 0.035473 0.783578 +vt 0.039216 0.791123 +vt 0.033554 0.785729 +vt 0.032797 0.788531 +vt 0.046080 0.826866 +vt 0.045669 0.831059 +vt 0.026771 0.834019 +vt 0.024923 0.833931 +vt 0.028019 0.835663 +vt 0.021271 0.827990 +vt 0.017564 0.821745 +vt 0.017856 0.812650 +vt 0.022394 0.829702 +vt 0.030187 0.837752 +vt 0.033506 0.839237 +vt 0.031936 0.838913 +vt 0.039721 0.845358 +vt 0.037138 0.846383 +vt 0.028481 0.785641 +vt 0.026536 0.786272 +vt 0.023524 0.784505 +vt 0.022689 0.790052 +vt 0.020961 0.801889 +vt 0.020892 0.795140 +vt 0.031629 0.789442 +vt 0.050231 0.808042 +vt 0.051201 0.812720 +vt 0.051005 0.809845 +vt 0.048602 0.820875 +vt 0.050987 0.815068 +vt 0.051341 0.816040 +vt 0.050508 0.805520 +vt 0.050345 0.801334 +vt 0.049517 0.799681 +vt 0.041622 0.785678 +vt 0.043166 0.785871 +vt 0.044409 0.786660 +vt 0.047951 0.792814 +vt 0.048536 0.796115 +vt 0.049240 0.799040 +vt 0.037808 0.780092 +vt 0.032940 0.787225 +vt 0.044956 0.838922 +vt 0.025734 0.836462 +vt 0.027659 0.835339 +vt 0.024576 0.837490 +vt 0.027909 0.838128 +vt 0.018526 0.829283 +vt 0.015710 0.823209 +vt 0.016830 0.825727 +vt 0.015237 0.819482 +vt 0.018559 0.810304 +vt 0.015306 0.814770 +vt 0.023168 0.834468 +vt 0.022080 0.831606 +vt 0.041120 0.852492 +vt 0.045177 0.849725 +vt 0.035024 0.847979 +vt 0.031814 0.845850 +vt 0.029932 0.784202 +vt 0.025184 0.787219 +vt 0.023288 0.788163 +vt 0.021469 0.788489 +vt 0.019504 0.803959 +vt 0.020093 0.791124 +vt 0.031210 0.786470 +vt 0.032067 0.788492 +vt 0.050700 0.809028 +vt 0.048930 0.823942 +vt 0.050810 0.820750 +vt 0.047225 0.826606 +vt 0.040198 0.785071 +vt 0.045327 0.782066 +vt 0.048392 0.790911 +vt 0.049708 0.796201 +vt 0.035815 0.778398 +vt 0.033567 0.782620 +vt 0.032628 0.786047 +vt 0.032330 0.787341 +vt 0.046309 0.830638 +vt 0.046854 0.837441 +vt 0.026632 0.835972 +vt 0.023837 0.836440 +vt 0.026963 0.837350 +vt 0.019364 0.831107 +vt 0.019220 0.806921 +vt 0.016844 0.811280 +vt 0.022138 0.833342 +vt 0.030580 0.841588 +vt 0.029169 0.841471 +vt 0.039917 0.852038 +vt 0.037971 0.850441 +vt 0.033095 0.847715 +vt 0.027951 0.780942 +vt 0.022420 0.787584 +vt 0.020194 0.786799 +vt 0.019762 0.799639 +vt 0.018480 0.793104 +vt 0.051027 0.808206 +vt 0.051775 0.808700 +vt 0.051982 0.814797 +vt 0.051029 0.809078 +vt 0.049962 0.822908 +vt 0.051487 0.819731 +vt 0.047279 0.829912 +vt 0.051581 0.804616 +vt 0.050701 0.799000 +vt 0.041382 0.783172 +vt 0.044144 0.783630 +vt 0.048039 0.781519 +vt 0.048871 0.794091 +vt 0.048230 0.785734 +vt 0.049634 0.791163 +vt 0.050191 0.797714 +vt 0.038630 0.778881 +vt 0.037030 0.776356 +vt 0.034154 0.778608 +vt 0.032931 0.783314 +vt 0.032378 0.784506 +vt 0.046795 0.833199 +vt 0.046800 0.843731 +vt 0.025381 0.841523 +vt 0.021963 0.836854 +vt 0.026309 0.840703 +vt 0.019459 0.835563 +vt 0.016817 0.829292 +vt 0.015646 0.824804 +vt 0.013212 0.821766 +vt 0.014265 0.817543 +vt 0.018282 0.806368 +vt 0.014903 0.812912 +vt 0.017540 0.808330 +vt 0.021388 0.833338 +vt 0.038688 0.855455 +vt 0.043393 0.851767 +vt 0.036112 0.853767 +vt 0.033545 0.852169 +vt 0.031703 0.849049 +vt 0.030159 0.781225 +vt 0.031062 0.783278 +vt 0.021382 0.787225 +vt 0.018659 0.802967 +vt 0.019779 0.796440 +vt 0.019249 0.788369 +vt 0.052006 0.811826 +vt 0.049227 0.827573 +vt 0.051568 0.823100 +vt 0.052130 0.817242 +vt 0.051490 0.800609 +vt 0.039295 0.778844 +vt 0.043081 0.783226 +vt 0.047680 0.776491 +vt 0.043962 0.781923 +vt 0.049732 0.784852 +vt 0.050746 0.787585 +vt 0.050023 0.794294 +vt 0.051009 0.796870 +vt 0.038508 0.777636 +vt 0.035999 0.774989 +vt 0.038047 0.776424 +vt 0.032770 0.781692 +vt 0.032953 0.779830 +vt 0.031872 0.785659 +vt 0.050778 0.833703 +vt 0.049361 0.842934 +vt 0.047363 0.848464 +vt 0.023214 0.839970 +vt 0.022114 0.838031 +vt 0.017693 0.831342 +vt 0.013388 0.814974 +vt 0.015815 0.807878 +vt 0.020969 0.835563 +vt 0.030275 0.845686 +vt 0.027820 0.846537 +vt 0.040718 0.856894 +vt 0.045202 0.851639 +vt 0.042211 0.853407 +vt 0.037021 0.855305 +vt 0.032305 0.850584 +vt 0.030721 0.848283 +vt 0.024479 0.778106 +vt 0.029818 0.779261 +vt 0.020129 0.781652 +vt 0.020490 0.785336 +vt 0.017984 0.800685 +vt 0.016982 0.797965 +vt 0.017470 0.791082 +vt 0.016608 0.793673 +vt 0.018250 0.786075 +vt 0.051768 0.806668 +vt 0.052867 0.809125 +vt 0.054357 0.811147 +vt 0.050033 0.826247 +vt 0.052315 0.819361 +vt 0.053019 0.821709 +vt 0.048377 0.831109 +vt 0.052576 0.802949 +vt 0.041956 0.779509 +vt 0.049623 0.783363 +vt 0.044198 0.779612 +vt 0.050343 0.776599 +vt 0.051108 0.793533 +vt 0.036941 0.774100 +vt 0.037434 0.773542 +vt 0.035371 0.772744 +vt 0.032113 0.781607 +vt 0.032758 0.778451 +vt 0.051407 0.838023 +vt 0.049193 0.847919 +vt 0.046546 0.851379 +vt 0.023130 0.842538 +vt 0.020965 0.838798 +vt 0.016029 0.831957 +vt 0.012833 0.825081 +vt 0.012999 0.817992 +vt 0.016649 0.806675 +vt 0.014020 0.809756 +vt 0.041114 0.859436 +vt 0.044493 0.853843 +vt 0.043669 0.854599 +vt 0.033309 0.856905 +vt 0.034905 0.857780 +vt 0.031566 0.853330 +vt 0.031246 0.851239 +vt 0.030652 0.850250 +vt 0.021327 0.775431 +vt 0.026334 0.775398 +vt 0.031085 0.780942 +vt 0.029449 0.777683 +vt 0.019572 0.785089 +vt 0.016659 0.805539 +vt 0.016369 0.790198 +vt 0.016200 0.784666 +vt 0.052452 0.805883 +vt 0.050801 0.827903 +vt 0.053386 0.818003 +vt 0.052581 0.825114 +vt 0.049756 0.831173 +vt 0.052952 0.798834 +vt 0.039218 0.777289 +vt 0.045085 0.776231 +vt 0.047636 0.771976 +vt 0.042176 0.777326 +vt 0.050782 0.780912 +vt 0.052800 0.792801 +vt 0.038698 0.775019 +vt 0.036383 0.773017 +vt 0.034606 0.771147 +vt 0.032046 0.779336 +vt 0.033154 0.772681 +vt 0.051503 0.830615 +vt 0.050435 0.847040 +vt 0.051955 0.839925 +vt 0.047560 0.852962 +vt 0.024257 0.845009 +vt 0.021954 0.840235 +vt 0.019639 0.837276 +vt 0.017212 0.835607 +vt 0.011890 0.824287 +vt 0.010674 0.820852 +vt 0.011007 0.814499 +vt 0.015292 0.806742 +vt 0.011656 0.813511 +vt 0.029707 0.848036 +vt 0.028501 0.847785 +vt 0.036247 0.859613 +vt 0.043034 0.856504 +vt 0.038904 0.860690 +vt 0.042512 0.859257 +vt 0.046143 0.853883 +vt 0.031131 0.857152 +vt 0.030053 0.849786 +vt 0.024006 0.772491 +vt 0.028406 0.775690 +vt 0.030583 0.777498 +vt 0.019466 0.783041 +vt 0.018451 0.775534 +vt 0.014880 0.796541 +vt 0.018250 0.783572 +vt 0.016991 0.782936 +vt 0.053548 0.804665 +vt 0.054648 0.805659 +vt 0.050623 0.830079 +vt 0.055337 0.815256 +vt 0.054606 0.826058 +vt 0.054262 0.799764 +vt 0.040120 0.775165 +vt 0.043022 0.775709 +vt 0.050178 0.770119 +vt 0.052269 0.784113 +vt 0.037171 0.772565 +vt 0.038096 0.773127 +vt 0.036449 0.771128 +vt 0.035500 0.770773 +vt 0.031476 0.779499 +vt 0.032223 0.777421 +vt 0.053658 0.831126 +vt 0.051182 0.851202 +vt 0.051034 0.844404 +vt 0.053856 0.838355 +vt 0.026010 0.849662 +vt 0.021912 0.845127 +vt 0.021431 0.843858 +vt 0.021213 0.840758 +vt 0.018651 0.840113 +vt 0.015081 0.839996 +vt 0.013575 0.830312 +vt 0.010297 0.822802 +vt 0.011003 0.828305 +vt 0.010746 0.816929 +vt 0.013534 0.807993 +vt 0.012074 0.809894 +vt 0.019746 0.841008 +vt 0.027588 0.851924 +vt 0.040658 0.865139 +vt 0.042214 0.862081 +vt 0.044634 0.857558 +vt 0.046344 0.856821 +vt 0.034533 0.860127 +vt 0.030364 0.860214 +vt 0.030405 0.856325 +vt 0.030538 0.851704 +vt 0.030016 0.851086 +vt 0.021814 0.767035 +vt 0.025970 0.771207 +vt 0.027488 0.772640 +vt 0.029790 0.776231 +vt 0.018715 0.782136 +vt 0.017804 0.766488 +vt 0.018287 0.779369 +vt 0.015177 0.800722 +vt 0.013402 0.795751 +vt 0.015559 0.798101 +vt 0.015125 0.789287 +vt 0.015881 0.782088 +vt 0.054892 0.808012 +vt 0.054541 0.819242 +vt 0.055182 0.811956 +vt 0.053486 0.828238 +vt 0.055448 0.822287 +vt 0.054745 0.794969 +vt 0.051074 0.776794 +vt 0.044324 0.773524 +vt 0.044799 0.771007 +vt 0.051518 0.773544 +vt 0.047770 0.768914 +vt 0.042380 0.773462 +vt 0.052893 0.778128 +vt 0.056183 0.791666 +vt 0.039080 0.773505 +vt 0.034964 0.768942 +vt 0.033531 0.768464 +vt 0.032116 0.775799 +vt 0.054880 0.833128 +vt 0.051109 0.845960 +vt 0.053227 0.841335 +vt 0.049243 0.855749 +vt 0.024408 0.853987 +vt 0.022230 0.848076 +vt 0.017206 0.840091 +vt 0.011858 0.828888 +vt 0.010217 0.824423 +vt 0.010549 0.826132 +vt 0.009597 0.814864 +vt 0.007680 0.819800 +vt 0.010606 0.812235 +vt 0.013302 0.804809 +vt 0.029088 0.850410 +vt 0.036262 0.860854 +vt 0.038783 0.863432 +vt 0.042672 0.862099 +vt 0.033657 0.862230 +vt 0.032217 0.862989 +vt 0.030372 0.853929 +vt 0.025030 0.765699 +vt 0.028616 0.773116 +vt 0.031468 0.776589 +vt 0.030019 0.774277 +vt 0.029260 0.773980 +vt 0.016357 0.772683 +vt 0.017030 0.776684 +vt 0.014042 0.798564 +vt 0.015000 0.783626 +vt 0.018296 0.782329 +vt 0.017785 0.782281 +vt 0.015472 0.779876 +vt 0.054439 0.802659 +vt 0.055087 0.806470 +vt 0.057681 0.816766 +vt 0.056631 0.812873 +vt 0.054602 0.828211 +vt 0.057095 0.819475 +vt 0.056150 0.796861 +vt 0.040740 0.768477 +vt 0.045655 0.769275 +vt 0.051639 0.768920 +vt 0.049832 0.766945 +vt 0.053954 0.781697 +vt 0.055498 0.783275 +vt 0.038959 0.771021 +vt 0.037705 0.770795 +vt 0.038505 0.771991 +vt 0.035764 0.769223 +vt 0.032154 0.770365 +vt 0.032159 0.773289 +vt 0.053375 0.850132 +vt 0.052703 0.845300 +vt 0.056283 0.840441 +vt 0.056877 0.835155 +vt 0.048215 0.857548 +vt 0.051390 0.851353 +vt 0.020713 0.845852 +vt 0.018804 0.845220 +vt 0.015026 0.842748 +vt 0.012430 0.832768 +vt 0.009560 0.823095 +vt 0.011349 0.832845 +vt 0.010466 0.828294 +vt 0.011895 0.806659 +vt 0.010349 0.808493 +vt 0.028529 0.852225 +vt 0.037429 0.862962 +vt 0.042157 0.864254 +vt 0.038473 0.866164 +vt 0.046189 0.858356 +vt 0.034929 0.863588 +vt 0.028755 0.858371 +vt 0.030528 0.864195 +vt 0.029378 0.852734 +vt 0.022510 0.760999 +vt 0.020608 0.759281 +vt 0.027183 0.769075 +vt 0.028298 0.771108 +vt 0.031346 0.775356 +vt 0.015346 0.769250 +vt 0.017401 0.779033 +vt 0.013826 0.801501 +vt 0.013089 0.798888 +vt 0.012282 0.788783 +vt 0.012013 0.786779 +vt 0.012382 0.781793 +vt 0.014161 0.778275 +vt 0.055498 0.802712 +vt 0.055756 0.810837 +vt 0.055580 0.804316 +vt 0.055665 0.807721 +vt 0.056198 0.811304 +vt 0.056523 0.829278 +vt 0.055893 0.800338 +vt 0.040090 0.769506 +vt 0.043303 0.766871 +vt 0.052820 0.770679 +vt 0.046849 0.765347 +vt 0.055314 0.777142 +vt 0.056460 0.789481 +vt 0.036974 0.766530 +vt 0.034864 0.766539 +vt 0.032828 0.767580 +vt 0.031592 0.773699 +vt 0.031682 0.775647 +vt 0.057268 0.844728 +vt 0.057209 0.836839 +vt 0.057481 0.830764 +vt 0.054397 0.846644 +vt 0.050103 0.857822 +vt 0.052592 0.855618 +vt 0.046994 0.857602 +vt 0.028098 0.854229 +vt 0.022982 0.854968 +vt 0.019861 0.847897 +vt 0.017657 0.846812 +vt 0.019737 0.845705 +vt 0.012028 0.841574 +vt 0.009387 0.826014 +vt 0.010496 0.830702 +vt 0.009702 0.827528 +vt 0.007124 0.817639 +vt 0.007933 0.823067 +vt 0.008310 0.815280 +vt 0.012682 0.802454 +vt 0.007727 0.811478 +vt 0.036066 0.864267 +vt 0.043535 0.863465 +vt 0.041298 0.866653 +vt 0.039457 0.867010 +vt 0.036693 0.865504 +vt 0.042390 0.865663 +vt 0.045142 0.860568 +vt 0.034095 0.868108 +vt 0.028507 0.861875 +vt 0.032365 0.868282 +vt 0.028793 0.855660 +vt 0.024151 0.759885 +vt 0.018221 0.756954 +vt 0.026906 0.766455 +vt 0.030237 0.771647 +vt 0.029079 0.770154 +vt 0.031117 0.774485 +vt 0.014927 0.771503 +vt 0.014525 0.766448 +vt 0.016109 0.775096 +vt 0.016345 0.777081 +vt 0.012103 0.796451 +vt 0.012323 0.793852 +vt 0.013319 0.784282 +vt 0.017009 0.780016 +vt 0.012725 0.779151 +vt 0.014682 0.777078 +vt 0.057016 0.805927 +vt 0.057374 0.814579 +vt 0.058896 0.819075 +vt 0.057737 0.811256 +vt 0.058887 0.823067 +vt 0.058326 0.795294 +vt 0.057168 0.799029 +vt 0.038099 0.764509 +vt 0.043852 0.765376 +vt 0.049703 0.764367 +vt 0.053230 0.764861 +vt 0.045434 0.763331 +vt 0.047711 0.764376 +vt 0.039160 0.761373 +vt 0.055625 0.773025 +vt 0.057751 0.790631 +vt 0.056450 0.785966 +vt 0.038236 0.768447 +vt 0.036109 0.766002 +vt 0.034421 0.764838 +vt 0.031245 0.772325 +vt 0.031326 0.768007 +vt 0.058729 0.842872 +vt 0.058784 0.837154 +vt 0.058231 0.833441 +vt 0.049794 0.859747 +vt 0.047924 0.860592 +vt 0.024114 0.855699 +vt 0.019740 0.849981 +vt 0.018901 0.847441 +vt 0.013369 0.844189 +vt 0.010796 0.835760 +vt 0.017118 0.848597 +vt 0.008464 0.825651 +vt 0.010424 0.832407 +vt 0.009423 0.829200 +vt 0.006556 0.820419 +vt 0.006903 0.821465 +vt 0.011874 0.802363 +vt 0.008476 0.806862 +vt 0.040323 0.868027 +vt 0.038841 0.868621 +vt 0.038028 0.868328 +vt 0.046662 0.859355 +vt 0.046264 0.860932 +vt 0.035636 0.866260 +vt 0.027252 0.862257 +vt 0.028819 0.866567 +vt 0.027653 0.858622 +vt 0.022870 0.758646 +vt 0.025953 0.762626 +vt 0.022173 0.755838 +vt 0.018693 0.754519 +vt 0.016156 0.758821 +vt 0.027458 0.767626 +vt 0.026578 0.764349 +vt 0.028158 0.768697 +vt 0.030656 0.773328 +vt 0.014192 0.769855 +vt 0.014982 0.774132 +vt 0.014451 0.768500 +vt 0.015322 0.762816 +vt 0.016342 0.776178 +vt 0.011110 0.800593 +vt 0.010788 0.792322 +vt 0.011241 0.789472 +vt 0.011499 0.780099 +vt 0.012397 0.774277 +vt 0.011461 0.776835 +vt 0.056718 0.801345 +vt 0.056656 0.803252 +vt 0.058803 0.816158 +vt 0.057849 0.812978 +vt 0.058479 0.827526 +vt 0.041972 0.763005 +vt 0.054385 0.769838 +vt 0.045622 0.762001 +vt 0.046526 0.761778 +vt 0.057058 0.779996 +vt 0.056965 0.788238 +vt 0.036022 0.763956 +vt 0.031070 0.770284 +vt 0.032189 0.765043 +vt 0.033951 0.763500 +vt 0.031219 0.773488 +vt 0.055302 0.855841 +vt 0.058319 0.846503 +vt 0.059491 0.846138 +vt 0.059113 0.840780 +vt 0.058463 0.830824 +vt 0.051240 0.861839 +vt 0.049117 0.861216 +vt 0.047187 0.860036 +vt 0.023980 0.858274 +vt 0.020817 0.856576 +vt 0.018434 0.851350 +vt 0.017745 0.848910 +vt 0.011346 0.846068 +vt 0.013714 0.846651 +vt 0.009965 0.836592 +vt 0.014820 0.846010 +vt 0.010398 0.833998 +vt 0.008932 0.827202 +vt 0.009596 0.832100 +vt 0.009775 0.830679 +vt 0.007285 0.814871 +vt 0.006537 0.817855 +vt 0.008134 0.827610 +vt 0.007151 0.823449 +vt 0.006900 0.807364 +vt 0.043392 0.866325 +vt 0.042090 0.867389 +vt 0.041055 0.868907 +vt 0.034568 0.871842 +vt 0.033605 0.870823 +vt 0.030094 0.869755 +vt 0.023499 0.756573 +vt 0.024846 0.758141 +vt 0.020910 0.753012 +vt 0.016382 0.752279 +vt 0.027773 0.766781 +vt 0.027450 0.765192 +vt 0.029809 0.769719 +vt 0.029155 0.768433 +vt 0.013941 0.771747 +vt 0.013723 0.768266 +vt 0.013848 0.763235 +vt 0.015857 0.775848 +vt 0.008920 0.799657 +vt 0.008988 0.796552 +vt 0.010630 0.784636 +vt 0.011548 0.783616 +vt 0.012934 0.772717 +vt 0.057387 0.803775 +vt 0.060574 0.818751 +vt 0.060145 0.821221 +vt 0.058986 0.811669 +vt 0.059725 0.824944 +vt 0.058791 0.791104 +vt 0.059272 0.798308 +vt 0.057949 0.802562 +vt 0.038226 0.760612 +vt 0.044713 0.763012 +vt 0.043638 0.762766 +vt 0.047869 0.761909 +vt 0.052219 0.759914 +vt 0.054111 0.763293 +vt 0.043073 0.760527 +vt 0.058744 0.775105 +vt 0.057744 0.785551 +vt 0.036940 0.761754 +vt 0.034141 0.761656 +vt 0.030543 0.770804 +vt 0.030554 0.769397 +vt 0.030518 0.765261 +vt 0.054602 0.857601 +vt 0.060181 0.844255 +vt 0.060053 0.839404 +vt 0.059538 0.835815 +vt 0.059738 0.833349 +vt 0.052353 0.859174 +vt 0.050061 0.862616 +vt 0.048443 0.862893 +vt 0.047554 0.862586 +vt 0.018208 0.860943 +vt 0.010277 0.841336 +vt 0.009899 0.835363 +vt 0.015392 0.849947 +vt 0.016265 0.851793 +vt 0.009742 0.833747 +vt 0.008956 0.831485 +vt 0.006505 0.814732 +vt 0.006189 0.821065 +vt 0.006200 0.820062 +vt 0.007167 0.827686 +vt 0.006913 0.825062 +vt 0.006356 0.822716 +vt 0.006703 0.811199 +vt 0.008832 0.802025 +vt 0.046071 0.867637 +vt 0.040528 0.869909 +vt 0.037881 0.869892 +vt 0.036957 0.868830 +vt 0.032736 0.871425 +vt 0.025853 0.864404 +vt 0.024181 0.860065 +vt 0.028746 0.869255 +vt 0.026058 0.760040 +vt 0.026864 0.762318 +vt 0.021985 0.753980 +vt 0.018540 0.749901 +vt 0.019868 0.750646 +vt 0.014850 0.755574 +vt 0.014092 0.759232 +vt 0.027230 0.763331 +vt 0.028863 0.767077 +vt 0.013452 0.768871 +vt 0.013119 0.766722 +vt 0.015476 0.776874 +vt 0.008819 0.793613 +vt 0.010185 0.787934 +vt 0.009542 0.776995 +vt 0.012039 0.772721 +vt 0.060719 0.815194 +vt 0.059596 0.827876 +vt 0.059647 0.792316 +vt 0.059911 0.794554 +vt 0.039374 0.757818 +vt 0.055943 0.771363 +vt 0.048108 0.760283 +vt 0.053338 0.762695 +vt 0.055318 0.766048 +vt 0.045303 0.759765 +vt 0.044920 0.760496 +vt 0.042179 0.756476 +vt 0.059061 0.773049 +vt 0.059632 0.775533 +vt 0.058902 0.787306 +vt 0.058222 0.782718 +vt 0.036124 0.760203 +vt 0.029985 0.768105 +vt 0.031433 0.762521 +vt 0.032944 0.762095 +vt 0.058322 0.852672 +vt 0.055594 0.859026 +vt 0.053335 0.858518 +vt 0.059415 0.848522 +vt 0.060743 0.847454 +vt 0.052633 0.862100 +vt 0.051482 0.864492 +vt 0.021899 0.862475 +vt 0.018175 0.856260 +vt 0.011709 0.849234 +vt 0.009992 0.844827 +vt 0.013245 0.850147 +vt 0.009063 0.835960 +vt 0.009781 0.837205 +vt 0.013921 0.852759 +vt 0.009044 0.834397 +vt 0.008930 0.829197 +vt 0.005608 0.815043 +vt 0.005943 0.818792 +vt 0.007567 0.829748 +vt 0.006782 0.823843 +vt 0.006205 0.808578 +vt 0.006466 0.805038 +vt 0.046793 0.864843 +vt 0.045589 0.870872 +vt 0.041666 0.871009 +vt 0.040864 0.870681 +vt 0.040060 0.870855 +vt 0.038591 0.870342 +vt 0.035810 0.870810 +vt 0.033528 0.873028 +vt 0.026792 0.869051 +vt 0.024728 0.863512 +vt 0.029098 0.871720 +vt 0.031287 0.872150 +vt 0.022657 0.753317 +vt 0.024111 0.755769 +vt 0.026591 0.759393 +vt 0.026347 0.761723 +vt 0.021902 0.751200 +vt 0.017329 0.747809 +vt 0.020515 0.748397 +vt 0.014229 0.754429 +vt 0.028423 0.765627 +vt 0.027826 0.764287 +vt 0.029393 0.767602 +vt 0.012533 0.770120 +vt 0.013057 0.761406 +vt 0.012943 0.763958 +vt 0.008164 0.797479 +vt 0.007516 0.802017 +vt 0.007863 0.795025 +vt 0.009042 0.790548 +vt 0.008439 0.787079 +vt 0.009001 0.781373 +vt 0.009802 0.773677 +vt 0.062308 0.823324 +vt 0.061898 0.817221 +vt 0.060209 0.823653 +vt 0.061292 0.827473 +vt 0.061395 0.789568 +vt 0.061799 0.804493 +vt 0.061766 0.794047 +vt 0.037998 0.756929 +vt 0.040440 0.757672 +vt 0.037253 0.759752 +vt 0.057635 0.771277 +vt 0.049553 0.756699 +vt 0.052555 0.757352 +vt 0.055382 0.761741 +vt 0.055264 0.760336 +vt 0.043456 0.758791 +vt 0.059835 0.772370 +vt 0.059684 0.787414 +vt 0.058746 0.785314 +vt 0.034452 0.759262 +vt 0.030019 0.762269 +vt 0.029420 0.766400 +vt 0.033628 0.760127 +vt 0.056867 0.854946 +vt 0.054233 0.859910 +vt 0.056862 0.857002 +vt 0.060554 0.849681 +vt 0.061430 0.842640 +vt 0.060758 0.837701 +vt 0.061201 0.833623 +vt 0.061645 0.830579 +vt 0.049054 0.863931 +vt 0.049630 0.865036 +vt 0.048138 0.863233 +vt 0.019961 0.864827 +vt 0.016725 0.856755 +vt 0.009411 0.848192 +vt 0.008936 0.843019 +vt 0.007838 0.845210 +vt 0.008722 0.839683 +vt 0.014179 0.854055 +vt 0.008567 0.833401 +vt 0.006338 0.811357 +vt 0.005605 0.822860 +vt 0.005681 0.819961 +vt 0.005863 0.812937 +vt 0.006018 0.817445 +vt 0.006744 0.828820 +vt 0.006422 0.825930 +vt 0.006308 0.824400 +vt 0.005999 0.810130 +vt 0.047470 0.865774 +vt 0.047061 0.869058 +vt 0.043706 0.875845 +vt 0.040508 0.870931 +vt 0.039104 0.871776 +vt 0.037252 0.871350 +vt 0.037445 0.872637 +vt 0.035306 0.873206 +vt 0.036589 0.870865 +vt 0.034304 0.874840 +vt 0.031990 0.874201 +vt 0.024008 0.868991 +vt 0.023706 0.866705 +vt 0.027898 0.871100 +vt 0.023359 0.752644 +vt 0.025084 0.755059 +vt 0.025788 0.756660 +vt 0.027380 0.760369 +vt 0.027372 0.761919 +vt 0.019945 0.747507 +vt 0.019327 0.745285 +vt 0.016688 0.747055 +vt 0.013591 0.756034 +vt 0.014603 0.751116 +vt 0.028302 0.763929 +vt 0.012310 0.767870 +vt 0.013050 0.758097 +vt 0.011525 0.767020 +vt 0.007756 0.799288 +vt 0.007617 0.792783 +vt 0.007921 0.791662 +vt 0.008233 0.789308 +vt 0.008555 0.783476 +vt 0.008134 0.780576 +vt 0.008641 0.777096 +vt 0.011482 0.769351 +vt 0.062825 0.821967 +vt 0.062238 0.812061 +vt 0.061278 0.787573 +vt 0.060990 0.791918 +vt 0.062855 0.797154 +vt 0.039571 0.754955 +vt 0.057235 0.769797 +vt 0.046847 0.757295 +vt 0.048141 0.755548 +vt 0.057606 0.761516 +vt 0.045345 0.758671 +vt 0.040758 0.753436 +vt 0.043540 0.755874 +vt 0.059266 0.769957 +vt 0.060456 0.776468 +vt 0.060059 0.785563 +vt 0.036711 0.756975 +vt 0.035273 0.757496 +vt 0.030718 0.759979 +vt 0.029169 0.764202 +vt 0.031986 0.760414 +vt 0.032777 0.759502 +vt 0.053271 0.864910 +vt 0.057537 0.859831 +vt 0.061886 0.847365 +vt 0.050218 0.867764 +vt 0.047668 0.863932 +vt 0.021644 0.869129 +vt 0.017672 0.865101 +vt 0.016290 0.859620 +vt 0.011813 0.852791 +vt 0.010508 0.851911 +vt 0.011582 0.855025 +vt 0.008743 0.837820 +vt 0.008115 0.835339 +vt 0.007668 0.833768 +vt 0.007183 0.832042 +vt 0.005184 0.813812 +vt 0.005356 0.816470 +vt 0.005398 0.818548 +vt 0.006356 0.827374 +vt 0.006681 0.830593 +vt 0.005626 0.808427 +vt 0.005726 0.806679 +vt 0.006659 0.801728 +vt 0.046575 0.872551 +vt 0.046000 0.874419 +vt 0.040432 0.875387 +vt 0.040565 0.871882 +vt 0.039710 0.872849 +vt 0.036350 0.872709 +vt 0.033675 0.876245 +vt 0.032217 0.876881 +vt 0.025301 0.872514 +vt 0.030421 0.873990 +vt 0.027749 0.875611 +vt 0.022910 0.750908 +vt 0.024877 0.753917 +vt 0.026418 0.757460 +vt 0.022628 0.748115 +vt 0.017288 0.743165 +vt 0.014973 0.749067 +vt 0.021351 0.745099 +vt 0.013307 0.752545 +vt 0.013588 0.751576 +vt 0.028223 0.764360 +vt 0.011600 0.764382 +vt 0.007222 0.796430 +vt 0.007606 0.798144 +vt 0.006879 0.799583 +vt 0.007164 0.794890 +vt 0.007391 0.786647 +vt 0.007846 0.785045 +vt 0.007899 0.782546 +vt 0.008467 0.773152 +vt 0.009205 0.768674 +vt 0.063673 0.824276 +vt 0.062005 0.825162 +vt 0.063463 0.814899 +vt 0.062782 0.829232 +vt 0.062394 0.788868 +vt 0.061981 0.791125 +vt 0.063458 0.800582 +vt 0.063151 0.793100 +vt 0.037047 0.750648 +vt 0.057550 0.764707 +vt 0.058627 0.768282 +vt 0.044268 0.757482 +vt 0.050244 0.752106 +vt 0.051003 0.753616 +vt 0.054348 0.756434 +vt 0.056201 0.759724 +vt 0.042849 0.750679 +vt 0.061535 0.769634 +vt 0.062243 0.772628 +vt 0.060866 0.780449 +vt 0.034136 0.757411 +vt 0.033515 0.758530 +vt 0.029357 0.759760 +vt 0.028709 0.761787 +vt 0.058693 0.857765 +vt 0.059892 0.852373 +vt 0.055048 0.865110 +vt 0.057459 0.862932 +vt 0.062477 0.843489 +vt 0.061826 0.851756 +vt 0.062307 0.841575 +vt 0.061431 0.836063 +vt 0.062451 0.832370 +vt 0.052483 0.866278 +vt 0.048234 0.865136 +vt 0.051382 0.868391 +vt 0.049260 0.866461 +vt 0.019396 0.871228 +vt 0.015572 0.862287 +vt 0.017639 0.868029 +vt 0.014939 0.857773 +vt 0.007398 0.847634 +vt 0.009212 0.854327 +vt 0.007224 0.842606 +vt 0.006931 0.838593 +vt 0.011483 0.858068 +vt 0.005684 0.811481 +vt 0.005774 0.825405 +vt 0.005038 0.820847 +vt 0.005475 0.812440 +vt 0.005046 0.815285 +vt 0.005367 0.819414 +vt 0.006037 0.828607 +vt 0.006247 0.829801 +vt 0.006087 0.826458 +vt 0.005382 0.809966 +vt 0.005605 0.805409 +vt 0.006075 0.804732 +vt 0.048041 0.871556 +vt 0.045928 0.877344 +vt 0.040727 0.884130 +vt 0.038740 0.875211 +vt 0.038035 0.873437 +vt 0.035543 0.874703 +vt 0.034542 0.876084 +vt 0.023532 0.871232 +vt 0.028971 0.877706 +vt 0.024005 0.751230 +vt 0.024231 0.752778 +vt 0.025638 0.754547 +vt 0.027325 0.758987 +vt 0.026778 0.758361 +vt 0.026669 0.755791 +vt 0.027849 0.761615 +vt 0.020213 0.742416 +vt 0.015170 0.745548 +vt 0.011358 0.759648 +vt 0.011376 0.754139 +vt 0.013268 0.747613 +vt 0.028528 0.764341 +vt 0.006759 0.792530 +vt 0.007228 0.788561 +vt 0.007293 0.783402 +vt 0.007500 0.781862 +vt 0.007720 0.779410 +vt 0.008960 0.771348 +vt 0.008026 0.774364 +vt 0.062658 0.809874 +vt 0.063462 0.827187 +vt 0.065205 0.818760 +vt 0.064187 0.812800 +vt 0.063640 0.787984 +vt 0.062551 0.790105 +vt 0.063299 0.802825 +vt 0.063682 0.798590 +vt 0.063499 0.794337 +vt 0.040031 0.750107 +vt 0.045963 0.754430 +vt 0.049146 0.750001 +vt 0.053334 0.754330 +vt 0.059002 0.763844 +vt 0.058050 0.759177 +vt 0.041374 0.748230 +vt 0.044734 0.748869 +vt 0.059581 0.766679 +vt 0.061475 0.766852 +vt 0.062843 0.776895 +vt 0.062158 0.785682 +vt 0.035557 0.751316 +vt 0.033717 0.753991 +vt 0.031683 0.759025 +vt 0.029031 0.755399 +vt 0.028462 0.763371 +vt 0.032206 0.759219 +vt 0.032280 0.756850 +vt 0.060289 0.855088 +vt 0.060784 0.852141 +vt 0.053861 0.867868 +vt 0.059587 0.858842 +vt 0.059713 0.862581 +vt 0.063288 0.845813 +vt 0.064041 0.850520 +vt 0.062386 0.837781 +vt 0.050430 0.871187 +vt 0.022104 0.872011 +vt 0.015965 0.864992 +vt 0.015914 0.868017 +vt 0.013445 0.861027 +vt 0.011421 0.854221 +vt 0.006965 0.845394 +vt 0.007056 0.849488 +vt 0.010675 0.854989 +vt 0.008561 0.853195 +vt 0.006691 0.840410 +vt 0.006875 0.843938 +vt 0.006990 0.835440 +vt 0.006990 0.837362 +vt 0.012502 0.859297 +vt 0.010062 0.860950 +vt 0.006966 0.833008 +vt 0.006431 0.832229 +vt 0.005293 0.825425 +vt 0.005064 0.819755 +vt 0.005000 0.821804 +vt 0.004991 0.811876 +vt 0.004703 0.814349 +vt 0.004986 0.817278 +vt 0.005991 0.827363 +vt 0.006077 0.830924 +vt 0.004914 0.805909 +vt 0.005183 0.808358 +vt 0.005643 0.801242 +vt 0.005434 0.804462 +vt 0.047065 0.873692 +vt 0.046756 0.875730 +vt 0.045234 0.880646 +vt 0.038671 0.879350 +vt 0.043694 0.883881 +vt 0.036413 0.875077 +vt 0.037612 0.875644 +vt 0.034201 0.878043 +vt 0.024280 0.873183 +vt 0.024809 0.879484 +vt 0.027144 0.882316 +vt 0.024172 0.750195 +vt 0.024693 0.752068 +vt 0.025413 0.752447 +vt 0.027777 0.759679 +vt 0.026840 0.757666 +vt 0.027051 0.757508 +vt 0.022680 0.745086 +vt 0.018330 0.739676 +vt 0.013990 0.743620 +vt 0.011431 0.756945 +vt 0.010766 0.751434 +vt 0.010184 0.761200 +vt 0.009500 0.764692 +vt 0.006458 0.795191 +vt 0.006712 0.790003 +vt 0.006772 0.787163 +vt 0.006931 0.785671 +vt 0.007323 0.779884 +vt 0.007608 0.777369 +vt 0.007894 0.770697 +vt 0.007673 0.772642 +vt 0.008494 0.768715 +vt 0.063080 0.805260 +vt 0.064593 0.827407 +vt 0.065498 0.823786 +vt 0.064929 0.814976 +vt 0.063936 0.829847 +vt 0.063218 0.832109 +vt 0.063337 0.789317 +vt 0.063672 0.801905 +vt 0.064039 0.799664 +vt 0.063831 0.796915 +vt 0.063605 0.792583 +vt 0.039701 0.745518 +vt 0.046862 0.751155 +vt 0.049705 0.749242 +vt 0.051435 0.751031 +vt 0.053031 0.751131 +vt 0.056025 0.754050 +vt 0.056310 0.756491 +vt 0.060913 0.760267 +vt 0.058257 0.755725 +vt 0.042371 0.744828 +vt 0.043702 0.746662 +vt 0.063471 0.767161 +vt 0.063554 0.771716 +vt 0.061741 0.781705 +vt 0.033729 0.755988 +vt 0.033412 0.757100 +vt 0.030897 0.756690 +vt 0.028137 0.758762 +vt 0.028557 0.760145 +vt 0.060910 0.854250 +vt 0.055716 0.866705 +vt 0.054138 0.868576 +vt 0.058480 0.863791 +vt 0.064137 0.842874 +vt 0.063379 0.848596 +vt 0.063191 0.840730 +vt 0.062709 0.853635 +vt 0.061430 0.853280 +vt 0.051007 0.872585 +vt 0.019562 0.873021 +vt 0.017300 0.873113 +vt 0.013458 0.865948 +vt 0.012976 0.863622 +vt 0.006637 0.847412 +vt 0.006792 0.850597 +vt 0.009322 0.860360 +vt 0.006704 0.858599 +vt 0.006448 0.841895 +vt 0.006465 0.843289 +vt 0.006417 0.838369 +vt 0.010981 0.861873 +vt 0.005073 0.811029 +vt 0.004659 0.821079 +vt 0.004822 0.812869 +vt 0.004959 0.813680 +vt 0.004684 0.815481 +vt 0.004839 0.818401 +vt 0.005616 0.828851 +vt 0.005716 0.830428 +vt 0.004945 0.809525 +vt 0.006000 0.802719 +vt 0.005329 0.798672 +vt 0.048831 0.875785 +vt 0.046653 0.879813 +vt 0.046227 0.879557 +vt 0.036755 0.885650 +vt 0.042697 0.887888 +vt 0.036850 0.876605 +vt 0.035111 0.876664 +vt 0.033387 0.880462 +vt 0.030973 0.878280 +vt 0.024200 0.875580 +vt 0.023781 0.873598 +vt 0.029158 0.881664 +vt 0.024955 0.750280 +vt 0.026408 0.753386 +vt 0.027796 0.756453 +vt 0.023016 0.739957 +vt 0.023554 0.747420 +vt 0.020795 0.738676 +vt 0.016790 0.738668 +vt 0.016434 0.741211 +vt 0.013918 0.745221 +vt 0.009619 0.756238 +vt 0.012196 0.749112 +vt 0.009485 0.753448 +vt 0.008573 0.765535 +vt 0.005724 0.797883 +vt 0.005784 0.794332 +vt 0.006061 0.791147 +vt 0.006214 0.788196 +vt 0.006751 0.783213 +vt 0.006614 0.782031 +vt 0.007301 0.774195 +vt 0.006972 0.778035 +vt 0.063624 0.809578 +vt 0.063273 0.807206 +vt 0.066631 0.817547 +vt 0.065304 0.812541 +vt 0.066109 0.815190 +vt 0.063582 0.783541 +vt 0.063987 0.789364 +vt 0.063181 0.790495 +vt 0.064192 0.800915 +vt 0.063968 0.802634 +vt 0.064376 0.798389 +vt 0.064548 0.793493 +vt 0.064318 0.794977 +vt 0.036819 0.745650 +vt 0.047236 0.748856 +vt 0.047156 0.745770 +vt 0.054967 0.750681 +vt 0.060662 0.764304 +vt 0.061478 0.756518 +vt 0.041156 0.744950 +vt 0.044803 0.745591 +vt 0.063869 0.775139 +vt 0.063473 0.780158 +vt 0.034411 0.752657 +vt 0.033788 0.756849 +vt 0.033001 0.754252 +vt 0.030701 0.754336 +vt 0.032304 0.755259 +vt 0.061089 0.857030 +vt 0.057409 0.865946 +vt 0.052087 0.872133 +vt 0.060681 0.861045 +vt 0.058765 0.866501 +vt 0.065291 0.844076 +vt 0.063790 0.859858 +vt 0.050044 0.874684 +vt 0.021336 0.874473 +vt 0.014504 0.872180 +vt 0.006208 0.845767 +vt 0.006404 0.849249 +vt 0.008384 0.860107 +vt 0.006692 0.851981 +vt 0.007094 0.855231 +vt 0.005884 0.841237 +vt 0.006391 0.836926 +vt 0.005941 0.838750 +vt 0.009984 0.862956 +vt 0.006301 0.834475 +vt 0.005816 0.832080 +vt 0.005027 0.810229 +vt 0.004682 0.822461 +vt 0.004459 0.819342 +vt 0.004850 0.821823 +vt 0.004595 0.812434 +vt 0.004572 0.815112 +vt 0.004578 0.816761 +vt 0.004486 0.807240 +vt 0.004715 0.807894 +vt 0.004915 0.804648 +vt 0.005103 0.803228 +vt 0.004893 0.800375 +vt 0.047784 0.877338 +vt 0.044077 0.886954 +vt 0.046028 0.882361 +vt 0.037137 0.878945 +vt 0.038069 0.877167 +vt 0.036383 0.877583 +vt 0.032179 0.881255 +vt 0.034652 0.881164 +vt 0.035682 0.879244 +vt 0.031159 0.883223 +vt 0.025319 0.882744 +vt 0.022714 0.879780 +vt 0.028104 0.885352 +vt 0.024370 0.749065 +vt 0.026036 0.750766 +vt 0.027528 0.754133 +vt 0.024015 0.742339 +vt 0.025341 0.745922 +vt 0.018794 0.737981 +vt 0.014090 0.739017 +vt 0.013494 0.744322 +vt 0.011564 0.745964 +vt 0.009310 0.757989 +vt 0.009339 0.750191 +vt 0.008889 0.761137 +vt 0.008560 0.763443 +vt 0.005358 0.794802 +vt 0.006483 0.785321 +vt 0.007856 0.768656 +vt 0.006994 0.772538 +vt 0.007790 0.767045 +vt 0.064247 0.803484 +vt 0.065988 0.831436 +vt 0.067802 0.822051 +vt 0.065884 0.813196 +vt 0.064038 0.786398 +vt 0.064385 0.788090 +vt 0.063722 0.790416 +vt 0.064553 0.799955 +vt 0.064313 0.796800 +vt 0.064590 0.792379 +vt 0.034460 0.749549 +vt 0.038302 0.744829 +vt 0.045641 0.746847 +vt 0.051294 0.748095 +vt 0.047737 0.744685 +vt 0.052613 0.750162 +vt 0.054289 0.748802 +vt 0.056225 0.750532 +vt 0.060356 0.753868 +vt 0.062620 0.758917 +vt 0.041468 0.742861 +vt 0.043700 0.744524 +vt 0.064905 0.771925 +vt 0.033538 0.749543 +vt 0.031577 0.755376 +vt 0.030180 0.751054 +vt 0.060684 0.859186 +vt 0.061743 0.855029 +vt 0.057258 0.868192 +vt 0.055258 0.869807 +vt 0.052559 0.873355 +vt 0.060501 0.863224 +vt 0.064686 0.836320 +vt 0.065726 0.840905 +vt 0.066970 0.847452 +vt 0.066935 0.855456 +vt 0.062962 0.857958 +vt 0.018470 0.875930 +vt 0.020227 0.876030 +vt 0.012800 0.872502 +vt 0.011497 0.870465 +vt 0.014973 0.874942 +vt 0.005932 0.847330 +vt 0.006149 0.850839 +vt 0.009441 0.862142 +vt 0.008391 0.863972 +vt 0.006568 0.862629 +vt 0.006355 0.855080 +vt 0.005793 0.841654 +vt 0.006087 0.840326 +vt 0.005814 0.842209 +vt 0.005801 0.843164 +vt 0.006214 0.835775 +vt 0.006173 0.837776 +vt 0.010204 0.865321 +vt 0.005888 0.833144 +vt 0.004766 0.810517 +vt 0.004827 0.826569 +vt 0.005046 0.829277 +vt 0.003851 0.821366 +vt 0.004336 0.813932 +vt 0.005351 0.830406 +vt 0.005440 0.832716 +vt 0.004302 0.804778 +vt 0.004494 0.809362 +vt 0.004509 0.804120 +vt 0.004976 0.797219 +vt 0.004775 0.798776 +vt 0.047589 0.880587 +vt 0.035773 0.881250 +vt 0.043757 0.890144 +vt 0.036753 0.877840 +vt 0.032442 0.883528 +vt 0.034159 0.883511 +vt 0.029755 0.883994 +vt 0.023251 0.875884 +vt 0.025266 0.884390 +vt 0.024095 0.883321 +vt 0.023202 0.883284 +vt 0.026642 0.885643 +vt 0.027815 0.750503 +vt 0.025382 0.740387 +vt 0.023468 0.736067 +vt 0.016821 0.735939 +vt 0.019400 0.735239 +vt 0.012467 0.742524 +vt 0.008495 0.756329 +vt 0.008925 0.753935 +vt 0.010457 0.747016 +vt 0.008821 0.752423 +vt 0.007709 0.764267 +vt 0.005177 0.793228 +vt 0.005735 0.789839 +vt 0.005893 0.786140 +vt 0.006158 0.783692 +vt 0.006188 0.784999 +vt 0.006245 0.779599 +vt 0.007277 0.769430 +vt 0.006977 0.770733 +vt 0.006446 0.774933 +vt 0.006554 0.776230 +vt 0.065638 0.809182 +vt 0.064227 0.806691 +vt 0.068533 0.817353 +vt 0.067434 0.815795 +vt 0.065588 0.811311 +vt 0.065215 0.785574 +vt 0.064448 0.789534 +vt 0.064269 0.790447 +vt 0.064770 0.801524 +vt 0.065059 0.799228 +vt 0.065109 0.797290 +vt 0.064048 0.791406 +vt 0.065129 0.795993 +vt 0.065056 0.792684 +vt 0.034112 0.745860 +vt 0.039180 0.744462 +vt 0.037913 0.743014 +vt 0.039886 0.743902 +vt 0.048372 0.743693 +vt 0.045700 0.743923 +vt 0.053121 0.749231 +vt 0.054807 0.749427 +vt 0.057108 0.751478 +vt 0.055183 0.748404 +vt 0.061389 0.752864 +vt 0.059229 0.751697 +vt 0.063050 0.753487 +vt 0.043284 0.742881 +vt 0.044666 0.743271 +vt 0.066284 0.764112 +vt 0.066406 0.774703 +vt 0.065259 0.780029 +vt 0.032846 0.749434 +vt 0.031649 0.753849 +vt 0.031254 0.752302 +vt 0.032337 0.753034 +vt 0.061854 0.859359 +vt 0.053277 0.874149 +vt 0.050799 0.875457 +vt 0.061663 0.861419 +vt 0.060488 0.867463 +vt 0.065936 0.838150 +vt 0.067279 0.842196 +vt 0.064713 0.864249 +vt 0.063809 0.862411 +vt 0.049904 0.876577 +vt 0.022334 0.875587 +vt 0.017640 0.875026 +vt 0.010896 0.867884 +vt 0.017649 0.877145 +vt 0.012563 0.874231 +vt 0.005639 0.844879 +vt 0.005809 0.849231 +vt 0.009058 0.863253 +vt 0.007786 0.863211 +vt 0.006466 0.853402 +vt 0.006074 0.851758 +vt 0.005983 0.860219 +vt 0.006008 0.857332 +vt 0.005623 0.840494 +vt 0.005807 0.836768 +vt 0.009544 0.863329 +vt 0.009713 0.863970 +vt 0.005992 0.834360 +vt 0.004320 0.824733 +vt 0.004192 0.818284 +vt 0.004108 0.813359 +vt 0.004363 0.807564 +vt 0.004234 0.806219 +vt 0.004597 0.802036 +vt 0.004483 0.800154 +vt 0.048209 0.881917 +vt 0.046848 0.882883 +vt 0.045207 0.886831 +vt 0.035002 0.884221 +vt 0.036377 0.878683 +vt 0.045474 0.888582 +vt 0.034822 0.882446 +vt 0.030682 0.885666 +vt 0.021167 0.883450 +vt 0.029151 0.885848 +vt 0.027794 0.886886 +vt 0.027323 0.744600 +vt 0.021418 0.733844 +vt 0.014367 0.736495 +vt 0.017993 0.734908 +vt 0.011943 0.740759 +vt 0.010970 0.744364 +vt 0.008571 0.758394 +vt 0.008740 0.755272 +vt 0.008352 0.757007 +vt 0.009414 0.748447 +vt 0.008449 0.751413 +vt 0.008218 0.761872 +vt 0.007946 0.763062 +vt 0.004813 0.794833 +vt 0.005509 0.791434 +vt 0.005517 0.787442 +vt 0.005838 0.782867 +vt 0.005873 0.781235 +vt 0.006325 0.777749 +vt 0.007352 0.768115 +vt 0.006549 0.770977 +vt 0.006254 0.773001 +vt 0.007231 0.766242 +vt 0.064918 0.804626 +vt 0.069130 0.828775 +vt 0.070665 0.819107 +vt 0.067074 0.812664 +vt 0.064948 0.789210 +vt 0.065028 0.801215 +vt 0.064968 0.798145 +vt 0.065219 0.793932 +vt 0.065069 0.790794 +vt 0.064586 0.791499 +vt 0.035433 0.744139 +vt 0.038930 0.743484 +vt 0.036784 0.743589 +vt 0.051285 0.743031 +vt 0.046996 0.742659 +vt 0.045585 0.742095 +vt 0.052773 0.745218 +vt 0.059242 0.750519 +vt 0.056936 0.748873 +vt 0.060411 0.750915 +vt 0.064341 0.756811 +vt 0.039954 0.741867 +vt 0.042705 0.738177 +vt 0.066471 0.768778 +vt 0.033089 0.746953 +vt 0.029734 0.746758 +vt 0.031327 0.750583 +vt 0.056643 0.873324 +vt 0.058761 0.872260 +vt 0.054468 0.873121 +vt 0.053186 0.877395 +vt 0.061644 0.864480 +vt 0.060310 0.872032 +vt 0.066977 0.839850 +vt 0.069700 0.850143 +vt 0.068100 0.843319 +vt 0.067803 0.859562 +vt 0.063076 0.864423 +vt 0.050784 0.879091 +vt 0.018760 0.877739 +vt 0.020141 0.877670 +vt 0.010706 0.873867 +vt 0.010609 0.870294 +vt 0.014341 0.881734 +vt 0.012316 0.879900 +vt 0.005331 0.846788 +vt 0.005766 0.850940 +vt 0.008778 0.864438 +vt 0.007708 0.864883 +vt 0.005695 0.851615 +vt 0.005348 0.863866 +vt 0.005948 0.855880 +vt 0.005905 0.854222 +vt 0.005105 0.843227 +vt 0.005597 0.835540 +vt 0.005355 0.839353 +vt 0.005439 0.836926 +vt 0.009677 0.868153 +vt 0.009166 0.865415 +vt 0.004440 0.811215 +vt 0.004364 0.828556 +vt 0.005012 0.832489 +vt 0.004201 0.805125 +vt 0.004303 0.801321 +vt 0.003987 0.807670 +vt 0.004533 0.798209 +vt 0.049633 0.881638 +vt 0.046706 0.887057 +vt 0.031833 0.885281 +vt 0.031009 0.885831 +vt 0.024947 0.888772 +vt 0.024346 0.885441 +vt 0.023013 0.887002 +vt 0.020179 0.882003 +vt 0.021526 0.886546 +vt 0.027107 0.890553 +vt 0.026470 0.739515 +vt 0.026131 0.737709 +vt 0.023754 0.732703 +vt 0.012353 0.736484 +vt 0.016676 0.734484 +vt 0.014943 0.734414 +vt 0.018478 0.733065 +vt 0.019991 0.731494 +vt 0.012518 0.739569 +vt 0.008193 0.754560 +vt 0.007914 0.756677 +vt 0.008433 0.752262 +vt 0.008679 0.750162 +vt 0.009508 0.746396 +vt 0.009971 0.745030 +vt 0.007572 0.762874 +vt 0.004468 0.797219 +vt 0.005065 0.791393 +vt 0.004554 0.792333 +vt 0.005366 0.790549 +vt 0.005353 0.789096 +vt 0.005786 0.784485 +vt 0.005482 0.784705 +vt 0.005715 0.779861 +vt 0.005839 0.779196 +vt 0.006971 0.768648 +vt 0.006766 0.769553 +vt 0.007334 0.767292 +vt 0.005963 0.776968 +vt 0.005831 0.774852 +vt 0.007086 0.764750 +vt 0.067615 0.832977 +vt 0.070274 0.822849 +vt 0.068070 0.814360 +vt 0.071192 0.816811 +vt 0.066689 0.835755 +vt 0.068378 0.780850 +vt 0.064650 0.790202 +vt 0.064504 0.790960 +vt 0.065897 0.800125 +vt 0.065574 0.797967 +vt 0.065477 0.797003 +vt 0.066070 0.790749 +vt 0.034186 0.743440 +vt 0.039265 0.743120 +vt 0.036887 0.741968 +vt 0.038755 0.741730 +vt 0.052375 0.743354 +vt 0.050295 0.740866 +vt 0.047195 0.738992 +vt 0.054340 0.746045 +vt 0.056006 0.746397 +vt 0.062552 0.751463 +vt 0.061509 0.750869 +vt 0.059456 0.749950 +vt 0.065161 0.753072 +vt 0.039163 0.736662 +vt 0.044178 0.739095 +vt 0.041084 0.738821 +vt 0.067792 0.765373 +vt 0.067522 0.763329 +vt 0.067749 0.769705 +vt 0.031990 0.748282 +vt 0.031647 0.749883 +vt 0.031841 0.752180 +vt 0.031327 0.748592 +vt 0.055323 0.873642 +vt 0.054268 0.875645 +vt 0.051851 0.879275 +vt 0.062193 0.869897 +vt 0.066938 0.837445 +vt 0.068231 0.839867 +vt 0.068079 0.855450 +vt 0.066623 0.867812 +vt 0.018349 0.877324 +vt 0.009873 0.871339 +vt 0.009660 0.877529 +vt 0.009717 0.875290 +vt 0.004971 0.846931 +vt 0.008778 0.865045 +vt 0.005962 0.853358 +vt 0.005578 0.853081 +vt 0.005629 0.859445 +vt 0.004978 0.861074 +vt 0.005868 0.866948 +vt 0.007502 0.866592 +vt 0.005517 0.857114 +vt 0.004972 0.841327 +vt 0.009227 0.866843 +vt 0.004601 0.830875 +vt 0.003953 0.806170 +vt 0.003981 0.805115 +vt 0.004229 0.810620 +vt 0.004325 0.798068 +vt 0.049364 0.883889 +vt 0.047942 0.884711 +vt 0.029383 0.887316 +vt 0.019930 0.884407 +vt 0.028396 0.892131 +vt 0.027927 0.741606 +vt 0.029225 0.743251 +vt 0.024856 0.732963 +vt 0.022315 0.732613 +vt 0.013407 0.732746 +vt 0.017549 0.732944 +vt 0.018781 0.731758 +vt 0.020367 0.730813 +vt 0.010580 0.742931 +vt 0.011310 0.737150 +vt 0.008022 0.758924 +vt 0.007855 0.761319 +vt 0.008754 0.748413 +vt 0.008789 0.746967 +vt 0.008158 0.750287 +vt 0.008218 0.752210 +vt 0.010176 0.744019 +vt 0.007788 0.762340 +vt 0.007046 0.762706 +vt 0.004118 0.795156 +vt 0.004935 0.788306 +vt 0.005132 0.786373 +vt 0.005445 0.781924 +vt 0.005537 0.781040 +vt 0.006947 0.767122 +vt 0.006108 0.770955 +vt 0.006466 0.768880 +vt 0.005590 0.772807 +vt 0.006672 0.766954 +vt 0.067199 0.809039 +vt 0.066079 0.807673 +vt 0.068924 0.832975 +vt 0.067498 0.835125 +vt 0.071527 0.829966 +vt 0.069384 0.815558 +vt 0.072215 0.819493 +vt 0.071354 0.821066 +vt 0.068910 0.811798 +vt 0.066271 0.805537 +vt 0.034654 0.742070 +vt 0.033349 0.743978 +vt 0.036238 0.742399 +vt 0.032947 0.745455 +vt 0.037404 0.740621 +vt 0.052315 0.741688 +vt 0.048744 0.739951 +vt 0.051215 0.741007 +vt 0.046175 0.738910 +vt 0.054975 0.744665 +vt 0.053739 0.743098 +vt 0.057846 0.746904 +vt 0.057383 0.745830 +vt 0.063865 0.752208 +vt 0.060922 0.749232 +vt 0.059866 0.747900 +vt 0.066608 0.754652 +vt 0.037011 0.738775 +vt 0.043664 0.737683 +vt 0.041222 0.737354 +vt 0.069113 0.772892 +vt 0.032053 0.746982 +vt 0.031886 0.749562 +vt 0.030607 0.744870 +vt 0.059436 0.874926 +vt 0.054870 0.874427 +vt 0.053847 0.879703 +vt 0.061287 0.875379 +vt 0.067143 0.836414 +vt 0.068164 0.837395 +vt 0.069831 0.853163 +vt 0.069981 0.846374 +vt 0.069112 0.838688 +vt 0.064674 0.870966 +vt 0.068968 0.864433 +vt 0.070314 0.856371 +vt 0.051046 0.881558 +vt 0.017222 0.882991 +vt 0.009177 0.873106 +vt 0.011970 0.884439 +vt 0.010075 0.880405 +vt 0.005089 0.849772 +vt 0.005246 0.851821 +vt 0.008624 0.866269 +vt 0.004877 0.863530 +vt 0.005391 0.865427 +vt 0.005520 0.855788 +vt 0.004338 0.843776 +vt 0.005070 0.836250 +vt 0.005053 0.838708 +vt 0.009012 0.868635 +vt 0.009131 0.870967 +vt 0.004060 0.802714 +vt 0.003516 0.805668 +vt 0.003417 0.809703 +vt 0.048044 0.886084 +vt 0.046933 0.888953 +vt 0.026849 0.894187 +vt 0.021931 0.890469 +vt 0.018835 0.886682 +vt 0.018407 0.885430 +vt 0.028303 0.735400 +vt 0.027874 0.738514 +vt 0.025540 0.735142 +vt 0.024518 0.732041 +vt 0.021104 0.731512 +vt 0.023214 0.732071 +vt 0.012101 0.735606 +vt 0.014603 0.731839 +vt 0.016871 0.731696 +vt 0.018171 0.731957 +vt 0.019284 0.730761 +vt 0.019890 0.730378 +vt 0.010416 0.740896 +vt 0.007656 0.755643 +vt 0.007670 0.758217 +vt 0.008035 0.752978 +vt 0.008445 0.749355 +vt 0.009210 0.744983 +vt 0.007905 0.751722 +vt 0.009630 0.743715 +vt 0.007645 0.761268 +vt 0.004136 0.797715 +vt 0.004295 0.789965 +vt 0.004528 0.785335 +vt 0.005317 0.779966 +vt 0.005517 0.777303 +vt 0.005157 0.776733 +vt 0.006423 0.764406 +vt 0.070114 0.831790 +vt 0.072398 0.823598 +vt 0.069759 0.812173 +vt 0.070558 0.812596 +vt 0.072662 0.815566 +vt 0.069517 0.790448 +vt 0.066842 0.796447 +vt 0.067382 0.801173 +vt 0.034128 0.742065 +vt 0.035561 0.742662 +vt 0.049810 0.739731 +vt 0.050747 0.739872 +vt 0.045161 0.739927 +vt 0.046799 0.738489 +vt 0.047781 0.738859 +vt 0.058800 0.746612 +vt 0.056908 0.744355 +vt 0.055603 0.744255 +vt 0.061959 0.748937 +vt 0.063379 0.749841 +vt 0.065007 0.751036 +vt 0.066572 0.752053 +vt 0.037984 0.737008 +vt 0.040208 0.737364 +vt 0.042644 0.737173 +vt 0.044885 0.738365 +vt 0.042162 0.737526 +vt 0.069027 0.761748 +vt 0.069302 0.766964 +vt 0.068504 0.758234 +vt 0.071275 0.774654 +vt 0.069072 0.771127 +vt 0.057624 0.877126 +vt 0.056880 0.876420 +vt 0.055532 0.876654 +vt 0.071602 0.850721 +vt 0.072112 0.850373 +vt 0.069130 0.867892 +vt 0.066964 0.874276 +vt 0.013029 0.884787 +vt 0.011011 0.882327 +vt 0.016938 0.885133 +vt 0.009050 0.876446 +vt 0.009019 0.881599 +vt 0.008815 0.874860 +vt 0.004441 0.847749 +vt 0.005319 0.854512 +vt 0.004978 0.859251 +vt 0.004915 0.864528 +vt 0.004571 0.861119 +vt 0.007581 0.869139 +vt 0.005100 0.866841 +vt 0.008418 0.867544 +vt 0.004467 0.858507 +vt 0.003795 0.812327 +vt 0.003725 0.804569 +vt 0.003897 0.799889 +vt 0.053028 0.882295 +vt 0.023672 0.893097 +vt 0.019695 0.890269 +vt 0.029379 0.741184 +vt 0.030518 0.742716 +vt 0.026842 0.733506 +vt 0.026018 0.733483 +vt 0.025281 0.732448 +vt 0.023728 0.731466 +vt 0.022602 0.731236 +vt 0.012114 0.733449 +vt 0.015708 0.730167 +vt 0.013808 0.729851 +vt 0.018487 0.730425 +vt 0.021152 0.730298 +vt 0.009601 0.741863 +vt 0.010345 0.739281 +vt 0.007589 0.753614 +vt 0.007530 0.756639 +vt 0.007520 0.759263 +vt 0.008318 0.748623 +vt 0.008204 0.747772 +vt 0.008545 0.745673 +vt 0.009582 0.744568 +vt 0.008009 0.749029 +vt 0.007656 0.750136 +vt 0.007201 0.760633 +vt 0.003790 0.796968 +vt 0.004145 0.791417 +vt 0.006139 0.768426 +vt 0.005641 0.770719 +vt 0.004906 0.771917 +vt 0.006364 0.766217 +vt 0.006378 0.761813 +vt 0.067997 0.808321 +vt 0.069222 0.837079 +vt 0.071691 0.833262 +vt 0.072714 0.828346 +vt 0.072198 0.812723 +vt 0.073245 0.817978 +vt 0.069648 0.810438 +vt 0.070766 0.785103 +vt 0.067850 0.804595 +vt 0.034043 0.740110 +vt 0.035352 0.740137 +vt 0.033326 0.741804 +vt 0.031930 0.743835 +vt 0.053592 0.740926 +vt 0.051916 0.740265 +vt 0.049223 0.738917 +vt 0.050210 0.739525 +vt 0.051083 0.739803 +vt 0.045658 0.738276 +vt 0.047517 0.738256 +vt 0.048523 0.738935 +vt 0.054653 0.742469 +vt 0.058169 0.744679 +vt 0.055287 0.742843 +vt 0.060864 0.747378 +vt 0.059320 0.745185 +vt 0.068196 0.752575 +vt 0.037024 0.735545 +vt 0.038314 0.735649 +vt 0.039426 0.736082 +vt 0.040361 0.736303 +vt 0.041522 0.736511 +vt 0.070114 0.764451 +vt 0.068991 0.753625 +vt 0.071959 0.780959 +vt 0.058137 0.879252 +vt 0.061329 0.878417 +vt 0.054616 0.880803 +vt 0.063690 0.875629 +vt 0.071519 0.854136 +vt 0.071606 0.841440 +vt 0.071124 0.845559 +vt 0.070777 0.861467 +vt 0.070529 0.866052 +vt 0.065453 0.876697 +vt 0.008566 0.871724 +vt 0.014716 0.885698 +vt 0.013314 0.886656 +vt 0.011179 0.886125 +vt 0.008919 0.878833 +vt 0.008405 0.873278 +vt 0.004641 0.851342 +vt 0.004603 0.854192 +vt 0.004593 0.864908 +vt 0.004420 0.862565 +vt 0.006516 0.870661 +vt 0.005038 0.865651 +vt 0.005401 0.868636 +vt 0.004813 0.855812 +vt 0.008459 0.870539 +vt 0.003784 0.802726 +vt 0.003466 0.803229 +vt 0.049893 0.887512 +vt 0.051915 0.884896 +vt 0.048607 0.888179 +vt 0.021185 0.894985 +vt 0.019752 0.894023 +vt 0.016734 0.888736 +vt 0.029708 0.738010 +vt 0.027947 0.734262 +vt 0.024697 0.731344 +vt 0.011080 0.735613 +vt 0.012809 0.730742 +vt 0.016412 0.730192 +vt 0.017847 0.730810 +vt 0.019334 0.730389 +vt 0.018963 0.729986 +vt 0.019319 0.729417 +vt 0.009577 0.739960 +vt 0.009555 0.737271 +vt 0.007189 0.755466 +vt 0.007338 0.757323 +vt 0.008351 0.746741 +vt 0.008936 0.743742 +vt 0.007404 0.751953 +vt 0.003865 0.790592 +vt 0.004220 0.788310 +vt 0.005788 0.768584 +vt 0.005868 0.766575 +vt 0.005815 0.764232 +vt 0.069239 0.809624 +vt 0.070353 0.834121 +vt 0.073298 0.830780 +vt 0.073158 0.827320 +vt 0.070210 0.810320 +vt 0.070961 0.811303 +vt 0.072986 0.813724 +vt 0.073287 0.819975 +vt 0.074195 0.814413 +vt 0.070791 0.787720 +vt 0.069105 0.797999 +vt 0.069521 0.801382 +vt 0.032074 0.742685 +vt 0.036062 0.735471 +vt 0.052933 0.740823 +vt 0.054660 0.740859 +vt 0.051417 0.739894 +vt 0.052517 0.740198 +vt 0.049945 0.738918 +vt 0.050705 0.739257 +vt 0.047937 0.738225 +vt 0.057854 0.741671 +vt 0.056081 0.742256 +vt 0.062961 0.747777 +vt 0.064632 0.748740 +vt 0.061661 0.746574 +vt 0.060337 0.745462 +vt 0.066529 0.748284 +vt 0.037760 0.735628 +vt 0.038777 0.736029 +vt 0.071650 0.763305 +vt 0.070831 0.771663 +vt 0.070567 0.767070 +vt 0.069774 0.752938 +vt 0.073387 0.777836 +vt 0.056220 0.878064 +vt 0.057025 0.880736 +vt 0.059340 0.878409 +vt 0.062544 0.877414 +vt 0.070273 0.836944 +vt 0.071602 0.859839 +vt 0.073162 0.856143 +vt 0.072248 0.847356 +vt 0.070530 0.863833 +vt 0.069990 0.869549 +vt 0.066558 0.878417 +vt 0.008678 0.871236 +vt 0.012917 0.887692 +vt 0.009558 0.884323 +vt 0.015672 0.887302 +vt 0.008029 0.877668 +vt 0.007031 0.871843 +vt 0.004759 0.865792 +vt 0.003800 0.860554 +vt 0.007803 0.871345 +vt 0.004725 0.868258 +vt 0.004135 0.856259 +vt 0.003700 0.801893 +vt 0.053943 0.884611 +vt 0.048995 0.890741 +vt 0.017711 0.895310 +vt 0.016996 0.894499 +vt 0.030445 0.741400 +vt 0.029843 0.734750 +vt 0.027996 0.733250 +vt 0.029003 0.733364 +vt 0.031745 0.739856 +vt 0.026224 0.732090 +vt 0.023244 0.730320 +vt 0.011389 0.731514 +vt 0.010070 0.732895 +vt 0.014061 0.729235 +vt 0.015911 0.728947 +vt 0.017288 0.730220 +vt 0.012233 0.729372 +vt 0.018092 0.729609 +vt 0.018533 0.729888 +vt 0.009104 0.742339 +vt 0.008897 0.740903 +vt 0.007100 0.754057 +vt 0.006953 0.758578 +vt 0.008011 0.746513 +vt 0.008445 0.743841 +vt 0.007486 0.748179 +vt 0.007153 0.750095 +vt 0.003566 0.798584 +vt 0.003905 0.787664 +vt 0.004400 0.781828 +vt 0.004430 0.779832 +vt 0.005251 0.769243 +vt 0.005556 0.761653 +vt 0.069306 0.805248 +vt 0.072685 0.834490 +vt 0.073946 0.828737 +vt 0.071999 0.809996 +vt 0.073781 0.811501 +vt 0.073866 0.818038 +vt 0.071303 0.788895 +vt 0.071615 0.786499 +vt 0.072277 0.784349 +vt 0.070920 0.794649 +vt 0.032869 0.739225 +vt 0.034096 0.735946 +vt 0.031878 0.741267 +vt 0.034534 0.735118 +vt 0.053018 0.739822 +vt 0.054227 0.740437 +vt 0.051659 0.739454 +vt 0.052218 0.739646 +vt 0.048591 0.738292 +vt 0.051046 0.739248 +vt 0.055366 0.741424 +vt 0.058753 0.742091 +vt 0.056997 0.741974 +vt 0.060887 0.746038 +vt 0.060175 0.743095 +vt 0.068869 0.751221 +vt 0.036464 0.735041 +vt 0.036790 0.734665 +vt 0.038345 0.735220 +vt 0.070806 0.756711 +vt 0.071929 0.767884 +vt 0.071965 0.770735 +vt 0.073448 0.774026 +vt 0.073367 0.780554 +vt 0.056171 0.880390 +vt 0.058239 0.883561 +vt 0.061379 0.880642 +vt 0.062351 0.880502 +vt 0.063792 0.878848 +vt 0.072633 0.858247 +vt 0.073553 0.849119 +vt 0.071807 0.837049 +vt 0.072100 0.843470 +vt 0.071272 0.860795 +vt 0.071326 0.861810 +vt 0.068187 0.875933 +vt 0.071219 0.865867 +vt 0.072408 0.867776 +vt 0.067461 0.878325 +vt 0.065292 0.879437 +vt 0.013988 0.887617 +vt 0.009617 0.890815 +vt 0.012164 0.889104 +vt 0.014094 0.888879 +vt 0.007062 0.873942 +vt 0.008209 0.883886 +vt 0.004082 0.853151 +vt 0.004527 0.867072 +vt 0.003723 0.864387 +vt 0.005595 0.870742 +vt 0.004909 0.868965 +vt 0.003841 0.858374 +vt 0.003633 0.800010 +vt 0.051414 0.888180 +vt 0.052599 0.887363 +vt 0.048144 0.891968 +vt 0.019436 0.896537 +vt 0.018326 0.896731 +vt 0.016658 0.891612 +vt 0.031227 0.734426 +vt 0.027263 0.732843 +vt 0.009273 0.735650 +vt 0.011426 0.730160 +vt 0.014565 0.728712 +vt 0.012670 0.728201 +vt 0.016808 0.729403 +vt 0.008638 0.738614 +vt 0.008904 0.737544 +vt 0.006656 0.754331 +vt 0.008074 0.745091 +vt 0.008666 0.742541 +vt 0.006919 0.752214 +vt 0.006298 0.758476 +vt 0.005267 0.765332 +vt 0.070157 0.805991 +vt 0.074857 0.829780 +vt 0.074298 0.824513 +vt 0.073682 0.821345 +vt 0.071887 0.806153 +vt 0.073366 0.808979 +vt 0.074445 0.819146 +vt 0.074757 0.817618 +vt 0.070534 0.790227 +vt 0.073150 0.781829 +vt 0.070551 0.798799 +vt 0.070975 0.791196 +vt 0.070530 0.802803 +vt 0.035047 0.735007 +vt 0.053760 0.739741 +vt 0.054683 0.739911 +vt 0.052567 0.739507 +vt 0.055424 0.740329 +vt 0.058634 0.741102 +vt 0.057465 0.741182 +vt 0.056674 0.741131 +vt 0.055659 0.740800 +vt 0.062564 0.745428 +vt 0.064448 0.745955 +vt 0.065083 0.746284 +vt 0.061142 0.744758 +vt 0.068846 0.748100 +vt 0.035538 0.734584 +vt 0.036788 0.734961 +vt 0.072721 0.758622 +vt 0.074084 0.761233 +vt 0.070573 0.753731 +vt 0.074527 0.776038 +vt 0.074312 0.780201 +vt 0.059712 0.883851 +vt 0.063295 0.880837 +vt 0.055826 0.885410 +vt 0.064379 0.879611 +vt 0.072934 0.860833 +vt 0.074472 0.855222 +vt 0.074405 0.852388 +vt 0.074752 0.841659 +vt 0.075162 0.846464 +vt 0.071497 0.861151 +vt 0.070085 0.875400 +vt 0.071699 0.873047 +vt 0.067465 0.882899 +vt 0.065843 0.882484 +vt 0.007952 0.888465 +vt 0.013533 0.890248 +vt 0.015297 0.890080 +vt 0.006470 0.875544 +vt 0.007353 0.879665 +vt 0.005874 0.874359 +vt 0.003606 0.856248 +vt 0.004176 0.865802 +vt 0.005433 0.873163 +vt 0.004964 0.870821 +vt 0.004396 0.868077 +vt 0.004405 0.869074 +vt 0.050335 0.890293 +vt 0.054592 0.890261 +vt 0.049273 0.892361 +vt 0.017421 0.897843 +vt 0.015829 0.893117 +vt 0.030256 0.733178 +vt 0.028093 0.732457 +vt 0.028527 0.733047 +vt 0.010012 0.730962 +vt 0.009449 0.733007 +vt 0.016813 0.728838 +vt 0.014637 0.728028 +vt 0.017310 0.729265 +vt 0.011089 0.728957 +vt 0.011417 0.728440 +vt 0.017580 0.728753 +vt 0.008281 0.739561 +vt 0.007611 0.745616 +vt 0.007919 0.743163 +vt 0.007019 0.749422 +vt 0.006873 0.750323 +vt 0.074487 0.836108 +vt 0.075060 0.825824 +vt 0.074114 0.820250 +vt 0.076272 0.810577 +vt 0.074113 0.806888 +vt 0.075879 0.816792 +vt 0.072095 0.786926 +vt 0.073675 0.782104 +vt 0.072003 0.798203 +vt 0.071730 0.792864 +vt 0.071225 0.800809 +vt 0.032981 0.734748 +vt 0.033983 0.734311 +vt 0.060153 0.742304 +vt 0.060529 0.741593 +vt 0.056049 0.740710 +vt 0.061692 0.745290 +vt 0.063892 0.744899 +vt 0.065918 0.744838 +vt 0.061177 0.742320 +vt 0.067046 0.744340 +vt 0.071691 0.754206 +vt 0.074693 0.764488 +vt 0.070784 0.748719 +vt 0.070656 0.751693 +vt 0.074846 0.770618 +vt 0.074809 0.778321 +vt 0.058838 0.886989 +vt 0.060836 0.883905 +vt 0.061666 0.882391 +vt 0.062533 0.882451 +vt 0.072009 0.861786 +vt 0.074713 0.860648 +vt 0.075284 0.848218 +vt 0.074781 0.843859 +vt 0.072384 0.864105 +vt 0.068375 0.878556 +vt 0.069319 0.878786 +vt 0.072729 0.866501 +vt 0.072435 0.870805 +vt 0.064833 0.881170 +vt 0.006644 0.896700 +vt 0.007066 0.891571 +vt 0.011474 0.891600 +vt 0.014374 0.890188 +vt 0.005724 0.883773 +vt 0.006377 0.885722 +vt 0.004129 0.867883 +vt 0.003596 0.865451 +vt 0.005066 0.872011 +vt 0.004496 0.871061 +vt 0.051425 0.890385 +vt 0.052483 0.891112 +vt 0.018738 0.898141 +vt 0.015811 0.897722 +vt 0.018212 0.898659 +vt 0.014923 0.895487 +vt 0.031422 0.733824 +vt 0.008304 0.736107 +vt 0.009173 0.729287 +vt 0.008934 0.733339 +vt 0.016394 0.728437 +vt 0.017289 0.728823 +vt 0.009764 0.728674 +vt 0.010580 0.727752 +vt 0.008185 0.741262 +vt 0.008055 0.737759 +vt 0.008112 0.738716 +vt 0.006438 0.750804 +vt 0.007036 0.746490 +vt 0.006927 0.748978 +vt 0.072033 0.803135 +vt 0.075632 0.830539 +vt 0.076139 0.827049 +vt 0.074647 0.821594 +vt 0.076300 0.814331 +vt 0.074664 0.819573 +vt 0.075571 0.819246 +vt 0.072578 0.787313 +vt 0.072059 0.791209 +vt 0.073125 0.785037 +vt 0.072257 0.794515 +vt 0.055456 0.739649 +vt 0.060580 0.742604 +vt 0.056846 0.740313 +vt 0.062193 0.743496 +vt 0.064892 0.744138 +vt 0.068767 0.745188 +vt 0.074333 0.758239 +vt 0.073170 0.755224 +vt 0.076741 0.760575 +vt 0.070525 0.744938 +vt 0.071122 0.752831 +vt 0.075251 0.777041 +vt 0.075926 0.773156 +vt 0.075461 0.780192 +vt 0.074872 0.782258 +vt 0.060188 0.886689 +vt 0.063308 0.883741 +vt 0.056221 0.889641 +vt 0.074288 0.862679 +vt 0.075051 0.856891 +vt 0.075275 0.852370 +vt 0.075860 0.847890 +vt 0.075461 0.838994 +vt 0.076048 0.841744 +vt 0.075770 0.844404 +vt 0.071760 0.876534 +vt 0.070726 0.878167 +vt 0.073972 0.868515 +vt 0.073412 0.874573 +vt 0.065576 0.886859 +vt 0.068405 0.883567 +vt 0.064464 0.884539 +vt 0.006152 0.894719 +vt 0.011903 0.893956 +vt 0.006131 0.880217 +vt 0.005094 0.875010 +vt 0.003884 0.867556 +vt 0.003299 0.863826 +vt 0.004909 0.872753 +vt 0.004025 0.870220 +vt 0.012838 0.896519 +vt 0.032168 0.734281 +vt 0.032166 0.733395 +vt 0.008114 0.736843 +vt 0.008342 0.734797 +vt 0.008688 0.732010 +vt 0.007802 0.738668 +vt 0.007840 0.740544 +vt 0.007281 0.744352 +vt 0.007748 0.741268 +vt 0.075563 0.835623 +vt 0.076222 0.823838 +vt 0.075782 0.821442 +vt 0.072676 0.802740 +vt 0.076132 0.806134 +vt 0.077319 0.812261 +vt 0.076802 0.816096 +vt 0.076583 0.817992 +vt 0.072222 0.789428 +vt 0.073437 0.795245 +vt 0.072539 0.791780 +vt 0.072753 0.793142 +vt 0.032894 0.734178 +vt 0.055948 0.740063 +vt 0.063910 0.743396 +vt 0.065733 0.743585 +vt 0.067826 0.744151 +vt 0.076146 0.759525 +vt 0.071689 0.751696 +vt 0.075606 0.768162 +vt 0.076697 0.765867 +vt 0.072317 0.745988 +vt 0.075346 0.778048 +vt 0.076748 0.770732 +vt 0.059879 0.888354 +vt 0.060986 0.885127 +vt 0.061864 0.883833 +vt 0.063803 0.883033 +vt 0.056774 0.892471 +vt 0.073461 0.864003 +vt 0.075186 0.862138 +vt 0.075090 0.858995 +vt 0.075361 0.854789 +vt 0.076195 0.845993 +vt 0.073397 0.876739 +vt 0.070660 0.880772 +vt 0.074422 0.866236 +vt 0.073740 0.872186 +vt 0.066931 0.886938 +vt 0.067603 0.885785 +vt 0.005230 0.896364 +vt 0.005546 0.892279 +vt 0.005984 0.888733 +vt 0.005341 0.880115 +vt 0.005181 0.882887 +vt 0.005360 0.885589 +vt 0.004777 0.876777 +vt 0.004760 0.873525 +vt 0.003923 0.868805 +vt 0.003389 0.867351 +vt 0.003285 0.865409 +vt 0.004337 0.872893 +vt 0.008029 0.736313 +vt 0.007980 0.735775 +vt 0.009460 0.728173 +vt 0.008347 0.733121 +vt 0.007962 0.737077 +vt 0.006698 0.743996 +vt 0.006597 0.747112 +vt 0.007146 0.742507 +vt 0.007362 0.741062 +vt 0.076454 0.829551 +vt 0.076269 0.832635 +vt 0.077098 0.824483 +vt 0.073759 0.802740 +vt 0.076356 0.808174 +vt 0.074823 0.803823 +vt 0.077166 0.810645 +vt 0.076979 0.814263 +vt 0.076721 0.820090 +vt 0.074224 0.785939 +vt 0.074187 0.788152 +vt 0.073569 0.798714 +vt 0.075397 0.789519 +vt 0.061689 0.742143 +vt 0.062604 0.742538 +vt 0.066635 0.743128 +vt 0.064596 0.742608 +vt 0.068753 0.743584 +vt 0.069530 0.744576 +vt 0.076693 0.756462 +vt 0.075463 0.755081 +vt 0.073333 0.752749 +vt 0.077579 0.762677 +vt 0.072132 0.744635 +vt 0.076057 0.776349 +vt 0.076507 0.772510 +vt 0.076150 0.782675 +vt 0.076126 0.778689 +vt 0.060685 0.888103 +vt 0.060893 0.886594 +vt 0.063333 0.889153 +vt 0.062253 0.887494 +vt 0.075223 0.861051 +vt 0.074859 0.864150 +vt 0.075517 0.858082 +vt 0.075460 0.860245 +vt 0.075729 0.855615 +vt 0.075947 0.852152 +vt 0.075558 0.853397 +vt 0.076700 0.838003 +vt 0.076199 0.839640 +vt 0.076613 0.844139 +vt 0.076577 0.847210 +vt 0.069747 0.882131 +vt 0.072636 0.880830 +vt 0.071494 0.880171 +vt 0.074745 0.867793 +vt 0.074134 0.873957 +vt 0.074273 0.875414 +vt 0.074283 0.869700 +vt 0.068062 0.886435 +vt 0.004987 0.893850 +vt 0.004453 0.874748 +vt 0.003463 0.870132 +vt 0.003956 0.874410 +vt 0.007873 0.736684 +vt 0.007814 0.735029 +vt 0.008310 0.731003 +vt 0.008495 0.728177 +vt 0.007918 0.733483 +vt 0.008138 0.732314 +vt 0.009359 0.727226 +vt 0.007600 0.737240 +vt 0.007531 0.739733 +vt 0.077087 0.828294 +vt 0.076605 0.835752 +vt 0.076337 0.821790 +vt 0.077089 0.822030 +vt 0.077514 0.826568 +vt 0.077262 0.809081 +vt 0.077000 0.807094 +vt 0.075348 0.802145 +vt 0.077682 0.810599 +vt 0.077545 0.813792 +vt 0.077470 0.817376 +vt 0.077715 0.815239 +vt 0.077088 0.818557 +vt 0.074022 0.789266 +vt 0.073781 0.792393 +vt 0.074322 0.796476 +vt 0.063345 0.742296 +vt 0.062064 0.741539 +vt 0.069821 0.744030 +vt 0.074049 0.752589 +vt 0.073143 0.747933 +vt 0.077076 0.768747 +vt 0.078265 0.765500 +vt 0.078886 0.758571 +vt 0.078639 0.755190 +vt 0.070541 0.743936 +vt 0.073076 0.745176 +vt 0.076203 0.774327 +vt 0.077187 0.773498 +vt 0.076492 0.780254 +vt 0.060112 0.890075 +vt 0.061521 0.885655 +vt 0.075533 0.861231 +vt 0.075835 0.863466 +vt 0.075890 0.856906 +vt 0.075622 0.859109 +vt 0.076205 0.854045 +vt 0.076365 0.849197 +vt 0.076613 0.840022 +vt 0.077076 0.842550 +vt 0.077095 0.846127 +vt 0.076417 0.848051 +vt 0.068971 0.884652 +vt 0.073536 0.879389 +vt 0.071023 0.882544 +vt 0.075139 0.866384 +vt 0.074682 0.872077 +vt 0.074152 0.877893 +vt 0.074423 0.870971 +vt 0.067452 0.888895 +vt 0.004666 0.895376 +vt 0.005238 0.890080 +vt 0.004749 0.891836 +vt 0.005078 0.887174 +vt 0.004849 0.879502 +vt 0.004720 0.881542 +vt 0.004741 0.884512 +vt 0.004163 0.876387 +vt 0.003727 0.871151 +vt 0.003507 0.874439 +vt 0.007715 0.736029 +vt 0.008392 0.729665 +vt 0.007532 0.738285 +vt 0.006770 0.741456 +vt 0.007004 0.739556 +vt 0.007290 0.739396 +vt 0.077251 0.829805 +vt 0.076873 0.830854 +vt 0.077018 0.834714 +vt 0.077701 0.823146 +vt 0.077896 0.824564 +vt 0.074632 0.800320 +vt 0.077227 0.805406 +vt 0.077103 0.804248 +vt 0.078314 0.811543 +vt 0.078172 0.813413 +vt 0.077561 0.818965 +vt 0.075628 0.787500 +vt 0.076244 0.783845 +vt 0.074855 0.794364 +vt 0.074670 0.797868 +vt 0.075699 0.791227 +vt 0.076303 0.752510 +vt 0.074377 0.747871 +vt 0.077951 0.773724 +vt 0.078738 0.762557 +vt 0.077800 0.752488 +vt 0.071819 0.744002 +vt 0.073406 0.746062 +vt 0.073522 0.744665 +vt 0.076747 0.776194 +vt 0.077339 0.780296 +vt 0.076913 0.778357 +vt 0.061360 0.887750 +vt 0.075804 0.861947 +vt 0.075384 0.864605 +vt 0.075036 0.865320 +vt 0.076056 0.858407 +vt 0.076103 0.859706 +vt 0.076202 0.855665 +vt 0.076736 0.850495 +vt 0.076943 0.836635 +vt 0.076958 0.841111 +vt 0.077422 0.844176 +vt 0.076989 0.847358 +vt 0.076802 0.848140 +vt 0.071806 0.883355 +vt 0.073716 0.881457 +vt 0.075411 0.867506 +vt 0.075211 0.869066 +vt 0.074997 0.873833 +vt 0.074794 0.877236 +vt 0.074741 0.870149 +vt 0.068466 0.889996 +vt 0.069286 0.887682 +vt 0.004732 0.894049 +vt 0.004494 0.897505 +vt 0.004273 0.892778 +vt 0.004813 0.886915 +vt 0.004350 0.877723 +vt 0.004666 0.883061 +vt 0.003244 0.872487 +vt 0.004047 0.877748 +vt 0.007509 0.735696 +vt 0.007541 0.734121 +vt 0.007795 0.731660 +vt 0.007953 0.730304 +vt 0.007840 0.729175 +vt 0.007349 0.738201 +vt 0.006448 0.740317 +vt 0.077650 0.828826 +vt 0.077563 0.827904 +vt 0.076852 0.832288 +vt 0.077067 0.833548 +vt 0.077171 0.835878 +vt 0.076727 0.821229 +vt 0.078062 0.821826 +vt 0.078204 0.825712 +vt 0.077954 0.807011 +vt 0.076936 0.803071 +vt 0.075298 0.799560 +vt 0.078284 0.809411 +vt 0.078380 0.816770 +vt 0.077721 0.820397 +vt 0.076002 0.786033 +vt 0.076611 0.784478 +vt 0.075232 0.796279 +vt 0.075943 0.789259 +vt 0.078797 0.770624 +vt 0.078580 0.768418 +vt 0.079377 0.764209 +vt 0.079154 0.760491 +vt 0.079762 0.757051 +vt 0.078710 0.752219 +vt 0.073361 0.745344 +vt 0.077684 0.775594 +vt 0.077490 0.782480 +vt 0.075998 0.860970 +vt 0.075809 0.864905 +vt 0.076448 0.856983 +vt 0.076855 0.855605 +vt 0.076961 0.849197 +vt 0.077183 0.839873 +vt 0.077358 0.836934 +vt 0.077411 0.842024 +vt 0.072838 0.885788 +vt 0.074066 0.879108 +vt 0.074220 0.880205 +vt 0.073508 0.883234 +vt 0.071863 0.885513 +vt 0.075425 0.865449 +vt 0.075812 0.866301 +vt 0.075538 0.872256 +vt 0.074786 0.870910 +vt 0.075201 0.875881 +vt 0.074662 0.878364 +vt 0.068091 0.892498 +vt 0.004368 0.893980 +vt 0.004243 0.896912 +vt 0.004409 0.890408 +vt 0.004632 0.889072 +vt 0.004517 0.888063 +vt 0.004445 0.880636 +vt 0.004302 0.879547 +vt 0.004299 0.882433 +vt 0.004406 0.884617 +vt 0.003520 0.878541 +vt 0.007988 0.728120 +vt 0.006621 0.739333 +vt 0.006245 0.741156 +vt 0.077524 0.831253 +vt 0.077914 0.829950 +vt 0.078046 0.827881 +vt 0.077472 0.835066 +vt 0.078317 0.823220 +vt 0.078140 0.826758 +vt 0.077663 0.803865 +vt 0.077890 0.805185 +vt 0.076540 0.800973 +vt 0.078627 0.812595 +vt 0.078993 0.809862 +vt 0.078664 0.815040 +vt 0.078148 0.818236 +vt 0.078141 0.819375 +vt 0.076556 0.788516 +vt 0.075435 0.794563 +vt 0.076424 0.791394 +vt 0.076773 0.750291 +vt 0.073912 0.745149 +vt 0.078690 0.772745 +vt 0.079319 0.766776 +vt 0.079670 0.761968 +vt 0.079595 0.759137 +vt 0.079867 0.754634 +vt 0.078156 0.750479 +vt 0.079665 0.752753 +vt 0.073424 0.744182 +vt 0.077773 0.778187 +vt 0.078644 0.775609 +vt 0.078945 0.779594 +vt 0.076627 0.858513 +vt 0.076351 0.859035 +vt 0.076865 0.853791 +vt 0.077607 0.839007 +vt 0.077576 0.837891 +vt 0.077425 0.840965 +vt 0.070147 0.888501 +vt 0.074418 0.879102 +vt 0.074393 0.881856 +vt 0.073975 0.882506 +vt 0.076127 0.868261 +vt 0.075119 0.870292 +vt 0.075101 0.871227 +vt 0.075484 0.873539 +vt 0.075561 0.874567 +vt 0.075105 0.878367 +vt 0.068715 0.891773 +vt 0.004189 0.895355 +vt 0.003853 0.897743 +vt 0.003974 0.890955 +vt 0.004228 0.887047 +vt 0.004125 0.881086 +vt 0.004463 0.886625 +vt 0.002793 0.873744 +vt 0.003844 0.878315 +vt 0.003159 0.876216 +vt 0.007233 0.734982 +vt 0.007304 0.732820 +vt 0.007647 0.730335 +vt 0.006288 0.737450 +vt 0.006071 0.739738 +vt 0.006445 0.735705 +vt 0.078132 0.829296 +vt 0.077611 0.832812 +vt 0.077710 0.836021 +vt 0.078630 0.820390 +vt 0.078690 0.807997 +vt 0.078489 0.805209 +vt 0.077770 0.801162 +vt 0.076985 0.798411 +vt 0.078952 0.813406 +vt 0.078991 0.811976 +vt 0.078600 0.818648 +vt 0.077749 0.786059 +vt 0.076173 0.792534 +vt 0.076264 0.795371 +vt 0.074668 0.745748 +vt 0.079232 0.768980 +vt 0.079162 0.771499 +vt 0.078902 0.768133 +vt 0.080146 0.765003 +vt 0.080056 0.763447 +vt 0.079719 0.760350 +vt 0.080184 0.758759 +vt 0.080522 0.755695 +vt 0.079221 0.750262 +vt 0.074622 0.744395 +vt 0.078646 0.783070 +vt 0.076650 0.856661 +vt 0.071871 0.887754 +vt 0.073666 0.885824 +vt 0.074889 0.880827 +vt 0.074265 0.883540 +vt 0.071001 0.889451 +vt 0.075789 0.869355 +vt 0.075492 0.869880 +vt 0.075487 0.870771 +vt 0.074915 0.879383 +vt 0.003599 0.892901 +vt 0.003944 0.896395 +vt 0.004235 0.889286 +vt 0.004043 0.888306 +vt 0.003942 0.889578 +vt 0.003847 0.882398 +vt 0.004158 0.884175 +vt 0.004086 0.885653 +vt 0.003844 0.880428 +vt 0.002637 0.876536 +vt 0.007404 0.730894 +vt 0.007511 0.729947 +vt 0.005687 0.739034 +vt 0.077984 0.831916 +vt 0.078813 0.806638 +vt 0.078145 0.804400 +vt 0.078544 0.803321 +vt 0.079353 0.807498 +vt 0.077497 0.790080 +vt 0.077601 0.748518 +vt 0.076439 0.748207 +vt 0.079335 0.770401 +vt 0.079171 0.773849 +vt 0.079323 0.772515 +vt 0.079972 0.767624 +vt 0.080348 0.762263 +vt 0.079937 0.759680 +vt 0.080326 0.760452 +vt 0.080681 0.757388 +vt 0.079984 0.753209 +vt 0.080360 0.754605 +vt 0.080543 0.750909 +vt 0.078769 0.777371 +vt 0.079848 0.782431 +vt 0.069882 0.891725 +vt 0.072417 0.889438 +vt 0.073355 0.888736 +vt 0.074597 0.879860 +vt 0.074804 0.881816 +vt 0.003525 0.890883 +vt 0.003853 0.886827 +vt 0.002911 0.879704 +vt 0.007027 0.731669 +vt 0.007408 0.729687 +vt 0.005862 0.736909 +vt 0.079012 0.805101 +vt 0.078046 0.797966 +vt 0.078735 0.801536 +vt 0.077313 0.796273 +vt 0.078306 0.788066 +vt 0.079197 0.784708 +vt 0.077550 0.793690 +vt 0.075621 0.746176 +vt 0.079799 0.769667 +vt 0.079488 0.775020 +vt 0.079222 0.773196 +vt 0.079696 0.771205 +vt 0.080517 0.765973 +vt 0.080320 0.763943 +vt 0.080431 0.763305 +vt 0.080864 0.758815 +vt 0.080407 0.752532 +vt 0.080329 0.753653 +vt 0.080819 0.754414 +vt 0.081058 0.756351 +vt 0.078839 0.748430 +vt 0.079974 0.749049 +vt 0.075605 0.745152 +vt 0.079536 0.776830 +vt 0.080316 0.780277 +vt 0.070992 0.891658 +vt 0.074277 0.887692 +vt 0.074537 0.884841 +vt 0.074881 0.882726 +vt 0.003489 0.888096 +vt 0.003272 0.882182 +vt 0.003202 0.884561 +vt 0.003659 0.885272 +vt 0.006672 0.733420 +vt 0.005788 0.736201 +vt 0.078731 0.799825 +vt 0.079352 0.802429 +vt 0.078898 0.786669 +vt 0.078543 0.789499 +vt 0.078266 0.791464 +vt 0.076575 0.746482 +vt 0.079647 0.773796 +vt 0.079469 0.773201 +vt 0.079976 0.772524 +vt 0.080708 0.765010 +vt 0.080473 0.768089 +vt 0.080610 0.764030 +vt 0.080801 0.762870 +vt 0.080806 0.761559 +vt 0.081246 0.757345 +vt 0.081199 0.755328 +vt 0.078079 0.748162 +vt 0.079364 0.749228 +vt 0.080847 0.752023 +vt 0.081099 0.748978 +vt 0.079714 0.778082 +vt 0.080284 0.784111 +vt 0.080252 0.778513 +vt 0.080684 0.781804 +vt 0.072273 0.892382 +vt 0.073973 0.890661 +vt 0.074753 0.886149 +vt 0.074848 0.883923 +vt 0.003064 0.888978 +vt 0.003262 0.886619 +vt 0.002215 0.881006 +vt 0.079126 0.803494 +vt 0.077864 0.795842 +vt 0.078795 0.798384 +vt 0.079266 0.800891 +vt 0.078922 0.788051 +vt 0.079738 0.785889 +vt 0.078492 0.793123 +vt 0.077618 0.747221 +vt 0.080120 0.771288 +vt 0.080144 0.774253 +vt 0.079857 0.775534 +vt 0.080969 0.765959 +vt 0.081153 0.760233 +vt 0.081713 0.758251 +vt 0.081023 0.753020 +vt 0.081547 0.754176 +vt 0.081615 0.756200 +vt 0.081353 0.751697 +vt 0.081638 0.750158 +vt 0.080750 0.747848 +vt 0.080097 0.777185 +vt 0.080260 0.783095 +vt 0.080766 0.779218 +vt 0.081359 0.779876 +vt 0.080403 0.782698 +vt 0.073413 0.890420 +vt 0.078351 0.796316 +vt 0.078722 0.797257 +vt 0.079156 0.798951 +vt 0.079370 0.799761 +vt 0.078250 0.794840 +vt 0.079503 0.787293 +vt 0.078982 0.790616 +vt 0.079431 0.788846 +vt 0.078735 0.791867 +vt 0.076834 0.746039 +vt 0.076345 0.745497 +vt 0.080288 0.775890 +vt 0.080538 0.771183 +vt 0.081261 0.762863 +vt 0.081097 0.767658 +vt 0.081610 0.755155 +vt 0.078250 0.747372 +vt 0.079839 0.747884 +vt 0.081711 0.748161 +vt 0.079981 0.776673 +vt 0.080431 0.785861 +vt 0.080436 0.783209 +vt 0.081076 0.778050 +vt 0.080712 0.783017 +vt 0.072999 0.891822 +vt 0.002746 0.885695 +vt 0.002246 0.884719 +vt 0.079356 0.797783 +vt 0.080048 0.786770 +vt 0.078815 0.794465 +vt 0.078877 0.792461 +vt 0.076669 0.745860 +vt 0.080834 0.769594 +vt 0.080884 0.772578 +vt 0.081643 0.767710 +vt 0.081946 0.760521 +vt 0.082381 0.756301 +vt 0.081949 0.752142 +vt 0.082009 0.754886 +vt 0.079217 0.747559 +vt 0.082058 0.748555 +vt 0.080130 0.747516 +vt 0.080728 0.776859 +vt 0.080831 0.784954 +vt 0.072612 0.893044 +vt 0.074371 0.890749 +vt 0.073231 0.893062 +vt 0.002177 0.887318 +vt 0.078624 0.795522 +vt 0.078755 0.796289 +vt 0.079083 0.796636 +vt 0.079515 0.798920 +vt 0.079767 0.799044 +vt 0.079970 0.787712 +vt 0.079863 0.790419 +vt 0.079222 0.791804 +vt 0.079162 0.793171 +vt 0.080819 0.774317 +vt 0.081191 0.770589 +vt 0.082037 0.763462 +vt 0.082403 0.758272 +vt 0.079961 0.747566 +vt 0.082378 0.750116 +vt 0.080669 0.788164 +vt 0.081472 0.776094 +vt 0.072063 0.893766 +vt 0.074349 0.891633 +vt 0.074046 0.892794 +vt 0.079524 0.796175 +vt 0.080303 0.788596 +vt 0.079423 0.794553 +vt 0.079037 0.795609 +vt 0.081030 0.775278 +vt 0.081191 0.774124 +vt 0.081544 0.772530 +vt 0.072538 0.894032 +vt 0.080771 0.789518 +vt 0.079847 0.792517 +vt 0.079639 0.793471 +vt 0.081499 0.774214 +vt 0.080034 0.795205 +vt 0.080573 0.791887 +vt 0.081850 0.772512 +vt 0.189424 0.828268 +vt 0.190173 0.829010 +vt 0.189267 0.829523 +vt 0.190119 0.827661 +vt 0.189876 0.830063 +vt 0.188759 0.828553 +vt 0.190557 0.828180 +vt 0.190017 0.826824 +vt 0.188895 0.830867 +vt 0.190451 0.829840 +vt 0.188906 0.827585 +vt 0.188021 0.829433 +vt 0.190745 0.826919 +vt 0.191173 0.829094 +vt 0.189199 0.826851 +vt 0.190177 0.830579 +vt 0.188344 0.827624 +vt 0.189056 0.825138 +vt 0.190021 0.825658 +vt 0.190030 0.831487 +vt 0.186932 0.831262 +vt 0.190697 0.830108 +vt 0.187516 0.827633 +vt 0.191781 0.827163 +vt 0.187968 0.825965 +vt 0.190767 0.825129 +vt 0.190849 0.830633 +vt 0.189436 0.832331 +vt 0.186144 0.832716 +vt 0.187203 0.830114 +vt 0.187213 0.829210 +vt 0.192298 0.828495 +vt 0.191973 0.826029 +vt 0.187841 0.824135 +vt 0.190893 0.831493 +vt 0.186441 0.830152 +vt 0.191930 0.830639 +vt 0.186596 0.828290 +vt 0.187350 0.826040 +vt 0.192078 0.829493 +vt 0.192563 0.827288 +vt 0.186481 0.825258 +vt 0.190942 0.824056 +vt 0.191311 0.824792 +vt 0.191954 0.832182 +vt 0.185930 0.834666 +vt 0.186834 0.826537 +vt 0.192855 0.829492 +vt 0.193250 0.828112 +vt 0.193089 0.826257 +vt 0.191678 0.823765 +vt 0.192229 0.825303 +vt 0.186168 0.826724 +vt 0.193864 0.830523 +vt 0.187173 0.835470 +vt 0.194032 0.829350 +vt 0.194242 0.827000 +vt 0.192952 0.824581 +vt 0.193288 0.832340 +vt 0.185571 0.836830 +vt 0.190359 0.835573 +vt 0.194001 0.828612 +vt 0.193696 0.825166 +vt 0.193066 0.835195 +vt 0.195078 0.831843 +vt 0.187003 0.838065 +vt 0.188360 0.837366 +vt 0.194732 0.828971 +vt 0.194681 0.824197 +vt 0.195336 0.830645 +vt 0.186235 0.838920 +vt 0.190573 0.837059 +vt 0.195133 0.829975 +vt 0.195898 0.825780 +vt 0.195193 0.827901 +vt 0.197131 0.832091 +vt 0.196663 0.830259 +vt 0.187231 0.839039 +vt 0.189427 0.838509 +vt 0.192542 0.837400 +vt 0.195751 0.829166 +vt 0.195481 0.828583 +vt 0.198373 0.832958 +vt 0.195764 0.830118 +vt 0.186197 0.839998 +vt 0.188274 0.838632 +vt 0.191403 0.839009 +vt 0.194702 0.836830 +vt 0.195881 0.827638 +vt 0.197039 0.824644 +vt 0.199302 0.832216 +vt 0.195694 0.834568 +vt 0.198221 0.830580 +vt 0.185673 0.840672 +vt 0.186535 0.840832 +vt 0.187525 0.840217 +vt 0.190411 0.840050 +vt 0.188649 0.840614 +vt 0.193569 0.837889 +vt 0.192811 0.838393 +vt 0.196751 0.826977 +vt 0.199385 0.831360 +vt 0.199871 0.834265 +vt 0.199373 0.834289 +vt 0.197978 0.829706 +vt 0.196601 0.828680 +vt 0.191327 0.840393 +vt 0.197630 0.836442 +vt 0.193533 0.838991 +vt 0.198080 0.826696 +vt 0.201023 0.832370 +vt 0.199469 0.830005 +vt 0.198840 0.829505 +vt 0.197256 0.829417 +vt 0.185503 0.843292 +vt 0.187230 0.841865 +vt 0.190419 0.841464 +vt 0.197143 0.839401 +vt 0.192135 0.840180 +vt 0.197383 0.828354 +vt 0.197525 0.823949 +vt 0.201702 0.830985 +vt 0.204311 0.832568 +vt 0.200500 0.837763 +vt 0.200239 0.830347 +vt 0.198489 0.828821 +vt 0.197930 0.828938 +vt 0.188352 0.842908 +vt 0.191589 0.842858 +vt 0.192863 0.839394 +vt 0.194442 0.840127 +vt 0.199224 0.824427 +vt 0.198152 0.827910 +vt 0.201010 0.830501 +vt 0.202372 0.831784 +vt 0.204306 0.834058 +vt 0.204360 0.835035 +vt 0.200126 0.829722 +vt 0.199476 0.829063 +vt 0.199108 0.828269 +vt 0.186927 0.844444 +vt 0.190274 0.843395 +vt 0.199216 0.841024 +vt 0.193140 0.840012 +vt 0.197107 0.840788 +vt 0.192143 0.841565 +vt 0.198675 0.827062 +vt 0.202083 0.829720 +vt 0.203060 0.830547 +vt 0.206346 0.832858 +vt 0.203679 0.831780 +vt 0.203686 0.839473 +vt 0.200564 0.829306 +vt 0.200057 0.828972 +vt 0.201062 0.829535 +vt 0.198642 0.828075 +vt 0.185942 0.846410 +vt 0.190371 0.845333 +vt 0.202042 0.843734 +vt 0.194199 0.841856 +vt 0.192635 0.842311 +vt 0.199672 0.826689 +vt 0.208214 0.834190 +vt 0.206697 0.831402 +vt 0.205325 0.830947 +vt 0.206863 0.837958 +vt 0.200932 0.828117 +vt 0.188402 0.845652 +vt 0.192175 0.843431 +vt 0.197287 0.844561 +vt 0.195792 0.843465 +vt 0.200483 0.824680 +vt 0.201575 0.828410 +vt 0.203004 0.828999 +vt 0.204196 0.830523 +vt 0.208036 0.832000 +vt 0.208918 0.836334 +vt 0.207543 0.841979 +vt 0.201026 0.828705 +vt 0.187743 0.847605 +vt 0.191454 0.845736 +vt 0.189135 0.846839 +vt 0.200303 0.848424 +vt 0.193991 0.844360 +vt 0.202600 0.824744 +vt 0.201527 0.827003 +vt 0.202309 0.828531 +vt 0.203870 0.829273 +vt 0.210152 0.832992 +vt 0.208633 0.830320 +vt 0.206298 0.830940 +vt 0.209800 0.835749 +vt 0.204891 0.829520 +vt 0.209465 0.839151 +vt 0.206002 0.847321 +vt 0.183439 0.850157 +vt 0.192688 0.845074 +vt 0.190846 0.845592 +vt 0.190270 0.846590 +vt 0.195363 0.848524 +vt 0.194155 0.846004 +vt 0.202009 0.826180 +vt 0.202175 0.827357 +vt 0.202798 0.827840 +vt 0.203465 0.827720 +vt 0.211906 0.834861 +vt 0.210450 0.831776 +vt 0.207381 0.830316 +vt 0.210164 0.830702 +vt 0.206768 0.830841 +vt 0.206096 0.830314 +vt 0.210844 0.837034 +vt 0.210476 0.840949 +vt 0.211147 0.839075 +vt 0.210991 0.844885 +vt 0.188742 0.850257 +vt 0.189610 0.848051 +vt 0.192833 0.846893 +vt 0.197138 0.850083 +vt 0.194874 0.847473 +vt 0.203365 0.851803 +vt 0.202715 0.826490 +vt 0.204367 0.824407 +vt 0.204438 0.827881 +vt 0.212152 0.833364 +vt 0.211508 0.831916 +vt 0.208001 0.829247 +vt 0.210027 0.829319 +vt 0.206539 0.830606 +vt 0.213028 0.836059 +vt 0.205083 0.828572 +vt 0.210693 0.848734 +vt 0.188093 0.853064 +vt 0.191201 0.848391 +vt 0.198483 0.852272 +vt 0.195975 0.851460 +vt 0.193132 0.849745 +vt 0.207240 0.850980 +vt 0.193291 0.848170 +vt 0.203706 0.826737 +vt 0.204078 0.826240 +vt 0.206237 0.824406 +vt 0.215040 0.834433 +vt 0.211100 0.830878 +vt 0.206886 0.830383 +vt 0.209197 0.828533 +vt 0.207501 0.829653 +vt 0.210673 0.829748 +vt 0.206599 0.829944 +vt 0.215444 0.835771 +vt 0.212118 0.837622 +vt 0.206128 0.829294 +vt 0.212747 0.842630 +vt 0.212153 0.840583 +vt 0.213161 0.846403 +vt 0.190931 0.852143 +vt 0.185491 0.855139 +vt 0.193717 0.853131 +vt 0.206055 0.853325 +vt 0.200948 0.855236 +vt 0.204960 0.826473 +vt 0.205219 0.827897 +vt 0.212944 0.831508 +vt 0.214285 0.832550 +vt 0.210851 0.830312 +vt 0.212113 0.830392 +vt 0.207116 0.829671 +vt 0.208395 0.828044 +vt 0.207478 0.829055 +vt 0.210227 0.827772 +vt 0.210819 0.828511 +vt 0.214065 0.837909 +vt 0.212537 0.839082 +vt 0.206057 0.827420 +vt 0.212957 0.844250 +vt 0.214168 0.847746 +vt 0.209384 0.851355 +vt 0.189476 0.856327 +vt 0.195597 0.853271 +vt 0.191784 0.853202 +vt 0.207929 0.853030 +vt 0.204426 0.854948 +vt 0.195383 0.856391 +vt 0.216304 0.832630 +vt 0.217364 0.834017 +vt 0.211366 0.829509 +vt 0.207797 0.828075 +vt 0.209051 0.827488 +vt 0.209694 0.827145 +vt 0.206790 0.828783 +vt 0.214992 0.839753 +vt 0.214138 0.843687 +vt 0.213850 0.841468 +vt 0.214724 0.840697 +vt 0.212838 0.849333 +vt 0.214953 0.846260 +vt 0.214638 0.845292 +vt 0.211228 0.850099 +vt 0.186690 0.859062 +vt 0.191867 0.856980 +vt 0.206879 0.854304 +vt 0.203824 0.856886 +vt 0.200210 0.857791 +vt 0.208293 0.826461 +vt 0.207212 0.827392 +vt 0.214157 0.830765 +vt 0.213321 0.829442 +vt 0.215669 0.830503 +vt 0.221243 0.834941 +vt 0.212312 0.828511 +vt 0.207163 0.829017 +vt 0.207464 0.827853 +vt 0.210911 0.826828 +vt 0.210223 0.826195 +vt 0.211553 0.827670 +vt 0.216229 0.837666 +vt 0.214131 0.849229 +vt 0.215868 0.846250 +vt 0.210439 0.851839 +vt 0.209381 0.853210 +vt 0.190779 0.859704 +vt 0.193776 0.857684 +vt 0.208159 0.854164 +vt 0.205607 0.856277 +vt 0.202575 0.857723 +vt 0.204760 0.856362 +vt 0.197841 0.860311 +vt 0.209065 0.826015 +vt 0.209787 0.824633 +vt 0.218247 0.832668 +vt 0.217421 0.831245 +vt 0.209356 0.826746 +vt 0.209526 0.826059 +vt 0.216660 0.840198 +vt 0.214939 0.842585 +vt 0.215249 0.844652 +vt 0.215094 0.848895 +vt 0.213630 0.850150 +vt 0.212894 0.849925 +vt 0.215733 0.847704 +vt 0.216302 0.844766 +vt 0.211527 0.850922 +vt 0.194599 0.859891 +vt 0.206503 0.857267 +vt 0.204497 0.858746 +vt 0.205011 0.857611 +vt 0.201669 0.858289 +vt 0.200559 0.859005 +vt 0.210936 0.824803 +vt 0.214514 0.829244 +vt 0.213164 0.827234 +vt 0.217059 0.829669 +vt 0.220241 0.832973 +vt 0.221680 0.838803 +vt 0.212273 0.826548 +vt 0.211561 0.826045 +vt 0.216047 0.842102 +vt 0.215291 0.842997 +vt 0.214708 0.850233 +vt 0.216715 0.846242 +vt 0.217281 0.845084 +vt 0.211695 0.851730 +vt 0.210030 0.854508 +vt 0.208846 0.854820 +vt 0.192679 0.860193 +vt 0.203226 0.859325 +vt 0.202461 0.858732 +vt 0.199927 0.860224 +vt 0.196186 0.861608 +vt 0.212962 0.823647 +vt 0.212065 0.824557 +vt 0.213963 0.827874 +vt 0.215302 0.828635 +vt 0.218490 0.831723 +vt 0.216276 0.828413 +vt 0.217880 0.830168 +vt 0.219206 0.832267 +vt 0.221973 0.832662 +vt 0.222903 0.836306 +vt 0.219369 0.841928 +vt 0.215635 0.844159 +vt 0.216207 0.848477 +vt 0.215718 0.849833 +vt 0.212789 0.850771 +vt 0.213831 0.851225 +vt 0.216472 0.843331 +vt 0.193608 0.862112 +vt 0.208872 0.856118 +vt 0.205195 0.859760 +vt 0.203402 0.860702 +vt 0.201859 0.859107 +vt 0.198340 0.862349 +vt 0.201225 0.859511 +vt 0.196473 0.863418 +vt 0.194450 0.861701 +vt 0.214658 0.827692 +vt 0.214116 0.825549 +vt 0.212927 0.825452 +vt 0.218588 0.830632 +vt 0.216917 0.828858 +vt 0.217919 0.828905 +vt 0.220524 0.831270 +vt 0.223560 0.832883 +vt 0.221678 0.831530 +vt 0.225897 0.837191 +vt 0.225748 0.833978 +vt 0.226275 0.840339 +vt 0.214653 0.851869 +vt 0.217955 0.847172 +vt 0.212268 0.852487 +vt 0.211393 0.853825 +vt 0.193184 0.864746 +vt 0.208069 0.857886 +vt 0.206949 0.859523 +vt 0.202598 0.859561 +vt 0.203260 0.860036 +vt 0.202200 0.859110 +vt 0.198254 0.863834 +vt 0.200558 0.860838 +vt 0.194318 0.865440 +vt 0.215276 0.824895 +vt 0.215373 0.826915 +vt 0.219301 0.831342 +vt 0.217006 0.828175 +vt 0.217286 0.828840 +vt 0.218348 0.829801 +vt 0.223147 0.831332 +vt 0.222606 0.844763 +vt 0.217178 0.849059 +vt 0.216306 0.851538 +vt 0.213352 0.853354 +vt 0.219703 0.846033 +vt 0.213038 0.852977 +vt 0.210710 0.854982 +vt 0.210130 0.856797 +vt 0.206260 0.862043 +vt 0.202406 0.860463 +vt 0.202703 0.862911 +vt 0.201895 0.859748 +vt 0.201339 0.860059 +vt 0.195327 0.866840 +vt 0.217961 0.825995 +vt 0.216261 0.825438 +vt 0.216097 0.826832 +vt 0.219661 0.830249 +vt 0.216685 0.827104 +vt 0.217476 0.828191 +vt 0.218921 0.829077 +vt 0.221527 0.830458 +vt 0.225483 0.832341 +vt 0.224461 0.831300 +vt 0.222363 0.830861 +vt 0.230309 0.838596 +vt 0.227157 0.834816 +vt 0.225932 0.846752 +vt 0.216762 0.850618 +vt 0.215207 0.852266 +vt 0.213877 0.853085 +vt 0.218655 0.848659 +vt 0.219750 0.847855 +vt 0.212924 0.854362 +vt 0.211598 0.855393 +vt 0.208797 0.860102 +vt 0.204732 0.864267 +vt 0.202015 0.861708 +vt 0.202335 0.865070 +vt 0.196734 0.865308 +vt 0.200614 0.862264 +vt 0.201382 0.860834 +vt 0.193652 0.868694 +vt 0.218695 0.824900 +vt 0.215779 0.826062 +vt 0.217284 0.827284 +vt 0.217809 0.827456 +vt 0.218473 0.827380 +vt 0.220598 0.829793 +vt 0.221979 0.830588 +vt 0.221081 0.830226 +vt 0.227176 0.832784 +vt 0.223271 0.830098 +vt 0.231456 0.841040 +vt 0.221166 0.847423 +vt 0.229505 0.843857 +vt 0.222906 0.846708 +vt 0.218310 0.849813 +vt 0.217323 0.851999 +vt 0.215901 0.853364 +vt 0.214542 0.853333 +vt 0.213697 0.853786 +vt 0.220454 0.847504 +vt 0.212925 0.858265 +vt 0.207878 0.863475 +vt 0.206034 0.864566 +vt 0.201436 0.863717 +vt 0.198779 0.865463 +vt 0.200407 0.864467 +vt 0.197322 0.867152 +vt 0.196468 0.869092 +vt 0.191706 0.870806 +vt 0.217318 0.826468 +vt 0.220197 0.825575 +vt 0.219947 0.828785 +vt 0.219426 0.827233 +vt 0.222294 0.829572 +vt 0.221466 0.829424 +vt 0.227446 0.830845 +vt 0.225821 0.830645 +vt 0.225019 0.830138 +vt 0.230776 0.837217 +vt 0.231783 0.838348 +vt 0.229056 0.833401 +vt 0.228317 0.847140 +vt 0.224016 0.848178 +vt 0.217858 0.851096 +vt 0.219570 0.849941 +vt 0.220480 0.848522 +vt 0.212924 0.856893 +vt 0.210945 0.861934 +vt 0.203578 0.865780 +vt 0.204736 0.866289 +vt 0.195829 0.870950 +vt 0.193449 0.871454 +vt 0.222607 0.823684 +vt 0.221293 0.825880 +vt 0.220650 0.828616 +vt 0.221091 0.829722 +vt 0.228549 0.831861 +vt 0.224172 0.829404 +vt 0.223072 0.829548 +vt 0.230956 0.835287 +vt 0.231414 0.842620 +vt 0.232749 0.840242 +vt 0.222254 0.848109 +vt 0.231942 0.845915 +vt 0.226482 0.848026 +vt 0.224882 0.848510 +vt 0.218592 0.851328 +vt 0.218243 0.853575 +vt 0.214449 0.854589 +vt 0.214654 0.858393 +vt 0.214504 0.861447 +vt 0.209333 0.864648 +vt 0.207335 0.865947 +vt 0.203036 0.866149 +vt 0.206014 0.866101 +vt 0.201513 0.866119 +vt 0.200006 0.866204 +vt 0.199142 0.868279 +vt 0.198511 0.870393 +vt 0.191776 0.874430 +vt 0.225952 0.823646 +vt 0.223740 0.825576 +vt 0.220977 0.827228 +vt 0.220382 0.827433 +vt 0.221049 0.829141 +vt 0.221699 0.827871 +vt 0.227004 0.828744 +vt 0.229066 0.830395 +vt 0.225718 0.828750 +vt 0.223600 0.828848 +vt 0.222995 0.828625 +vt 0.232017 0.837313 +vt 0.232082 0.842227 +vt 0.231801 0.842889 +vt 0.233834 0.838351 +vt 0.233171 0.840551 +vt 0.231196 0.832950 +vt 0.229957 0.831709 +vt 0.221378 0.849110 +vt 0.220961 0.848572 +vt 0.229225 0.848377 +vt 0.232300 0.843354 +vt 0.225535 0.847941 +vt 0.223705 0.849914 +vt 0.215637 0.855770 +vt 0.220644 0.850974 +vt 0.211648 0.865568 +vt 0.203210 0.867444 +vt 0.202524 0.866627 +vt 0.205299 0.867420 +vt 0.194842 0.874293 +vt 0.197503 0.872694 +vt 0.227176 0.823921 +vt 0.224821 0.824630 +vt 0.222567 0.826062 +vt 0.220844 0.827957 +vt 0.221017 0.828469 +vt 0.221299 0.828600 +vt 0.222525 0.827952 +vt 0.228321 0.828946 +vt 0.224404 0.828307 +vt 0.224901 0.827712 +vt 0.233012 0.836186 +vt 0.233654 0.837339 +vt 0.232771 0.841898 +vt 0.232274 0.834413 +vt 0.222410 0.850511 +vt 0.230560 0.849285 +vt 0.233545 0.843394 +vt 0.227524 0.849072 +vt 0.225475 0.848694 +vt 0.224941 0.849899 +vt 0.219267 0.852410 +vt 0.219612 0.858976 +vt 0.214602 0.865618 +vt 0.209044 0.866457 +vt 0.206267 0.866711 +vt 0.204248 0.868434 +vt 0.201193 0.868160 +vt 0.200958 0.867044 +vt 0.200080 0.867824 +vt 0.200166 0.869162 +vt 0.200668 0.871533 +vt 0.192942 0.876492 +vt 0.226676 0.825130 +vt 0.225646 0.826445 +vt 0.223383 0.827967 +vt 0.224464 0.826513 +vt 0.221175 0.828031 +vt 0.227990 0.826768 +vt 0.226842 0.826931 +vt 0.230602 0.829892 +vt 0.229442 0.828608 +vt 0.234355 0.839760 +vt 0.235138 0.837573 +vt 0.231285 0.831513 +vt 0.233364 0.833177 +vt 0.233210 0.848726 +vt 0.228230 0.850226 +vt 0.233649 0.842079 +vt 0.233948 0.844265 +vt 0.226162 0.849387 +vt 0.224642 0.851469 +vt 0.221458 0.852002 +vt 0.216934 0.862705 +vt 0.212675 0.866875 +vt 0.209984 0.867451 +vt 0.208052 0.867437 +vt 0.206431 0.867454 +vt 0.203184 0.868802 +vt 0.204157 0.869591 +vt 0.199163 0.875035 +vt 0.194812 0.878424 +vt 0.190033 0.877635 +vt 0.227982 0.824118 +vt 0.227223 0.826089 +vt 0.228781 0.827852 +vt 0.227100 0.827273 +vt 0.235201 0.834785 +vt 0.234749 0.836459 +vt 0.235069 0.838604 +vt 0.232309 0.832312 +vt 0.234393 0.847232 +vt 0.232325 0.851020 +vt 0.229464 0.850564 +vt 0.234396 0.842106 +vt 0.234756 0.842880 +vt 0.234112 0.845315 +vt 0.226539 0.850767 +vt 0.223281 0.852566 +vt 0.220727 0.853849 +vt 0.219385 0.861454 +vt 0.214625 0.867738 +vt 0.211077 0.867674 +vt 0.217316 0.864448 +vt 0.209032 0.867367 +vt 0.201983 0.869091 +vt 0.203081 0.870036 +vt 0.207122 0.868905 +vt 0.196917 0.877929 +vt 0.201685 0.875635 +vt 0.192855 0.878779 +vt 0.191893 0.878490 +vt 0.188269 0.874498 +vt 0.226557 0.826463 +vt 0.229221 0.826867 +vt 0.232375 0.830407 +vt 0.230548 0.827137 +vt 0.235441 0.840254 +vt 0.236712 0.836693 +vt 0.236736 0.838445 +vt 0.234766 0.840286 +vt 0.234931 0.832743 +vt 0.233572 0.831786 +vt 0.236343 0.848872 +vt 0.234974 0.851670 +vt 0.228115 0.852678 +vt 0.235252 0.844059 +vt 0.225600 0.851783 +vt 0.225269 0.852772 +vt 0.222358 0.854376 +vt 0.225961 0.856950 +vt 0.213563 0.869171 +vt 0.211564 0.869467 +vt 0.209826 0.868534 +vt 0.208042 0.869228 +vt 0.204400 0.870890 +vt 0.206603 0.870806 +vt 0.202873 0.871754 +vt 0.195795 0.879681 +vt 0.193265 0.880499 +vt 0.191289 0.879742 +vt 0.186305 0.879495 +vt 0.228781 0.825373 +vt 0.231613 0.828734 +vt 0.236272 0.833445 +vt 0.236541 0.847128 +vt 0.235396 0.845867 +vt 0.232797 0.852550 +vt 0.235480 0.842021 +vt 0.224913 0.861161 +vt 0.219793 0.864945 +vt 0.216896 0.866447 +vt 0.214973 0.869674 +vt 0.210628 0.869897 +vt 0.210010 0.869506 +vt 0.201732 0.878496 +vt 0.204329 0.872621 +vt 0.198312 0.880401 +vt 0.192093 0.880522 +vt 0.190099 0.880643 +vt 0.188605 0.880083 +vt 0.184096 0.877700 +vt 0.230267 0.824979 +vt 0.231604 0.825012 +vt 0.232807 0.828485 +vt 0.231857 0.827156 +vt 0.238395 0.835421 +vt 0.236791 0.840623 +vt 0.238614 0.838331 +vt 0.233837 0.829966 +vt 0.234799 0.831416 +vt 0.239207 0.834181 +vt 0.236315 0.832200 +vt 0.238009 0.848424 +vt 0.230753 0.852952 +vt 0.234352 0.856455 +vt 0.226976 0.854450 +vt 0.236380 0.843594 +vt 0.236121 0.844589 +vt 0.227602 0.860223 +vt 0.222175 0.862913 +vt 0.218816 0.865295 +vt 0.212828 0.869781 +vt 0.214105 0.871015 +vt 0.211122 0.871266 +vt 0.209199 0.869095 +vt 0.208644 0.870332 +vt 0.204546 0.877271 +vt 0.206067 0.874863 +vt 0.194165 0.881732 +vt 0.196188 0.883710 +vt 0.191487 0.882678 +vt 0.190895 0.881090 +vt 0.186601 0.881898 +vt 0.183367 0.873872 +vt 0.182991 0.881954 +vt 0.232579 0.824066 +vt 0.233006 0.829729 +vt 0.240976 0.836499 +vt 0.238403 0.840424 +vt 0.237846 0.832859 +vt 0.236937 0.845490 +vt 0.238207 0.847718 +vt 0.239160 0.849958 +vt 0.237008 0.855085 +vt 0.229140 0.854167 +vt 0.237340 0.842846 +vt 0.232393 0.856939 +vt 0.229324 0.858120 +vt 0.226494 0.862871 +vt 0.223989 0.863672 +vt 0.224689 0.864684 +vt 0.219717 0.867940 +vt 0.217008 0.869635 +vt 0.218372 0.867914 +vt 0.213019 0.870909 +vt 0.215611 0.871295 +vt 0.209937 0.871009 +vt 0.209484 0.869984 +vt 0.208653 0.872773 +vt 0.199748 0.882113 +vt 0.204264 0.878946 +vt 0.197965 0.885272 +vt 0.188678 0.881716 +vt 0.190461 0.882507 +vt 0.184082 0.881973 +vt 0.182066 0.877138 +vt 0.182080 0.879836 +vt 0.232881 0.825941 +vt 0.235827 0.823621 +vt 0.238603 0.841839 +vt 0.241150 0.839496 +vt 0.234983 0.830608 +vt 0.236117 0.830725 +vt 0.239946 0.832697 +vt 0.237605 0.831215 +vt 0.238409 0.847186 +vt 0.239754 0.847794 +vt 0.238026 0.861302 +vt 0.236827 0.844094 +vt 0.232322 0.862536 +vt 0.227309 0.865249 +vt 0.225221 0.862541 +vt 0.221883 0.868305 +vt 0.220643 0.870454 +vt 0.214182 0.873166 +vt 0.212974 0.877229 +vt 0.206197 0.878247 +vt 0.193498 0.884819 +vt 0.194410 0.888470 +vt 0.189376 0.882638 +vt 0.188404 0.882533 +vt 0.184172 0.884141 +vt 0.181405 0.878948 +vt 0.180960 0.877245 +vt 0.182160 0.883796 +vt 0.181908 0.882112 +vt 0.235335 0.826020 +vt 0.233581 0.826573 +vt 0.233760 0.828025 +vt 0.233238 0.827298 +vt 0.243954 0.834585 +vt 0.241448 0.841404 +vt 0.242776 0.838982 +vt 0.234683 0.829789 +vt 0.242125 0.832806 +vt 0.238048 0.832085 +vt 0.238962 0.845689 +vt 0.239558 0.846507 +vt 0.241334 0.849528 +vt 0.242160 0.853020 +vt 0.235048 0.863629 +vt 0.241584 0.861204 +vt 0.238416 0.844750 +vt 0.233610 0.867058 +vt 0.229033 0.868463 +vt 0.224781 0.864118 +vt 0.226138 0.868868 +vt 0.218763 0.870515 +vt 0.217108 0.873856 +vt 0.208793 0.877072 +vt 0.203759 0.882666 +vt 0.200458 0.888178 +vt 0.206072 0.880259 +vt 0.190054 0.885706 +vt 0.196044 0.890470 +vt 0.189071 0.885264 +vt 0.186048 0.884381 +vt 0.181055 0.878107 +vt 0.180499 0.876333 +vt 0.180860 0.880610 +vt 0.237068 0.825810 +vt 0.234404 0.829388 +vt 0.244764 0.836868 +vt 0.238954 0.843983 +vt 0.241109 0.842855 +vt 0.235452 0.829480 +vt 0.236970 0.829962 +vt 0.241107 0.831997 +vt 0.239491 0.831905 +vt 0.238638 0.830925 +vt 0.240430 0.846062 +vt 0.241209 0.847370 +vt 0.237060 0.864796 +vt 0.224508 0.872700 +vt 0.222576 0.874626 +vt 0.218454 0.872087 +vt 0.210667 0.879957 +vt 0.205277 0.882608 +vt 0.202487 0.885856 +vt 0.201438 0.892592 +vt 0.206905 0.879238 +vt 0.191578 0.887779 +vt 0.194486 0.893183 +vt 0.188520 0.884892 +vt 0.187319 0.885268 +vt 0.183249 0.885595 +vt 0.182356 0.886026 +vt 0.180427 0.879552 +vt 0.179792 0.877862 +vt 0.179949 0.879016 +vt 0.180999 0.883735 +vt 0.179935 0.882608 +vt 0.240057 0.824887 +vt 0.243111 0.826882 +vt 0.236645 0.827304 +vt 0.234298 0.826842 +vt 0.234511 0.827901 +vt 0.245750 0.835693 +vt 0.244077 0.832352 +vt 0.243274 0.843560 +vt 0.247825 0.838624 +vt 0.245295 0.841737 +vt 0.236317 0.829423 +vt 0.234773 0.828954 +vt 0.237603 0.829725 +vt 0.240521 0.831819 +vt 0.241892 0.831103 +vt 0.239994 0.831153 +vt 0.239239 0.831300 +vt 0.238303 0.829687 +vt 0.239690 0.845278 +vt 0.242734 0.848764 +vt 0.245093 0.855271 +vt 0.243642 0.864204 +vt 0.233938 0.869989 +vt 0.228342 0.873367 +vt 0.220084 0.875568 +vt 0.217695 0.878324 +vt 0.209975 0.880533 +vt 0.213073 0.880126 +vt 0.206016 0.885787 +vt 0.205462 0.892291 +vt 0.188009 0.890414 +vt 0.191507 0.893691 +vt 0.197921 0.892200 +vt 0.188585 0.886433 +vt 0.185743 0.887635 +vt 0.183411 0.888126 +vt 0.180657 0.885191 +vt 0.179756 0.881293 +vt 0.241666 0.826468 +vt 0.239030 0.826342 +vt 0.245141 0.824241 +vt 0.236028 0.828201 +vt 0.238053 0.828037 +vt 0.235386 0.827839 +vt 0.247173 0.834363 +vt 0.247284 0.836541 +vt 0.245724 0.832728 +vt 0.242996 0.831483 +vt 0.240712 0.844541 +vt 0.242839 0.844066 +vt 0.236932 0.828998 +vt 0.237260 0.829402 +vt 0.240901 0.830980 +vt 0.239567 0.830058 +vt 0.244846 0.853111 +vt 0.242456 0.847084 +vt 0.247466 0.860401 +vt 0.238356 0.868271 +vt 0.236492 0.870612 +vt 0.233129 0.872296 +vt 0.228708 0.877149 +vt 0.222987 0.876923 +vt 0.215043 0.879967 +vt 0.207970 0.883498 +vt 0.211238 0.882931 +vt 0.202865 0.895456 +vt 0.187171 0.888080 +vt 0.193698 0.898611 +vt 0.196385 0.895215 +vt 0.198870 0.894978 +vt 0.178474 0.880373 +vt 0.179808 0.884280 +vt 0.178702 0.881667 +vt 0.179285 0.880355 +vt 0.240089 0.827053 +vt 0.245278 0.826886 +vt 0.241861 0.828440 +vt 0.237480 0.828835 +vt 0.245075 0.831695 +vt 0.243926 0.830963 +vt 0.243710 0.845764 +vt 0.244884 0.844341 +vt 0.249749 0.841810 +vt 0.248853 0.837030 +vt 0.237887 0.829076 +vt 0.241698 0.829567 +vt 0.242768 0.830473 +vt 0.239475 0.828694 +vt 0.241988 0.845535 +vt 0.246773 0.850557 +vt 0.249809 0.854774 +vt 0.239889 0.870253 +vt 0.235279 0.871613 +vt 0.233295 0.876408 +vt 0.225783 0.879138 +vt 0.221976 0.876275 +vt 0.220594 0.878385 +vt 0.216775 0.881298 +vt 0.214312 0.881875 +vt 0.209691 0.890239 +vt 0.200337 0.896291 +vt 0.203885 0.897195 +vt 0.186325 0.892031 +vt 0.188919 0.897024 +vt 0.194485 0.896852 +vt 0.191502 0.898997 +vt 0.197342 0.895459 +vt 0.178244 0.883713 +vt 0.240637 0.828286 +vt 0.244331 0.828796 +vt 0.244066 0.830088 +vt 0.246951 0.832847 +vt 0.248603 0.835692 +vt 0.244553 0.831335 +vt 0.245836 0.830772 +vt 0.247209 0.843872 +vt 0.252041 0.838546 +vt 0.240436 0.829792 +vt 0.245282 0.847230 +vt 0.249821 0.851867 +vt 0.252367 0.855283 +vt 0.237488 0.872530 +vt 0.230027 0.880575 +vt 0.227429 0.879015 +vt 0.221334 0.877024 +vt 0.222727 0.878265 +vt 0.219233 0.879987 +vt 0.218114 0.880666 +vt 0.212342 0.884239 +vt 0.208563 0.896372 +vt 0.200118 0.897674 +vt 0.196959 0.897681 +vt 0.193275 0.901482 +vt 0.177847 0.881117 +vt 0.246393 0.827620 +vt 0.245728 0.828954 +vt 0.246814 0.831671 +vt 0.247994 0.832123 +vt 0.249479 0.834550 +vt 0.245037 0.830875 +vt 0.246417 0.845069 +vt 0.249085 0.844754 +vt 0.255194 0.840580 +vt 0.250426 0.835834 +vt 0.251934 0.836920 +vt 0.247117 0.847032 +vt 0.248487 0.849960 +vt 0.253384 0.862285 +vt 0.251166 0.853446 +vt 0.240598 0.874226 +vt 0.236578 0.874878 +vt 0.233965 0.879408 +vt 0.227711 0.881699 +vt 0.224413 0.880869 +vt 0.221588 0.880885 +vt 0.215377 0.884058 +vt 0.217780 0.881327 +vt 0.214059 0.889113 +vt 0.213519 0.896716 +vt 0.196274 0.899313 +vt 0.199555 0.900113 +vt 0.205556 0.902430 +vt 0.188627 0.903024 +vt 0.194405 0.899848 +vt 0.190246 0.904270 +vt 0.178205 0.881161 +vt 0.247529 0.827374 +vt 0.245101 0.829976 +vt 0.248944 0.833330 +vt 0.246435 0.830084 +vt 0.247922 0.845435 +vt 0.253386 0.843313 +vt 0.257240 0.837319 +vt 0.253932 0.836077 +vt 0.251178 0.849394 +vt 0.254794 0.854376 +vt 0.252817 0.852270 +vt 0.251978 0.851963 +vt 0.236440 0.879934 +vt 0.230082 0.881017 +vt 0.226363 0.884825 +vt 0.219343 0.882189 +vt 0.217317 0.883026 +vt 0.212611 0.901390 +vt 0.201407 0.902211 +vt 0.211819 0.907799 +vt 0.187683 0.900753 +vt 0.191626 0.906064 +vt 0.247627 0.829133 +vt 0.247450 0.830810 +vt 0.249449 0.831972 +vt 0.250610 0.832852 +vt 0.251183 0.834335 +vt 0.249132 0.846077 +vt 0.250439 0.845770 +vt 0.256123 0.843345 +vt 0.255161 0.835173 +vt 0.260649 0.836311 +vt 0.253134 0.834616 +vt 0.249240 0.846432 +vt 0.251938 0.850844 +vt 0.256172 0.857691 +vt 0.234353 0.882367 +vt 0.228332 0.883466 +vt 0.223687 0.884747 +vt 0.218523 0.885653 +vt 0.217226 0.890065 +vt 0.218101 0.900528 +vt 0.196000 0.902356 +vt 0.197462 0.905158 +vt 0.202810 0.906800 +vt 0.207357 0.907410 +vt 0.188909 0.905723 +vt 0.191206 0.907138 +vt 0.248685 0.828100 +vt 0.248129 0.830294 +vt 0.248933 0.830799 +vt 0.254895 0.845333 +vt 0.258044 0.841097 +vt 0.258298 0.835562 +vt 0.262877 0.837183 +vt 0.252572 0.848652 +vt 0.253277 0.851066 +vt 0.256982 0.855068 +vt 0.236201 0.882774 +vt 0.230540 0.882557 +vt 0.229129 0.885469 +vt 0.225755 0.889504 +vt 0.220262 0.897088 +vt 0.216272 0.903923 +vt 0.214468 0.907260 +vt 0.199974 0.906992 +vt 0.205124 0.907486 +vt 0.210583 0.909694 +vt 0.187273 0.905552 +vt 0.194813 0.905789 +vt 0.192942 0.907646 +vt 0.249725 0.829780 +vt 0.250894 0.828019 +vt 0.250907 0.831202 +vt 0.249707 0.830764 +vt 0.252188 0.833104 +vt 0.253353 0.847126 +vt 0.256854 0.845121 +vt 0.258391 0.843859 +vt 0.256793 0.834179 +vt 0.259580 0.834559 +vt 0.262320 0.835095 +vt 0.255254 0.833872 +vt 0.255096 0.850897 +vt 0.258967 0.856708 +vt 0.257685 0.852122 +vt 0.232287 0.888868 +vt 0.232100 0.885902 +vt 0.223839 0.894841 +vt 0.219459 0.890733 +vt 0.220679 0.901478 +vt 0.219459 0.905845 +vt 0.213320 0.909497 +vt 0.197679 0.908327 +vt 0.202321 0.908899 +vt 0.207022 0.908875 +vt 0.211292 0.911027 +vt 0.186691 0.908055 +vt 0.192120 0.909289 +vt 0.252269 0.827943 +vt 0.251824 0.831890 +vt 0.253344 0.832695 +vt 0.255359 0.848213 +vt 0.256683 0.848202 +vt 0.260967 0.842316 +vt 0.258354 0.834102 +vt 0.265477 0.834415 +vt 0.254433 0.832674 +vt 0.260983 0.858607 +vt 0.228188 0.890788 +vt 0.223941 0.898476 +vt 0.216845 0.907886 +vt 0.212573 0.909237 +vt 0.213943 0.910418 +vt 0.195625 0.906449 +vt 0.198167 0.909252 +vt 0.195888 0.907832 +vt 0.205383 0.909826 +vt 0.212518 0.910344 +vt 0.209479 0.912549 +vt 0.189047 0.910286 +vt 0.185943 0.908252 +vt 0.194421 0.907354 +vt 0.193301 0.909310 +vt 0.190537 0.909883 +vt 0.251105 0.829914 +vt 0.251622 0.829002 +vt 0.252067 0.830192 +vt 0.252820 0.831505 +vt 0.258790 0.845155 +vt 0.259472 0.847016 +vt 0.260303 0.845396 +vt 0.263221 0.839736 +vt 0.256297 0.833456 +vt 0.258210 0.832884 +vt 0.261451 0.833220 +vt 0.259676 0.833023 +vt 0.266640 0.838719 +vt 0.263682 0.833881 +vt 0.255772 0.832222 +vt 0.256220 0.849216 +vt 0.260102 0.855444 +vt 0.231167 0.889256 +vt 0.228004 0.897905 +vt 0.229091 0.902838 +vt 0.225715 0.909070 +vt 0.220659 0.908586 +vt 0.216491 0.909874 +vt 0.196548 0.909667 +vt 0.198526 0.911007 +vt 0.204969 0.912130 +vt 0.211949 0.912596 +vt 0.207351 0.911586 +vt 0.187006 0.912816 +vt 0.184291 0.912391 +vt 0.194052 0.909789 +vt 0.193344 0.910844 +vt 0.191571 0.911224 +vt 0.254812 0.826125 +vt 0.253712 0.827403 +vt 0.253956 0.831125 +vt 0.258672 0.849683 +vt 0.262743 0.845116 +vt 0.264412 0.843345 +vt 0.256969 0.833742 +vt 0.268384 0.835600 +vt 0.265647 0.832464 +vt 0.254913 0.830980 +vt 0.262073 0.850334 +vt 0.262690 0.856093 +vt 0.218887 0.909915 +vt 0.215762 0.911733 +vt 0.197530 0.910877 +vt 0.194795 0.909318 +vt 0.201093 0.910067 +vt 0.203455 0.911755 +vt 0.208361 0.914807 +vt 0.189466 0.912428 +vt 0.253415 0.829498 +vt 0.260874 0.847153 +vt 0.267107 0.840425 +vt 0.266552 0.842862 +vt 0.257056 0.832437 +vt 0.259189 0.831810 +vt 0.260813 0.832312 +vt 0.263096 0.831863 +vt 0.267701 0.833089 +vt 0.269734 0.838197 +vt 0.264334 0.831948 +vt 0.255763 0.830373 +vt 0.263165 0.853543 +vt 0.262815 0.857533 +vt 0.223256 0.913990 +vt 0.217392 0.913213 +vt 0.214716 0.913217 +vt 0.213080 0.912684 +vt 0.196583 0.910852 +vt 0.195880 0.910723 +vt 0.202503 0.910831 +vt 0.200779 0.911483 +vt 0.198293 0.912443 +vt 0.203588 0.913650 +vt 0.206578 0.913394 +vt 0.208842 0.917147 +vt 0.184864 0.916305 +vt 0.189058 0.915711 +vt 0.194731 0.910848 +vt 0.191711 0.912676 +vt 0.254925 0.828851 +vt 0.265681 0.847007 +vt 0.263520 0.847240 +vt 0.256524 0.831052 +vt 0.258102 0.830946 +vt 0.260117 0.831884 +vt 0.261849 0.831694 +vt 0.269324 0.833392 +vt 0.270622 0.837347 +vt 0.265193 0.831133 +vt 0.266880 0.831516 +vt 0.264695 0.852445 +vt 0.266022 0.855662 +vt 0.229786 0.916310 +vt 0.219560 0.912122 +vt 0.215679 0.913859 +vt 0.212844 0.914719 +vt 0.197169 0.911985 +vt 0.200008 0.912540 +vt 0.204648 0.914168 +vt 0.202355 0.912519 +vt 0.206731 0.915865 +vt 0.190592 0.914374 +vt 0.194418 0.911953 +vt 0.256780 0.828589 +vt 0.256025 0.828877 +vt 0.261809 0.848075 +vt 0.271499 0.840989 +vt 0.268066 0.842617 +vt 0.269784 0.844675 +vt 0.257211 0.831002 +vt 0.259306 0.830405 +vt 0.259779 0.831220 +vt 0.260957 0.831259 +vt 0.264108 0.830011 +vt 0.262868 0.830763 +vt 0.269204 0.832540 +vt 0.270679 0.833634 +vt 0.271146 0.834466 +vt 0.266123 0.831117 +vt 0.267959 0.831166 +vt 0.256402 0.829830 +vt 0.263728 0.848820 +vt 0.265966 0.857274 +vt 0.227963 0.919236 +vt 0.221296 0.918637 +vt 0.195878 0.911963 +vt 0.196130 0.911233 +vt 0.200405 0.913183 +vt 0.199570 0.914202 +vt 0.196780 0.914413 +vt 0.203407 0.916268 +vt 0.201615 0.914305 +vt 0.210675 0.918450 +vt 0.204928 0.917548 +vt 0.187276 0.917179 +vt 0.190889 0.916294 +vt 0.191981 0.914867 +vt 0.257789 0.828908 +vt 0.269660 0.849416 +vt 0.257416 0.830178 +vt 0.258717 0.829412 +vt 0.260320 0.831034 +vt 0.261882 0.830205 +vt 0.263369 0.830961 +vt 0.268733 0.831838 +vt 0.270536 0.832467 +vt 0.273248 0.837135 +vt 0.273185 0.834496 +vt 0.265773 0.829793 +vt 0.266762 0.830984 +vt 0.267233 0.830449 +vt 0.265795 0.850717 +vt 0.267451 0.854823 +vt 0.225727 0.921284 +vt 0.230227 0.918780 +vt 0.214617 0.918042 +vt 0.218467 0.923076 +vt 0.209182 0.921243 +vt 0.204961 0.920846 +vt 0.185980 0.919144 +vt 0.189362 0.918242 +vt 0.194668 0.913411 +vt 0.194042 0.915891 +vt 0.266162 0.849648 +vt 0.271438 0.845864 +vt 0.259459 0.829013 +vt 0.260019 0.830480 +vt 0.260772 0.829828 +vt 0.262861 0.829413 +vt 0.269746 0.831462 +vt 0.272148 0.832842 +vt 0.275767 0.842272 +vt 0.265235 0.828666 +vt 0.266598 0.830449 +vt 0.269049 0.830455 +vt 0.268142 0.829222 +vt 0.267081 0.851590 +vt 0.227888 0.921402 +vt 0.229748 0.920604 +vt 0.231466 0.918595 +vt 0.222575 0.922426 +vt 0.199683 0.916780 +vt 0.212969 0.921453 +vt 0.210773 0.921932 +vt 0.199212 0.920739 +vt 0.183272 0.920890 +vt 0.187532 0.921039 +vt 0.192457 0.918030 +vt 0.190877 0.918013 +vt 0.259970 0.829568 +vt 0.261970 0.827904 +vt 0.270726 0.830932 +vt 0.271903 0.830859 +vt 0.274923 0.834041 +vt 0.277390 0.838355 +vt 0.274119 0.832522 +vt 0.266913 0.829176 +vt 0.228268 0.922949 +vt 0.229158 0.922469 +vt 0.230840 0.920262 +vt 0.225088 0.923808 +vt 0.216009 0.925692 +vt 0.222253 0.925935 +vt 0.197241 0.919629 +vt 0.209252 0.929184 +vt 0.203027 0.926222 +vt 0.181811 0.919226 +vt 0.189147 0.920838 +vt 0.190507 0.919830 +vt 0.193901 0.919359 +vt 0.263434 0.828021 +vt 0.270147 0.829973 +vt 0.273103 0.831436 +vt 0.280160 0.836809 +vt 0.279792 0.841114 +vt 0.227713 0.924441 +vt 0.226044 0.923792 +vt 0.223897 0.925159 +vt 0.219488 0.928764 +vt 0.220822 0.926696 +vt 0.213152 0.931091 +vt 0.200392 0.923983 +vt 0.182988 0.922849 +vt 0.181706 0.922204 +vt 0.188234 0.924222 +vt 0.191583 0.918864 +vt 0.192290 0.919284 +vt 0.271169 0.829503 +vt 0.273315 0.829666 +vt 0.278053 0.833508 +vt 0.276000 0.833013 +vt 0.274309 0.830990 +vt 0.226715 0.924272 +vt 0.228965 0.925010 +vt 0.229647 0.923962 +vt 0.225899 0.924773 +vt 0.225429 0.925600 +vt 0.217696 0.931324 +vt 0.223644 0.926623 +vt 0.222092 0.927724 +vt 0.197964 0.922474 +vt 0.210060 0.936395 +vt 0.199043 0.930732 +vt 0.182742 0.925318 +vt 0.190385 0.922295 +vt 0.183013 0.929647 +vt 0.191038 0.921364 +vt 0.192856 0.920677 +vt 0.195746 0.921214 +vt 0.280901 0.834331 +vt 0.275515 0.831976 +vt 0.281984 0.839294 +vt 0.227248 0.925874 +vt 0.228163 0.927142 +vt 0.230862 0.924420 +vt 0.226368 0.925007 +vt 0.224681 0.926931 +vt 0.220084 0.931704 +vt 0.221653 0.928804 +vt 0.223657 0.928005 +vt 0.215252 0.936472 +vt 0.205866 0.937537 +vt 0.213498 0.939296 +vt 0.197379 0.926194 +vt 0.201557 0.934660 +vt 0.180941 0.925811 +vt 0.190784 0.926379 +vt 0.189053 0.929403 +vt 0.193522 0.921643 +vt 0.192039 0.921033 +vt 0.194759 0.920995 +vt 0.274539 0.829838 +vt 0.282974 0.837323 +vt 0.278406 0.832373 +vt 0.277338 0.832394 +vt 0.276559 0.831670 +vt 0.275763 0.830276 +vt 0.229675 0.926271 +vt 0.232447 0.923173 +vt 0.225923 0.928573 +vt 0.221052 0.930517 +vt 0.218969 0.933495 +vt 0.223297 0.928979 +vt 0.222060 0.931131 +vt 0.196507 0.923162 +vt 0.216956 0.935591 +vt 0.210065 0.940285 +vt 0.203582 0.936965 +vt 0.196593 0.925072 +vt 0.194720 0.929290 +vt 0.197473 0.937252 +vt 0.181476 0.926568 +vt 0.191723 0.923043 +vt 0.184800 0.934723 +vt 0.192571 0.923250 +vt 0.194337 0.921229 +vt 0.195113 0.922530 +vt 0.285319 0.834998 +vt 0.280719 0.832570 +vt 0.284471 0.838860 +vt 0.227014 0.927300 +vt 0.229630 0.931676 +vt 0.231688 0.925039 +vt 0.231514 0.927052 +vt 0.224062 0.930002 +vt 0.220149 0.935003 +vt 0.216138 0.938040 +vt 0.214909 0.938814 +vt 0.208943 0.942512 +vt 0.204454 0.939839 +vt 0.212645 0.942684 +vt 0.193575 0.933255 +vt 0.201618 0.939872 +vt 0.181237 0.930128 +vt 0.179673 0.927636 +vt 0.192219 0.924401 +vt 0.192688 0.929745 +vt 0.181200 0.932651 +vt 0.189732 0.932457 +vt 0.193214 0.923952 +vt 0.282291 0.832723 +vt 0.286297 0.837051 +vt 0.277194 0.831863 +vt 0.279586 0.831883 +vt 0.276620 0.830701 +vt 0.285401 0.840938 +vt 0.226798 0.929314 +vt 0.232938 0.925592 +vt 0.225451 0.930333 +vt 0.222018 0.933118 +vt 0.217816 0.935401 +vt 0.195255 0.924396 +vt 0.218099 0.938570 +vt 0.214098 0.941213 +vt 0.206600 0.940448 +vt 0.210048 0.943814 +vt 0.194305 0.926008 +vt 0.198257 0.942383 +vt 0.193380 0.942026 +vt 0.179841 0.929933 +vt 0.192933 0.925705 +vt 0.183219 0.934568 +vt 0.186940 0.939317 +vt 0.194116 0.923944 +vt 0.283934 0.832934 +vt 0.287183 0.835449 +vt 0.278220 0.831687 +vt 0.280777 0.830905 +vt 0.281854 0.831846 +vt 0.277165 0.831134 +vt 0.287558 0.841664 +vt 0.287523 0.838885 +vt 0.235249 0.930086 +vt 0.225386 0.933096 +vt 0.224041 0.931564 +vt 0.220135 0.937237 +vt 0.221448 0.935529 +vt 0.215834 0.941258 +vt 0.207075 0.943299 +vt 0.208666 0.944297 +vt 0.205618 0.941900 +vt 0.202957 0.943044 +vt 0.213446 0.946019 +vt 0.210433 0.945252 +vt 0.200543 0.942867 +vt 0.191432 0.936387 +vt 0.180880 0.936064 +vt 0.182818 0.936253 +vt 0.184413 0.942519 +vt 0.189796 0.938054 +vt 0.285401 0.833440 +vt 0.283592 0.831796 +vt 0.282865 0.831180 +vt 0.224622 0.941881 +vt 0.223912 0.932665 +vt 0.218819 0.937235 +vt 0.220697 0.936331 +vt 0.223165 0.935155 +vt 0.215203 0.944677 +vt 0.209007 0.945787 +vt 0.204964 0.943404 +vt 0.203904 0.942592 +vt 0.212160 0.945304 +vt 0.198441 0.946990 +vt 0.192521 0.948195 +vt 0.178934 0.934857 +vt 0.183687 0.937830 +vt 0.185627 0.944345 +vt 0.188628 0.942050 +vt 0.284605 0.831370 +vt 0.287184 0.833496 +vt 0.290297 0.838442 +vt 0.282032 0.830714 +vt 0.288746 0.841013 +vt 0.236569 0.954451 +vt 0.219495 0.938347 +vt 0.221655 0.937809 +vt 0.222554 0.937502 +vt 0.218054 0.941704 +vt 0.205707 0.943013 +vt 0.208020 0.945327 +vt 0.203006 0.945290 +vt 0.210926 0.947840 +vt 0.214192 0.948751 +vt 0.210327 0.946646 +vt 0.209271 0.947071 +vt 0.188491 0.947296 +vt 0.179770 0.938650 +vt 0.181893 0.941898 +vt 0.183904 0.945417 +vt 0.286017 0.831810 +vt 0.283674 0.830875 +vt 0.288712 0.833576 +vt 0.290331 0.834583 +vt 0.290867 0.841472 +vt 0.235029 0.961107 +vt 0.221569 0.939010 +vt 0.220156 0.939839 +vt 0.217420 0.946617 +vt 0.206101 0.944006 +vt 0.207235 0.947516 +vt 0.211397 0.950421 +vt 0.208123 0.949028 +vt 0.202320 0.952890 +vt 0.193763 0.950475 +vt 0.189070 0.950488 +vt 0.174982 0.940946 +vt 0.182520 0.946818 +vt 0.184546 0.946719 +vt 0.285488 0.830265 +vt 0.287131 0.831626 +vt 0.287923 0.832588 +vt 0.292656 0.838586 +vt 0.291444 0.843812 +vt 0.223313 0.956177 +vt 0.237469 0.961281 +vt 0.205766 0.945549 +vt 0.209514 0.950911 +vt 0.209657 0.948343 +vt 0.216098 0.954752 +vt 0.208322 0.949665 +vt 0.205255 0.949497 +vt 0.196252 0.955019 +vt 0.190395 0.951231 +vt 0.188913 0.954639 +vt 0.181162 0.949618 +vt 0.186208 0.946641 +vt 0.183749 0.946881 +vt 0.183300 0.947251 +vt 0.286420 0.830459 +vt 0.289800 0.832820 +vt 0.288696 0.832443 +vt 0.292372 0.835015 +vt 0.294269 0.842071 +vt 0.229148 0.963341 +vt 0.236485 0.964382 +vt 0.207030 0.950070 +vt 0.210312 0.952037 +vt 0.211218 0.954323 +vt 0.207733 0.950731 +vt 0.204602 0.953247 +vt 0.199980 0.958070 +vt 0.193056 0.954439 +vt 0.190674 0.953167 +vt 0.185578 0.952433 +vt 0.178090 0.945152 +vt 0.182826 0.948818 +vt 0.184628 0.948763 +vt 0.183713 0.947662 +vt 0.288063 0.831373 +vt 0.287057 0.830468 +vt 0.291483 0.833054 +vt 0.293865 0.840426 +vt 0.294859 0.834883 +vt 0.224769 0.966323 +vt 0.232930 0.963208 +vt 0.238437 0.964069 +vt 0.234927 0.963873 +vt 0.208642 0.950710 +vt 0.209495 0.951977 +vt 0.213892 0.963427 +vt 0.221067 0.965082 +vt 0.206256 0.952003 +vt 0.204314 0.954879 +vt 0.196544 0.961172 +vt 0.202774 0.957430 +vt 0.192767 0.959923 +vt 0.185453 0.955673 +vt 0.173280 0.947567 +vt 0.177055 0.950750 +vt 0.182557 0.951173 +vt 0.287490 0.830828 +vt 0.289161 0.831328 +vt 0.290593 0.832247 +vt 0.295531 0.839045 +vt 0.298242 0.834298 +vt 0.293838 0.832594 +vt 0.295432 0.840784 +vt 0.226149 0.968954 +vt 0.231542 0.967458 +vt 0.236168 0.966349 +vt 0.207203 0.952215 +vt 0.208953 0.954787 +vt 0.207824 0.953722 +vt 0.206265 0.953953 +vt 0.203876 0.955624 +vt 0.199859 0.962077 +vt 0.201936 0.960035 +vt 0.189996 0.956949 +vt 0.185484 0.959513 +vt 0.184284 0.953315 +vt 0.184232 0.950702 +vt 0.180002 0.950700 +vt 0.181349 0.952955 +vt 0.289935 0.831778 +vt 0.291322 0.831579 +vt 0.296831 0.836824 +vt 0.295936 0.833372 +vt 0.292362 0.831741 +vt 0.296607 0.843671 +vt 0.223900 0.968278 +vt 0.234099 0.966567 +vt 0.209496 0.953432 +vt 0.220951 0.969963 +vt 0.208116 0.959379 +vt 0.203837 0.958378 +vt 0.206291 0.956387 +vt 0.199225 0.964529 +vt 0.195368 0.963927 +vt 0.203033 0.959313 +vt 0.183194 0.959752 +vt 0.183693 0.956297 +vt 0.175983 0.958621 +vt 0.178688 0.954779 +vt 0.182652 0.952818 +vt 0.289814 0.831172 +vt 0.290519 0.831322 +vt 0.297172 0.841290 +vt 0.298827 0.839837 +vt 0.299044 0.835650 +vt 0.297484 0.833164 +vt 0.295710 0.831654 +vt 0.293221 0.830745 +vt 0.225138 0.970440 +vt 0.230780 0.971035 +vt 0.223782 0.969922 +vt 0.215323 0.969761 +vt 0.210002 0.971287 +vt 0.208079 0.956585 +vt 0.201789 0.961719 +vt 0.200666 0.963941 +vt 0.202540 0.960223 +vt 0.182586 0.961793 +vt 0.182111 0.956252 +vt 0.181805 0.954777 +vt 0.299480 0.834232 +vt 0.296698 0.832372 +vt 0.298825 0.832928 +vt 0.294326 0.830939 +vt 0.300024 0.842062 +vt 0.226755 0.970486 +vt 0.228775 0.972925 +vt 0.223225 0.972427 +vt 0.214379 0.970334 +vt 0.218711 0.972457 +vt 0.207927 0.954266 +vt 0.205861 0.959007 +vt 0.206723 0.957298 +vt 0.204037 0.960005 +vt 0.196280 0.967036 +vt 0.201456 0.967633 +vt 0.180970 0.959267 +vt 0.182586 0.957717 +vt 0.179315 0.957999 +vt 0.180683 0.955633 +vt 0.302226 0.839347 +vt 0.300761 0.834645 +vt 0.297406 0.832026 +vt 0.298172 0.831908 +vt 0.225939 0.972300 +vt 0.228935 0.976290 +vt 0.224900 0.975273 +vt 0.216390 0.975095 +vt 0.213197 0.975067 +vt 0.204066 0.966475 +vt 0.203616 0.961902 +vt 0.203293 0.964296 +vt 0.196860 0.968486 +vt 0.199652 0.969206 +vt 0.179648 0.961812 +vt 0.181136 0.957260 +vt 0.178053 0.960576 +vt 0.300328 0.835812 +vt 0.300243 0.832884 +vt 0.227096 0.972538 +vt 0.226976 0.975747 +vt 0.222263 0.974890 +vt 0.218102 0.975197 +vt 0.210265 0.974537 +vt 0.206129 0.969748 +vt 0.194553 0.969293 +vt 0.201296 0.970674 +vt 0.202122 0.969910 +vt 0.302248 0.836690 +vt 0.301711 0.833714 +vt 0.302578 0.834924 +vt 0.226475 0.973591 +vt 0.228582 0.979093 +vt 0.221067 0.976521 +vt 0.223053 0.977527 +vt 0.215584 0.976733 +vt 0.218134 0.977972 +vt 0.211219 0.976002 +vt 0.198120 0.970825 +vt 0.195982 0.970650 +vt 0.199769 0.971990 +vt 0.306563 0.836386 +vt 0.301467 0.832375 +vt 0.300607 0.831088 +vt 0.225502 0.978277 +vt 0.223938 0.978037 +vt 0.213692 0.978436 +vt 0.219800 0.977628 +vt 0.208012 0.976721 +vt 0.212230 0.980312 +vt 0.209705 0.977947 +vt 0.205237 0.973604 +vt 0.194423 0.973431 +vt 0.199244 0.975935 +vt 0.202073 0.973094 +vt 0.303964 0.835621 +vt 0.302402 0.833137 +vt 0.302819 0.833945 +vt 0.228228 0.980619 +vt 0.221988 0.979227 +vt 0.223196 0.980046 +vt 0.216089 0.981830 +vt 0.218754 0.982664 +vt 0.210926 0.980997 +vt 0.209895 0.981001 +vt 0.196970 0.973256 +vt 0.191116 0.973618 +vt 0.305276 0.834169 +vt 0.302596 0.831912 +vt 0.301653 0.831049 +vt 0.225293 0.980972 +vt 0.235654 0.982067 +vt 0.213922 0.982095 +vt 0.208402 0.979016 +vt 0.205989 0.977605 +vt 0.211887 0.982952 +vt 0.209187 0.980225 +vt 0.204258 0.977349 +vt 0.195179 0.975836 +vt 0.192505 0.974266 +vt 0.197436 0.975775 +vt 0.201571 0.976546 +vt 0.307005 0.834021 +vt 0.303172 0.833102 +vt 0.227691 0.985292 +vt 0.230815 0.983110 +vt 0.222984 0.984347 +vt 0.217435 0.983804 +vt 0.215226 0.983437 +vt 0.220692 0.983276 +vt 0.206982 0.979875 +vt 0.210967 0.982267 +vt 0.210387 0.982181 +vt 0.208964 0.981737 +vt 0.194233 0.976095 +vt 0.191752 0.975920 +vt 0.193252 0.975953 +vt 0.198654 0.977643 +vt 0.199894 0.977195 +vt 0.304280 0.832690 +vt 0.306073 0.832219 +vt 0.303391 0.832224 +vt 0.225189 0.984488 +vt 0.233243 0.984193 +vt 0.216352 0.984476 +vt 0.218523 0.984895 +vt 0.213194 0.984136 +vt 0.214612 0.983760 +vt 0.219485 0.984598 +vt 0.208116 0.980933 +vt 0.204922 0.979201 +vt 0.205850 0.980184 +vt 0.210795 0.983343 +vt 0.209517 0.983352 +vt 0.202977 0.977645 +vt 0.196244 0.976988 +vt 0.194617 0.977218 +vt 0.190609 0.975648 +vt 0.197346 0.977954 +vt 0.200586 0.978488 +vt 0.230487 0.986797 +vt 0.226560 0.985731 +vt 0.237647 0.984350 +vt 0.221564 0.985779 +vt 0.223922 0.985954 +vt 0.217525 0.985250 +vt 0.214130 0.984426 +vt 0.212435 0.985741 +vt 0.215160 0.985239 +vt 0.220346 0.985925 +vt 0.207254 0.981967 +vt 0.203858 0.979385 +vt 0.206384 0.980636 +vt 0.211316 0.983592 +vt 0.208281 0.982866 +vt 0.202058 0.978230 +vt 0.195309 0.977640 +vt 0.193881 0.978014 +vt 0.190753 0.977056 +vt 0.189881 0.974890 +vt 0.192649 0.978132 +vt 0.197875 0.979744 +vt 0.199278 0.978333 +vt 0.201503 0.979273 +vt 0.199852 0.978946 +vt 0.228906 0.986423 +vt 0.227545 0.987033 +vt 0.225330 0.986629 +vt 0.235345 0.986492 +vt 0.222820 0.986226 +vt 0.223239 0.985410 +vt 0.217219 0.986245 +vt 0.218439 0.986723 +vt 0.219333 0.986235 +vt 0.213779 0.985631 +vt 0.211306 0.984604 +vt 0.216285 0.986423 +vt 0.206334 0.981917 +vt 0.204141 0.980526 +vt 0.210412 0.984786 +vt 0.208284 0.984611 +vt 0.202663 0.979306 +vt 0.196259 0.978465 +vt 0.194717 0.978297 +vt 0.191424 0.978502 +vt 0.189466 0.976763 +vt 0.199108 0.979846 +vt 0.200534 0.979828 +vt 0.200300 0.979084 +vt 0.229882 0.987885 +vt 0.226392 0.987542 +vt 0.233664 0.988499 +vt 0.221866 0.987373 +vt 0.221055 0.987103 +vt 0.225045 0.988080 +vt 0.211465 0.986006 +vt 0.214586 0.988423 +vt 0.215053 0.986992 +vt 0.220010 0.987665 +vt 0.207144 0.983449 +vt 0.203333 0.981094 +vt 0.205356 0.981699 +vt 0.209842 0.985166 +vt 0.209284 0.986039 +vt 0.195338 0.978968 +vt 0.194575 0.979657 +vt 0.193548 0.979589 +vt 0.190153 0.978448 +vt 0.192553 0.979811 +vt 0.196401 0.979617 +vt 0.199211 0.981142 +vt 0.201878 0.981506 +vt 0.228393 0.988370 +vt 0.227170 0.988644 +vt 0.221444 0.986706 +vt 0.222821 0.987982 +vt 0.220480 0.987200 +vt 0.223495 0.987273 +vt 0.218682 0.989101 +vt 0.216620 0.988149 +vt 0.219254 0.987835 +vt 0.211676 0.987063 +vt 0.210892 0.985734 +vt 0.212733 0.988163 +vt 0.206068 0.983556 +vt 0.202033 0.983122 +vt 0.204886 0.983233 +vt 0.210358 0.986338 +vt 0.208020 0.986542 +vt 0.191136 0.979966 +vt 0.197753 0.981905 +vt 0.200615 0.981724 +vt 0.230505 0.989151 +vt 0.226294 0.988860 +vt 0.223028 0.988656 +vt 0.220891 0.988770 +vt 0.210804 0.986839 +vt 0.215082 0.990321 +vt 0.219858 0.989572 +vt 0.208931 0.988785 +vt 0.207661 0.985351 +vt 0.196016 0.981314 +vt 0.192783 0.981824 +vt 0.192438 0.981310 +vt 0.190980 0.980990 +vt 0.199654 0.983426 +vt 0.232836 0.990104 +vt 0.228744 0.990009 +vt 0.227789 0.990124 +vt 0.226397 0.989851 +vt 0.224961 0.990056 +vt 0.217810 0.990056 +vt 0.210923 0.987583 +vt 0.212461 0.991074 +vt 0.217423 0.991102 +vt 0.202244 0.984561 +vt 0.206056 0.985060 +vt 0.210064 0.987674 +vt 0.206362 0.986709 +vt 0.194948 0.982392 +vt 0.197487 0.983597 +vt 0.198447 0.984471 +vt 0.200854 0.983398 +vt 0.232417 0.992074 +vt 0.230680 0.991143 +vt 0.222818 0.992512 +vt 0.223426 0.990787 +vt 0.219694 0.990947 +vt 0.215023 0.995058 +vt 0.218294 0.993697 +vt 0.200090 0.985240 +vt 0.204039 0.985629 +vt 0.207144 0.989013 +vt 0.196957 0.985124 +vt 0.191547 0.982442 +vt 0.194813 0.984543 +vt 0.233108 0.992323 +vt 0.228604 0.992157 +vt 0.226589 0.991781 +vt 0.225089 0.992499 +vt 0.218789 0.992573 +vt 0.202356 0.986199 +vt 0.204791 0.986751 +vt 0.206916 0.991641 +vt 0.204767 0.987318 +vt 0.197730 0.985581 +vt 0.229560 0.993105 +vt 0.221835 0.992960 +vt 0.220343 0.992432 +vt 0.209626 0.994255 +vt 0.220093 0.994508 +vt 0.200424 0.986997 +vt 0.196745 0.986763 +vt 0.193526 0.988858 +vt 0.223003 0.993471 +vt 0.202472 0.988026 +vt 0.204771 0.989696 +vt 0.207566 0.995454 +vt 0.198972 0.988474 +vt 0.221525 0.994062 +vt 0.201589 0.990601 +vt 0.205976 0.994039 +vt 0.195393 0.990567 +vt 0.203277 0.989784 +vt 0.204521 0.992131 +vt 0.205979 0.995791 +vt 0.201349 0.992721 +vt 0.203943 0.991468 +vt 0.204334 0.993919 +vt 0.203363 0.992519 +vt 0.203906 0.995358 +vt 0.203178 0.993888 +vt 0.601758 0.798078 +vt 0.600906 0.799301 +vt 0.600308 0.797056 +vt 0.601946 0.800745 +vt 0.599845 0.800447 +vt 0.601446 0.794402 +vt 0.602769 0.799306 +vt 0.601077 0.801801 +vt 0.598144 0.800028 +vt 0.598935 0.786991 +vt 0.602846 0.801914 +vt 0.602074 0.802927 +vt 0.599033 0.801700 +vt 0.597251 0.798101 +vt 0.600734 0.804130 +vt 0.605777 0.798541 +vt 0.601034 0.783333 +vt 0.597632 0.788987 +vt 0.603217 0.800905 +vt 0.601256 0.804388 +vt 0.597757 0.803096 +vt 0.597029 0.800524 +vt 0.596492 0.794097 +vt 0.596594 0.789712 +vt 0.604324 0.802427 +vt 0.603069 0.805729 +vt 0.602131 0.805400 +vt 0.599954 0.806481 +vt 0.596504 0.798255 +vt 0.601666 0.807777 +vt 0.596357 0.787263 +vt 0.603539 0.804031 +vt 0.601723 0.806130 +vt 0.599770 0.809516 +vt 0.596498 0.803018 +vt 0.595898 0.800869 +vt 0.593956 0.795300 +vt 0.596219 0.791278 +vt 0.604757 0.807569 +vt 0.595881 0.788830 +vt 0.604159 0.805625 +vt 0.603753 0.805748 +vt 0.602404 0.807858 +vt 0.601632 0.810759 +vt 0.596463 0.806867 +vt 0.594882 0.798178 +vt 0.594818 0.792896 +vt 0.595279 0.791394 +vt 0.606445 0.808265 +vt 0.603889 0.808128 +vt 0.599807 0.817809 +vt 0.596003 0.811712 +vt 0.595604 0.803001 +vt 0.596027 0.805396 +vt 0.594440 0.800344 +vt 0.593951 0.798540 +vt 0.593118 0.791997 +vt 0.595126 0.789984 +vt 0.604456 0.808546 +vt 0.608980 0.811430 +vt 0.605437 0.809706 +vt 0.603017 0.810065 +vt 0.602776 0.817785 +vt 0.595347 0.808772 +vt 0.595041 0.802074 +vt 0.595505 0.804693 +vt 0.595300 0.807264 +vt 0.593168 0.796531 +vt 0.592451 0.794912 +vt 0.593337 0.788945 +vt 0.611325 0.804641 +vt 0.607165 0.815576 +vt 0.604067 0.810414 +vt 0.603326 0.815022 +vt 0.596406 0.818534 +vt 0.602428 0.818598 +vt 0.594430 0.813749 +vt 0.594670 0.803597 +vt 0.594172 0.801382 +vt 0.592081 0.798830 +vt 0.591466 0.787980 +vt 0.604856 0.810400 +vt 0.610464 0.797591 +vt 0.611466 0.813221 +vt 0.609179 0.816929 +vt 0.605418 0.812412 +vt 0.604196 0.815388 +vt 0.594427 0.817041 +vt 0.597037 0.826964 +vt 0.603692 0.819277 +vt 0.601988 0.821538 +vt 0.594640 0.808747 +vt 0.594536 0.805156 +vt 0.590393 0.793133 +vt 0.612255 0.797323 +vt 0.609397 0.791932 +vt 0.613337 0.810469 +vt 0.609947 0.816348 +vt 0.608830 0.818917 +vt 0.605335 0.815420 +vt 0.604734 0.813115 +vt 0.594409 0.821602 +vt 0.600141 0.826685 +vt 0.604399 0.818104 +vt 0.603236 0.821517 +vt 0.601370 0.823967 +vt 0.593681 0.806887 +vt 0.593614 0.813305 +vt 0.593139 0.816939 +vt 0.593616 0.804156 +vt 0.590917 0.798223 +vt 0.589022 0.788840 +vt 0.604802 0.811385 +vt 0.611627 0.794072 +vt 0.613292 0.799318 +vt 0.613203 0.807440 +vt 0.613146 0.815067 +vt 0.611411 0.816292 +vt 0.608421 0.819741 +vt 0.609927 0.820133 +vt 0.610273 0.818270 +vt 0.607178 0.823313 +vt 0.593311 0.819136 +vt 0.594580 0.826354 +vt 0.599358 0.830325 +vt 0.604615 0.819339 +vt 0.604060 0.822219 +vt 0.602391 0.824091 +vt 0.593471 0.808981 +vt 0.592643 0.806258 +vt 0.589187 0.804031 +vt 0.588501 0.801044 +vt 0.587652 0.797710 +vt 0.612499 0.794801 +vt 0.613186 0.795447 +vt 0.613581 0.803523 +vt 0.612115 0.791052 +vt 0.615512 0.806188 +vt 0.612152 0.816851 +vt 0.614331 0.814849 +vt 0.611240 0.818358 +vt 0.607538 0.820719 +vt 0.608857 0.819854 +vt 0.609238 0.820763 +vt 0.605856 0.821834 +vt 0.593295 0.820231 +vt 0.594600 0.829525 +vt 0.593608 0.824315 +vt 0.601663 0.827265 +vt 0.600547 0.830166 +vt 0.598537 0.832458 +vt 0.605089 0.819375 +vt 0.604281 0.820681 +vt 0.603755 0.824214 +vt 0.602366 0.825938 +vt 0.592567 0.808744 +vt 0.592327 0.815742 +vt 0.592726 0.811500 +vt 0.592659 0.819338 +vt 0.614024 0.796641 +vt 0.614355 0.799668 +vt 0.610985 0.788880 +vt 0.614475 0.813257 +vt 0.613625 0.818833 +vt 0.614634 0.819255 +vt 0.608723 0.822336 +vt 0.610117 0.822913 +vt 0.611105 0.820493 +vt 0.606709 0.824625 +vt 0.593187 0.822283 +vt 0.593791 0.827900 +vt 0.595719 0.830248 +vt 0.601264 0.829164 +vt 0.600327 0.832143 +vt 0.599532 0.832377 +vt 0.597151 0.835214 +vt 0.604857 0.821168 +vt 0.604795 0.823471 +vt 0.602935 0.825018 +vt 0.591823 0.819179 +vt 0.591056 0.808176 +vt 0.587042 0.802812 +vt 0.586570 0.801149 +vt 0.613441 0.791247 +vt 0.614408 0.794065 +vt 0.615264 0.803174 +vt 0.611867 0.785936 +vt 0.615972 0.811706 +vt 0.612444 0.820047 +vt 0.615653 0.816542 +vt 0.607692 0.824822 +vt 0.605765 0.824693 +vt 0.593033 0.820103 +vt 0.592708 0.820907 +vt 0.594022 0.830201 +vt 0.594912 0.832357 +vt 0.593192 0.826486 +vt 0.592753 0.824017 +vt 0.602480 0.827602 +vt 0.602336 0.829286 +vt 0.601627 0.831574 +vt 0.599777 0.833887 +vt 0.598093 0.835953 +vt 0.604269 0.826262 +vt 0.602915 0.826366 +vt 0.603390 0.826353 +vt 0.591929 0.810598 +vt 0.591575 0.818092 +vt 0.591769 0.813994 +vt 0.591703 0.820894 +vt 0.589309 0.808115 +vt 0.587395 0.805930 +vt 0.586081 0.797476 +vt 0.614656 0.786608 +vt 0.615629 0.799982 +vt 0.610976 0.779727 +vt 0.617162 0.809099 +vt 0.613972 0.820876 +vt 0.613505 0.821277 +vt 0.616840 0.819498 +vt 0.609705 0.826436 +vt 0.612093 0.823145 +vt 0.607388 0.827492 +vt 0.606147 0.827857 +vt 0.592247 0.822519 +vt 0.593260 0.828751 +vt 0.595576 0.832726 +vt 0.601240 0.836277 +vt 0.596935 0.838114 +vt 0.605204 0.826419 +vt 0.590621 0.819561 +vt 0.590972 0.816610 +vt 0.591147 0.813021 +vt 0.585250 0.807186 +vt 0.584632 0.788481 +vt 0.583414 0.799142 +vt 0.614427 0.790659 +vt 0.618991 0.801345 +vt 0.612856 0.783158 +vt 0.617320 0.814296 +vt 0.618595 0.808871 +vt 0.611673 0.826021 +vt 0.593708 0.834697 +vt 0.592776 0.830681 +vt 0.596236 0.836022 +vt 0.595060 0.836605 +vt 0.592618 0.825813 +vt 0.591807 0.824490 +vt 0.603271 0.829083 +vt 0.602932 0.831116 +vt 0.602054 0.833852 +vt 0.599640 0.836291 +vt 0.598754 0.838969 +vt 0.603807 0.828548 +vt 0.604234 0.829176 +vt 0.590549 0.822087 +vt 0.587609 0.810429 +vt 0.588882 0.811763 +vt 0.582081 0.802996 +vt 0.615812 0.791291 +vt 0.616427 0.796573 +vt 0.617528 0.798343 +vt 0.613436 0.781116 +vt 0.617474 0.825229 +vt 0.615317 0.830070 +vt 0.618056 0.817946 +vt 0.609437 0.829664 +vt 0.607214 0.830485 +vt 0.591231 0.822892 +vt 0.593497 0.831115 +vt 0.603002 0.833247 +vt 0.602057 0.835648 +vt 0.596524 0.846387 +vt 0.588849 0.823839 +vt 0.585400 0.813829 +vt 0.582564 0.810929 +vt 0.581373 0.789481 +vt 0.580924 0.799417 +vt 0.616232 0.788575 +vt 0.619592 0.803244 +vt 0.619206 0.797629 +vt 0.614411 0.780332 +vt 0.612607 0.775158 +vt 0.619357 0.811790 +vt 0.616840 0.828669 +vt 0.617984 0.822196 +vt 0.614100 0.831016 +vt 0.619454 0.815363 +vt 0.612260 0.833660 +vt 0.606465 0.832231 +vt 0.604636 0.830051 +vt 0.594621 0.841227 +vt 0.593054 0.833460 +vt 0.592144 0.827845 +vt 0.592053 0.826116 +vt 0.590668 0.824244 +vt 0.603834 0.830294 +vt 0.603722 0.831830 +vt 0.600747 0.837792 +vt 0.602034 0.836946 +vt 0.602738 0.835010 +vt 0.599837 0.849486 +vt 0.590323 0.823271 +vt 0.581741 0.807323 +vt 0.581112 0.802258 +vt 0.616383 0.787077 +vt 0.617379 0.794472 +vt 0.619633 0.808753 +vt 0.620482 0.800815 +vt 0.619921 0.799444 +vt 0.617938 0.795388 +vt 0.616188 0.783806 +vt 0.618948 0.831464 +vt 0.618425 0.826226 +vt 0.617009 0.833007 +vt 0.615773 0.835221 +vt 0.619086 0.823824 +vt 0.619526 0.817888 +vt 0.608293 0.833226 +vt 0.609829 0.835894 +vt 0.607412 0.838413 +vt 0.592790 0.837739 +vt 0.592012 0.829928 +vt 0.591789 0.833182 +vt 0.591639 0.825655 +vt 0.591226 0.825337 +vt 0.603628 0.833127 +vt 0.601916 0.839070 +vt 0.603002 0.837116 +vt 0.603710 0.835362 +vt 0.599889 0.856199 +vt 0.592828 0.846030 +vt 0.583632 0.815031 +vt 0.580915 0.806399 +vt 0.579347 0.792839 +vt 0.577797 0.802357 +vt 0.617391 0.789879 +vt 0.620856 0.808615 +vt 0.620797 0.803200 +vt 0.620282 0.797550 +vt 0.618746 0.794768 +vt 0.615438 0.779689 +vt 0.615125 0.776255 +vt 0.620401 0.810705 +vt 0.618379 0.832460 +vt 0.613508 0.835307 +vt 0.613194 0.833888 +vt 0.619777 0.821714 +vt 0.620270 0.817336 +vt 0.611486 0.837923 +vt 0.604432 0.832673 +vt 0.605268 0.835755 +vt 0.604188 0.831217 +vt 0.591472 0.828338 +vt 0.591397 0.826655 +vt 0.590602 0.825602 +vt 0.604197 0.844858 +vt 0.601001 0.851246 +vt 0.595557 0.852429 +vt 0.585411 0.819845 +vt 0.583909 0.818060 +vt 0.582847 0.815786 +vt 0.581055 0.813081 +vt 0.577618 0.793724 +vt 0.578482 0.806046 +vt 0.616949 0.785224 +vt 0.617410 0.786816 +vt 0.617930 0.791704 +vt 0.620658 0.805280 +vt 0.620889 0.799378 +vt 0.621375 0.801302 +vt 0.619708 0.795475 +vt 0.616637 0.780055 +vt 0.613242 0.769110 +vt 0.620740 0.812081 +vt 0.619279 0.833171 +vt 0.619661 0.830093 +vt 0.619558 0.826816 +vt 0.617703 0.835566 +vt 0.613974 0.838493 +vt 0.612953 0.836635 +vt 0.620269 0.821639 +vt 0.609958 0.839985 +vt 0.605156 0.840604 +vt 0.592163 0.845551 +vt 0.589946 0.836882 +vt 0.591216 0.830645 +vt 0.602894 0.853192 +vt 0.596132 0.860200 +vt 0.592606 0.849113 +vt 0.585583 0.824565 +vt 0.589949 0.830467 +vt 0.581968 0.814622 +vt 0.576479 0.805218 +vt 0.576210 0.799842 +vt 0.618120 0.787565 +vt 0.618232 0.789593 +vt 0.621461 0.811189 +vt 0.621389 0.807412 +vt 0.621488 0.804863 +vt 0.621821 0.803064 +vt 0.620773 0.795630 +vt 0.621236 0.797456 +vt 0.619222 0.793272 +vt 0.616133 0.776851 +vt 0.615716 0.774012 +vt 0.619953 0.832814 +vt 0.619231 0.834866 +vt 0.618942 0.839526 +vt 0.615514 0.840201 +vt 0.620702 0.825642 +vt 0.621306 0.817377 +vt 0.621003 0.821205 +vt 0.613261 0.845507 +vt 0.606103 0.847245 +vt 0.603381 0.859603 +vt 0.594124 0.855881 +vt 0.599130 0.863874 +vt 0.593142 0.851954 +vt 0.584017 0.822088 +vt 0.586613 0.828148 +vt 0.583352 0.818759 +vt 0.582425 0.816245 +vt 0.579037 0.810629 +vt 0.581195 0.815700 +vt 0.576988 0.808951 +vt 0.574295 0.796101 +vt 0.617686 0.782627 +vt 0.618215 0.783050 +vt 0.619260 0.791518 +vt 0.621963 0.799565 +vt 0.622506 0.801420 +vt 0.620086 0.793463 +vt 0.617445 0.778028 +vt 0.614774 0.769124 +vt 0.621740 0.814503 +vt 0.620431 0.831825 +vt 0.620752 0.829525 +vt 0.609049 0.846952 +vt 0.591363 0.848500 +vt 0.589561 0.844731 +vt 0.604481 0.851375 +vt 0.600748 0.859700 +vt 0.604629 0.854457 +vt 0.593855 0.859722 +vt 0.597222 0.865444 +vt 0.591836 0.853099 +vt 0.583989 0.824951 +vt 0.585532 0.827541 +vt 0.587163 0.832525 +vt 0.582216 0.817741 +vt 0.580001 0.812769 +vt 0.580296 0.815726 +vt 0.574835 0.803353 +vt 0.575405 0.807854 +vt 0.571985 0.789414 +vt 0.617682 0.780510 +vt 0.618918 0.785508 +vt 0.618924 0.789033 +vt 0.622368 0.810260 +vt 0.622251 0.806428 +vt 0.622366 0.804460 +vt 0.622587 0.803103 +vt 0.621575 0.796092 +vt 0.621070 0.793694 +vt 0.622105 0.798328 +vt 0.617198 0.774683 +vt 0.616495 0.771560 +vt 0.622144 0.812391 +vt 0.620987 0.837271 +vt 0.620913 0.834204 +vt 0.617540 0.846870 +vt 0.621458 0.827784 +vt 0.622086 0.820312 +vt 0.622116 0.817602 +vt 0.610749 0.854869 +vt 0.607275 0.851086 +vt 0.587892 0.842023 +vt 0.601856 0.867111 +vt 0.605680 0.859743 +vt 0.592521 0.854835 +vt 0.595028 0.866753 +vt 0.598568 0.868240 +vt 0.583057 0.822444 +vt 0.584894 0.826566 +vt 0.585925 0.830382 +vt 0.576421 0.816952 +vt 0.578956 0.812950 +vt 0.581870 0.818936 +vt 0.574810 0.814494 +vt 0.570996 0.793392 +vt 0.573180 0.800271 +vt 0.618756 0.780864 +vt 0.619703 0.789425 +vt 0.622396 0.808307 +vt 0.622677 0.799842 +vt 0.623326 0.804078 +vt 0.622127 0.796989 +vt 0.621521 0.794875 +vt 0.620605 0.792272 +vt 0.622662 0.798278 +vt 0.620008 0.791499 +vt 0.617770 0.775593 +vt 0.622474 0.814034 +vt 0.621133 0.832320 +vt 0.620671 0.839450 +vt 0.619545 0.844739 +vt 0.616561 0.853245 +vt 0.621180 0.830533 +vt 0.622273 0.823587 +vt 0.622482 0.816031 +vt 0.608616 0.852516 +vt 0.614789 0.861329 +vt 0.606256 0.852240 +vt 0.604952 0.852338 +vt 0.590183 0.849051 +vt 0.588743 0.848469 +vt 0.587034 0.837577 +vt 0.603069 0.869219 +vt 0.604963 0.863927 +vt 0.607476 0.856292 +vt 0.593796 0.863762 +vt 0.592416 0.860421 +vt 0.600389 0.869808 +vt 0.596128 0.870580 +vt 0.590808 0.858127 +vt 0.583063 0.825585 +vt 0.584023 0.827332 +vt 0.584835 0.828370 +vt 0.585773 0.833582 +vt 0.578306 0.814786 +vt 0.579122 0.815212 +vt 0.579280 0.818135 +vt 0.573729 0.813664 +vt 0.570274 0.789294 +vt 0.573050 0.805099 +vt 0.619628 0.781686 +vt 0.622922 0.808877 +vt 0.622860 0.812330 +vt 0.622808 0.805201 +vt 0.622969 0.807421 +vt 0.623020 0.800844 +vt 0.623753 0.802540 +vt 0.622192 0.795066 +vt 0.621079 0.792618 +vt 0.621982 0.793291 +vt 0.617046 0.770968 +vt 0.618701 0.771300 +vt 0.619109 0.777611 +vt 0.621887 0.836301 +vt 0.621601 0.832740 +vt 0.621394 0.839186 +vt 0.620307 0.848957 +vt 0.618038 0.854166 +vt 0.615811 0.856814 +vt 0.621909 0.830697 +vt 0.622823 0.822281 +vt 0.622622 0.819151 +vt 0.622571 0.817821 +vt 0.622014 0.826708 +vt 0.608743 0.855571 +vt 0.613266 0.860497 +vt 0.589575 0.848477 +vt 0.586604 0.841126 +vt 0.601884 0.871263 +vt 0.606934 0.863702 +vt 0.607923 0.857465 +vt 0.591761 0.871599 +vt 0.594698 0.873182 +vt 0.597419 0.874837 +vt 0.587775 0.855189 +vt 0.582522 0.826826 +vt 0.584970 0.830515 +vt 0.581582 0.821415 +vt 0.577299 0.820784 +vt 0.574594 0.817179 +vt 0.572623 0.818509 +vt 0.570081 0.784570 +vt 0.569398 0.793148 +vt 0.620186 0.786555 +vt 0.620387 0.790167 +vt 0.623422 0.810354 +vt 0.623307 0.805850 +vt 0.623420 0.799420 +vt 0.624135 0.805058 +vt 0.622558 0.795343 +vt 0.621161 0.791192 +vt 0.621812 0.792659 +vt 0.622930 0.796350 +vt 0.619017 0.774547 +vt 0.623071 0.814218 +vt 0.622735 0.815006 +vt 0.620354 0.843720 +vt 0.621763 0.841729 +vt 0.619070 0.852699 +vt 0.617367 0.857285 +vt 0.622272 0.829296 +vt 0.622867 0.823968 +vt 0.623077 0.820589 +vt 0.622879 0.818398 +vt 0.622729 0.827210 +vt 0.609407 0.858550 +vt 0.615523 0.860110 +vt 0.614767 0.863513 +vt 0.611467 0.861035 +vt 0.588643 0.851276 +vt 0.587457 0.847393 +vt 0.586129 0.839259 +vt 0.585064 0.836177 +vt 0.603533 0.873108 +vt 0.604976 0.868227 +vt 0.606452 0.867682 +vt 0.593077 0.872735 +vt 0.591486 0.868970 +vt 0.590755 0.866749 +vt 0.590603 0.863587 +vt 0.601044 0.877118 +vt 0.595454 0.878520 +vt 0.593320 0.875088 +vt 0.589502 0.864955 +vt 0.583417 0.828050 +vt 0.584145 0.829965 +vt 0.584792 0.833748 +vt 0.576059 0.826148 +vt 0.579165 0.819551 +vt 0.573829 0.824055 +vt 0.580290 0.821902 +vt 0.571326 0.810721 +vt 0.571974 0.815184 +vt 0.571473 0.783537 +vt 0.569359 0.788299 +vt 0.569014 0.799226 +vt 0.570655 0.804341 +vt 0.620191 0.782345 +vt 0.620024 0.779261 +vt 0.623593 0.808112 +vt 0.623879 0.812971 +vt 0.623528 0.807056 +vt 0.623434 0.797312 +vt 0.623967 0.800965 +vt 0.624460 0.801505 +vt 0.623606 0.804998 +vt 0.622837 0.793353 +vt 0.621977 0.791693 +vt 0.619889 0.772537 +vt 0.619389 0.776123 +vt 0.623015 0.815783 +vt 0.622376 0.833430 +vt 0.623023 0.840546 +vt 0.621071 0.844025 +vt 0.620265 0.852430 +vt 0.618434 0.858928 +vt 0.619130 0.856142 +vt 0.617292 0.860526 +vt 0.623029 0.823182 +vt 0.623011 0.825704 +vt 0.623421 0.821986 +vt 0.623051 0.819328 +vt 0.616725 0.861898 +vt 0.615875 0.862310 +vt 0.613552 0.864547 +vt 0.615594 0.863309 +vt 0.587198 0.848916 +vt 0.586041 0.847313 +vt 0.585741 0.841050 +vt 0.604697 0.870335 +vt 0.602933 0.875513 +vt 0.608443 0.858925 +vt 0.607696 0.866832 +vt 0.591906 0.875324 +vt 0.590094 0.870303 +vt 0.593808 0.876938 +vt 0.597214 0.877650 +vt 0.586151 0.855283 +vt 0.587168 0.852469 +vt 0.582810 0.829655 +vt 0.584539 0.831935 +vt 0.578784 0.823491 +vt 0.572719 0.821138 +vt 0.571733 0.818091 +vt 0.570138 0.777299 +vt 0.569330 0.785211 +vt 0.567688 0.791939 +vt 0.620792 0.789225 +vt 0.620961 0.784552 +vt 0.620139 0.776156 +vt 0.624252 0.810053 +vt 0.624412 0.795896 +vt 0.624146 0.798755 +vt 0.625239 0.804105 +vt 0.623098 0.794566 +vt 0.622388 0.792028 +vt 0.623741 0.794905 +vt 0.623420 0.816536 +vt 0.623170 0.834346 +vt 0.623182 0.843345 +vt 0.622320 0.846164 +vt 0.621376 0.846601 +vt 0.621306 0.851405 +vt 0.619754 0.854144 +vt 0.623135 0.832373 +vt 0.623208 0.823216 +vt 0.623513 0.824844 +vt 0.624051 0.821020 +vt 0.622814 0.819133 +vt 0.623594 0.819690 +vt 0.623299 0.827477 +vt 0.622868 0.829383 +vt 0.609242 0.861596 +vt 0.615126 0.865730 +vt 0.615814 0.864752 +vt 0.611547 0.865926 +vt 0.584598 0.838929 +vt 0.585191 0.840035 +vt 0.583867 0.834185 +vt 0.604667 0.873147 +vt 0.605331 0.870758 +vt 0.607594 0.863048 +vt 0.607042 0.870822 +vt 0.591008 0.877289 +vt 0.594398 0.879598 +vt 0.592662 0.877825 +vt 0.600102 0.882141 +vt 0.596332 0.882111 +vt 0.588008 0.864125 +vt 0.581400 0.826047 +vt 0.583685 0.831540 +vt 0.574728 0.838324 +vt 0.578738 0.833704 +vt 0.571595 0.821655 +vt 0.570910 0.823089 +vt 0.570777 0.814094 +vt 0.569124 0.806244 +vt 0.571111 0.816383 +vt 0.568466 0.782273 +vt 0.567594 0.787936 +vt 0.567443 0.800120 +vt 0.621022 0.788070 +vt 0.620566 0.780511 +vt 0.620769 0.782237 +vt 0.620948 0.786636 +vt 0.620777 0.778600 +vt 0.624308 0.806448 +vt 0.624933 0.812830 +vt 0.624886 0.806281 +vt 0.625574 0.801720 +vt 0.623591 0.791760 +vt 0.621270 0.789566 +vt 0.621731 0.790260 +vt 0.622606 0.790322 +vt 0.620955 0.774080 +vt 0.624366 0.815147 +vt 0.623627 0.837685 +vt 0.624324 0.841080 +vt 0.621314 0.848695 +vt 0.620838 0.854009 +vt 0.618432 0.862540 +vt 0.619357 0.858405 +vt 0.619914 0.856661 +vt 0.617264 0.861816 +vt 0.623410 0.826082 +vt 0.623946 0.823160 +vt 0.623454 0.818281 +vt 0.616320 0.863727 +vt 0.614632 0.866900 +vt 0.613795 0.867542 +vt 0.586097 0.851192 +vt 0.586016 0.848589 +vt 0.584339 0.844139 +vt 0.583815 0.837449 +vt 0.584156 0.841899 +vt 0.609666 0.871321 +vt 0.589053 0.875776 +vt 0.592918 0.879664 +vt 0.594696 0.883023 +vt 0.597606 0.881575 +vt 0.585999 0.853121 +vt 0.585126 0.858718 +vt 0.587622 0.869327 +vt 0.583120 0.830819 +vt 0.581482 0.831296 +vt 0.579952 0.825117 +vt 0.570754 0.820626 +vt 0.568025 0.772254 +vt 0.566205 0.783935 +vt 0.565991 0.790081 +vt 0.621055 0.782238 +vt 0.621321 0.786282 +vt 0.621105 0.776922 +vt 0.625112 0.809946 +vt 0.624716 0.792312 +vt 0.624737 0.797402 +vt 0.624958 0.799978 +vt 0.626000 0.805680 +vt 0.622129 0.790508 +vt 0.621119 0.775641 +vt 0.620704 0.772496 +vt 0.624802 0.817238 +vt 0.623878 0.833664 +vt 0.624078 0.837147 +vt 0.623979 0.843971 +vt 0.623449 0.846259 +vt 0.622513 0.848424 +vt 0.621576 0.854791 +vt 0.622028 0.850474 +vt 0.620771 0.856730 +vt 0.617649 0.862565 +vt 0.618897 0.862901 +vt 0.619140 0.860488 +vt 0.623755 0.829976 +vt 0.623866 0.826358 +vt 0.625088 0.820221 +vt 0.624809 0.822185 +vt 0.617487 0.863948 +vt 0.615626 0.867744 +vt 0.616134 0.866330 +vt 0.616692 0.865255 +vt 0.613415 0.869546 +vt 0.584894 0.848060 +vt 0.584528 0.846526 +vt 0.583021 0.839575 +vt 0.582004 0.832221 +vt 0.607728 0.876274 +vt 0.591781 0.881652 +vt 0.589961 0.883510 +vt 0.592988 0.881743 +vt 0.593872 0.882764 +vt 0.598508 0.884296 +vt 0.597008 0.884446 +vt 0.595930 0.884160 +vt 0.584409 0.854663 +vt 0.582995 0.832598 +vt 0.570504 0.827900 +vt 0.579175 0.839617 +vt 0.581038 0.835565 +vt 0.571115 0.821543 +vt 0.568810 0.817049 +vt 0.568138 0.812202 +vt 0.569742 0.820898 +vt 0.566325 0.771945 +vt 0.565618 0.805195 +vt 0.564137 0.796348 +vt 0.621671 0.788572 +vt 0.621322 0.787388 +vt 0.620849 0.779856 +vt 0.621010 0.780902 +vt 0.621610 0.783559 +vt 0.621746 0.785470 +vt 0.621704 0.778168 +vt 0.625588 0.812061 +vt 0.625102 0.815548 +vt 0.625571 0.793932 +vt 0.625504 0.797166 +vt 0.626646 0.802799 +vt 0.624226 0.789689 +vt 0.622223 0.788767 +vt 0.621611 0.774889 +vt 0.621714 0.773608 +vt 0.623714 0.831994 +vt 0.624321 0.838341 +vt 0.624784 0.845315 +vt 0.622409 0.852528 +vt 0.618197 0.864901 +vt 0.618784 0.865092 +vt 0.620102 0.859682 +vt 0.620441 0.858067 +vt 0.624321 0.825040 +vt 0.624964 0.824793 +vt 0.623995 0.827873 +vt 0.612297 0.871382 +vt 0.614865 0.868418 +vt 0.614460 0.869392 +vt 0.584863 0.850545 +vt 0.583002 0.844729 +vt 0.583339 0.845649 +vt 0.583023 0.842123 +vt 0.581965 0.838856 +vt 0.609506 0.876805 +vt 0.587896 0.883507 +vt 0.586977 0.873412 +vt 0.594405 0.885150 +vt 0.600303 0.889483 +vt 0.584370 0.865235 +vt 0.584534 0.858300 +vt 0.568998 0.833865 +vt 0.580358 0.837587 +vt 0.578921 0.843769 +vt 0.567226 0.766074 +vt 0.565337 0.788173 +vt 0.564763 0.782187 +vt 0.564579 0.800683 +vt 0.564033 0.790096 +vt 0.621159 0.779517 +vt 0.621438 0.781944 +vt 0.621843 0.787208 +vt 0.621747 0.776111 +vt 0.626166 0.810998 +vt 0.625870 0.816630 +vt 0.626109 0.822142 +vt 0.624212 0.831906 +vt 0.624505 0.834984 +vt 0.624570 0.836868 +vt 0.625087 0.838798 +vt 0.624291 0.845845 +vt 0.625095 0.843127 +vt 0.623849 0.851088 +vt 0.622857 0.851251 +vt 0.621420 0.856555 +vt 0.622839 0.853233 +vt 0.619777 0.862344 +vt 0.619367 0.865463 +vt 0.620779 0.858344 +vt 0.624701 0.826974 +vt 0.625391 0.823082 +vt 0.624374 0.828738 +vt 0.611553 0.874597 +vt 0.617220 0.867129 +vt 0.615600 0.870083 +vt 0.614390 0.871022 +vt 0.613703 0.872012 +vt 0.583036 0.847635 +vt 0.582428 0.840940 +vt 0.590610 0.886883 +vt 0.587872 0.888174 +vt 0.585943 0.874742 +vt 0.583704 0.868467 +vt 0.592109 0.884257 +vt 0.593125 0.885832 +vt 0.598981 0.888350 +vt 0.597447 0.885656 +vt 0.596634 0.885016 +vt 0.595786 0.886659 +vt 0.582794 0.861979 +vt 0.582852 0.859102 +vt 0.570987 0.848526 +vt 0.580727 0.840049 +vt 0.580300 0.842645 +vt 0.578118 0.847464 +vt 0.567562 0.817299 +vt 0.565254 0.812195 +vt 0.564243 0.772047 +vt 0.561684 0.798220 +vt 0.562039 0.790604 +vt 0.621581 0.779751 +vt 0.622190 0.783277 +vt 0.622408 0.785790 +vt 0.622765 0.775407 +vt 0.624551 0.786684 +vt 0.622420 0.774594 +vt 0.624505 0.833204 +vt 0.625243 0.841002 +vt 0.624660 0.848862 +vt 0.625245 0.844718 +vt 0.625117 0.846448 +vt 0.624201 0.849037 +vt 0.621531 0.858691 +vt 0.622135 0.856644 +vt 0.618266 0.866185 +vt 0.619022 0.865859 +vt 0.621060 0.862077 +vt 0.624549 0.830206 +vt 0.625623 0.825307 +vt 0.612548 0.874197 +vt 0.616189 0.868651 +vt 0.583903 0.852377 +vt 0.583758 0.849805 +vt 0.582663 0.843034 +vt 0.582336 0.845435 +vt 0.581031 0.842420 +vt 0.611605 0.875876 +vt 0.589428 0.891449 +vt 0.586652 0.883305 +vt 0.593364 0.888062 +vt 0.598442 0.889996 +vt 0.597103 0.886344 +vt 0.594306 0.888540 +vt 0.582196 0.865207 +vt 0.582137 0.855800 +vt 0.574889 0.848023 +vt 0.567289 0.841612 +vt 0.567657 0.827894 +vt 0.580313 0.841106 +vt 0.580232 0.846338 +vt 0.576401 0.849464 +vt 0.579719 0.847186 +vt 0.563066 0.783513 +vt 0.563365 0.779205 +vt 0.561624 0.804191 +vt 0.561739 0.795389 +vt 0.561493 0.785839 +vt 0.622564 0.780309 +vt 0.622284 0.778848 +vt 0.623224 0.785949 +vt 0.627552 0.817800 +vt 0.624480 0.832346 +vt 0.624796 0.834126 +vt 0.624880 0.835877 +vt 0.625373 0.836598 +vt 0.625761 0.840090 +vt 0.626029 0.843472 +vt 0.624463 0.850890 +vt 0.623741 0.852989 +vt 0.622887 0.857978 +vt 0.618739 0.867173 +vt 0.620655 0.866248 +vt 0.624803 0.831849 +vt 0.624905 0.828775 +vt 0.611900 0.876396 +vt 0.616761 0.869007 +vt 0.614144 0.871607 +vt 0.614939 0.872597 +vt 0.613224 0.875175 +vt 0.581992 0.848010 +vt 0.582609 0.850837 +vt 0.610876 0.878175 +vt 0.592378 0.887617 +vt 0.590478 0.892192 +vt 0.586038 0.886152 +vt 0.588023 0.892926 +vt 0.584690 0.879179 +vt 0.584184 0.873594 +vt 0.601323 0.892656 +vt 0.596125 0.888905 +vt 0.582378 0.872253 +vt 0.579702 0.860867 +vt 0.575487 0.853385 +vt 0.568971 0.850243 +vt 0.566663 0.834629 +vt 0.567033 0.831139 +vt 0.581265 0.844031 +vt 0.578576 0.852815 +vt 0.579874 0.849706 +vt 0.565962 0.820022 +vt 0.562583 0.775529 +vt 0.559774 0.813821 +vt 0.558356 0.799421 +vt 0.559691 0.795585 +vt 0.560676 0.784995 +vt 0.559419 0.792930 +vt 0.623284 0.783173 +vt 0.623243 0.776604 +vt 0.623347 0.774500 +vt 0.624324 0.783757 +vt 0.627314 0.823753 +vt 0.626478 0.826192 +vt 0.625209 0.834835 +vt 0.625092 0.833263 +vt 0.626112 0.838002 +vt 0.625233 0.848864 +vt 0.625778 0.845624 +vt 0.624660 0.853270 +vt 0.622381 0.858364 +vt 0.617736 0.868364 +vt 0.619413 0.868992 +vt 0.622469 0.866543 +vt 0.622594 0.860175 +vt 0.625332 0.830079 +vt 0.625613 0.827932 +vt 0.612491 0.876152 +vt 0.616951 0.871525 +vt 0.615878 0.872101 +vt 0.581068 0.846301 +vt 0.591350 0.891460 +vt 0.589693 0.895591 +vt 0.592907 0.889106 +vt 0.599051 0.892659 +vt 0.596773 0.891938 +vt 0.580819 0.870376 +vt 0.573381 0.859161 +vt 0.570401 0.854861 +vt 0.567760 0.848842 +vt 0.565739 0.838395 +vt 0.565533 0.830747 +vt 0.580855 0.848560 +vt 0.576520 0.856722 +vt 0.565909 0.824218 +vt 0.563700 0.819772 +vt 0.561217 0.780295 +vt 0.561133 0.778517 +vt 0.563215 0.771047 +vt 0.556615 0.808448 +vt 0.560189 0.789137 +vt 0.623495 0.779507 +vt 0.625876 0.835028 +vt 0.626647 0.839469 +vt 0.626406 0.841399 +vt 0.625363 0.850312 +vt 0.625605 0.846725 +vt 0.626558 0.845856 +vt 0.625355 0.852287 +vt 0.624596 0.855991 +vt 0.618324 0.870871 +vt 0.620365 0.870863 +vt 0.621714 0.870577 +vt 0.625715 0.832538 +vt 0.611979 0.881036 +vt 0.615930 0.874272 +vt 0.613306 0.876969 +vt 0.581431 0.851874 +vt 0.591181 0.895597 +vt 0.584969 0.886798 +vt 0.586286 0.890037 +vt 0.588663 0.896723 +vt 0.583068 0.877950 +vt 0.599529 0.895014 +vt 0.595506 0.894794 +vt 0.579342 0.874780 +vt 0.578816 0.866361 +vt 0.580216 0.855530 +vt 0.575629 0.859390 +vt 0.569589 0.856018 +vt 0.568141 0.851545 +vt 0.566253 0.845263 +vt 0.565846 0.834409 +vt 0.565629 0.841395 +vt 0.565747 0.827086 +vt 0.577632 0.859423 +vt 0.561155 0.772567 +vt 0.561139 0.824501 +vt 0.556683 0.817464 +vt 0.555174 0.803501 +vt 0.557843 0.792197 +vt 0.558924 0.786202 +vt 0.559753 0.783149 +vt 0.624406 0.778172 +vt 0.626666 0.827948 +vt 0.627191 0.836818 +vt 0.627088 0.843457 +vt 0.625662 0.849142 +vt 0.626055 0.847316 +vt 0.625086 0.853813 +vt 0.624449 0.858539 +vt 0.624686 0.860847 +vt 0.619118 0.873964 +vt 0.622527 0.868628 +vt 0.623409 0.864177 +vt 0.626707 0.831484 +vt 0.613175 0.878888 +vt 0.614337 0.875270 +vt 0.592795 0.890717 +vt 0.592429 0.895108 +vt 0.591047 0.897027 +vt 0.585583 0.888895 +vt 0.583072 0.883770 +vt 0.584924 0.889692 +vt 0.590160 0.898413 +vt 0.587307 0.898552 +vt 0.597443 0.893015 +vt 0.601170 0.897480 +vt 0.593451 0.891744 +vt 0.596976 0.895230 +vt 0.577759 0.865876 +vt 0.570296 0.858739 +vt 0.575390 0.862471 +vt 0.569020 0.852916 +vt 0.567279 0.851481 +vt 0.567110 0.848983 +vt 0.565401 0.836832 +vt 0.565104 0.840050 +vt 0.564664 0.833082 +vt 0.564373 0.829098 +vt 0.576615 0.859229 +vt 0.559171 0.775721 +vt 0.560826 0.767561 +vt 0.558121 0.821353 +vt 0.555696 0.815161 +vt 0.554966 0.807037 +vt 0.555063 0.797613 +vt 0.627320 0.841553 +vt 0.627515 0.838901 +vt 0.625935 0.851347 +vt 0.626123 0.850119 +vt 0.627414 0.845866 +vt 0.627059 0.849762 +vt 0.625624 0.853961 +vt 0.625366 0.855455 +vt 0.625116 0.857034 +vt 0.617377 0.875178 +vt 0.621101 0.874715 +vt 0.622742 0.871347 +vt 0.623528 0.866980 +vt 0.613466 0.881322 +vt 0.614928 0.877947 +vt 0.614121 0.877555 +vt 0.592350 0.897787 +vt 0.582638 0.892995 +vt 0.583390 0.894402 +vt 0.590130 0.900149 +vt 0.585830 0.897845 +vt 0.580500 0.877235 +vt 0.603527 0.896920 +vt 0.599685 0.898109 +vt 0.593397 0.894679 +vt 0.595754 0.895658 +vt 0.577278 0.872081 +vt 0.571164 0.863583 +vt 0.576624 0.862679 +vt 0.574352 0.865914 +vt 0.568800 0.856347 +vt 0.565962 0.847031 +vt 0.565283 0.843431 +vt 0.564883 0.837690 +vt 0.564904 0.834894 +vt 0.563515 0.831953 +vt 0.558351 0.780311 +vt 0.559053 0.771490 +vt 0.558584 0.826582 +vt 0.556858 0.825222 +vt 0.554602 0.810442 +vt 0.555368 0.821464 +vt 0.554004 0.807184 +vt 0.553668 0.801257 +vt 0.554569 0.791570 +vt 0.556900 0.789435 +vt 0.627476 0.829167 +vt 0.628067 0.831474 +vt 0.628470 0.838235 +vt 0.628261 0.843806 +vt 0.626331 0.852916 +vt 0.627838 0.848510 +vt 0.625436 0.859100 +vt 0.624441 0.863015 +vt 0.619585 0.877847 +vt 0.618270 0.879251 +vt 0.623932 0.869804 +vt 0.612832 0.884235 +vt 0.616688 0.879137 +vt 0.593261 0.898165 +vt 0.592417 0.901033 +vt 0.578426 0.879184 +vt 0.587360 0.905031 +vt 0.602662 0.898985 +vt 0.600159 0.900817 +vt 0.598358 0.897569 +vt 0.595270 0.898436 +vt 0.577418 0.876640 +vt 0.575313 0.869471 +vt 0.569151 0.861787 +vt 0.568145 0.857763 +vt 0.566604 0.852712 +vt 0.565225 0.849773 +vt 0.564154 0.839201 +vt 0.564115 0.841596 +vt 0.563512 0.834596 +vt 0.562071 0.832885 +vt 0.558112 0.774765 +vt 0.557975 0.777009 +vt 0.555960 0.825259 +vt 0.554760 0.814327 +vt 0.554742 0.818416 +vt 0.553370 0.803517 +vt 0.552715 0.798510 +vt 0.552981 0.795548 +vt 0.556243 0.780959 +vt 0.555532 0.782688 +vt 0.628195 0.840953 +vt 0.626532 0.851213 +vt 0.628412 0.845977 +vt 0.628425 0.853096 +vt 0.626140 0.854191 +vt 0.625942 0.855175 +vt 0.625584 0.856347 +vt 0.625947 0.857178 +vt 0.625489 0.861147 +vt 0.625045 0.862786 +vt 0.622391 0.875321 +vt 0.621494 0.877067 +vt 0.623884 0.873412 +vt 0.624969 0.865504 +vt 0.610871 0.888124 +vt 0.613785 0.885525 +vt 0.616658 0.885599 +vt 0.576056 0.887616 +vt 0.581435 0.896367 +vt 0.582210 0.899883 +vt 0.591009 0.906392 +vt 0.589585 0.902635 +vt 0.585900 0.904689 +vt 0.601589 0.901617 +vt 0.604181 0.899309 +vt 0.599210 0.900259 +vt 0.597366 0.899596 +vt 0.595802 0.902831 +vt 0.574234 0.875878 +vt 0.573185 0.870393 +vt 0.568932 0.866028 +vt 0.564290 0.844320 +vt 0.564894 0.847520 +vt 0.563759 0.836330 +vt 0.557544 0.831814 +vt 0.556626 0.827145 +vt 0.553970 0.815661 +vt 0.554591 0.824999 +vt 0.554475 0.822058 +vt 0.553221 0.809224 +vt 0.551383 0.805284 +vt 0.552041 0.799949 +vt 0.555443 0.788674 +vt 0.552891 0.793473 +vt 0.555317 0.785346 +vt 0.627201 0.852072 +vt 0.629074 0.845233 +vt 0.628558 0.848619 +vt 0.626895 0.854546 +vt 0.625685 0.855790 +vt 0.626537 0.858974 +vt 0.625914 0.860032 +vt 0.623352 0.873985 +vt 0.618141 0.881022 +vt 0.620193 0.880283 +vt 0.624846 0.872978 +vt 0.624942 0.868271 +vt 0.611821 0.889823 +vt 0.612927 0.891058 +vt 0.615062 0.886986 +vt 0.617297 0.882976 +vt 0.594300 0.902375 +vt 0.589323 0.907469 +vt 0.593690 0.905998 +vt 0.585966 0.906969 +vt 0.603168 0.902213 +vt 0.605267 0.900344 +vt 0.600293 0.903971 +vt 0.599370 0.901570 +vt 0.598956 0.901420 +vt 0.566852 0.860589 +vt 0.566870 0.856379 +vt 0.565744 0.852566 +vt 0.564037 0.848980 +vt 0.563370 0.837765 +vt 0.563080 0.839636 +vt 0.563250 0.843772 +vt 0.562924 0.835846 +vt 0.556353 0.774738 +vt 0.562048 0.837323 +vt 0.553277 0.810501 +vt 0.553057 0.820279 +vt 0.552424 0.807787 +vt 0.550590 0.803054 +vt 0.551750 0.795975 +vt 0.552276 0.788378 +vt 0.552009 0.794514 +vt 0.552088 0.792380 +vt 0.554866 0.780074 +vt 0.554300 0.782313 +vt 0.629142 0.853684 +vt 0.625881 0.856106 +vt 0.626848 0.856575 +vt 0.625360 0.862662 +vt 0.626258 0.860932 +vt 0.625545 0.864191 +vt 0.623443 0.876902 +vt 0.622484 0.877596 +vt 0.621857 0.878497 +vt 0.624016 0.876334 +vt 0.624894 0.874980 +vt 0.625995 0.867478 +vt 0.608886 0.893546 +vt 0.614964 0.893211 +vt 0.618723 0.886502 +vt 0.616893 0.891016 +vt 0.578560 0.902891 +vt 0.580839 0.904898 +vt 0.583138 0.903856 +vt 0.591082 0.910013 +vt 0.587515 0.911281 +vt 0.586596 0.909521 +vt 0.583809 0.906219 +vt 0.602825 0.903372 +vt 0.607006 0.897269 +vt 0.601603 0.904653 +vt 0.599201 0.901128 +vt 0.597993 0.901850 +vt 0.596886 0.903221 +vt 0.572268 0.886191 +vt 0.571967 0.878618 +vt 0.570390 0.871316 +vt 0.566824 0.862807 +vt 0.565912 0.855162 +vt 0.565342 0.853608 +vt 0.564438 0.850916 +vt 0.563010 0.836892 +vt 0.554562 0.777681 +vt 0.559294 0.841533 +vt 0.555851 0.830557 +vt 0.552488 0.810652 +vt 0.553297 0.824854 +vt 0.549281 0.804606 +vt 0.551376 0.808953 +vt 0.550272 0.799541 +vt 0.629381 0.849746 +vt 0.629282 0.852096 +vt 0.628737 0.855078 +vt 0.627583 0.856033 +vt 0.626257 0.855961 +vt 0.627592 0.857693 +vt 0.625938 0.862559 +vt 0.625561 0.865646 +vt 0.619727 0.882419 +vt 0.621400 0.881973 +vt 0.618615 0.882941 +vt 0.625857 0.874629 +vt 0.625831 0.871310 +vt 0.610367 0.897217 +vt 0.613869 0.896282 +vt 0.618089 0.888065 +vt 0.574851 0.892377 +vt 0.582182 0.906806 +vt 0.591146 0.914423 +vt 0.592936 0.910363 +vt 0.588593 0.913847 +vt 0.585491 0.909701 +vt 0.585072 0.907630 +vt 0.602882 0.905231 +vt 0.604184 0.905626 +vt 0.608400 0.897885 +vt 0.599072 0.905860 +vt 0.600508 0.907157 +vt 0.598136 0.904231 +vt 0.596062 0.906932 +vt 0.570414 0.876012 +vt 0.567749 0.869580 +vt 0.564928 0.862156 +vt 0.567203 0.865593 +vt 0.563154 0.851162 +vt 0.562410 0.842776 +vt 0.553288 0.774268 +vt 0.555164 0.839931 +vt 0.555104 0.834421 +vt 0.552923 0.817171 +vt 0.552655 0.814183 +vt 0.551952 0.823077 +vt 0.549302 0.800134 +vt 0.549755 0.808494 +vt 0.550922 0.793808 +vt 0.550348 0.795216 +vt 0.550609 0.791061 +vt 0.553351 0.778845 +vt 0.550292 0.784551 +vt 0.629371 0.856927 +vt 0.627380 0.859588 +vt 0.626805 0.861517 +vt 0.626013 0.865543 +vt 0.624085 0.879667 +vt 0.623276 0.880786 +vt 0.622378 0.882208 +vt 0.624879 0.879362 +vt 0.626117 0.877223 +vt 0.626847 0.869856 +vt 0.608768 0.895553 +vt 0.612249 0.898975 +vt 0.614544 0.897851 +vt 0.616817 0.893999 +vt 0.618933 0.891514 +vt 0.619762 0.884853 +vt 0.618210 0.890931 +vt 0.578959 0.906279 +vt 0.573233 0.903745 +vt 0.581870 0.910781 +vt 0.592468 0.914237 +vt 0.586969 0.914350 +vt 0.585825 0.912465 +vt 0.584247 0.910162 +vt 0.606015 0.902085 +vt 0.570455 0.882075 +vt 0.571929 0.900179 +vt 0.565768 0.864186 +vt 0.564449 0.856211 +vt 0.564112 0.853221 +vt 0.561388 0.850648 +vt 0.553979 0.771387 +vt 0.560294 0.847995 +vt 0.558394 0.850010 +vt 0.550901 0.818211 +vt 0.550606 0.811964 +vt 0.551150 0.828444 +vt 0.552042 0.820565 +vt 0.548826 0.826238 +vt 0.547987 0.801376 +vt 0.545913 0.811007 +vt 0.548722 0.797103 +vt 0.549464 0.794311 +vt 0.549628 0.787633 +vt 0.552225 0.778712 +vt 0.551936 0.780865 +vt 0.628601 0.857060 +vt 0.628194 0.859414 +vt 0.626297 0.864238 +vt 0.621333 0.884962 +vt 0.625695 0.880453 +vt 0.626375 0.873755 +vt 0.626027 0.879373 +vt 0.626343 0.875368 +vt 0.627083 0.872557 +vt 0.626610 0.868466 +vt 0.626604 0.866554 +vt 0.610440 0.901884 +vt 0.614325 0.898736 +vt 0.615864 0.896262 +vt 0.617712 0.893117 +vt 0.619476 0.889745 +vt 0.578002 0.906339 +vt 0.578609 0.909132 +vt 0.575667 0.905089 +vt 0.578941 0.911318 +vt 0.592926 0.918208 +vt 0.590033 0.920724 +vt 0.594672 0.914566 +vt 0.585708 0.918474 +vt 0.584837 0.909836 +vt 0.585274 0.911545 +vt 0.603908 0.907305 +vt 0.606855 0.904077 +vt 0.598041 0.910483 +vt 0.603092 0.908707 +vt 0.570023 0.886375 +vt 0.568846 0.896937 +vt 0.569201 0.878750 +vt 0.567326 0.871992 +vt 0.567000 0.869307 +vt 0.563470 0.865377 +vt 0.562598 0.855408 +vt 0.563046 0.856356 +vt 0.551835 0.770871 +vt 0.551167 0.774914 +vt 0.553703 0.847732 +vt 0.553450 0.835683 +vt 0.549717 0.791738 +vt 0.548674 0.789096 +vt 0.547966 0.783003 +vt 0.550650 0.781017 +vt 0.628943 0.859202 +vt 0.630221 0.859776 +vt 0.627614 0.861169 +vt 0.626971 0.865150 +vt 0.624311 0.882789 +vt 0.623652 0.884943 +vt 0.625311 0.884152 +vt 0.626671 0.879629 +vt 0.626627 0.877343 +vt 0.627479 0.871050 +vt 0.626788 0.867663 +vt 0.627092 0.869000 +vt 0.609317 0.901002 +vt 0.612211 0.901563 +vt 0.619159 0.895318 +vt 0.616547 0.898564 +vt 0.619504 0.893013 +vt 0.620762 0.891033 +vt 0.577005 0.905330 +vt 0.575017 0.908631 +vt 0.581984 0.914922 +vt 0.580308 0.916982 +vt 0.584274 0.913154 +vt 0.605000 0.907590 +vt 0.600074 0.913258 +vt 0.602526 0.914208 +vt 0.568439 0.884371 +vt 0.568091 0.891580 +vt 0.564248 0.868129 +vt 0.561986 0.862015 +vt 0.563630 0.858805 +vt 0.566287 0.873477 +vt 0.560100 0.853550 +vt 0.552395 0.770018 +vt 0.556883 0.855683 +vt 0.550396 0.834522 +vt 0.548245 0.830683 +vt 0.546843 0.823003 +vt 0.546938 0.799896 +vt 0.547741 0.796762 +vt 0.548374 0.793981 +vt 0.547584 0.785782 +vt 0.551124 0.778636 +vt 0.549527 0.779460 +vt 0.628445 0.861443 +vt 0.627873 0.862280 +vt 0.622351 0.887842 +vt 0.626444 0.881105 +vt 0.626085 0.884468 +vt 0.626882 0.875052 +vt 0.626783 0.876307 +vt 0.628221 0.871886 +vt 0.627735 0.869715 +vt 0.627359 0.866321 +vt 0.608948 0.904594 +vt 0.612423 0.904139 +vt 0.614499 0.901649 +vt 0.618429 0.896936 +vt 0.617229 0.897433 +vt 0.577070 0.909589 +vt 0.577863 0.911496 +vt 0.576538 0.910346 +vt 0.571928 0.910266 +vt 0.569447 0.908456 +vt 0.578156 0.916155 +vt 0.595192 0.917458 +vt 0.592890 0.925427 +vt 0.586685 0.926827 +vt 0.604228 0.910600 +vt 0.606413 0.909971 +vt 0.599309 0.916716 +vt 0.567251 0.893672 +vt 0.566823 0.876900 +vt 0.567603 0.882340 +vt 0.564619 0.873466 +vt 0.563435 0.873057 +vt 0.560993 0.868846 +vt 0.559522 0.857645 +vt 0.550394 0.772423 +vt 0.550980 0.768859 +vt 0.553813 0.853005 +vt 0.552747 0.843048 +vt 0.550961 0.840436 +vt 0.546929 0.828367 +vt 0.545874 0.795757 +vt 0.548966 0.792688 +vt 0.548008 0.791311 +vt 0.550551 0.776078 +vt 0.546150 0.776615 +vt 0.546196 0.781374 +vt 0.627727 0.864280 +vt 0.624603 0.886683 +vt 0.624574 0.891586 +vt 0.626595 0.883432 +vt 0.626412 0.885745 +vt 0.627978 0.874649 +vt 0.626962 0.880845 +vt 0.627419 0.879443 +vt 0.627367 0.877001 +vt 0.627373 0.868261 +vt 0.610754 0.906488 +vt 0.613775 0.903086 +vt 0.615793 0.901070 +vt 0.619617 0.897334 +vt 0.618133 0.899860 +vt 0.619843 0.895644 +vt 0.577339 0.913825 +vt 0.574898 0.914429 +vt 0.573203 0.914647 +vt 0.568363 0.903944 +vt 0.581618 0.919353 +vt 0.582783 0.917743 +vt 0.579642 0.920371 +vt 0.594458 0.921491 +vt 0.593183 0.930559 +vt 0.582907 0.924047 +vt 0.597066 0.916287 +vt 0.601083 0.916217 +vt 0.606633 0.920437 +vt 0.567995 0.887583 +vt 0.566259 0.888753 +vt 0.566048 0.896320 +vt 0.567286 0.885701 +vt 0.560523 0.860495 +vt 0.565837 0.875726 +vt 0.558917 0.859641 +vt 0.551783 0.845428 +vt 0.553717 0.855327 +vt 0.544191 0.825212 +vt 0.549444 0.837958 +vt 0.546546 0.828608 +vt 0.541817 0.795842 +vt 0.547012 0.796202 +vt 0.547330 0.793929 +vt 0.546840 0.791207 +vt 0.549245 0.774302 +vt 0.545855 0.785242 +vt 0.629087 0.865331 +vt 0.628574 0.863625 +vt 0.625658 0.889788 +vt 0.626848 0.882233 +vt 0.626995 0.884954 +vt 0.629076 0.873765 +vt 0.628343 0.868273 +vt 0.628278 0.865654 +vt 0.608136 0.908800 +vt 0.612946 0.909269 +vt 0.614299 0.903380 +vt 0.616668 0.902775 +vt 0.620676 0.896213 +vt 0.576295 0.914921 +vt 0.571124 0.918292 +vt 0.569963 0.914701 +vt 0.567359 0.907153 +vt 0.566437 0.902149 +vt 0.580893 0.921318 +vt 0.577898 0.919866 +vt 0.596348 0.921555 +vt 0.595357 0.925990 +vt 0.583022 0.920933 +vt 0.583706 0.926929 +vt 0.591712 0.935578 +vt 0.601241 0.919377 +vt 0.602445 0.919425 +vt 0.604123 0.920202 +vt 0.565858 0.891093 +vt 0.565823 0.882376 +vt 0.566295 0.885029 +vt 0.563770 0.877612 +vt 0.561388 0.874243 +vt 0.558764 0.862950 +vt 0.549670 0.770060 +vt 0.557704 0.860614 +vt 0.551557 0.851719 +vt 0.557123 0.861977 +vt 0.542504 0.819319 +vt 0.547164 0.836336 +vt 0.549873 0.841993 +vt 0.538184 0.808191 +vt 0.544803 0.789352 +vt 0.546281 0.788415 +vt 0.543210 0.776710 +vt 0.548768 0.770568 +vt 0.543907 0.782504 +vt 0.629330 0.868427 +vt 0.627216 0.883252 +vt 0.626559 0.888930 +vt 0.626835 0.886722 +vt 0.628310 0.876610 +vt 0.627492 0.881638 +vt 0.628212 0.878375 +vt 0.628895 0.875618 +vt 0.629737 0.872209 +vt 0.610895 0.910707 +vt 0.608104 0.917645 +vt 0.615487 0.907027 +vt 0.618657 0.904993 +vt 0.575447 0.918046 +vt 0.572883 0.918990 +vt 0.567881 0.915042 +vt 0.566987 0.905221 +vt 0.566832 0.910244 +vt 0.581938 0.921772 +vt 0.577577 0.925351 +vt 0.580287 0.923746 +vt 0.595508 0.932099 +vt 0.582512 0.925479 +vt 0.584499 0.929485 +vt 0.585712 0.932882 +vt 0.592682 0.934338 +vt 0.597805 0.923722 +vt 0.607382 0.926904 +vt 0.565670 0.887921 +vt 0.563870 0.895071 +vt 0.562825 0.902323 +vt 0.566154 0.877418 +vt 0.562741 0.876703 +vt 0.558899 0.872690 +vt 0.557600 0.869917 +vt 0.564646 0.879138 +vt 0.549418 0.767872 +vt 0.551171 0.846317 +vt 0.550980 0.854637 +vt 0.552618 0.858704 +vt 0.543041 0.823290 +vt 0.540413 0.816944 +vt 0.547110 0.841798 +vt 0.548263 0.844061 +vt 0.544489 0.834852 +vt 0.534333 0.796615 +vt 0.542996 0.786232 +vt 0.545986 0.790935 +vt 0.543468 0.771861 +vt 0.546214 0.769828 +vt 0.631038 0.870263 +vt 0.626296 0.892014 +vt 0.627563 0.886477 +vt 0.627574 0.883997 +vt 0.627946 0.879724 +vt 0.629985 0.875710 +vt 0.610589 0.917411 +vt 0.613384 0.918193 +vt 0.615735 0.915961 +vt 0.620796 0.902444 +vt 0.576872 0.920689 +vt 0.569202 0.917024 +vt 0.572337 0.923073 +vt 0.566668 0.908398 +vt 0.565781 0.906955 +vt 0.581440 0.923614 +vt 0.579185 0.924856 +vt 0.597084 0.925530 +vt 0.593610 0.933000 +vt 0.596382 0.927637 +vt 0.582184 0.928124 +vt 0.583217 0.929248 +vt 0.588266 0.938663 +vt 0.593079 0.937470 +vt 0.593295 0.934436 +vt 0.608904 0.926171 +vt 0.599574 0.924856 +vt 0.602390 0.923297 +vt 0.606401 0.930450 +vt 0.564535 0.890701 +vt 0.564045 0.905194 +vt 0.565261 0.880938 +vt 0.564717 0.886554 +vt 0.562298 0.879756 +vt 0.561215 0.878076 +vt 0.563570 0.880286 +vt 0.550367 0.850849 +vt 0.554403 0.862579 +vt 0.542413 0.827038 +vt 0.541431 0.822020 +vt 0.544606 0.840907 +vt 0.548387 0.846635 +vt 0.541533 0.830684 +vt 0.538476 0.819403 +vt 0.540304 0.785188 +vt 0.534144 0.809376 +vt 0.541190 0.773502 +vt 0.541880 0.780139 +vt 0.625065 0.895265 +vt 0.627541 0.883086 +vt 0.626857 0.890646 +vt 0.627292 0.888295 +vt 0.627671 0.885110 +vt 0.629093 0.877472 +vt 0.628254 0.881264 +vt 0.628645 0.879892 +vt 0.630963 0.876100 +vt 0.610400 0.924004 +vt 0.576153 0.924708 +vt 0.573974 0.922651 +vt 0.567542 0.922411 +vt 0.569860 0.925054 +vt 0.566528 0.912861 +vt 0.566520 0.918837 +vt 0.565139 0.909372 +vt 0.579833 0.927798 +vt 0.580408 0.926096 +vt 0.594403 0.935647 +vt 0.596761 0.930847 +vt 0.583340 0.931486 +vt 0.590677 0.939638 +vt 0.583925 0.936489 +vt 0.591985 0.939582 +vt 0.598205 0.926876 +vt 0.601342 0.924638 +vt 0.608806 0.929845 +vt 0.608006 0.930942 +vt 0.563355 0.891983 +vt 0.560029 0.900493 +vt 0.561639 0.909368 +vt 0.564272 0.881855 +vt 0.564012 0.884470 +vt 0.562116 0.877827 +vt 0.556700 0.874169 +vt 0.559201 0.880863 +vt 0.555506 0.867354 +vt 0.548949 0.852123 +vt 0.550825 0.858353 +vt 0.552330 0.863285 +vt 0.545227 0.845117 +vt 0.546888 0.846293 +vt 0.541347 0.838071 +vt 0.541659 0.834081 +vt 0.535772 0.814803 +vt 0.537943 0.782162 +vt 0.530141 0.811939 +vt 0.540727 0.766455 +vt 0.540557 0.775434 +vt 0.626239 0.896140 +vt 0.627956 0.882852 +vt 0.627164 0.893426 +vt 0.627916 0.887810 +vt 0.628218 0.886158 +vt 0.628184 0.884367 +vt 0.629908 0.878338 +vt 0.614124 0.923041 +vt 0.570503 0.927666 +vt 0.573063 0.928427 +vt 0.566075 0.915242 +vt 0.565403 0.911696 +vt 0.575593 0.928929 +vt 0.577558 0.932129 +vt 0.581184 0.929132 +vt 0.597478 0.928055 +vt 0.595681 0.935333 +vt 0.582327 0.930066 +vt 0.591031 0.943350 +vt 0.588226 0.944835 +vt 0.593545 0.940562 +vt 0.610164 0.928837 +vt 0.599121 0.927543 +vt 0.600708 0.928233 +vt 0.602712 0.930131 +vt 0.604171 0.931441 +vt 0.609334 0.929211 +vt 0.608122 0.933376 +vt 0.562925 0.887328 +vt 0.561428 0.890920 +vt 0.562847 0.889337 +vt 0.558631 0.896554 +vt 0.560403 0.906408 +vt 0.564019 0.909959 +vt 0.563476 0.882541 +vt 0.555115 0.872795 +vt 0.560652 0.880628 +vt 0.548812 0.857102 +vt 0.550676 0.862136 +vt 0.553136 0.869993 +vt 0.537804 0.827293 +vt 0.540982 0.825071 +vt 0.536486 0.820406 +vt 0.542242 0.846274 +vt 0.546567 0.849523 +vt 0.538003 0.831497 +vt 0.535367 0.817510 +vt 0.540081 0.779741 +vt 0.534981 0.780176 +vt 0.530075 0.812452 +vt 0.528926 0.808957 +vt 0.534685 0.816579 +vt 0.538411 0.770976 +vt 0.539478 0.769111 +vt 0.627660 0.890075 +vt 0.627358 0.891546 +vt 0.627821 0.888865 +vt 0.629387 0.879347 +vt 0.628773 0.884212 +vt 0.629920 0.881066 +vt 0.614894 0.925211 +vt 0.564556 0.926073 +vt 0.568015 0.926258 +vt 0.564459 0.915938 +vt 0.579826 0.932889 +vt 0.597516 0.931805 +vt 0.597597 0.929546 +vt 0.581982 0.931170 +vt 0.582278 0.933864 +vt 0.584122 0.941996 +vt 0.592510 0.943639 +vt 0.598628 0.928885 +vt 0.611312 0.927411 +vt 0.609454 0.928665 +vt 0.606718 0.934945 +vt 0.608629 0.932045 +vt 0.609342 0.930352 +vt 0.560458 0.894688 +vt 0.554722 0.900667 +vt 0.557271 0.906082 +vt 0.558698 0.911444 +vt 0.562843 0.885302 +vt 0.562304 0.881646 +vt 0.555089 0.875381 +vt 0.557168 0.885129 +vt 0.560729 0.882432 +vt 0.550226 0.867755 +vt 0.538181 0.824504 +vt 0.544232 0.849192 +vt 0.539239 0.846099 +vt 0.538297 0.836366 +vt 0.539477 0.777291 +vt 0.538182 0.775611 +vt 0.528175 0.780377 +vt 0.533448 0.814302 +vt 0.529382 0.803034 +vt 0.537656 0.766118 +vt 0.627147 0.897372 +vt 0.627823 0.892948 +vt 0.628340 0.888353 +vt 0.628907 0.886829 +vt 0.629544 0.883502 +vt 0.630931 0.879948 +vt 0.612754 0.925978 +vt 0.613495 0.926558 +vt 0.616998 0.924800 +vt 0.564611 0.921208 +vt 0.568780 0.935183 +vt 0.571846 0.931761 +vt 0.564853 0.913626 +vt 0.575511 0.937364 +vt 0.574208 0.932555 +vt 0.580713 0.930573 +vt 0.578677 0.935831 +vt 0.594864 0.940753 +vt 0.597767 0.938340 +vt 0.581653 0.936589 +vt 0.591350 0.946026 +vt 0.586419 0.954140 +vt 0.593424 0.942474 +vt 0.611606 0.930028 +vt 0.609644 0.929595 +vt 0.599475 0.929072 +vt 0.602874 0.934324 +vt 0.605051 0.936554 +vt 0.609246 0.931380 +vt 0.609540 0.929415 +vt 0.609434 0.933078 +vt 0.608399 0.936517 +vt 0.562050 0.888486 +vt 0.559685 0.892674 +vt 0.557509 0.893515 +vt 0.556511 0.909029 +vt 0.558495 0.918182 +vt 0.560822 0.919961 +vt 0.562995 0.883100 +vt 0.562313 0.886232 +vt 0.561124 0.883517 +vt 0.554229 0.874553 +vt 0.558209 0.884400 +vt 0.560120 0.884150 +vt 0.545672 0.853900 +vt 0.547615 0.859930 +vt 0.550901 0.876801 +vt 0.549042 0.864123 +vt 0.535959 0.829281 +vt 0.535579 0.823766 +vt 0.541237 0.850468 +vt 0.538342 0.845065 +vt 0.537327 0.840753 +vt 0.533328 0.819929 +vt 0.536458 0.774135 +vt 0.527184 0.801177 +vt 0.534252 0.773381 +vt 0.531365 0.815819 +vt 0.528444 0.811118 +vt 0.527799 0.808041 +vt 0.626855 0.900748 +vt 0.627817 0.895180 +vt 0.628128 0.889598 +vt 0.627918 0.891521 +vt 0.629624 0.885111 +vt 0.630468 0.883953 +vt 0.613885 0.928231 +vt 0.615140 0.927253 +vt 0.563378 0.924695 +vt 0.564688 0.927056 +vt 0.569828 0.933854 +vt 0.561856 0.922380 +vt 0.581165 0.932729 +vt 0.594451 0.944213 +vt 0.598703 0.930225 +vt 0.599549 0.937633 +vt 0.591101 0.949049 +vt 0.578599 0.945787 +vt 0.580579 0.951502 +vt 0.610313 0.931778 +vt 0.609684 0.930784 +vt 0.599979 0.932466 +vt 0.601538 0.936969 +vt 0.606992 0.938397 +vt 0.609075 0.934125 +vt 0.561959 0.887039 +vt 0.560177 0.890105 +vt 0.561063 0.888475 +vt 0.552612 0.903824 +vt 0.552281 0.897342 +vt 0.558478 0.893354 +vt 0.553208 0.911121 +vt 0.556912 0.918223 +vt 0.555851 0.911880 +vt 0.561965 0.886204 +vt 0.562211 0.884166 +vt 0.554834 0.883782 +vt 0.554208 0.877380 +vt 0.559511 0.883239 +vt 0.558198 0.887045 +vt 0.552350 0.880318 +vt 0.548253 0.873927 +vt 0.548523 0.866233 +vt 0.541901 0.854289 +vt 0.539508 0.849490 +vt 0.538004 0.848908 +vt 0.535498 0.836402 +vt 0.526301 0.794668 +vt 0.532630 0.769644 +vt 0.529895 0.815600 +vt 0.528449 0.814296 +vt 0.527823 0.805550 +vt 0.527466 0.804224 +vt 0.535757 0.767582 +vt 0.536552 0.770116 +vt 0.631412 0.884635 +vt 0.627820 0.900310 +vt 0.628049 0.898676 +vt 0.628371 0.890745 +vt 0.628468 0.894451 +vt 0.628522 0.892578 +vt 0.628769 0.890318 +vt 0.613383 0.929671 +vt 0.615279 0.929935 +vt 0.563709 0.927704 +vt 0.569213 0.937013 +vt 0.565998 0.931905 +vt 0.571607 0.937147 +vt 0.576895 0.940912 +vt 0.597613 0.941511 +vt 0.596894 0.944920 +vt 0.598554 0.933344 +vt 0.599436 0.941138 +vt 0.593986 0.948907 +vt 0.594659 0.952538 +vt 0.589792 0.959664 +vt 0.582811 0.963916 +vt 0.611762 0.932392 +vt 0.602957 0.938484 +vt 0.603752 0.937535 +vt 0.605171 0.940804 +vt 0.609822 0.935276 +vt 0.608908 0.941588 +vt 0.559202 0.890675 +vt 0.554332 0.900696 +vt 0.552108 0.905939 +vt 0.553986 0.893394 +vt 0.558031 0.891005 +vt 0.556420 0.921473 +vt 0.556838 0.928123 +vt 0.556399 0.887370 +vt 0.559136 0.885931 +vt 0.557281 0.888917 +vt 0.561466 0.886153 +vt 0.544116 0.858065 +vt 0.547673 0.863380 +vt 0.549979 0.882664 +vt 0.548623 0.877040 +vt 0.548314 0.867810 +vt 0.534349 0.826528 +vt 0.533344 0.823779 +vt 0.541218 0.854484 +vt 0.540577 0.852529 +vt 0.536764 0.847047 +vt 0.535094 0.841225 +vt 0.532080 0.826784 +vt 0.524977 0.791300 +vt 0.525609 0.799579 +vt 0.534349 0.769363 +vt 0.529196 0.820059 +vt 0.527585 0.811557 +vt 0.527700 0.809555 +vt 0.527035 0.806108 +vt 0.526019 0.802405 +vt 0.535059 0.765655 +vt 0.631722 0.892138 +vt 0.630880 0.886523 +vt 0.627618 0.902195 +vt 0.628542 0.896917 +vt 0.629415 0.889839 +vt 0.614226 0.930355 +vt 0.617714 0.927206 +vt 0.562607 0.929411 +vt 0.564887 0.932291 +vt 0.568735 0.939215 +vt 0.565715 0.934437 +vt 0.575248 0.943281 +vt 0.570498 0.942699 +vt 0.598265 0.942415 +vt 0.596428 0.946942 +vt 0.601339 0.939019 +vt 0.592882 0.954387 +vt 0.577455 0.955068 +vt 0.588216 0.961336 +vt 0.578429 0.962185 +vt 0.585422 0.966440 +vt 0.595124 0.949127 +vt 0.610550 0.933932 +vt 0.601992 0.939396 +vt 0.609995 0.936985 +vt 0.559508 0.888857 +vt 0.560335 0.887721 +vt 0.551179 0.900146 +vt 0.549407 0.901234 +vt 0.550823 0.895924 +vt 0.556123 0.891856 +vt 0.550199 0.909259 +vt 0.553001 0.913352 +vt 0.554089 0.915863 +vt 0.554995 0.918593 +vt 0.559693 0.927292 +vt 0.555819 0.888457 +vt 0.558819 0.888208 +vt 0.544107 0.862689 +vt 0.546301 0.866703 +vt 0.551377 0.883678 +vt 0.549507 0.879537 +vt 0.547106 0.880578 +vt 0.547377 0.871499 +vt 0.542281 0.859934 +vt 0.538542 0.852013 +vt 0.540295 0.854167 +vt 0.537655 0.850861 +vt 0.531702 0.836786 +vt 0.530701 0.833503 +vt 0.534859 0.770695 +vt 0.524223 0.796410 +vt 0.524004 0.788721 +vt 0.527433 0.817541 +vt 0.531059 0.823325 +vt 0.526942 0.813366 +vt 0.526617 0.808235 +vt 0.526455 0.805633 +vt 0.628773 0.899618 +vt 0.628391 0.901718 +vt 0.627526 0.903850 +vt 0.628465 0.898138 +vt 0.628955 0.891252 +vt 0.629064 0.894323 +vt 0.613052 0.931785 +vt 0.614372 0.932307 +vt 0.615600 0.932907 +vt 0.563566 0.931682 +vt 0.565876 0.937124 +vt 0.575948 0.946688 +vt 0.577535 0.947068 +vt 0.598209 0.947380 +vt 0.599349 0.945091 +vt 0.601256 0.944009 +vt 0.593710 0.956607 +vt 0.576248 0.952602 +vt 0.588554 0.966242 +vt 0.578787 0.969631 +vt 0.583761 0.969209 +vt 0.611131 0.935207 +vt 0.603507 0.940288 +vt 0.602355 0.941023 +vt 0.608781 0.948968 +vt 0.611326 0.938442 +vt 0.548542 0.906091 +vt 0.552116 0.890395 +vt 0.554593 0.889483 +vt 0.555141 0.920394 +vt 0.554849 0.931639 +vt 0.557747 0.931034 +vt 0.552872 0.885632 +vt 0.544820 0.866480 +vt 0.550370 0.887790 +vt 0.548193 0.881204 +vt 0.545697 0.875069 +vt 0.541024 0.861040 +vt 0.534470 0.854675 +vt 0.531367 0.842938 +vt 0.529628 0.827974 +vt 0.522980 0.791541 +vt 0.523469 0.785681 +vt 0.525016 0.801547 +vt 0.523652 0.800582 +vt 0.529346 0.823845 +vt 0.526707 0.822037 +vt 0.527021 0.811255 +vt 0.525468 0.802982 +vt 0.630700 0.892135 +vt 0.628117 0.903359 +vt 0.628919 0.896858 +vt 0.629686 0.892363 +vt 0.615076 0.931633 +vt 0.617461 0.931764 +vt 0.561486 0.933297 +vt 0.559942 0.932287 +vt 0.563617 0.935662 +vt 0.568687 0.945371 +vt 0.565669 0.939959 +vt 0.574565 0.947269 +vt 0.597555 0.950936 +vt 0.600022 0.944123 +vt 0.595591 0.951153 +vt 0.596609 0.955663 +vt 0.574864 0.962581 +vt 0.591089 0.962701 +vt 0.587057 0.965041 +vt 0.590382 0.964677 +vt 0.575699 0.972698 +vt 0.581542 0.968833 +vt 0.585505 0.970715 +vt 0.612003 0.932806 +vt 0.611940 0.934150 +vt 0.604215 0.943104 +vt 0.610932 0.944945 +vt 0.607059 0.950513 +vt 0.549577 0.897845 +vt 0.547728 0.904930 +vt 0.549561 0.892763 +vt 0.548207 0.910968 +vt 0.551117 0.917078 +vt 0.551424 0.918508 +vt 0.552511 0.926158 +vt 0.551646 0.923418 +vt 0.554995 0.935954 +vt 0.542041 0.863777 +vt 0.543216 0.868912 +vt 0.545131 0.868811 +vt 0.548845 0.885963 +vt 0.547306 0.884162 +vt 0.546023 0.879572 +vt 0.546425 0.871281 +vt 0.539075 0.859180 +vt 0.537858 0.852875 +vt 0.536712 0.854628 +vt 0.528564 0.845620 +vt 0.528866 0.837111 +vt 0.526890 0.835364 +vt 0.522072 0.798816 +vt 0.522771 0.788565 +vt 0.523744 0.781632 +vt 0.522098 0.790019 +vt 0.525697 0.814957 +vt 0.525854 0.817997 +vt 0.526511 0.812288 +vt 0.525980 0.809209 +vt 0.525023 0.807219 +vt 0.631348 0.895029 +vt 0.629256 0.901396 +vt 0.628920 0.903321 +vt 0.629708 0.894711 +vt 0.629737 0.897274 +vt 0.612990 0.934907 +vt 0.616127 0.935637 +vt 0.569448 0.951165 +vt 0.565751 0.943056 +vt 0.563547 0.938119 +vt 0.575045 0.951195 +vt 0.571758 0.948776 +vt 0.599860 0.952027 +vt 0.600507 0.948533 +vt 0.596441 0.962312 +vt 0.574094 0.961721 +vt 0.576143 0.963614 +vt 0.594185 0.962773 +vt 0.586365 0.968903 +vt 0.591991 0.966533 +vt 0.587456 0.968139 +vt 0.575050 0.975830 +vt 0.581854 0.971253 +vt 0.584399 0.974591 +vt 0.605357 0.950646 +vt 0.609890 0.952194 +vt 0.608313 0.954042 +vt 0.612362 0.943394 +vt 0.547391 0.897187 +vt 0.545790 0.909729 +vt 0.546881 0.900856 +vt 0.548681 0.914245 +vt 0.553650 0.942428 +vt 0.550171 0.933304 +vt 0.556838 0.936409 +vt 0.558505 0.933525 +vt 0.548704 0.889218 +vt 0.545781 0.884436 +vt 0.544481 0.883427 +vt 0.543700 0.873983 +vt 0.538275 0.865786 +vt 0.537740 0.855974 +vt 0.534503 0.858673 +vt 0.527971 0.853642 +vt 0.527383 0.840154 +vt 0.526785 0.827344 +vt 0.519989 0.791963 +vt 0.521437 0.787168 +vt 0.521592 0.784091 +vt 0.523477 0.776701 +vt 0.522501 0.802169 +vt 0.525735 0.812998 +vt 0.524084 0.818976 +vt 0.526101 0.811587 +vt 0.523476 0.806121 +vt 0.631207 0.898620 +vt 0.630325 0.896143 +vt 0.632466 0.903705 +vt 0.629793 0.899924 +vt 0.613973 0.936050 +vt 0.614837 0.935246 +vt 0.617580 0.936339 +vt 0.560439 0.940287 +vt 0.568032 0.952714 +vt 0.565100 0.947443 +vt 0.562247 0.944312 +vt 0.573256 0.954468 +vt 0.597954 0.954014 +vt 0.602471 0.947911 +vt 0.597466 0.960889 +vt 0.572706 0.969655 +vt 0.592386 0.966534 +vt 0.588626 0.968534 +vt 0.573960 0.973880 +vt 0.579793 0.972349 +vt 0.586709 0.971374 +vt 0.586135 0.973030 +vt 0.611887 0.947076 +vt 0.606585 0.955694 +vt 0.612889 0.939220 +vt 0.547434 0.893319 +vt 0.544670 0.906436 +vt 0.545183 0.899508 +vt 0.546505 0.916462 +vt 0.545740 0.914300 +vt 0.551228 0.919427 +vt 0.549290 0.918883 +vt 0.549394 0.924745 +vt 0.551901 0.937892 +vt 0.555134 0.942362 +vt 0.546545 0.930692 +vt 0.558771 0.937543 +vt 0.540594 0.869559 +vt 0.543684 0.870169 +vt 0.548036 0.888597 +vt 0.542974 0.877554 +vt 0.543025 0.871098 +vt 0.542145 0.875117 +vt 0.537478 0.859512 +vt 0.535899 0.860180 +vt 0.532506 0.862643 +vt 0.528618 0.858852 +vt 0.526818 0.848624 +vt 0.526921 0.842746 +vt 0.527475 0.836805 +vt 0.524111 0.829945 +vt 0.517392 0.796091 +vt 0.521013 0.780559 +vt 0.520157 0.787285 +vt 0.519820 0.800178 +vt 0.523259 0.815811 +vt 0.523731 0.821289 +vt 0.524376 0.811094 +vt 0.523882 0.808466 +vt 0.631737 0.900673 +vt 0.631980 0.912950 +vt 0.629856 0.901257 +vt 0.629836 0.902641 +vt 0.630717 0.899385 +vt 0.618673 0.933690 +vt 0.617366 0.939855 +vt 0.614499 0.937663 +vt 0.570003 0.960093 +vt 0.571257 0.958684 +vt 0.601597 0.950912 +vt 0.600041 0.955705 +vt 0.594412 0.965190 +vt 0.598413 0.963231 +vt 0.571085 0.965658 +vt 0.572311 0.959178 +vt 0.587192 0.973250 +vt 0.587680 0.970707 +vt 0.573035 0.978127 +vt 0.585880 0.974911 +vt 0.603687 0.954358 +vt 0.611030 0.954600 +vt 0.609611 0.955285 +vt 0.608034 0.955836 +vt 0.605172 0.958216 +vt 0.612640 0.947291 +vt 0.613714 0.942744 +vt 0.545520 0.896438 +vt 0.544274 0.910072 +vt 0.547762 0.889343 +vt 0.552426 0.943237 +vt 0.555422 0.947155 +vt 0.557205 0.940791 +vt 0.541748 0.872626 +vt 0.542762 0.885856 +vt 0.539667 0.871914 +vt 0.536872 0.857806 +vt 0.535492 0.863634 +vt 0.533525 0.862875 +vt 0.528967 0.862832 +vt 0.526604 0.858794 +vt 0.527253 0.845574 +vt 0.525644 0.851911 +vt 0.525489 0.837326 +vt 0.524837 0.834050 +vt 0.517240 0.792438 +vt 0.521346 0.778216 +vt 0.519099 0.802765 +vt 0.522896 0.813276 +vt 0.522041 0.815238 +vt 0.522652 0.809159 +vt 0.520299 0.804894 +vt 0.631878 0.905839 +vt 0.630934 0.903687 +vt 0.630497 0.901227 +vt 0.629483 0.903620 +vt 0.614063 0.938725 +vt 0.618562 0.937400 +vt 0.615943 0.938630 +vt 0.565561 0.960382 +vt 0.568006 0.959725 +vt 0.562436 0.948770 +vt 0.560327 0.944478 +vt 0.599236 0.961695 +vt 0.572656 0.975954 +vt 0.590349 0.971924 +vt 0.583490 0.978738 +vt 0.612244 0.952886 +vt 0.609584 0.956443 +vt 0.613416 0.944735 +vt 0.544551 0.894320 +vt 0.543226 0.903701 +vt 0.548152 0.922987 +vt 0.544225 0.918302 +vt 0.543960 0.913931 +vt 0.547617 0.925548 +vt 0.553136 0.946366 +vt 0.548210 0.941298 +vt 0.556409 0.946280 +vt 0.548338 0.937929 +vt 0.543742 0.888881 +vt 0.538148 0.885134 +vt 0.540043 0.877608 +vt 0.536168 0.863907 +vt 0.537560 0.874697 +vt 0.532629 0.864855 +vt 0.529590 0.866540 +vt 0.527076 0.862356 +vt 0.525886 0.846038 +vt 0.525365 0.848780 +vt 0.525628 0.844366 +vt 0.526182 0.844532 +vt 0.522444 0.821263 +vt 0.523155 0.832585 +vt 0.517794 0.799981 +vt 0.515525 0.792648 +vt 0.520031 0.781315 +vt 0.521562 0.774904 +vt 0.519826 0.776991 +vt 0.516098 0.785350 +vt 0.521275 0.808222 +vt 0.631326 0.907774 +vt 0.630158 0.905000 +vt 0.629318 0.904531 +vt 0.618750 0.943383 +vt 0.616950 0.942600 +vt 0.614780 0.939071 +vt 0.557779 0.944994 +vt 0.562467 0.953438 +vt 0.570798 0.964062 +vt 0.569099 0.963809 +vt 0.560531 0.950743 +vt 0.558399 0.947795 +vt 0.599931 0.958132 +vt 0.600201 0.961976 +vt 0.569649 0.968761 +vt 0.586863 0.976453 +vt 0.571099 0.977343 +vt 0.603266 0.959023 +vt 0.611353 0.955402 +vt 0.614538 0.945247 +vt 0.613552 0.950951 +vt 0.542408 0.897591 +vt 0.542467 0.912731 +vt 0.544996 0.919599 +vt 0.546065 0.927159 +vt 0.549020 0.945613 +vt 0.556304 0.951542 +vt 0.554017 0.949129 +vt 0.543263 0.936985 +vt 0.541233 0.889786 +vt 0.539648 0.889298 +vt 0.540036 0.880811 +vt 0.537854 0.880296 +vt 0.534731 0.866174 +vt 0.528843 0.866435 +vt 0.527648 0.863489 +vt 0.525242 0.859360 +vt 0.522497 0.849055 +vt 0.524478 0.838983 +vt 0.523674 0.836652 +vt 0.522065 0.824421 +vt 0.521103 0.830217 +vt 0.515600 0.795328 +vt 0.515529 0.789664 +vt 0.518752 0.781536 +vt 0.517569 0.802811 +vt 0.518014 0.805913 +vt 0.522616 0.811676 +vt 0.521608 0.812567 +vt 0.519417 0.819254 +vt 0.519399 0.809293 +vt 0.630902 0.906263 +vt 0.631267 0.911538 +vt 0.615588 0.943460 +vt 0.566982 0.962358 +vt 0.564007 0.963865 +vt 0.600890 0.960133 +vt 0.569271 0.965946 +vt 0.569296 0.976843 +vt 0.586993 0.978583 +vt 0.570480 0.980476 +vt 0.585115 0.980096 +vt 0.610592 0.957321 +vt 0.612346 0.955207 +vt 0.614451 0.947821 +vt 0.613506 0.954014 +vt 0.542505 0.891324 +vt 0.540577 0.910306 +vt 0.540108 0.898221 +vt 0.544405 0.919852 +vt 0.542498 0.916408 +vt 0.544796 0.925927 +vt 0.552037 0.949008 +vt 0.547096 0.945906 +vt 0.546090 0.940848 +vt 0.558068 0.950959 +vt 0.541378 0.923694 +vt 0.537237 0.892693 +vt 0.536254 0.878610 +vt 0.534989 0.875394 +vt 0.533268 0.871841 +vt 0.530863 0.870847 +vt 0.528984 0.869860 +vt 0.527169 0.866394 +vt 0.525014 0.867501 +vt 0.524309 0.853339 +vt 0.525398 0.845474 +vt 0.523576 0.846967 +vt 0.524156 0.841894 +vt 0.520109 0.821636 +vt 0.520026 0.827395 +vt 0.521719 0.835285 +vt 0.516736 0.800055 +vt 0.514795 0.793812 +vt 0.515022 0.791002 +vt 0.516840 0.781140 +vt 0.514885 0.786063 +vt 0.519379 0.815170 +vt 0.630756 0.907663 +vt 0.630615 0.909354 +vt 0.630594 0.914963 +vt 0.630052 0.907362 +vt 0.617456 0.946589 +vt 0.567017 0.967687 +vt 0.561947 0.961557 +vt 0.567229 0.965391 +vt 0.557397 0.953410 +vt 0.603165 0.960895 +vt 0.569543 0.979632 +vt 0.583780 0.981089 +vt 0.615796 0.951085 +vt 0.541390 0.894741 +vt 0.541204 0.918052 +vt 0.540696 0.904398 +vt 0.543852 0.921279 +vt 0.541969 0.920609 +vt 0.551673 0.953125 +vt 0.547057 0.950673 +vt 0.554074 0.953445 +vt 0.543982 0.943742 +vt 0.540071 0.932602 +vt 0.538622 0.895596 +vt 0.534768 0.895897 +vt 0.535990 0.887250 +vt 0.527965 0.867414 +vt 0.523807 0.861736 +vt 0.523141 0.854625 +vt 0.522997 0.851950 +vt 0.522122 0.844394 +vt 0.521823 0.838727 +vt 0.523363 0.843440 +vt 0.520167 0.833371 +vt 0.520418 0.830364 +vt 0.516141 0.801570 +vt 0.515112 0.797733 +vt 0.514628 0.792027 +vt 0.514646 0.787979 +vt 0.517562 0.775241 +vt 0.515294 0.780432 +vt 0.516029 0.776850 +vt 0.514503 0.784029 +vt 0.516927 0.803530 +vt 0.517962 0.810068 +vt 0.518349 0.817541 +vt 0.518871 0.821666 +vt 0.630739 0.911164 +vt 0.631450 0.916698 +vt 0.630356 0.912560 +vt 0.629007 0.907173 +vt 0.620334 0.948820 +vt 0.616250 0.948492 +vt 0.565074 0.970259 +vt 0.561788 0.967501 +vt 0.568189 0.974861 +vt 0.586405 0.980778 +vt 0.569277 0.983623 +vt 0.567909 0.979715 +vt 0.585068 0.981340 +vt 0.583125 0.980838 +vt 0.539173 0.916849 +vt 0.537298 0.912813 +vt 0.535594 0.901761 +vt 0.542565 0.923697 +vt 0.549643 0.954818 +vt 0.545017 0.948045 +vt 0.555589 0.954998 +vt 0.538584 0.944333 +vt 0.539353 0.938948 +vt 0.538974 0.929284 +vt 0.535184 0.881560 +vt 0.532650 0.880569 +vt 0.530829 0.876645 +vt 0.527938 0.871011 +vt 0.526588 0.868732 +vt 0.523575 0.858836 +vt 0.523948 0.865633 +vt 0.522652 0.856897 +vt 0.521855 0.850742 +vt 0.521291 0.846837 +vt 0.520129 0.836648 +vt 0.519329 0.830294 +vt 0.514240 0.794961 +vt 0.514002 0.792860 +vt 0.514246 0.789507 +vt 0.514011 0.785669 +vt 0.516742 0.805612 +vt 0.516784 0.807423 +vt 0.518421 0.814318 +vt 0.517907 0.819507 +vt 0.630214 0.911043 +vt 0.630673 0.917212 +vt 0.630055 0.914365 +vt 0.629364 0.908415 +vt 0.617254 0.950900 +vt 0.564152 0.974990 +vt 0.566947 0.976157 +vt 0.559749 0.965427 +vt 0.559408 0.977646 +vt 0.557501 0.965298 +vt 0.567749 0.978036 +vt 0.587923 0.980432 +vt 0.567263 0.982174 +vt 0.583933 0.982193 +vt 0.583150 0.982346 +vt 0.539202 0.920970 +vt 0.550858 0.956789 +vt 0.548953 0.957701 +vt 0.545002 0.953118 +vt 0.552649 0.957361 +vt 0.542070 0.947259 +vt 0.537448 0.932680 +vt 0.530809 0.895781 +vt 0.527735 0.873200 +vt 0.522674 0.860563 +vt 0.523606 0.867814 +vt 0.523107 0.863675 +vt 0.522465 0.853532 +vt 0.521800 0.854743 +vt 0.521710 0.848342 +vt 0.521878 0.852463 +vt 0.521065 0.840808 +vt 0.518608 0.824149 +vt 0.519287 0.834794 +vt 0.520083 0.838380 +vt 0.515179 0.800746 +vt 0.514572 0.798121 +vt 0.514115 0.791519 +vt 0.513743 0.786682 +vt 0.514556 0.778578 +vt 0.514339 0.781143 +vt 0.514087 0.783478 +vt 0.515925 0.804181 +vt 0.517395 0.810744 +vt 0.517270 0.815639 +vt 0.629826 0.909570 +vt 0.631288 0.919100 +vt 0.630008 0.915792 +vt 0.629806 0.913146 +vt 0.628911 0.908524 +vt 0.559426 0.970236 +vt 0.567584 0.986154 +vt 0.535090 0.910726 +vt 0.545938 0.954970 +vt 0.544001 0.947872 +vt 0.555862 0.965526 +vt 0.540489 0.950082 +vt 0.536696 0.941243 +vt 0.537308 0.935489 +vt 0.538049 0.925986 +vt 0.531163 0.889100 +vt 0.532979 0.902630 +vt 0.530715 0.881796 +vt 0.527624 0.876655 +vt 0.524578 0.871217 +vt 0.522899 0.857937 +vt 0.522326 0.858683 +vt 0.521200 0.855733 +vt 0.521127 0.848678 +vt 0.520942 0.850610 +vt 0.520511 0.844764 +vt 0.518920 0.832902 +vt 0.519039 0.836309 +vt 0.518181 0.826165 +vt 0.519197 0.838393 +vt 0.515428 0.802240 +vt 0.513644 0.794481 +vt 0.513685 0.791080 +vt 0.513922 0.790407 +vt 0.513715 0.788957 +vt 0.513931 0.776253 +vt 0.513316 0.785913 +vt 0.513568 0.784133 +vt 0.516556 0.806379 +vt 0.515911 0.806208 +vt 0.516520 0.809380 +vt 0.517444 0.812338 +vt 0.516885 0.820119 +vt 0.517416 0.822254 +vt 0.629586 0.911914 +vt 0.630701 0.919295 +vt 0.632075 0.919276 +vt 0.630001 0.917857 +vt 0.629883 0.915086 +vt 0.629350 0.913765 +vt 0.629049 0.910035 +vt 0.564044 0.979072 +vt 0.561486 0.981214 +vt 0.556935 0.973088 +vt 0.557505 0.976309 +vt 0.569114 0.989088 +vt 0.564695 0.987526 +vt 0.563838 0.981595 +vt 0.534763 0.920131 +vt 0.550321 0.959610 +vt 0.547451 0.960131 +vt 0.542537 0.952266 +vt 0.545052 0.954876 +vt 0.553086 0.962820 +vt 0.537147 0.950803 +vt 0.536201 0.943568 +vt 0.536525 0.937891 +vt 0.536178 0.934518 +vt 0.535665 0.930315 +vt 0.529016 0.892591 +vt 0.528594 0.899713 +vt 0.528914 0.881343 +vt 0.521617 0.860295 +vt 0.522153 0.861790 +vt 0.523396 0.870058 +vt 0.522623 0.865755 +vt 0.521945 0.857443 +vt 0.520633 0.853859 +vt 0.520243 0.848014 +vt 0.520459 0.842422 +vt 0.518458 0.830647 +vt 0.518345 0.834881 +vt 0.517524 0.825191 +vt 0.519929 0.840382 +vt 0.514908 0.801456 +vt 0.514442 0.800332 +vt 0.514221 0.799720 +vt 0.513509 0.792901 +vt 0.513504 0.791642 +vt 0.513455 0.787686 +vt 0.513705 0.779890 +vt 0.513382 0.777847 +vt 0.513673 0.782248 +vt 0.515188 0.804077 +vt 0.516060 0.807654 +vt 0.515228 0.806046 +vt 0.516614 0.811695 +vt 0.516723 0.814204 +vt 0.516258 0.817153 +vt 0.631454 0.921077 +vt 0.629352 0.916121 +vt 0.629609 0.915036 +vt 0.560054 0.981628 +vt 0.558269 0.978668 +vt 0.566624 0.989608 +vt 0.564004 0.984519 +vt 0.565834 0.989383 +vt 0.535753 0.926309 +vt 0.531312 0.905213 +vt 0.532052 0.912746 +vt 0.547425 0.962586 +vt 0.545706 0.960072 +vt 0.544946 0.956846 +vt 0.552473 0.972743 +vt 0.552770 0.967009 +vt 0.539219 0.955450 +vt 0.536597 0.948725 +vt 0.541114 0.955714 +vt 0.534144 0.940374 +vt 0.528610 0.889036 +vt 0.529297 0.886296 +vt 0.525296 0.875854 +vt 0.521328 0.858263 +vt 0.522364 0.863664 +vt 0.522602 0.869224 +vt 0.524070 0.872561 +vt 0.522165 0.867182 +vt 0.520625 0.855694 +vt 0.519700 0.850781 +vt 0.519355 0.845572 +vt 0.519521 0.842741 +vt 0.518036 0.832654 +vt 0.518433 0.836947 +vt 0.517836 0.828882 +vt 0.518812 0.840943 +vt 0.514908 0.803025 +vt 0.513396 0.796195 +vt 0.513226 0.793456 +vt 0.513208 0.788711 +vt 0.513197 0.776580 +vt 0.513018 0.783654 +vt 0.515395 0.807779 +vt 0.515675 0.809274 +vt 0.515896 0.811153 +vt 0.516790 0.823332 +vt 0.515964 0.819309 +vt 0.628739 0.912686 +vt 0.630469 0.921268 +vt 0.629424 0.917786 +vt 0.629149 0.914938 +vt 0.559788 0.985081 +vt 0.558217 0.982410 +vt 0.554373 0.976357 +vt 0.554315 0.981558 +vt 0.568495 0.989671 +vt 0.562450 0.990182 +vt 0.565127 0.989273 +vt 0.562565 0.984152 +vt 0.533758 0.925867 +vt 0.531161 0.919737 +vt 0.550711 0.964578 +vt 0.543258 0.955286 +vt 0.538761 0.961645 +vt 0.534742 0.952070 +vt 0.541970 0.956842 +vt 0.534266 0.945854 +vt 0.534121 0.950015 +vt 0.535027 0.937205 +vt 0.534392 0.933052 +vt 0.526003 0.896656 +vt 0.525711 0.894739 +vt 0.529702 0.905343 +vt 0.527097 0.884890 +vt 0.524702 0.879597 +vt 0.521495 0.862465 +vt 0.520986 0.859473 +vt 0.522799 0.872535 +vt 0.521786 0.864030 +vt 0.519957 0.855680 +vt 0.519571 0.853511 +vt 0.519253 0.848211 +vt 0.517581 0.830893 +vt 0.517613 0.833524 +vt 0.517972 0.836226 +vt 0.518334 0.838846 +vt 0.516967 0.826564 +vt 0.514564 0.802360 +vt 0.514112 0.801998 +vt 0.512949 0.779241 +vt 0.513056 0.781240 +vt 0.513218 0.775159 +vt 0.512743 0.776911 +vt 0.512593 0.785371 +vt 0.514609 0.805072 +vt 0.515105 0.808659 +vt 0.516045 0.813431 +vt 0.515814 0.815607 +vt 0.516156 0.821630 +vt 0.515610 0.817317 +vt 0.629642 0.919262 +vt 0.628683 0.916549 +vt 0.628848 0.914269 +vt 0.560776 0.985843 +vt 0.566405 0.991448 +vt 0.565593 0.991596 +vt 0.563880 0.990931 +vt 0.564523 0.991389 +vt 0.529514 0.907104 +vt 0.531845 0.924399 +vt 0.529015 0.917518 +vt 0.549169 0.969768 +vt 0.544377 0.963119 +vt 0.542999 0.958824 +vt 0.550526 0.975215 +vt 0.541024 0.957698 +vt 0.540379 0.963986 +vt 0.537552 0.960077 +vt 0.536502 0.953572 +vt 0.531690 0.945691 +vt 0.533308 0.934392 +vt 0.526479 0.901348 +vt 0.524752 0.890755 +vt 0.527809 0.902696 +vt 0.525381 0.882218 +vt 0.524361 0.877400 +vt 0.524087 0.874040 +vt 0.520706 0.860930 +vt 0.520528 0.858413 +vt 0.521968 0.868606 +vt 0.521873 0.870241 +vt 0.523699 0.874006 +vt 0.521155 0.864666 +vt 0.520208 0.857065 +vt 0.518926 0.851868 +vt 0.518681 0.843529 +vt 0.518642 0.847319 +vt 0.517695 0.835690 +vt 0.518155 0.841790 +vt 0.512308 0.787541 +vt 0.512568 0.782007 +vt 0.514834 0.807411 +vt 0.515432 0.811988 +vt 0.516431 0.824328 +vt 0.515586 0.820324 +vt 0.515394 0.818771 +vt 0.628850 0.915331 +vt 0.628493 0.914544 +vt 0.560392 0.990324 +vt 0.558553 0.986679 +vt 0.553994 0.985221 +vt 0.554923 0.985778 +vt 0.561875 0.992516 +vt 0.529591 0.910445 +vt 0.532565 0.929688 +vt 0.529227 0.913950 +vt 0.528355 0.922388 +vt 0.546035 0.966174 +vt 0.549762 0.978566 +vt 0.538500 0.968192 +vt 0.532838 0.952401 +vt 0.534925 0.955489 +vt 0.530499 0.940059 +vt 0.531937 0.935446 +vt 0.525068 0.897118 +vt 0.525269 0.899614 +vt 0.525269 0.887305 +vt 0.524376 0.894792 +vt 0.526603 0.905997 +vt 0.524518 0.881107 +vt 0.523973 0.878485 +vt 0.521469 0.868067 +vt 0.521740 0.873035 +vt 0.523114 0.875053 +vt 0.519690 0.857068 +vt 0.519325 0.855419 +vt 0.518794 0.849429 +vt 0.519136 0.853616 +vt 0.518399 0.845516 +vt 0.517102 0.831412 +vt 0.517042 0.834490 +vt 0.517624 0.839194 +vt 0.512527 0.779947 +vt 0.512699 0.774571 +vt 0.512060 0.782124 +vt 0.514868 0.810127 +vt 0.515396 0.814545 +vt 0.515313 0.815752 +vt 0.515793 0.822868 +vt 0.558327 0.991059 +vt 0.557176 0.986680 +vt 0.565890 0.991963 +vt 0.564223 0.993209 +vt 0.562742 0.993310 +vt 0.560726 0.992744 +vt 0.563595 0.992939 +vt 0.527968 0.908507 +vt 0.530745 0.927080 +vt 0.528176 0.914303 +vt 0.527490 0.918973 +vt 0.529603 0.927576 +vt 0.544321 0.969172 +vt 0.544237 0.964697 +vt 0.542428 0.962629 +vt 0.549252 0.976070 +vt 0.540933 0.969255 +vt 0.535950 0.959048 +vt 0.536372 0.966563 +vt 0.531488 0.949813 +vt 0.529365 0.942316 +vt 0.531184 0.932959 +vt 0.525439 0.902000 +vt 0.524889 0.889169 +vt 0.524376 0.892256 +vt 0.523986 0.883958 +vt 0.524176 0.881331 +vt 0.523324 0.877483 +vt 0.523633 0.879515 +vt 0.520502 0.862954 +vt 0.519958 0.859175 +vt 0.522308 0.874431 +vt 0.521063 0.869892 +vt 0.520868 0.867293 +vt 0.518890 0.854826 +vt 0.518325 0.848464 +vt 0.518116 0.844210 +vt 0.518079 0.845681 +vt 0.517728 0.843076 +vt 0.512154 0.776514 +vt 0.512343 0.775610 +vt 0.512227 0.780266 +vt 0.559267 0.993396 +vt 0.552630 0.987295 +vt 0.553798 0.987510 +vt 0.555043 0.988345 +vt 0.565613 0.992576 +vt 0.561772 0.993974 +vt 0.561037 0.994846 +vt 0.527664 0.911185 +vt 0.527536 0.913619 +vt 0.527510 0.922918 +vt 0.547447 0.973411 +vt 0.542483 0.965680 +vt 0.546158 0.978714 +vt 0.540473 0.972662 +vt 0.536191 0.970740 +vt 0.532241 0.956396 +vt 0.531402 0.953468 +vt 0.534022 0.960408 +vt 0.530488 0.947841 +vt 0.530143 0.945469 +vt 0.529165 0.941172 +vt 0.529280 0.936183 +vt 0.524107 0.898604 +vt 0.524167 0.896811 +vt 0.524556 0.900704 +vt 0.525933 0.903951 +vt 0.523786 0.889944 +vt 0.524308 0.888059 +vt 0.524045 0.891279 +vt 0.523542 0.892783 +vt 0.526942 0.907278 +vt 0.523670 0.885168 +vt 0.520105 0.862079 +vt 0.520820 0.864959 +vt 0.521804 0.874986 +vt 0.521083 0.873155 +vt 0.522306 0.876586 +vt 0.518343 0.851843 +vt 0.517195 0.840205 +vt 0.511422 0.780791 +vt 0.512348 0.773946 +vt 0.557949 0.995449 +vt 0.556759 0.992452 +vt 0.551120 0.987529 +vt 0.554676 0.992479 +vt 0.560149 0.993991 +vt 0.526540 0.908730 +vt 0.529825 0.931615 +vt 0.526726 0.916012 +vt 0.526510 0.920181 +vt 0.528280 0.927810 +vt 0.543964 0.969299 +vt 0.544882 0.985719 +vt 0.537006 0.974702 +vt 0.534507 0.966954 +vt 0.530301 0.949988 +vt 0.529194 0.944194 +vt 0.528641 0.942178 +vt 0.529062 0.939757 +vt 0.529345 0.938283 +vt 0.529136 0.934492 +vt 0.523799 0.896128 +vt 0.524633 0.902243 +vt 0.525028 0.903888 +vt 0.525642 0.905340 +vt 0.523527 0.895076 +vt 0.526063 0.906727 +vt 0.522802 0.885270 +vt 0.523125 0.881764 +vt 0.522512 0.877655 +vt 0.520333 0.864880 +vt 0.519704 0.863134 +vt 0.521406 0.874595 +vt 0.520710 0.870731 +vt 0.520496 0.867025 +vt 0.520629 0.867898 +vt 0.519173 0.862373 +vt 0.518195 0.854517 +vt 0.517126 0.843533 +vt 0.517891 0.845551 +vt 0.558658 0.995675 +vt 0.552952 0.989692 +vt 0.552177 0.988349 +vt 0.547927 0.989659 +vt 0.559616 0.995578 +vt 0.526573 0.912275 +vt 0.526249 0.910594 +vt 0.528757 0.930051 +vt 0.526329 0.917961 +vt 0.526431 0.913671 +vt 0.526851 0.922720 +vt 0.527328 0.924353 +vt 0.543684 0.974084 +vt 0.544719 0.978924 +vt 0.546592 0.989081 +vt 0.538585 0.974828 +vt 0.534327 0.977166 +vt 0.531003 0.955838 +vt 0.532212 0.959615 +vt 0.530362 0.953068 +vt 0.529786 0.947035 +vt 0.529548 0.948308 +vt 0.529019 0.946301 +vt 0.528158 0.941117 +vt 0.528885 0.936625 +vt 0.523766 0.897188 +vt 0.524065 0.901395 +vt 0.523307 0.886510 +vt 0.523190 0.894296 +vt 0.521497 0.876274 +vt 0.520502 0.868329 +vt 0.520594 0.872511 +vt 0.521113 0.875499 +vt 0.521830 0.878746 +vt 0.517209 0.851158 +vt 0.556987 0.994690 +vt 0.551351 0.989895 +vt 0.549454 0.989588 +vt 0.551735 0.994330 +vt 0.525705 0.909217 +vt 0.528611 0.932734 +vt 0.525977 0.916454 +vt 0.526066 0.915107 +vt 0.526002 0.921063 +vt 0.526070 0.919243 +vt 0.527166 0.928098 +vt 0.527852 0.929659 +vt 0.543151 0.982839 +vt 0.544267 0.991783 +vt 0.540771 0.978212 +vt 0.537111 0.976866 +vt 0.542816 0.978935 +vt 0.530511 0.954788 +vt 0.531078 0.957296 +vt 0.531571 0.958205 +vt 0.529958 0.951439 +vt 0.529333 0.950231 +vt 0.528599 0.944646 +vt 0.528131 0.943900 +vt 0.528325 0.938242 +vt 0.528035 0.934798 +vt 0.523607 0.897579 +vt 0.523604 0.900124 +vt 0.523464 0.896600 +vt 0.524264 0.903265 +vt 0.525085 0.905695 +vt 0.525527 0.906389 +vt 0.522741 0.887390 +vt 0.522756 0.890409 +vt 0.523121 0.895664 +vt 0.522767 0.893512 +vt 0.525396 0.907388 +vt 0.522374 0.883668 +vt 0.522854 0.886398 +vt 0.522212 0.881733 +vt 0.520245 0.868212 +vt 0.519826 0.868922 +vt 0.518498 0.860837 +vt 0.517616 0.855044 +vt 0.550150 0.990229 +vt 0.548729 0.991049 +vt 0.545650 0.992870 +vt 0.526050 0.912820 +vt 0.525687 0.911799 +vt 0.525508 0.910272 +vt 0.528089 0.931391 +vt 0.525734 0.916940 +vt 0.525644 0.913597 +vt 0.526505 0.923566 +vt 0.525650 0.918632 +vt 0.526555 0.926484 +vt 0.542634 0.985603 +vt 0.536718 0.980726 +vt 0.530355 0.956007 +vt 0.530703 0.956548 +vt 0.531246 0.959388 +vt 0.529340 0.952499 +vt 0.529703 0.954915 +vt 0.528515 0.948236 +vt 0.528310 0.945776 +vt 0.527516 0.942659 +vt 0.527801 0.940091 +vt 0.527734 0.936436 +vt 0.523338 0.897767 +vt 0.523639 0.902819 +vt 0.524486 0.904916 +vt 0.525625 0.906832 +vt 0.522246 0.885374 +vt 0.521196 0.877703 +vt 0.521227 0.876468 +vt 0.520440 0.878861 +vt 0.521961 0.882644 +vt 0.519264 0.867664 +vt 0.518718 0.865054 +vt 0.549795 0.991589 +vt 0.547662 0.992523 +vt 0.525041 0.909263 +vt 0.527660 0.933069 +vt 0.525659 0.917573 +vt 0.525704 0.916509 +vt 0.525571 0.916279 +vt 0.525468 0.915087 +vt 0.526845 0.925265 +vt 0.525728 0.923555 +vt 0.526446 0.928504 +vt 0.527028 0.931044 +vt 0.537325 0.985514 +vt 0.534421 0.981828 +vt 0.530482 0.957152 +vt 0.531122 0.958343 +vt 0.528535 0.951095 +vt 0.527771 0.945724 +vt 0.527451 0.940018 +vt 0.527354 0.937770 +vt 0.527420 0.935689 +vt 0.523093 0.899454 +vt 0.523999 0.904513 +vt 0.524545 0.906857 +vt 0.522320 0.888319 +vt 0.522176 0.890706 +vt 0.522342 0.885953 +vt 0.522034 0.884535 +vt 0.521682 0.882124 +vt 0.519882 0.874089 +vt 0.519203 0.871055 +vt 0.517772 0.858979 +vt 0.517948 0.861843 +vt 0.525515 0.917004 +vt 0.525079 0.914477 +vt 0.526169 0.924988 +vt 0.525510 0.921899 +vt 0.525444 0.920203 +vt 0.525375 0.917233 +vt 0.526006 0.926534 +vt 0.529934 0.956854 +vt 0.530877 0.958127 +vt 0.527081 0.942502 +vt 0.527311 0.936388 +vt 0.527340 0.934804 +vt 0.523239 0.903073 +vt 0.523487 0.905641 +vt 0.524230 0.907032 +vt 0.522095 0.886309 +vt 0.522083 0.893511 +vt 0.522259 0.886286 +vt 0.521422 0.883869 +vt 0.519710 0.879137 +vt 0.518922 0.867297 +vt 0.517069 0.859183 +vt 0.518037 0.864430 +vt 0.524959 0.912394 +vt 0.527075 0.933402 +vt 0.525247 0.922430 +vt 0.525804 0.925025 +vt 0.525097 0.917879 +vt 0.525965 0.928405 +vt 0.526316 0.931225 +vt 0.529512 0.957526 +vt 0.530007 0.958486 +vt 0.530525 0.960238 +vt 0.528894 0.954970 +vt 0.526603 0.936631 +vt 0.522389 0.899179 +vt 0.521576 0.889532 +vt 0.520395 0.883068 +vt 0.518816 0.876666 +vt 0.520772 0.881087 +vt 0.517901 0.871145 +vt 0.517467 0.860924 +vt 0.517453 0.861968 +vt 0.524474 0.910084 +vt 0.526393 0.932845 +vt 0.524405 0.912594 +vt 0.524813 0.915830 +vt 0.525497 0.925147 +vt 0.524960 0.919649 +vt 0.525543 0.928476 +vt 0.523286 0.907051 +vt 0.520733 0.888377 +vt 0.521024 0.891498 +vt 0.517999 0.868639 +vt 0.517121 0.862583 +vt 0.517618 0.864948 +vt 0.523872 0.910138 +vt 0.525072 0.924000 +vt 0.524080 0.913682 +vt 0.525835 0.931969 +vt 0.529110 0.957864 +vt 0.529805 0.960540 +vt 0.524676 0.920207 +vt 0.530347 0.962812 +vt 0.520026 0.887424 +vt 0.699196 0.875992 +vt 0.699336 0.878381 +vt 0.697833 0.878053 +vt 0.699988 0.876543 +vt 0.698407 0.884135 +vt 0.699131 0.872340 +vt 0.700246 0.880534 +vt 0.700618 0.874556 +vt 0.697467 0.880558 +vt 0.696917 0.874814 +vt 0.700642 0.877203 +vt 0.700727 0.874975 +vt 0.697327 0.882876 +vt 0.700907 0.885731 +vt 0.700131 0.871040 +vt 0.696657 0.872305 +vt 0.702358 0.877806 +vt 0.701409 0.874694 +vt 0.697591 0.885674 +vt 0.695917 0.882667 +vt 0.694913 0.875045 +vt 0.701962 0.883297 +vt 0.698070 0.887528 +vt 0.699132 0.868955 +vt 0.700888 0.872670 +vt 0.698348 0.869295 +vt 0.702387 0.881239 +vt 0.696479 0.886203 +vt 0.702144 0.888056 +vt 0.699249 0.892648 +vt 0.699743 0.867095 +vt 0.701258 0.871700 +vt 0.694847 0.869625 +vt 0.698233 0.864907 +vt 0.702791 0.873085 +vt 0.703106 0.876216 +vt 0.697049 0.889013 +vt 0.694105 0.877350 +vt 0.693887 0.885069 +vt 0.703172 0.886015 +vt 0.701639 0.894470 +vt 0.702604 0.882779 +vt 0.698864 0.866809 +vt 0.700840 0.868980 +vt 0.696611 0.866303 +vt 0.692274 0.871613 +vt 0.704584 0.876810 +vt 0.695506 0.889308 +vt 0.692676 0.880641 +vt 0.694220 0.889026 +vt 0.703877 0.890537 +vt 0.702956 0.892069 +vt 0.705012 0.880930 +vt 0.697808 0.892512 +vt 0.699695 0.899140 +vt 0.699994 0.865153 +vt 0.702155 0.870359 +vt 0.694993 0.864629 +vt 0.692340 0.867276 +vt 0.697547 0.863720 +vt 0.704424 0.874225 +vt 0.696501 0.893527 +vt 0.690940 0.888150 +vt 0.691631 0.885487 +vt 0.703750 0.883324 +vt 0.705279 0.884276 +vt 0.703707 0.895045 +vt 0.697867 0.895448 +vt 0.700217 0.900043 +vt 0.701503 0.864062 +vt 0.701941 0.866189 +vt 0.696587 0.864087 +vt 0.689968 0.871317 +vt 0.699100 0.861725 +vt 0.704772 0.869490 +vt 0.703519 0.869288 +vt 0.706313 0.877949 +vt 0.705576 0.875562 +vt 0.691857 0.879887 +vt 0.691410 0.893367 +vt 0.705083 0.893426 +vt 0.708667 0.883998 +vt 0.702587 0.897737 +vt 0.699357 0.899631 +vt 0.700950 0.860085 +vt 0.702849 0.867428 +vt 0.694979 0.860616 +vt 0.693650 0.862485 +vt 0.690403 0.864678 +vt 0.690912 0.872751 +vt 0.698226 0.859459 +vt 0.697257 0.859766 +vt 0.705957 0.871364 +vt 0.707276 0.880363 +vt 0.693616 0.894313 +vt 0.690283 0.874951 +vt 0.692394 0.894884 +vt 0.690756 0.891073 +vt 0.689518 0.886547 +vt 0.707529 0.892536 +vt 0.704568 0.897333 +vt 0.696452 0.898170 +vt 0.699313 0.901180 +vt 0.703153 0.900705 +vt 0.702434 0.863845 +vt 0.701891 0.861918 +vt 0.696083 0.861380 +vt 0.691190 0.862319 +vt 0.689212 0.867429 +vt 0.689496 0.873488 +vt 0.699403 0.857184 +vt 0.704720 0.866924 +vt 0.705927 0.867998 +vt 0.703855 0.865615 +vt 0.706378 0.873739 +vt 0.707517 0.877520 +vt 0.689785 0.900210 +vt 0.689548 0.892649 +vt 0.690280 0.889397 +vt 0.706994 0.896214 +vt 0.708625 0.880152 +vt 0.709696 0.890359 +vt 0.705640 0.900071 +vt 0.698280 0.900405 +vt 0.700069 0.901636 +vt 0.701023 0.901082 +vt 0.702166 0.860289 +vt 0.695993 0.859084 +vt 0.694170 0.857867 +vt 0.691114 0.858125 +vt 0.689225 0.865193 +vt 0.689346 0.862209 +vt 0.700685 0.855711 +vt 0.698179 0.856564 +vt 0.707357 0.870262 +vt 0.707216 0.873967 +vt 0.707141 0.872140 +vt 0.692111 0.900048 +vt 0.695030 0.901909 +vt 0.687448 0.881920 +vt 0.688140 0.891231 +vt 0.707970 0.898429 +vt 0.710233 0.881515 +vt 0.710007 0.898805 +vt 0.710450 0.886426 +vt 0.704676 0.901691 +vt 0.696921 0.901343 +vt 0.699539 0.902908 +vt 0.698751 0.901749 +vt 0.701097 0.903348 +vt 0.702533 0.861707 +vt 0.702109 0.858241 +vt 0.703626 0.863107 +vt 0.687418 0.872027 +vt 0.687034 0.867080 +vt 0.701848 0.856189 +vt 0.699880 0.852380 +vt 0.697528 0.855635 +vt 0.698837 0.854156 +vt 0.696945 0.856841 +vt 0.705124 0.862010 +vt 0.707744 0.865869 +vt 0.708697 0.876671 +vt 0.707714 0.874967 +vt 0.687901 0.885807 +vt 0.690234 0.903067 +vt 0.688131 0.898230 +vt 0.709654 0.875435 +vt 0.711978 0.894482 +vt 0.711407 0.889135 +vt 0.703579 0.903801 +vt 0.706389 0.902606 +vt 0.698687 0.903613 +vt 0.700335 0.902799 +vt 0.702998 0.860383 +vt 0.702650 0.858604 +vt 0.695709 0.855232 +vt 0.691653 0.856664 +vt 0.689748 0.858551 +vt 0.685715 0.877848 +vt 0.687839 0.864144 +vt 0.688566 0.862298 +vt 0.701497 0.852817 +vt 0.697980 0.854062 +vt 0.706619 0.862473 +vt 0.708317 0.871605 +vt 0.709304 0.871558 +vt 0.707646 0.873444 +vt 0.707505 0.874122 +vt 0.691745 0.903624 +vt 0.695397 0.904197 +vt 0.684655 0.887418 +vt 0.691043 0.903304 +vt 0.689339 0.903222 +vt 0.687954 0.902114 +vt 0.685224 0.899458 +vt 0.685355 0.897114 +vt 0.687255 0.889227 +vt 0.706593 0.902562 +vt 0.709767 0.902523 +vt 0.711446 0.877158 +vt 0.712838 0.898186 +vt 0.705086 0.903900 +vt 0.698137 0.905131 +vt 0.699952 0.903669 +vt 0.701859 0.905251 +vt 0.702660 0.856785 +vt 0.702145 0.857055 +vt 0.704534 0.858809 +vt 0.694440 0.851079 +vt 0.690156 0.855566 +vt 0.689081 0.858824 +vt 0.689878 0.856170 +vt 0.685361 0.873420 +vt 0.685142 0.868880 +vt 0.685722 0.865102 +vt 0.702348 0.853335 +vt 0.701310 0.848485 +vt 0.698548 0.852386 +vt 0.697336 0.853596 +vt 0.706814 0.859666 +vt 0.708726 0.863108 +vt 0.709453 0.865388 +vt 0.708462 0.873619 +vt 0.693999 0.904229 +vt 0.695979 0.905541 +vt 0.690017 0.904374 +vt 0.686344 0.901450 +vt 0.684316 0.893848 +vt 0.685117 0.891646 +vt 0.707994 0.903044 +vt 0.711061 0.900822 +vt 0.713902 0.884142 +vt 0.712147 0.878302 +vt 0.711565 0.873985 +vt 0.713579 0.892534 +vt 0.712224 0.900388 +vt 0.712549 0.889869 +vt 0.704339 0.905996 +vt 0.705928 0.907088 +vt 0.707175 0.905612 +vt 0.699287 0.906181 +vt 0.697108 0.906266 +vt 0.703483 0.906213 +vt 0.700093 0.905020 +vt 0.703908 0.860153 +vt 0.703887 0.857675 +vt 0.705289 0.856933 +vt 0.696434 0.853484 +vt 0.691073 0.854860 +vt 0.692022 0.853673 +vt 0.685010 0.871488 +vt 0.683382 0.874288 +vt 0.686064 0.860829 +vt 0.688943 0.854978 +vt 0.682804 0.881559 +vt 0.702232 0.850774 +vt 0.702736 0.855073 +vt 0.699521 0.848065 +vt 0.698836 0.850569 +vt 0.698034 0.852285 +vt 0.706516 0.857645 +vt 0.707054 0.861010 +vt 0.707693 0.862281 +vt 0.710523 0.870181 +vt 0.692239 0.904740 +vt 0.691337 0.905335 +vt 0.694965 0.906061 +vt 0.690354 0.906397 +vt 0.688664 0.904577 +vt 0.687113 0.903117 +vt 0.684052 0.898001 +vt 0.685211 0.901460 +vt 0.684081 0.895510 +vt 0.712689 0.903328 +vt 0.709367 0.904427 +vt 0.713129 0.880914 +vt 0.712297 0.876114 +vt 0.711009 0.870715 +vt 0.714024 0.896965 +vt 0.713505 0.900094 +vt 0.698146 0.907262 +vt 0.702700 0.907525 +vt 0.700070 0.907655 +vt 0.703910 0.854813 +vt 0.704508 0.856663 +vt 0.696238 0.851101 +vt 0.690722 0.852612 +vt 0.690835 0.850383 +vt 0.683991 0.872462 +vt 0.684656 0.867444 +vt 0.683520 0.869533 +vt 0.684311 0.857227 +vt 0.684578 0.863276 +vt 0.681306 0.886810 +vt 0.702896 0.851690 +vt 0.703026 0.853543 +vt 0.702536 0.849047 +vt 0.700302 0.845246 +vt 0.698274 0.851040 +vt 0.697129 0.851907 +vt 0.707759 0.858235 +vt 0.707847 0.859694 +vt 0.710515 0.863334 +vt 0.708350 0.860768 +vt 0.693261 0.905234 +vt 0.694033 0.906638 +vt 0.695715 0.907093 +vt 0.696812 0.907583 +vt 0.682146 0.888572 +vt 0.685898 0.903488 +vt 0.684175 0.900059 +vt 0.683230 0.892222 +vt 0.683336 0.893942 +vt 0.711390 0.905749 +vt 0.714960 0.881407 +vt 0.713298 0.877286 +vt 0.713209 0.878792 +vt 0.711737 0.870378 +vt 0.714574 0.894038 +vt 0.712937 0.903345 +vt 0.705372 0.910424 +vt 0.707540 0.908204 +vt 0.699116 0.909586 +vt 0.697537 0.908959 +vt 0.703497 0.909519 +vt 0.701592 0.908797 +vt 0.706162 0.854742 +vt 0.704757 0.855018 +vt 0.696468 0.849015 +vt 0.689754 0.853883 +vt 0.692108 0.847671 +vt 0.683916 0.871195 +vt 0.680454 0.877998 +vt 0.683852 0.865457 +vt 0.684432 0.860262 +vt 0.686806 0.851862 +vt 0.681319 0.884011 +vt 0.702925 0.850100 +vt 0.702359 0.847600 +vt 0.698754 0.843351 +vt 0.701490 0.844686 +vt 0.698596 0.848471 +vt 0.697994 0.849649 +vt 0.697680 0.851581 +vt 0.697921 0.850928 +vt 0.708033 0.855516 +vt 0.709350 0.861282 +vt 0.711298 0.866039 +vt 0.692589 0.906228 +vt 0.691925 0.905842 +vt 0.690833 0.907129 +vt 0.694828 0.908111 +vt 0.682499 0.890650 +vt 0.688823 0.907945 +vt 0.687694 0.905659 +vt 0.686448 0.905018 +vt 0.683123 0.897719 +vt 0.683197 0.895186 +vt 0.685082 0.903710 +vt 0.684505 0.902108 +vt 0.709818 0.906684 +vt 0.714016 0.907172 +vt 0.715122 0.889349 +vt 0.715275 0.882798 +vt 0.713122 0.875514 +vt 0.712735 0.874390 +vt 0.714844 0.895447 +vt 0.714918 0.897410 +vt 0.714156 0.900685 +vt 0.702473 0.910454 +vt 0.701577 0.913388 +vt 0.697336 0.850378 +vt 0.695846 0.845411 +vt 0.689912 0.852309 +vt 0.689455 0.853551 +vt 0.691240 0.845791 +vt 0.681251 0.873127 +vt 0.680554 0.881999 +vt 0.683900 0.866762 +vt 0.683745 0.868082 +vt 0.682125 0.869277 +vt 0.683571 0.860201 +vt 0.683603 0.862927 +vt 0.688451 0.851647 +vt 0.685401 0.854560 +vt 0.680932 0.888484 +vt 0.681191 0.886330 +vt 0.703379 0.850857 +vt 0.703543 0.852273 +vt 0.704011 0.853641 +vt 0.702197 0.846118 +vt 0.703002 0.847910 +vt 0.703165 0.848662 +vt 0.698552 0.846504 +vt 0.699530 0.841711 +vt 0.700726 0.842276 +vt 0.708451 0.857770 +vt 0.708306 0.858821 +vt 0.708509 0.859934 +vt 0.710222 0.859903 +vt 0.708932 0.859720 +vt 0.711665 0.863361 +vt 0.693101 0.907368 +vt 0.690017 0.907786 +vt 0.693809 0.908639 +vt 0.695919 0.908786 +vt 0.696461 0.908876 +vt 0.681568 0.890035 +vt 0.685561 0.905715 +vt 0.683068 0.899809 +vt 0.683573 0.901131 +vt 0.682420 0.892007 +vt 0.682528 0.893306 +vt 0.714103 0.905286 +vt 0.711099 0.908178 +vt 0.716308 0.880649 +vt 0.714402 0.878401 +vt 0.713919 0.875328 +vt 0.712370 0.866540 +vt 0.713046 0.868182 +vt 0.715935 0.893057 +vt 0.715495 0.894721 +vt 0.714481 0.903022 +vt 0.707074 0.914873 +vt 0.704416 0.912375 +vt 0.709934 0.912529 +vt 0.698304 0.911314 +vt 0.705201 0.852242 +vt 0.707358 0.851256 +vt 0.697969 0.847770 +vt 0.697900 0.846599 +vt 0.689201 0.853719 +vt 0.689928 0.849874 +vt 0.692368 0.839746 +vt 0.690458 0.847864 +vt 0.679358 0.880710 +vt 0.678948 0.874516 +vt 0.682981 0.867272 +vt 0.683555 0.857194 +vt 0.682734 0.862896 +vt 0.687062 0.846929 +vt 0.684003 0.855296 +vt 0.685589 0.850899 +vt 0.680895 0.886973 +vt 0.680149 0.884479 +vt 0.703491 0.849632 +vt 0.702898 0.846574 +vt 0.698157 0.844165 +vt 0.698739 0.841074 +vt 0.702352 0.844264 +vt 0.702086 0.841876 +vt 0.709318 0.857958 +vt 0.711187 0.860599 +vt 0.712495 0.864711 +vt 0.692401 0.907394 +vt 0.691354 0.907804 +vt 0.690549 0.908450 +vt 0.694504 0.910205 +vt 0.695343 0.909709 +vt 0.696838 0.910124 +vt 0.682000 0.892000 +vt 0.689155 0.909747 +vt 0.686581 0.909693 +vt 0.686279 0.907195 +vt 0.685882 0.905858 +vt 0.682544 0.897983 +vt 0.682462 0.895559 +vt 0.685118 0.905556 +vt 0.683400 0.903847 +vt 0.715141 0.905499 +vt 0.712014 0.910110 +vt 0.715901 0.884567 +vt 0.715864 0.878521 +vt 0.716679 0.882717 +vt 0.713759 0.874801 +vt 0.713669 0.872390 +vt 0.716110 0.890423 +vt 0.715907 0.898268 +vt 0.715352 0.901198 +vt 0.705191 0.915037 +vt 0.708155 0.914734 +vt 0.699516 0.913719 +vt 0.697710 0.912079 +vt 0.702573 0.913356 +vt 0.708706 0.852583 +vt 0.697482 0.843989 +vt 0.689316 0.852772 +vt 0.689245 0.851049 +vt 0.695773 0.838065 +vt 0.691523 0.841261 +vt 0.690172 0.842533 +vt 0.680513 0.869806 +vt 0.679280 0.882887 +vt 0.678813 0.879919 +vt 0.678337 0.878124 +vt 0.682267 0.865307 +vt 0.681784 0.867286 +vt 0.681907 0.857112 +vt 0.688426 0.846618 +vt 0.685370 0.845452 +vt 0.684389 0.852665 +vt 0.685181 0.848199 +vt 0.680911 0.889950 +vt 0.680392 0.887349 +vt 0.680312 0.886250 +vt 0.703821 0.851097 +vt 0.704111 0.852333 +vt 0.702974 0.845950 +vt 0.703252 0.847119 +vt 0.703603 0.847682 +vt 0.703977 0.848643 +vt 0.697856 0.842263 +vt 0.699228 0.838851 +vt 0.701052 0.837963 +vt 0.708747 0.858688 +vt 0.710169 0.854413 +vt 0.708540 0.859342 +vt 0.711752 0.857127 +vt 0.712193 0.861687 +vt 0.692756 0.909660 +vt 0.692529 0.908657 +vt 0.691586 0.909097 +vt 0.690256 0.909177 +vt 0.693409 0.910719 +vt 0.695989 0.909910 +vt 0.681312 0.891488 +vt 0.688341 0.910756 +vt 0.685337 0.906630 +vt 0.682042 0.899325 +vt 0.682662 0.901519 +vt 0.684256 0.905918 +vt 0.681714 0.893321 +vt 0.714739 0.908049 +vt 0.711045 0.910968 +vt 0.712940 0.911117 +vt 0.716484 0.887976 +vt 0.717365 0.878875 +vt 0.714872 0.876599 +vt 0.714447 0.873489 +vt 0.714061 0.872472 +vt 0.713544 0.865111 +vt 0.713707 0.866722 +vt 0.713593 0.869563 +vt 0.716681 0.892062 +vt 0.716259 0.895238 +vt 0.716452 0.896406 +vt 0.705558 0.921860 +vt 0.709356 0.920863 +vt 0.710251 0.915121 +vt 0.698288 0.913801 +vt 0.700933 0.917393 +vt 0.702386 0.916839 +vt 0.704463 0.852610 +vt 0.705675 0.848602 +vt 0.709399 0.849542 +vt 0.696809 0.841978 +vt 0.689132 0.848309 +vt 0.689602 0.846439 +vt 0.693741 0.834691 +vt 0.691254 0.836693 +vt 0.678329 0.881718 +vt 0.677323 0.877323 +vt 0.677977 0.871246 +vt 0.681855 0.859923 +vt 0.683124 0.854917 +vt 0.681025 0.862977 +vt 0.688051 0.842424 +vt 0.686105 0.841960 +vt 0.683776 0.852585 +vt 0.684496 0.850232 +vt 0.680279 0.889496 +vt 0.679899 0.887039 +vt 0.679601 0.885851 +vt 0.679037 0.884364 +vt 0.704113 0.849854 +vt 0.703565 0.846350 +vt 0.698297 0.839002 +vt 0.703081 0.843412 +vt 0.702688 0.839241 +vt 0.713118 0.862967 +vt 0.690807 0.909137 +vt 0.695526 0.911386 +vt 0.694315 0.912959 +vt 0.695592 0.910304 +vt 0.696505 0.911341 +vt 0.689238 0.912280 +vt 0.687055 0.912143 +vt 0.685015 0.908565 +vt 0.681025 0.896141 +vt 0.681625 0.895499 +vt 0.684585 0.906881 +vt 0.682992 0.907228 +vt 0.681676 0.903090 +vt 0.681501 0.894367 +vt 0.715568 0.907707 +vt 0.714030 0.909757 +vt 0.711395 0.912530 +vt 0.712274 0.912406 +vt 0.717040 0.886165 +vt 0.716647 0.876745 +vt 0.718109 0.884376 +vt 0.714906 0.874253 +vt 0.714163 0.867664 +vt 0.716965 0.890300 +vt 0.716832 0.893328 +vt 0.717160 0.888174 +vt 0.716725 0.894317 +vt 0.717251 0.899227 +vt 0.716908 0.897240 +vt 0.716867 0.903579 +vt 0.702865 0.919280 +vt 0.699086 0.915383 +vt 0.697389 0.913010 +vt 0.699632 0.916922 +vt 0.704406 0.851522 +vt 0.707975 0.848348 +vt 0.704947 0.851155 +vt 0.690807 0.833008 +vt 0.695564 0.835288 +vt 0.696931 0.836201 +vt 0.689005 0.843516 +vt 0.680238 0.866436 +vt 0.678563 0.883305 +vt 0.677434 0.879206 +vt 0.678046 0.880715 +vt 0.677662 0.874906 +vt 0.679056 0.867805 +vt 0.680775 0.857725 +vt 0.681719 0.854572 +vt 0.680725 0.865149 +vt 0.684523 0.847903 +vt 0.684875 0.842496 +vt 0.680794 0.891911 +vt 0.678969 0.883511 +vt 0.704423 0.845318 +vt 0.704024 0.846782 +vt 0.704523 0.848837 +vt 0.698947 0.835434 +vt 0.703136 0.841202 +vt 0.703861 0.843908 +vt 0.703019 0.835935 +vt 0.712212 0.853987 +vt 0.712975 0.855850 +vt 0.713507 0.859396 +vt 0.692460 0.912003 +vt 0.692025 0.910059 +vt 0.690555 0.910671 +vt 0.693216 0.912701 +vt 0.687921 0.914438 +vt 0.684890 0.911479 +vt 0.681000 0.899591 +vt 0.683996 0.907620 +vt 0.680655 0.893873 +vt 0.714872 0.909514 +vt 0.717183 0.907672 +vt 0.713097 0.914606 +vt 0.714041 0.911124 +vt 0.718640 0.875444 +vt 0.719510 0.879303 +vt 0.715830 0.874021 +vt 0.714830 0.870771 +vt 0.715466 0.871492 +vt 0.714388 0.865302 +vt 0.714557 0.864031 +vt 0.714466 0.867760 +vt 0.714329 0.868732 +vt 0.717572 0.890930 +vt 0.717365 0.892712 +vt 0.716751 0.895248 +vt 0.717136 0.895694 +vt 0.708713 0.922782 +vt 0.703379 0.925938 +vt 0.711737 0.918725 +vt 0.712130 0.915480 +vt 0.698664 0.917172 +vt 0.696783 0.914444 +vt 0.701073 0.919921 +vt 0.706260 0.844305 +vt 0.704713 0.850270 +vt 0.709227 0.845371 +vt 0.711204 0.848951 +vt 0.693696 0.829204 +vt 0.695405 0.831017 +vt 0.688939 0.838605 +vt 0.690419 0.835014 +vt 0.689246 0.841104 +vt 0.677812 0.882890 +vt 0.677587 0.880973 +vt 0.676493 0.878311 +vt 0.676621 0.874497 +vt 0.677547 0.867914 +vt 0.681380 0.855604 +vt 0.680128 0.858517 +vt 0.678977 0.863687 +vt 0.687174 0.837853 +vt 0.684501 0.844548 +vt 0.684994 0.841646 +vt 0.684048 0.850147 +vt 0.680204 0.890967 +vt 0.679607 0.888714 +vt 0.678768 0.886049 +vt 0.704607 0.847377 +vt 0.700673 0.832240 +vt 0.697961 0.835922 +vt 0.703802 0.842262 +vt 0.703542 0.837185 +vt 0.702677 0.833965 +vt 0.703543 0.839775 +vt 0.714645 0.860870 +vt 0.691357 0.911960 +vt 0.695593 0.913835 +vt 0.692876 0.915521 +vt 0.689998 0.913458 +vt 0.684305 0.913878 +vt 0.687329 0.915820 +vt 0.683807 0.909888 +vt 0.679439 0.899440 +vt 0.683015 0.908608 +vt 0.681156 0.905878 +vt 0.715685 0.909851 +vt 0.716958 0.912701 +vt 0.714908 0.910963 +vt 0.713721 0.912855 +vt 0.718392 0.873355 +vt 0.719394 0.876352 +vt 0.719538 0.882440 +vt 0.717178 0.873455 +vt 0.714389 0.862626 +vt 0.717115 0.894633 +vt 0.718603 0.901992 +vt 0.718236 0.896737 +vt 0.718143 0.904779 +vt 0.705921 0.925509 +vt 0.709860 0.923592 +vt 0.701762 0.923785 +vt 0.710902 0.921946 +vt 0.699506 0.920783 +vt 0.707849 0.844719 +vt 0.705085 0.846500 +vt 0.710605 0.846292 +vt 0.691153 0.829588 +vt 0.697420 0.833123 +vt 0.690083 0.836178 +vt 0.689697 0.833681 +vt 0.678133 0.865402 +vt 0.677879 0.884635 +vt 0.676743 0.881193 +vt 0.676501 0.879405 +vt 0.676240 0.876780 +vt 0.676415 0.871959 +vt 0.680702 0.853942 +vt 0.679962 0.855458 +vt 0.682326 0.851715 +vt 0.679744 0.859947 +vt 0.688294 0.838386 +vt 0.685669 0.838556 +vt 0.684004 0.845969 +vt 0.683881 0.841217 +vt 0.682856 0.849455 +vt 0.679777 0.889810 +vt 0.680163 0.893422 +vt 0.679002 0.887596 +vt 0.704417 0.842680 +vt 0.704708 0.845985 +vt 0.699035 0.831310 +vt 0.698115 0.832955 +vt 0.703698 0.835210 +vt 0.712843 0.851398 +vt 0.713576 0.853717 +vt 0.714455 0.858727 +vt 0.695280 0.916899 +vt 0.689289 0.916482 +vt 0.683508 0.912097 +vt 0.685895 0.915742 +vt 0.680736 0.900571 +vt 0.682882 0.910325 +vt 0.681180 0.909207 +vt 0.680564 0.903496 +vt 0.718015 0.910880 +vt 0.712525 0.919089 +vt 0.713757 0.915179 +vt 0.714693 0.912529 +vt 0.719186 0.885288 +vt 0.719339 0.873437 +vt 0.720568 0.880948 +vt 0.720381 0.876538 +vt 0.716838 0.871467 +vt 0.714924 0.867768 +vt 0.715533 0.868274 +vt 0.714981 0.865087 +vt 0.715209 0.862027 +vt 0.718353 0.891287 +vt 0.718035 0.888526 +vt 0.718696 0.898675 +vt 0.717714 0.894198 +vt 0.717880 0.908274 +vt 0.709283 0.925970 +vt 0.710346 0.922491 +vt 0.704508 0.927534 +vt 0.702527 0.928144 +vt 0.711752 0.921444 +vt 0.696645 0.916314 +vt 0.699634 0.923403 +vt 0.706980 0.841491 +vt 0.710516 0.843962 +vt 0.708339 0.841629 +vt 0.711780 0.846082 +vt 0.695671 0.827720 +vt 0.693031 0.826738 +vt 0.689346 0.828596 +vt 0.696501 0.829540 +vt 0.689168 0.836041 +vt 0.676719 0.883119 +vt 0.675685 0.877618 +vt 0.675595 0.874852 +vt 0.676426 0.865895 +vt 0.679082 0.856171 +vt 0.681014 0.853072 +vt 0.678679 0.861433 +vt 0.688050 0.835111 +vt 0.686215 0.834488 +vt 0.683467 0.843950 +vt 0.684639 0.838591 +vt 0.683408 0.842138 +vt 0.683242 0.846763 +vt 0.679651 0.890941 +vt 0.679205 0.889419 +vt 0.678208 0.888013 +vt 0.678142 0.885938 +vt 0.702350 0.829808 +vt 0.699783 0.828934 +vt 0.704579 0.835613 +vt 0.704867 0.839385 +vt 0.703908 0.833400 +vt 0.712438 0.848447 +vt 0.714856 0.855563 +vt 0.715241 0.859687 +vt 0.691865 0.913648 +vt 0.690896 0.915466 +vt 0.693506 0.920620 +vt 0.682943 0.914639 +vt 0.684023 0.916224 +vt 0.687550 0.921695 +vt 0.683210 0.910848 +vt 0.678928 0.892064 +vt 0.680060 0.905669 +vt 0.716141 0.912578 +vt 0.718619 0.913255 +vt 0.713187 0.919443 +vt 0.714392 0.914036 +vt 0.718447 0.870161 +vt 0.717630 0.871274 +vt 0.720416 0.869980 +vt 0.720349 0.884275 +vt 0.720577 0.878435 +vt 0.720698 0.874308 +vt 0.716508 0.869855 +vt 0.719758 0.899293 +vt 0.718757 0.903937 +vt 0.719687 0.896365 +vt 0.718864 0.894359 +vt 0.718657 0.905984 +vt 0.707817 0.928753 +vt 0.710513 0.923443 +vt 0.710524 0.925162 +vt 0.703892 0.929475 +vt 0.705951 0.928100 +vt 0.700735 0.928172 +vt 0.697233 0.918728 +vt 0.698478 0.920669 +vt 0.698376 0.925442 +vt 0.706407 0.842801 +vt 0.705252 0.842284 +vt 0.711401 0.844551 +vt 0.690525 0.827220 +vt 0.697849 0.830432 +vt 0.689186 0.831550 +vt 0.678315 0.863570 +vt 0.676170 0.886814 +vt 0.675376 0.881544 +vt 0.674435 0.877023 +vt 0.675531 0.876512 +vt 0.675153 0.872739 +vt 0.677624 0.864010 +vt 0.675271 0.870203 +vt 0.679448 0.853644 +vt 0.680844 0.852003 +vt 0.681400 0.851260 +vt 0.682084 0.849917 +vt 0.678876 0.858467 +vt 0.682974 0.844895 +vt 0.683003 0.839756 +vt 0.682760 0.842572 +vt 0.682368 0.847580 +vt 0.677625 0.886025 +vt 0.703443 0.832326 +vt 0.701248 0.826200 +vt 0.698924 0.829420 +vt 0.714058 0.850685 +vt 0.714583 0.852802 +vt 0.715205 0.857638 +vt 0.715044 0.860870 +vt 0.696536 0.918142 +vt 0.695437 0.921007 +vt 0.691650 0.920389 +vt 0.682691 0.912211 +vt 0.684466 0.917221 +vt 0.690814 0.925106 +vt 0.686185 0.918529 +vt 0.676893 0.892971 +vt 0.680963 0.911972 +vt 0.680163 0.909483 +vt 0.715467 0.914659 +vt 0.720019 0.912804 +vt 0.716687 0.918609 +vt 0.714588 0.916169 +vt 0.719661 0.887020 +vt 0.720219 0.869674 +vt 0.721451 0.882580 +vt 0.721384 0.878772 +vt 0.721254 0.876909 +vt 0.717097 0.870307 +vt 0.716580 0.866662 +vt 0.716036 0.862966 +vt 0.709469 0.928767 +vt 0.710194 0.927334 +vt 0.704541 0.929722 +vt 0.702640 0.932835 +vt 0.711274 0.923577 +vt 0.699144 0.927408 +vt 0.705513 0.840396 +vt 0.708095 0.839570 +vt 0.710919 0.843504 +vt 0.712554 0.844095 +vt 0.712669 0.845914 +vt 0.693652 0.823876 +vt 0.697013 0.825985 +vt 0.691742 0.822907 +vt 0.689670 0.825921 +vt 0.698833 0.827558 +vt 0.687739 0.832701 +vt 0.688935 0.828203 +vt 0.675284 0.884001 +vt 0.674957 0.879410 +vt 0.675120 0.875886 +vt 0.674747 0.873711 +vt 0.677253 0.863040 +vt 0.674100 0.868211 +vt 0.678593 0.854396 +vt 0.678417 0.856894 +vt 0.678069 0.860358 +vt 0.685202 0.834052 +vt 0.683208 0.834548 +vt 0.703633 0.831482 +vt 0.702978 0.827021 +vt 0.699315 0.826190 +vt 0.704831 0.832801 +vt 0.705323 0.837118 +vt 0.713781 0.846419 +vt 0.715785 0.854381 +vt 0.716582 0.855157 +vt 0.696011 0.918903 +vt 0.694028 0.923137 +vt 0.692581 0.924254 +vt 0.690739 0.922281 +vt 0.681623 0.913686 +vt 0.683010 0.917192 +vt 0.683896 0.919154 +vt 0.689738 0.926800 +vt 0.685147 0.922356 +vt 0.674867 0.900778 +vt 0.677876 0.907543 +vt 0.719834 0.907908 +vt 0.720116 0.909840 +vt 0.720947 0.915925 +vt 0.717927 0.919063 +vt 0.712326 0.922226 +vt 0.714256 0.918266 +vt 0.719017 0.867069 +vt 0.717339 0.869187 +vt 0.721320 0.868419 +vt 0.720990 0.871971 +vt 0.721233 0.884226 +vt 0.721600 0.881054 +vt 0.720673 0.886560 +vt 0.721332 0.873461 +vt 0.716186 0.860013 +vt 0.720166 0.888577 +vt 0.720005 0.891089 +vt 0.720633 0.896441 +vt 0.720003 0.902943 +vt 0.719874 0.905506 +vt 0.709079 0.930367 +vt 0.706154 0.930080 +vt 0.711155 0.926595 +vt 0.701286 0.934296 +vt 0.697545 0.920910 +vt 0.696901 0.920289 +vt 0.698173 0.927868 +vt 0.706459 0.836826 +vt 0.707050 0.837799 +vt 0.710802 0.841961 +vt 0.711366 0.843080 +vt 0.696017 0.824919 +vt 0.691089 0.821693 +vt 0.688050 0.829946 +vt 0.672645 0.885967 +vt 0.673976 0.880711 +vt 0.674155 0.878266 +vt 0.675173 0.875143 +vt 0.674386 0.871942 +vt 0.676629 0.862034 +vt 0.674221 0.870336 +vt 0.674665 0.862692 +vt 0.679610 0.851222 +vt 0.678339 0.855543 +vt 0.678774 0.851109 +vt 0.680695 0.850152 +vt 0.681537 0.849743 +vt 0.677980 0.857983 +vt 0.677554 0.861160 +vt 0.685812 0.831288 +vt 0.682054 0.845828 +vt 0.682793 0.836667 +vt 0.681798 0.839789 +vt 0.702481 0.823705 +vt 0.700671 0.822802 +vt 0.705910 0.834312 +vt 0.714515 0.848524 +vt 0.714829 0.850997 +vt 0.715444 0.852210 +vt 0.694987 0.922940 +vt 0.691860 0.923828 +vt 0.691382 0.922198 +vt 0.681675 0.916156 +vt 0.687377 0.926999 +vt 0.688689 0.929265 +vt 0.685774 0.925139 +vt 0.673933 0.892932 +vt 0.680265 0.913390 +vt 0.679356 0.913790 +vt 0.721241 0.912678 +vt 0.717853 0.923445 +vt 0.713403 0.920984 +vt 0.717876 0.867015 +vt 0.720691 0.865953 +vt 0.721546 0.870903 +vt 0.722127 0.884593 +vt 0.723004 0.880459 +vt 0.722587 0.877454 +vt 0.722370 0.879379 +vt 0.722625 0.874701 +vt 0.717514 0.864214 +vt 0.717241 0.862317 +vt 0.720626 0.894642 +vt 0.720217 0.900479 +vt 0.720355 0.904082 +vt 0.711240 0.929151 +vt 0.710328 0.931195 +vt 0.707177 0.930984 +vt 0.711496 0.924884 +vt 0.704162 0.934887 +vt 0.705994 0.932248 +vt 0.699522 0.929219 +vt 0.702761 0.935904 +vt 0.697502 0.924069 +vt 0.697864 0.926371 +vt 0.698324 0.929197 +vt 0.708604 0.837619 +vt 0.713187 0.844947 +vt 0.711678 0.842267 +vt 0.695728 0.822835 +vt 0.692193 0.821254 +vt 0.696922 0.823567 +vt 0.697293 0.825256 +vt 0.689926 0.822459 +vt 0.688941 0.822654 +vt 0.686248 0.828728 +vt 0.687616 0.826532 +vt 0.673276 0.877126 +vt 0.674499 0.875032 +vt 0.673693 0.873351 +vt 0.673861 0.869813 +vt 0.672375 0.865918 +vt 0.677985 0.852957 +vt 0.681527 0.846583 +vt 0.677981 0.856436 +vt 0.677568 0.857536 +vt 0.677449 0.859826 +vt 0.677685 0.858779 +vt 0.684735 0.832527 +vt 0.681644 0.843200 +vt 0.680113 0.834888 +vt 0.705460 0.830215 +vt 0.704019 0.826660 +vt 0.701860 0.822660 +vt 0.698897 0.824485 +vt 0.699555 0.823909 +vt 0.715379 0.846523 +vt 0.716360 0.853325 +vt 0.716938 0.857985 +vt 0.696798 0.921511 +vt 0.693078 0.925581 +vt 0.696678 0.923657 +vt 0.693987 0.925267 +vt 0.691733 0.929230 +vt 0.680512 0.917798 +vt 0.684572 0.925545 +vt 0.683569 0.924246 +vt 0.673946 0.911008 +vt 0.672390 0.898064 +vt 0.677431 0.914295 +vt 0.716210 0.921325 +vt 0.720935 0.907175 +vt 0.723428 0.912889 +vt 0.719518 0.921382 +vt 0.722077 0.914546 +vt 0.713218 0.923363 +vt 0.718723 0.865932 +vt 0.719611 0.864293 +vt 0.722277 0.869746 +vt 0.721545 0.866782 +vt 0.721381 0.872239 +vt 0.723022 0.883966 +vt 0.721650 0.886405 +vt 0.720997 0.888020 +vt 0.720630 0.889390 +vt 0.721483 0.895363 +vt 0.721116 0.897674 +vt 0.720939 0.901685 +vt 0.720838 0.892597 +vt 0.709093 0.932518 +vt 0.712430 0.926413 +vt 0.705121 0.932982 +vt 0.701050 0.937288 +vt 0.699686 0.931793 +vt 0.697152 0.927873 +vt 0.697672 0.929418 +vt 0.707568 0.835139 +vt 0.709222 0.836009 +vt 0.713138 0.843952 +vt 0.712269 0.841484 +vt 0.713650 0.844107 +vt 0.694117 0.821777 +vt 0.693275 0.819534 +vt 0.691926 0.818929 +vt 0.690248 0.817290 +vt 0.671197 0.894946 +vt 0.672371 0.879727 +vt 0.673348 0.875140 +vt 0.673592 0.871045 +vt 0.676658 0.859456 +vt 0.677104 0.860492 +vt 0.673844 0.869323 +vt 0.671635 0.863795 +vt 0.672767 0.869500 +vt 0.679041 0.849355 +vt 0.677629 0.855239 +vt 0.678113 0.850588 +vt 0.680457 0.844986 +vt 0.685416 0.829455 +vt 0.683317 0.832494 +vt 0.681022 0.832941 +vt 0.680602 0.837986 +vt 0.680127 0.841232 +vt 0.705807 0.827263 +vt 0.704168 0.823878 +vt 0.702654 0.819102 +vt 0.699155 0.819337 +vt 0.707104 0.833196 +vt 0.715523 0.849861 +vt 0.714557 0.844154 +vt 0.716451 0.851791 +vt 0.719190 0.851635 +vt 0.718195 0.854618 +vt 0.692303 0.930652 +vt 0.695247 0.925581 +vt 0.694571 0.925152 +vt 0.679008 0.916111 +vt 0.681177 0.919508 +vt 0.686743 0.928165 +vt 0.684896 0.927134 +vt 0.682692 0.921419 +vt 0.670317 0.903877 +vt 0.723750 0.910746 +vt 0.721195 0.917563 +vt 0.721799 0.916582 +vt 0.719653 0.926359 +vt 0.715882 0.925686 +vt 0.713950 0.926376 +vt 0.718113 0.865123 +vt 0.720573 0.863335 +vt 0.722528 0.872002 +vt 0.722299 0.867607 +vt 0.721487 0.865633 +vt 0.723118 0.887743 +vt 0.722440 0.887831 +vt 0.723214 0.879089 +vt 0.723897 0.884025 +vt 0.723135 0.877766 +vt 0.723362 0.876484 +vt 0.717861 0.861459 +vt 0.721016 0.890416 +vt 0.721135 0.893924 +vt 0.721857 0.902736 +vt 0.721682 0.905302 +vt 0.710965 0.930623 +vt 0.710469 0.934061 +vt 0.707581 0.935565 +vt 0.713642 0.928866 +vt 0.705863 0.934876 +vt 0.703865 0.938251 +vt 0.698169 0.929912 +vt 0.699974 0.935912 +vt 0.702398 0.938116 +vt 0.699184 0.934051 +vt 0.696879 0.925848 +vt 0.710989 0.838967 +vt 0.711629 0.840603 +vt 0.713053 0.842406 +vt 0.696871 0.820424 +vt 0.694548 0.819408 +vt 0.698714 0.823075 +vt 0.691373 0.816490 +vt 0.689673 0.814911 +vt 0.688030 0.821940 +vt 0.686674 0.824531 +vt 0.667326 0.894690 +vt 0.667791 0.881450 +vt 0.671801 0.876446 +vt 0.672641 0.872150 +vt 0.675243 0.858421 +vt 0.673621 0.869666 +vt 0.671307 0.865369 +vt 0.673330 0.859275 +vt 0.671931 0.868935 +vt 0.678561 0.849963 +vt 0.677002 0.854223 +vt 0.676930 0.851525 +vt 0.677516 0.856404 +vt 0.685744 0.826193 +vt 0.684330 0.831096 +vt 0.682177 0.832106 +vt 0.679995 0.832990 +vt 0.679472 0.837459 +vt 0.706616 0.830051 +vt 0.705651 0.825193 +vt 0.704265 0.820351 +vt 0.701510 0.819056 +vt 0.697937 0.819794 +vt 0.716414 0.848256 +vt 0.715624 0.842591 +vt 0.718311 0.858151 +vt 0.693310 0.926928 +vt 0.694698 0.926481 +vt 0.688468 0.931497 +vt 0.679601 0.920298 +vt 0.678750 0.917689 +vt 0.683094 0.928929 +vt 0.680878 0.921918 +vt 0.674907 0.917518 +vt 0.670996 0.912627 +vt 0.723229 0.916023 +vt 0.724249 0.912734 +vt 0.721765 0.919867 +vt 0.720983 0.923275 +vt 0.716941 0.930536 +vt 0.714589 0.927233 +vt 0.718586 0.863379 +vt 0.719722 0.862315 +vt 0.721325 0.864186 +vt 0.723277 0.871034 +vt 0.721995 0.866151 +vt 0.721724 0.888373 +vt 0.724146 0.880865 +vt 0.723338 0.873670 +vt 0.721165 0.889081 +vt 0.721670 0.893353 +vt 0.721821 0.897340 +vt 0.722257 0.899622 +vt 0.721665 0.891331 +vt 0.711318 0.931492 +vt 0.709536 0.935425 +vt 0.712665 0.930806 +vt 0.699219 0.939426 +vt 0.701264 0.938406 +vt 0.698277 0.931602 +vt 0.698988 0.932797 +vt 0.695325 0.927726 +vt 0.697326 0.931562 +vt 0.697877 0.931280 +vt 0.708442 0.833417 +vt 0.710068 0.835180 +vt 0.712767 0.839288 +vt 0.714335 0.842322 +vt 0.697709 0.822032 +vt 0.692726 0.815811 +vt 0.688620 0.815783 +vt 0.690684 0.813329 +vt 0.671597 0.872583 +vt 0.676732 0.856573 +vt 0.671311 0.867179 +vt 0.670758 0.863545 +vt 0.671892 0.860343 +vt 0.678368 0.846422 +vt 0.678845 0.846410 +vt 0.677295 0.852693 +vt 0.677455 0.849480 +vt 0.684912 0.827276 +vt 0.683283 0.829709 +vt 0.681171 0.829681 +vt 0.678724 0.833433 +vt 0.680543 0.830872 +vt 0.679131 0.835485 +vt 0.678988 0.840621 +vt 0.679470 0.844228 +vt 0.706999 0.828412 +vt 0.706892 0.826504 +vt 0.703986 0.816506 +vt 0.702452 0.816910 +vt 0.699620 0.814183 +vt 0.697580 0.816999 +vt 0.707610 0.832351 +vt 0.717154 0.845569 +vt 0.718536 0.850265 +vt 0.720615 0.851629 +vt 0.719086 0.855652 +vt 0.693052 0.932192 +vt 0.694228 0.926870 +vt 0.688224 0.936402 +vt 0.685237 0.930573 +vt 0.686216 0.930903 +vt 0.683351 0.930765 +vt 0.675778 0.918097 +vt 0.673382 0.918945 +vt 0.669710 0.910276 +vt 0.672231 0.915818 +vt 0.723404 0.905980 +vt 0.723731 0.914485 +vt 0.724731 0.911684 +vt 0.723578 0.919813 +vt 0.721695 0.925254 +vt 0.719001 0.932504 +vt 0.715583 0.928934 +vt 0.720945 0.859823 +vt 0.721343 0.862071 +vt 0.722041 0.864410 +vt 0.722694 0.865712 +vt 0.722465 0.891981 +vt 0.721967 0.889830 +vt 0.723512 0.877864 +vt 0.723933 0.878554 +vt 0.719187 0.860360 +vt 0.721505 0.889754 +vt 0.722368 0.893909 +vt 0.722400 0.897193 +vt 0.723272 0.900009 +vt 0.711830 0.934148 +vt 0.710763 0.936579 +vt 0.709202 0.937223 +vt 0.704984 0.939516 +vt 0.714105 0.931950 +vt 0.703344 0.941481 +vt 0.702358 0.941520 +vt 0.697924 0.933707 +vt 0.695149 0.929549 +vt 0.695799 0.931707 +vt 0.709701 0.832927 +vt 0.710590 0.833995 +vt 0.711517 0.838557 +vt 0.713606 0.839953 +vt 0.696352 0.818111 +vt 0.695324 0.816657 +vt 0.691943 0.812854 +vt 0.688633 0.814117 +vt 0.690269 0.809450 +vt 0.687206 0.819470 +vt 0.685976 0.822594 +vt 0.663684 0.891994 +vt 0.666906 0.901870 +vt 0.670435 0.874517 +vt 0.675595 0.856084 +vt 0.672798 0.854008 +vt 0.670456 0.865931 +vt 0.671498 0.862142 +vt 0.670523 0.863831 +vt 0.672288 0.857016 +vt 0.669487 0.867045 +vt 0.677707 0.845879 +vt 0.676392 0.853570 +vt 0.676470 0.848883 +vt 0.685312 0.824636 +vt 0.683669 0.828731 +vt 0.682475 0.828111 +vt 0.684121 0.826186 +vt 0.679828 0.831473 +vt 0.678491 0.836587 +vt 0.678243 0.838969 +vt 0.707350 0.830350 +vt 0.706661 0.822035 +vt 0.706896 0.816582 +vt 0.717499 0.849043 +vt 0.714547 0.840231 +vt 0.717174 0.840231 +vt 0.719422 0.848615 +vt 0.720251 0.849380 +vt 0.719402 0.857782 +vt 0.691979 0.933561 +vt 0.694145 0.929556 +vt 0.694510 0.927995 +vt 0.686165 0.937665 +vt 0.678982 0.923130 +vt 0.678508 0.919262 +vt 0.686295 0.933634 +vt 0.681374 0.929984 +vt 0.682608 0.930638 +vt 0.674703 0.921755 +vt 0.673957 0.920380 +vt 0.668749 0.907999 +vt 0.670038 0.913107 +vt 0.670998 0.916110 +vt 0.677161 0.919408 +vt 0.724583 0.907361 +vt 0.724068 0.915850 +vt 0.725097 0.913076 +vt 0.724869 0.910631 +vt 0.724529 0.914649 +vt 0.722258 0.923173 +vt 0.724257 0.917459 +vt 0.722611 0.928805 +vt 0.721912 0.931010 +vt 0.717511 0.939143 +vt 0.715487 0.932590 +vt 0.714901 0.930229 +vt 0.720258 0.858549 +vt 0.723821 0.891746 +vt 0.723741 0.902680 +vt 0.722744 0.896945 +vt 0.711433 0.936408 +vt 0.707668 0.939466 +vt 0.713292 0.933654 +vt 0.697923 0.936766 +vt 0.700749 0.942485 +vt 0.694787 0.928728 +vt 0.696202 0.933887 +vt 0.709334 0.831742 +vt 0.712172 0.835858 +vt 0.714186 0.835502 +vt 0.693925 0.813121 +vt 0.687516 0.815876 +vt 0.688832 0.812616 +vt 0.691323 0.809959 +vt 0.686028 0.821074 +vt 0.663900 0.886497 +vt 0.664676 0.894227 +vt 0.665679 0.899454 +vt 0.667906 0.905415 +vt 0.668863 0.872624 +vt 0.670787 0.871386 +vt 0.670704 0.862142 +vt 0.671355 0.858848 +vt 0.671261 0.861273 +vt 0.678606 0.844788 +vt 0.676726 0.847751 +vt 0.676099 0.850371 +vt 0.675612 0.851722 +vt 0.684433 0.824225 +vt 0.680707 0.827283 +vt 0.682140 0.826302 +vt 0.679574 0.828663 +vt 0.680138 0.830228 +vt 0.676857 0.840470 +vt 0.707763 0.828937 +vt 0.707940 0.827202 +vt 0.708256 0.824672 +vt 0.705907 0.812172 +vt 0.702941 0.814786 +vt 0.700072 0.808093 +vt 0.697806 0.813693 +vt 0.708443 0.831541 +vt 0.708050 0.830497 +vt 0.718557 0.846546 +vt 0.715696 0.838495 +vt 0.718706 0.843088 +vt 0.718536 0.848408 +vt 0.721292 0.849342 +vt 0.720974 0.852986 +vt 0.693350 0.934930 +vt 0.693674 0.933588 +vt 0.688429 0.938093 +vt 0.678524 0.921199 +vt 0.685019 0.933286 +vt 0.683923 0.931813 +vt 0.682824 0.933176 +vt 0.676366 0.919248 +vt 0.673224 0.920203 +vt 0.671621 0.918270 +vt 0.668794 0.910741 +vt 0.669311 0.912507 +vt 0.670293 0.914759 +vt 0.670379 0.915156 +vt 0.724679 0.905004 +vt 0.724539 0.909210 +vt 0.725257 0.911611 +vt 0.724950 0.911288 +vt 0.723362 0.922460 +vt 0.724157 0.919142 +vt 0.722418 0.926750 +vt 0.722905 0.924845 +vt 0.721871 0.935834 +vt 0.718963 0.937953 +vt 0.716509 0.933788 +vt 0.721450 0.856673 +vt 0.721446 0.859848 +vt 0.722209 0.860828 +vt 0.722729 0.864180 +vt 0.710698 0.939664 +vt 0.709228 0.940324 +vt 0.706292 0.940834 +vt 0.714360 0.933150 +vt 0.705052 0.942002 +vt 0.702560 0.942909 +vt 0.697162 0.938772 +vt 0.698781 0.943676 +vt 0.701904 0.942964 +vt 0.694395 0.929051 +vt 0.694666 0.930248 +vt 0.695486 0.934843 +vt 0.709771 0.830119 +vt 0.710815 0.831958 +vt 0.696424 0.814496 +vt 0.695540 0.812371 +vt 0.692046 0.809932 +vt 0.687676 0.813164 +vt 0.688810 0.808962 +vt 0.690823 0.805879 +vt 0.686636 0.817889 +vt 0.685086 0.822504 +vt 0.662551 0.888211 +vt 0.662809 0.883496 +vt 0.663761 0.895509 +vt 0.665370 0.897242 +vt 0.666018 0.901110 +vt 0.666074 0.897167 +vt 0.666794 0.904514 +vt 0.669715 0.872635 +vt 0.666430 0.872396 +vt 0.675169 0.854144 +vt 0.671793 0.853683 +vt 0.669474 0.865133 +vt 0.670114 0.864160 +vt 0.670089 0.862847 +vt 0.671713 0.856617 +vt 0.670904 0.860506 +vt 0.668673 0.868775 +vt 0.677247 0.844024 +vt 0.676625 0.845405 +vt 0.675445 0.849268 +vt 0.683335 0.825884 +vt 0.683730 0.824309 +vt 0.680064 0.827859 +vt 0.677747 0.835395 +vt 0.678634 0.830407 +vt 0.677423 0.837721 +vt 0.708024 0.821836 +vt 0.707447 0.812870 +vt 0.704234 0.813541 +vt 0.702935 0.812013 +vt 0.697740 0.811324 +vt 0.719025 0.837634 +vt 0.716845 0.833811 +vt 0.721057 0.846410 +vt 0.718915 0.847772 +vt 0.721684 0.851565 +vt 0.721431 0.854402 +vt 0.691981 0.939854 +vt 0.686213 0.943119 +vt 0.685410 0.935177 +vt 0.678113 0.926631 +vt 0.678273 0.922910 +vt 0.677411 0.921255 +vt 0.675755 0.921207 +vt 0.673352 0.922603 +vt 0.667691 0.907559 +vt 0.668019 0.909475 +vt 0.669267 0.913939 +vt 0.670006 0.914585 +vt 0.670114 0.917111 +vt 0.676704 0.921463 +vt 0.725324 0.906359 +vt 0.724963 0.908433 +vt 0.724635 0.916263 +vt 0.725543 0.912610 +vt 0.725370 0.914635 +vt 0.725280 0.909379 +vt 0.723013 0.923613 +vt 0.724202 0.921653 +vt 0.724307 0.920387 +vt 0.724686 0.918764 +vt 0.722881 0.930265 +vt 0.723165 0.927677 +vt 0.723185 0.931979 +vt 0.720117 0.935065 +vt 0.718582 0.939523 +vt 0.715272 0.937584 +vt 0.714898 0.935155 +vt 0.721907 0.857437 +vt 0.723039 0.862019 +vt 0.725070 0.903010 +vt 0.713139 0.936583 +vt 0.711669 0.940791 +vt 0.707764 0.941343 +vt 0.706767 0.942366 +vt 0.714132 0.935409 +vt 0.703927 0.942671 +vt 0.697199 0.942418 +vt 0.699484 0.948247 +vt 0.701473 0.944836 +vt 0.694720 0.932624 +vt 0.696313 0.940046 +vt 0.708911 0.830443 +vt 0.711588 0.831165 +vt 0.712406 0.832843 +vt 0.713457 0.831474 +vt 0.693610 0.810640 +vt 0.687047 0.813708 +vt 0.688112 0.810418 +vt 0.691977 0.806156 +vt 0.692335 0.807755 +vt 0.684805 0.819747 +vt 0.686087 0.816115 +vt 0.684691 0.821599 +vt 0.662451 0.890141 +vt 0.662226 0.886453 +vt 0.663544 0.879444 +vt 0.662885 0.893609 +vt 0.665640 0.901777 +vt 0.667218 0.907021 +vt 0.665995 0.903515 +vt 0.669337 0.870889 +vt 0.673980 0.851594 +vt 0.671902 0.852251 +vt 0.668559 0.865492 +vt 0.669746 0.862039 +vt 0.671195 0.856166 +vt 0.670210 0.859051 +vt 0.676231 0.845837 +vt 0.682661 0.823709 +vt 0.680265 0.826298 +vt 0.677913 0.833832 +vt 0.677952 0.831672 +vt 0.678886 0.827241 +vt 0.676240 0.836526 +vt 0.708374 0.830367 +vt 0.709408 0.826955 +vt 0.709858 0.821870 +vt 0.709482 0.818686 +vt 0.707116 0.810709 +vt 0.708154 0.815255 +vt 0.705044 0.809678 +vt 0.699166 0.806330 +vt 0.702056 0.806139 +vt 0.696917 0.811069 +vt 0.719387 0.845518 +vt 0.719766 0.843468 +vt 0.719426 0.846820 +vt 0.722565 0.848836 +vt 0.721728 0.847216 +vt 0.694496 0.940384 +vt 0.688448 0.942722 +vt 0.684912 0.940397 +vt 0.685117 0.937319 +vt 0.679101 0.936067 +vt 0.683462 0.934454 +vt 0.684530 0.934493 +vt 0.681415 0.936239 +vt 0.675518 0.923176 +vt 0.674041 0.923654 +vt 0.672445 0.921682 +vt 0.671244 0.921030 +vt 0.668069 0.911461 +vt 0.668421 0.912490 +vt 0.669682 0.915742 +vt 0.669491 0.919158 +vt 0.725781 0.904731 +vt 0.725457 0.907882 +vt 0.725032 0.917348 +vt 0.725290 0.916105 +vt 0.725969 0.913741 +vt 0.725873 0.911770 +vt 0.725373 0.910563 +vt 0.723530 0.924145 +vt 0.724062 0.922816 +vt 0.724684 0.919770 +vt 0.724808 0.918094 +vt 0.723276 0.929193 +vt 0.723604 0.926346 +vt 0.722774 0.934220 +vt 0.719430 0.940531 +vt 0.717392 0.941970 +vt 0.716524 0.939925 +vt 0.722198 0.855106 +vt 0.722188 0.859042 +vt 0.722758 0.859979 +vt 0.714640 0.942596 +vt 0.711083 0.942258 +vt 0.710344 0.942025 +vt 0.709031 0.943291 +vt 0.704208 0.946161 +vt 0.703051 0.945202 +vt 0.696346 0.943253 +vt 0.697355 0.945760 +vt 0.710928 0.828553 +vt 0.714301 0.828662 +vt 0.694626 0.810404 +vt 0.693890 0.805770 +vt 0.687255 0.811181 +vt 0.688159 0.808839 +vt 0.689526 0.804171 +vt 0.691632 0.802567 +vt 0.692997 0.806688 +vt 0.661885 0.889410 +vt 0.661832 0.887828 +vt 0.661713 0.885474 +vt 0.661971 0.882424 +vt 0.662882 0.895714 +vt 0.664149 0.898083 +vt 0.665047 0.901103 +vt 0.664606 0.899102 +vt 0.666490 0.906193 +vt 0.662521 0.875848 +vt 0.671466 0.853678 +vt 0.669521 0.863395 +vt 0.668621 0.863299 +vt 0.669601 0.859895 +vt 0.667055 0.864952 +vt 0.676008 0.843252 +vt 0.675509 0.845584 +vt 0.680643 0.825152 +vt 0.679618 0.826890 +vt 0.676789 0.832845 +vt 0.677461 0.829416 +vt 0.678365 0.827278 +vt 0.674289 0.840343 +vt 0.706194 0.808749 +vt 0.708085 0.810419 +vt 0.708780 0.811401 +vt 0.697788 0.807619 +vt 0.700867 0.803642 +vt 0.704703 0.806094 +vt 0.715341 0.827082 +vt 0.720770 0.838728 +vt 0.719250 0.831197 +vt 0.720293 0.845448 +vt 0.722799 0.850920 +vt 0.721452 0.845347 +vt 0.722626 0.852909 +vt 0.693155 0.941349 +vt 0.686395 0.949599 +vt 0.684542 0.945607 +vt 0.684527 0.936122 +vt 0.676844 0.922629 +vt 0.676379 0.933939 +vt 0.683678 0.934809 +vt 0.683149 0.934992 +vt 0.682805 0.936764 +vt 0.676256 0.922447 +vt 0.673015 0.924692 +vt 0.671992 0.923257 +vt 0.667101 0.907948 +vt 0.667580 0.908578 +vt 0.667377 0.909306 +vt 0.668272 0.913996 +vt 0.668985 0.917053 +vt 0.726063 0.906875 +vt 0.725667 0.911114 +vt 0.725901 0.915741 +vt 0.725796 0.910202 +vt 0.723743 0.923195 +vt 0.724869 0.921109 +vt 0.724561 0.922325 +vt 0.724920 0.919320 +vt 0.725176 0.918819 +vt 0.723659 0.930949 +vt 0.723897 0.928081 +vt 0.723603 0.934005 +vt 0.722395 0.935803 +vt 0.720292 0.937852 +vt 0.715887 0.941431 +vt 0.722844 0.855776 +vt 0.722725 0.857748 +vt 0.723354 0.860038 +vt 0.714363 0.938864 +vt 0.711942 0.943876 +vt 0.713319 0.944347 +vt 0.707256 0.942739 +vt 0.707426 0.943840 +vt 0.702141 0.945162 +vt 0.696311 0.944597 +vt 0.701275 0.947860 +vt 0.697120 0.947805 +vt 0.695051 0.942298 +vt 0.712818 0.829686 +vt 0.711233 0.824623 +vt 0.713468 0.827204 +vt 0.696616 0.809090 +vt 0.694507 0.807560 +vt 0.695614 0.809142 +vt 0.686498 0.813084 +vt 0.687521 0.809007 +vt 0.688511 0.805647 +vt 0.690279 0.802428 +vt 0.692610 0.802796 +vt 0.692296 0.806616 +vt 0.684592 0.817747 +vt 0.683456 0.822526 +vt 0.661956 0.891900 +vt 0.661551 0.887420 +vt 0.661214 0.884731 +vt 0.661267 0.883106 +vt 0.661591 0.881353 +vt 0.662197 0.894406 +vt 0.663231 0.896820 +vt 0.663778 0.897000 +vt 0.665002 0.902225 +vt 0.664484 0.900629 +vt 0.665578 0.904898 +vt 0.662505 0.871335 +vt 0.661751 0.879333 +vt 0.667528 0.868942 +vt 0.672491 0.849855 +vt 0.671017 0.855003 +vt 0.670914 0.852794 +vt 0.669557 0.861478 +vt 0.669758 0.855581 +vt 0.669243 0.857131 +vt 0.673865 0.847721 +vt 0.681325 0.823192 +vt 0.680088 0.825794 +vt 0.678645 0.825108 +vt 0.679268 0.824910 +vt 0.673394 0.835848 +vt 0.709303 0.814674 +vt 0.707480 0.809444 +vt 0.699825 0.803363 +vt 0.703381 0.802468 +vt 0.702169 0.801407 +vt 0.716235 0.828665 +vt 0.720587 0.834708 +vt 0.721232 0.841423 +vt 0.717999 0.828158 +vt 0.723523 0.849924 +vt 0.722803 0.846927 +vt 0.722572 0.845214 +vt 0.694102 0.942381 +vt 0.689581 0.945299 +vt 0.683947 0.942627 +vt 0.684398 0.938090 +vt 0.676185 0.923680 +vt 0.675889 0.941052 +vt 0.675699 0.927955 +vt 0.680173 0.939229 +vt 0.683401 0.935541 +vt 0.683323 0.935013 +vt 0.682055 0.937453 +vt 0.675135 0.925233 +vt 0.674013 0.925772 +vt 0.669080 0.924256 +vt 0.667345 0.912065 +vt 0.667461 0.913261 +vt 0.668387 0.915580 +vt 0.668663 0.918017 +vt 0.726455 0.905676 +vt 0.725954 0.907925 +vt 0.725970 0.908882 +vt 0.726513 0.911625 +vt 0.724013 0.923580 +vt 0.724511 0.923562 +vt 0.725034 0.919884 +vt 0.724060 0.931539 +vt 0.723819 0.929279 +vt 0.724677 0.927465 +vt 0.723921 0.925134 +vt 0.723119 0.934824 +vt 0.723975 0.932705 +vt 0.722064 0.937522 +vt 0.720727 0.939560 +vt 0.718715 0.942965 +vt 0.722815 0.854234 +vt 0.723253 0.858281 +vt 0.715317 0.941953 +vt 0.710248 0.944648 +vt 0.711101 0.944719 +vt 0.714704 0.945882 +vt 0.705597 0.948060 +vt 0.708428 0.946302 +vt 0.704930 0.947188 +vt 0.703606 0.949225 +vt 0.702101 0.947485 +vt 0.695973 0.943548 +vt 0.695741 0.942717 +vt 0.701214 0.950139 +vt 0.696394 0.950464 +vt 0.696309 0.946430 +vt 0.715219 0.824014 +vt 0.713788 0.824852 +vt 0.694412 0.805722 +vt 0.692950 0.804961 +vt 0.686586 0.810827 +vt 0.685532 0.815282 +vt 0.687766 0.806126 +vt 0.688565 0.803459 +vt 0.690912 0.799821 +vt 0.692399 0.800644 +vt 0.682763 0.820147 +vt 0.660896 0.891589 +vt 0.661391 0.888722 +vt 0.661109 0.886121 +vt 0.662400 0.896235 +vt 0.662799 0.896592 +vt 0.663214 0.897772 +vt 0.664065 0.899076 +vt 0.663988 0.899819 +vt 0.666441 0.908827 +vt 0.665938 0.906986 +vt 0.661297 0.873633 +vt 0.664146 0.866119 +vt 0.660898 0.878429 +vt 0.671339 0.850431 +vt 0.666788 0.861555 +vt 0.669038 0.861127 +vt 0.665655 0.864007 +vt 0.673640 0.842987 +vt 0.680392 0.823486 +vt 0.680129 0.824675 +vt 0.675195 0.828692 +vt 0.677019 0.826675 +vt 0.678010 0.825622 +vt 0.672606 0.837949 +vt 0.712734 0.818603 +vt 0.710859 0.816848 +vt 0.707221 0.806666 +vt 0.708805 0.810042 +vt 0.708590 0.805742 +vt 0.710112 0.809494 +vt 0.706133 0.806299 +vt 0.698074 0.803894 +vt 0.700364 0.802075 +vt 0.705735 0.799679 +vt 0.701107 0.801566 +vt 0.697276 0.807510 +vt 0.720653 0.843473 +vt 0.715899 0.825112 +vt 0.721963 0.836794 +vt 0.721942 0.840437 +vt 0.720777 0.831835 +vt 0.718959 0.828682 +vt 0.723985 0.847949 +vt 0.723546 0.851696 +vt 0.721885 0.843401 +vt 0.692886 0.944586 +vt 0.691211 0.947746 +vt 0.689513 0.947692 +vt 0.684450 0.950355 +vt 0.682651 0.942470 +vt 0.682145 0.943874 +vt 0.683655 0.939556 +vt 0.683770 0.936677 +vt 0.674717 0.939725 +vt 0.677224 0.941951 +vt 0.674427 0.930758 +vt 0.681176 0.939281 +vt 0.681837 0.938625 +vt 0.672860 0.927420 +vt 0.672178 0.925716 +vt 0.671413 0.926612 +vt 0.668708 0.921957 +vt 0.667331 0.914956 +vt 0.668391 0.919180 +vt 0.667756 0.917438 +vt 0.726571 0.907273 +vt 0.726241 0.907993 +vt 0.726385 0.910116 +vt 0.724241 0.924720 +vt 0.725015 0.923603 +vt 0.725401 0.920297 +vt 0.724085 0.930443 +vt 0.724364 0.925870 +vt 0.724312 0.928844 +vt 0.723501 0.935502 +vt 0.724485 0.933882 +vt 0.723055 0.936904 +vt 0.719754 0.941175 +vt 0.719744 0.941878 +vt 0.717479 0.944688 +vt 0.723240 0.854337 +vt 0.723454 0.856731 +vt 0.723821 0.858294 +vt 0.715782 0.943290 +vt 0.711977 0.946206 +vt 0.712651 0.945798 +vt 0.707588 0.948341 +vt 0.702114 0.949244 +vt 0.695469 0.944294 +vt 0.700597 0.951392 +vt 0.697905 0.954463 +vt 0.696042 0.947720 +vt 0.695686 0.945832 +vt 0.694524 0.944663 +vt 0.712856 0.825845 +vt 0.696570 0.806815 +vt 0.695362 0.806327 +vt 0.694746 0.804194 +vt 0.693756 0.803790 +vt 0.685936 0.811239 +vt 0.685361 0.813132 +vt 0.686855 0.807618 +vt 0.688215 0.803071 +vt 0.688826 0.799753 +vt 0.690319 0.796200 +vt 0.691692 0.800261 +vt 0.693459 0.801469 +vt 0.684270 0.815408 +vt 0.661160 0.893493 +vt 0.661150 0.892206 +vt 0.660904 0.886934 +vt 0.660492 0.885951 +vt 0.660141 0.883960 +vt 0.660345 0.882093 +vt 0.660779 0.880450 +vt 0.661694 0.896465 +vt 0.662755 0.897392 +vt 0.663575 0.899030 +vt 0.664755 0.906273 +vt 0.663752 0.902888 +vt 0.663478 0.900330 +vt 0.660614 0.873769 +vt 0.661799 0.865740 +vt 0.672064 0.848252 +vt 0.670254 0.851876 +vt 0.670698 0.850300 +vt 0.665921 0.861218 +vt 0.668658 0.854536 +vt 0.671649 0.839266 +vt 0.672020 0.846595 +vt 0.680731 0.821355 +vt 0.679598 0.823989 +vt 0.674131 0.833203 +vt 0.676837 0.823357 +vt 0.679176 0.822848 +vt 0.671755 0.834391 +vt 0.714271 0.821089 +vt 0.711583 0.809289 +vt 0.708644 0.807921 +vt 0.706407 0.803472 +vt 0.697461 0.805011 +vt 0.698528 0.802204 +vt 0.699741 0.801358 +vt 0.702004 0.799324 +vt 0.703434 0.797337 +vt 0.701482 0.799831 +vt 0.716829 0.826277 +vt 0.721691 0.833546 +vt 0.720969 0.833346 +vt 0.720283 0.829708 +vt 0.719378 0.827424 +vt 0.719314 0.828796 +vt 0.725153 0.849825 +vt 0.724106 0.851931 +vt 0.723433 0.852609 +vt 0.723678 0.845910 +vt 0.722849 0.843343 +vt 0.687859 0.950649 +vt 0.683164 0.947268 +vt 0.683527 0.952274 +vt 0.673834 0.935927 +vt 0.674730 0.944066 +vt 0.677176 0.945722 +vt 0.674254 0.927483 +vt 0.679398 0.944233 +vt 0.680624 0.941133 +vt 0.682927 0.939528 +vt 0.673278 0.928535 +vt 0.667978 0.923913 +vt 0.670843 0.928218 +vt 0.665751 0.910223 +vt 0.666442 0.912643 +vt 0.726955 0.906008 +vt 0.726578 0.908618 +vt 0.725527 0.922194 +vt 0.724730 0.924973 +vt 0.724525 0.932308 +vt 0.724406 0.931093 +vt 0.724499 0.929603 +vt 0.724847 0.926156 +vt 0.724830 0.928887 +vt 0.724159 0.935282 +vt 0.722638 0.938901 +vt 0.720611 0.941827 +vt 0.719472 0.943589 +vt 0.718875 0.945580 +vt 0.710557 0.949762 +vt 0.711350 0.952752 +vt 0.716209 0.945956 +vt 0.713136 0.950451 +vt 0.708665 0.950593 +vt 0.706374 0.949004 +vt 0.704773 0.950069 +vt 0.702374 0.949866 +vt 0.702324 0.951087 +vt 0.701260 0.951231 +vt 0.699662 0.952924 +vt 0.696247 0.953690 +vt 0.695118 0.948310 +vt 0.695623 0.946937 +vt 0.716029 0.822026 +vt 0.686144 0.809707 +vt 0.686842 0.805396 +vt 0.687809 0.803483 +vt 0.689087 0.797259 +vt 0.688148 0.802149 +vt 0.691970 0.797776 +vt 0.693144 0.799224 +vt 0.681754 0.814562 +vt 0.661417 0.894912 +vt 0.660524 0.889715 +vt 0.660220 0.892242 +vt 0.662244 0.897469 +vt 0.662886 0.899876 +vt 0.664133 0.904030 +vt 0.663352 0.901738 +vt 0.665655 0.908382 +vt 0.665113 0.907553 +vt 0.660250 0.876121 +vt 0.660444 0.871521 +vt 0.660613 0.869021 +vt 0.663582 0.863039 +vt 0.659799 0.880139 +vt 0.670792 0.847206 +vt 0.669526 0.854345 +vt 0.667078 0.858986 +vt 0.665805 0.858686 +vt 0.664610 0.861137 +vt 0.671285 0.843542 +vt 0.679882 0.822471 +vt 0.680259 0.819090 +vt 0.672672 0.832955 +vt 0.673161 0.830783 +vt 0.675872 0.823717 +vt 0.676771 0.821465 +vt 0.677850 0.821514 +vt 0.671008 0.836528 +vt 0.712405 0.813241 +vt 0.708156 0.804330 +vt 0.709533 0.807709 +vt 0.710961 0.807671 +vt 0.697588 0.802595 +vt 0.700626 0.800625 +vt 0.707070 0.794431 +vt 0.708180 0.800397 +vt 0.716736 0.824088 +vt 0.717715 0.825071 +vt 0.722675 0.834905 +vt 0.723075 0.838933 +vt 0.722839 0.841599 +vt 0.719763 0.828771 +vt 0.721077 0.829722 +vt 0.718988 0.825031 +vt 0.725815 0.848070 +vt 0.723871 0.853045 +vt 0.724330 0.844414 +vt 0.723256 0.844484 +vt 0.692419 0.946620 +vt 0.694193 0.947092 +vt 0.689200 0.951693 +vt 0.686196 0.955009 +vt 0.682758 0.949654 +vt 0.684006 0.957545 +vt 0.681801 0.942911 +vt 0.681778 0.945388 +vt 0.673147 0.940582 +vt 0.675696 0.946005 +vt 0.672739 0.935505 +vt 0.679955 0.943529 +vt 0.681741 0.940346 +vt 0.681196 0.940648 +vt 0.672504 0.929145 +vt 0.668451 0.925539 +vt 0.667108 0.922678 +vt 0.667076 0.920840 +vt 0.669534 0.926040 +vt 0.665594 0.917156 +vt 0.725304 0.924944 +vt 0.724462 0.931578 +vt 0.724552 0.930607 +vt 0.725209 0.926669 +vt 0.725371 0.928970 +vt 0.724112 0.936946 +vt 0.724796 0.935447 +vt 0.725024 0.932881 +vt 0.723717 0.938701 +vt 0.722781 0.940502 +vt 0.722217 0.941762 +vt 0.718359 0.946541 +vt 0.724396 0.855964 +vt 0.709767 0.949720 +vt 0.712133 0.950123 +vt 0.716393 0.949530 +vt 0.715056 0.952392 +vt 0.705568 0.950872 +vt 0.707451 0.952555 +vt 0.707014 0.950470 +vt 0.704238 0.951437 +vt 0.701356 0.952092 +vt 0.700518 0.954003 +vt 0.699633 0.954970 +vt 0.695780 0.957081 +vt 0.695217 0.953398 +vt 0.694535 0.951134 +vt 0.715479 0.819684 +vt 0.696091 0.805804 +vt 0.696311 0.805059 +vt 0.694436 0.802326 +vt 0.685764 0.809426 +vt 0.684189 0.811587 +vt 0.686243 0.807244 +vt 0.688754 0.798175 +vt 0.688219 0.800433 +vt 0.689289 0.795131 +vt 0.691583 0.793200 +vt 0.694350 0.800388 +vt 0.660028 0.894599 +vt 0.660585 0.887346 +vt 0.659775 0.887202 +vt 0.658810 0.883156 +vt 0.660788 0.896113 +vt 0.661742 0.897836 +vt 0.664062 0.905810 +vt 0.663034 0.903750 +vt 0.664768 0.909005 +vt 0.659632 0.875119 +vt 0.659840 0.873622 +vt 0.659942 0.878351 +vt 0.660174 0.866760 +vt 0.663381 0.860448 +vt 0.670126 0.849510 +vt 0.669691 0.851559 +vt 0.664250 0.857917 +vt 0.669047 0.851156 +vt 0.666721 0.854043 +vt 0.669027 0.840490 +vt 0.671203 0.845638 +vt 0.679905 0.821269 +vt 0.673228 0.828688 +vt 0.675151 0.822791 +vt 0.679089 0.821326 +vt 0.669986 0.833556 +vt 0.671724 0.831483 +vt 0.670800 0.833775 +vt 0.714262 0.813071 +vt 0.714837 0.809842 +vt 0.709466 0.804883 +vt 0.710290 0.807083 +vt 0.712148 0.806149 +vt 0.696505 0.803477 +vt 0.699282 0.799628 +vt 0.697960 0.800191 +vt 0.700256 0.798826 +vt 0.702419 0.795486 +vt 0.701774 0.797952 +vt 0.704660 0.791981 +vt 0.701158 0.798141 +vt 0.723149 0.836644 +vt 0.722679 0.833357 +vt 0.721866 0.831038 +vt 0.720696 0.827583 +vt 0.720106 0.826192 +vt 0.724956 0.853373 +vt 0.725312 0.845681 +vt 0.724255 0.853699 +vt 0.723555 0.842510 +vt 0.692261 0.949490 +vt 0.694847 0.946709 +vt 0.690591 0.951679 +vt 0.687298 0.953369 +vt 0.688010 0.954208 +vt 0.682145 0.948661 +vt 0.681634 0.951031 +vt 0.682294 0.955146 +vt 0.681920 0.941914 +vt 0.672159 0.937612 +vt 0.674495 0.946583 +vt 0.673757 0.944783 +vt 0.679451 0.947800 +vt 0.676052 0.946499 +vt 0.680144 0.946484 +vt 0.680703 0.942351 +vt 0.681245 0.941853 +vt 0.666412 0.924825 +vt 0.671708 0.931889 +vt 0.669239 0.929639 +vt 0.664324 0.911495 +vt 0.725837 0.925260 +vt 0.725143 0.925755 +vt 0.724782 0.931529 +vt 0.724982 0.930135 +vt 0.725354 0.927605 +vt 0.724473 0.936122 +vt 0.724891 0.934623 +vt 0.724794 0.932227 +vt 0.723282 0.939889 +vt 0.722904 0.939734 +vt 0.721678 0.943811 +vt 0.720329 0.944241 +vt 0.719823 0.945494 +vt 0.719119 0.947962 +vt 0.717404 0.947454 +vt 0.710580 0.952504 +vt 0.709675 0.952384 +vt 0.711982 0.952898 +vt 0.713239 0.954494 +vt 0.706453 0.951334 +vt 0.704883 0.952080 +vt 0.708076 0.954112 +vt 0.703535 0.951863 +vt 0.698684 0.957898 +vt 0.697241 0.957669 +vt 0.694182 0.949196 +vt 0.717157 0.821104 +vt 0.714967 0.816445 +vt 0.695327 0.801790 +vt 0.694839 0.802743 +vt 0.685716 0.804923 +vt 0.687283 0.803323 +vt 0.688423 0.798591 +vt 0.688444 0.797248 +vt 0.687640 0.800853 +vt 0.688531 0.795458 +vt 0.689683 0.793435 +vt 0.692910 0.795264 +vt 0.690404 0.793574 +vt 0.693031 0.797298 +vt 0.693956 0.798898 +vt 0.679577 0.814387 +vt 0.679855 0.806477 +vt 0.659943 0.889424 +vt 0.661174 0.897467 +vt 0.662494 0.902395 +vt 0.662252 0.900319 +vt 0.659313 0.877111 +vt 0.659420 0.871569 +vt 0.659475 0.870693 +vt 0.659140 0.868412 +vt 0.660300 0.864526 +vt 0.658816 0.879218 +vt 0.669593 0.847652 +vt 0.664717 0.855061 +vt 0.669924 0.843881 +vt 0.679376 0.820575 +vt 0.673534 0.826823 +vt 0.672176 0.829539 +vt 0.675817 0.821158 +vt 0.678625 0.819418 +vt 0.708837 0.802937 +vt 0.710875 0.805002 +vt 0.696667 0.800608 +vt 0.703576 0.792607 +vt 0.705703 0.789410 +vt 0.709788 0.797215 +vt 0.717614 0.823097 +vt 0.718961 0.823425 +vt 0.723170 0.835384 +vt 0.722229 0.832382 +vt 0.722874 0.834197 +vt 0.723903 0.838522 +vt 0.724045 0.840551 +vt 0.721863 0.828713 +vt 0.719939 0.824737 +vt 0.726692 0.845001 +vt 0.723814 0.843798 +vt 0.725113 0.843798 +vt 0.693518 0.948112 +vt 0.691496 0.953209 +vt 0.690053 0.953917 +vt 0.687183 0.955984 +vt 0.685631 0.957531 +vt 0.688771 0.954585 +vt 0.681374 0.953006 +vt 0.681010 0.959172 +vt 0.681451 0.944431 +vt 0.680990 0.949068 +vt 0.672458 0.941851 +vt 0.678014 0.949886 +vt 0.677522 0.948242 +vt 0.670996 0.936152 +vt 0.680487 0.944084 +vt 0.666332 0.926569 +vt 0.668636 0.928034 +vt 0.666055 0.922868 +vt 0.669660 0.932477 +vt 0.665518 0.921815 +vt 0.662393 0.917243 +vt 0.725508 0.926025 +vt 0.725570 0.926962 +vt 0.725457 0.931158 +vt 0.725807 0.927961 +vt 0.724783 0.936942 +vt 0.724553 0.938720 +vt 0.725266 0.935363 +vt 0.725198 0.934030 +vt 0.724048 0.940285 +vt 0.722919 0.941961 +vt 0.722682 0.943549 +vt 0.720754 0.946198 +vt 0.719523 0.946455 +vt 0.718187 0.948295 +vt 0.710917 0.954100 +vt 0.711844 0.954897 +vt 0.715935 0.952281 +vt 0.717613 0.949629 +vt 0.714641 0.954945 +vt 0.705486 0.953846 +vt 0.706870 0.953207 +vt 0.704062 0.952558 +vt 0.704427 0.952785 +vt 0.703030 0.953455 +vt 0.701793 0.953948 +vt 0.700635 0.957006 +vt 0.699983 0.958412 +vt 0.697382 0.958988 +vt 0.693510 0.955539 +vt 0.693064 0.950836 +vt 0.717016 0.818817 +vt 0.716796 0.817324 +vt 0.684929 0.808110 +vt 0.686476 0.803404 +vt 0.687700 0.799671 +vt 0.688812 0.793431 +vt 0.693056 0.792958 +vt 0.690136 0.791655 +vt 0.693628 0.796505 +vt 0.694583 0.798720 +vt 0.679173 0.817351 +vt 0.679699 0.809408 +vt 0.659630 0.896731 +vt 0.658525 0.893066 +vt 0.659071 0.888908 +vt 0.658657 0.885507 +vt 0.660465 0.897918 +vt 0.661400 0.898219 +vt 0.661694 0.899131 +vt 0.663395 0.907015 +vt 0.662366 0.903464 +vt 0.658693 0.875440 +vt 0.658415 0.873129 +vt 0.658518 0.866278 +vt 0.662222 0.859427 +vt 0.669508 0.849244 +vt 0.668747 0.845974 +vt 0.662283 0.853938 +vt 0.667508 0.847384 +vt 0.662013 0.856953 +vt 0.668945 0.842311 +vt 0.667482 0.836806 +vt 0.679053 0.818617 +vt 0.672694 0.828134 +vt 0.675271 0.820015 +vt 0.674112 0.823252 +vt 0.676479 0.819690 +vt 0.670226 0.831144 +vt 0.713892 0.806398 +vt 0.709530 0.802156 +vt 0.712290 0.802576 +vt 0.698302 0.797928 +vt 0.699836 0.797928 +vt 0.696982 0.797105 +vt 0.700790 0.797315 +vt 0.701616 0.795693 +vt 0.702743 0.793762 +vt 0.704880 0.789705 +vt 0.707805 0.790053 +vt 0.703562 0.790967 +vt 0.710002 0.792764 +vt 0.709875 0.800012 +vt 0.719731 0.823417 +vt 0.723307 0.834283 +vt 0.723820 0.836019 +vt 0.722717 0.831620 +vt 0.722058 0.826572 +vt 0.722817 0.829619 +vt 0.720601 0.825027 +vt 0.721255 0.825634 +vt 0.726582 0.843162 +vt 0.724631 0.842468 +vt 0.724675 0.843101 +vt 0.724299 0.841916 +vt 0.692134 0.951996 +vt 0.686614 0.958001 +vt 0.685028 0.961226 +vt 0.688245 0.956142 +vt 0.680495 0.952723 +vt 0.680667 0.955933 +vt 0.682611 0.962829 +vt 0.680915 0.945642 +vt 0.671243 0.940662 +vt 0.675151 0.947969 +vt 0.674117 0.948196 +vt 0.672358 0.945718 +vt 0.679926 0.950104 +vt 0.676715 0.948568 +vt 0.665581 0.926295 +vt 0.667133 0.927770 +vt 0.670345 0.934157 +vt 0.668429 0.930376 +vt 0.668824 0.933037 +vt 0.663100 0.922976 +vt 0.661633 0.910570 +vt 0.725823 0.926603 +vt 0.725844 0.930163 +vt 0.724604 0.937634 +vt 0.724249 0.939425 +vt 0.725077 0.938370 +vt 0.723528 0.941369 +vt 0.722597 0.945652 +vt 0.720087 0.947433 +vt 0.718474 0.949867 +vt 0.709994 0.954581 +vt 0.712491 0.955576 +vt 0.716646 0.951439 +vt 0.716023 0.953945 +vt 0.717225 0.951212 +vt 0.714102 0.956368 +vt 0.709262 0.953971 +vt 0.704749 0.953393 +vt 0.706909 0.956088 +vt 0.703802 0.953311 +vt 0.701541 0.956477 +vt 0.697953 0.961331 +vt 0.696090 0.960037 +vt 0.694047 0.959724 +vt 0.717986 0.820803 +vt 0.717984 0.822446 +vt 0.716018 0.815037 +vt 0.685474 0.801004 +vt 0.684085 0.804495 +vt 0.686971 0.801798 +vt 0.688022 0.796480 +vt 0.686853 0.799562 +vt 0.688183 0.793213 +vt 0.689301 0.791826 +vt 0.692032 0.790248 +vt 0.693469 0.794035 +vt 0.690907 0.789730 +vt 0.694364 0.797368 +vt 0.695036 0.798396 +vt 0.678475 0.814544 +vt 0.678851 0.808698 +vt 0.658809 0.896043 +vt 0.658083 0.888514 +vt 0.657800 0.881891 +vt 0.661081 0.898898 +vt 0.662137 0.904699 +vt 0.661485 0.901191 +vt 0.658121 0.876739 +vt 0.658740 0.870757 +vt 0.656353 0.867575 +vt 0.659309 0.861712 +vt 0.660195 0.860058 +vt 0.668721 0.848808 +vt 0.663016 0.851293 +vt 0.666876 0.841699 +vt 0.667991 0.842628 +vt 0.666751 0.838967 +vt 0.668389 0.831407 +vt 0.671297 0.830369 +vt 0.672666 0.827138 +vt 0.671968 0.828420 +vt 0.672747 0.825560 +vt 0.677182 0.816389 +vt 0.669199 0.829598 +vt 0.715354 0.811327 +vt 0.713047 0.802908 +vt 0.714872 0.804826 +vt 0.710296 0.802767 +vt 0.695711 0.798716 +vt 0.699180 0.796876 +vt 0.700078 0.798173 +vt 0.700205 0.797699 +vt 0.701685 0.793789 +vt 0.702962 0.792230 +vt 0.704287 0.789834 +vt 0.704629 0.788642 +vt 0.707135 0.786969 +vt 0.710727 0.794446 +vt 0.710842 0.798268 +vt 0.719022 0.821859 +vt 0.723354 0.832516 +vt 0.724470 0.839154 +vt 0.724389 0.837971 +vt 0.722699 0.827799 +vt 0.720361 0.824160 +vt 0.727137 0.843721 +vt 0.692091 0.954404 +vt 0.689584 0.955488 +vt 0.690789 0.956374 +vt 0.687419 0.957126 +vt 0.683527 0.961627 +vt 0.679741 0.960373 +vt 0.680519 0.961725 +vt 0.671065 0.942427 +vt 0.677864 0.952452 +vt 0.677083 0.951309 +vt 0.669566 0.939513 +vt 0.665568 0.926863 +vt 0.666001 0.928095 +vt 0.667825 0.929582 +vt 0.664725 0.925411 +vt 0.669088 0.935710 +vt 0.664350 0.924331 +vt 0.660859 0.922329 +vt 0.660530 0.914577 +vt 0.726618 0.926970 +vt 0.726203 0.933547 +vt 0.724870 0.937996 +vt 0.724540 0.939974 +vt 0.726129 0.937487 +vt 0.724186 0.941583 +vt 0.723344 0.942674 +vt 0.723189 0.944707 +vt 0.720961 0.948632 +vt 0.719887 0.949974 +vt 0.719006 0.950921 +vt 0.710841 0.955621 +vt 0.711820 0.956568 +vt 0.716979 0.952886 +vt 0.717624 0.952381 +vt 0.712762 0.956427 +vt 0.715529 0.955338 +vt 0.714970 0.956971 +vt 0.709149 0.955970 +vt 0.704641 0.954811 +vt 0.708109 0.957766 +vt 0.704151 0.953629 +vt 0.703837 0.954694 +vt 0.702801 0.955713 +vt 0.701000 0.959219 +vt 0.699817 0.960987 +vt 0.695189 0.960343 +vt 0.692437 0.957836 +vt 0.717943 0.817302 +vt 0.717252 0.814650 +vt 0.687570 0.797428 +vt 0.687714 0.795047 +vt 0.687149 0.798124 +vt 0.688841 0.791067 +vt 0.693203 0.789432 +vt 0.693789 0.794856 +vt 0.694114 0.792815 +vt 0.689556 0.789033 +vt 0.694971 0.795035 +vt 0.694785 0.797866 +vt 0.678301 0.817684 +vt 0.682581 0.803107 +vt 0.679300 0.804178 +vt 0.660453 0.900051 +vt 0.658706 0.898602 +vt 0.658012 0.895759 +vt 0.656707 0.889188 +vt 0.657177 0.885065 +vt 0.657968 0.879612 +vt 0.657697 0.874407 +vt 0.657734 0.871522 +vt 0.656960 0.865462 +vt 0.657092 0.862807 +vt 0.661052 0.857787 +vt 0.663912 0.846204 +vt 0.661865 0.851854 +vt 0.665215 0.833574 +vt 0.667218 0.833078 +vt 0.671327 0.828747 +vt 0.671968 0.827488 +vt 0.674164 0.820608 +vt 0.675744 0.816379 +vt 0.672890 0.823881 +vt 0.670255 0.829042 +vt 0.715777 0.806436 +vt 0.712449 0.801354 +vt 0.711857 0.801746 +vt 0.698305 0.795484 +vt 0.700164 0.796174 +vt 0.695941 0.796093 +vt 0.701097 0.795544 +vt 0.704948 0.787433 +vt 0.709295 0.786912 +vt 0.705680 0.786260 +vt 0.702880 0.790104 +vt 0.704110 0.787675 +vt 0.711436 0.793974 +vt 0.711087 0.795703 +vt 0.710931 0.800156 +vt 0.720099 0.821438 +vt 0.724031 0.834934 +vt 0.723427 0.830889 +vt 0.724186 0.833249 +vt 0.725179 0.839909 +vt 0.724590 0.835269 +vt 0.721965 0.825154 +vt 0.723313 0.826046 +vt 0.723436 0.827974 +vt 0.720487 0.823107 +vt 0.720711 0.824500 +vt 0.721125 0.824339 +vt 0.727141 0.841227 +vt 0.726151 0.841023 +vt 0.687289 0.958701 +vt 0.686775 0.960854 +vt 0.683820 0.966233 +vt 0.687774 0.957252 +vt 0.689850 0.957291 +vt 0.679222 0.956347 +vt 0.677654 0.959753 +vt 0.681502 0.965347 +vt 0.683331 0.964943 +vt 0.669601 0.941373 +vt 0.675091 0.949727 +vt 0.675662 0.951379 +vt 0.671409 0.951071 +vt 0.670499 0.944742 +vt 0.678932 0.953369 +vt 0.677399 0.951962 +vt 0.665952 0.929564 +vt 0.667450 0.931437 +vt 0.667841 0.934550 +vt 0.661818 0.924960 +vt 0.659945 0.918077 +vt 0.660120 0.911345 +vt 0.725057 0.940354 +vt 0.725769 0.941232 +vt 0.724603 0.941063 +vt 0.723989 0.942773 +vt 0.723532 0.943829 +vt 0.723240 0.945593 +vt 0.721766 0.949164 +vt 0.710094 0.956082 +vt 0.712358 0.957186 +vt 0.717120 0.955217 +vt 0.715924 0.956892 +vt 0.713901 0.957509 +vt 0.705001 0.956519 +vt 0.707011 0.958781 +vt 0.702156 0.957970 +vt 0.698108 0.962873 +vt 0.695725 0.962088 +vt 0.696472 0.962803 +vt 0.693838 0.962178 +vt 0.719445 0.818915 +vt 0.716967 0.811963 +vt 0.687352 0.796059 +vt 0.686267 0.797727 +vt 0.687349 0.792062 +vt 0.688560 0.790967 +vt 0.688961 0.789952 +vt 0.691750 0.786001 +vt 0.694404 0.790406 +vt 0.694811 0.793717 +vt 0.690495 0.787026 +vt 0.695136 0.797175 +vt 0.677162 0.811641 +vt 0.680628 0.804369 +vt 0.677979 0.806729 +vt 0.659583 0.900622 +vt 0.659206 0.898721 +vt 0.656261 0.890649 +vt 0.656770 0.887347 +vt 0.656187 0.882187 +vt 0.657304 0.879090 +vt 0.660602 0.907059 +vt 0.660359 0.903283 +vt 0.657159 0.876118 +vt 0.656958 0.872625 +vt 0.656359 0.866172 +vt 0.657724 0.860117 +vt 0.659208 0.859945 +vt 0.660548 0.856736 +vt 0.662767 0.848145 +vt 0.662196 0.849984 +vt 0.664414 0.842753 +vt 0.664699 0.838260 +vt 0.667886 0.829821 +vt 0.666446 0.831048 +vt 0.672211 0.826448 +vt 0.673912 0.822293 +vt 0.674267 0.818693 +vt 0.676338 0.813639 +vt 0.669982 0.827596 +vt 0.716623 0.809527 +vt 0.715234 0.802265 +vt 0.715923 0.804275 +vt 0.713134 0.801012 +vt 0.697104 0.791829 +vt 0.699464 0.793693 +vt 0.696707 0.794070 +vt 0.700743 0.794107 +vt 0.702203 0.791569 +vt 0.707804 0.784099 +vt 0.706342 0.784546 +vt 0.711145 0.788905 +vt 0.711570 0.791750 +vt 0.712168 0.797741 +vt 0.712006 0.800269 +vt 0.723919 0.831744 +vt 0.724931 0.838175 +vt 0.725088 0.835525 +vt 0.723773 0.829386 +vt 0.721684 0.824262 +vt 0.722587 0.824788 +vt 0.720726 0.823972 +vt 0.691345 0.956206 +vt 0.685870 0.963658 +vt 0.684559 0.965260 +vt 0.689492 0.959540 +vt 0.678955 0.962697 +vt 0.682232 0.966507 +vt 0.679900 0.964769 +vt 0.682711 0.965953 +vt 0.669408 0.942839 +vt 0.674029 0.949646 +vt 0.672653 0.952974 +vt 0.677217 0.953487 +vt 0.668785 0.941395 +vt 0.667497 0.937758 +vt 0.664791 0.928191 +vt 0.664566 0.926897 +vt 0.660067 0.925796 +vt 0.658716 0.919514 +vt 0.659596 0.914210 +vt 0.724554 0.943048 +vt 0.723765 0.945302 +vt 0.722999 0.946385 +vt 0.721821 0.951743 +vt 0.719831 0.952570 +vt 0.719368 0.952203 +vt 0.718810 0.953405 +vt 0.711582 0.957430 +vt 0.710703 0.957344 +vt 0.717789 0.954191 +vt 0.716639 0.957018 +vt 0.712593 0.957107 +vt 0.714381 0.958099 +vt 0.713077 0.957483 +vt 0.708975 0.957540 +vt 0.706068 0.957766 +vt 0.703917 0.956711 +vt 0.707766 0.960973 +vt 0.703160 0.957287 +vt 0.700493 0.962444 +vt 0.701970 0.962002 +vt 0.696878 0.963926 +vt 0.694612 0.962218 +vt 0.692093 0.962233 +vt 0.719067 0.814877 +vt 0.717681 0.812672 +vt 0.682778 0.798716 +vt 0.686963 0.796785 +vt 0.686516 0.794568 +vt 0.694562 0.787413 +vt 0.693007 0.786020 +vt 0.695493 0.789986 +vt 0.689461 0.786709 +vt 0.695433 0.795618 +vt 0.695694 0.793921 +vt 0.676990 0.809522 +vt 0.680998 0.800729 +vt 0.677568 0.804597 +vt 0.658573 0.900084 +vt 0.658124 0.898146 +vt 0.656383 0.894028 +vt 0.655832 0.888063 +vt 0.656202 0.883678 +vt 0.656790 0.881008 +vt 0.656643 0.874270 +vt 0.656507 0.870139 +vt 0.656282 0.864980 +vt 0.656032 0.866607 +vt 0.656642 0.860417 +vt 0.659182 0.857202 +vt 0.662683 0.846700 +vt 0.661792 0.849899 +vt 0.661110 0.852406 +vt 0.663705 0.844041 +vt 0.665784 0.840401 +vt 0.662829 0.836803 +vt 0.668573 0.828043 +vt 0.670756 0.827612 +vt 0.671457 0.826839 +vt 0.673234 0.821004 +vt 0.673400 0.818980 +vt 0.673939 0.816770 +vt 0.671459 0.824837 +vt 0.675172 0.813828 +vt 0.716543 0.805339 +vt 0.714109 0.800762 +vt 0.698330 0.790817 +vt 0.701001 0.792222 +vt 0.705236 0.785220 +vt 0.709474 0.782254 +vt 0.711079 0.783332 +vt 0.703215 0.788278 +vt 0.701704 0.789119 +vt 0.711895 0.795583 +vt 0.712262 0.792427 +vt 0.720238 0.819673 +vt 0.721205 0.822602 +vt 0.724083 0.830587 +vt 0.724643 0.831575 +vt 0.725690 0.837776 +vt 0.725057 0.833627 +vt 0.722187 0.824117 +vt 0.723314 0.823153 +vt 0.724725 0.829347 +vt 0.721003 0.823375 +vt 0.720940 0.824070 +vt 0.721443 0.823199 +vt 0.727083 0.837695 +vt 0.691108 0.957576 +vt 0.690358 0.957326 +vt 0.687970 0.959608 +vt 0.686870 0.964668 +vt 0.683892 0.967447 +vt 0.683481 0.966697 +vt 0.690592 0.959709 +vt 0.677914 0.956864 +vt 0.677643 0.964206 +vt 0.681381 0.968402 +vt 0.679983 0.968035 +vt 0.675093 0.951937 +vt 0.673361 0.955329 +vt 0.670509 0.950369 +vt 0.669637 0.945933 +vt 0.675856 0.954330 +vt 0.668165 0.941647 +vt 0.663496 0.926961 +vt 0.663564 0.928058 +vt 0.665418 0.932211 +vt 0.665755 0.937374 +vt 0.661481 0.926501 +vt 0.658733 0.924375 +vt 0.658602 0.917413 +vt 0.659145 0.906615 +vt 0.658796 0.910642 +vt 0.724956 0.943333 +vt 0.724132 0.944159 +vt 0.723474 0.946389 +vt 0.722898 0.948413 +vt 0.722446 0.949868 +vt 0.709981 0.957092 +vt 0.712560 0.958186 +vt 0.717818 0.956655 +vt 0.717399 0.957502 +vt 0.715607 0.958208 +vt 0.716068 0.957843 +vt 0.713680 0.958942 +vt 0.714946 0.958842 +vt 0.713220 0.958240 +vt 0.708836 0.959797 +vt 0.705204 0.958446 +vt 0.704683 0.959416 +vt 0.706536 0.961043 +vt 0.703016 0.959296 +vt 0.697625 0.966855 +vt 0.695187 0.962797 +vt 0.695911 0.964935 +vt 0.694363 0.963778 +vt 0.691555 0.959109 +vt 0.693411 0.963747 +vt 0.720557 0.817250 +vt 0.718838 0.812920 +vt 0.717389 0.811696 +vt 0.717461 0.809878 +vt 0.684675 0.796078 +vt 0.686335 0.791982 +vt 0.687967 0.789828 +vt 0.688473 0.788667 +vt 0.690343 0.784293 +vt 0.695406 0.788670 +vt 0.692178 0.783636 +vt 0.696058 0.791526 +vt 0.675609 0.811594 +vt 0.679864 0.799326 +vt 0.676179 0.807880 +vt 0.658906 0.903049 +vt 0.657217 0.895757 +vt 0.655714 0.891074 +vt 0.656180 0.886436 +vt 0.655392 0.889668 +vt 0.656045 0.885292 +vt 0.655743 0.882676 +vt 0.655978 0.880839 +vt 0.656284 0.879183 +vt 0.656062 0.875172 +vt 0.656195 0.877081 +vt 0.656086 0.872938 +vt 0.655703 0.868485 +vt 0.656349 0.871858 +vt 0.655828 0.865452 +vt 0.655669 0.866947 +vt 0.656050 0.863425 +vt 0.657552 0.858350 +vt 0.656618 0.859489 +vt 0.656387 0.862027 +vt 0.658030 0.851401 +vt 0.662156 0.847032 +vt 0.662698 0.844839 +vt 0.661493 0.848619 +vt 0.660193 0.850711 +vt 0.663199 0.844148 +vt 0.664665 0.839951 +vt 0.665400 0.830854 +vt 0.663685 0.832570 +vt 0.663255 0.840067 +vt 0.667415 0.827409 +vt 0.666752 0.829036 +vt 0.673760 0.814700 +vt 0.672042 0.821067 +vt 0.671687 0.821728 +vt 0.669947 0.824699 +vt 0.670841 0.825871 +vt 0.716651 0.801443 +vt 0.715048 0.799502 +vt 0.719315 0.806248 +vt 0.713033 0.799182 +vt 0.697214 0.789524 +vt 0.696317 0.792695 +vt 0.700078 0.790035 +vt 0.704245 0.785738 +vt 0.706725 0.783537 +vt 0.708004 0.781443 +vt 0.705747 0.783487 +vt 0.712004 0.790319 +vt 0.711858 0.785854 +vt 0.703765 0.786742 +vt 0.712491 0.794515 +vt 0.712108 0.791265 +vt 0.712779 0.797169 +vt 0.724721 0.832732 +vt 0.725515 0.835421 +vt 0.722013 0.822708 +vt 0.722574 0.823283 +vt 0.724304 0.824343 +vt 0.724611 0.826219 +vt 0.687820 0.962502 +vt 0.685038 0.967415 +vt 0.689105 0.962337 +vt 0.690431 0.962184 +vt 0.676828 0.957979 +vt 0.676892 0.964786 +vt 0.682229 0.968845 +vt 0.683011 0.967438 +vt 0.678938 0.968643 +vt 0.669036 0.943657 +vt 0.674964 0.953457 +vt 0.673595 0.953992 +vt 0.670717 0.953643 +vt 0.669801 0.952160 +vt 0.676294 0.956230 +vt 0.667310 0.942419 +vt 0.663567 0.931648 +vt 0.659808 0.928373 +vt 0.658579 0.926848 +vt 0.657723 0.917908 +vt 0.657804 0.921732 +vt 0.658539 0.915193 +vt 0.658311 0.911655 +vt 0.724650 0.944694 +vt 0.724283 0.945947 +vt 0.723187 0.947343 +vt 0.723882 0.946569 +vt 0.722853 0.951297 +vt 0.722229 0.953834 +vt 0.719225 0.954483 +vt 0.718339 0.954833 +vt 0.710427 0.957899 +vt 0.716948 0.958931 +vt 0.716578 0.958130 +vt 0.714148 0.959636 +vt 0.709550 0.958382 +vt 0.705617 0.960531 +vt 0.708692 0.964101 +vt 0.706957 0.963165 +vt 0.700769 0.968557 +vt 0.703249 0.961434 +vt 0.696011 0.966584 +vt 0.695265 0.964226 +vt 0.691289 0.963292 +vt 0.720130 0.814706 +vt 0.720279 0.813889 +vt 0.718224 0.810985 +vt 0.681125 0.797523 +vt 0.681378 0.791408 +vt 0.687002 0.789857 +vt 0.684775 0.791016 +vt 0.690992 0.781488 +vt 0.695876 0.787254 +vt 0.694379 0.784154 +vt 0.693627 0.783952 +vt 0.696296 0.789149 +vt 0.688936 0.783500 +vt 0.687932 0.784833 +vt 0.677799 0.799072 +vt 0.675126 0.807326 +vt 0.680482 0.799112 +vt 0.657814 0.900098 +vt 0.656203 0.898216 +vt 0.655291 0.893215 +vt 0.655999 0.896203 +vt 0.655551 0.886445 +vt 0.654969 0.888101 +vt 0.655714 0.884295 +vt 0.655537 0.881881 +vt 0.655502 0.883319 +vt 0.655998 0.874099 +vt 0.655636 0.870228 +vt 0.655945 0.871677 +vt 0.655959 0.860110 +vt 0.655979 0.861330 +vt 0.657929 0.856801 +vt 0.657856 0.853427 +vt 0.658963 0.850013 +vt 0.663970 0.839885 +vt 0.664588 0.830922 +vt 0.661864 0.831959 +vt 0.662331 0.840896 +vt 0.667890 0.825105 +vt 0.671690 0.816497 +vt 0.670508 0.824186 +vt 0.674678 0.812032 +vt 0.668601 0.823891 +vt 0.717715 0.801757 +vt 0.713999 0.798330 +vt 0.719057 0.803598 +vt 0.697966 0.787973 +vt 0.696604 0.790551 +vt 0.696370 0.791597 +vt 0.699245 0.787035 +vt 0.704616 0.783765 +vt 0.708886 0.779100 +vt 0.710547 0.777741 +vt 0.712585 0.788683 +vt 0.711785 0.783127 +vt 0.703276 0.785729 +vt 0.702297 0.787026 +vt 0.713577 0.795722 +vt 0.712666 0.791102 +vt 0.721538 0.821258 +vt 0.725122 0.832228 +vt 0.725897 0.833321 +vt 0.722628 0.821372 +vt 0.724175 0.821880 +vt 0.724841 0.827952 +vt 0.726503 0.834663 +vt 0.687770 0.969308 +vt 0.685898 0.968996 +vt 0.684055 0.970206 +vt 0.675608 0.960677 +vt 0.678606 0.966666 +vt 0.677725 0.968447 +vt 0.679217 0.970541 +vt 0.682057 0.971436 +vt 0.671945 0.956174 +vt 0.669806 0.948570 +vt 0.669434 0.950054 +vt 0.668425 0.945988 +vt 0.675109 0.955921 +vt 0.668155 0.943760 +vt 0.662146 0.928607 +vt 0.663702 0.934525 +vt 0.665362 0.943383 +vt 0.657772 0.924832 +vt 0.657622 0.915519 +vt 0.658070 0.907816 +vt 0.657849 0.910199 +vt 0.725132 0.946094 +vt 0.723658 0.947362 +vt 0.723208 0.948036 +vt 0.723587 0.949937 +vt 0.722494 0.952208 +vt 0.720120 0.955558 +vt 0.722357 0.953420 +vt 0.712541 0.959220 +vt 0.710901 0.959066 +vt 0.718206 0.958380 +vt 0.718549 0.956498 +vt 0.715699 0.959739 +vt 0.716118 0.958570 +vt 0.713068 0.961093 +vt 0.710040 0.960056 +vt 0.707645 0.964963 +vt 0.709775 0.963035 +vt 0.706079 0.962189 +vt 0.703923 0.960419 +vt 0.703025 0.963916 +vt 0.695870 0.969370 +vt 0.696452 0.972709 +vt 0.695303 0.965804 +vt 0.695826 0.965911 +vt 0.693262 0.965081 +vt 0.720682 0.815373 +vt 0.719619 0.811296 +vt 0.689946 0.782090 +vt 0.695280 0.783747 +vt 0.693614 0.782882 +vt 0.691173 0.779099 +vt 0.674809 0.809890 +vt 0.678373 0.797004 +vt 0.676419 0.801301 +vt 0.674493 0.801864 +vt 0.658298 0.903824 +vt 0.655315 0.890610 +vt 0.655194 0.891431 +vt 0.655402 0.894870 +vt 0.655304 0.887283 +vt 0.654973 0.890103 +vt 0.655202 0.884918 +vt 0.655257 0.882202 +vt 0.655331 0.881078 +vt 0.655599 0.879913 +vt 0.655734 0.877971 +vt 0.655732 0.874319 +vt 0.655506 0.876553 +vt 0.655666 0.873613 +vt 0.655202 0.869823 +vt 0.655063 0.867620 +vt 0.655298 0.862956 +vt 0.655172 0.865658 +vt 0.656420 0.858020 +vt 0.655688 0.858759 +vt 0.656788 0.856842 +vt 0.656923 0.851074 +vt 0.657197 0.848925 +vt 0.661706 0.843277 +vt 0.661035 0.845678 +vt 0.660432 0.847344 +vt 0.659592 0.847976 +vt 0.665089 0.829627 +vt 0.663087 0.831014 +vt 0.660386 0.835600 +vt 0.660925 0.840014 +vt 0.666423 0.826917 +vt 0.666769 0.825298 +vt 0.671078 0.812062 +vt 0.669206 0.821372 +vt 0.672717 0.810875 +vt 0.716189 0.798566 +vt 0.717806 0.800400 +vt 0.718988 0.801430 +vt 0.714908 0.798220 +vt 0.720876 0.803883 +vt 0.697022 0.785480 +vt 0.700649 0.787210 +vt 0.706694 0.781205 +vt 0.707798 0.779635 +vt 0.711709 0.779302 +vt 0.705647 0.781620 +vt 0.712704 0.783684 +vt 0.712453 0.780365 +vt 0.713563 0.783260 +vt 0.701918 0.785962 +vt 0.714270 0.792374 +vt 0.713755 0.790413 +vt 0.722293 0.818155 +vt 0.725286 0.831273 +vt 0.723502 0.820153 +vt 0.724916 0.822558 +vt 0.725281 0.824363 +vt 0.725266 0.827790 +vt 0.727864 0.834191 +vt 0.689236 0.965347 +vt 0.688697 0.966139 +vt 0.685206 0.969729 +vt 0.675756 0.957987 +vt 0.676302 0.965896 +vt 0.676621 0.968452 +vt 0.679982 0.971634 +vt 0.683060 0.974461 +vt 0.677891 0.970441 +vt 0.671886 0.957951 +vt 0.669860 0.954461 +vt 0.669174 0.947123 +vt 0.668805 0.950816 +vt 0.667423 0.944245 +vt 0.661957 0.931127 +vt 0.662313 0.933493 +vt 0.661774 0.938094 +vt 0.657964 0.929511 +vt 0.660293 0.930363 +vt 0.657607 0.928016 +vt 0.656650 0.921126 +vt 0.655902 0.914957 +vt 0.656442 0.924799 +vt 0.724869 0.947839 +vt 0.724321 0.948043 +vt 0.723427 0.947920 +vt 0.723358 0.948515 +vt 0.723352 0.951310 +vt 0.722783 0.952081 +vt 0.721049 0.955294 +vt 0.722968 0.954528 +vt 0.711961 0.960274 +vt 0.710254 0.958547 +vt 0.718742 0.959444 +vt 0.714506 0.962943 +vt 0.715363 0.962638 +vt 0.704827 0.961313 +vt 0.708105 0.968115 +vt 0.710039 0.966548 +vt 0.706663 0.965353 +vt 0.706951 0.964873 +vt 0.705695 0.962667 +vt 0.703429 0.966131 +vt 0.703734 0.961704 +vt 0.695047 0.968396 +vt 0.697964 0.976245 +vt 0.694597 0.965589 +vt 0.695683 0.965764 +vt 0.695621 0.966249 +vt 0.693450 0.966322 +vt 0.690404 0.963685 +vt 0.690093 0.965868 +vt 0.721397 0.815645 +vt 0.720766 0.812405 +vt 0.680280 0.795581 +vt 0.681055 0.789668 +vt 0.685920 0.785863 +vt 0.690117 0.779294 +vt 0.696277 0.783092 +vt 0.694572 0.782273 +vt 0.692635 0.781193 +vt 0.688610 0.781678 +vt 0.686800 0.781814 +vt 0.676722 0.794499 +vt 0.675808 0.799538 +vt 0.673318 0.803246 +vt 0.673304 0.809117 +vt 0.656609 0.904717 +vt 0.657444 0.903181 +vt 0.655413 0.897128 +vt 0.654616 0.892099 +vt 0.654851 0.894834 +vt 0.655353 0.895997 +vt 0.654859 0.886055 +vt 0.654476 0.888299 +vt 0.654771 0.882956 +vt 0.655416 0.878706 +vt 0.655358 0.874290 +vt 0.655688 0.872539 +vt 0.655448 0.871987 +vt 0.655327 0.860638 +vt 0.657240 0.855430 +vt 0.657132 0.853390 +vt 0.657533 0.846444 +vt 0.661120 0.844300 +vt 0.664221 0.829595 +vt 0.665131 0.828301 +vt 0.663515 0.829814 +vt 0.660753 0.831720 +vt 0.661953 0.829249 +vt 0.661174 0.842072 +vt 0.665709 0.827652 +vt 0.667160 0.823917 +vt 0.668188 0.821145 +vt 0.670329 0.813018 +vt 0.673805 0.811299 +vt 0.722250 0.810306 +vt 0.717528 0.798208 +vt 0.718586 0.800035 +vt 0.714718 0.795240 +vt 0.720424 0.799657 +vt 0.723902 0.805858 +vt 0.720735 0.802187 +vt 0.698013 0.785499 +vt 0.700583 0.783050 +vt 0.703668 0.783201 +vt 0.707984 0.777299 +vt 0.708616 0.776147 +vt 0.712083 0.773541 +vt 0.704926 0.782255 +vt 0.725598 0.829566 +vt 0.726000 0.831273 +vt 0.726751 0.832147 +vt 0.724676 0.819908 +vt 0.725330 0.825705 +vt 0.688980 0.968967 +vt 0.686167 0.971588 +vt 0.673574 0.961813 +vt 0.676980 0.969472 +vt 0.679811 0.972981 +vt 0.681819 0.973371 +vt 0.678557 0.972791 +vt 0.669206 0.952907 +vt 0.669161 0.948537 +vt 0.668711 0.949372 +vt 0.668560 0.947570 +vt 0.667145 0.946572 +vt 0.662396 0.945195 +vt 0.658901 0.931286 +vt 0.656209 0.927597 +vt 0.656494 0.918564 +vt 0.657242 0.907539 +vt 0.656474 0.910964 +vt 0.723773 0.948402 +vt 0.723099 0.952352 +vt 0.723670 0.951963 +vt 0.722726 0.952632 +vt 0.721822 0.955518 +vt 0.720971 0.957423 +vt 0.722922 0.953250 +vt 0.722575 0.955777 +vt 0.711099 0.961247 +vt 0.717287 0.962918 +vt 0.716333 0.960332 +vt 0.713581 0.963919 +vt 0.715712 0.961265 +vt 0.709100 0.968009 +vt 0.707271 0.967731 +vt 0.711577 0.964674 +vt 0.706067 0.964593 +vt 0.703782 0.964464 +vt 0.703804 0.968757 +vt 0.704122 0.963200 +vt 0.694862 0.970836 +vt 0.695193 0.966925 +vt 0.700201 0.976942 +vt 0.695690 0.977465 +vt 0.694269 0.967414 +vt 0.692401 0.967508 +vt 0.722055 0.813492 +vt 0.682051 0.785236 +vt 0.688810 0.777792 +vt 0.695438 0.781803 +vt 0.694194 0.780563 +vt 0.689645 0.775745 +vt 0.692477 0.776627 +vt 0.687265 0.779369 +vt 0.686795 0.784395 +vt 0.678342 0.794498 +vt 0.679124 0.794187 +vt 0.672876 0.801346 +vt 0.672326 0.806641 +vt 0.655708 0.900888 +vt 0.655411 0.896426 +vt 0.655312 0.898670 +vt 0.654698 0.893667 +vt 0.654677 0.890451 +vt 0.655028 0.895707 +vt 0.654580 0.886799 +vt 0.654794 0.881514 +vt 0.655050 0.879742 +vt 0.655394 0.877843 +vt 0.654971 0.875582 +vt 0.655407 0.873112 +vt 0.654759 0.870138 +vt 0.654563 0.866691 +vt 0.654735 0.862889 +vt 0.655859 0.856838 +vt 0.654772 0.859039 +vt 0.656339 0.855541 +vt 0.656469 0.853273 +vt 0.656120 0.847973 +vt 0.656267 0.847838 +vt 0.660262 0.845112 +vt 0.659170 0.844817 +vt 0.664503 0.828683 +vt 0.659601 0.838481 +vt 0.659006 0.834125 +vt 0.659976 0.842528 +vt 0.665560 0.826124 +vt 0.665654 0.823407 +vt 0.670841 0.811107 +vt 0.672081 0.808585 +vt 0.669141 0.815301 +vt 0.668372 0.816457 +vt 0.716909 0.795624 +vt 0.715634 0.795906 +vt 0.718344 0.798728 +vt 0.719664 0.798165 +vt 0.724888 0.800815 +vt 0.722466 0.799829 +vt 0.698369 0.783661 +vt 0.697687 0.782962 +vt 0.702679 0.782836 +vt 0.704622 0.781361 +vt 0.706188 0.778592 +vt 0.707586 0.776863 +vt 0.709831 0.774229 +vt 0.712793 0.776297 +vt 0.711351 0.770800 +vt 0.714155 0.783975 +vt 0.715073 0.792134 +vt 0.714969 0.789308 +vt 0.723142 0.815505 +vt 0.723691 0.817680 +vt 0.725509 0.820830 +vt 0.725721 0.822398 +vt 0.725990 0.825475 +vt 0.726082 0.828283 +vt 0.727467 0.830787 +vt 0.688147 0.971614 +vt 0.689790 0.967005 +vt 0.675777 0.967516 +vt 0.674973 0.966223 +vt 0.674983 0.971835 +vt 0.681350 0.975284 +vt 0.677959 0.974171 +vt 0.668547 0.957988 +vt 0.668970 0.954664 +vt 0.668592 0.952190 +vt 0.667879 0.950603 +vt 0.668214 0.946864 +vt 0.660238 0.933343 +vt 0.665100 0.947955 +vt 0.659592 0.944859 +vt 0.656006 0.931564 +vt 0.658455 0.932179 +vt 0.654791 0.919742 +vt 0.655435 0.917227 +vt 0.655510 0.926073 +vt 0.655499 0.912401 +vt 0.725459 0.950502 +vt 0.724530 0.949703 +vt 0.724474 0.950956 +vt 0.723423 0.953477 +vt 0.723223 0.956241 +vt 0.712214 0.962243 +vt 0.718765 0.964518 +vt 0.714990 0.964171 +vt 0.716252 0.962490 +vt 0.705066 0.963292 +vt 0.708998 0.970866 +vt 0.707645 0.970082 +vt 0.709875 0.968712 +vt 0.711639 0.969275 +vt 0.706377 0.966570 +vt 0.705565 0.963997 +vt 0.704429 0.964824 +vt 0.704616 0.966701 +vt 0.703435 0.971831 +vt 0.693865 0.974540 +vt 0.693994 0.969678 +vt 0.698757 0.978995 +vt 0.702168 0.974985 +vt 0.696406 0.978920 +vt 0.694981 0.975253 +vt 0.693890 0.967088 +vt 0.693495 0.968100 +vt 0.691721 0.969759 +vt 0.679836 0.790855 +vt 0.681034 0.785286 +vt 0.684756 0.780473 +vt 0.696944 0.782458 +vt 0.696289 0.781130 +vt 0.694940 0.780815 +vt 0.694051 0.777592 +vt 0.690846 0.771825 +vt 0.686159 0.779631 +vt 0.674257 0.798301 +vt 0.678683 0.794121 +vt 0.656025 0.903957 +vt 0.655147 0.896431 +vt 0.654855 0.897092 +vt 0.654302 0.894391 +vt 0.654122 0.890742 +vt 0.654904 0.896280 +vt 0.655277 0.896297 +vt 0.654576 0.884734 +vt 0.654350 0.885776 +vt 0.654762 0.880455 +vt 0.654455 0.880620 +vt 0.655002 0.878065 +vt 0.655039 0.872884 +vt 0.654357 0.865281 +vt 0.654673 0.860854 +vt 0.655165 0.856703 +vt 0.656134 0.851526 +vt 0.656000 0.850195 +vt 0.656422 0.845787 +vt 0.657868 0.842568 +vt 0.663434 0.828517 +vt 0.664316 0.827362 +vt 0.665006 0.827038 +vt 0.662002 0.827470 +vt 0.659521 0.830288 +vt 0.660868 0.829363 +vt 0.666682 0.820912 +vt 0.671061 0.809973 +vt 0.670423 0.811616 +vt 0.669434 0.811602 +vt 0.667366 0.817057 +vt 0.724568 0.808387 +vt 0.718000 0.795733 +vt 0.718182 0.797463 +vt 0.717271 0.791900 +vt 0.720577 0.797199 +vt 0.725097 0.805481 +vt 0.724093 0.798276 +vt 0.699118 0.782851 +vt 0.703572 0.781198 +vt 0.705248 0.780044 +vt 0.708712 0.772724 +vt 0.713509 0.772851 +vt 0.711956 0.768707 +vt 0.713924 0.778284 +vt 0.714653 0.779767 +vt 0.714904 0.784350 +vt 0.716268 0.792115 +vt 0.724631 0.817003 +vt 0.725431 0.818571 +vt 0.726044 0.823814 +vt 0.728279 0.831770 +vt 0.690318 0.974224 +vt 0.688249 0.974385 +vt 0.684794 0.978930 +vt 0.674298 0.969531 +vt 0.673084 0.966325 +vt 0.677191 0.972788 +vt 0.676205 0.974318 +vt 0.678890 0.974808 +vt 0.681174 0.979610 +vt 0.670658 0.964589 +vt 0.668125 0.948580 +vt 0.667949 0.946539 +vt 0.668116 0.947479 +vt 0.659832 0.935963 +vt 0.665584 0.949821 +vt 0.661419 0.952058 +vt 0.659706 0.939024 +vt 0.657520 0.933482 +vt 0.655306 0.928737 +vt 0.654998 0.924211 +vt 0.655246 0.914894 +vt 0.655652 0.926982 +vt 0.656118 0.908539 +vt 0.655547 0.910298 +vt 0.724157 0.952979 +vt 0.722191 0.957076 +vt 0.721063 0.959861 +vt 0.723776 0.955003 +vt 0.722753 0.956745 +vt 0.717440 0.964730 +vt 0.714763 0.965532 +vt 0.715615 0.963525 +vt 0.706941 0.969546 +vt 0.706518 0.967982 +vt 0.713232 0.966663 +vt 0.705993 0.967015 +vt 0.705413 0.965270 +vt 0.705044 0.968297 +vt 0.704322 0.970602 +vt 0.697467 0.980460 +vt 0.699502 0.982122 +vt 0.701682 0.978788 +vt 0.694553 0.978954 +vt 0.694345 0.976465 +vt 0.692643 0.972098 +vt 0.724161 0.811892 +vt 0.682422 0.781252 +vt 0.685766 0.781316 +vt 0.688563 0.776671 +vt 0.695642 0.780285 +vt 0.694774 0.779519 +vt 0.689248 0.770521 +vt 0.693609 0.771237 +vt 0.686299 0.777792 +vt 0.674680 0.791363 +vt 0.677338 0.789543 +vt 0.678851 0.792343 +vt 0.670720 0.806077 +vt 0.671824 0.796403 +vt 0.655139 0.902214 +vt 0.655067 0.899822 +vt 0.654794 0.898131 +vt 0.653976 0.892079 +vt 0.654123 0.888601 +vt 0.654277 0.883062 +vt 0.654553 0.874434 +vt 0.654564 0.878022 +vt 0.654318 0.869208 +vt 0.654247 0.866321 +vt 0.654228 0.862680 +vt 0.654355 0.861211 +vt 0.655602 0.855246 +vt 0.654311 0.859527 +vt 0.654420 0.857028 +vt 0.656016 0.854533 +vt 0.655905 0.852355 +vt 0.655592 0.848624 +vt 0.657084 0.844453 +vt 0.661285 0.828084 +vt 0.658165 0.834598 +vt 0.664768 0.818475 +vt 0.670391 0.809087 +vt 0.670120 0.810968 +vt 0.668028 0.814389 +vt 0.668154 0.809167 +vt 0.724818 0.810748 +vt 0.717914 0.793293 +vt 0.719587 0.796378 +vt 0.721531 0.798589 +vt 0.725892 0.803661 +vt 0.725549 0.797785 +vt 0.722812 0.796112 +vt 0.698376 0.782178 +vt 0.697812 0.780877 +vt 0.699052 0.778360 +vt 0.702764 0.778283 +vt 0.704359 0.779673 +vt 0.707033 0.774560 +vt 0.705394 0.777467 +vt 0.707860 0.774435 +vt 0.709782 0.770470 +vt 0.713957 0.775277 +vt 0.710706 0.765552 +vt 0.716043 0.778630 +vt 0.716058 0.789189 +vt 0.723478 0.813457 +vt 0.726106 0.820648 +vt 0.726422 0.821885 +vt 0.727016 0.822708 +vt 0.726830 0.827456 +vt 0.728179 0.829699 +vt 0.728137 0.833229 +vt 0.686593 0.975630 +vt 0.673606 0.977728 +vt 0.674218 0.971669 +vt 0.680143 0.975234 +vt 0.680354 0.977003 +vt 0.677851 0.975840 +vt 0.676970 0.976026 +vt 0.667297 0.954260 +vt 0.668671 0.962059 +vt 0.667201 0.952386 +vt 0.667313 0.948957 +vt 0.667881 0.947054 +vt 0.658132 0.935022 +vt 0.664101 0.950577 +vt 0.659772 0.950643 +vt 0.657739 0.940011 +vt 0.656713 0.934039 +vt 0.654867 0.930775 +vt 0.654703 0.918266 +vt 0.654418 0.922238 +vt 0.654795 0.915908 +vt 0.654725 0.926363 +vt 0.655187 0.911447 +vt 0.654590 0.914293 +vt 0.724956 0.951586 +vt 0.722007 0.959151 +vt 0.722943 0.958051 +vt 0.718457 0.967849 +vt 0.716304 0.964459 +vt 0.720004 0.963732 +vt 0.715542 0.965292 +vt 0.714052 0.965827 +vt 0.707405 0.972014 +vt 0.707001 0.971026 +vt 0.714030 0.969088 +vt 0.704930 0.969755 +vt 0.704371 0.971696 +vt 0.703973 0.975529 +vt 0.692892 0.974142 +vt 0.700629 0.980750 +vt 0.703051 0.978332 +vt 0.695456 0.980361 +vt 0.696627 0.982605 +vt 0.691940 0.973849 +vt 0.679509 0.786614 +vt 0.681345 0.782030 +vt 0.685152 0.777977 +vt 0.688258 0.773722 +vt 0.697333 0.779729 +vt 0.696601 0.780022 +vt 0.695191 0.779984 +vt 0.695103 0.778168 +vt 0.688659 0.771974 +vt 0.689827 0.769069 +vt 0.692132 0.767375 +vt 0.695210 0.775698 +vt 0.687081 0.777065 +vt 0.673675 0.791240 +vt 0.676139 0.788227 +vt 0.678368 0.787193 +vt 0.668695 0.801516 +vt 0.672923 0.791313 +vt 0.671067 0.799137 +vt 0.670313 0.807223 +vt 0.654906 0.903718 +vt 0.654750 0.900713 +vt 0.655302 0.905944 +vt 0.654630 0.898976 +vt 0.654502 0.897695 +vt 0.653754 0.895199 +vt 0.653520 0.888510 +vt 0.654305 0.896427 +vt 0.653832 0.887055 +vt 0.654040 0.880861 +vt 0.654259 0.877916 +vt 0.653865 0.866071 +vt 0.653839 0.863773 +vt 0.654132 0.860308 +vt 0.655124 0.854938 +vt 0.654789 0.855586 +vt 0.656052 0.853432 +vt 0.655552 0.851477 +vt 0.655324 0.850059 +vt 0.655271 0.847975 +vt 0.655700 0.845596 +vt 0.656805 0.842778 +vt 0.658153 0.840192 +vt 0.662906 0.825941 +vt 0.661386 0.825618 +vt 0.657148 0.838130 +vt 0.660334 0.827913 +vt 0.663221 0.822083 +vt 0.666106 0.816245 +vt 0.669371 0.809728 +vt 0.666808 0.814866 +vt 0.725719 0.807340 +vt 0.725634 0.808895 +vt 0.719089 0.793987 +vt 0.716808 0.789479 +vt 0.722256 0.797351 +vt 0.721584 0.796347 +vt 0.720237 0.795477 +vt 0.725784 0.806338 +vt 0.726791 0.801296 +vt 0.726961 0.797871 +vt 0.724673 0.794945 +vt 0.723310 0.794462 +vt 0.698732 0.780400 +vt 0.700338 0.776443 +vt 0.705451 0.775103 +vt 0.708754 0.770340 +vt 0.707792 0.772392 +vt 0.710087 0.767189 +vt 0.714390 0.772387 +vt 0.713000 0.766263 +vt 0.711962 0.765795 +vt 0.714583 0.775652 +vt 0.714491 0.778619 +vt 0.714947 0.777695 +vt 0.716106 0.781689 +vt 0.715832 0.784089 +vt 0.724281 0.814190 +vt 0.725583 0.816364 +vt 0.726568 0.819025 +vt 0.727274 0.824977 +vt 0.727835 0.827762 +vt 0.728888 0.830663 +vt 0.728799 0.833263 +vt 0.728396 0.833859 +vt 0.691031 0.973219 +vt 0.689387 0.975582 +vt 0.687732 0.976718 +vt 0.686520 0.979532 +vt 0.683850 0.982827 +vt 0.669965 0.968038 +vt 0.672026 0.969657 +vt 0.673553 0.973720 +vt 0.675210 0.978721 +vt 0.672973 0.972335 +vt 0.679039 0.976483 +vt 0.679699 0.978962 +vt 0.678497 0.976482 +vt 0.666615 0.957104 +vt 0.668244 0.966248 +vt 0.667118 0.962060 +vt 0.666323 0.950687 +vt 0.664803 0.952752 +vt 0.662845 0.952298 +vt 0.660663 0.953762 +vt 0.658628 0.951013 +vt 0.657337 0.942734 +vt 0.657444 0.935150 +vt 0.655678 0.934280 +vt 0.654070 0.928816 +vt 0.654788 0.933058 +vt 0.654115 0.927396 +vt 0.654251 0.919516 +vt 0.654535 0.916911 +vt 0.654072 0.924586 +vt 0.654127 0.925985 +vt 0.655115 0.908618 +vt 0.654688 0.910162 +vt 0.654615 0.911871 +vt 0.721653 0.960667 +vt 0.723580 0.957392 +vt 0.716874 0.966362 +vt 0.719353 0.966256 +vt 0.715130 0.966484 +vt 0.714598 0.967143 +vt 0.710606 0.973695 +vt 0.707967 0.973727 +vt 0.706178 0.969460 +vt 0.706450 0.970843 +vt 0.713340 0.970621 +vt 0.705811 0.968298 +vt 0.705694 0.970133 +vt 0.705074 0.971460 +vt 0.704685 0.973212 +vt 0.692380 0.975780 +vt 0.693339 0.976766 +vt 0.699001 0.983303 +vt 0.700386 0.983507 +vt 0.701794 0.981212 +vt 0.702486 0.980285 +vt 0.695224 0.981028 +vt 0.680187 0.779658 +vt 0.682221 0.779244 +vt 0.687574 0.775200 +vt 0.695620 0.778370 +vt 0.688808 0.770688 +vt 0.690205 0.767709 +vt 0.689388 0.768953 +vt 0.690998 0.767362 +vt 0.693597 0.766636 +vt 0.695417 0.772610 +vt 0.685495 0.774362 +vt 0.686450 0.775027 +vt 0.673938 0.788562 +vt 0.674907 0.788492 +vt 0.669864 0.805522 +vt 0.671583 0.793246 +vt 0.670543 0.796294 +vt 0.654412 0.902152 +vt 0.652782 0.891232 +vt 0.653988 0.884193 +vt 0.653914 0.874663 +vt 0.653941 0.869683 +vt 0.653947 0.861994 +vt 0.655460 0.853848 +vt 0.653861 0.859782 +vt 0.654036 0.857886 +vt 0.654393 0.854799 +vt 0.654949 0.849051 +vt 0.655800 0.843396 +vt 0.657178 0.840979 +vt 0.660348 0.825914 +vt 0.658900 0.827415 +vt 0.665115 0.815672 +vt 0.662038 0.817601 +vt 0.669334 0.807522 +vt 0.667282 0.812099 +vt 0.726512 0.810453 +vt 0.718680 0.790354 +vt 0.719843 0.794576 +vt 0.718158 0.789224 +vt 0.720839 0.795273 +vt 0.726837 0.806461 +vt 0.727303 0.806828 +vt 0.726522 0.794030 +vt 0.721916 0.796009 +vt 0.722528 0.794286 +vt 0.698321 0.779249 +vt 0.698941 0.775951 +vt 0.702012 0.773091 +vt 0.704524 0.776747 +vt 0.706198 0.774269 +vt 0.705186 0.775837 +vt 0.708007 0.771390 +vt 0.709452 0.768061 +vt 0.714178 0.772204 +vt 0.713784 0.768633 +vt 0.709794 0.764560 +vt 0.710364 0.760168 +vt 0.716204 0.775849 +vt 0.716362 0.780876 +vt 0.716811 0.785982 +vt 0.726666 0.817500 +vt 0.727033 0.820490 +vt 0.727745 0.823169 +vt 0.728498 0.828272 +vt 0.728820 0.829127 +vt 0.728823 0.831922 +vt 0.690838 0.974876 +vt 0.690493 0.975496 +vt 0.685365 0.981209 +vt 0.685093 0.983546 +vt 0.682552 0.982455 +vt 0.672123 0.974431 +vt 0.674196 0.982216 +vt 0.679474 0.977060 +vt 0.680503 0.981133 +vt 0.677675 0.977476 +vt 0.665880 0.953756 +vt 0.666463 0.960783 +vt 0.667968 0.965181 +vt 0.666553 0.952865 +vt 0.665540 0.952688 +vt 0.664047 0.953188 +vt 0.663600 0.952880 +vt 0.659298 0.951506 +vt 0.658324 0.947366 +vt 0.657418 0.945006 +vt 0.656940 0.940390 +vt 0.656898 0.937831 +vt 0.655467 0.936983 +vt 0.653942 0.930532 +vt 0.654085 0.931817 +vt 0.654151 0.917851 +vt 0.653776 0.923127 +vt 0.653827 0.920974 +vt 0.654308 0.915741 +vt 0.654220 0.913387 +vt 0.722744 0.959791 +vt 0.722039 0.960309 +vt 0.723663 0.958679 +vt 0.717714 0.969478 +vt 0.720278 0.967891 +vt 0.716162 0.967686 +vt 0.721364 0.965313 +vt 0.721430 0.963386 +vt 0.715310 0.967099 +vt 0.715800 0.966392 +vt 0.713309 0.973047 +vt 0.709315 0.978039 +vt 0.706708 0.971606 +vt 0.706907 0.973986 +vt 0.714811 0.968393 +vt 0.714355 0.971213 +vt 0.704986 0.975114 +vt 0.704329 0.978418 +vt 0.699475 0.983911 +vt 0.701273 0.983204 +vt 0.703072 0.980547 +vt 0.695360 0.981896 +vt 0.693627 0.980575 +vt 0.692503 0.978258 +vt 0.697504 0.983839 +vt 0.691180 0.975298 +vt 0.726642 0.815694 +vt 0.677558 0.783453 +vt 0.683188 0.775608 +vt 0.688332 0.772666 +vt 0.696982 0.778331 +vt 0.688567 0.769391 +vt 0.688246 0.771073 +vt 0.689722 0.767787 +vt 0.689398 0.768137 +vt 0.691605 0.765658 +vt 0.692888 0.763842 +vt 0.694584 0.767396 +vt 0.695262 0.769707 +vt 0.695892 0.774706 +vt 0.683972 0.772228 +vt 0.672892 0.789585 +vt 0.675602 0.787096 +vt 0.667947 0.803955 +vt 0.669776 0.795268 +vt 0.671844 0.788949 +vt 0.654412 0.905258 +vt 0.654299 0.903624 +vt 0.654258 0.900915 +vt 0.654805 0.907128 +vt 0.654158 0.899920 +vt 0.654049 0.897734 +vt 0.652836 0.893151 +vt 0.653228 0.884228 +vt 0.653900 0.857807 +vt 0.654553 0.852790 +vt 0.655073 0.852127 +vt 0.654943 0.847292 +vt 0.655182 0.845115 +vt 0.656327 0.841315 +vt 0.661437 0.823188 +vt 0.660376 0.823465 +vt 0.664396 0.816224 +vt 0.665553 0.813110 +vt 0.661367 0.820456 +vt 0.663482 0.814532 +vt 0.666945 0.809680 +vt 0.668590 0.806466 +vt 0.719992 0.791009 +vt 0.719988 0.793151 +vt 0.718158 0.786926 +vt 0.721424 0.794635 +vt 0.720401 0.794078 +vt 0.728144 0.803845 +vt 0.728719 0.793734 +vt 0.725902 0.790527 +vt 0.723439 0.792710 +vt 0.722033 0.795388 +vt 0.722933 0.793092 +vt 0.698332 0.777705 +vt 0.699140 0.774297 +vt 0.700513 0.772028 +vt 0.703907 0.773282 +vt 0.707306 0.771125 +vt 0.705306 0.773293 +vt 0.704864 0.774785 +vt 0.708109 0.770149 +vt 0.708470 0.769013 +vt 0.708988 0.766523 +vt 0.714845 0.768936 +vt 0.716010 0.773197 +vt 0.713788 0.766151 +vt 0.712877 0.762636 +vt 0.709542 0.761973 +vt 0.712482 0.759813 +vt 0.717209 0.774716 +vt 0.716838 0.783373 +vt 0.716953 0.778433 +vt 0.717816 0.781449 +vt 0.727943 0.821435 +vt 0.728361 0.824452 +vt 0.727765 0.825959 +vt 0.728792 0.826675 +vt 0.729227 0.829583 +vt 0.729324 0.831983 +vt 0.689180 0.977629 +vt 0.690503 0.976871 +vt 0.687032 0.984583 +vt 0.683615 0.985562 +vt 0.682949 0.984399 +vt 0.668756 0.968074 +vt 0.670236 0.970922 +vt 0.671839 0.971156 +vt 0.676865 0.978878 +vt 0.672669 0.978530 +vt 0.676105 0.980426 +vt 0.672976 0.980559 +vt 0.679058 0.977101 +vt 0.678771 0.977148 +vt 0.678999 0.981111 +vt 0.679007 0.977905 +vt 0.678363 0.978059 +vt 0.665148 0.959153 +vt 0.667492 0.967452 +vt 0.665747 0.965882 +vt 0.666424 0.965761 +vt 0.664437 0.955999 +vt 0.662392 0.955643 +vt 0.658214 0.952347 +vt 0.657606 0.950763 +vt 0.655971 0.944873 +vt 0.655738 0.942062 +vt 0.654823 0.935147 +vt 0.653563 0.929735 +vt 0.653650 0.927586 +vt 0.653818 0.933369 +vt 0.653746 0.918330 +vt 0.653914 0.916412 +vt 0.653645 0.925764 +vt 0.653401 0.924558 +vt 0.654067 0.922312 +vt 0.653967 0.919526 +vt 0.654007 0.915371 +vt 0.653829 0.926759 +vt 0.654201 0.907734 +vt 0.654271 0.910853 +vt 0.654025 0.911325 +vt 0.722354 0.960419 +vt 0.723300 0.959671 +vt 0.722097 0.961236 +vt 0.718750 0.971751 +vt 0.716892 0.969386 +vt 0.716308 0.969362 +vt 0.721724 0.961955 +vt 0.711680 0.976403 +vt 0.706630 0.972526 +vt 0.707734 0.977483 +vt 0.706969 0.976622 +vt 0.706002 0.971931 +vt 0.715182 0.969244 +vt 0.715306 0.968035 +vt 0.714919 0.970199 +vt 0.705563 0.973528 +vt 0.705139 0.976967 +vt 0.703758 0.979857 +vt 0.698795 0.984623 +vt 0.701636 0.985025 +vt 0.700063 0.984291 +vt 0.702626 0.982706 +vt 0.694326 0.982529 +vt 0.694922 0.982849 +vt 0.694612 0.984036 +vt 0.678563 0.777371 +vt 0.682178 0.776051 +vt 0.687087 0.773696 +vt 0.698050 0.776116 +vt 0.696455 0.777100 +vt 0.695959 0.776181 +vt 0.689344 0.766727 +vt 0.690986 0.764596 +vt 0.688844 0.767892 +vt 0.694235 0.764151 +vt 0.696148 0.770735 +vt 0.696460 0.773279 +vt 0.686295 0.773541 +vt 0.685676 0.772231 +vt 0.674686 0.786994 +vt 0.672971 0.787569 +vt 0.666832 0.802661 +vt 0.668678 0.796715 +vt 0.670478 0.793593 +vt 0.670590 0.790553 +vt 0.653916 0.903902 +vt 0.653874 0.901634 +vt 0.653658 0.896531 +vt 0.653185 0.895582 +vt 0.652075 0.893450 +vt 0.653748 0.859152 +vt 0.653766 0.855958 +vt 0.653906 0.852790 +vt 0.654288 0.847536 +vt 0.654997 0.843783 +vt 0.655739 0.841278 +vt 0.656663 0.839636 +vt 0.659271 0.824532 +vt 0.660967 0.817598 +vt 0.661889 0.813465 +vt 0.666204 0.811136 +vt 0.666591 0.808174 +vt 0.727225 0.808159 +vt 0.727784 0.814711 +vt 0.719295 0.789071 +vt 0.718310 0.787616 +vt 0.720930 0.793880 +vt 0.729058 0.804993 +vt 0.728527 0.800149 +vt 0.728721 0.797324 +vt 0.726676 0.789963 +vt 0.724763 0.790414 +vt 0.721939 0.794106 +vt 0.722234 0.792751 +vt 0.698287 0.776031 +vt 0.698554 0.774327 +vt 0.701603 0.768986 +vt 0.702862 0.770177 +vt 0.706426 0.771752 +vt 0.715618 0.770433 +vt 0.708892 0.763889 +vt 0.708870 0.761046 +vt 0.711127 0.754943 +vt 0.717983 0.778074 +vt 0.728071 0.818901 +vt 0.728268 0.822809 +vt 0.728839 0.828114 +vt 0.729193 0.828408 +vt 0.729518 0.830465 +vt 0.729411 0.833362 +vt 0.688849 0.979957 +vt 0.689163 0.981548 +vt 0.684337 0.986118 +vt 0.681946 0.985514 +vt 0.669441 0.968979 +vt 0.671200 0.976774 +vt 0.675695 0.983650 +vt 0.672690 0.983534 +vt 0.678726 0.979384 +vt 0.678864 0.982726 +vt 0.678001 0.979982 +vt 0.664493 0.964253 +vt 0.660312 0.955375 +vt 0.659174 0.955502 +vt 0.657404 0.948996 +vt 0.656686 0.947698 +vt 0.655782 0.940316 +vt 0.654680 0.939310 +vt 0.654369 0.935537 +vt 0.654286 0.937001 +vt 0.653467 0.930698 +vt 0.653324 0.928694 +vt 0.653722 0.931246 +vt 0.653470 0.931881 +vt 0.653237 0.923031 +vt 0.653601 0.922047 +vt 0.653231 0.920111 +vt 0.654013 0.910053 +vt 0.653546 0.913469 +vt 0.722727 0.960877 +vt 0.723118 0.960831 +vt 0.723618 0.960923 +vt 0.718110 0.973703 +vt 0.716729 0.971083 +vt 0.719758 0.970606 +vt 0.721201 0.966718 +vt 0.715690 0.969358 +vt 0.715825 0.967678 +vt 0.721924 0.964206 +vt 0.722290 0.962915 +vt 0.714233 0.977202 +vt 0.710945 0.979256 +vt 0.707700 0.981655 +vt 0.706413 0.974638 +vt 0.706119 0.973524 +vt 0.714353 0.972356 +vt 0.715369 0.971219 +vt 0.705594 0.975523 +vt 0.705429 0.979449 +vt 0.704507 0.980420 +vt 0.691416 0.977135 +vt 0.698250 0.987017 +vt 0.700936 0.985736 +vt 0.702948 0.984036 +vt 0.703907 0.982729 +vt 0.692074 0.982522 +vt 0.676704 0.782872 +vt 0.678741 0.776451 +vt 0.681430 0.771690 +vt 0.682821 0.772555 +vt 0.687596 0.772383 +vt 0.687268 0.770142 +vt 0.690047 0.765619 +vt 0.687926 0.767856 +vt 0.691673 0.763183 +vt 0.693102 0.760926 +vt 0.695773 0.767400 +vt 0.695399 0.765188 +vt 0.696379 0.775377 +vt 0.685828 0.767523 +vt 0.674070 0.786642 +vt 0.674796 0.785900 +vt 0.666525 0.805423 +vt 0.667868 0.797018 +vt 0.666732 0.806432 +vt 0.668688 0.794209 +vt 0.671129 0.788382 +vt 0.669555 0.793501 +vt 0.653575 0.899585 +vt 0.652600 0.894914 +vt 0.654450 0.850584 +vt 0.654546 0.844913 +vt 0.654993 0.842194 +vt 0.655385 0.841655 +vt 0.655919 0.839557 +vt 0.660896 0.821738 +vt 0.660418 0.820697 +vt 0.663369 0.809472 +vt 0.660391 0.819265 +vt 0.665898 0.809314 +vt 0.664768 0.810190 +vt 0.727750 0.810762 +vt 0.720545 0.787684 +vt 0.720743 0.792333 +vt 0.719189 0.785070 +vt 0.721236 0.793799 +vt 0.728336 0.807889 +vt 0.729217 0.801196 +vt 0.729526 0.794617 +vt 0.728576 0.791617 +vt 0.726099 0.787231 +vt 0.723350 0.790972 +vt 0.722834 0.791920 +vt 0.698665 0.771229 +vt 0.699589 0.771147 +vt 0.700708 0.768145 +vt 0.703966 0.769512 +vt 0.706828 0.769639 +vt 0.705043 0.770839 +vt 0.707742 0.769017 +vt 0.707909 0.766965 +vt 0.715799 0.766420 +vt 0.713943 0.762467 +vt 0.713360 0.761322 +vt 0.708045 0.764327 +vt 0.710027 0.757497 +vt 0.712092 0.757266 +vt 0.719242 0.778687 +vt 0.727896 0.816764 +vt 0.728822 0.819996 +vt 0.728841 0.821988 +vt 0.728624 0.823171 +vt 0.729633 0.829191 +vt 0.730157 0.831902 +vt 0.729319 0.834739 +vt 0.690626 0.978333 +vt 0.690192 0.983036 +vt 0.686017 0.985986 +vt 0.682890 0.986477 +vt 0.684401 0.986998 +vt 0.685381 0.985449 +vt 0.680364 0.985282 +vt 0.667649 0.969845 +vt 0.668219 0.970931 +vt 0.670581 0.973973 +vt 0.669317 0.972620 +vt 0.677390 0.980807 +vt 0.671374 0.979690 +vt 0.672115 0.980832 +vt 0.673608 0.985158 +vt 0.663460 0.959755 +vt 0.663682 0.963786 +vt 0.666436 0.967531 +vt 0.664934 0.966892 +vt 0.660110 0.959147 +vt 0.658155 0.953828 +vt 0.657155 0.953551 +vt 0.656489 0.949413 +vt 0.655525 0.946869 +vt 0.654963 0.945734 +vt 0.654924 0.941619 +vt 0.653093 0.930190 +vt 0.653463 0.926872 +vt 0.653130 0.927390 +vt 0.653913 0.935222 +vt 0.653250 0.933147 +vt 0.653428 0.916201 +vt 0.653157 0.925860 +vt 0.652980 0.924436 +vt 0.653493 0.908700 +vt 0.654089 0.910760 +vt 0.653443 0.910671 +vt 0.722482 0.961461 +vt 0.718707 0.976231 +vt 0.719538 0.976102 +vt 0.721086 0.969217 +vt 0.722060 0.965510 +vt 0.716010 0.971535 +vt 0.714837 0.974405 +vt 0.712653 0.979387 +vt 0.709995 0.980236 +vt 0.707106 0.978737 +vt 0.706614 0.976239 +vt 0.715467 0.970232 +vt 0.715617 0.973256 +vt 0.705911 0.977340 +vt 0.701623 0.987564 +vt 0.703291 0.984995 +vt 0.699590 0.987779 +vt 0.690944 0.980791 +vt 0.691801 0.984295 +vt 0.675810 0.782592 +vt 0.678132 0.774371 +vt 0.683498 0.769249 +vt 0.686725 0.772315 +vt 0.697056 0.775171 +vt 0.689277 0.765011 +vt 0.690211 0.764056 +vt 0.688403 0.766657 +vt 0.690569 0.762360 +vt 0.692002 0.761357 +vt 0.692438 0.757982 +vt 0.695955 0.758958 +vt 0.696894 0.768122 +vt 0.696726 0.771052 +vt 0.686393 0.770701 +vt 0.672038 0.786744 +vt 0.673924 0.784744 +vt 0.675400 0.785113 +vt 0.665559 0.804926 +vt 0.664300 0.801218 +vt 0.669806 0.790488 +vt 0.670064 0.788478 +vt 0.653699 0.906054 +vt 0.653444 0.902542 +vt 0.652451 0.896977 +vt 0.651944 0.895258 +vt 0.653832 0.850286 +vt 0.653926 0.845070 +vt 0.654460 0.841726 +vt 0.655374 0.840297 +vt 0.659207 0.820906 +vt 0.660394 0.815799 +vt 0.661532 0.810369 +vt 0.665322 0.808046 +vt 0.728565 0.811014 +vt 0.719801 0.786555 +vt 0.721431 0.789499 +vt 0.721564 0.793403 +vt 0.721164 0.793079 +vt 0.729567 0.803745 +vt 0.729120 0.806616 +vt 0.729518 0.800256 +vt 0.729392 0.798669 +vt 0.729565 0.796846 +vt 0.729510 0.792233 +vt 0.727822 0.787566 +vt 0.725254 0.785265 +vt 0.726672 0.786734 +vt 0.723868 0.789193 +vt 0.722391 0.790711 +vt 0.697757 0.772335 +vt 0.700671 0.765133 +vt 0.702590 0.767227 +vt 0.703468 0.767341 +vt 0.705844 0.769300 +vt 0.716814 0.770007 +vt 0.715606 0.762684 +vt 0.714163 0.759469 +vt 0.709099 0.756814 +vt 0.712839 0.753734 +vt 0.713670 0.757733 +vt 0.710081 0.754748 +vt 0.721493 0.780246 +vt 0.728525 0.814284 +vt 0.728825 0.816679 +vt 0.728739 0.825364 +vt 0.729151 0.823565 +vt 0.729747 0.827772 +vt 0.730142 0.829123 +vt 0.689293 0.985223 +vt 0.688843 0.986488 +vt 0.681899 0.987233 +vt 0.666634 0.969197 +vt 0.670222 0.976851 +vt 0.676839 0.984149 +vt 0.674355 0.987711 +vt 0.672378 0.986243 +vt 0.671860 0.982419 +vt 0.678484 0.984841 +vt 0.663473 0.965323 +vt 0.663745 0.966444 +vt 0.665643 0.968750 +vt 0.661811 0.958346 +vt 0.657620 0.956416 +vt 0.656626 0.951857 +vt 0.655341 0.948628 +vt 0.653833 0.938872 +vt 0.652720 0.928281 +vt 0.653520 0.933903 +vt 0.652967 0.932132 +vt 0.653337 0.917877 +vt 0.652770 0.919975 +vt 0.653075 0.915033 +vt 0.652925 0.913645 +vt 0.722932 0.962089 +vt 0.717379 0.973728 +vt 0.717471 0.976030 +vt 0.722246 0.966986 +vt 0.722328 0.964396 +vt 0.715601 0.975743 +vt 0.713683 0.979588 +vt 0.711370 0.981106 +vt 0.709294 0.981910 +vt 0.707199 0.982029 +vt 0.706405 0.977937 +vt 0.705579 0.981646 +vt 0.706061 0.980260 +vt 0.704579 0.982070 +vt 0.703983 0.983638 +vt 0.676794 0.776780 +vt 0.679228 0.774338 +vt 0.680119 0.773005 +vt 0.687332 0.767012 +vt 0.688694 0.765598 +vt 0.689501 0.764280 +vt 0.691246 0.761351 +vt 0.696633 0.764021 +vt 0.697380 0.770357 +vt 0.683828 0.766522 +vt 0.673406 0.784462 +vt 0.674493 0.784007 +vt 0.664099 0.795215 +vt 0.667300 0.793273 +vt 0.668863 0.791552 +vt 0.669966 0.784753 +vt 0.653370 0.904300 +vt 0.652769 0.900413 +vt 0.651584 0.894311 +vt 0.655022 0.840707 +vt 0.655156 0.838259 +vt 0.659477 0.819513 +vt 0.660857 0.812957 +vt 0.659373 0.814732 +vt 0.662538 0.806691 +vt 0.720462 0.785808 +vt 0.722312 0.786643 +vt 0.721556 0.791924 +vt 0.720165 0.785555 +vt 0.729736 0.802430 +vt 0.729633 0.804750 +vt 0.729750 0.805694 +vt 0.729201 0.808550 +vt 0.729478 0.801463 +vt 0.730499 0.795125 +vt 0.730115 0.793123 +vt 0.729887 0.789093 +vt 0.729703 0.786952 +vt 0.726138 0.783208 +vt 0.723007 0.789479 +vt 0.699357 0.767985 +vt 0.703134 0.762209 +vt 0.704738 0.768942 +vt 0.706732 0.767483 +vt 0.706734 0.765729 +vt 0.717144 0.764909 +vt 0.718855 0.767181 +vt 0.707558 0.759953 +vt 0.711472 0.751231 +vt 0.710630 0.752691 +vt 0.720336 0.769836 +vt 0.722209 0.779201 +vt 0.720554 0.784308 +vt 0.729589 0.820698 +vt 0.729402 0.817776 +vt 0.729085 0.825037 +vt 0.729863 0.825792 +vt 0.730271 0.834775 +vt 0.689868 0.984158 +vt 0.685191 0.987015 +vt 0.683023 0.987738 +vt 0.679546 0.987477 +vt 0.667378 0.971642 +vt 0.668119 0.973761 +vt 0.669238 0.975472 +vt 0.671302 0.980759 +vt 0.670154 0.978797 +vt 0.676258 0.986341 +vt 0.671602 0.984869 +vt 0.678679 0.987090 +vt 0.661668 0.963390 +vt 0.662219 0.964157 +vt 0.664152 0.969831 +vt 0.658906 0.959904 +vt 0.660377 0.963434 +vt 0.657780 0.958112 +vt 0.656450 0.955090 +vt 0.655374 0.950430 +vt 0.654573 0.947555 +vt 0.654115 0.942681 +vt 0.653936 0.940610 +vt 0.654140 0.939626 +vt 0.653565 0.937355 +vt 0.653555 0.935838 +vt 0.652818 0.929948 +vt 0.652669 0.926499 +vt 0.653333 0.934340 +vt 0.652977 0.917206 +vt 0.652555 0.923978 +vt 0.653291 0.907706 +vt 0.652915 0.908910 +vt 0.652789 0.911743 +vt 0.723415 0.963185 +vt 0.716337 0.971949 +vt 0.717321 0.977844 +vt 0.718647 0.979530 +vt 0.722531 0.966180 +vt 0.722676 0.964173 +vt 0.722687 0.965305 +vt 0.715895 0.974162 +vt 0.715798 0.977287 +vt 0.714456 0.980712 +vt 0.713016 0.980420 +vt 0.710629 0.982062 +vt 0.712479 0.980971 +vt 0.708189 0.983040 +vt 0.706476 0.980964 +vt 0.706515 0.983192 +vt 0.704418 0.983426 +vt 0.704374 0.984639 +vt 0.690796 0.985068 +vt 0.675479 0.779844 +vt 0.676479 0.774416 +vt 0.678432 0.773519 +vt 0.679803 0.771071 +vt 0.682117 0.768941 +vt 0.689130 0.763702 +vt 0.689709 0.762852 +vt 0.687896 0.765216 +vt 0.690435 0.760537 +vt 0.691117 0.758363 +vt 0.694111 0.755357 +vt 0.697900 0.766198 +vt 0.697622 0.761059 +vt 0.684708 0.765269 +vt 0.686342 0.766328 +vt 0.671621 0.784147 +vt 0.673964 0.782906 +vt 0.661808 0.798850 +vt 0.665781 0.793436 +vt 0.668720 0.788502 +vt 0.653233 0.905810 +vt 0.652544 0.902320 +vt 0.651472 0.897109 +vt 0.651796 0.899833 +vt 0.651470 0.891148 +vt 0.654313 0.839525 +vt 0.660969 0.809249 +vt 0.729127 0.811824 +vt 0.721053 0.785232 +vt 0.722459 0.788849 +vt 0.730118 0.803438 +vt 0.730054 0.804520 +vt 0.729823 0.807446 +vt 0.729866 0.799061 +vt 0.729970 0.801324 +vt 0.729827 0.798325 +vt 0.730334 0.797879 +vt 0.730468 0.790779 +vt 0.728676 0.786709 +vt 0.727669 0.784268 +vt 0.725265 0.782483 +vt 0.724945 0.784852 +vt 0.723280 0.787614 +vt 0.698074 0.769005 +vt 0.700034 0.764707 +vt 0.700528 0.760741 +vt 0.704547 0.765119 +vt 0.703833 0.764241 +vt 0.705605 0.767352 +vt 0.706546 0.764250 +vt 0.716334 0.761982 +vt 0.714620 0.758608 +vt 0.707166 0.762423 +vt 0.707844 0.756890 +vt 0.708978 0.753576 +vt 0.712714 0.749783 +vt 0.713976 0.755485 +vt 0.722110 0.773185 +vt 0.722315 0.781973 +vt 0.728812 0.815469 +vt 0.729673 0.822310 +vt 0.729423 0.819139 +vt 0.729941 0.816349 +vt 0.729617 0.824508 +vt 0.730286 0.827143 +vt 0.730328 0.828325 +vt 0.690069 0.985919 +vt 0.678352 0.988844 +vt 0.665359 0.972464 +vt 0.669590 0.977559 +vt 0.677655 0.986921 +vt 0.673311 0.988868 +vt 0.675342 0.988196 +vt 0.670530 0.986449 +vt 0.670557 0.983141 +vt 0.671159 0.981231 +vt 0.662585 0.965725 +vt 0.662618 0.967634 +vt 0.661740 0.971764 +vt 0.664923 0.971538 +vt 0.656587 0.958056 +vt 0.655347 0.951343 +vt 0.653870 0.949986 +vt 0.654107 0.945962 +vt 0.653169 0.938189 +vt 0.652640 0.932305 +vt 0.652441 0.929596 +vt 0.652096 0.926648 +vt 0.652988 0.935083 +vt 0.652398 0.920543 +vt 0.652680 0.916340 +vt 0.652671 0.914428 +vt 0.722992 0.963633 +vt 0.716383 0.973071 +vt 0.716896 0.975115 +vt 0.716526 0.976684 +vt 0.720135 0.979999 +vt 0.722757 0.966936 +vt 0.716334 0.975245 +vt 0.715133 0.978203 +vt 0.713415 0.980855 +vt 0.711398 0.982462 +vt 0.712960 0.981819 +vt 0.709233 0.983849 +vt 0.705139 0.982946 +vt 0.674962 0.781010 +vt 0.675569 0.777214 +vt 0.675351 0.774931 +vt 0.679696 0.772370 +vt 0.678900 0.772701 +vt 0.680666 0.769848 +vt 0.689961 0.761407 +vt 0.686954 0.764793 +vt 0.690297 0.761426 +vt 0.691151 0.754541 +vt 0.691985 0.753714 +vt 0.697004 0.757653 +vt 0.698762 0.764591 +vt 0.683960 0.763718 +vt 0.683681 0.761334 +vt 0.672707 0.783065 +vt 0.662100 0.804063 +vt 0.661580 0.801897 +vt 0.662418 0.796948 +vt 0.663929 0.789157 +vt 0.667333 0.789862 +vt 0.665361 0.784112 +vt 0.671392 0.780693 +vt 0.652772 0.905424 +vt 0.651227 0.895748 +vt 0.650895 0.894627 +vt 0.659639 0.810806 +vt 0.661380 0.805989 +vt 0.729618 0.810308 +vt 0.729460 0.812676 +vt 0.720667 0.784921 +vt 0.722046 0.784456 +vt 0.729937 0.803934 +vt 0.730221 0.802312 +vt 0.730669 0.805778 +vt 0.729884 0.808835 +vt 0.730294 0.799916 +vt 0.731204 0.792620 +vt 0.731190 0.796364 +vt 0.730684 0.788846 +vt 0.730666 0.787233 +vt 0.729555 0.784583 +vt 0.726224 0.779737 +vt 0.727486 0.782810 +vt 0.703162 0.756440 +vt 0.705460 0.766148 +vt 0.704728 0.762873 +vt 0.705559 0.764700 +vt 0.720069 0.761028 +vt 0.721820 0.764397 +vt 0.715338 0.757176 +vt 0.718365 0.760450 +vt 0.706334 0.760743 +vt 0.708436 0.754769 +vt 0.706786 0.757566 +vt 0.713571 0.751972 +vt 0.711132 0.749027 +vt 0.710568 0.750726 +vt 0.713475 0.753690 +vt 0.709614 0.751068 +vt 0.721842 0.768706 +vt 0.723112 0.780316 +vt 0.723122 0.776706 +vt 0.729128 0.815418 +vt 0.730123 0.821476 +vt 0.729988 0.819180 +vt 0.729932 0.823655 +vt 0.730580 0.826241 +vt 0.666032 0.974378 +vt 0.667292 0.974598 +vt 0.667992 0.977673 +vt 0.669767 0.980235 +vt 0.669063 0.978533 +vt 0.677018 0.988401 +vt 0.672997 0.989382 +vt 0.674223 0.989233 +vt 0.671454 0.989283 +vt 0.678096 0.987869 +vt 0.660666 0.965090 +vt 0.663880 0.973951 +vt 0.658897 0.964847 +vt 0.657556 0.960304 +vt 0.654566 0.954870 +vt 0.653708 0.947024 +vt 0.653430 0.943653 +vt 0.653150 0.941225 +vt 0.653140 0.939775 +vt 0.653065 0.936677 +vt 0.652358 0.917890 +vt 0.651493 0.923967 +vt 0.652936 0.907003 +vt 0.652019 0.909408 +vt 0.651703 0.913600 +vt 0.723558 0.964848 +vt 0.717358 0.980629 +vt 0.716845 0.979372 +vt 0.720499 0.978201 +vt 0.718563 0.981322 +vt 0.722887 0.966279 +vt 0.723044 0.964763 +vt 0.715885 0.979057 +vt 0.715418 0.981473 +vt 0.713985 0.982201 +vt 0.710864 0.983263 +vt 0.706224 0.985089 +vt 0.705861 0.983130 +vt 0.705379 0.984289 +vt 0.674326 0.778384 +vt 0.674223 0.770356 +vt 0.677846 0.772199 +vt 0.679575 0.768675 +vt 0.680941 0.768315 +vt 0.688169 0.763419 +vt 0.688852 0.761539 +vt 0.689853 0.755425 +vt 0.694022 0.753568 +vt 0.695779 0.752988 +vt 0.698244 0.757653 +vt 0.699651 0.761404 +vt 0.685692 0.764264 +vt 0.685667 0.763016 +vt 0.681617 0.764442 +vt 0.673239 0.779889 +vt 0.660927 0.799274 +vt 0.662337 0.794508 +vt 0.661103 0.796848 +vt 0.662427 0.791921 +vt 0.667323 0.777634 +vt 0.652181 0.905453 +vt 0.651515 0.900186 +vt 0.651212 0.899073 +vt 0.650996 0.892143 +vt 0.659838 0.808711 +vt 0.729685 0.811529 +vt 0.729605 0.814298 +vt 0.722807 0.785415 +vt 0.730663 0.802832 +vt 0.730459 0.807687 +vt 0.730186 0.808297 +vt 0.730594 0.801427 +vt 0.731538 0.794274 +vt 0.731126 0.797962 +vt 0.731379 0.790530 +vt 0.731220 0.789179 +vt 0.730422 0.785456 +vt 0.730018 0.781614 +vt 0.725752 0.778905 +vt 0.726696 0.781025 +vt 0.724024 0.784436 +vt 0.728125 0.781832 +vt 0.704378 0.759307 +vt 0.701510 0.756507 +vt 0.705887 0.763411 +vt 0.716123 0.756690 +vt 0.716953 0.759571 +vt 0.707675 0.755144 +vt 0.706612 0.756088 +vt 0.707675 0.752322 +vt 0.713647 0.749551 +vt 0.712041 0.747225 +vt 0.714352 0.754527 +vt 0.708857 0.748987 +vt 0.723637 0.771834 +vt 0.722961 0.783080 +vt 0.730408 0.822548 +vt 0.730346 0.820370 +vt 0.730349 0.819054 +vt 0.730032 0.824595 +vt 0.730680 0.824498 +vt 0.665098 0.975628 +vt 0.672805 0.990098 +vt 0.672465 0.989558 +vt 0.675768 0.989149 +vt 0.669909 0.985477 +vt 0.669495 0.988187 +vt 0.661738 0.967074 +vt 0.660992 0.970908 +vt 0.663241 0.975850 +vt 0.655607 0.958316 +vt 0.656557 0.960635 +vt 0.654188 0.951940 +vt 0.654780 0.956753 +vt 0.653210 0.948511 +vt 0.653549 0.945448 +vt 0.652714 0.937530 +vt 0.652798 0.938653 +vt 0.652525 0.935820 +vt 0.652220 0.931453 +vt 0.651390 0.929858 +vt 0.651615 0.918185 +vt 0.651152 0.920409 +vt 0.651836 0.916128 +vt 0.720757 0.980739 +vt 0.719625 0.981928 +vt 0.723246 0.966005 +vt 0.723163 0.967119 +vt 0.714249 0.983716 +vt 0.712102 0.983190 +vt 0.711900 0.984286 +vt 0.706289 0.984035 +vt 0.674321 0.775722 +vt 0.673989 0.773898 +vt 0.678444 0.771228 +vt 0.678820 0.769953 +vt 0.681241 0.766187 +vt 0.687920 0.758812 +vt 0.689965 0.753150 +vt 0.690735 0.751989 +vt 0.692322 0.753096 +vt 0.696842 0.752059 +vt 0.698706 0.759982 +vt 0.698093 0.754951 +vt 0.681677 0.760868 +vt 0.661406 0.804053 +vt 0.661368 0.802989 +vt 0.660801 0.800978 +vt 0.661472 0.795792 +vt 0.662086 0.787153 +vt 0.662925 0.783118 +vt 0.663951 0.777305 +vt 0.671392 0.773846 +vt 0.650784 0.898762 +vt 0.650900 0.888756 +vt 0.650619 0.894047 +vt 0.660366 0.804192 +vt 0.658473 0.808504 +vt 0.730470 0.809224 +vt 0.729961 0.811943 +vt 0.730309 0.812657 +vt 0.730525 0.804101 +vt 0.730980 0.807672 +vt 0.730844 0.799060 +vt 0.730940 0.800291 +vt 0.731142 0.787982 +vt 0.731271 0.785386 +vt 0.730359 0.783630 +vt 0.724035 0.777069 +vt 0.726573 0.778904 +vt 0.726563 0.779935 +vt 0.727733 0.778093 +vt 0.727150 0.779575 +vt 0.699769 0.758635 +vt 0.705327 0.756258 +vt 0.700356 0.757365 +vt 0.702284 0.753465 +vt 0.705577 0.760378 +vt 0.721665 0.762198 +vt 0.719584 0.757707 +vt 0.723147 0.764717 +vt 0.715070 0.753055 +vt 0.718211 0.758976 +vt 0.705988 0.758053 +vt 0.707874 0.749977 +vt 0.713986 0.753266 +vt 0.714435 0.749975 +vt 0.712780 0.748015 +vt 0.711141 0.745906 +vt 0.710048 0.749794 +vt 0.724080 0.770233 +vt 0.730647 0.821713 +vt 0.730322 0.814428 +vt 0.730892 0.816963 +vt 0.666514 0.976797 +vt 0.668972 0.980299 +vt 0.666762 0.980027 +vt 0.669727 0.989692 +vt 0.660186 0.969448 +vt 0.659261 0.972268 +vt 0.661949 0.976490 +vt 0.664624 0.977702 +vt 0.657943 0.962910 +vt 0.655060 0.961178 +vt 0.657242 0.962525 +vt 0.653548 0.952918 +vt 0.653359 0.956340 +vt 0.653426 0.951480 +vt 0.653099 0.950200 +vt 0.652671 0.945985 +vt 0.652978 0.942748 +vt 0.652898 0.944912 +vt 0.652555 0.939401 +vt 0.651324 0.912058 +vt 0.651022 0.916406 +vt 0.717524 0.984071 +vt 0.716270 0.980959 +vt 0.718762 0.984201 +vt 0.715901 0.983212 +vt 0.713475 0.983442 +vt 0.676340 0.771039 +vt 0.678434 0.769068 +vt 0.680431 0.766737 +vt 0.688101 0.755531 +vt 0.694475 0.752047 +vt 0.693479 0.752002 +vt 0.696342 0.750454 +vt 0.698992 0.757838 +vt 0.698587 0.756886 +vt 0.685648 0.761354 +vt 0.680449 0.764489 +vt 0.680834 0.762034 +vt 0.682820 0.758184 +vt 0.659784 0.797243 +vt 0.661676 0.792251 +vt 0.661379 0.793857 +vt 0.660644 0.794297 +vt 0.661787 0.788138 +vt 0.662641 0.780730 +vt 0.662874 0.777425 +vt 0.663731 0.773215 +vt 0.665462 0.770091 +vt 0.651620 0.904343 +vt 0.651269 0.902217 +vt 0.650278 0.897812 +vt 0.650208 0.890914 +vt 0.650372 0.892397 +vt 0.650203 0.894672 +vt 0.659836 0.802448 +vt 0.658148 0.806627 +vt 0.730982 0.803797 +vt 0.731450 0.801796 +vt 0.731416 0.786834 +vt 0.730831 0.784555 +vt 0.730720 0.782283 +vt 0.729265 0.780185 +vt 0.725271 0.776596 +vt 0.726612 0.776506 +vt 0.728759 0.778047 +vt 0.704530 0.753868 +vt 0.705244 0.758194 +vt 0.700983 0.754885 +vt 0.703140 0.751816 +vt 0.723093 0.756892 +vt 0.723893 0.758454 +vt 0.715769 0.751782 +vt 0.717923 0.757108 +vt 0.706929 0.753517 +vt 0.706973 0.750833 +vt 0.714124 0.747647 +vt 0.713785 0.745291 +vt 0.712360 0.742986 +vt 0.710206 0.748313 +vt 0.709759 0.747656 +vt 0.707657 0.747090 +vt 0.725496 0.773894 +vt 0.730710 0.819425 +vt 0.730871 0.815250 +vt 0.666327 0.978750 +vt 0.668388 0.983698 +vt 0.669174 0.985594 +vt 0.668258 0.988606 +vt 0.660318 0.973655 +vt 0.662716 0.978691 +vt 0.657384 0.967111 +vt 0.654905 0.958903 +vt 0.656048 0.962136 +vt 0.653405 0.954398 +vt 0.653744 0.958392 +vt 0.652549 0.949434 +vt 0.652715 0.947527 +vt 0.652726 0.941928 +vt 0.652425 0.937989 +vt 0.651782 0.936031 +vt 0.651586 0.908471 +vt 0.650882 0.914487 +vt 0.651109 0.915067 +vt 0.716669 0.982815 +vt 0.720484 0.983257 +vt 0.719560 0.985113 +vt 0.713257 0.985240 +vt 0.669245 0.761501 +vt 0.677103 0.769918 +vt 0.677496 0.767955 +vt 0.679196 0.766576 +vt 0.687341 0.753762 +vt 0.689396 0.750633 +vt 0.691545 0.751350 +vt 0.695392 0.750742 +vt 0.692538 0.751414 +vt 0.697729 0.749783 +vt 0.698119 0.751799 +vt 0.698891 0.754649 +vt 0.684764 0.756823 +vt 0.679291 0.757406 +vt 0.681517 0.757358 +vt 0.662201 0.781822 +vt 0.661204 0.787911 +vt 0.662477 0.774466 +vt 0.666369 0.765426 +vt 0.650793 0.901338 +vt 0.730849 0.810840 +vt 0.730896 0.813681 +vt 0.731484 0.809330 +vt 0.731230 0.783573 +vt 0.730666 0.780914 +vt 0.730200 0.779453 +vt 0.728286 0.776112 +vt 0.699763 0.755302 +vt 0.705527 0.752057 +vt 0.702084 0.751909 +vt 0.701512 0.752176 +vt 0.719504 0.754760 +vt 0.724752 0.765988 +vt 0.714979 0.751713 +vt 0.716341 0.750302 +vt 0.717409 0.752132 +vt 0.706783 0.752148 +vt 0.707049 0.748611 +vt 0.714881 0.747184 +vt 0.713426 0.743750 +vt 0.710800 0.741799 +vt 0.708887 0.745645 +vt 0.726444 0.769682 +vt 0.731347 0.814328 +vt 0.667238 0.983598 +vt 0.665437 0.980657 +vt 0.668577 0.986665 +vt 0.656749 0.971349 +vt 0.658383 0.975864 +vt 0.660613 0.977204 +vt 0.660872 0.979368 +vt 0.657380 0.964255 +vt 0.653676 0.962059 +vt 0.656767 0.964888 +vt 0.655227 0.962538 +vt 0.653018 0.952348 +vt 0.653108 0.953346 +vt 0.652895 0.955232 +vt 0.653123 0.957853 +vt 0.652887 0.951252 +vt 0.652516 0.950219 +vt 0.652557 0.948639 +vt 0.652264 0.947342 +vt 0.652555 0.944814 +vt 0.652491 0.943961 +vt 0.652314 0.941444 +vt 0.652109 0.938542 +vt 0.650927 0.932944 +vt 0.650807 0.915304 +vt 0.650980 0.912162 +vt 0.717341 0.986362 +vt 0.716129 0.984975 +vt 0.718670 0.986397 +vt 0.674088 0.758033 +vt 0.671962 0.771014 +vt 0.679863 0.765040 +vt 0.686141 0.755423 +vt 0.688336 0.750212 +vt 0.686264 0.757662 +vt 0.690649 0.749869 +vt 0.693667 0.750430 +vt 0.695238 0.748593 +vt 0.696365 0.748846 +vt 0.697126 0.748804 +vt 0.699391 0.752556 +vt 0.699122 0.756080 +vt 0.679124 0.762355 +vt 0.682264 0.755742 +vt 0.683815 0.756087 +vt 0.659023 0.792157 +vt 0.661540 0.783383 +vt 0.662260 0.778274 +vt 0.661719 0.781216 +vt 0.662014 0.775647 +vt 0.662992 0.769905 +vt 0.662436 0.772841 +vt 0.663837 0.763977 +vt 0.651381 0.906126 +vt 0.651228 0.903713 +vt 0.650202 0.901509 +vt 0.731220 0.812354 +vt 0.731356 0.781588 +vt 0.729595 0.777899 +vt 0.729297 0.775816 +vt 0.704214 0.751390 +vt 0.702103 0.750676 +vt 0.724736 0.756119 +vt 0.722113 0.755267 +vt 0.725665 0.767270 +vt 0.725656 0.759138 +vt 0.715319 0.749693 +vt 0.718564 0.752237 +vt 0.706348 0.749729 +vt 0.714031 0.743158 +vt 0.712994 0.740614 +vt 0.706692 0.746371 +vt 0.708667 0.741958 +vt 0.727144 0.773250 +vt 0.667138 0.987246 +vt 0.656130 0.975087 +vt 0.657226 0.976449 +vt 0.661596 0.981553 +vt 0.663339 0.983472 +vt 0.655571 0.970029 +vt 0.653617 0.963372 +vt 0.655804 0.964052 +vt 0.652842 0.953832 +vt 0.652787 0.956929 +vt 0.653245 0.959809 +vt 0.652248 0.949161 +vt 0.652341 0.944930 +vt 0.651028 0.937263 +vt 0.650765 0.913237 +vt 0.650646 0.910269 +vt 0.720332 0.985605 +vt 0.719804 0.987888 +vt 0.669365 0.751652 +vt 0.664879 0.761556 +vt 0.678244 0.766079 +vt 0.678788 0.764989 +vt 0.686416 0.752438 +vt 0.687538 0.748306 +vt 0.688931 0.748279 +vt 0.690137 0.746085 +vt 0.692830 0.748466 +vt 0.694098 0.748900 +vt 0.697711 0.747342 +vt 0.698451 0.748187 +vt 0.700706 0.748502 +vt 0.679638 0.752915 +vt 0.683281 0.755644 +vt 0.683803 0.753930 +vt 0.658124 0.799456 +vt 0.660292 0.785201 +vt 0.658160 0.794307 +vt 0.660977 0.779647 +vt 0.661981 0.779194 +vt 0.661683 0.779753 +vt 0.661467 0.773495 +vt 0.662851 0.766602 +vt 0.651214 0.908424 +vt 0.650528 0.902553 +vt 0.650903 0.904430 +vt 0.731274 0.813307 +vt 0.731103 0.779614 +vt 0.730159 0.778012 +vt 0.728413 0.774497 +vt 0.703866 0.748880 +vt 0.705416 0.750156 +vt 0.702671 0.749386 +vt 0.724178 0.754307 +vt 0.723912 0.752543 +vt 0.721615 0.751840 +vt 0.726463 0.762444 +vt 0.715746 0.746882 +vt 0.717674 0.748199 +vt 0.705977 0.747942 +vt 0.714783 0.743067 +vt 0.713621 0.740472 +vt 0.711308 0.739317 +vt 0.707615 0.741605 +vt 0.728143 0.770319 +vt 0.666147 0.983674 +vt 0.667384 0.989421 +vt 0.656014 0.972890 +vt 0.656278 0.979634 +vt 0.659198 0.978684 +vt 0.659726 0.979467 +vt 0.660109 0.981657 +vt 0.665139 0.982955 +vt 0.655783 0.966302 +vt 0.653183 0.962775 +vt 0.652424 0.951845 +vt 0.652680 0.953323 +vt 0.652565 0.956134 +vt 0.652827 0.958602 +vt 0.652764 0.957540 +vt 0.652099 0.949468 +vt 0.651992 0.945568 +vt 0.652086 0.943222 +vt 0.651912 0.940524 +vt 0.651565 0.939951 +vt 0.650807 0.935806 +vt 0.717529 0.987430 +vt 0.719220 0.987431 +vt 0.671376 0.750659 +vt 0.667180 0.754230 +vt 0.665336 0.757968 +vt 0.676766 0.764977 +vt 0.684894 0.753893 +vt 0.688279 0.748220 +vt 0.693511 0.749453 +vt 0.695998 0.747001 +vt 0.694969 0.748073 +vt 0.696812 0.745317 +vt 0.699334 0.747627 +vt 0.676401 0.750089 +vt 0.682804 0.754411 +vt 0.680972 0.750221 +vt 0.657615 0.802184 +vt 0.658642 0.783677 +vt 0.657611 0.792871 +vt 0.661759 0.777276 +vt 0.661472 0.778250 +vt 0.660499 0.774103 +vt 0.661852 0.770709 +vt 0.662061 0.768884 +vt 0.662553 0.763553 +vt 0.663232 0.761501 +vt 0.650967 0.907512 +vt 0.651134 0.905467 +vt 0.650306 0.904920 +vt 0.730668 0.778120 +vt 0.730233 0.776674 +vt 0.729815 0.774774 +vt 0.726723 0.756141 +vt 0.724987 0.754291 +vt 0.719068 0.749148 +vt 0.727071 0.759518 +vt 0.715662 0.743170 +vt 0.711170 0.736009 +vt 0.713805 0.736368 +vt 0.709753 0.739565 +vt 0.706125 0.745110 +vt 0.708249 0.739114 +vt 0.727123 0.767046 +vt 0.664766 0.989128 +vt 0.656037 0.977641 +vt 0.654940 0.974752 +vt 0.658264 0.978071 +vt 0.660540 0.985251 +vt 0.661919 0.984875 +vt 0.664252 0.983872 +vt 0.654663 0.967502 +vt 0.653971 0.972233 +vt 0.653209 0.963947 +vt 0.653990 0.964742 +vt 0.652436 0.955062 +vt 0.652251 0.956557 +vt 0.652743 0.959955 +vt 0.652105 0.950780 +vt 0.651785 0.947993 +vt 0.650789 0.940849 +vt 0.650662 0.939006 +vt 0.718477 0.987846 +vt 0.719057 0.988306 +vt 0.670441 0.747664 +vt 0.672619 0.750182 +vt 0.667462 0.750099 +vt 0.663848 0.759730 +vt 0.686404 0.747062 +vt 0.685505 0.751691 +vt 0.688229 0.746300 +vt 0.691570 0.741037 +vt 0.694410 0.747557 +vt 0.697095 0.743813 +vt 0.698643 0.746353 +vt 0.699330 0.744403 +vt 0.678449 0.749132 +vt 0.673937 0.749492 +vt 0.682789 0.751546 +vt 0.684292 0.749730 +vt 0.657498 0.800007 +vt 0.657736 0.797505 +vt 0.658153 0.787840 +vt 0.660050 0.779191 +vt 0.657926 0.791069 +vt 0.657556 0.795201 +vt 0.660737 0.770475 +vt 0.662291 0.769816 +vt 0.662133 0.766128 +vt 0.650982 0.906155 +vt 0.731276 0.778179 +vt 0.702830 0.743381 +vt 0.725848 0.752770 +vt 0.724738 0.752415 +vt 0.721981 0.749004 +vt 0.720302 0.747013 +vt 0.727646 0.761998 +vt 0.716878 0.745133 +vt 0.718272 0.745306 +vt 0.715138 0.740681 +vt 0.712872 0.734382 +vt 0.715104 0.737029 +vt 0.704854 0.744516 +vt 0.706919 0.742069 +vt 0.707574 0.740008 +vt 0.727030 0.763103 +vt 0.727983 0.766640 +vt 0.664724 0.984480 +vt 0.665735 0.985322 +vt 0.665186 0.986841 +vt 0.666411 0.990416 +vt 0.654279 0.977959 +vt 0.657140 0.980646 +vt 0.655355 0.978959 +vt 0.659206 0.981485 +vt 0.658250 0.981123 +vt 0.663772 0.985880 +vt 0.653586 0.969397 +vt 0.652699 0.961884 +vt 0.652848 0.963291 +vt 0.652169 0.953180 +vt 0.652298 0.959073 +vt 0.651955 0.951611 +vt 0.651772 0.950140 +vt 0.651684 0.944796 +vt 0.651403 0.942659 +vt 0.650513 0.936252 +vt 0.717586 0.988351 +vt 0.719589 0.988691 +vt 0.671546 0.748003 +vt 0.670102 0.745591 +vt 0.665578 0.753287 +vt 0.667978 0.744094 +vt 0.663425 0.757787 +vt 0.687062 0.745310 +vt 0.685781 0.749500 +vt 0.687772 0.741718 +vt 0.694268 0.745087 +vt 0.695342 0.745914 +vt 0.696237 0.742858 +vt 0.697958 0.745422 +vt 0.700960 0.741273 +vt 0.676925 0.746085 +vt 0.674904 0.747106 +vt 0.677330 0.743746 +vt 0.683552 0.749099 +vt 0.657074 0.801501 +vt 0.657267 0.798073 +vt 0.657890 0.795850 +vt 0.658114 0.784449 +vt 0.658464 0.778757 +vt 0.657151 0.791247 +vt 0.657174 0.794426 +vt 0.660361 0.776872 +vt 0.659581 0.771635 +vt 0.660774 0.766879 +vt 0.660232 0.767883 +vt 0.662407 0.761797 +vt 0.661634 0.762986 +vt 0.662827 0.759014 +vt 0.731105 0.776768 +vt 0.730556 0.775929 +vt 0.730269 0.769916 +vt 0.727610 0.757937 +vt 0.724471 0.749244 +vt 0.723701 0.747568 +vt 0.719211 0.744998 +vt 0.728223 0.759713 +vt 0.716535 0.742322 +vt 0.710951 0.734056 +vt 0.709403 0.734313 +vt 0.714183 0.731585 +vt 0.708625 0.736532 +vt 0.705974 0.741574 +vt 0.706915 0.740228 +vt 0.707505 0.738730 +vt 0.728889 0.767364 +vt 0.664188 0.987404 +vt 0.665065 0.990352 +vt 0.653579 0.976841 +vt 0.653768 0.974425 +vt 0.656112 0.981723 +vt 0.655249 0.980786 +vt 0.658455 0.981705 +vt 0.661383 0.986779 +vt 0.663238 0.987724 +vt 0.653887 0.967039 +vt 0.653545 0.971767 +vt 0.653042 0.965253 +vt 0.652736 0.964021 +vt 0.651886 0.954445 +vt 0.652458 0.961137 +vt 0.651984 0.959385 +vt 0.651480 0.948282 +vt 0.650765 0.943131 +vt 0.650545 0.939693 +vt 0.718209 0.988699 +vt 0.718885 0.988768 +vt 0.671027 0.746104 +vt 0.668888 0.744880 +vt 0.672861 0.748155 +vt 0.665205 0.751569 +vt 0.666596 0.748059 +vt 0.664262 0.757031 +vt 0.686058 0.744169 +vt 0.685419 0.747829 +vt 0.684803 0.749680 +vt 0.694907 0.736434 +vt 0.689107 0.734355 +vt 0.697604 0.742316 +vt 0.698343 0.742408 +vt 0.698965 0.743617 +vt 0.699859 0.740669 +vt 0.675557 0.745142 +vt 0.673810 0.746732 +vt 0.682938 0.745289 +vt 0.679457 0.746021 +vt 0.683831 0.746721 +vt 0.656794 0.799875 +vt 0.656940 0.802646 +vt 0.656807 0.798919 +vt 0.657294 0.796144 +vt 0.657869 0.778275 +vt 0.657575 0.785980 +vt 0.657421 0.789234 +vt 0.658774 0.775739 +vt 0.657069 0.792741 +vt 0.659712 0.769032 +vt 0.658523 0.773204 +vt 0.661040 0.765025 +vt 0.731653 0.777581 +vt 0.730353 0.774116 +vt 0.730580 0.772009 +vt 0.730568 0.767868 +vt 0.704322 0.741985 +vt 0.702154 0.737150 +vt 0.727765 0.756245 +vt 0.725157 0.750655 +vt 0.722573 0.746955 +vt 0.721054 0.746044 +vt 0.720171 0.744436 +vt 0.728632 0.763754 +vt 0.717497 0.742740 +vt 0.718526 0.742429 +vt 0.715962 0.740355 +vt 0.711240 0.730914 +vt 0.712688 0.728465 +vt 0.715219 0.732388 +vt 0.707643 0.737631 +vt 0.707575 0.737966 +vt 0.728918 0.763533 +vt 0.663419 0.989742 +vt 0.663547 0.991202 +vt 0.665050 0.991765 +vt 0.654467 0.980148 +vt 0.653224 0.977729 +vt 0.653467 0.975908 +vt 0.653259 0.973002 +vt 0.656742 0.982489 +vt 0.653346 0.968514 +vt 0.653247 0.970782 +vt 0.652474 0.963489 +vt 0.651547 0.951917 +vt 0.651608 0.956063 +vt 0.652311 0.963287 +vt 0.650996 0.945493 +vt 0.650421 0.941747 +vt 0.717384 0.988945 +vt 0.671604 0.746765 +vt 0.671083 0.745149 +vt 0.669742 0.744196 +vt 0.673170 0.747142 +vt 0.672700 0.746491 +vt 0.664678 0.752573 +vt 0.666960 0.743247 +vt 0.668378 0.742239 +vt 0.662524 0.758522 +vt 0.663770 0.754140 +vt 0.686583 0.742326 +vt 0.685698 0.745593 +vt 0.684538 0.747599 +vt 0.691713 0.730458 +vt 0.687564 0.736785 +vt 0.697162 0.740752 +vt 0.699217 0.742298 +vt 0.700410 0.738348 +vt 0.676546 0.743595 +vt 0.676136 0.744437 +vt 0.674275 0.745667 +vt 0.674658 0.744866 +vt 0.680245 0.742940 +vt 0.678127 0.742540 +vt 0.656334 0.801383 +vt 0.656677 0.796103 +vt 0.657361 0.783030 +vt 0.657233 0.787497 +vt 0.658044 0.777332 +vt 0.656478 0.792069 +vt 0.656703 0.789674 +vt 0.656681 0.793715 +vt 0.658782 0.769935 +vt 0.658497 0.770187 +vt 0.660591 0.762066 +vt 0.659221 0.766513 +vt 0.731780 0.776645 +vt 0.730917 0.775267 +vt 0.731283 0.769998 +vt 0.725004 0.746114 +vt 0.722896 0.744877 +vt 0.719448 0.743240 +vt 0.729207 0.760650 +vt 0.718126 0.742941 +vt 0.715928 0.736181 +vt 0.709870 0.730555 +vt 0.707695 0.733411 +vt 0.714045 0.727732 +vt 0.715092 0.730408 +vt 0.707637 0.735759 +vt 0.705319 0.739857 +vt 0.706204 0.738897 +vt 0.707164 0.737645 +vt 0.730807 0.764502 +vt 0.729544 0.763584 +vt 0.653415 0.978903 +vt 0.653023 0.976690 +vt 0.652977 0.974066 +vt 0.652903 0.975413 +vt 0.655965 0.983192 +vt 0.654504 0.982043 +vt 0.657107 0.983695 +vt 0.662120 0.989274 +vt 0.652821 0.967145 +vt 0.653249 0.969726 +vt 0.652852 0.971586 +vt 0.652485 0.964454 +vt 0.651296 0.954570 +vt 0.651622 0.961963 +vt 0.650979 0.950641 +vt 0.650838 0.948013 +vt 0.650359 0.943586 +vt 0.671792 0.745821 +vt 0.670504 0.744088 +vt 0.669331 0.742604 +vt 0.664040 0.751960 +vt 0.665542 0.746532 +vt 0.667419 0.742131 +vt 0.666506 0.745257 +vt 0.662465 0.756576 +vt 0.661299 0.759636 +vt 0.686094 0.742510 +vt 0.685417 0.743746 +vt 0.685110 0.745158 +vt 0.686388 0.738816 +vt 0.694666 0.728842 +vt 0.687350 0.733136 +vt 0.688975 0.728935 +vt 0.698270 0.741091 +vt 0.698138 0.739382 +vt 0.699209 0.738152 +vt 0.698874 0.740447 +vt 0.676734 0.741973 +vt 0.675785 0.743538 +vt 0.673354 0.745807 +vt 0.674755 0.743947 +vt 0.682505 0.741180 +vt 0.677390 0.741638 +vt 0.683792 0.745045 +vt 0.684422 0.745810 +vt 0.656102 0.800130 +vt 0.656251 0.797825 +vt 0.657410 0.779432 +vt 0.657092 0.784961 +vt 0.656925 0.786464 +vt 0.656861 0.788329 +vt 0.657435 0.777318 +vt 0.657999 0.775700 +vt 0.656404 0.790824 +vt 0.657863 0.772512 +vt 0.731567 0.775493 +vt 0.731372 0.773532 +vt 0.731219 0.771999 +vt 0.731411 0.767979 +vt 0.703958 0.736730 +vt 0.700020 0.731364 +vt 0.729139 0.757436 +vt 0.723579 0.743322 +vt 0.721746 0.745119 +vt 0.720863 0.743892 +vt 0.720071 0.743094 +vt 0.729029 0.762352 +vt 0.717856 0.740461 +vt 0.719364 0.739344 +vt 0.717312 0.737432 +vt 0.710633 0.724698 +vt 0.711483 0.725076 +vt 0.708690 0.730370 +vt 0.707449 0.730821 +vt 0.715115 0.728203 +vt 0.715895 0.730296 +vt 0.716180 0.733471 +vt 0.706950 0.736033 +vt 0.731236 0.766649 +vt 0.662846 0.991043 +vt 0.662795 0.989900 +vt 0.663303 0.992576 +vt 0.653634 0.979814 +vt 0.652982 0.978410 +vt 0.652805 0.977350 +vt 0.652619 0.973011 +vt 0.653455 0.980909 +vt 0.661056 0.990312 +vt 0.652791 0.968944 +vt 0.652826 0.970204 +vt 0.652317 0.965254 +vt 0.651284 0.964804 +vt 0.649915 0.941998 +vt 0.671885 0.745007 +vt 0.670070 0.742705 +vt 0.664552 0.746848 +vt 0.666880 0.739452 +vt 0.664954 0.740767 +vt 0.667631 0.738328 +vt 0.668748 0.740616 +vt 0.662097 0.754412 +vt 0.685542 0.742062 +vt 0.685854 0.739577 +vt 0.697081 0.733540 +vt 0.693421 0.725467 +vt 0.686505 0.735973 +vt 0.687730 0.730788 +vt 0.686648 0.734229 +vt 0.690148 0.727794 +vt 0.698553 0.735611 +vt 0.699412 0.736738 +vt 0.675874 0.742198 +vt 0.675021 0.742922 +vt 0.673840 0.744755 +vt 0.674223 0.744728 +vt 0.674142 0.743967 +vt 0.681556 0.737275 +vt 0.683713 0.742775 +vt 0.678208 0.740762 +vt 0.655758 0.801034 +vt 0.656219 0.795780 +vt 0.656896 0.781630 +vt 0.657098 0.777817 +vt 0.656587 0.784234 +vt 0.656624 0.787136 +vt 0.657460 0.776061 +vt 0.656148 0.792941 +vt 0.656033 0.791789 +vt 0.656232 0.789215 +vt 0.658365 0.766428 +vt 0.657777 0.768405 +vt 0.657954 0.770678 +vt 0.658511 0.761279 +vt 0.660038 0.758823 +vt 0.731037 0.772562 +vt 0.731901 0.771650 +vt 0.732119 0.768240 +vt 0.703118 0.734462 +vt 0.699753 0.735129 +vt 0.701065 0.731850 +vt 0.724155 0.741825 +vt 0.721763 0.743696 +vt 0.722695 0.742092 +vt 0.720674 0.743368 +vt 0.720231 0.743652 +vt 0.720211 0.740342 +vt 0.730029 0.761727 +vt 0.730838 0.761044 +vt 0.718430 0.740274 +vt 0.709117 0.725835 +vt 0.707712 0.726377 +vt 0.706469 0.733539 +vt 0.706600 0.732025 +vt 0.713264 0.723847 +vt 0.715203 0.725805 +vt 0.715597 0.727739 +vt 0.705285 0.736231 +vt 0.706563 0.736394 +vt 0.731641 0.765450 +vt 0.662739 0.992143 +vt 0.653362 0.979509 +vt 0.652837 0.978823 +vt 0.652786 0.977952 +vt 0.652734 0.976932 +vt 0.652618 0.976519 +vt 0.652444 0.974323 +vt 0.655832 0.984484 +vt 0.654576 0.984260 +vt 0.653160 0.982556 +vt 0.662355 0.990706 +vt 0.660699 0.990929 +vt 0.661682 0.990466 +vt 0.652398 0.968198 +vt 0.652360 0.970248 +vt 0.652168 0.971684 +vt 0.652195 0.964659 +vt 0.652070 0.966659 +vt 0.650784 0.959517 +vt 0.650366 0.957499 +vt 0.651983 0.964042 +vt 0.651612 0.965116 +vt 0.650528 0.949920 +vt 0.650123 0.945565 +vt 0.672654 0.745610 +vt 0.670984 0.742872 +vt 0.669837 0.740023 +vt 0.663496 0.749455 +vt 0.666214 0.740423 +vt 0.664277 0.742757 +vt 0.660510 0.757262 +vt 0.684743 0.743076 +vt 0.684566 0.744491 +vt 0.685589 0.738687 +vt 0.695095 0.726537 +vt 0.692153 0.725731 +vt 0.695965 0.727232 +vt 0.685465 0.737844 +vt 0.686708 0.731064 +vt 0.686406 0.732210 +vt 0.687621 0.728470 +vt 0.689416 0.726179 +vt 0.690673 0.725832 +vt 0.676534 0.740485 +vt 0.676938 0.741150 +vt 0.673201 0.744839 +vt 0.674475 0.743311 +vt 0.683139 0.738382 +vt 0.679545 0.737148 +vt 0.683522 0.740331 +vt 0.677229 0.740293 +vt 0.678849 0.739211 +vt 0.684158 0.744363 +vt 0.655705 0.799235 +vt 0.655716 0.797558 +vt 0.656870 0.779260 +vt 0.656390 0.786117 +vt 0.656530 0.788001 +vt 0.656025 0.794423 +vt 0.655879 0.790617 +vt 0.658551 0.764408 +vt 0.657047 0.773765 +vt 0.657246 0.771099 +vt 0.731875 0.774766 +vt 0.732147 0.769960 +vt 0.731807 0.766807 +vt 0.704772 0.734825 +vt 0.699363 0.731173 +vt 0.700334 0.728136 +vt 0.723712 0.742072 +vt 0.723487 0.742944 +vt 0.720650 0.742809 +vt 0.720128 0.737649 +vt 0.718455 0.738773 +vt 0.717158 0.734058 +vt 0.709748 0.722955 +vt 0.707633 0.728509 +vt 0.706739 0.729605 +vt 0.711556 0.719517 +vt 0.714501 0.725641 +vt 0.716209 0.726783 +vt 0.732018 0.762680 +vt 0.662436 0.991515 +vt 0.662477 0.993702 +vt 0.653104 0.979690 +vt 0.652748 0.978367 +vt 0.652608 0.977099 +vt 0.652597 0.977532 +vt 0.652193 0.975834 +vt 0.652019 0.974031 +vt 0.652672 0.980508 +vt 0.662028 0.990667 +vt 0.661421 0.991285 +vt 0.652486 0.968990 +vt 0.652536 0.969552 +vt 0.650367 0.959753 +vt 0.651580 0.967362 +vt 0.649723 0.944580 +vt 0.662764 0.747647 +vt 0.661996 0.751617 +vt 0.666620 0.737310 +vt 0.663061 0.741270 +vt 0.665634 0.737381 +vt 0.668605 0.736909 +vt 0.661067 0.753736 +vt 0.685431 0.740300 +vt 0.685090 0.740071 +vt 0.698122 0.731702 +vt 0.694671 0.723643 +vt 0.692766 0.723535 +vt 0.697661 0.729126 +vt 0.686078 0.734712 +vt 0.686838 0.729255 +vt 0.685879 0.733243 +vt 0.687986 0.726776 +vt 0.675557 0.741085 +vt 0.675321 0.741888 +vt 0.683017 0.735555 +vt 0.680418 0.731395 +vt 0.684327 0.740248 +vt 0.677648 0.739760 +vt 0.677951 0.739096 +vt 0.684288 0.742722 +vt 0.655519 0.801180 +vt 0.655586 0.796477 +vt 0.656230 0.782462 +vt 0.656403 0.780842 +vt 0.656537 0.778420 +vt 0.656256 0.787091 +vt 0.656831 0.775935 +vt 0.655701 0.792730 +vt 0.655999 0.787940 +vt 0.657660 0.765644 +vt 0.657482 0.769873 +vt 0.657062 0.772635 +vt 0.657998 0.762946 +vt 0.658503 0.759954 +vt 0.659281 0.755519 +vt 0.702139 0.730702 +vt 0.703388 0.732488 +vt 0.699336 0.728991 +vt 0.702292 0.725743 +vt 0.723590 0.740407 +vt 0.721706 0.741138 +vt 0.720884 0.741331 +vt 0.719178 0.737074 +vt 0.720801 0.740298 +vt 0.718131 0.736490 +vt 0.708334 0.725049 +vt 0.708304 0.724006 +vt 0.707106 0.729865 +vt 0.706774 0.726717 +vt 0.705646 0.731668 +vt 0.711920 0.716383 +vt 0.714638 0.723654 +vt 0.715419 0.725319 +vt 0.717083 0.728081 +vt 0.716098 0.724776 +vt 0.705884 0.734949 +vt 0.732314 0.764582 +vt 0.731996 0.765651 +vt 0.661997 0.991986 +vt 0.662133 0.992805 +vt 0.662592 0.995709 +vt 0.652453 0.979209 +vt 0.652482 0.978043 +vt 0.652382 0.977028 +vt 0.655320 0.985968 +vt 0.653331 0.984733 +vt 0.652383 0.982429 +vt 0.662149 0.990939 +vt 0.660702 0.991724 +vt 0.661790 0.990985 +vt 0.652207 0.969040 +vt 0.651844 0.970002 +vt 0.651699 0.973175 +vt 0.650737 0.964828 +vt 0.650231 0.953344 +vt 0.650871 0.968396 +vt 0.650050 0.948150 +vt 0.649519 0.942921 +vt 0.671342 0.742034 +vt 0.661572 0.745520 +vt 0.662519 0.743632 +vt 0.666869 0.735685 +vt 0.666072 0.737388 +vt 0.662985 0.739388 +vt 0.667251 0.733074 +vt 0.670688 0.732581 +vt 0.659799 0.753482 +vt 0.693767 0.722852 +vt 0.695803 0.722928 +vt 0.692307 0.722875 +vt 0.692993 0.722732 +vt 0.697097 0.724426 +vt 0.685516 0.734561 +vt 0.685824 0.729911 +vt 0.685789 0.731841 +vt 0.686881 0.727655 +vt 0.688448 0.725457 +vt 0.689870 0.725361 +vt 0.676045 0.739978 +vt 0.674769 0.741796 +vt 0.681948 0.731678 +vt 0.684249 0.736875 +vt 0.683900 0.738908 +vt 0.678550 0.736572 +vt 0.679261 0.731066 +vt 0.677252 0.738894 +vt 0.678259 0.737900 +vt 0.655362 0.798495 +vt 0.655651 0.803923 +vt 0.655973 0.784085 +vt 0.656455 0.777292 +vt 0.655931 0.785894 +vt 0.656642 0.776083 +vt 0.655416 0.794719 +vt 0.655588 0.789642 +vt 0.655739 0.787441 +vt 0.657242 0.768394 +vt 0.656492 0.774043 +vt 0.656953 0.769782 +vt 0.656874 0.771418 +vt 0.657802 0.761119 +vt 0.659102 0.757831 +vt 0.704536 0.733473 +vt 0.698418 0.729108 +vt 0.699884 0.724294 +vt 0.699330 0.727897 +vt 0.724293 0.739591 +vt 0.722537 0.739588 +vt 0.719325 0.735613 +vt 0.720778 0.737404 +vt 0.718651 0.734717 +vt 0.707253 0.724961 +vt 0.708244 0.722611 +vt 0.709840 0.720781 +vt 0.705447 0.733293 +vt 0.705896 0.729528 +vt 0.711157 0.716601 +vt 0.713769 0.721730 +vt 0.715024 0.723386 +vt 0.717339 0.723961 +vt 0.718013 0.731538 +vt 0.662026 0.991218 +vt 0.661307 0.993702 +vt 0.662115 0.994803 +vt 0.652022 0.977484 +vt 0.651466 0.973408 +vt 0.654040 0.985624 +vt 0.652667 0.983585 +vt 0.651983 0.981612 +vt 0.661195 0.992115 +vt 0.651643 0.970929 +vt 0.649947 0.958277 +vt 0.650388 0.962649 +vt 0.650202 0.956386 +vt 0.649807 0.950833 +vt 0.649240 0.943444 +vt 0.649450 0.941312 +vt 0.661238 0.749309 +vt 0.666236 0.735486 +vt 0.661764 0.739968 +vt 0.664012 0.735873 +vt 0.684654 0.738421 +vt 0.694518 0.721918 +vt 0.690598 0.723045 +vt 0.698307 0.726926 +vt 0.685200 0.735808 +vt 0.685907 0.728204 +vt 0.685305 0.731835 +vt 0.687179 0.725297 +vt 0.686425 0.727057 +vt 0.689247 0.724965 +vt 0.689582 0.725192 +vt 0.689849 0.724561 +vt 0.674879 0.740508 +vt 0.676677 0.739245 +vt 0.683054 0.732095 +vt 0.683849 0.734469 +vt 0.678697 0.734747 +vt 0.679205 0.726439 +vt 0.680683 0.725712 +vt 0.684266 0.738604 +vt 0.677594 0.737806 +vt 0.655352 0.803468 +vt 0.655030 0.795532 +vt 0.655852 0.781658 +vt 0.655899 0.782643 +vt 0.655984 0.779491 +vt 0.656206 0.776834 +vt 0.656492 0.775808 +vt 0.657156 0.766022 +vt 0.657376 0.763365 +vt 0.656595 0.772571 +vt 0.657571 0.762445 +vt 0.658507 0.758801 +vt 0.658198 0.759510 +vt 0.658731 0.753267 +vt 0.658246 0.757351 +vt 0.703607 0.728481 +vt 0.704217 0.730787 +vt 0.699262 0.726516 +vt 0.699967 0.720714 +vt 0.723918 0.737190 +vt 0.721145 0.740289 +vt 0.721642 0.738283 +vt 0.719559 0.734801 +vt 0.720968 0.731953 +vt 0.707684 0.723713 +vt 0.708643 0.720772 +vt 0.706531 0.724803 +vt 0.705943 0.727689 +vt 0.704832 0.731157 +vt 0.705243 0.729494 +vt 0.711313 0.713837 +vt 0.713251 0.716702 +vt 0.714774 0.721488 +vt 0.716099 0.722408 +vt 0.718930 0.724323 +vt 0.718611 0.728852 +vt 0.660865 0.992776 +vt 0.652250 0.980287 +vt 0.653312 0.985811 +vt 0.652481 0.984766 +vt 0.652074 0.983305 +vt 0.651332 0.971197 +vt 0.649947 0.960675 +vt 0.650117 0.964152 +vt 0.650108 0.966595 +vt 0.649938 0.956774 +vt 0.649494 0.948184 +vt 0.649349 0.941982 +vt 0.660134 0.744862 +vt 0.661223 0.743552 +vt 0.662989 0.735702 +vt 0.661219 0.739860 +vt 0.665537 0.733854 +vt 0.667675 0.728326 +vt 0.659343 0.750373 +vt 0.684711 0.736876 +vt 0.693674 0.720893 +vt 0.696424 0.721633 +vt 0.691488 0.721971 +vt 0.697897 0.723897 +vt 0.684853 0.734811 +vt 0.685250 0.733380 +vt 0.685629 0.727409 +vt 0.688164 0.724508 +vt 0.688804 0.724526 +vt 0.676098 0.738606 +vt 0.682980 0.726571 +vt 0.684365 0.734772 +vt 0.678085 0.735073 +vt 0.677872 0.736575 +vt 0.678440 0.728069 +vt 0.678172 0.734120 +vt 0.676904 0.737699 +vt 0.654530 0.801085 +vt 0.655153 0.805137 +vt 0.654508 0.796853 +vt 0.655654 0.783863 +vt 0.655748 0.784806 +vt 0.655498 0.786751 +vt 0.655261 0.788933 +vt 0.657065 0.764199 +vt 0.656928 0.767822 +vt 0.656922 0.768899 +vt 0.656154 0.774942 +vt 0.656241 0.773225 +vt 0.656712 0.770501 +vt 0.656433 0.771955 +vt 0.657207 0.762026 +vt 0.657850 0.758952 +vt 0.658360 0.755021 +vt 0.704517 0.725166 +vt 0.698461 0.722840 +vt 0.698939 0.720729 +vt 0.701599 0.718376 +vt 0.725152 0.738027 +vt 0.722833 0.735135 +vt 0.720060 0.733810 +vt 0.721436 0.734179 +vt 0.719297 0.733020 +vt 0.707501 0.722022 +vt 0.707929 0.721189 +vt 0.710351 0.716914 +vt 0.709403 0.719410 +vt 0.706668 0.722661 +vt 0.705782 0.725915 +vt 0.705438 0.728111 +vt 0.705545 0.729292 +vt 0.712053 0.713494 +vt 0.710299 0.713170 +vt 0.714216 0.718019 +vt 0.713089 0.713640 +vt 0.717842 0.719686 +vt 0.719347 0.729332 +vt 0.661239 0.995146 +vt 0.651933 0.979045 +vt 0.651390 0.975004 +vt 0.654228 0.988199 +vt 0.651623 0.983054 +vt 0.651695 0.979124 +vt 0.650980 0.972059 +vt 0.649717 0.959757 +vt 0.650670 0.969411 +vt 0.649477 0.954177 +vt 0.649703 0.956511 +vt 0.649038 0.947442 +vt 0.649233 0.941510 +vt 0.659679 0.746835 +vt 0.666020 0.733479 +vt 0.661170 0.737805 +vt 0.664223 0.732940 +vt 0.666583 0.729335 +vt 0.668471 0.724069 +vt 0.659553 0.749100 +vt 0.694636 0.720383 +vt 0.689701 0.723559 +vt 0.691851 0.719924 +vt 0.690084 0.721309 +vt 0.692956 0.719579 +vt 0.684948 0.730877 +vt 0.684621 0.728802 +vt 0.684460 0.732877 +vt 0.686200 0.725931 +vt 0.687708 0.723510 +vt 0.689269 0.724181 +vt 0.674560 0.739401 +vt 0.678078 0.729785 +vt 0.678154 0.725911 +vt 0.679359 0.722268 +vt 0.678226 0.731552 +vt 0.681392 0.721877 +vt 0.677305 0.736738 +vt 0.654537 0.805272 +vt 0.655511 0.806104 +vt 0.655457 0.780776 +vt 0.655796 0.777330 +vt 0.655344 0.787653 +vt 0.656736 0.766030 +vt 0.656911 0.763774 +vt 0.656441 0.768764 +vt 0.656515 0.769932 +vt 0.657501 0.760413 +vt 0.658262 0.751275 +vt 0.657943 0.754894 +vt 0.703941 0.729116 +vt 0.705126 0.727293 +vt 0.704111 0.720399 +vt 0.704983 0.729091 +vt 0.698984 0.718424 +vt 0.700089 0.716225 +vt 0.724791 0.734402 +vt 0.721866 0.731487 +vt 0.720119 0.729832 +vt 0.707987 0.719854 +vt 0.708808 0.719103 +vt 0.705709 0.723534 +vt 0.712404 0.709915 +vt 0.710916 0.710591 +vt 0.714227 0.715605 +vt 0.714828 0.719243 +vt 0.715810 0.719697 +vt 0.719843 0.720875 +vt 0.717716 0.717217 +vt 0.651682 0.977277 +vt 0.650833 0.974267 +vt 0.653113 0.987250 +vt 0.652506 0.986328 +vt 0.651985 0.984792 +vt 0.651612 0.981013 +vt 0.649335 0.962220 +vt 0.649784 0.963691 +vt 0.649885 0.965900 +vt 0.650068 0.968215 +vt 0.658939 0.745123 +vt 0.660140 0.742296 +vt 0.666166 0.731435 +vt 0.662124 0.733330 +vt 0.660268 0.739750 +vt 0.664988 0.730472 +vt 0.662694 0.729300 +vt 0.665758 0.730713 +vt 0.666204 0.727065 +vt 0.666788 0.724514 +vt 0.670307 0.722091 +vt 0.658321 0.749007 +vt 0.693270 0.718343 +vt 0.695811 0.719785 +vt 0.696753 0.721095 +vt 0.689874 0.722419 +vt 0.690832 0.720014 +vt 0.684671 0.726102 +vt 0.686152 0.723936 +vt 0.688181 0.723565 +vt 0.686979 0.721426 +vt 0.688780 0.723545 +vt 0.676041 0.737467 +vt 0.676479 0.737421 +vt 0.677364 0.735359 +vt 0.677796 0.733507 +vt 0.677472 0.727653 +vt 0.678542 0.723570 +vt 0.680151 0.722283 +vt 0.677867 0.732293 +vt 0.682754 0.720829 +vt 0.654115 0.806257 +vt 0.654802 0.806830 +vt 0.655154 0.806188 +vt 0.655378 0.782776 +vt 0.655488 0.778602 +vt 0.655427 0.784751 +vt 0.655010 0.787560 +vt 0.656779 0.763514 +vt 0.656512 0.767894 +vt 0.656101 0.772950 +vt 0.656172 0.771006 +vt 0.656978 0.760507 +vt 0.657558 0.757489 +vt 0.657063 0.758379 +vt 0.657721 0.752558 +vt 0.697758 0.720526 +vt 0.702098 0.713417 +vt 0.702888 0.715520 +vt 0.723384 0.731372 +vt 0.726867 0.737812 +vt 0.721523 0.730096 +vt 0.721263 0.729640 +vt 0.707005 0.721258 +vt 0.709200 0.716142 +vt 0.705823 0.721248 +vt 0.712985 0.711111 +vt 0.710245 0.711299 +vt 0.715306 0.717451 +vt 0.714773 0.713996 +vt 0.720089 0.727080 +vt 0.718851 0.717421 +vt 0.651280 0.976401 +vt 0.652978 0.988409 +vt 0.651541 0.984708 +vt 0.651246 0.980182 +vt 0.650232 0.969929 +vt 0.649469 0.959956 +vt 0.649551 0.958176 +vt 0.649574 0.957034 +vt 0.658877 0.747011 +vt 0.659560 0.743866 +vt 0.661019 0.731480 +vt 0.659787 0.737144 +vt 0.664009 0.730102 +vt 0.666116 0.728123 +vt 0.667447 0.722745 +vt 0.668850 0.720456 +vt 0.672223 0.723907 +vt 0.694438 0.717254 +vt 0.695807 0.717805 +vt 0.689270 0.723688 +vt 0.689348 0.723092 +vt 0.691358 0.719346 +vt 0.692633 0.717898 +vt 0.689658 0.718483 +vt 0.689155 0.721720 +vt 0.685405 0.724866 +vt 0.688169 0.722424 +vt 0.676007 0.736515 +vt 0.676716 0.736459 +vt 0.683970 0.723210 +vt 0.677424 0.729420 +vt 0.677766 0.730220 +vt 0.677429 0.725454 +vt 0.677648 0.722502 +vt 0.679583 0.720673 +vt 0.678579 0.721166 +vt 0.677611 0.731352 +vt 0.681479 0.718529 +vt 0.680471 0.719772 +vt 0.655199 0.807177 +vt 0.654994 0.780736 +vt 0.655164 0.777621 +vt 0.655499 0.774923 +vt 0.656471 0.764719 +vt 0.656336 0.766449 +vt 0.656656 0.761837 +vt 0.656199 0.769519 +vt 0.657744 0.750755 +vt 0.657159 0.752407 +vt 0.657082 0.756984 +vt 0.698402 0.716244 +vt 0.701721 0.710703 +vt 0.704415 0.714669 +vt 0.724036 0.729340 +vt 0.725830 0.733649 +vt 0.722372 0.728938 +vt 0.721032 0.727293 +vt 0.706452 0.721483 +vt 0.706940 0.719901 +vt 0.708595 0.714695 +vt 0.713897 0.711731 +vt 0.713611 0.708542 +vt 0.711304 0.708421 +vt 0.710357 0.708328 +vt 0.715419 0.715655 +vt 0.716523 0.717628 +vt 0.720622 0.724892 +vt 0.720735 0.716388 +vt 0.718706 0.715211 +vt 0.651425 0.978422 +vt 0.650162 0.974939 +vt 0.652644 0.987996 +vt 0.652638 0.987201 +vt 0.652065 0.986669 +vt 0.651729 0.986760 +vt 0.651188 0.982628 +vt 0.650008 0.971911 +vt 0.649040 0.960877 +vt 0.649550 0.966576 +vt 0.649805 0.967585 +vt 0.649902 0.969159 +vt 0.649447 0.957600 +vt 0.658994 0.743831 +vt 0.658287 0.746370 +vt 0.658734 0.740582 +vt 0.659944 0.734230 +vt 0.659277 0.738760 +vt 0.663965 0.726203 +vt 0.665105 0.726969 +vt 0.665790 0.725591 +vt 0.667785 0.721978 +vt 0.666894 0.722725 +vt 0.668093 0.720963 +vt 0.669335 0.718651 +vt 0.672103 0.720307 +vt 0.673750 0.726151 +vt 0.694519 0.714407 +vt 0.697030 0.717334 +vt 0.691324 0.718004 +vt 0.684762 0.724039 +vt 0.685092 0.721692 +vt 0.688323 0.720185 +vt 0.675648 0.735603 +vt 0.677430 0.732533 +vt 0.676366 0.730204 +vt 0.676485 0.727419 +vt 0.683352 0.719026 +vt 0.682692 0.717221 +vt 0.681139 0.719970 +vt 0.676663 0.734821 +vt 0.654242 0.811036 +vt 0.654892 0.783585 +vt 0.654980 0.781862 +vt 0.656224 0.764010 +vt 0.656130 0.768507 +vt 0.656375 0.762752 +vt 0.655650 0.770788 +vt 0.656479 0.760582 +vt 0.656596 0.759682 +vt 0.657307 0.750866 +vt 0.657507 0.748955 +vt 0.657418 0.755085 +vt 0.706391 0.717925 +vt 0.699652 0.713128 +vt 0.702289 0.710839 +vt 0.703299 0.712594 +vt 0.723352 0.728277 +vt 0.730200 0.735053 +vt 0.721718 0.728246 +vt 0.706556 0.719556 +vt 0.708353 0.715955 +vt 0.713033 0.707675 +vt 0.709129 0.710916 +vt 0.709327 0.708270 +vt 0.716549 0.714909 +vt 0.715821 0.712361 +vt 0.716018 0.714169 +vt 0.717540 0.715991 +vt 0.721572 0.722038 +vt 0.721764 0.717038 +vt 0.719531 0.714055 +vt 0.650181 0.973164 +vt 0.650446 0.976916 +vt 0.652465 0.989150 +vt 0.652342 0.987188 +vt 0.651256 0.986137 +vt 0.651143 0.984537 +vt 0.650674 0.981529 +vt 0.649873 0.970832 +vt 0.648878 0.961901 +vt 0.649205 0.957904 +vt 0.658507 0.744519 +vt 0.658519 0.742550 +vt 0.661831 0.727111 +vt 0.659965 0.731037 +vt 0.658978 0.735352 +vt 0.658423 0.737566 +vt 0.662316 0.721135 +vt 0.666325 0.722963 +vt 0.667407 0.721781 +vt 0.668245 0.719445 +vt 0.668611 0.718292 +vt 0.670282 0.718379 +vt 0.673738 0.722765 +vt 0.674560 0.729514 +vt 0.657620 0.747584 +vt 0.695513 0.714289 +vt 0.697004 0.714015 +vt 0.692171 0.715385 +vt 0.690610 0.714808 +vt 0.685669 0.717396 +vt 0.687699 0.716390 +vt 0.674049 0.735610 +vt 0.677030 0.731663 +vt 0.677014 0.722999 +vt 0.676095 0.719703 +vt 0.679203 0.719720 +vt 0.681519 0.716068 +vt 0.654448 0.810848 +vt 0.654913 0.810159 +vt 0.655967 0.766596 +vt 0.656175 0.762183 +vt 0.655450 0.767611 +vt 0.656595 0.758767 +vt 0.656762 0.751584 +vt 0.656963 0.755270 +vt 0.700633 0.707985 +vt 0.703176 0.711055 +vt 0.705575 0.715183 +vt 0.704107 0.710727 +vt 0.724214 0.725153 +vt 0.724924 0.727553 +vt 0.726116 0.725752 +vt 0.722059 0.727795 +vt 0.721882 0.726661 +vt 0.707289 0.717263 +vt 0.708090 0.714105 +vt 0.714396 0.707887 +vt 0.713495 0.707481 +vt 0.715611 0.708846 +vt 0.721335 0.724723 +vt 0.721156 0.714128 +vt 0.719773 0.712362 +vt 0.718524 0.713703 +vt 0.649912 0.973653 +vt 0.649874 0.975780 +vt 0.651186 0.987297 +vt 0.650406 0.978952 +vt 0.649736 0.972629 +vt 0.648729 0.960017 +vt 0.648728 0.963523 +vt 0.649657 0.970637 +vt 0.657793 0.745535 +vt 0.657807 0.742299 +vt 0.659921 0.728649 +vt 0.659027 0.731640 +vt 0.659288 0.733704 +vt 0.663389 0.722037 +vt 0.665501 0.723164 +vt 0.667328 0.720852 +vt 0.667723 0.719646 +vt 0.669115 0.716835 +vt 0.674840 0.719791 +vt 0.671433 0.717649 +vt 0.675249 0.722712 +vt 0.675875 0.725761 +vt 0.694884 0.712633 +vt 0.689595 0.713940 +vt 0.693338 0.713119 +vt 0.684303 0.718250 +vt 0.676391 0.733110 +vt 0.669299 0.750482 +vt 0.676599 0.718696 +vt 0.677501 0.718518 +vt 0.680202 0.718117 +vt 0.683653 0.716425 +vt 0.682197 0.714383 +vt 0.654612 0.812864 +vt 0.656178 0.759468 +vt 0.656500 0.756330 +vt 0.656981 0.748831 +vt 0.657173 0.747637 +vt 0.656924 0.752669 +vt 0.656864 0.750175 +vt 0.697141 0.709949 +vt 0.703117 0.708554 +vt 0.697902 0.706886 +vt 0.705327 0.712006 +vt 0.706302 0.716537 +vt 0.704579 0.712442 +vt 0.722906 0.725454 +vt 0.724184 0.722230 +vt 0.728646 0.729075 +vt 0.713262 0.706390 +vt 0.707914 0.710563 +vt 0.716569 0.712654 +vt 0.717067 0.709876 +vt 0.717350 0.713301 +vt 0.722014 0.719499 +vt 0.721971 0.724562 +vt 0.722259 0.713882 +vt 0.719486 0.711841 +vt 0.650131 0.977536 +vt 0.651886 0.989109 +vt 0.650795 0.985506 +vt 0.651539 0.988491 +vt 0.650034 0.981485 +vt 0.648448 0.960977 +vt 0.648540 0.966295 +vt 0.658002 0.743708 +vt 0.657809 0.740135 +vt 0.658092 0.739190 +vt 0.659663 0.725467 +vt 0.661649 0.722658 +vt 0.659235 0.729968 +vt 0.658147 0.735319 +vt 0.658554 0.733616 +vt 0.662648 0.718387 +vt 0.665708 0.720981 +vt 0.666494 0.718481 +vt 0.667830 0.718287 +vt 0.667946 0.715553 +vt 0.670289 0.715831 +vt 0.673185 0.717682 +vt 0.657189 0.746308 +vt 0.695625 0.711008 +vt 0.692256 0.711606 +vt 0.690382 0.711367 +vt 0.686408 0.715518 +vt 0.684434 0.716115 +vt 0.676180 0.722488 +vt 0.675820 0.717009 +vt 0.678291 0.717339 +vt 0.679136 0.716376 +vt 0.683132 0.715062 +vt 0.681177 0.714132 +vt 0.655780 0.763689 +vt 0.656611 0.753077 +vt 0.656353 0.750278 +vt 0.656492 0.755532 +vt 0.706843 0.715393 +vt 0.725221 0.720440 +vt 0.725415 0.724431 +vt 0.730507 0.731599 +vt 0.728244 0.725420 +vt 0.714657 0.705248 +vt 0.713637 0.704233 +vt 0.707033 0.706351 +vt 0.716427 0.706148 +vt 0.722709 0.718438 +vt 0.722699 0.722784 +vt 0.720558 0.711213 +vt 0.722153 0.711470 +vt 0.723993 0.714513 +vt 0.719467 0.710222 +vt 0.717160 0.712113 +vt 0.718607 0.711127 +vt 0.649803 0.976659 +vt 0.650918 0.989072 +vt 0.651387 0.989858 +vt 0.649765 0.979271 +vt 0.649401 0.972910 +vt 0.648380 0.962646 +vt 0.648905 0.968432 +vt 0.657355 0.742407 +vt 0.657398 0.739767 +vt 0.657693 0.738254 +vt 0.660763 0.723449 +vt 0.659271 0.726642 +vt 0.661390 0.720732 +vt 0.659382 0.728186 +vt 0.658946 0.730489 +vt 0.657660 0.736694 +vt 0.663890 0.717636 +vt 0.661949 0.719494 +vt 0.668388 0.712771 +vt 0.670063 0.713916 +vt 0.673306 0.714325 +vt 0.671639 0.715926 +vt 0.694828 0.710910 +vt 0.693989 0.711509 +vt 0.687247 0.713239 +vt 0.689353 0.710977 +vt 0.693042 0.709256 +vt 0.685670 0.714564 +vt 0.684994 0.715352 +vt 0.676787 0.716675 +vt 0.675277 0.716606 +vt 0.677744 0.715789 +vt 0.683747 0.715044 +vt 0.680390 0.715070 +vt 0.681587 0.712252 +vt 0.683034 0.713523 +vt 0.655962 0.759201 +vt 0.656253 0.756754 +vt 0.656816 0.747548 +vt 0.656605 0.749029 +vt 0.656310 0.752823 +vt 0.704923 0.708383 +vt 0.706046 0.710695 +vt 0.724775 0.718916 +vt 0.727164 0.722762 +vt 0.731627 0.733513 +vt 0.730029 0.725934 +vt 0.729697 0.725254 +vt 0.707402 0.710548 +vt 0.717341 0.707024 +vt 0.723443 0.720253 +vt 0.723685 0.717077 +vt 0.723160 0.712339 +vt 0.649616 0.975474 +vt 0.650328 0.985209 +vt 0.649694 0.981358 +vt 0.648216 0.965556 +vt 0.648576 0.969551 +vt 0.659502 0.723667 +vt 0.658835 0.725295 +vt 0.658758 0.728896 +vt 0.658102 0.731982 +vt 0.658431 0.730677 +vt 0.657520 0.734993 +vt 0.657962 0.733796 +vt 0.662674 0.717107 +vt 0.661668 0.717629 +vt 0.665056 0.718545 +vt 0.666010 0.715689 +vt 0.671729 0.714396 +vt 0.656928 0.744078 +vt 0.695424 0.708730 +vt 0.694483 0.711537 +vt 0.691164 0.709039 +vt 0.688001 0.710761 +vt 0.690204 0.709192 +vt 0.691844 0.705864 +vt 0.684489 0.714919 +vt 0.683975 0.715637 +vt 0.676095 0.714996 +vt 0.683548 0.714037 +vt 0.680306 0.713831 +vt 0.682566 0.712207 +vt 0.680903 0.712858 +vt 0.679165 0.714373 +vt 0.655405 0.761095 +vt 0.656721 0.745887 +vt 0.656242 0.754857 +vt 0.656275 0.746884 +vt 0.655976 0.752406 +vt 0.656001 0.756325 +vt 0.725417 0.718487 +vt 0.725651 0.720670 +vt 0.726103 0.721009 +vt 0.731752 0.730449 +vt 0.732250 0.736279 +vt 0.730443 0.726413 +vt 0.728682 0.720935 +vt 0.714380 0.703208 +vt 0.715593 0.703559 +vt 0.706063 0.707187 +vt 0.717119 0.703160 +vt 0.718443 0.707415 +vt 0.721145 0.709614 +vt 0.722561 0.708983 +vt 0.724956 0.716259 +vt 0.724164 0.712443 +vt 0.649682 0.978465 +vt 0.650214 0.990107 +vt 0.649920 0.982949 +vt 0.657014 0.742379 +vt 0.657356 0.737470 +vt 0.657148 0.738629 +vt 0.659942 0.721538 +vt 0.658716 0.727261 +vt 0.658403 0.729613 +vt 0.657127 0.736976 +vt 0.663576 0.714947 +vt 0.665721 0.712200 +vt 0.669454 0.711053 +vt 0.671966 0.711703 +vt 0.672700 0.713083 +vt 0.674498 0.713400 +vt 0.694509 0.711192 +vt 0.694663 0.709559 +vt 0.694234 0.710395 +vt 0.687304 0.710716 +vt 0.689234 0.709416 +vt 0.685935 0.712851 +vt 0.685048 0.713566 +vt 0.684140 0.715143 +vt 0.675743 0.712911 +vt 0.684131 0.714203 +vt 0.682170 0.710846 +vt 0.680822 0.711753 +vt 0.683406 0.712220 +vt 0.684015 0.713136 +vt 0.656525 0.747375 +vt 0.655953 0.748926 +vt 0.725853 0.719259 +vt 0.725585 0.717700 +vt 0.726805 0.719567 +vt 0.732072 0.727444 +vt 0.732513 0.732456 +vt 0.731210 0.720058 +vt 0.732194 0.724177 +vt 0.730268 0.720148 +vt 0.717944 0.705814 +vt 0.719910 0.707649 +vt 0.724233 0.709863 +vt 0.725009 0.713996 +vt 0.649974 0.987479 +vt 0.649508 0.983970 +vt 0.649716 0.982724 +vt 0.649473 0.980867 +vt 0.648869 0.976199 +vt 0.648207 0.970295 +vt 0.656873 0.740747 +vt 0.658786 0.723817 +vt 0.659233 0.722044 +vt 0.657994 0.726383 +vt 0.660219 0.719633 +vt 0.658223 0.728421 +vt 0.657637 0.731852 +vt 0.657858 0.730767 +vt 0.657009 0.735274 +vt 0.664633 0.714873 +vt 0.662450 0.715550 +vt 0.667517 0.709562 +vt 0.670649 0.711870 +vt 0.656682 0.743117 +vt 0.694201 0.707567 +vt 0.690682 0.707704 +vt 0.686681 0.711823 +vt 0.687915 0.709576 +vt 0.689745 0.707565 +vt 0.677627 0.713659 +vt 0.679818 0.712387 +vt 0.680268 0.712644 +vt 0.681260 0.709974 +vt 0.682607 0.711131 +vt 0.683110 0.710979 +vt 0.655617 0.746519 +vt 0.726450 0.717375 +vt 0.733057 0.729542 +vt 0.733182 0.734811 +vt 0.732720 0.722068 +vt 0.728518 0.716741 +vt 0.714914 0.701068 +vt 0.716010 0.701939 +vt 0.717806 0.703241 +vt 0.719063 0.705059 +vt 0.721998 0.705849 +vt 0.720857 0.706369 +vt 0.723707 0.707229 +vt 0.726150 0.715782 +vt 0.724773 0.712406 +vt 0.724405 0.710987 +vt 0.719293 0.706479 +vt 0.650017 0.990099 +vt 0.649515 0.982483 +vt 0.649211 0.980435 +vt 0.648478 0.972319 +vt 0.656660 0.740776 +vt 0.658213 0.723991 +vt 0.658717 0.722463 +vt 0.659303 0.720720 +vt 0.660605 0.716417 +vt 0.657183 0.733605 +vt 0.656644 0.737267 +vt 0.661341 0.714089 +vt 0.664181 0.711348 +vt 0.662550 0.712804 +vt 0.665518 0.707794 +vt 0.668419 0.708314 +vt 0.670709 0.708233 +vt 0.673015 0.711152 +vt 0.672991 0.708678 +vt 0.673681 0.711993 +vt 0.674889 0.711904 +vt 0.656360 0.745393 +vt 0.689898 0.706263 +vt 0.686861 0.710355 +vt 0.688802 0.708181 +vt 0.685308 0.712189 +vt 0.686068 0.711270 +vt 0.684624 0.713102 +vt 0.676255 0.709273 +vt 0.679236 0.711482 +vt 0.682433 0.709045 +vt 0.682655 0.710390 +vt 0.680214 0.711026 +vt 0.684076 0.710986 +vt 0.684123 0.711991 +vt 0.732932 0.726462 +vt 0.733337 0.731732 +vt 0.732774 0.718478 +vt 0.730519 0.715514 +vt 0.733269 0.723885 +vt 0.727358 0.716173 +vt 0.729436 0.715863 +vt 0.713282 0.697915 +vt 0.715353 0.700748 +vt 0.717023 0.701275 +vt 0.718357 0.702541 +vt 0.723025 0.706487 +vt 0.719907 0.706028 +vt 0.724538 0.706822 +vt 0.726081 0.713960 +vt 0.725442 0.712212 +vt 0.724750 0.709502 +vt 0.649735 0.988185 +vt 0.649540 0.985395 +vt 0.649293 0.983027 +vt 0.648856 0.979877 +vt 0.648281 0.973296 +vt 0.648460 0.975477 +vt 0.656732 0.738939 +vt 0.658940 0.721683 +vt 0.657631 0.728604 +vt 0.657640 0.724926 +vt 0.660052 0.716743 +vt 0.659690 0.718905 +vt 0.656544 0.735486 +vt 0.666420 0.706632 +vt 0.667938 0.705693 +vt 0.675213 0.710304 +vt 0.656261 0.743442 +vt 0.656416 0.742465 +vt 0.690466 0.702506 +vt 0.687002 0.707801 +vt 0.687870 0.706987 +vt 0.687620 0.705558 +vt 0.677860 0.709630 +vt 0.681701 0.706817 +vt 0.679953 0.707987 +vt 0.683572 0.709777 +vt 0.684644 0.711157 +vt 0.733907 0.727239 +vt 0.733806 0.730505 +vt 0.731855 0.713828 +vt 0.727107 0.714305 +vt 0.728503 0.712425 +vt 0.715157 0.699148 +vt 0.719863 0.703844 +vt 0.723008 0.704297 +vt 0.721273 0.704822 +vt 0.720562 0.704907 +vt 0.723742 0.704803 +vt 0.725114 0.711271 +vt 0.649445 0.988874 +vt 0.649402 0.984479 +vt 0.648976 0.982291 +vt 0.648597 0.978779 +vt 0.656094 0.741082 +vt 0.658106 0.722245 +vt 0.658765 0.721363 +vt 0.657659 0.723112 +vt 0.660420 0.714077 +vt 0.660140 0.715874 +vt 0.659753 0.717577 +vt 0.659062 0.719908 +vt 0.656105 0.737866 +vt 0.661745 0.711307 +vt 0.662446 0.711897 +vt 0.664952 0.705858 +vt 0.665955 0.705032 +vt 0.669124 0.705139 +vt 0.671560 0.704831 +vt 0.674257 0.709853 +vt 0.688197 0.703975 +vt 0.685014 0.711435 +vt 0.675299 0.708671 +vt 0.677935 0.703383 +vt 0.682863 0.706925 +vt 0.683018 0.709757 +vt 0.684332 0.708547 +vt 0.733652 0.725444 +vt 0.729894 0.713328 +vt 0.716184 0.697815 +vt 0.716431 0.699447 +vt 0.717057 0.698550 +vt 0.718870 0.699632 +vt 0.722209 0.703222 +vt 0.721122 0.702812 +vt 0.724777 0.704669 +vt 0.725055 0.707751 +vt 0.726662 0.713601 +vt 0.726331 0.710921 +vt 0.725604 0.708751 +vt 0.649318 0.986727 +vt 0.649329 0.985579 +vt 0.649089 0.984549 +vt 0.648680 0.982299 +vt 0.648550 0.980770 +vt 0.648150 0.976066 +vt 0.648344 0.977910 +vt 0.658431 0.721242 +vt 0.658740 0.720652 +vt 0.657285 0.724633 +vt 0.660409 0.710332 +vt 0.659613 0.716517 +vt 0.658895 0.718810 +vt 0.663518 0.708448 +vt 0.667221 0.703736 +vt 0.673577 0.706329 +vt 0.673814 0.708180 +vt 0.674855 0.709297 +vt 0.685933 0.709228 +vt 0.686859 0.706639 +vt 0.685049 0.710173 +vt 0.675910 0.708032 +vt 0.676086 0.706436 +vt 0.678605 0.705523 +vt 0.682204 0.705403 +vt 0.683353 0.708313 +vt 0.680754 0.705610 +vt 0.734174 0.723647 +vt 0.727089 0.711036 +vt 0.727174 0.708165 +vt 0.720477 0.702750 +vt 0.723401 0.701376 +vt 0.725585 0.706553 +vt 0.649054 0.985919 +vt 0.648774 0.983050 +vt 0.648385 0.980197 +vt 0.648465 0.979088 +vt 0.658014 0.721062 +vt 0.657809 0.721899 +vt 0.657154 0.723022 +vt 0.659649 0.710193 +vt 0.659905 0.714302 +vt 0.658444 0.719991 +vt 0.662303 0.710018 +vt 0.663527 0.704427 +vt 0.670255 0.699472 +vt 0.673620 0.702956 +vt 0.674705 0.708118 +vt 0.686831 0.704498 +vt 0.685996 0.707604 +vt 0.675445 0.707265 +vt 0.676480 0.703446 +vt 0.678751 0.702957 +vt 0.679897 0.703676 +vt 0.681344 0.703943 +vt 0.683865 0.705471 +vt 0.685253 0.708405 +vt 0.729529 0.707672 +vt 0.717376 0.698146 +vt 0.720088 0.699422 +vt 0.725284 0.702574 +vt 0.724475 0.700770 +vt 0.721877 0.699798 +vt 0.721377 0.698795 +vt 0.725985 0.704652 +vt 0.648847 0.986226 +vt 0.648863 0.984949 +vt 0.648617 0.983768 +vt 0.648425 0.982158 +vt 0.648249 0.981659 +vt 0.648034 0.978597 +vt 0.648288 0.979410 +vt 0.657477 0.720539 +vt 0.659809 0.708528 +vt 0.659147 0.713830 +vt 0.658271 0.718635 +vt 0.658887 0.717041 +vt 0.661529 0.706686 +vt 0.662571 0.707732 +vt 0.662484 0.704812 +vt 0.672694 0.699917 +vt 0.674417 0.704351 +vt 0.674105 0.707314 +vt 0.675635 0.705733 +vt 0.677667 0.702180 +vt 0.678172 0.701699 +vt 0.682499 0.702858 +vt 0.685138 0.706344 +vt 0.727084 0.704813 +vt 0.717140 0.697128 +vt 0.718060 0.698028 +vt 0.719205 0.698029 +vt 0.648488 0.983926 +vt 0.648120 0.981598 +vt 0.647829 0.977190 +vt 0.657838 0.718914 +vt 0.657102 0.720410 +vt 0.660168 0.707402 +vt 0.659313 0.709079 +vt 0.660543 0.706056 +vt 0.662590 0.701833 +vt 0.674310 0.703273 +vt 0.674522 0.706689 +vt 0.675222 0.706041 +vt 0.675891 0.703726 +vt 0.677472 0.701122 +vt 0.679013 0.700801 +vt 0.681707 0.701748 +vt 0.684269 0.704179 +vt 0.680669 0.701471 +vt 0.730449 0.705342 +vt 0.726282 0.702142 +vt 0.725623 0.700934 +vt 0.648672 0.984920 +vt 0.648088 0.983569 +vt 0.648260 0.983265 +vt 0.648229 0.980662 +vt 0.648017 0.980625 +vt 0.656355 0.720374 +vt 0.657581 0.716419 +vt 0.659229 0.711670 +vt 0.659588 0.707465 +vt 0.658898 0.710330 +vt 0.658685 0.715250 +vt 0.658347 0.717081 +vt 0.661742 0.702050 +vt 0.674334 0.702386 +vt 0.675049 0.703774 +vt 0.674853 0.704766 +vt 0.685952 0.703750 +vt 0.676418 0.702568 +vt 0.675432 0.704571 +vt 0.676745 0.701021 +vt 0.679878 0.701409 +vt 0.678033 0.700145 +vt 0.682452 0.700978 +vt 0.648159 0.981106 +vt 0.656736 0.718481 +vt 0.657210 0.717064 +vt 0.658774 0.712822 +vt 0.659784 0.705685 +vt 0.659756 0.706698 +vt 0.658854 0.708861 +vt 0.659054 0.707250 +vt 0.658532 0.713998 +vt 0.657847 0.717119 +vt 0.660349 0.702816 +vt 0.660782 0.700098 +vt 0.675788 0.702474 +vt 0.676682 0.698409 +vt 0.680378 0.699473 +vt 0.677499 0.697492 +vt 0.681411 0.700446 +vt 0.683003 0.701165 +vt 0.656352 0.718584 +vt 0.657917 0.713108 +vt 0.658630 0.711219 +vt 0.659832 0.703970 +vt 0.659530 0.706432 +vt 0.658284 0.709818 +vt 0.658180 0.715452 +vt 0.660113 0.701683 +vt 0.676141 0.699933 +vt 0.682413 0.699900 +vt 0.656681 0.715075 +vt 0.657253 0.713398 +vt 0.658185 0.713421 +vt 0.659419 0.704564 +vt 0.658971 0.704914 +vt 0.658292 0.709168 +vt 0.659318 0.705767 +vt 0.659643 0.702315 +vt 0.659643 0.699760 +vt 0.657756 0.710648 +vt 0.658116 0.710595 +vt 0.659446 0.701230 +vt 0.656894 0.711007 +vt 0.657327 0.710004 +vt 0.659261 0.702807 +vt 0.658560 0.705197 +vt 0.659157 0.702235 +vt 0.659040 0.701188 +vt 0.658081 0.707234 +vt 0.659004 0.703412 +vt 0.658888 0.699832 +vt 0.657459 0.707658 +vt 0.658287 0.703884 +vt 0.658680 0.702331 +vt 0.658378 0.699997 +vt 0.657703 0.704893 +vt 0.657968 0.700175 +vt 0.868007 0.818134 +vt 0.869326 0.816616 +vt 0.869453 0.818121 +vt 0.868922 0.814847 +vt 0.870368 0.816873 +vt 0.868905 0.820740 +vt 0.867434 0.814720 +vt 0.870164 0.814945 +vt 0.870561 0.817939 +vt 0.869910 0.819697 +vt 0.867703 0.821093 +vt 0.866083 0.817777 +vt 0.869330 0.810757 +vt 0.870228 0.812170 +vt 0.871290 0.813469 +vt 0.871277 0.818515 +vt 0.869945 0.821515 +vt 0.866544 0.820569 +vt 0.867970 0.823538 +vt 0.865420 0.814035 +vt 0.868519 0.809294 +vt 0.870575 0.819988 +vt 0.869085 0.823106 +vt 0.866200 0.823069 +vt 0.865047 0.821464 +vt 0.863895 0.818669 +vt 0.864121 0.808793 +vt 0.867195 0.807695 +vt 0.870011 0.807385 +vt 0.870699 0.809389 +vt 0.871771 0.810113 +vt 0.872961 0.811524 +vt 0.871061 0.821856 +vt 0.869412 0.826735 +vt 0.866513 0.826905 +vt 0.867256 0.830696 +vt 0.863017 0.814807 +vt 0.868281 0.807171 +vt 0.872440 0.817616 +vt 0.868398 0.828198 +vt 0.865570 0.824109 +vt 0.861698 0.821941 +vt 0.861167 0.818708 +vt 0.865799 0.799120 +vt 0.868586 0.803381 +vt 0.869534 0.804565 +vt 0.871773 0.807059 +vt 0.872615 0.808202 +vt 0.874777 0.816841 +vt 0.871417 0.827773 +vt 0.870152 0.827085 +vt 0.868161 0.831248 +vt 0.863850 0.826966 +vt 0.864628 0.831929 +vt 0.865347 0.827931 +vt 0.860465 0.829131 +vt 0.861402 0.800006 +vt 0.867948 0.799426 +vt 0.871567 0.802502 +vt 0.873582 0.805800 +vt 0.875248 0.808322 +vt 0.873675 0.824910 +vt 0.869027 0.830798 +vt 0.865649 0.836186 +vt 0.867503 0.832793 +vt 0.864066 0.792347 +vt 0.866953 0.791747 +vt 0.870354 0.801757 +vt 0.869532 0.799172 +vt 0.872437 0.804399 +vt 0.875989 0.809530 +vt 0.875961 0.818634 +vt 0.870262 0.831753 +vt 0.872470 0.830806 +vt 0.868398 0.834069 +vt 0.863438 0.831877 +vt 0.862711 0.829699 +vt 0.863476 0.834394 +vt 0.867139 0.835397 +vt 0.869111 0.793221 +vt 0.871060 0.798928 +vt 0.872314 0.802473 +vt 0.876942 0.802688 +vt 0.877636 0.808131 +vt 0.876770 0.806181 +vt 0.876080 0.816193 +vt 0.876054 0.820574 +vt 0.871941 0.832547 +vt 0.873214 0.829286 +vt 0.864850 0.840196 +vt 0.866829 0.837611 +vt 0.867247 0.788126 +vt 0.868591 0.789949 +vt 0.870483 0.796206 +vt 0.872360 0.798445 +vt 0.873179 0.802455 +vt 0.872929 0.800292 +vt 0.874450 0.799301 +vt 0.877673 0.817917 +vt 0.874610 0.825238 +vt 0.870109 0.838589 +vt 0.872893 0.832789 +vt 0.868525 0.839940 +vt 0.861191 0.833685 +vt 0.866044 0.838325 +vt 0.863947 0.841200 +vt 0.867696 0.837259 +vt 0.865331 0.781586 +vt 0.869701 0.788408 +vt 0.871367 0.792979 +vt 0.871792 0.796098 +vt 0.877684 0.792564 +vt 0.877800 0.812412 +vt 0.876508 0.823806 +vt 0.872075 0.836674 +vt 0.873966 0.830644 +vt 0.858243 0.830192 +vt 0.866133 0.840403 +vt 0.865492 0.842946 +vt 0.861503 0.838446 +vt 0.867128 0.838694 +vt 0.869297 0.783130 +vt 0.868310 0.780957 +vt 0.870895 0.790184 +vt 0.873214 0.795195 +vt 0.873673 0.797264 +vt 0.878892 0.800845 +vt 0.874914 0.793381 +vt 0.879052 0.806503 +vt 0.880126 0.812468 +vt 0.878368 0.823952 +vt 0.868362 0.844144 +vt 0.873619 0.835852 +vt 0.874377 0.832083 +vt 0.867398 0.839955 +vt 0.859222 0.837832 +vt 0.864872 0.845672 +vt 0.862970 0.844608 +vt 0.867817 0.777460 +vt 0.870400 0.783329 +vt 0.871772 0.786045 +vt 0.872498 0.789764 +vt 0.873352 0.790678 +vt 0.880225 0.789400 +vt 0.876901 0.787238 +vt 0.875903 0.833075 +vt 0.870935 0.842636 +vt 0.866804 0.845303 +vt 0.872402 0.838991 +vt 0.858072 0.835090 +vt 0.866373 0.843359 +vt 0.865812 0.844665 +vt 0.861267 0.843405 +vt 0.870508 0.773607 +vt 0.871847 0.780312 +vt 0.879698 0.785854 +vt 0.880306 0.796045 +vt 0.880049 0.804544 +vt 0.874721 0.788880 +vt 0.882957 0.813848 +vt 0.877536 0.833763 +vt 0.867573 0.848077 +vt 0.873526 0.839019 +vt 0.856304 0.842664 +vt 0.865840 0.846754 +vt 0.863599 0.848608 +vt 0.861934 0.847816 +vt 0.858068 0.842278 +vt 0.869529 0.771512 +vt 0.873708 0.786898 +vt 0.881223 0.786056 +vt 0.881237 0.792159 +vt 0.875375 0.784455 +vt 0.880490 0.779733 +vt 0.881741 0.807317 +vt 0.882453 0.822645 +vt 0.875274 0.837395 +vt 0.879143 0.830161 +vt 0.867519 0.852468 +vt 0.872726 0.840310 +vt 0.866487 0.848182 +vt 0.865185 0.848870 +vt 0.860885 0.847144 +vt 0.858556 0.846326 +vt 0.871353 0.774964 +vt 0.871753 0.764492 +vt 0.866140 0.771663 +vt 0.873245 0.782611 +vt 0.881861 0.802019 +vt 0.877561 0.780880 +vt 0.887222 0.809659 +vt 0.883437 0.804753 +vt 0.877419 0.838717 +vt 0.866331 0.852225 +vt 0.870577 0.848081 +vt 0.872219 0.843441 +vt 0.873733 0.841147 +vt 0.856926 0.843590 +vt 0.863047 0.852238 +vt 0.864070 0.852583 +vt 0.858552 0.854604 +vt 0.872446 0.770914 +vt 0.873173 0.777877 +vt 0.872189 0.767412 +vt 0.868133 0.769329 +vt 0.872892 0.780232 +vt 0.874296 0.784658 +vt 0.882285 0.791324 +vt 0.882719 0.779733 +vt 0.882180 0.800637 +vt 0.875975 0.779246 +vt 0.881100 0.771970 +vt 0.887731 0.815236 +vt 0.885935 0.809569 +vt 0.887355 0.830247 +vt 0.883969 0.808841 +vt 0.875304 0.842121 +vt 0.879603 0.845434 +vt 0.865805 0.855354 +vt 0.870282 0.853598 +vt 0.872809 0.842491 +vt 0.865719 0.851779 +vt 0.856049 0.847841 +vt 0.861118 0.854598 +vt 0.865072 0.851810 +vt 0.858402 0.849436 +vt 0.857437 0.846677 +vt 0.873102 0.774551 +vt 0.872548 0.764965 +vt 0.871272 0.759031 +vt 0.873947 0.780522 +vt 0.874480 0.782334 +vt 0.881899 0.785837 +vt 0.882720 0.770745 +vt 0.882918 0.799496 +vt 0.877623 0.772550 +vt 0.878875 0.768764 +vt 0.889685 0.808619 +vt 0.886605 0.804072 +vt 0.884922 0.804781 +vt 0.866012 0.858272 +vt 0.865209 0.853879 +vt 0.872359 0.846662 +vt 0.867520 0.859522 +vt 0.873107 0.849643 +vt 0.873052 0.844323 +vt 0.873811 0.843083 +vt 0.862789 0.855442 +vt 0.858632 0.859766 +vt 0.854959 0.853476 +vt 0.873878 0.771768 +vt 0.873527 0.768881 +vt 0.874083 0.778555 +vt 0.873919 0.775254 +vt 0.873448 0.765373 +vt 0.883370 0.783910 +vt 0.885316 0.771460 +vt 0.874890 0.779612 +vt 0.876606 0.774385 +vt 0.880574 0.763607 +vt 0.882301 0.765004 +vt 0.883804 0.800500 +vt 0.888134 0.807954 +vt 0.891627 0.808628 +vt 0.891147 0.813744 +vt 0.887073 0.799894 +vt 0.884550 0.848632 +vt 0.884755 0.800063 +vt 0.874722 0.849342 +vt 0.865187 0.857961 +vt 0.864529 0.856138 +vt 0.869283 0.862842 +vt 0.872443 0.855730 +vt 0.874008 0.846141 +vt 0.862139 0.861467 +vt 0.860546 0.864774 +vt 0.857072 0.859611 +vt 0.874435 0.773712 +vt 0.874055 0.777593 +vt 0.873051 0.755892 +vt 0.874140 0.762737 +vt 0.874359 0.778898 +vt 0.883686 0.792889 +vt 0.885718 0.778478 +vt 0.885557 0.766118 +vt 0.875394 0.778405 +vt 0.877553 0.765484 +vt 0.876316 0.770156 +vt 0.875581 0.776692 +vt 0.879216 0.762106 +vt 0.881458 0.764432 +vt 0.883599 0.763806 +vt 0.887972 0.800296 +vt 0.889839 0.804970 +vt 0.893413 0.804303 +vt 0.893733 0.815874 +vt 0.885987 0.799655 +vt 0.890190 0.851766 +vt 0.881585 0.866689 +vt 0.875395 0.855745 +vt 0.865408 0.863303 +vt 0.864880 0.861952 +vt 0.870701 0.858883 +vt 0.866775 0.866331 +vt 0.863717 0.858237 +vt 0.859427 0.864916 +vt 0.857594 0.863651 +vt 0.853916 0.861258 +vt 0.875089 0.770788 +vt 0.874554 0.765153 +vt 0.874696 0.775749 +vt 0.874225 0.760039 +vt 0.884677 0.789503 +vt 0.885551 0.782736 +vt 0.887522 0.769587 +vt 0.887049 0.777178 +vt 0.875652 0.773770 +vt 0.880822 0.757840 +vt 0.881725 0.759799 +vt 0.882448 0.760418 +vt 0.882010 0.761785 +vt 0.885416 0.792430 +vt 0.888685 0.801952 +vt 0.891359 0.803915 +vt 0.894417 0.805728 +vt 0.894022 0.808840 +vt 0.896513 0.825583 +vt 0.886193 0.794963 +vt 0.886731 0.792587 +vt 0.864644 0.857759 +vt 0.872262 0.860963 +vt 0.868182 0.870802 +vt 0.861732 0.868059 +vt 0.863967 0.861858 +vt 0.860337 0.872540 +vt 0.855541 0.863375 +vt 0.874937 0.757889 +vt 0.875562 0.761456 +vt 0.886794 0.781863 +vt 0.885014 0.759733 +vt 0.887084 0.763472 +vt 0.878340 0.761189 +vt 0.875824 0.765168 +vt 0.879487 0.757890 +vt 0.884142 0.761325 +vt 0.891379 0.791398 +vt 0.890583 0.800922 +vt 0.895335 0.802522 +vt 0.892925 0.801945 +vt 0.896257 0.807035 +vt 0.897220 0.809513 +vt 0.896856 0.837653 +vt 0.885951 0.866352 +vt 0.872922 0.871916 +vt 0.864177 0.865410 +vt 0.865493 0.868452 +vt 0.870135 0.874114 +vt 0.867611 0.878855 +vt 0.864804 0.878297 +vt 0.863765 0.863418 +vt 0.857541 0.866523 +vt 0.858380 0.872415 +vt 0.853443 0.868433 +vt 0.889763 0.763239 +vt 0.887975 0.773329 +vt 0.887733 0.778497 +vt 0.877759 0.760757 +vt 0.882644 0.755006 +vt 0.884366 0.757434 +vt 0.892419 0.798562 +vt 0.896254 0.804797 +vt 0.894599 0.798272 +vt 0.900949 0.807468 +vt 0.888825 0.781141 +vt 0.896603 0.843348 +vt 0.900001 0.832454 +vt 0.887610 0.867173 +vt 0.884907 0.873101 +vt 0.876738 0.883112 +vt 0.864707 0.866840 +vt 0.866663 0.883528 +vt 0.865229 0.881519 +vt 0.862486 0.870840 +vt 0.860177 0.874848 +vt 0.876599 0.759193 +vt 0.885637 0.756269 +vt 0.889411 0.771501 +vt 0.878290 0.757826 +vt 0.882405 0.758436 +vt 0.897797 0.801082 +vt 0.897176 0.794679 +vt 0.897527 0.804200 +vt 0.898789 0.804048 +vt 0.902886 0.818835 +vt 0.892654 0.776295 +vt 0.895001 0.850562 +vt 0.901423 0.826565 +vt 0.889593 0.860166 +vt 0.886143 0.870909 +vt 0.883715 0.876528 +vt 0.871108 0.885227 +vt 0.880810 0.879847 +vt 0.863469 0.872229 +vt 0.864485 0.868958 +vt 0.864613 0.875369 +vt 0.868744 0.883413 +vt 0.869843 0.882906 +vt 0.863704 0.882960 +vt 0.862206 0.874717 +vt 0.857741 0.877649 +vt 0.892688 0.764558 +vt 0.883894 0.755622 +vt 0.895036 0.793629 +vt 0.897168 0.799139 +vt 0.896591 0.793627 +vt 0.901307 0.797079 +vt 0.904988 0.812651 +vt 0.898288 0.782084 +vt 0.892200 0.855086 +vt 0.897942 0.844033 +vt 0.901110 0.836940 +vt 0.902565 0.831406 +vt 0.889011 0.866343 +vt 0.890833 0.857967 +vt 0.886738 0.871662 +vt 0.882324 0.876594 +vt 0.885480 0.877167 +vt 0.873775 0.895217 +vt 0.880336 0.884702 +vt 0.864824 0.869866 +vt 0.863685 0.877497 +vt 0.868494 0.887535 +vt 0.864342 0.886601 +vt 0.862833 0.881683 +vt 0.860902 0.882443 +vt 0.862491 0.878924 +vt 0.892129 0.756748 +vt 0.898881 0.796812 +vt 0.897155 0.790390 +vt 0.903289 0.797127 +vt 0.900140 0.796543 +vt 0.904847 0.819657 +vt 0.905630 0.803278 +vt 0.903652 0.824805 +vt 0.896250 0.767703 +vt 0.892467 0.857127 +vt 0.898141 0.848729 +vt 0.889868 0.862746 +vt 0.888470 0.869657 +vt 0.887992 0.871301 +vt 0.882904 0.881912 +vt 0.885137 0.881158 +vt 0.870415 0.894397 +vt 0.875746 0.892948 +vt 0.877940 0.889332 +vt 0.863577 0.874763 +vt 0.864419 0.872682 +vt 0.866350 0.895109 +vt 0.864219 0.894683 +vt 0.862600 0.886798 +vt 0.862583 0.883651 +vt 0.858819 0.886730 +vt 0.896839 0.753263 +vt 0.898219 0.788992 +vt 0.899441 0.793245 +vt 0.903169 0.792928 +vt 0.900708 0.793298 +vt 0.906076 0.816583 +vt 0.905739 0.808788 +vt 0.901526 0.763073 +vt 0.893605 0.856975 +vt 0.900363 0.843588 +vt 0.905811 0.823836 +vt 0.890278 0.865744 +vt 0.889291 0.869847 +vt 0.891252 0.860918 +vt 0.887371 0.875121 +vt 0.885924 0.879305 +vt 0.887073 0.876251 +vt 0.872269 0.897506 +vt 0.868116 0.893989 +vt 0.875537 0.896543 +vt 0.879645 0.891587 +vt 0.882190 0.885846 +vt 0.862710 0.890752 +vt 0.861385 0.882775 +vt 0.860792 0.885259 +vt 0.855013 0.890294 +vt 0.898885 0.790795 +vt 0.905815 0.791446 +vt 0.901907 0.790979 +vt 0.904744 0.790081 +vt 0.906949 0.809608 +vt 0.902410 0.773633 +vt 0.891186 0.868144 +vt 0.899766 0.850553 +vt 0.895776 0.856120 +vt 0.903084 0.839492 +vt 0.887895 0.875417 +vt 0.884568 0.885713 +vt 0.886832 0.882156 +vt 0.870655 0.899540 +vt 0.872604 0.899812 +vt 0.868005 0.897795 +vt 0.877607 0.892093 +vt 0.874614 0.899114 +vt 0.864790 0.896994 +vt 0.866528 0.897182 +vt 0.861002 0.894976 +vt 0.861593 0.885326 +vt 0.861420 0.890951 +vt 0.860252 0.887220 +vt 0.855025 0.892958 +vt 0.899100 0.788005 +vt 0.899850 0.790293 +vt 0.908869 0.794570 +vt 0.902703 0.788700 +vt 0.904470 0.786052 +vt 0.907985 0.811547 +vt 0.907639 0.820668 +vt 0.909162 0.803533 +vt 0.903871 0.767442 +vt 0.901672 0.778763 +vt 0.901846 0.750106 +vt 0.892944 0.864604 +vt 0.902447 0.846010 +vt 0.909205 0.823466 +vt 0.888833 0.873859 +vt 0.887576 0.878642 +vt 0.869207 0.899389 +vt 0.871183 0.901785 +vt 0.877776 0.895383 +vt 0.875413 0.898141 +vt 0.882456 0.890436 +vt 0.863194 0.902029 +vt 0.861254 0.897057 +vt 0.861553 0.893194 +vt 0.861279 0.887593 +vt 0.859235 0.891027 +vt 0.852992 0.892283 +vt 0.857561 0.893061 +vt 0.900391 0.787234 +vt 0.907545 0.781563 +vt 0.908404 0.787818 +vt 0.902334 0.786678 +vt 0.908919 0.807564 +vt 0.907509 0.816080 +vt 0.905247 0.768952 +vt 0.903916 0.762024 +vt 0.901149 0.784238 +vt 0.902835 0.776815 +vt 0.904489 0.756006 +vt 0.892676 0.869396 +vt 0.901285 0.852502 +vt 0.897578 0.859861 +vt 0.895330 0.862653 +vt 0.904915 0.840095 +vt 0.889512 0.874554 +vt 0.888975 0.876683 +vt 0.886605 0.884165 +vt 0.887511 0.882134 +vt 0.869661 0.902139 +vt 0.870257 0.901125 +vt 0.873634 0.903822 +vt 0.872233 0.903856 +vt 0.866974 0.900880 +vt 0.867847 0.902831 +vt 0.877138 0.901438 +vt 0.880387 0.893743 +vt 0.883918 0.889415 +vt 0.864623 0.900913 +vt 0.861737 0.900305 +vt 0.860073 0.898347 +vt 0.860621 0.893112 +vt 0.861081 0.889664 +vt 0.860446 0.891099 +vt 0.855225 0.896768 +vt 0.910173 0.788302 +vt 0.910565 0.797250 +vt 0.903526 0.784965 +vt 0.904833 0.781732 +vt 0.908609 0.811696 +vt 0.909599 0.817740 +vt 0.908638 0.815496 +vt 0.909876 0.806849 +vt 0.903936 0.775528 +vt 0.905138 0.763829 +vt 0.903274 0.779325 +vt 0.890114 0.875127 +vt 0.902876 0.849731 +vt 0.899391 0.858681 +vt 0.904226 0.845977 +vt 0.907365 0.834262 +vt 0.885350 0.886401 +vt 0.888537 0.879794 +vt 0.868985 0.903034 +vt 0.870398 0.902668 +vt 0.870655 0.905737 +vt 0.865833 0.901412 +vt 0.882197 0.893973 +vt 0.879793 0.898643 +vt 0.883599 0.893164 +vt 0.863064 0.908260 +vt 0.859734 0.909081 +vt 0.859693 0.896460 +vt 0.860018 0.900309 +vt 0.860379 0.895139 +vt 0.858785 0.894915 +vt 0.859971 0.892328 +vt 0.910125 0.783539 +vt 0.910556 0.791070 +vt 0.911304 0.802777 +vt 0.911387 0.793666 +vt 0.903059 0.783084 +vt 0.906203 0.777327 +vt 0.909975 0.809004 +vt 0.910846 0.817470 +vt 0.904886 0.777190 +vt 0.906716 0.761403 +vt 0.904914 0.759821 +vt 0.894172 0.870460 +vt 0.902599 0.855163 +vt 0.898876 0.868479 +vt 0.905555 0.841755 +vt 0.910778 0.826917 +vt 0.886952 0.885826 +vt 0.889209 0.881212 +vt 0.869589 0.903592 +vt 0.872944 0.907672 +vt 0.877306 0.905368 +vt 0.866512 0.903547 +vt 0.868881 0.906080 +vt 0.881279 0.896125 +vt 0.885241 0.890271 +vt 0.865147 0.906511 +vt 0.860484 0.902677 +vt 0.859043 0.898491 +vt 0.859507 0.899557 +vt 0.859567 0.893920 +vt 0.857923 0.898114 +vt 0.911483 0.785339 +vt 0.911934 0.788311 +vt 0.908055 0.772563 +vt 0.909915 0.813638 +vt 0.911253 0.814650 +vt 0.910776 0.806949 +vt 0.906225 0.769442 +vt 0.905852 0.758265 +vt 0.907021 0.765652 +vt 0.896540 0.872916 +vt 0.891376 0.875939 +vt 0.897987 0.868776 +vt 0.904653 0.850043 +vt 0.906850 0.840741 +vt 0.908620 0.835613 +vt 0.889805 0.878977 +vt 0.869684 0.906678 +vt 0.880585 0.902221 +vt 0.870568 0.909245 +vt 0.866998 0.906465 +vt 0.881689 0.896622 +vt 0.881669 0.897785 +vt 0.885563 0.894706 +vt 0.860312 0.910521 +vt 0.864212 0.913183 +vt 0.859853 0.904613 +vt 0.859078 0.900770 +vt 0.859391 0.902460 +vt 0.857386 0.900833 +vt 0.912120 0.782507 +vt 0.906118 0.775142 +vt 0.911025 0.810222 +vt 0.911516 0.816212 +vt 0.910385 0.808814 +vt 0.907316 0.755199 +vt 0.908779 0.757234 +vt 0.893125 0.876197 +vt 0.903829 0.852002 +vt 0.902251 0.861962 +vt 0.906086 0.846101 +vt 0.910182 0.832686 +vt 0.887525 0.887818 +vt 0.891172 0.879992 +vt 0.873152 0.914410 +vt 0.878921 0.907230 +vt 0.871291 0.913522 +vt 0.865855 0.908182 +vt 0.868308 0.908819 +vt 0.884203 0.900941 +vt 0.858938 0.911087 +vt 0.862362 0.911849 +vt 0.859687 0.907140 +vt 0.858445 0.900978 +vt 0.852787 0.902066 +vt 0.912314 0.784776 +vt 0.907366 0.769793 +vt 0.912410 0.821597 +vt 0.908927 0.764508 +vt 0.894415 0.877232 +vt 0.904269 0.853993 +vt 0.901541 0.871814 +vt 0.895528 0.878661 +vt 0.905756 0.849504 +vt 0.907054 0.843437 +vt 0.908118 0.840689 +vt 0.911929 0.828364 +vt 0.909652 0.837853 +vt 0.890430 0.884589 +vt 0.868680 0.911229 +vt 0.876660 0.910266 +vt 0.880640 0.908180 +vt 0.868777 0.917531 +vt 0.865607 0.912397 +vt 0.867267 0.911556 +vt 0.886429 0.899797 +vt 0.888500 0.891250 +vt 0.858615 0.908697 +vt 0.858831 0.914054 +vt 0.860346 0.913587 +vt 0.861360 0.915591 +vt 0.859346 0.908426 +vt 0.859067 0.907061 +vt 0.859078 0.901727 +vt 0.858441 0.902338 +vt 0.854631 0.908343 +vt 0.913191 0.784508 +vt 0.891743 0.883559 +vt 0.904453 0.860431 +vt 0.903721 0.865044 +vt 0.895586 0.884369 +vt 0.905552 0.851591 +vt 0.906719 0.847101 +vt 0.906857 0.845195 +vt 0.910922 0.836630 +vt 0.875022 0.915954 +vt 0.870619 0.916134 +vt 0.877984 0.913638 +vt 0.882390 0.906774 +vt 0.883960 0.906296 +vt 0.857961 0.911087 +vt 0.858168 0.912614 +vt 0.862326 0.922883 +vt 0.858566 0.905890 +vt 0.857772 0.903509 +vt 0.852079 0.908204 +vt 0.905128 0.856582 +vt 0.903421 0.867901 +vt 0.901466 0.881391 +vt 0.894452 0.881722 +vt 0.905856 0.850583 +vt 0.906112 0.849907 +vt 0.905486 0.853884 +vt 0.907796 0.844382 +vt 0.908462 0.841906 +vt 0.909843 0.841327 +vt 0.890213 0.888911 +vt 0.890848 0.888851 +vt 0.866087 0.918259 +vt 0.872369 0.919050 +vt 0.880716 0.912129 +vt 0.868982 0.922247 +vt 0.885564 0.906480 +vt 0.888216 0.898142 +vt 0.857227 0.910761 +vt 0.857524 0.913951 +vt 0.859287 0.915991 +vt 0.858868 0.922413 +vt 0.856527 0.908787 +vt 0.851959 0.912429 +vt 0.905035 0.863967 +vt 0.906030 0.859530 +vt 0.904211 0.868269 +vt 0.897344 0.891685 +vt 0.902935 0.874987 +vt 0.894070 0.884238 +vt 0.906260 0.850786 +vt 0.906565 0.849602 +vt 0.906510 0.852347 +vt 0.911506 0.839890 +vt 0.889916 0.892273 +vt 0.892828 0.885376 +vt 0.865336 0.923778 +vt 0.875733 0.923251 +vt 0.873109 0.921401 +vt 0.871547 0.921527 +vt 0.878399 0.919023 +vt 0.883026 0.913333 +vt 0.867978 0.923434 +vt 0.884448 0.912328 +vt 0.857439 0.908154 +vt 0.857195 0.916928 +vt 0.858806 0.915668 +vt 0.858785 0.918012 +vt 0.863584 0.924208 +vt 0.859959 0.926352 +vt 0.855363 0.913557 +vt 0.852971 0.917256 +vt 0.850725 0.910314 +vt 0.906586 0.856335 +vt 0.904003 0.871424 +vt 0.900341 0.889161 +vt 0.893996 0.890684 +vt 0.903763 0.875458 +vt 0.893469 0.889087 +vt 0.907236 0.847746 +vt 0.909746 0.845755 +vt 0.893047 0.888581 +vt 0.881222 0.916354 +vt 0.869864 0.926621 +vt 0.885823 0.911339 +vt 0.888126 0.904518 +vt 0.889538 0.896170 +vt 0.856506 0.913426 +vt 0.858251 0.916804 +vt 0.862960 0.926567 +vt 0.857529 0.920818 +vt 0.857395 0.927245 +vt 0.861637 0.926593 +vt 0.849994 0.918171 +vt 0.907102 0.860121 +vt 0.906196 0.864517 +vt 0.908061 0.855636 +vt 0.905821 0.867863 +vt 0.901716 0.885948 +vt 0.899721 0.893642 +vt 0.893265 0.896985 +vt 0.902911 0.879152 +vt 0.907102 0.849930 +vt 0.907885 0.847357 +vt 0.908101 0.849969 +vt 0.912322 0.840371 +vt 0.891050 0.892394 +vt 0.865420 0.927736 +vt 0.871198 0.926243 +vt 0.878752 0.923433 +vt 0.879253 0.921400 +vt 0.880537 0.923515 +vt 0.867392 0.927815 +vt 0.884709 0.920561 +vt 0.885695 0.915972 +vt 0.857188 0.918625 +vt 0.856366 0.917516 +vt 0.858086 0.918791 +vt 0.857375 0.923867 +vt 0.858044 0.930704 +vt 0.861468 0.929931 +vt 0.854774 0.920136 +vt 0.852033 0.920635 +vt 0.849473 0.915974 +vt 0.905371 0.871570 +vt 0.902375 0.881892 +vt 0.901057 0.890607 +vt 0.898628 0.896697 +vt 0.900300 0.892030 +vt 0.892825 0.890821 +vt 0.892721 0.893115 +vt 0.903896 0.878543 +vt 0.902868 0.880446 +vt 0.907548 0.848875 +vt 0.909773 0.849108 +vt 0.871259 0.931759 +vt 0.875922 0.929676 +vt 0.883054 0.926564 +vt 0.868209 0.932513 +vt 0.887428 0.911288 +vt 0.890889 0.898673 +vt 0.856412 0.922537 +vt 0.856774 0.930158 +vt 0.856434 0.925808 +vt 0.853871 0.922976 +vt 0.849160 0.922371 +vt 0.848554 0.919816 +vt 0.908867 0.858021 +vt 0.907637 0.863526 +vt 0.906776 0.869172 +vt 0.902844 0.882933 +vt 0.902296 0.891178 +vt 0.899258 0.895933 +vt 0.900938 0.892513 +vt 0.893174 0.891517 +vt 0.891343 0.895866 +vt 0.891654 0.905751 +vt 0.905274 0.874808 +vt 0.911647 0.849052 +vt 0.863224 0.929943 +vt 0.865325 0.931178 +vt 0.871138 0.936223 +vt 0.877957 0.929228 +vt 0.885819 0.924087 +vt 0.888802 0.908514 +vt 0.890133 0.904320 +vt 0.856153 0.920249 +vt 0.861522 0.934150 +vt 0.856869 0.931853 +vt 0.856550 0.928782 +vt 0.856004 0.927803 +vt 0.854453 0.923318 +vt 0.853285 0.923180 +vt 0.851700 0.923537 +vt 0.907613 0.867273 +vt 0.906581 0.872124 +vt 0.899686 0.896989 +vt 0.901619 0.895609 +vt 0.895209 0.907559 +vt 0.905124 0.878286 +vt 0.867209 0.937139 +vt 0.877510 0.934942 +vt 0.874221 0.940111 +vt 0.880047 0.932354 +vt 0.884553 0.928006 +vt 0.886090 0.920911 +vt 0.887363 0.916166 +vt 0.888720 0.913220 +vt 0.855596 0.923619 +vt 0.855340 0.921908 +vt 0.858094 0.934943 +vt 0.857002 0.935153 +vt 0.856291 0.931071 +vt 0.855909 0.930024 +vt 0.855272 0.925671 +vt 0.851031 0.925472 +vt 0.848798 0.922279 +vt 0.909582 0.860066 +vt 0.908577 0.864283 +vt 0.907908 0.867644 +vt 0.908404 0.869038 +vt 0.903194 0.888556 +vt 0.898763 0.900736 +vt 0.897628 0.904705 +vt 0.893683 0.912581 +vt 0.903959 0.881549 +vt 0.908984 0.872014 +vt 0.881814 0.937828 +vt 0.861976 0.938497 +vt 0.883760 0.936561 +vt 0.887441 0.923705 +vt 0.860433 0.937750 +vt 0.856065 0.933718 +vt 0.855020 0.928244 +vt 0.853567 0.924764 +vt 0.849435 0.925460 +vt 0.852736 0.926120 +vt 0.911429 0.857019 +vt 0.903570 0.883859 +vt 0.903051 0.891172 +vt 0.902428 0.893981 +vt 0.899983 0.898951 +vt 0.897364 0.908581 +vt 0.890529 0.913182 +vt 0.896598 0.911912 +vt 0.906671 0.877876 +vt 0.904746 0.881821 +vt 0.878742 0.936579 +vt 0.877203 0.938493 +vt 0.879635 0.938406 +vt 0.859836 0.951147 +vt 0.886267 0.933247 +vt 0.887123 0.920007 +vt 0.857793 0.941342 +vt 0.855345 0.939286 +vt 0.855729 0.932003 +vt 0.854160 0.927539 +vt 0.850571 0.928561 +vt 0.848324 0.927613 +vt 0.909954 0.863977 +vt 0.908847 0.866968 +vt 0.904212 0.884634 +vt 0.903799 0.890655 +vt 0.901441 0.898018 +vt 0.898662 0.905813 +vt 0.899812 0.901574 +vt 0.892027 0.919592 +vt 0.896142 0.916080 +vt 0.909862 0.868292 +vt 0.904133 0.883045 +vt 0.907852 0.880207 +vt 0.859879 0.939779 +vt 0.884879 0.941207 +vt 0.890135 0.930159 +vt 0.889254 0.917847 +vt 0.855599 0.940778 +vt 0.854927 0.935497 +vt 0.855566 0.933751 +vt 0.854816 0.931326 +vt 0.853303 0.928963 +vt 0.903898 0.887414 +vt 0.903114 0.897332 +vt 0.898204 0.910039 +vt 0.894519 0.918628 +vt 0.898456 0.914327 +vt 0.905402 0.885167 +vt 0.910122 0.879527 +vt 0.859042 0.947422 +vt 0.887622 0.937129 +vt 0.854786 0.943342 +vt 0.856767 0.947723 +vt 0.854604 0.939253 +vt 0.854563 0.941704 +vt 0.854607 0.934388 +vt 0.853407 0.931361 +vt 0.850799 0.932277 +vt 0.900520 0.904343 +vt 0.899150 0.908819 +vt 0.893115 0.924431 +vt 0.895774 0.918301 +vt 0.906244 0.888632 +vt 0.911533 0.876974 +vt 0.908532 0.885475 +vt 0.858368 0.951059 +vt 0.889908 0.937677 +vt 0.855621 0.947128 +vt 0.853901 0.939060 +vt 0.847008 0.929573 +vt 0.901293 0.908697 +vt 0.894962 0.922396 +vt 0.897649 0.920667 +vt 0.911729 0.879535 +vt 0.910463 0.882636 +vt 0.858350 0.956951 +vt 0.892360 0.928339 +vt 0.890854 0.933445 +vt 0.853912 0.943935 +vt 0.854250 0.945604 +vt 0.853892 0.953535 +vt 0.853548 0.942069 +vt 0.854207 0.936085 +vt 0.849416 0.939527 +vt 0.852110 0.934489 +vt 0.904942 0.898239 +vt 0.894357 0.924354 +vt 0.900165 0.921733 +vt 0.895904 0.922980 +vt 0.907761 0.890456 +vt 0.912745 0.876084 +vt 0.910245 0.884836 +vt 0.856350 0.957938 +vt 0.856805 0.950349 +vt 0.891999 0.931259 +vt 0.893433 0.926267 +vt 0.891304 0.935520 +vt 0.854370 0.948342 +vt 0.854950 0.954298 +vt 0.852469 0.941677 +vt 0.852856 0.938103 +vt 0.847328 0.934393 +vt 0.906338 0.895980 +vt 0.905008 0.903511 +vt 0.894845 0.923426 +vt 0.896410 0.925976 +vt 0.895250 0.924067 +vt 0.908767 0.888217 +vt 0.912898 0.878714 +vt 0.911708 0.881940 +vt 0.909655 0.886691 +vt 0.910442 0.883823 +vt 0.857390 0.961119 +vt 0.856181 0.953702 +vt 0.892369 0.930402 +vt 0.893663 0.926959 +vt 0.891325 0.939160 +vt 0.853215 0.946130 +vt 0.852542 0.944420 +vt 0.853451 0.947717 +vt 0.853144 0.956023 +vt 0.853405 0.951880 +vt 0.846333 0.930762 +vt 0.847211 0.938876 +vt 0.851515 0.939840 +vt 0.906764 0.896269 +vt 0.902446 0.914794 +vt 0.894187 0.925838 +vt 0.896727 0.931569 +vt 0.909231 0.888575 +vt 0.914552 0.877407 +vt 0.910990 0.883559 +vt 0.910515 0.886820 +vt 0.855906 0.963537 +vt 0.854611 0.961356 +vt 0.892726 0.930195 +vt 0.893084 0.931938 +vt 0.893857 0.934858 +vt 0.852665 0.954218 +vt 0.853334 0.958932 +vt 0.852097 0.943222 +vt 0.845919 0.934747 +vt 0.847683 0.943243 +vt 0.851249 0.943381 +vt 0.906362 0.900902 +vt 0.903637 0.912652 +vt 0.902647 0.919900 +vt 0.895478 0.929480 +vt 0.900845 0.927888 +vt 0.895292 0.927305 +vt 0.908408 0.891691 +vt 0.912774 0.881517 +vt 0.911900 0.884096 +vt 0.857003 0.966750 +vt 0.894533 0.928309 +vt 0.894423 0.937013 +vt 0.852585 0.948236 +vt 0.851644 0.956495 +vt 0.851719 0.959321 +vt 0.852640 0.952522 +vt 0.844256 0.935985 +vt 0.849388 0.943892 +vt 0.845926 0.942701 +vt 0.908166 0.899050 +vt 0.906317 0.905399 +vt 0.896552 0.937059 +vt 0.909459 0.891373 +vt 0.911068 0.886373 +vt 0.854606 0.967466 +vt 0.893988 0.930822 +vt 0.851413 0.947531 +vt 0.851514 0.954230 +vt 0.852409 0.960186 +vt 0.853148 0.964273 +vt 0.844578 0.941620 +vt 0.850100 0.945879 +vt 0.908952 0.894660 +vt 0.908172 0.901453 +vt 0.904644 0.918406 +vt 0.905819 0.911206 +vt 0.904134 0.924001 +vt 0.912550 0.884188 +vt 0.911043 0.888120 +vt 0.911890 0.886242 +vt 0.856077 0.971073 +vt 0.851470 0.951026 +vt 0.850862 0.954083 +vt 0.850496 0.956600 +vt 0.852057 0.963365 +vt 0.851221 0.963438 +vt 0.851400 0.952178 +vt 0.843133 0.942210 +vt 0.845269 0.944331 +vt 0.848029 0.949369 +vt 0.909128 0.897599 +vt 0.909195 0.899483 +vt 0.908410 0.902169 +vt 0.907564 0.906159 +vt 0.910094 0.892082 +vt 0.913860 0.881742 +vt 0.910924 0.889894 +vt 0.851969 0.966045 +vt 0.857952 0.970826 +vt 0.853789 0.973907 +vt 0.850263 0.950156 +vt 0.850903 0.960297 +vt 0.844103 0.944495 +vt 0.909872 0.894909 +vt 0.906551 0.914475 +vt 0.907817 0.908992 +vt 0.912883 0.886552 +vt 0.911347 0.889900 +vt 0.851651 0.970312 +vt 0.855789 0.975627 +vt 0.851527 0.974295 +vt 0.848936 0.955539 +vt 0.849875 0.960769 +vt 0.851367 0.964991 +vt 0.850340 0.964413 +vt 0.842960 0.947112 +vt 0.845147 0.949857 +vt 0.909877 0.900879 +vt 0.908608 0.903721 +vt 0.908823 0.905796 +vt 0.911272 0.891211 +vt 0.851303 0.968667 +vt 0.856999 0.977366 +vt 0.852304 0.978096 +vt 0.853839 0.976886 +vt 0.851494 0.966599 +vt 0.841983 0.948164 +vt 0.846607 0.951286 +vt 0.910754 0.895593 +vt 0.850751 0.972274 +vt 0.851199 0.967476 +vt 0.855553 0.979465 +vt 0.860301 0.973508 +vt 0.851155 0.977180 +vt 0.854920 0.979577 +vt 0.849209 0.960241 +vt 0.849369 0.964633 +vt 0.850897 0.966526 +vt 0.851291 0.966214 +vt 0.845066 0.952027 +vt 0.842544 0.949682 +vt 0.846368 0.956069 +vt 0.911987 0.896544 +vt 0.913429 0.892079 +vt 0.850319 0.973966 +vt 0.850357 0.971479 +vt 0.850506 0.968455 +vt 0.856835 0.982074 +vt 0.858821 0.977428 +vt 0.852934 0.981982 +vt 0.850200 0.980347 +vt 0.850701 0.975618 +vt 0.847536 0.961565 +vt 0.841640 0.952354 +vt 0.855275 0.984289 +vt 0.854191 0.984299 +vt 0.850811 0.981561 +vt 0.849974 0.977542 +vt 0.847983 0.965907 +vt 0.849427 0.967834 +vt 0.843962 0.955429 +vt 0.844656 0.959132 +vt 0.846218 0.965360 +vt 0.849773 0.975860 +vt 0.849391 0.973633 +vt 0.849167 0.972907 +vt 0.856793 0.985525 +vt 0.850213 0.984893 +vt 0.849495 0.980349 +vt 0.849404 0.983809 +vt 0.853156 0.985014 +vt 0.842204 0.956107 +vt 0.844016 0.962446 +vt 0.854237 0.992388 +vt 0.853108 0.989782 +vt 0.849311 0.990201 +vt 0.848799 0.982823 +vt 0.849125 0.977256 +vt 0.852521 0.987811 +vt 0.852071 0.986066 +vt 0.848416 0.968929 +vt 0.847158 0.968899 +vt 0.843425 0.959135 +vt 0.839987 0.954595 +vt 0.845083 0.967347 +vt 0.849026 0.975551 +vt 0.848358 0.974364 +vt 0.849091 0.986252 +vt 0.848511 0.981807 +vt 0.848452 0.983485 +vt 0.846003 0.969307 +vt 0.842397 0.960454 +vt 0.842049 0.964715 +vt 0.847400 0.974690 +vt 0.852422 0.995652 +vt 0.851350 0.993569 +vt 0.848139 0.985484 +vt 0.848710 0.988374 +vt 0.848357 0.976450 +vt 0.846419 0.973644 +vt 0.839658 0.957694 +vt 0.842403 0.962737 +vt 0.843861 0.971185 +vt 0.841841 0.969684 +vt 0.848265 0.987250 +vt 0.847773 0.979977 +vt 0.847386 0.984366 +vt 0.844859 0.974921 +vt 0.839193 0.960608 +vt 0.841397 0.962669 +vt 0.841339 0.969132 +vt 0.847500 0.977225 +vt 0.847681 0.987824 +vt 0.847587 0.985302 +vt 0.846316 0.977284 +vt 0.837917 0.958231 +vt 0.842816 0.973173 +vt 0.847145 0.985902 +vt 0.846176 0.984509 +vt 0.846898 0.978454 +vt 0.845584 0.979535 +vt 0.839303 0.964485 +vt 0.842814 0.976315 +vt 0.841410 0.973307 +vt 0.846661 0.989067 +vt 0.843176 0.977570 +vt 0.836700 0.965397 +vt 0.840190 0.972013 +vt 0.846212 0.987088 +vt 0.843479 0.979795 +vt 0.835822 0.959222 +vt 0.841013 0.975495 +vt 0.845133 0.989951 +vt 0.845196 0.983488 +vt 0.844443 0.985769 +vt 0.841857 0.978328 +vt 0.834295 0.961721 +vt 0.837021 0.972910 +vt 0.843069 0.982380 +vt 0.832582 0.957781 +vt 0.834804 0.967950 +vt 0.839886 0.978426 +vt 0.844248 0.990264 +vt 0.840938 0.980774 +vt 0.833371 0.963379 +vt 0.833968 0.971342 +vt 0.838771 0.981840 +vt 0.842242 0.984900 +vt 0.830871 0.965169 +vt 0.839429 0.984452 +vt 0.841901 0.988976 +vt 0.840147 0.984832 +vt 0.829792 0.956137 +vt 0.832189 0.968604 +vt 0.838778 0.987015 +vt 0.840371 0.989225 +vt 0.831262 0.941542 +vt 0.826645 0.962686 +vt 0.830953 0.970935 +vt 0.833005 0.972958 +vt 0.839444 0.987840 +vt 0.829261 0.967747 +vt 0.832014 0.972859 +vt 0.832977 0.976790 +vt 0.839318 0.992110 +vt 0.828495 0.973176 +vt 0.831602 0.973407 +vt 0.832540 0.975693 +vt 0.824795 0.967767 +vt 0.831884 0.974943 +vt 0.831165 0.974545 +vt 0.832662 0.978555 +vt 0.825185 0.974412 +vt 0.822559 0.962926 +vt 0.830927 0.977655 +vt 0.831950 0.977076 +vt 0.822722 0.967684 +vt 0.827470 0.983428 +vt 0.831737 0.975911 +vt 0.829751 0.980755 +vt 0.831758 0.980534 +vt 0.823061 0.972587 +vt 0.823472 0.980374 +vt 0.830803 0.982383 +vt 0.832621 0.981362 +vt 0.829563 0.985132 +vt 0.825857 0.994206 +vt 0.832009 0.983798 +vt 0.829194 0.988929 +vt 0.828561 0.994295 +vt 0.831038 0.984089 +vt 0.829880 0.988105 +vt 0.832632 0.985542 +vt 0.831376 0.985756 +vt 0.829517 0.992666 +vt 0.830178 0.991500 +vt 0.831134 0.987161 +vt 0.830307 0.990125 +vt 0.830488 0.992207 +vt 0.964799 0.919190 +vt 0.963905 0.918099 +vt 0.964823 0.916765 +vt 0.963727 0.919980 +vt 0.964220 0.915608 +vt 0.965711 0.917959 +vt 0.962779 0.919867 +vt 0.964653 0.921268 +vt 0.964958 0.914016 +vt 0.963489 0.916437 +vt 0.965974 0.915782 +vt 0.965775 0.920071 +vt 0.962805 0.918005 +vt 0.963300 0.921707 +vt 0.963837 0.913605 +vt 0.963026 0.915115 +vt 0.966323 0.917267 +vt 0.966614 0.918610 +vt 0.961879 0.918984 +vt 0.962371 0.923377 +vt 0.963913 0.922941 +vt 0.966398 0.922123 +vt 0.967666 0.912495 +vt 0.964298 0.911654 +vt 0.961999 0.917472 +vt 0.962350 0.916029 +vt 0.967203 0.916575 +vt 0.967198 0.919630 +vt 0.961764 0.920255 +vt 0.963399 0.924085 +vt 0.964789 0.923598 +vt 0.966396 0.924096 +vt 0.966253 0.911541 +vt 0.963386 0.912023 +vt 0.963230 0.914126 +vt 0.961848 0.914457 +vt 0.967449 0.918443 +vt 0.960890 0.917965 +vt 0.960837 0.919727 +vt 0.961306 0.921360 +vt 0.962872 0.925500 +vt 0.964495 0.925232 +vt 0.967469 0.922738 +vt 0.968819 0.915618 +vt 0.966203 0.909638 +vt 0.962861 0.913745 +vt 0.963364 0.909622 +vt 0.964683 0.909339 +vt 0.961308 0.915856 +vt 0.961555 0.915013 +vt 0.967607 0.919115 +vt 0.961587 0.923686 +vt 0.962068 0.925103 +vt 0.963682 0.926598 +vt 0.965785 0.926573 +vt 0.964199 0.926497 +vt 0.967965 0.919452 +vt 0.967777 0.925334 +vt 0.970174 0.913381 +vt 0.967401 0.909369 +vt 0.962441 0.911302 +vt 0.962845 0.910862 +vt 0.961815 0.913235 +vt 0.961274 0.913780 +vt 0.960531 0.921316 +vt 0.960822 0.924241 +vt 0.962102 0.925745 +vt 0.963268 0.929319 +vt 0.966717 0.927868 +vt 0.965151 0.926690 +vt 0.968638 0.922118 +vt 0.969056 0.918765 +vt 0.968946 0.908887 +vt 0.970263 0.917200 +vt 0.967007 0.906801 +vt 0.965173 0.906610 +vt 0.962252 0.909573 +vt 0.959795 0.920190 +vt 0.961766 0.926982 +vt 0.962557 0.927684 +vt 0.964286 0.927679 +vt 0.965891 0.929527 +vt 0.964883 0.928779 +vt 0.970174 0.926151 +vt 0.968266 0.929061 +vt 0.970915 0.910214 +vt 0.971216 0.916039 +vt 0.962339 0.910289 +vt 0.961791 0.912278 +vt 0.961124 0.912725 +vt 0.959741 0.922172 +vt 0.962364 0.930326 +vt 0.963313 0.931982 +vt 0.967109 0.931038 +vt 0.970403 0.921177 +vt 0.970677 0.907187 +vt 0.971731 0.912496 +vt 0.971706 0.918613 +vt 0.971760 0.914713 +vt 0.968544 0.905427 +vt 0.965994 0.904091 +vt 0.961468 0.911235 +vt 0.959530 0.923850 +vt 0.960478 0.927535 +vt 0.965548 0.932177 +vt 0.969428 0.930247 +vt 0.970981 0.923455 +vt 0.968592 0.931122 +vt 0.971657 0.908899 +vt 0.969470 0.906602 +vt 0.972205 0.910535 +vt 0.972006 0.916522 +vt 0.959160 0.928549 +vt 0.958941 0.922375 +vt 0.960788 0.929993 +vt 0.961977 0.931779 +vt 0.963830 0.933873 +vt 0.966989 0.934435 +vt 0.970772 0.930673 +vt 0.971459 0.924427 +vt 0.971808 0.922086 +vt 0.968255 0.932748 +vt 0.971876 0.907575 +vt 0.969856 0.904857 +vt 0.972598 0.912239 +vt 0.972547 0.914009 +vt 0.972480 0.917394 +vt 0.972663 0.915930 +vt 0.969081 0.902126 +vt 0.958087 0.926633 +vt 0.958400 0.924069 +vt 0.960838 0.933538 +vt 0.965355 0.934574 +vt 0.971889 0.928537 +vt 0.969739 0.932049 +vt 0.969027 0.931956 +vt 0.971902 0.926207 +vt 0.972515 0.920252 +vt 0.971843 0.905435 +vt 0.972464 0.908984 +vt 0.971016 0.904567 +vt 0.972740 0.910979 +vt 0.972716 0.918537 +vt 0.957437 0.929556 +vt 0.957438 0.924267 +vt 0.966396 0.937919 +vt 0.963539 0.940088 +vt 0.968410 0.934741 +vt 0.972203 0.930930 +vt 0.970306 0.933899 +vt 0.972338 0.924279 +vt 0.969204 0.933197 +vt 0.972546 0.921898 +vt 0.972584 0.907276 +vt 0.972705 0.910182 +vt 0.970698 0.902793 +vt 0.972578 0.910518 +vt 0.973039 0.911972 +vt 0.973156 0.913568 +vt 0.973164 0.915100 +vt 0.973088 0.917392 +vt 0.958616 0.932576 +vt 0.956492 0.926736 +vt 0.957626 0.921957 +vt 0.961569 0.936774 +vt 0.968867 0.933719 +vt 0.968098 0.937027 +vt 0.972597 0.929618 +vt 0.971571 0.932725 +vt 0.972816 0.928172 +vt 0.972406 0.922840 +vt 0.972830 0.926339 +vt 0.973162 0.919340 +vt 0.973095 0.921274 +vt 0.972872 0.905492 +vt 0.971815 0.902841 +vt 0.973072 0.908859 +vt 0.972888 0.909646 +vt 0.973160 0.910682 +vt 0.973271 0.916303 +vt 0.973147 0.918341 +vt 0.970725 0.899482 +vt 0.957175 0.931370 +vt 0.955271 0.929139 +vt 0.956279 0.924038 +vt 0.960106 0.935096 +vt 0.966555 0.940855 +vt 0.961205 0.939546 +vt 0.969614 0.935322 +vt 0.967365 0.939163 +vt 0.972939 0.930001 +vt 0.972554 0.933015 +vt 0.971952 0.935109 +vt 0.972905 0.923243 +vt 0.972989 0.924970 +vt 0.972584 0.903961 +vt 0.973180 0.907187 +vt 0.971346 0.901400 +vt 0.973429 0.912538 +vt 0.973447 0.914762 +vt 0.973663 0.915937 +vt 0.973518 0.917042 +vt 0.973473 0.918196 +vt 0.958205 0.935884 +vt 0.952640 0.929030 +vt 0.956203 0.921914 +vt 0.965258 0.944502 +vt 0.962212 0.943623 +vt 0.959347 0.938408 +vt 0.969205 0.937772 +vt 0.972960 0.931584 +vt 0.973207 0.928238 +vt 0.970769 0.936284 +vt 0.973522 0.926648 +vt 0.973588 0.920072 +vt 0.973549 0.922881 +vt 0.972612 0.902354 +vt 0.973612 0.909843 +vt 0.971778 0.901493 +vt 0.973699 0.914386 +vt 0.973976 0.912090 +vt 0.971671 0.900593 +vt 0.955344 0.925492 +vt 0.954878 0.932327 +vt 0.956046 0.937006 +vt 0.952962 0.931187 +vt 0.955268 0.923686 +vt 0.968231 0.944536 +vt 0.968263 0.948307 +vt 0.959821 0.940636 +vt 0.969916 0.937018 +vt 0.969293 0.941916 +vt 0.973298 0.928895 +vt 0.973491 0.929457 +vt 0.972812 0.934451 +vt 0.973106 0.933295 +vt 0.971785 0.937494 +vt 0.973465 0.924712 +vt 0.973784 0.921606 +vt 0.972170 0.901290 +vt 0.973082 0.903148 +vt 0.973805 0.913086 +vt 0.973848 0.917384 +vt 0.972191 0.899610 +vt 0.954469 0.934859 +vt 0.956607 0.939384 +vt 0.951426 0.930257 +vt 0.954112 0.925686 +vt 0.955244 0.921508 +vt 0.962581 0.950363 +vt 0.966524 0.950403 +vt 0.959535 0.941951 +vt 0.958216 0.940852 +vt 0.971168 0.940983 +vt 0.973447 0.931916 +vt 0.973070 0.935929 +vt 0.973664 0.928609 +vt 0.972660 0.937030 +vt 0.970749 0.938504 +vt 0.973928 0.926232 +vt 0.973823 0.918643 +vt 0.974043 0.920157 +vt 0.974096 0.924612 +vt 0.974131 0.923162 +vt 0.972661 0.901083 +vt 0.973000 0.901805 +vt 0.973975 0.914183 +vt 0.974181 0.913498 +vt 0.973902 0.911121 +vt 0.973983 0.915674 +vt 0.974122 0.916668 +vt 0.971745 0.897564 +vt 0.955311 0.938358 +vt 0.953833 0.936951 +vt 0.952301 0.932540 +vt 0.951501 0.927933 +vt 0.952611 0.927297 +vt 0.954537 0.922015 +vt 0.956446 0.919855 +vt 0.969046 0.948101 +vt 0.970465 0.945772 +vt 0.961477 0.946872 +vt 0.964407 0.952350 +vt 0.967502 0.953124 +vt 0.960339 0.944671 +vt 0.970874 0.943219 +vt 0.973995 0.931962 +vt 0.973358 0.934573 +vt 0.973511 0.933315 +vt 0.973880 0.928116 +vt 0.972585 0.938652 +vt 0.971898 0.939318 +vt 0.974072 0.927917 +vt 0.973977 0.919265 +vt 0.974147 0.921452 +vt 0.974119 0.922267 +vt 0.973303 0.901947 +vt 0.974096 0.915126 +vt 0.974194 0.912236 +vt 0.974051 0.911712 +vt 0.974003 0.910032 +vt 0.974325 0.917963 +vt 0.972371 0.898115 +vt 0.955520 0.940628 +vt 0.952127 0.933740 +vt 0.951181 0.932523 +vt 0.950549 0.928661 +vt 0.953239 0.923852 +vt 0.954193 0.921692 +vt 0.956196 0.919184 +vt 0.956065 0.941930 +vt 0.968876 0.951686 +vt 0.960739 0.949989 +vt 0.962617 0.953140 +vt 0.965952 0.955071 +vt 0.959847 0.946176 +vt 0.958632 0.942884 +vt 0.971549 0.942862 +vt 0.973957 0.930070 +vt 0.973182 0.936977 +vt 0.973621 0.935529 +vt 0.973305 0.938050 +vt 0.974293 0.926345 +vt 0.974208 0.927034 +vt 0.974306 0.919247 +vt 0.974366 0.920276 +vt 0.974496 0.923927 +vt 0.974286 0.922347 +vt 0.972995 0.900554 +vt 0.974186 0.914604 +vt 0.974415 0.911928 +vt 0.974215 0.911252 +vt 0.973730 0.908709 +vt 0.974314 0.916020 +vt 0.974533 0.916925 +vt 0.972789 0.898815 +vt 0.972547 0.896825 +vt 0.954779 0.939500 +vt 0.951821 0.934648 +vt 0.950134 0.931320 +vt 0.949957 0.927221 +vt 0.950122 0.929788 +vt 0.952334 0.923345 +vt 0.957971 0.945541 +vt 0.970757 0.949815 +vt 0.971807 0.944447 +vt 0.960446 0.948164 +vt 0.960549 0.954342 +vt 0.963759 0.955085 +vt 0.968341 0.954246 +vt 0.967492 0.956546 +vt 0.972490 0.940584 +vt 0.972266 0.942641 +vt 0.974357 0.930926 +vt 0.974410 0.933924 +vt 0.973627 0.936860 +vt 0.974237 0.929448 +vt 0.972460 0.939528 +vt 0.973044 0.939624 +vt 0.974560 0.925633 +vt 0.974438 0.927616 +vt 0.974406 0.921645 +vt 0.974672 0.924398 +vt 0.973338 0.901060 +vt 0.974336 0.914388 +vt 0.974245 0.915117 +vt 0.974655 0.914295 +vt 0.974488 0.910244 +vt 0.974146 0.908977 +vt 0.974362 0.915498 +vt 0.975089 0.917984 +vt 0.955399 0.944084 +vt 0.954629 0.941243 +vt 0.953267 0.938297 +vt 0.950556 0.933829 +vt 0.949897 0.925927 +vt 0.949518 0.928372 +vt 0.951121 0.924587 +vt 0.952746 0.921671 +vt 0.954442 0.919455 +vt 0.956008 0.945860 +vt 0.971482 0.947711 +vt 0.970260 0.953666 +vt 0.971803 0.946341 +vt 0.958826 0.947753 +vt 0.959934 0.953032 +vt 0.961179 0.955193 +vt 0.961700 0.957165 +vt 0.964990 0.957206 +vt 0.969158 0.954249 +vt 0.966569 0.956705 +vt 0.974264 0.932395 +vt 0.974498 0.928740 +vt 0.972688 0.939586 +vt 0.973433 0.939827 +vt 0.974381 0.927007 +vt 0.974636 0.926963 +vt 0.974626 0.918770 +vt 0.974714 0.920988 +vt 0.974648 0.923632 +vt 0.973255 0.899863 +vt 0.973444 0.901710 +vt 0.974414 0.915015 +vt 0.974705 0.911212 +vt 0.975035 0.913420 +vt 0.973787 0.908305 +vt 0.974807 0.915948 +vt 0.973158 0.897645 +vt 0.954866 0.943104 +vt 0.951653 0.938579 +vt 0.949266 0.933316 +vt 0.949457 0.930382 +vt 0.948613 0.925305 +vt 0.949405 0.929590 +vt 0.951749 0.923207 +vt 0.957740 0.947204 +vt 0.972245 0.950201 +vt 0.971696 0.952524 +vt 0.972774 0.946010 +vt 0.958536 0.951296 +vt 0.959563 0.955040 +vt 0.960946 0.956781 +vt 0.963136 0.957027 +vt 0.964141 0.957517 +vt 0.966347 0.958476 +vt 0.968662 0.955732 +vt 0.973021 0.942003 +vt 0.972720 0.944230 +vt 0.974625 0.931923 +vt 0.974631 0.930027 +vt 0.974687 0.933029 +vt 0.974011 0.938000 +vt 0.973700 0.938776 +vt 0.973204 0.941287 +vt 0.975064 0.926276 +vt 0.975007 0.925124 +vt 0.974774 0.927995 +vt 0.974650 0.922287 +vt 0.974859 0.923559 +vt 0.973471 0.901338 +vt 0.974703 0.908873 +vt 0.975047 0.910360 +vt 0.973648 0.908006 +vt 0.973988 0.908144 +vt 0.975003 0.919517 +vt 0.972773 0.895417 +vt 0.954663 0.944953 +vt 0.953785 0.942334 +vt 0.952625 0.940007 +vt 0.950683 0.935820 +vt 0.949997 0.938374 +vt 0.949053 0.931427 +vt 0.949777 0.935849 +vt 0.949528 0.924798 +vt 0.950194 0.923857 +vt 0.948606 0.927955 +vt 0.948846 0.929833 +vt 0.951041 0.922494 +vt 0.951805 0.921573 +vt 0.951879 0.920465 +vt 0.956228 0.948065 +vt 0.972319 0.947722 +vt 0.970189 0.955375 +vt 0.971804 0.954484 +vt 0.957158 0.949713 +vt 0.958663 0.953580 +vt 0.960076 0.956302 +vt 0.962665 0.958273 +vt 0.964193 0.959230 +vt 0.968726 0.957658 +vt 0.967434 0.959234 +vt 0.972949 0.943196 +vt 0.974797 0.931135 +vt 0.974555 0.933919 +vt 0.974514 0.936961 +vt 0.974948 0.929089 +vt 0.973959 0.939423 +vt 0.973507 0.942188 +vt 0.975250 0.924149 +vt 0.974603 0.927550 +vt 0.975607 0.920023 +vt 0.973394 0.898834 +vt 0.973515 0.900347 +vt 0.973616 0.902046 +vt 0.973661 0.907991 +vt 0.973742 0.907967 +vt 0.976112 0.918758 +vt 0.973613 0.897576 +vt 0.954640 0.946290 +vt 0.951294 0.940680 +vt 0.947957 0.932744 +vt 0.948066 0.935573 +vt 0.949232 0.923182 +vt 0.947911 0.926895 +vt 0.973218 0.948146 +vt 0.973101 0.944928 +vt 0.957021 0.950470 +vt 0.958309 0.955051 +vt 0.959359 0.956475 +vt 0.957479 0.952671 +vt 0.961108 0.957996 +vt 0.960320 0.957127 +vt 0.963300 0.958752 +vt 0.962014 0.958149 +vt 0.965032 0.960072 +vt 0.968049 0.958606 +vt 0.967617 0.960484 +vt 0.973299 0.943463 +vt 0.975059 0.932116 +vt 0.975052 0.930504 +vt 0.974688 0.934577 +vt 0.974869 0.933987 +vt 0.974449 0.937735 +vt 0.974510 0.941142 +vt 0.973865 0.943564 +vt 0.975555 0.925722 +vt 0.976138 0.921433 +vt 0.975895 0.922935 +vt 0.975940 0.914022 +vt 0.975053 0.908308 +vt 0.974206 0.907568 +vt 0.973671 0.907677 +vt 0.973848 0.907687 +vt 0.973547 0.895773 +vt 0.953167 0.946238 +vt 0.952209 0.941248 +vt 0.950352 0.941772 +vt 0.948618 0.930984 +vt 0.948930 0.937914 +vt 0.948284 0.922377 +vt 0.950058 0.922075 +vt 0.948039 0.929173 +vt 0.947643 0.924509 +vt 0.955340 0.950914 +vt 0.973994 0.954913 +vt 0.973131 0.950489 +vt 0.970610 0.956537 +vt 0.973538 0.945337 +vt 0.973523 0.947051 +vt 0.959883 0.957183 +vt 0.960362 0.958193 +vt 0.962384 0.958907 +vt 0.962709 0.959785 +vt 0.963596 0.960254 +vt 0.966434 0.961194 +vt 0.964430 0.961098 +vt 0.970170 0.958368 +vt 0.968762 0.959076 +vt 0.968114 0.960193 +vt 0.975138 0.933863 +vt 0.975120 0.931172 +vt 0.974479 0.939465 +vt 0.974728 0.936767 +vt 0.975811 0.930577 +vt 0.976939 0.922362 +vt 0.973744 0.899465 +vt 0.973675 0.900666 +vt 0.976236 0.908871 +vt 0.977184 0.918878 +vt 0.974046 0.897988 +vt 0.972960 0.894377 +vt 0.954507 0.948490 +vt 0.951803 0.942908 +vt 0.948866 0.940269 +vt 0.947023 0.934492 +vt 0.947342 0.930554 +vt 0.947714 0.938686 +vt 0.949341 0.919927 +vt 0.950483 0.920680 +vt 0.947476 0.928324 +vt 0.946778 0.926560 +vt 0.973670 0.952003 +vt 0.972140 0.956519 +vt 0.973891 0.949041 +vt 0.956439 0.952626 +vt 0.958645 0.957187 +vt 0.959308 0.957793 +vt 0.961380 0.959382 +vt 0.962133 0.959416 +vt 0.965315 0.962452 +vt 0.967226 0.962654 +vt 0.967817 0.961589 +vt 0.975449 0.932015 +vt 0.974956 0.935096 +vt 0.974966 0.938467 +vt 0.976272 0.927735 +vt 0.974730 0.942693 +vt 0.974895 0.941203 +vt 0.973949 0.900906 +vt 0.978272 0.912238 +vt 0.974466 0.906752 +vt 0.974752 0.905262 +vt 0.977987 0.917796 +vt 0.973947 0.895520 +vt 0.973700 0.893964 +vt 0.953537 0.950305 +vt 0.951484 0.946671 +vt 0.949468 0.942988 +vt 0.947138 0.932339 +vt 0.946609 0.935759 +vt 0.947168 0.937025 +vt 0.946841 0.922053 +vt 0.948015 0.920393 +vt 0.945603 0.924610 +vt 0.950681 0.918361 +vt 0.974506 0.952293 +vt 0.974333 0.956991 +vt 0.974097 0.950790 +vt 0.971496 0.958150 +vt 0.973983 0.946842 +vt 0.956293 0.954710 +vt 0.958069 0.955789 +vt 0.960349 0.960040 +vt 0.962873 0.961934 +vt 0.963785 0.963145 +vt 0.966651 0.963625 +vt 0.964187 0.963364 +vt 0.969082 0.960790 +vt 0.968453 0.961456 +vt 0.975821 0.936236 +vt 0.975237 0.937710 +vt 0.975289 0.939975 +vt 0.975254 0.936631 +vt 0.976534 0.930742 +vt 0.974435 0.943808 +vt 0.974179 0.944674 +vt 0.974230 0.899567 +vt 0.973840 0.902190 +vt 0.978964 0.908011 +vt 0.975411 0.904924 +vt 0.978718 0.919847 +vt 0.974375 0.896268 +vt 0.973293 0.891987 +vt 0.951582 0.951404 +vt 0.950335 0.945925 +vt 0.947147 0.940176 +vt 0.946438 0.932905 +vt 0.946093 0.934520 +vt 0.946462 0.930833 +vt 0.946491 0.938317 +vt 0.946037 0.927858 +vt 0.945827 0.926155 +vt 0.954467 0.953231 +vt 0.975167 0.953577 +vt 0.972905 0.958514 +vt 0.974731 0.949482 +vt 0.971157 0.959525 +vt 0.974356 0.948000 +vt 0.958634 0.959083 +vt 0.959647 0.959027 +vt 0.961883 0.961277 +vt 0.962020 0.960148 +vt 0.962273 0.960067 +vt 0.965888 0.964630 +vt 0.965007 0.963546 +vt 0.970100 0.961034 +vt 0.967436 0.964599 +vt 0.968570 0.963253 +vt 0.976565 0.934639 +vt 0.975569 0.938517 +vt 0.977435 0.926587 +vt 0.975205 0.943004 +vt 0.974902 0.944262 +vt 0.975203 0.941360 +vt 0.974501 0.898270 +vt 0.974458 0.901035 +vt 0.979473 0.910987 +vt 0.977421 0.907537 +vt 0.979251 0.915203 +vt 0.974650 0.903450 +vt 0.979288 0.923702 +vt 0.979701 0.916926 +vt 0.974354 0.893594 +vt 0.973871 0.892261 +vt 0.953183 0.953438 +vt 0.950989 0.948355 +vt 0.948264 0.948989 +vt 0.946938 0.943975 +vt 0.946182 0.935984 +vt 0.946582 0.936647 +vt 0.945187 0.931836 +vt 0.945134 0.926451 +vt 0.975072 0.951770 +vt 0.975671 0.955096 +vt 0.973828 0.959792 +vt 0.972122 0.959340 +vt 0.970599 0.959562 +vt 0.974526 0.945213 +vt 0.974521 0.946611 +vt 0.955257 0.956265 +vt 0.957226 0.958781 +vt 0.956618 0.956638 +vt 0.959367 0.961549 +vt 0.958799 0.961374 +vt 0.962893 0.963711 +vt 0.964227 0.964318 +vt 0.966444 0.965122 +vt 0.970278 0.962748 +vt 0.969572 0.963176 +vt 0.968050 0.964040 +vt 0.977330 0.935789 +vt 0.975795 0.937823 +vt 0.976009 0.940170 +vt 0.978438 0.929910 +vt 0.978122 0.932037 +vt 0.979341 0.926526 +vt 0.974980 0.899046 +vt 0.973987 0.902953 +vt 0.980396 0.909410 +vt 0.979161 0.904421 +vt 0.976133 0.903100 +vt 0.979705 0.921989 +vt 0.980752 0.920375 +vt 0.975175 0.896617 +vt 0.974682 0.895200 +vt 0.973652 0.891464 +vt 0.951837 0.954126 +vt 0.949383 0.950635 +vt 0.945794 0.941751 +vt 0.944968 0.934530 +vt 0.945620 0.936019 +vt 0.946069 0.936942 +vt 0.944195 0.925087 +vt 0.953459 0.954321 +vt 0.975670 0.951900 +vt 0.975985 0.953953 +vt 0.973491 0.961057 +vt 0.974576 0.948092 +vt 0.971816 0.962240 +vt 0.971145 0.960717 +vt 0.974604 0.947563 +vt 0.955591 0.957559 +vt 0.957897 0.961101 +vt 0.961540 0.963395 +vt 0.962280 0.963264 +vt 0.963651 0.964596 +vt 0.965930 0.967100 +vt 0.965030 0.965216 +vt 0.970894 0.962276 +vt 0.968535 0.965060 +vt 0.968819 0.964193 +vt 0.977730 0.933644 +vt 0.976719 0.940012 +vt 0.975522 0.944549 +vt 0.975580 0.943117 +vt 0.975037 0.945919 +vt 0.979630 0.914877 +vt 0.980656 0.906131 +vt 0.981312 0.911200 +vt 0.975245 0.901450 +vt 0.981096 0.924490 +vt 0.980593 0.925472 +vt 0.981426 0.919438 +vt 0.974509 0.891906 +vt 0.975179 0.894214 +vt 0.974064 0.891270 +vt 0.973489 0.890826 +vt 0.950590 0.954261 +vt 0.952654 0.955961 +vt 0.948091 0.953578 +vt 0.946553 0.949043 +vt 0.945731 0.945257 +vt 0.945434 0.937654 +vt 0.943993 0.926657 +vt 0.944357 0.923495 +vt 0.975220 0.950148 +vt 0.976725 0.954271 +vt 0.977047 0.958039 +vt 0.974460 0.961445 +vt 0.974818 0.948048 +vt 0.974817 0.947067 +vt 0.954321 0.957278 +vt 0.956506 0.959952 +vt 0.959345 0.963138 +vt 0.960467 0.963932 +vt 0.962121 0.964104 +vt 0.962606 0.964817 +vt 0.964018 0.965046 +vt 0.964340 0.965630 +vt 0.970682 0.963063 +vt 0.970480 0.963384 +vt 0.967953 0.966132 +vt 0.969954 0.964293 +vt 0.978152 0.935076 +vt 0.977619 0.940553 +vt 0.978818 0.931304 +vt 0.979501 0.930330 +vt 0.978403 0.934370 +vt 0.976094 0.897541 +vt 0.981719 0.910220 +vt 0.977815 0.901889 +vt 0.981251 0.903772 +vt 0.981835 0.916876 +vt 0.976462 0.900373 +vt 0.981810 0.923383 +vt 0.981051 0.926450 +vt 0.982136 0.922069 +vt 0.973731 0.890980 +vt 0.951598 0.955992 +vt 0.947529 0.952100 +vt 0.946828 0.951097 +vt 0.944613 0.943040 +vt 0.944715 0.936195 +vt 0.943952 0.932508 +vt 0.944317 0.939900 +vt 0.943494 0.925716 +vt 0.943455 0.924083 +vt 0.953112 0.957711 +vt 0.975358 0.948468 +vt 0.976150 0.950044 +vt 0.976937 0.959707 +vt 0.974505 0.963396 +vt 0.971821 0.963179 +vt 0.954688 0.959273 +vt 0.958399 0.962867 +vt 0.957447 0.962642 +vt 0.955523 0.960241 +vt 0.960834 0.963930 +vt 0.963818 0.965767 +vt 0.965034 0.966924 +vt 0.971301 0.963195 +vt 0.970497 0.963045 +vt 0.968687 0.967705 +vt 0.969504 0.965118 +vt 0.967365 0.969298 +vt 0.979637 0.937079 +vt 0.978422 0.941575 +vt 0.976328 0.944390 +vt 0.980662 0.928262 +vt 0.975885 0.946614 +vt 0.981133 0.914592 +vt 0.982539 0.907674 +vt 0.983105 0.913062 +vt 0.979859 0.902349 +vt 0.982572 0.905772 +vt 0.981169 0.925198 +vt 0.981760 0.924338 +vt 0.982521 0.920326 +vt 0.974918 0.889182 +vt 0.973850 0.890394 +vt 0.949109 0.954834 +vt 0.950344 0.956445 +vt 0.952209 0.957655 +vt 0.946932 0.954108 +vt 0.945352 0.951494 +vt 0.945598 0.948990 +vt 0.944461 0.946263 +vt 0.943354 0.934459 +vt 0.942828 0.937059 +vt 0.942508 0.930234 +vt 0.942986 0.927228 +vt 0.943729 0.922973 +vt 0.978373 0.956557 +vt 0.978148 0.960865 +vt 0.976530 0.962246 +vt 0.975159 0.947215 +vt 0.953698 0.959037 +vt 0.956047 0.963471 +vt 0.955812 0.962211 +vt 0.959169 0.964167 +vt 0.960387 0.965039 +vt 0.961298 0.964254 +vt 0.961630 0.964525 +vt 0.961993 0.965660 +vt 0.964630 0.967707 +vt 0.970761 0.963612 +vt 0.970375 0.964369 +vt 0.969005 0.965815 +vt 0.965772 0.971145 +vt 0.980090 0.932887 +vt 0.980840 0.929983 +vt 0.976781 0.892209 +vt 0.977515 0.898948 +vt 0.982464 0.914270 +vt 0.983494 0.911894 +vt 0.980174 0.899041 +vt 0.983953 0.903562 +vt 0.982636 0.924152 +vt 0.982895 0.923122 +vt 0.981667 0.925661 +vt 0.981894 0.927599 +vt 0.983303 0.918984 +vt 0.983268 0.921714 +vt 0.974080 0.889279 +vt 0.973451 0.889548 +vt 0.948357 0.956958 +vt 0.951176 0.957707 +vt 0.947103 0.957441 +vt 0.945764 0.953486 +vt 0.944760 0.949286 +vt 0.943225 0.942484 +vt 0.943649 0.944328 +vt 0.942683 0.933555 +vt 0.942601 0.939313 +vt 0.942645 0.925702 +vt 0.942522 0.923207 +vt 0.952021 0.958722 +vt 0.978228 0.954337 +vt 0.977671 0.962879 +vt 0.976536 0.965891 +vt 0.972826 0.964536 +vt 0.971063 0.964447 +vt 0.953960 0.960904 +vt 0.952293 0.960084 +vt 0.958170 0.963862 +vt 0.956672 0.964325 +vt 0.961201 0.965188 +vt 0.962444 0.967407 +vt 0.968248 0.972113 +vt 0.969985 0.967540 +vt 0.966832 0.973520 +vt 0.970266 0.966367 +vt 0.981257 0.939634 +vt 0.980184 0.935501 +vt 0.977377 0.945665 +vt 0.980931 0.932230 +vt 0.982020 0.932253 +vt 0.977348 0.895531 +vt 0.984736 0.912178 +vt 0.984153 0.918500 +vt 0.981310 0.899166 +vt 0.986132 0.907955 +vt 0.984012 0.929799 +vt 0.974364 0.888070 +vt 0.976808 0.890102 +vt 0.949594 0.957496 +vt 0.947568 0.956778 +vt 0.950400 0.957658 +vt 0.945362 0.955457 +vt 0.944546 0.953715 +vt 0.943350 0.948448 +vt 0.942385 0.934906 +vt 0.941701 0.938202 +vt 0.941627 0.933595 +vt 0.941708 0.928095 +vt 0.941632 0.926842 +vt 0.978379 0.949474 +vt 0.978342 0.951590 +vt 0.979023 0.959364 +vt 0.978727 0.954523 +vt 0.978683 0.965126 +vt 0.977586 0.965815 +vt 0.974617 0.966013 +vt 0.971804 0.964744 +vt 0.957936 0.964664 +vt 0.955753 0.966047 +vt 0.955001 0.963475 +vt 0.954069 0.962035 +vt 0.958459 0.965370 +vt 0.959282 0.965356 +vt 0.960795 0.966790 +vt 0.963387 0.967202 +vt 0.961678 0.966994 +vt 0.963913 0.968708 +vt 0.969365 0.970964 +vt 0.964004 0.975674 +vt 0.980689 0.936981 +vt 0.978964 0.948220 +vt 0.980941 0.934065 +vt 0.978014 0.893650 +vt 0.985838 0.915510 +vt 0.984439 0.916235 +vt 0.980191 0.895937 +vt 0.982014 0.896835 +vt 0.985135 0.899302 +vt 0.986785 0.904022 +vt 0.982646 0.926203 +vt 0.983188 0.924619 +vt 0.983986 0.922666 +vt 0.983699 0.921348 +vt 0.974739 0.885124 +vt 0.973647 0.887839 +vt 0.977044 0.886882 +vt 0.977891 0.891160 +vt 0.949250 0.959333 +vt 0.947647 0.957883 +vt 0.945930 0.958039 +vt 0.941993 0.940149 +vt 0.942724 0.952400 +vt 0.941849 0.936269 +vt 0.941203 0.929512 +vt 0.941520 0.924382 +vt 0.979455 0.952909 +vt 0.979845 0.957183 +vt 0.979200 0.955948 +vt 0.977420 0.967847 +vt 0.971562 0.967475 +vt 0.973842 0.968572 +vt 0.971190 0.965719 +vt 0.952806 0.961092 +vt 0.956748 0.966448 +vt 0.954662 0.965548 +vt 0.957494 0.965567 +vt 0.952685 0.961811 +vt 0.959741 0.965838 +vt 0.960281 0.966222 +vt 0.961419 0.966175 +vt 0.962960 0.968598 +vt 0.961723 0.968822 +vt 0.963460 0.970391 +vt 0.967746 0.975733 +vt 0.968940 0.975404 +vt 0.970791 0.971708 +vt 0.962524 0.973511 +vt 0.967241 0.976109 +vt 0.981409 0.936667 +vt 0.981636 0.945991 +vt 0.982460 0.933999 +vt 0.983233 0.932613 +vt 0.986164 0.911864 +vt 0.986241 0.918343 +vt 0.983993 0.895405 +vt 0.986670 0.900383 +vt 0.987414 0.907115 +vt 0.984061 0.924126 +vt 0.984466 0.928584 +vt 0.974022 0.886619 +vt 0.975762 0.884799 +vt 0.977641 0.889465 +vt 0.973156 0.887426 +vt 0.949769 0.959887 +vt 0.948433 0.958887 +vt 0.947226 0.958168 +vt 0.944648 0.957995 +vt 0.944077 0.955781 +vt 0.942061 0.946709 +vt 0.941581 0.942492 +vt 0.941894 0.948239 +vt 0.941318 0.939563 +vt 0.940583 0.937031 +vt 0.941141 0.933072 +vt 0.940793 0.927468 +vt 0.951023 0.960567 +vt 0.979168 0.950709 +vt 0.980803 0.958913 +vt 0.980960 0.963473 +vt 0.978981 0.966848 +vt 0.976630 0.971865 +vt 0.979534 0.969461 +vt 0.975402 0.968915 +vt 0.956293 0.968227 +vt 0.955158 0.967249 +vt 0.953709 0.963819 +vt 0.953326 0.965339 +vt 0.958996 0.966929 +vt 0.959859 0.967221 +vt 0.963442 0.969188 +vt 0.969703 0.976297 +vt 0.962802 0.975931 +vt 0.964040 0.978493 +vt 0.981990 0.937678 +vt 0.982494 0.941846 +vt 0.981096 0.948749 +vt 0.984163 0.934074 +vt 0.978900 0.890222 +vt 0.979858 0.893649 +vt 0.987387 0.911638 +vt 0.987740 0.916923 +vt 0.985224 0.921690 +vt 0.984404 0.921013 +vt 0.982396 0.892656 +vt 0.983239 0.892587 +vt 0.985175 0.896580 +vt 0.987868 0.908520 +vt 0.983441 0.925465 +vt 0.985672 0.930141 +vt 0.984006 0.927096 +vt 0.973979 0.884253 +vt 0.974995 0.883952 +vt 0.973722 0.886434 +vt 0.978445 0.887212 +vt 0.975166 0.882364 +vt 0.973436 0.886417 +vt 0.949683 0.960978 +vt 0.948927 0.960627 +vt 0.946041 0.959615 +vt 0.943236 0.954878 +vt 0.941354 0.940952 +vt 0.941322 0.950139 +vt 0.940841 0.938929 +vt 0.940644 0.934110 +vt 0.940524 0.929801 +vt 0.940161 0.925742 +vt 0.951482 0.961608 +vt 0.980361 0.951626 +vt 0.980266 0.953970 +vt 0.981967 0.955607 +vt 0.980711 0.965516 +vt 0.978455 0.969890 +vt 0.973301 0.970728 +vt 0.974797 0.971295 +vt 0.957905 0.966815 +vt 0.957146 0.968333 +vt 0.953997 0.967877 +vt 0.953719 0.966147 +vt 0.952939 0.964175 +vt 0.960434 0.969194 +vt 0.961668 0.970991 +vt 0.968590 0.978791 +vt 0.969342 0.977440 +vt 0.971109 0.973543 +vt 0.972283 0.971255 +vt 0.960762 0.975985 +vt 0.966038 0.981937 +vt 0.982997 0.936363 +vt 0.983913 0.942222 +vt 0.983369 0.949017 +vt 0.980993 0.950570 +vt 0.983429 0.934957 +vt 0.985181 0.934935 +vt 0.981426 0.893015 +vt 0.985960 0.921280 +vt 0.984741 0.892930 +vt 0.986560 0.897334 +vt 0.989155 0.907395 +vt 0.984148 0.924944 +vt 0.984990 0.924928 +vt 0.986253 0.927012 +vt 0.984809 0.926524 +vt 0.973620 0.885215 +vt 0.974454 0.882647 +vt 0.979070 0.884921 +vt 0.972955 0.886576 +vt 0.948041 0.960496 +vt 0.946486 0.960545 +vt 0.943863 0.957640 +vt 0.944802 0.960079 +vt 0.943099 0.957131 +vt 0.942052 0.953934 +vt 0.941546 0.947020 +vt 0.941155 0.943968 +vt 0.940853 0.942283 +vt 0.940878 0.948272 +vt 0.940378 0.938951 +vt 0.940119 0.931716 +vt 0.939990 0.928556 +vt 0.950734 0.961706 +vt 0.980209 0.952785 +vt 0.980919 0.954829 +vt 0.982318 0.961164 +vt 0.983017 0.958666 +vt 0.981479 0.965057 +vt 0.979970 0.968664 +vt 0.977877 0.971581 +vt 0.975829 0.972521 +vt 0.979161 0.971037 +vt 0.974080 0.971165 +vt 0.951336 0.962396 +vt 0.956261 0.970286 +vt 0.955171 0.970398 +vt 0.952999 0.966845 +vt 0.952588 0.962872 +vt 0.959013 0.969142 +vt 0.959806 0.972199 +vt 0.967426 0.977813 +vt 0.969120 0.980099 +vt 0.970465 0.977310 +vt 0.972361 0.973586 +vt 0.962381 0.977689 +vt 0.965048 0.984834 +vt 0.983174 0.938509 +vt 0.984587 0.943224 +vt 0.982712 0.952702 +vt 0.983818 0.935747 +vt 0.980548 0.891940 +vt 0.989083 0.911473 +vt 0.988369 0.922262 +vt 0.986315 0.922924 +vt 0.982375 0.890406 +vt 0.984798 0.890361 +vt 0.986367 0.893730 +vt 0.988923 0.909994 +vt 0.986955 0.934251 +vt 0.987669 0.932414 +vt 0.973441 0.884211 +vt 0.973855 0.882469 +vt 0.980641 0.889114 +vt 0.979025 0.882455 +vt 0.973192 0.884484 +vt 0.949320 0.962289 +vt 0.948320 0.961845 +vt 0.945335 0.961320 +vt 0.943672 0.959664 +vt 0.941901 0.957716 +vt 0.941054 0.945872 +vt 0.940714 0.952789 +vt 0.940388 0.950417 +vt 0.940028 0.936394 +vt 0.940004 0.939059 +vt 0.939838 0.933008 +vt 0.940086 0.929625 +vt 0.939793 0.925643 +vt 0.981019 0.952901 +vt 0.981013 0.951941 +vt 0.980921 0.953625 +vt 0.982106 0.963830 +vt 0.981314 0.953991 +vt 0.984038 0.956909 +vt 0.981254 0.966363 +vt 0.980934 0.967769 +vt 0.980923 0.968659 +vt 0.977740 0.973407 +vt 0.976099 0.974285 +vt 0.980964 0.969963 +vt 0.973264 0.973036 +vt 0.975538 0.974808 +vt 0.974548 0.971882 +vt 0.951770 0.963051 +vt 0.956971 0.972422 +vt 0.953979 0.970688 +vt 0.951860 0.964467 +vt 0.952089 0.965979 +vt 0.952136 0.963804 +vt 0.969830 0.980544 +vt 0.970681 0.979805 +vt 0.972198 0.975556 +vt 0.960728 0.977316 +vt 0.959477 0.975101 +vt 0.962362 0.978910 +vt 0.967368 0.983285 +vt 0.963977 0.983871 +vt 0.966569 0.984990 +vt 0.984241 0.937946 +vt 0.984547 0.940848 +vt 0.984887 0.946741 +vt 0.984499 0.953330 +vt 0.981523 0.953104 +vt 0.989272 0.913627 +vt 0.989578 0.920047 +vt 0.987244 0.894787 +vt 0.989650 0.908518 +vt 0.986567 0.936261 +vt 0.987959 0.927062 +vt 0.986357 0.925046 +vt 0.973531 0.882764 +vt 0.973787 0.880505 +vt 0.974002 0.879842 +vt 0.982562 0.886956 +vt 0.981497 0.880615 +vt 0.975580 0.879072 +vt 0.950545 0.962169 +vt 0.950051 0.962575 +vt 0.947246 0.963030 +vt 0.946296 0.962301 +vt 0.944685 0.961289 +vt 0.942281 0.959930 +vt 0.941514 0.955227 +vt 0.940688 0.943477 +vt 0.940504 0.944490 +vt 0.940090 0.948088 +vt 0.939739 0.938200 +vt 0.939745 0.934897 +vt 0.940152 0.941891 +vt 0.939858 0.940245 +vt 0.939107 0.932919 +vt 0.938826 0.930837 +vt 0.939162 0.928650 +vt 0.950590 0.962682 +vt 0.984105 0.960824 +vt 0.983605 0.963216 +vt 0.982312 0.965990 +vt 0.978493 0.973329 +vt 0.978879 0.972103 +vt 0.980384 0.971665 +vt 0.974155 0.973825 +vt 0.974928 0.974333 +vt 0.951318 0.964064 +vt 0.955706 0.972296 +vt 0.954728 0.972454 +vt 0.952873 0.968612 +vt 0.951899 0.967175 +vt 0.971195 0.977758 +vt 0.973053 0.975631 +vt 0.973661 0.975111 +vt 0.960235 0.978081 +vt 0.961049 0.978603 +vt 0.959165 0.977333 +vt 0.957964 0.974592 +vt 0.963556 0.986661 +vt 0.965704 0.988775 +vt 0.985843 0.941296 +vt 0.986198 0.951231 +vt 0.985862 0.943823 +vt 0.989678 0.911313 +vt 0.988005 0.924464 +vt 0.990383 0.922488 +vt 0.983403 0.888086 +vt 0.986463 0.890942 +vt 0.986806 0.893527 +vt 0.987109 0.936228 +vt 0.987644 0.936106 +vt 0.989351 0.928685 +vt 0.973189 0.882360 +vt 0.973469 0.881088 +vt 0.974715 0.878088 +vt 0.979181 0.880037 +vt 0.977337 0.878927 +vt 0.949844 0.963562 +vt 0.948209 0.963092 +vt 0.943916 0.962354 +vt 0.941353 0.958499 +vt 0.941143 0.956899 +vt 0.940498 0.946102 +vt 0.940390 0.943231 +vt 0.940764 0.955134 +vt 0.939900 0.952212 +vt 0.939651 0.950698 +vt 0.939137 0.937483 +vt 0.939543 0.936443 +vt 0.939484 0.939559 +vt 0.938903 0.927296 +vt 0.981143 0.953390 +vt 0.983229 0.965456 +vt 0.981310 0.953292 +vt 0.985283 0.960025 +vt 0.981600 0.967554 +vt 0.981863 0.966865 +vt 0.981560 0.968742 +vt 0.981737 0.970002 +vt 0.977213 0.976397 +vt 0.976090 0.975847 +vt 0.982405 0.972901 +vt 0.974735 0.975603 +vt 0.951809 0.963786 +vt 0.955620 0.973567 +vt 0.954312 0.973450 +vt 0.952200 0.968981 +vt 0.951258 0.965432 +vt 0.970171 0.982657 +vt 0.971818 0.979378 +vt 0.972024 0.977286 +vt 0.972667 0.976789 +vt 0.961305 0.980156 +vt 0.962608 0.985923 +vt 0.968079 0.986236 +vt 0.964519 0.989215 +vt 0.967608 0.987692 +vt 0.987660 0.946173 +vt 0.986091 0.957181 +vt 0.990938 0.915641 +vt 0.990500 0.913825 +vt 0.989921 0.925134 +vt 0.991309 0.921753 +vt 0.985822 0.889119 +vt 0.986773 0.939409 +vt 0.987139 0.937124 +vt 0.989322 0.934370 +vt 0.991339 0.925789 +vt 0.988704 0.931496 +vt 0.973437 0.879454 +vt 0.973642 0.880478 +vt 0.974275 0.877273 +vt 0.983022 0.882150 +vt 0.979894 0.878920 +vt 0.975995 0.876417 +vt 0.974787 0.876042 +vt 0.950235 0.963188 +vt 0.949501 0.964434 +vt 0.947457 0.964096 +vt 0.946536 0.963279 +vt 0.945893 0.963682 +vt 0.942859 0.962185 +vt 0.940793 0.959957 +vt 0.940038 0.945314 +vt 0.939931 0.954762 +vt 0.939398 0.948351 +vt 0.939204 0.938615 +vt 0.938952 0.935237 +vt 0.939903 0.943838 +vt 0.939548 0.942441 +vt 0.939452 0.940852 +vt 0.938669 0.933980 +vt 0.938668 0.929704 +vt 0.939326 0.925731 +vt 0.938697 0.928073 +vt 0.950512 0.963850 +vt 0.984826 0.963720 +vt 0.984594 0.965473 +vt 0.985129 0.962867 +vt 0.983515 0.967625 +vt 0.982158 0.967514 +vt 0.979155 0.975568 +vt 0.974441 0.978907 +vt 0.956243 0.976437 +vt 0.953421 0.973015 +vt 0.951049 0.966736 +vt 0.971310 0.980647 +vt 0.969996 0.984469 +vt 0.973372 0.975885 +vt 0.973391 0.976377 +vt 0.959840 0.978771 +vt 0.957416 0.976738 +vt 0.962231 0.982121 +vt 0.968725 0.985980 +vt 0.968666 0.988607 +vt 0.987422 0.942626 +vt 0.987995 0.944012 +vt 0.988488 0.956529 +vt 0.991288 0.923589 +vt 0.985450 0.884622 +vt 0.983729 0.885555 +vt 0.987976 0.890829 +vt 0.986816 0.888032 +vt 0.987986 0.940217 +vt 0.988824 0.936329 +vt 0.991474 0.928403 +vt 0.990775 0.932993 +vt 0.972923 0.880553 +vt 0.973450 0.878562 +vt 0.982919 0.877572 +vt 0.979096 0.876534 +vt 0.980608 0.878089 +vt 0.977186 0.876529 +vt 0.975267 0.875340 +vt 0.950044 0.964740 +vt 0.949327 0.964929 +vt 0.941746 0.961981 +vt 0.944115 0.965033 +vt 0.945213 0.964872 +vt 0.940666 0.957801 +vt 0.940036 0.956360 +vt 0.939102 0.951622 +vt 0.939588 0.953629 +vt 0.939718 0.946051 +vt 0.939086 0.949785 +vt 0.939631 0.947094 +vt 0.938842 0.938838 +vt 0.939079 0.939675 +vt 0.939040 0.940899 +vt 0.938286 0.932987 +vt 0.938411 0.930882 +vt 0.938802 0.925767 +vt 0.938479 0.927682 +vt 0.950751 0.965172 +vt 0.984037 0.966622 +vt 0.986178 0.960031 +vt 0.985725 0.962155 +vt 0.982333 0.968710 +vt 0.982511 0.971201 +vt 0.977508 0.978158 +vt 0.974514 0.980532 +vt 0.981472 0.976627 +vt 0.973959 0.975939 +vt 0.973794 0.978074 +vt 0.954323 0.975726 +vt 0.952682 0.973602 +vt 0.950374 0.969254 +vt 0.971746 0.981820 +vt 0.971473 0.985407 +vt 0.972617 0.978197 +vt 0.972099 0.980291 +vt 0.973168 0.977451 +vt 0.958865 0.978818 +vt 0.961126 0.982742 +vt 0.959099 0.980683 +vt 0.967656 0.992016 +vt 0.987338 0.959706 +vt 0.991696 0.920175 +vt 0.992393 0.923198 +vt 0.986791 0.886770 +vt 0.988539 0.937699 +vt 0.990305 0.937852 +vt 0.990714 0.930721 +vt 0.992010 0.927411 +vt 0.973255 0.877971 +vt 0.973742 0.877554 +vt 0.974141 0.875560 +vt 0.985222 0.881215 +vt 0.981590 0.877350 +vt 0.983819 0.878276 +vt 0.980095 0.877255 +vt 0.977063 0.874680 +vt 0.975274 0.874531 +vt 0.974582 0.874718 +vt 0.947680 0.965530 +vt 0.946255 0.964594 +vt 0.941269 0.962603 +vt 0.942974 0.963943 +vt 0.940868 0.961373 +vt 0.940080 0.958440 +vt 0.939578 0.945022 +vt 0.939433 0.955598 +vt 0.939374 0.952550 +vt 0.938848 0.948332 +vt 0.939143 0.947388 +vt 0.938476 0.935200 +vt 0.938999 0.939069 +vt 0.938586 0.937349 +vt 0.939156 0.944233 +vt 0.939050 0.941634 +vt 0.939130 0.940951 +vt 0.937894 0.934186 +vt 0.938246 0.929693 +vt 0.939244 0.924002 +vt 0.938415 0.926431 +vt 0.985730 0.964484 +vt 0.985089 0.967424 +vt 0.986634 0.960066 +vt 0.986217 0.961559 +vt 0.986398 0.963554 +vt 0.983098 0.969040 +vt 0.984542 0.967878 +vt 0.982812 0.970127 +vt 0.983232 0.971456 +vt 0.977717 0.981080 +vt 0.979260 0.980956 +vt 0.975360 0.981396 +vt 0.973711 0.979015 +vt 0.980818 0.980514 +vt 0.982080 0.978675 +vt 0.951411 0.973429 +vt 0.949748 0.967407 +vt 0.950038 0.966087 +vt 0.957247 0.977452 +vt 0.969787 0.987625 +vt 0.972838 0.978734 +vt 0.972720 0.979527 +vt 0.959713 0.982267 +vt 0.960722 0.986252 +vt 0.988589 0.940822 +vt 0.988795 0.943253 +vt 0.988239 0.960657 +vt 0.988207 0.882169 +vt 0.988592 0.889390 +vt 0.991030 0.934232 +vt 0.991523 0.936169 +vt 0.991500 0.931060 +vt 0.993924 0.924818 +vt 0.991653 0.931562 +vt 0.972497 0.878878 +vt 0.973963 0.876751 +vt 0.982555 0.876616 +vt 0.983382 0.876855 +vt 0.978289 0.875108 +vt 0.980108 0.876114 +vt 0.980880 0.876791 +vt 0.976255 0.874613 +vt 0.949120 0.965476 +vt 0.942872 0.965354 +vt 0.944823 0.966390 +vt 0.946086 0.966237 +vt 0.940103 0.960448 +vt 0.939343 0.957205 +vt 0.938889 0.953009 +vt 0.938601 0.950881 +vt 0.939206 0.953404 +vt 0.938588 0.949221 +vt 0.938215 0.937965 +vt 0.938931 0.942818 +vt 0.938746 0.940148 +vt 0.938876 0.941022 +vt 0.937721 0.930938 +vt 0.938817 0.924170 +vt 0.938589 0.925895 +vt 0.938089 0.927920 +vt 0.938198 0.926731 +vt 0.986576 0.964144 +vt 0.985568 0.966215 +vt 0.986518 0.961021 +vt 0.986499 0.962406 +vt 0.982517 0.968309 +vt 0.983516 0.973203 +vt 0.974845 0.981944 +vt 0.973708 0.981350 +vt 0.973103 0.978639 +vt 0.955712 0.977390 +vt 0.953368 0.976680 +vt 0.950245 0.977196 +vt 0.949661 0.971390 +vt 0.947549 0.969089 +vt 0.972796 0.981308 +vt 0.973079 0.990453 +vt 0.971548 0.992123 +vt 0.957560 0.979211 +vt 0.960051 0.985258 +vt 0.958459 0.981825 +vt 0.968468 0.993492 +vt 0.986974 0.962087 +vt 0.987206 0.878501 +vt 0.989171 0.883689 +vt 0.989588 0.892443 +vt 0.992087 0.939265 +vt 0.990380 0.940460 +vt 0.992880 0.928763 +vt 0.973455 0.876358 +vt 0.972742 0.876103 +vt 0.973934 0.873804 +vt 0.973655 0.875045 +vt 0.984379 0.877775 +vt 0.981843 0.875746 +vt 0.979599 0.874767 +vt 0.980889 0.876095 +vt 0.981178 0.876069 +vt 0.976752 0.871913 +vt 0.978035 0.873831 +vt 0.974630 0.872633 +vt 0.940935 0.963406 +vt 0.944494 0.967935 +vt 0.939459 0.958928 +vt 0.938790 0.954660 +vt 0.938432 0.952078 +vt 0.938485 0.950145 +vt 0.939016 0.945904 +vt 0.938247 0.948297 +vt 0.938704 0.947447 +vt 0.938147 0.935469 +vt 0.937849 0.936771 +vt 0.938676 0.943813 +vt 0.938738 0.941903 +vt 0.936741 0.931069 +vt 0.937851 0.929475 +vt 0.938508 0.925510 +vt 0.938939 0.922563 +vt 0.937851 0.926710 +vt 0.986780 0.965201 +vt 0.984681 0.969057 +vt 0.986100 0.967425 +vt 0.987364 0.963665 +vt 0.984256 0.968717 +vt 0.983698 0.970122 +vt 0.984336 0.971854 +vt 0.979092 0.983235 +vt 0.976407 0.983848 +vt 0.980179 0.981519 +vt 0.975027 0.983124 +vt 0.982761 0.982544 +vt 0.983965 0.974802 +vt 0.954989 0.979533 +vt 0.954027 0.977886 +vt 0.948607 0.974548 +vt 0.974326 0.985420 +vt 0.970907 0.993202 +vt 0.959234 0.983958 +vt 0.990200 0.942928 +vt 0.986000 0.879647 +vt 0.989325 0.879023 +vt 0.990700 0.891192 +vt 0.989493 0.884981 +vt 0.992293 0.935179 +vt 0.991491 0.939356 +vt 0.992368 0.932259 +vt 0.974111 0.872483 +vt 0.981597 0.874385 +vt 0.982882 0.873657 +vt 0.984203 0.876598 +vt 0.978507 0.874148 +vt 0.980704 0.875154 +vt 0.977721 0.872203 +vt 0.942450 0.966714 +vt 0.945200 0.968149 +vt 0.940000 0.962096 +vt 0.939097 0.960306 +vt 0.938462 0.958092 +vt 0.938137 0.953534 +vt 0.938039 0.951098 +vt 0.938765 0.944935 +vt 0.938588 0.946066 +vt 0.937891 0.941919 +vt 0.937544 0.938241 +vt 0.938324 0.942874 +vt 0.937248 0.934821 +vt 0.937268 0.929373 +vt 0.938359 0.924543 +vt 0.938569 0.923537 +vt 0.938117 0.925554 +vt 0.937708 0.928152 +vt 0.988221 0.964972 +vt 0.984292 0.974194 +vt 0.980116 0.983690 +vt 0.974294 0.983482 +vt 0.981232 0.983696 +vt 0.982646 0.978522 +vt 0.953903 0.980237 +vt 0.948551 0.977364 +vt 0.947615 0.971415 +vt 0.972305 0.993427 +vt 0.975144 0.991252 +vt 0.971960 0.994918 +vt 0.955495 0.980837 +vt 0.957856 0.985537 +vt 0.969988 0.994547 +vt 0.986404 0.877700 +vt 0.989537 0.875926 +vt 0.990811 0.881421 +vt 0.991113 0.893959 +vt 0.990747 0.883464 +vt 0.991642 0.941620 +vt 0.973108 0.874592 +vt 0.973545 0.873375 +vt 0.984732 0.877110 +vt 0.978824 0.873229 +vt 0.980269 0.872548 +vt 0.977191 0.868335 +vt 0.974213 0.870741 +vt 0.943139 0.970220 +vt 0.944511 0.971817 +vt 0.939996 0.963621 +vt 0.938317 0.954873 +vt 0.937702 0.952147 +vt 0.937266 0.949070 +vt 0.938228 0.946768 +vt 0.936505 0.938059 +vt 0.938244 0.945057 +vt 0.933840 0.932136 +vt 0.936624 0.928284 +vt 0.938457 0.922873 +vt 0.937411 0.924901 +vt 0.985443 0.971004 +vt 0.978319 0.984629 +vt 0.979794 0.987279 +vt 0.975662 0.985674 +vt 0.981275 0.985733 +vt 0.982782 0.984267 +vt 0.983987 0.981960 +vt 0.984260 0.978765 +vt 0.985272 0.976111 +vt 0.951278 0.979340 +vt 0.949765 0.980829 +vt 0.947426 0.975020 +vt 0.973384 0.992757 +vt 0.974527 0.992173 +vt 0.958267 0.987172 +vt 0.987103 0.875752 +vt 0.990239 0.876764 +vt 0.988659 0.873716 +vt 0.990412 0.878831 +vt 0.990777 0.885394 +vt 0.992560 0.891136 +vt 0.972408 0.874437 +vt 0.973812 0.870687 +vt 0.981944 0.871692 +vt 0.984212 0.873626 +vt 0.978876 0.871048 +vt 0.939881 0.966920 +vt 0.941975 0.971756 +vt 0.944000 0.970325 +vt 0.937561 0.961750 +vt 0.936665 0.958592 +vt 0.934752 0.934649 +vt 0.937216 0.942102 +vt 0.937783 0.944039 +vt 0.935270 0.930782 +vt 0.937910 0.924331 +vt 0.938248 0.923683 +vt 0.938922 0.921330 +vt 0.937099 0.926062 +vt 0.977346 0.986040 +vt 0.981023 0.990897 +vt 0.981934 0.984793 +vt 0.983791 0.984566 +vt 0.951633 0.982122 +vt 0.948372 0.981214 +vt 0.946647 0.979783 +vt 0.946953 0.973226 +vt 0.973365 0.994691 +vt 0.976558 0.989583 +vt 0.975482 0.994114 +vt 0.972766 0.995746 +vt 0.956573 0.986719 +vt 0.954651 0.983200 +vt 0.956872 0.987196 +vt 0.985417 0.876542 +vt 0.985796 0.875997 +vt 0.989813 0.874072 +vt 0.992164 0.879986 +vt 0.991690 0.882202 +vt 0.991630 0.887817 +vt 0.992437 0.884439 +vt 0.973026 0.873007 +vt 0.973186 0.871698 +vt 0.983463 0.872475 +vt 0.980371 0.868981 +vt 0.974197 0.869390 +vt 0.940335 0.969629 +vt 0.942810 0.972384 +vt 0.943512 0.971557 +vt 0.938084 0.964566 +vt 0.936457 0.954020 +vt 0.934002 0.950969 +vt 0.935387 0.938574 +vt 0.932824 0.936162 +vt 0.934005 0.928584 +vt 0.934870 0.927150 +vt 0.937965 0.922798 +vt 0.938405 0.921738 +vt 0.936204 0.924395 +vt 0.937293 0.923941 +vt 0.978599 0.989435 +vt 0.978011 0.988951 +vt 0.980369 0.993282 +vt 0.982319 0.988564 +vt 0.982640 0.986214 +vt 0.983370 0.986832 +vt 0.985293 0.979213 +vt 0.983915 0.984619 +vt 0.953216 0.984819 +vt 0.948731 0.983003 +vt 0.946308 0.975374 +vt 0.974511 0.995132 +vt 0.976646 0.992199 +vt 0.976313 0.994591 +vt 0.957381 0.989189 +vt 0.985524 0.874003 +vt 0.987228 0.873437 +vt 0.991285 0.877036 +vt 0.990727 0.874272 +vt 0.989557 0.872654 +vt 0.993461 0.888073 +vt 0.972649 0.872328 +vt 0.973330 0.869652 +vt 0.983183 0.868984 +vt 0.985611 0.872771 +vt 0.979257 0.864489 +vt 0.973754 0.869038 +vt 0.937578 0.969624 +vt 0.942393 0.975601 +vt 0.940337 0.972574 +vt 0.943976 0.972475 +vt 0.936466 0.963888 +vt 0.935487 0.962175 +vt 0.934871 0.954293 +vt 0.934771 0.947252 +vt 0.936740 0.943953 +vt 0.935209 0.942989 +vt 0.934469 0.936254 +vt 0.932744 0.932667 +vt 0.933297 0.930152 +vt 0.935768 0.925909 +vt 0.938552 0.920364 +vt 0.981073 0.994397 +vt 0.983558 0.991470 +vt 0.984154 0.987267 +vt 0.984948 0.982471 +vt 0.952157 0.984605 +vt 0.950911 0.983934 +vt 0.947747 0.983461 +vt 0.949539 0.986653 +vt 0.944655 0.979828 +vt 0.978192 0.992729 +vt 0.975645 0.995246 +vt 0.974967 0.994788 +vt 0.956152 0.989919 +vt 0.954592 0.986058 +vt 0.988316 0.869525 +vt 0.990193 0.872594 +vt 0.993361 0.875026 +vt 0.972836 0.869976 +vt 0.981644 0.866066 +vt 0.974840 0.861568 +vt 0.974024 0.868356 +vt 0.943354 0.972861 +vt 0.940764 0.974734 +vt 0.944289 0.977270 +vt 0.944171 0.974458 +vt 0.937517 0.967229 +vt 0.936730 0.965567 +vt 0.934238 0.961657 +vt 0.934479 0.958517 +vt 0.932577 0.954170 +vt 0.933152 0.949207 +vt 0.934207 0.940012 +vt 0.931798 0.934362 +vt 0.932549 0.938894 +vt 0.934486 0.925756 +vt 0.933203 0.928368 +vt 0.938043 0.920230 +vt 0.938815 0.920004 +vt 0.934992 0.924652 +vt 0.937029 0.922175 +vt 0.979862 0.994002 +vt 0.983776 0.993169 +vt 0.984433 0.989615 +vt 0.985377 0.987088 +vt 0.951703 0.986787 +vt 0.945820 0.982761 +vt 0.947853 0.986300 +vt 0.975342 0.995156 +vt 0.976291 0.995640 +vt 0.974823 0.995602 +vt 0.954998 0.987709 +vt 0.953165 0.986439 +vt 0.985781 0.871512 +vt 0.991766 0.874190 +vt 0.991145 0.872063 +vt 0.989039 0.868807 +vt 0.990127 0.870132 +vt 0.993253 0.881594 +vt 0.993862 0.880647 +vt 0.973042 0.868669 +vt 0.973423 0.868104 +vt 0.981878 0.862896 +vt 0.979435 0.859267 +vt 0.973763 0.867994 +vt 0.939059 0.973137 +vt 0.940069 0.978166 +vt 0.943475 0.973425 +vt 0.940039 0.974985 +vt 0.936558 0.968914 +vt 0.934901 0.964573 +vt 0.934123 0.956794 +vt 0.932906 0.946906 +vt 0.933287 0.942469 +vt 0.930921 0.935535 +vt 0.931334 0.931572 +vt 0.932327 0.930430 +vt 0.931648 0.937598 +vt 0.933483 0.926729 +vt 0.937378 0.920339 +vt 0.938148 0.918688 +vt 0.938655 0.918010 +vt 0.939118 0.919346 +vt 0.935572 0.923470 +vt 0.978621 0.992579 +vt 0.979819 0.995668 +vt 0.985311 0.988366 +vt 0.950608 0.986737 +vt 0.946446 0.984538 +vt 0.948789 0.989923 +vt 0.943943 0.983074 +vt 0.942690 0.980186 +vt 0.976975 0.994867 +vt 0.953529 0.988067 +vt 0.986571 0.867042 +vt 0.989222 0.867426 +vt 0.994089 0.883700 +vt 0.992010 0.871481 +vt 0.983274 0.865229 +vt 0.984791 0.866356 +vt 0.976440 0.860571 +vt 0.974046 0.865346 +vt 0.938393 0.972672 +vt 0.942742 0.977299 +vt 0.943148 0.975809 +vt 0.943622 0.976562 +vt 0.936667 0.970136 +vt 0.935675 0.966293 +vt 0.932966 0.959743 +vt 0.931553 0.961709 +vt 0.933344 0.957292 +vt 0.931510 0.949762 +vt 0.932585 0.940798 +vt 0.930823 0.934007 +vt 0.930611 0.931922 +vt 0.931030 0.939582 +vt 0.933890 0.925195 +vt 0.932077 0.929100 +vt 0.932356 0.927189 +vt 0.934398 0.923895 +vt 0.937598 0.919070 +vt 0.935959 0.920104 +vt 0.978395 0.994820 +vt 0.979339 0.994640 +vt 0.985984 0.991639 +vt 0.986089 0.988736 +vt 0.952131 0.988514 +vt 0.950538 0.989595 +vt 0.944742 0.986612 +vt 0.947073 0.989402 +vt 0.950033 0.990876 +vt 0.946510 0.986796 +vt 0.953682 0.988872 +vt 0.989859 0.867046 +vt 0.993285 0.870394 +vt 0.972990 0.867422 +vt 0.973279 0.866010 +vt 0.982484 0.860127 +vt 0.983044 0.861688 +vt 0.977489 0.857701 +vt 0.973704 0.866255 +vt 0.938353 0.973812 +vt 0.937456 0.970841 +vt 0.941201 0.979336 +vt 0.938898 0.976743 +vt 0.936261 0.969396 +vt 0.934500 0.967210 +vt 0.933324 0.966673 +vt 0.932342 0.957074 +vt 0.930592 0.952115 +vt 0.930706 0.945987 +vt 0.932161 0.944077 +vt 0.930447 0.942262 +vt 0.930210 0.937131 +vt 0.929975 0.934445 +vt 0.930875 0.931214 +vt 0.931421 0.930138 +vt 0.932870 0.924535 +vt 0.936650 0.917429 +vt 0.937857 0.916642 +vt 0.938968 0.917154 +vt 0.934027 0.921640 +vt 0.986281 0.986837 +vt 0.951369 0.987802 +vt 0.948961 0.992258 +vt 0.942916 0.983746 +vt 0.944051 0.985363 +vt 0.985526 0.864154 +vt 0.987509 0.865034 +vt 0.990543 0.867873 +vt 0.989796 0.864293 +vt 0.991975 0.868944 +vt 0.984420 0.864170 +vt 0.982293 0.857457 +vt 0.976739 0.858668 +vt 0.978452 0.854458 +vt 0.973503 0.865535 +vt 0.936764 0.971931 +vt 0.935798 0.973206 +vt 0.940998 0.981201 +vt 0.938631 0.978590 +vt 0.935613 0.968612 +vt 0.936127 0.970943 +vt 0.932270 0.967311 +vt 0.931584 0.955290 +vt 0.929605 0.949498 +vt 0.930217 0.932965 +vt 0.930773 0.930922 +vt 0.930025 0.941131 +vt 0.929393 0.939445 +vt 0.933534 0.923358 +vt 0.931592 0.928580 +vt 0.937170 0.915733 +vt 0.938402 0.916075 +vt 0.933994 0.917716 +vt 0.935557 0.915723 +vt 0.951302 0.991194 +vt 0.946129 0.987477 +vt 0.948025 0.992995 +vt 0.950095 0.992994 +vt 0.943022 0.986295 +vt 0.942252 0.984229 +vt 0.944008 0.986839 +vt 0.984905 0.864850 +vt 0.991511 0.866167 +vt 0.990945 0.864664 +vt 0.993120 0.867083 +vt 0.973010 0.863954 +vt 0.983984 0.859549 +vt 0.981460 0.853898 +vt 0.985111 0.863538 +vt 0.976729 0.857556 +vt 0.976094 0.858804 +vt 0.976855 0.855617 +vt 0.973624 0.864291 +vt 0.936679 0.975750 +vt 0.939331 0.980990 +vt 0.937098 0.977767 +vt 0.935456 0.970180 +vt 0.934746 0.968557 +vt 0.933465 0.968377 +vt 0.930995 0.957871 +vt 0.931170 0.966708 +vt 0.928667 0.954635 +vt 0.929857 0.954949 +vt 0.929154 0.946441 +vt 0.928342 0.933985 +vt 0.929461 0.932986 +vt 0.930177 0.932241 +vt 0.930072 0.931528 +vt 0.930958 0.929255 +vt 0.928394 0.944513 +vt 0.928578 0.940280 +vt 0.932438 0.922814 +vt 0.937925 0.914380 +vt 0.938497 0.914719 +vt 0.933151 0.920604 +vt 0.944746 0.986917 +vt 0.945748 0.988789 +vt 0.946990 0.992439 +vt 0.942617 0.986093 +vt 0.941738 0.982624 +vt 0.943423 0.986103 +vt 0.987030 0.860834 +vt 0.991089 0.861605 +vt 0.973226 0.864017 +vt 0.984844 0.860904 +vt 0.983715 0.856581 +vt 0.975740 0.860684 +vt 0.976110 0.853409 +vt 0.974095 0.864000 +vt 0.935490 0.971769 +vt 0.935242 0.974768 +vt 0.940316 0.982888 +vt 0.936283 0.979197 +vt 0.930611 0.960080 +vt 0.933744 0.969552 +vt 0.930532 0.969944 +vt 0.930268 0.962867 +vt 0.928042 0.951401 +vt 0.928351 0.948615 +vt 0.928792 0.933334 +vt 0.927611 0.934821 +vt 0.929636 0.932630 +vt 0.929132 0.929765 +vt 0.930258 0.929347 +vt 0.929368 0.941230 +vt 0.930166 0.927584 +vt 0.931154 0.925571 +vt 0.937161 0.913391 +vt 0.938814 0.913704 +vt 0.934754 0.915646 +vt 0.932931 0.917105 +vt 0.945067 0.988020 +vt 0.945891 0.991165 +vt 0.942591 0.987154 +vt 0.942005 0.986248 +vt 0.941852 0.984064 +vt 0.943221 0.987506 +vt 0.944310 0.988464 +vt 0.987901 0.860682 +vt 0.992018 0.864412 +vt 0.990474 0.860905 +vt 0.973081 0.862254 +vt 0.985218 0.859716 +vt 0.984806 0.854772 +vt 0.984914 0.858183 +vt 0.985978 0.860265 +vt 0.975797 0.857344 +vt 0.975326 0.862727 +vt 0.975461 0.859881 +vt 0.975444 0.855406 +vt 0.973929 0.862763 +vt 0.974474 0.864290 +vt 0.935967 0.977252 +vt 0.934614 0.973424 +vt 0.941188 0.984097 +vt 0.939460 0.984315 +vt 0.936522 0.978208 +vt 0.934713 0.970164 +vt 0.929449 0.957326 +vt 0.930940 0.961914 +vt 0.934384 0.971011 +vt 0.929697 0.965268 +vt 0.927741 0.955300 +vt 0.927616 0.947482 +vt 0.928837 0.931803 +vt 0.926429 0.933958 +vt 0.929433 0.931810 +vt 0.927519 0.937387 +vt 0.932387 0.921021 +vt 0.931007 0.922590 +vt 0.934937 0.913354 +vt 0.938335 0.913825 +vt 0.937951 0.912971 +vt 0.933747 0.914706 +vt 0.945372 0.989427 +vt 0.945071 0.992521 +vt 0.989585 0.858842 +vt 0.991007 0.859855 +vt 0.992573 0.863313 +vt 0.993010 0.864975 +vt 0.973234 0.863149 +vt 0.973419 0.863318 +vt 0.974973 0.859027 +vt 0.974777 0.862370 +vt 0.975060 0.854139 +vt 0.974454 0.862536 +vt 0.934405 0.976129 +vt 0.940450 0.985075 +vt 0.937974 0.983910 +vt 0.935537 0.978072 +vt 0.929884 0.960603 +vt 0.929448 0.968893 +vt 0.933772 0.972839 +vt 0.929431 0.961085 +vt 0.928564 0.956934 +vt 0.927162 0.951670 +vt 0.927502 0.949762 +vt 0.928401 0.931074 +vt 0.926565 0.930157 +vt 0.929076 0.930576 +vt 0.928048 0.942951 +vt 0.927309 0.944333 +vt 0.927770 0.940469 +vt 0.930858 0.921275 +vt 0.930121 0.925002 +vt 0.935546 0.912413 +vt 0.937821 0.911943 +vt 0.938497 0.912807 +vt 0.934375 0.914106 +vt 0.932100 0.915278 +vt 0.930758 0.917391 +vt 0.943992 0.989715 +vt 0.944259 0.991372 +vt 0.942755 0.988840 +vt 0.942118 0.987518 +vt 0.941030 0.987523 +vt 0.987533 0.858221 +vt 0.990274 0.858267 +vt 0.973351 0.862278 +vt 0.986085 0.854600 +vt 0.974834 0.863514 +vt 0.974345 0.851559 +vt 0.974102 0.856796 +vt 0.974072 0.861054 +vt 0.940093 0.986650 +vt 0.938648 0.986368 +vt 0.936161 0.982550 +vt 0.935256 0.980324 +vt 0.929743 0.970221 +vt 0.928113 0.967097 +vt 0.931643 0.976046 +vt 0.928326 0.962197 +vt 0.928053 0.959267 +vt 0.926681 0.953231 +vt 0.927593 0.950777 +vt 0.927096 0.949005 +vt 0.925107 0.931526 +vt 0.925609 0.936569 +vt 0.929243 0.926922 +vt 0.928819 0.929780 +vt 0.926981 0.946790 +vt 0.926794 0.938260 +vt 0.930418 0.923107 +vt 0.934411 0.911167 +vt 0.937327 0.910893 +vt 0.938189 0.912072 +vt 0.939003 0.912372 +vt 0.933054 0.911451 +vt 0.943958 0.992876 +vt 0.989520 0.855340 +vt 0.993021 0.860684 +vt 0.990884 0.857371 +vt 0.993265 0.863245 +vt 0.973240 0.861015 +vt 0.984215 0.849560 +vt 0.974425 0.853287 +vt 0.974187 0.854602 +vt 0.973609 0.861505 +vt 0.934690 0.978219 +vt 0.932831 0.976642 +vt 0.937845 0.986303 +vt 0.936766 0.986460 +vt 0.929592 0.972082 +vt 0.928011 0.970417 +vt 0.926904 0.957177 +vt 0.925843 0.953166 +vt 0.925644 0.952004 +vt 0.927016 0.950357 +vt 0.927163 0.949569 +vt 0.927826 0.929319 +vt 0.924809 0.934528 +vt 0.925764 0.927949 +vt 0.926949 0.943075 +vt 0.927334 0.941814 +vt 0.926077 0.945807 +vt 0.926911 0.940782 +vt 0.930014 0.919376 +vt 0.929390 0.924093 +vt 0.930048 0.921896 +vt 0.936099 0.909094 +vt 0.936754 0.909270 +vt 0.938177 0.910888 +vt 0.938659 0.911836 +vt 0.930457 0.914085 +vt 0.931759 0.911973 +vt 0.943134 0.990993 +vt 0.941656 0.990393 +vt 0.940838 0.989703 +vt 0.987775 0.855903 +vt 0.990439 0.855756 +vt 0.972895 0.859949 +vt 0.985410 0.850567 +vt 0.974272 0.858817 +vt 0.973860 0.853584 +vt 0.973844 0.855728 +vt 0.973702 0.860573 +vt 0.933514 0.977356 +vt 0.939244 0.988481 +vt 0.937976 0.989146 +vt 0.934636 0.983868 +vt 0.935866 0.985013 +vt 0.934416 0.978978 +vt 0.927449 0.967577 +vt 0.927023 0.962948 +vt 0.931608 0.978803 +vt 0.930180 0.976431 +vt 0.927578 0.960576 +vt 0.927064 0.959267 +vt 0.926302 0.955765 +vt 0.926228 0.949972 +vt 0.926382 0.947128 +vt 0.925886 0.947786 +vt 0.922785 0.930693 +vt 0.922723 0.929419 +vt 0.924475 0.938832 +vt 0.926065 0.940573 +vt 0.929631 0.917770 +vt 0.929882 0.920710 +vt 0.927473 0.923882 +vt 0.933731 0.907941 +vt 0.937746 0.909616 +vt 0.929174 0.916431 +vt 0.932051 0.907893 +vt 0.942642 0.993119 +vt 0.940068 0.989916 +vt 0.987559 0.852245 +vt 0.989075 0.852301 +vt 0.992735 0.857790 +vt 0.991023 0.855156 +vt 0.990380 0.853991 +vt 0.973468 0.860830 +vt 0.973106 0.859757 +vt 0.984990 0.848232 +vt 0.973639 0.857554 +vt 0.973753 0.859628 +vt 0.973748 0.852376 +vt 0.973670 0.854739 +vt 0.973617 0.856750 +vt 0.932130 0.979243 +vt 0.935909 0.987095 +vt 0.927825 0.971974 +vt 0.926780 0.971742 +vt 0.927158 0.961385 +vt 0.929800 0.977915 +vt 0.929007 0.975719 +vt 0.926033 0.957899 +vt 0.926163 0.956835 +vt 0.925078 0.953699 +vt 0.925757 0.949591 +vt 0.922491 0.933678 +vt 0.922984 0.927262 +vt 0.925152 0.941136 +vt 0.923488 0.935977 +vt 0.926827 0.941546 +vt 0.925126 0.945365 +vt 0.929136 0.918708 +vt 0.929002 0.922683 +vt 0.936288 0.907263 +vt 0.935407 0.905554 +vt 0.937420 0.908277 +vt 0.938856 0.910646 +vt 0.938156 0.908919 +vt 0.930029 0.910227 +vt 0.929241 0.912656 +vt 0.930873 0.907569 +vt 0.941617 0.993083 +vt 0.940837 0.991568 +vt 0.973401 0.860070 +vt 0.973066 0.858168 +vt 0.985572 0.847066 +vt 0.986745 0.849680 +vt 0.973815 0.858599 +vt 0.973385 0.853635 +vt 0.973408 0.855545 +vt 0.973430 0.856509 +vt 0.973598 0.860119 +vt 0.932646 0.981031 +vt 0.938887 0.990340 +vt 0.936198 0.989897 +vt 0.935159 0.986046 +vt 0.932995 0.982947 +vt 0.927854 0.976276 +vt 0.925191 0.971589 +vt 0.925160 0.967089 +vt 0.926045 0.960518 +vt 0.931436 0.979549 +vt 0.925208 0.955324 +vt 0.923722 0.951577 +vt 0.924231 0.947160 +vt 0.926070 0.924130 +vt 0.921962 0.930154 +vt 0.921881 0.927927 +vt 0.923467 0.923226 +vt 0.924301 0.941149 +vt 0.923325 0.940490 +vt 0.925853 0.942534 +vt 0.924793 0.943387 +vt 0.928778 0.920239 +vt 0.927936 0.921423 +vt 0.928672 0.921305 +vt 0.933558 0.903771 +vt 0.928209 0.915141 +vt 0.931393 0.904481 +vt 0.988436 0.848607 +vt 0.990692 0.851391 +vt 0.992551 0.854891 +vt 0.991052 0.853471 +vt 0.973433 0.858815 +vt 0.984573 0.845546 +vt 0.973291 0.857231 +vt 0.973078 0.852057 +vt 0.934086 0.986023 +vt 0.933443 0.985256 +vt 0.934939 0.987469 +vt 0.926713 0.973875 +vt 0.924233 0.963396 +vt 0.929940 0.979938 +vt 0.924366 0.958190 +vt 0.923505 0.949434 +vt 0.925897 0.921663 +vt 0.921109 0.931855 +vt 0.922017 0.934586 +vt 0.921523 0.927031 +vt 0.921981 0.925622 +vt 0.922858 0.938518 +vt 0.922882 0.943021 +vt 0.928297 0.919325 +vt 0.936746 0.905487 +vt 0.935367 0.903676 +vt 0.937864 0.907560 +vt 0.938339 0.907643 +vt 0.929987 0.907345 +vt 0.927759 0.909193 +vt 0.926716 0.911538 +vt 0.927822 0.918018 +vt 0.930525 0.905070 +vt 0.939900 0.993196 +vt 0.990434 0.848133 +vt 0.973377 0.857930 +vt 0.984744 0.844869 +vt 0.985952 0.845528 +vt 0.987669 0.845554 +vt 0.973049 0.854189 +vt 0.973168 0.855893 +vt 0.931499 0.982397 +vt 0.936878 0.993135 +vt 0.932225 0.986423 +vt 0.934850 0.988849 +vt 0.926136 0.975882 +vt 0.924080 0.968512 +vt 0.925515 0.974304 +vt 0.923715 0.965675 +vt 0.928797 0.978726 +vt 0.930487 0.981851 +vt 0.923627 0.954207 +vt 0.922612 0.951400 +vt 0.924927 0.922867 +vt 0.921572 0.930104 +vt 0.922366 0.937714 +vt 0.920649 0.927804 +vt 0.921857 0.923889 +vt 0.922219 0.940648 +vt 0.926786 0.918712 +vt 0.937698 0.906133 +vt 0.936356 0.902620 +vt 0.934349 0.899981 +vt 0.931860 0.902586 +vt 0.928986 0.904978 +vt 0.927546 0.906464 +vt 0.926181 0.913404 +vt 0.926927 0.918284 +vt 0.930089 0.904090 +vt 0.940262 0.994353 +vt 0.937835 0.993712 +vt 0.990418 0.845708 +vt 0.990993 0.848518 +vt 0.992257 0.852641 +vt 0.984369 0.843390 +vt 0.988878 0.843615 +vt 0.931999 0.984148 +vt 0.935426 0.992894 +vt 0.933985 0.986629 +vt 0.933229 0.987147 +vt 0.934406 0.990166 +vt 0.926776 0.979006 +vt 0.923790 0.970770 +vt 0.924892 0.973166 +vt 0.923075 0.957962 +vt 0.923709 0.957327 +vt 0.929184 0.982019 +vt 0.927509 0.981965 +vt 0.922836 0.953779 +vt 0.922333 0.948415 +vt 0.922416 0.946820 +vt 0.923790 0.918545 +vt 0.920675 0.930698 +vt 0.920548 0.933604 +vt 0.920392 0.936041 +vt 0.921339 0.925041 +vt 0.922300 0.921996 +vt 0.921952 0.939104 +vt 0.925257 0.918850 +vt 0.937578 0.904848 +vt 0.937188 0.903260 +vt 0.933731 0.901386 +vt 0.938249 0.906209 +vt 0.930441 0.902180 +vt 0.925387 0.908119 +vt 0.926411 0.909904 +vt 0.925537 0.910582 +vt 0.939561 0.994300 +vt 0.938557 0.994566 +vt 0.991175 0.847127 +vt 0.985225 0.843152 +vt 0.987063 0.842232 +vt 0.930925 0.984121 +vt 0.937326 0.994278 +vt 0.936006 0.993587 +vt 0.931109 0.985024 +vt 0.932386 0.988277 +vt 0.925667 0.979543 +vt 0.925010 0.975979 +vt 0.923532 0.972827 +vt 0.923057 0.969579 +vt 0.923095 0.968008 +vt 0.924825 0.974084 +vt 0.922715 0.961609 +vt 0.930183 0.983544 +vt 0.923025 0.956444 +vt 0.921541 0.949932 +vt 0.922428 0.954166 +vt 0.921767 0.946562 +vt 0.922993 0.915400 +vt 0.921634 0.921694 +vt 0.922651 0.920590 +vt 0.921194 0.942259 +vt 0.925646 0.916054 +vt 0.925099 0.916842 +vt 0.937850 0.905331 +vt 0.936291 0.900978 +vt 0.934685 0.899248 +vt 0.932255 0.898034 +vt 0.931711 0.900526 +vt 0.926782 0.902862 +vt 0.925810 0.903702 +vt 0.925151 0.911864 +vt 0.928586 0.901489 +vt 0.939918 0.995517 +vt 0.937611 0.995156 +vt 0.990490 0.842167 +vt 0.991355 0.844617 +vt 0.992932 0.849947 +vt 0.992165 0.847837 +vt 0.986321 0.843544 +vt 0.984789 0.841969 +vt 0.987528 0.839654 +vt 0.936811 0.994622 +vt 0.933950 0.993920 +vt 0.933664 0.992991 +vt 0.931594 0.987214 +vt 0.931816 0.991671 +vt 0.922933 0.971858 +vt 0.922778 0.966336 +vt 0.924168 0.973750 +vt 0.923049 0.963917 +vt 0.922076 0.957535 +vt 0.929008 0.984387 +vt 0.922060 0.955026 +vt 0.921561 0.948355 +vt 0.924528 0.917512 +vt 0.924092 0.915823 +vt 0.921866 0.920074 +vt 0.937662 0.902599 +vt 0.938258 0.904803 +vt 0.937208 0.901126 +vt 0.932551 0.897609 +vt 0.929099 0.899001 +vt 0.924225 0.908645 +vt 0.939266 0.995352 +vt 0.989360 0.840043 +vt 0.991896 0.845608 +vt 0.985547 0.841179 +vt 0.986621 0.839876 +vt 0.935596 0.994426 +vt 0.934511 0.994705 +vt 0.933349 0.990831 +vt 0.930672 0.988099 +vt 0.930530 0.991057 +vt 0.926414 0.982726 +vt 0.924108 0.980829 +vt 0.923971 0.976651 +vt 0.923002 0.973456 +vt 0.921898 0.969183 +vt 0.922730 0.968599 +vt 0.922301 0.964160 +vt 0.921709 0.961645 +vt 0.926621 0.984857 +vt 0.921926 0.953843 +vt 0.921107 0.948491 +vt 0.921199 0.946344 +vt 0.923037 0.913659 +vt 0.922358 0.916438 +vt 0.921476 0.919516 +vt 0.924774 0.914507 +vt 0.936666 0.899343 +vt 0.935605 0.898888 +vt 0.932039 0.896479 +vt 0.930801 0.898140 +vt 0.929532 0.897762 +vt 0.925074 0.900646 +vt 0.927229 0.901080 +vt 0.923886 0.906018 +vt 0.924112 0.909758 +vt 0.927457 0.898957 +vt 0.990669 0.839558 +vt 0.992120 0.842672 +vt 0.992780 0.844641 +vt 0.985500 0.839422 +vt 0.986246 0.839773 +vt 0.989350 0.836335 +vt 0.986278 0.837783 +vt 0.936856 0.995528 +vt 0.936022 0.995158 +vt 0.933340 0.994563 +vt 0.934048 0.995144 +vt 0.932459 0.993899 +vt 0.929273 0.986683 +vt 0.930660 0.994085 +vt 0.924574 0.984089 +vt 0.922334 0.972937 +vt 0.921121 0.970131 +vt 0.921646 0.958349 +vt 0.928347 0.987268 +vt 0.921646 0.956324 +vt 0.920795 0.950879 +vt 0.920451 0.947968 +vt 0.921196 0.955434 +vt 0.924530 0.913110 +vt 0.922386 0.913340 +vt 0.921621 0.916974 +vt 0.937839 0.901644 +vt 0.938205 0.903087 +vt 0.937330 0.898930 +vt 0.934888 0.896752 +vt 0.932627 0.895670 +vt 0.928710 0.896594 +vt 0.926712 0.899793 +vt 0.924266 0.902630 +vt 0.923084 0.907775 +vt 0.927898 0.897092 +vt 0.984131 0.841372 +vt 0.987289 0.834539 +vt 0.934893 0.995207 +vt 0.934154 0.995764 +vt 0.928159 0.987982 +vt 0.928884 0.993332 +vt 0.923300 0.983336 +vt 0.923042 0.977808 +vt 0.922439 0.974243 +vt 0.921019 0.974277 +vt 0.921231 0.965992 +vt 0.921204 0.963208 +vt 0.920955 0.960222 +vt 0.927182 0.987367 +vt 0.923389 0.912024 +vt 0.922018 0.911809 +vt 0.937959 0.899577 +vt 0.936445 0.897532 +vt 0.933857 0.896637 +vt 0.931610 0.894865 +vt 0.930039 0.894712 +vt 0.928783 0.893383 +vt 0.926137 0.898362 +vt 0.923119 0.902343 +vt 0.923595 0.910338 +vt 0.926946 0.896009 +vt 0.992361 0.839696 +vt 0.990705 0.837147 +vt 0.992569 0.842661 +vt 0.984661 0.839012 +vt 0.987988 0.832587 +vt 0.986701 0.835359 +vt 0.933259 0.995511 +vt 0.932578 0.994667 +vt 0.928179 0.990022 +vt 0.931980 0.995055 +vt 0.926107 0.986833 +vt 0.923401 0.980734 +vt 0.923875 0.985110 +vt 0.923086 0.979177 +vt 0.922886 0.976688 +vt 0.919898 0.954677 +vt 0.921650 0.908655 +vt 0.921804 0.913354 +vt 0.938305 0.901286 +vt 0.937965 0.897511 +vt 0.937221 0.896796 +vt 0.936513 0.896100 +vt 0.934385 0.894957 +vt 0.931920 0.894318 +vt 0.933044 0.894223 +vt 0.927775 0.894978 +vt 0.925245 0.898356 +vt 0.922146 0.899339 +vt 0.921907 0.904268 +vt 0.922274 0.908986 +vt 0.992232 0.838364 +vt 0.992505 0.841264 +vt 0.990636 0.835201 +vt 0.985550 0.837481 +vt 0.986241 0.832024 +vt 0.989428 0.834144 +vt 0.985863 0.835521 +vt 0.927186 0.988569 +vt 0.928037 0.993864 +vt 0.924507 0.987144 +vt 0.922654 0.982788 +vt 0.922009 0.979773 +vt 0.922222 0.975751 +vt 0.920451 0.963747 +vt 0.919823 0.960781 +vt 0.920215 0.960075 +vt 0.926448 0.988385 +vt 0.921574 0.910228 +vt 0.938551 0.898763 +vt 0.934743 0.894297 +vt 0.933872 0.894829 +vt 0.930957 0.893228 +vt 0.930170 0.893393 +vt 0.928109 0.893536 +vt 0.925148 0.895378 +vt 0.922928 0.897178 +vt 0.922034 0.902575 +vt 0.922066 0.907440 +vt 0.925782 0.895393 +vt 0.926388 0.892997 +vt 0.992907 0.840169 +vt 0.993460 0.841362 +vt 0.984755 0.837495 +vt 0.986227 0.833625 +vt 0.986543 0.827685 +vt 0.988760 0.826081 +vt 0.932594 0.995792 +vt 0.926778 0.991172 +vt 0.925694 0.988427 +vt 0.922442 0.981012 +vt 0.923628 0.988056 +vt 0.921574 0.978267 +vt 0.921006 0.976235 +vt 0.919810 0.958739 +vt 0.920916 0.909754 +vt 0.937971 0.895981 +vt 0.937352 0.895265 +vt 0.936784 0.892826 +vt 0.931458 0.893007 +vt 0.932569 0.892998 +vt 0.933257 0.892671 +vt 0.929095 0.892253 +vt 0.928572 0.892361 +vt 0.926859 0.890421 +vt 0.921425 0.898060 +vt 0.921442 0.902497 +vt 0.921451 0.906919 +vt 0.926744 0.891452 +vt 0.992933 0.836535 +vt 0.990574 0.834685 +vt 0.985216 0.835932 +vt 0.982847 0.837581 +vt 0.985533 0.832912 +vt 0.985140 0.830739 +vt 0.990183 0.829181 +vt 0.985628 0.834367 +vt 0.921083 0.982426 +vt 0.921282 0.980385 +vt 0.920784 0.978586 +vt 0.920414 0.976415 +vt 0.919522 0.959659 +vt 0.924932 0.989779 +vt 0.919396 0.955786 +vt 0.920819 0.907737 +vt 0.919873 0.912093 +vt 0.936610 0.889698 +vt 0.930904 0.891733 +vt 0.929767 0.891706 +vt 0.928106 0.891948 +vt 0.927557 0.891106 +vt 0.923010 0.895358 +vt 0.925465 0.893074 +vt 0.921287 0.900329 +vt 0.921611 0.896337 +vt 0.921076 0.905283 +vt 0.926236 0.891260 +vt 0.993624 0.838761 +vt 0.993347 0.839492 +vt 0.991575 0.832507 +vt 0.990765 0.832127 +vt 0.984599 0.836051 +vt 0.984062 0.828164 +vt 0.988232 0.824379 +vt 0.989262 0.825357 +vt 0.920338 0.908776 +vt 0.920089 0.910141 +vt 0.937902 0.894674 +vt 0.937417 0.890430 +vt 0.935383 0.890390 +vt 0.933650 0.889667 +vt 0.931926 0.892299 +vt 0.929975 0.890929 +vt 0.932711 0.892412 +vt 0.928672 0.891109 +vt 0.929178 0.891327 +vt 0.927366 0.890264 +vt 0.926293 0.889800 +vt 0.924147 0.892657 +vt 0.921025 0.898853 +vt 0.920873 0.897298 +vt 0.920747 0.903437 +vt 0.926175 0.891866 +vt 0.993542 0.837593 +vt 0.993066 0.834363 +vt 0.985164 0.832947 +vt 0.983769 0.835406 +vt 0.984028 0.831351 +vt 0.983411 0.822472 +vt 0.986847 0.822816 +vt 0.990740 0.828582 +vt 0.920194 0.907371 +vt 0.919129 0.909913 +vt 0.937281 0.892701 +vt 0.937032 0.888751 +vt 0.932351 0.891486 +vt 0.930757 0.890356 +vt 0.931046 0.890620 +vt 0.929274 0.890475 +vt 0.928070 0.890837 +vt 0.927865 0.890047 +vt 0.926781 0.889372 +vt 0.921895 0.892823 +vt 0.922652 0.891595 +vt 0.924731 0.890426 +vt 0.920255 0.899970 +vt 0.920761 0.897059 +vt 0.920519 0.901707 +vt 0.925739 0.889824 +vt 0.993326 0.836461 +vt 0.992393 0.832909 +vt 0.980924 0.832347 +vt 0.983826 0.833957 +vt 0.982619 0.829718 +vt 0.988915 0.822514 +vt 0.989913 0.823163 +vt 0.919747 0.908531 +vt 0.937965 0.893199 +vt 0.937564 0.889161 +vt 0.937824 0.891785 +vt 0.934834 0.885334 +vt 0.935978 0.887063 +vt 0.932316 0.889173 +vt 0.930062 0.889469 +vt 0.926199 0.888960 +vt 0.923762 0.888417 +vt 0.920223 0.898314 +vt 0.920330 0.903179 +vt 0.919773 0.905949 +vt 0.992311 0.830874 +vt 0.993062 0.831654 +vt 0.982728 0.832892 +vt 0.985705 0.819082 +vt 0.989307 0.822614 +vt 0.987931 0.821136 +vt 0.991539 0.825436 +vt 0.919050 0.907612 +vt 0.937339 0.888201 +vt 0.937982 0.889683 +vt 0.931953 0.887733 +vt 0.936799 0.885782 +vt 0.931320 0.890248 +vt 0.928842 0.889804 +vt 0.927645 0.887941 +vt 0.926445 0.887908 +vt 0.921116 0.892109 +vt 0.921973 0.888766 +vt 0.925149 0.889297 +vt 0.919110 0.898654 +vt 0.919523 0.901433 +vt 0.919667 0.895725 +vt 0.984203 0.815710 +vt 0.987486 0.819158 +vt 0.989819 0.821373 +vt 0.988505 0.819826 +vt 0.991456 0.823028 +vt 0.937846 0.888116 +vt 0.937453 0.886719 +vt 0.934535 0.882941 +vt 0.935720 0.884392 +vt 0.936347 0.884155 +vt 0.931699 0.889035 +vt 0.930110 0.888665 +vt 0.929200 0.888591 +vt 0.928405 0.888928 +vt 0.927192 0.887810 +vt 0.925357 0.888161 +vt 0.920701 0.888880 +vt 0.920202 0.894062 +vt 0.922105 0.886855 +vt 0.924531 0.888344 +vt 0.920159 0.895457 +vt 0.992600 0.825987 +vt 0.993278 0.829937 +vt 0.986705 0.815169 +vt 0.981455 0.816248 +vt 0.989349 0.821035 +vt 0.988857 0.819316 +vt 0.990195 0.822589 +vt 0.992410 0.823741 +vt 0.937553 0.887708 +vt 0.938173 0.888879 +vt 0.932493 0.883030 +vt 0.936935 0.882536 +vt 0.937264 0.885388 +vt 0.931597 0.884514 +vt 0.930337 0.887207 +vt 0.929676 0.887967 +vt 0.927060 0.885857 +vt 0.928560 0.887599 +vt 0.926318 0.886452 +vt 0.925819 0.886488 +vt 0.920516 0.891959 +vt 0.921310 0.886866 +vt 0.922589 0.886465 +vt 0.924131 0.887679 +vt 0.993350 0.829127 +vt 0.985318 0.809898 +vt 0.981702 0.811236 +vt 0.988299 0.817163 +vt 0.989701 0.819867 +vt 0.991985 0.819660 +vt 0.938276 0.887682 +vt 0.936326 0.881032 +vt 0.933210 0.879760 +vt 0.937671 0.884654 +vt 0.929321 0.886392 +vt 0.928250 0.885682 +vt 0.924799 0.887315 +vt 0.920092 0.891318 +vt 0.919628 0.892748 +vt 0.921688 0.885363 +vt 0.920205 0.888401 +vt 0.993128 0.824218 +vt 0.993201 0.826198 +vt 0.987734 0.812434 +vt 0.978591 0.812008 +vt 0.990232 0.816668 +vt 0.989724 0.817673 +vt 0.991074 0.819319 +vt 0.992847 0.822933 +vt 0.937883 0.886086 +vt 0.935707 0.880405 +vt 0.931032 0.880344 +vt 0.934742 0.879294 +vt 0.930038 0.884024 +vt 0.926215 0.885597 +vt 0.927629 0.882678 +vt 0.923977 0.886712 +vt 0.920919 0.884459 +vt 0.922476 0.883767 +vt 0.920390 0.886279 +vt 0.987540 0.807604 +vt 0.983872 0.807939 +vt 0.979861 0.808520 +vt 0.989135 0.814967 +vt 0.991804 0.818518 +vt 0.938048 0.885115 +vt 0.936435 0.879915 +vt 0.936942 0.879901 +vt 0.934426 0.876437 +vt 0.932776 0.876109 +vt 0.937507 0.882984 +vt 0.926202 0.883518 +vt 0.925045 0.884570 +vt 0.924523 0.885279 +vt 0.920905 0.882529 +vt 0.923622 0.885065 +vt 0.988838 0.809463 +vt 0.986166 0.806178 +vt 0.982266 0.807948 +vt 0.985201 0.806095 +vt 0.978973 0.808584 +vt 0.980826 0.807767 +vt 0.989597 0.813990 +vt 0.990932 0.816886 +vt 0.935981 0.878632 +vt 0.936344 0.879333 +vt 0.937272 0.881756 +vt 0.928874 0.878995 +vt 0.935533 0.876965 +vt 0.932952 0.871785 +vt 0.937799 0.883389 +vt 0.938063 0.884080 +vt 0.925947 0.878665 +vt 0.920060 0.885328 +vt 0.922004 0.881614 +vt 0.924639 0.883262 +vt 0.988519 0.807183 +vt 0.987296 0.804604 +vt 0.983464 0.804783 +vt 0.977269 0.808661 +vt 0.979189 0.806497 +vt 0.980113 0.806798 +vt 0.937527 0.880749 +vt 0.928357 0.874089 +vt 0.935482 0.875485 +vt 0.934072 0.874013 +vt 0.930382 0.869949 +vt 0.937672 0.881682 +vt 0.938002 0.882352 +vt 0.920192 0.882385 +vt 0.922799 0.879824 +vt 0.920844 0.881937 +vt 0.990147 0.812585 +vt 0.988423 0.804500 +vt 0.989399 0.808597 +vt 0.986015 0.803185 +vt 0.982787 0.804459 +vt 0.981170 0.805616 +vt 0.983948 0.803765 +vt 0.978308 0.806525 +vt 0.980267 0.805357 +vt 0.936753 0.878231 +vt 0.936374 0.877246 +vt 0.937149 0.879141 +vt 0.935335 0.874177 +vt 0.936574 0.876404 +vt 0.934672 0.869866 +vt 0.932835 0.866857 +vt 0.921040 0.879886 +vt 0.988959 0.806374 +vt 0.988074 0.802581 +vt 0.986991 0.802999 +vt 0.980681 0.804595 +vt 0.977133 0.806289 +vt 0.979542 0.805805 +vt 0.978766 0.805297 +vt 0.937712 0.879934 +vt 0.937923 0.880804 +vt 0.926223 0.872969 +vt 0.927629 0.869127 +vt 0.936345 0.874943 +vt 0.929663 0.864788 +vt 0.938442 0.881017 +vt 0.924573 0.874724 +vt 0.920714 0.880849 +vt 0.921866 0.876224 +vt 0.990750 0.807942 +vt 0.989216 0.803857 +vt 0.988957 0.802892 +vt 0.986367 0.801134 +vt 0.983793 0.802099 +vt 0.982791 0.803036 +vt 0.981493 0.804235 +vt 0.976753 0.804575 +vt 0.978009 0.805075 +vt 0.978788 0.805036 +vt 0.980410 0.803714 +vt 0.937216 0.877739 +vt 0.937577 0.879120 +vt 0.936385 0.873012 +vt 0.936630 0.875861 +vt 0.935846 0.869341 +vt 0.923219 0.873359 +vt 0.987740 0.799992 +vt 0.989428 0.800555 +vt 0.985142 0.800044 +vt 0.983418 0.802149 +vt 0.979172 0.803206 +vt 0.936946 0.876222 +vt 0.938042 0.879325 +vt 0.925718 0.869525 +vt 0.924814 0.871777 +vt 0.927776 0.865454 +vt 0.937207 0.874182 +vt 0.936973 0.875455 +vt 0.921991 0.872681 +vt 0.990436 0.804137 +vt 0.989630 0.802800 +vt 0.986526 0.797115 +vt 0.983538 0.800409 +vt 0.982571 0.801894 +vt 0.981529 0.802543 +vt 0.978129 0.802717 +vt 0.978322 0.804055 +vt 0.979305 0.801395 +vt 0.937726 0.877891 +vt 0.937368 0.875989 +vt 0.926379 0.867809 +vt 0.928124 0.863663 +vt 0.926820 0.866668 +vt 0.936782 0.871963 +vt 0.924125 0.871058 +vt 0.922053 0.869311 +vt 0.988611 0.798479 +vt 0.990396 0.799640 +vt 0.984787 0.797487 +vt 0.976734 0.799363 +vt 0.938125 0.877996 +vt 0.924505 0.869777 +vt 0.924986 0.867070 +vt 0.926227 0.863913 +vt 0.927472 0.857350 +vt 0.926726 0.865175 +vt 0.922923 0.868812 +vt 0.991445 0.803026 +vt 0.991007 0.795909 +vt 0.986108 0.793598 +vt 0.987510 0.795569 +vt 0.982379 0.799794 +vt 0.980893 0.799494 +vt 0.975389 0.801415 +vt 0.938059 0.875460 +vt 0.925857 0.866119 +vt 0.926022 0.862636 +vt 0.921922 0.867088 +vt 0.989553 0.793468 +vt 0.991794 0.797188 +vt 0.982607 0.793755 +vt 0.977737 0.796267 +vt 0.975465 0.798831 +vt 0.923880 0.868071 +vt 0.924489 0.865770 +vt 0.925710 0.862889 +vt 0.925083 0.859341 +vt 0.923009 0.866214 +vt 0.990216 0.792329 +vt 0.982882 0.788968 +vt 0.987786 0.790805 +vt 0.981446 0.795658 +vt 0.976372 0.797300 +vt 0.974216 0.799165 +vt 0.924741 0.864758 +vt 0.925713 0.862468 +vt 0.922737 0.864859 +vt 0.984142 0.788467 +vt 0.981027 0.789386 +vt 0.986368 0.790615 +vt 0.980045 0.792767 +vt 0.979094 0.794458 +vt 0.976637 0.795851 +vt 0.975598 0.797273 +vt 0.975057 0.796836 +vt 0.924091 0.864011 +vt 0.924525 0.863285 +vt 0.924517 0.861613 +vt 0.988857 0.789238 +vt 0.983352 0.786739 +vt 0.981404 0.787880 +vt 0.986822 0.789106 +vt 0.976612 0.793949 +vt 0.975292 0.796400 +vt 0.923782 0.861493 +vt 0.988011 0.788480 +vt 0.990300 0.789816 +vt 0.985058 0.786759 +vt 0.979688 0.791988 +vt 0.978955 0.788668 +vt 0.977702 0.792336 +vt 0.975316 0.794510 +vt 0.922719 0.863077 +vt 0.988627 0.787098 +vt 0.989782 0.788520 +vt 0.982419 0.786440 +vt 0.983856 0.784000 +vt 0.978460 0.785557 +vt 0.987138 0.787136 +vt 0.988475 0.785751 +vt 0.989205 0.787867 +vt 0.990549 0.787100 +vt 0.982269 0.783397 +vt 0.981100 0.782797 +vt 0.985150 0.783811 +vt 0.979863 0.783624 +vt 0.986306 0.786123 +vt 0.989217 0.786731 +vt 0.989517 0.787374 +vt 0.983957 0.781910 +vt 0.986319 0.784135 +vt 0.982612 0.780272 +vt 0.987094 0.785607 +vt 0.989243 0.785791 +vt 0.989874 0.786038 +vt 0.981811 0.781935 +vt 0.980758 0.781328 +vt 0.987273 0.783804 +vt 0.989135 0.782831 +vt 0.991057 0.784824 +vt 0.986097 0.777788 +vt 0.984744 0.775936 +vt 0.981642 0.780059 +vt 0.987049 0.784025 +vt 0.988640 0.783732 +vt 0.990594 0.778335 +vt 0.981300 0.780706 +vt 0.986780 0.781618 +vt 0.983021 0.776293 +vt 0.982144 0.779130 +vt 0.986677 0.783676 +vt 0.988358 0.781137 +vt 0.989243 0.780419 +vt 0.980589 0.779943 +vt 0.986271 0.773183 +vt 0.987223 0.777870 +vt 0.982360 0.771890 +vt 0.980991 0.778988 +vt 0.981234 0.778621 +vt 0.988516 0.777906 +vt 0.989613 0.777462 +vt 0.984544 0.768644 +vt 0.987765 0.775259 +vt 0.981764 0.777739 +vt 0.981080 0.774741 +vt 0.991305 0.775049 +vt 0.979340 0.778430 +vt 0.985721 0.770532 +vt 0.987707 0.771710 +vt 0.980665 0.772386 +vt 0.983021 0.767771 +vt 0.980943 0.777541 +vt 0.989838 0.775781 +vt 0.989584 0.776510 +vt 0.986897 0.764449 +vt 0.988659 0.772056 +vt 0.989174 0.775802 +vt 0.981858 0.769112 +vt 0.990128 0.772971 +vt 0.979422 0.776197 +vt 0.987630 0.768807 +vt 0.989283 0.770598 +vt 0.989917 0.773274 +vt 0.980201 0.770740 +vt 0.981510 0.767488 +vt 0.985236 0.761752 +vt 0.990530 0.772585 +vt 0.977794 0.779181 +vt 0.988062 0.765761 +vt 0.988984 0.768843 +vt 0.978773 0.771529 +vt 0.979170 0.773510 +vt 0.983408 0.764092 +vt 0.987054 0.762720 +vt 0.990155 0.769636 +vt 0.977262 0.777533 +vt 0.988809 0.763445 +vt 0.979201 0.768737 +vt 0.977295 0.772276 +vt 0.981130 0.765013 +vt 0.987020 0.760618 +vt 0.982195 0.762437 +vt 0.991271 0.768693 +vt 0.989272 0.764881 +vt 0.989396 0.768109 +vt 0.978049 0.769488 +vt 0.988689 0.761242 +vt 0.986054 0.759017 +vt 0.984792 0.760376 +vt 0.990805 0.765218 +vt 0.976545 0.775340 +vt 0.990207 0.762104 +vt 0.978163 0.766918 +vt 0.979732 0.763901 +vt 0.979574 0.759958 +vt 0.988247 0.759882 +vt 0.987239 0.759062 +vt 0.984160 0.759407 +vt 0.975940 0.772789 +vt 0.975757 0.776945 +vt 0.977163 0.770196 +vt 0.977835 0.768237 +vt 0.982427 0.759249 +vt 0.989204 0.759737 +vt 0.986735 0.756961 +vt 0.975067 0.773749 +vt 0.976515 0.771302 +vt 0.975558 0.775446 +vt 0.977305 0.766832 +vt 0.980593 0.758001 +vt 0.988965 0.757319 +vt 0.988220 0.757994 +vt 0.985280 0.757129 +vt 0.987625 0.757195 +vt 0.982958 0.756487 +vt 0.974596 0.772319 +vt 0.975829 0.771262 +vt 0.972908 0.774897 +vt 0.975843 0.768338 +vt 0.976987 0.763829 +vt 0.977757 0.757110 +vt 0.989809 0.757746 +vt 0.987277 0.755591 +vt 0.985779 0.754699 +vt 0.974076 0.772614 +vt 0.974698 0.771659 +vt 0.975274 0.769792 +vt 0.976149 0.762651 +vt 0.980574 0.755885 +vt 0.976430 0.758863 +vt 0.979121 0.755558 +vt 0.988666 0.756840 +vt 0.989416 0.756367 +vt 0.990917 0.757566 +vt 0.984104 0.753365 +vt 0.988579 0.755634 +vt 0.973541 0.773445 +vt 0.974172 0.771993 +vt 0.974163 0.771044 +vt 0.975124 0.768339 +vt 0.974628 0.766281 +vt 0.980780 0.751827 +vt 0.976056 0.756564 +vt 0.978354 0.754535 +vt 0.986469 0.752099 +vt 0.989517 0.752450 +vt 0.972506 0.773215 +vt 0.974020 0.771974 +vt 0.973749 0.772139 +vt 0.973632 0.770728 +vt 0.973889 0.764511 +vt 0.974810 0.760471 +vt 0.979819 0.753591 +vt 0.975001 0.758278 +vt 0.990377 0.755374 +vt 0.984399 0.751929 +vt 0.987965 0.752596 +vt 0.972166 0.774965 +vt 0.972890 0.770379 +vt 0.973862 0.767679 +vt 0.972962 0.766128 +vt 0.973770 0.761928 +vt 0.979561 0.750070 +vt 0.974997 0.757438 +vt 0.977664 0.753007 +vt 0.979264 0.751796 +vt 0.984006 0.749582 +vt 0.987632 0.750006 +vt 0.989258 0.751032 +vt 0.985910 0.749255 +vt 0.971897 0.773630 +vt 0.973042 0.771932 +vt 0.972926 0.764558 +vt 0.973887 0.759166 +vt 0.973867 0.760492 +vt 0.981159 0.748478 +vt 0.975333 0.752670 +vt 0.990228 0.750703 +vt 0.972068 0.772419 +vt 0.972303 0.771574 +vt 0.972716 0.768975 +vt 0.972509 0.765621 +vt 0.972740 0.761964 +vt 0.972962 0.759263 +vt 0.978447 0.746639 +vt 0.977834 0.748925 +vt 0.973775 0.754119 +vt 0.973497 0.756218 +vt 0.974084 0.748832 +vt 0.976304 0.749749 +vt 0.985052 0.746066 +vt 0.981148 0.745347 +vt 0.987499 0.747775 +vt 0.989158 0.747598 +vt 0.971770 0.772343 +vt 0.972265 0.769801 +vt 0.972256 0.767287 +vt 0.972441 0.764586 +vt 0.972246 0.766440 +vt 0.977478 0.749821 +vt 0.983295 0.746853 +vt 0.986818 0.745857 +vt 0.988179 0.748147 +vt 0.991266 0.749549 +vt 0.971963 0.771713 +vt 0.971838 0.770557 +vt 0.971881 0.768444 +vt 0.972091 0.765556 +vt 0.972237 0.760739 +vt 0.979304 0.743889 +vt 0.977183 0.746841 +vt 0.976495 0.747915 +vt 0.973135 0.754132 +vt 0.972638 0.750888 +vt 0.972317 0.759158 +vt 0.975178 0.747467 +vt 0.984550 0.745163 +vt 0.986183 0.741727 +vt 0.982545 0.741407 +vt 0.988330 0.744632 +vt 0.991036 0.746280 +vt 0.971786 0.767665 +vt 0.971761 0.766629 +vt 0.981187 0.742985 +vt 0.972714 0.755638 +vt 0.971789 0.748457 +vt 0.973905 0.744741 +vt 0.991640 0.745553 +vt 0.971538 0.769367 +vt 0.971599 0.768332 +vt 0.979897 0.741590 +vt 0.978742 0.743038 +vt 0.974940 0.744468 +vt 0.972344 0.754283 +vt 0.971469 0.750831 +vt 0.972449 0.746820 +vt 0.971838 0.754885 +vt 0.983892 0.742493 +vt 0.988012 0.740473 +vt 0.981160 0.740468 +vt 0.990614 0.743069 +vt 0.991299 0.744010 +vt 0.971667 0.767476 +vt 0.977428 0.743814 +vt 0.975853 0.743436 +vt 0.971568 0.752771 +vt 0.971024 0.750497 +vt 0.971370 0.746612 +vt 0.974866 0.743286 +vt 0.984815 0.739865 +vt 0.986958 0.739988 +vt 0.988930 0.741632 +vt 0.981946 0.739935 +vt 0.991873 0.743880 +vt 0.978716 0.741365 +vt 0.979714 0.736960 +vt 0.977661 0.742103 +vt 0.971157 0.752453 +vt 0.970629 0.751480 +vt 0.971022 0.748681 +vt 0.974114 0.741693 +vt 0.983975 0.736153 +vt 0.985096 0.736768 +vt 0.986878 0.736376 +vt 0.989492 0.740366 +vt 0.981565 0.734999 +vt 0.991246 0.742897 +vt 0.991527 0.743253 +vt 0.977628 0.741059 +vt 0.978800 0.738943 +vt 0.976767 0.742295 +vt 0.975938 0.741482 +vt 0.971256 0.754608 +vt 0.970598 0.749911 +vt 0.970419 0.746811 +vt 0.975269 0.740823 +vt 0.987298 0.736760 +vt 0.988471 0.737732 +vt 0.990708 0.740393 +vt 0.991035 0.741895 +vt 0.991568 0.742421 +vt 0.979441 0.734693 +vt 0.977935 0.736397 +vt 0.976326 0.740181 +vt 0.969675 0.751254 +vt 0.969941 0.748820 +vt 0.974483 0.736908 +vt 0.984954 0.734777 +vt 0.986108 0.732666 +vt 0.988870 0.737335 +vt 0.982550 0.733245 +vt 0.977138 0.737939 +vt 0.981756 0.732435 +vt 0.973244 0.737142 +vt 0.988577 0.735727 +vt 0.988149 0.731377 +vt 0.979689 0.729198 +vt 0.977142 0.733482 +vt 0.975325 0.734499 +vt 0.974477 0.733987 +vt 0.984305 0.731664 +vt 0.987436 0.730138 +vt 0.982699 0.728930 +vt 0.980760 0.729180 +vt 0.978037 0.730263 +vt 0.973060 0.732439 +vt 0.985316 0.730630 +vt 0.989255 0.733046 +vt 0.987434 0.727865 +vt 0.988647 0.727755 +vt 0.979383 0.726985 +vt 0.978389 0.726558 +vt 0.976648 0.732392 +vt 0.975479 0.732097 +vt 0.972169 0.735546 +vt 0.974294 0.731282 +vt 0.984901 0.728750 +vt 0.989267 0.729687 +vt 0.981228 0.727692 +vt 0.977246 0.727455 +vt 0.976314 0.728771 +vt 0.971856 0.731953 +vt 0.972886 0.730763 +vt 0.983473 0.726776 +vt 0.987890 0.725000 +vt 0.989859 0.727294 +vt 0.981983 0.726654 +vt 0.980488 0.726306 +vt 0.978939 0.725000 +vt 0.977416 0.725600 +vt 0.975323 0.730504 +vt 0.971014 0.732785 +vt 0.974054 0.729479 +vt 0.987119 0.725127 +vt 0.984960 0.725457 +vt 0.989998 0.725126 +vt 0.980341 0.725008 +vt 0.978146 0.724028 +vt 0.976356 0.723392 +vt 0.972366 0.729054 +vt 0.971113 0.730819 +vt 0.974019 0.727989 +vt 0.985965 0.722840 +vt 0.983584 0.724369 +vt 0.983057 0.723023 +vt 0.988265 0.721993 +vt 0.987535 0.722616 +vt 0.981108 0.724360 +vt 0.978986 0.723494 +vt 0.975035 0.729021 +vt 0.977122 0.722799 +vt 0.970264 0.732214 +vt 0.984592 0.722359 +vt 0.990424 0.721422 +vt 0.980288 0.722530 +vt 0.979153 0.720008 +vt 0.975256 0.726226 +vt 0.975941 0.720633 +vt 0.971658 0.727957 +vt 0.972684 0.727430 +vt 0.970797 0.730013 +vt 0.969814 0.734217 +vt 0.986288 0.721344 +vt 0.981179 0.721368 +vt 0.987760 0.720932 +vt 0.980735 0.720144 +vt 0.975592 0.723350 +vt 0.977361 0.718507 +vt 0.974362 0.725322 +vt 0.969770 0.730420 +vt 0.969504 0.731119 +vt 0.983218 0.719617 +vt 0.984353 0.716763 +vt 0.982700 0.719579 +vt 0.990302 0.716190 +vt 0.979473 0.717143 +vt 0.973979 0.722983 +vt 0.975480 0.717285 +vt 0.970602 0.727960 +vt 0.971762 0.725397 +vt 0.968179 0.731581 +vt 0.987680 0.719277 +vt 0.986130 0.717342 +vt 0.974436 0.719199 +vt 0.976445 0.716032 +vt 0.978103 0.714802 +vt 0.969778 0.724712 +vt 0.972758 0.723460 +vt 0.969120 0.729766 +vt 0.969534 0.727980 +vt 0.968600 0.736147 +vt 0.982556 0.717001 +vt 0.985035 0.714478 +vt 0.989977 0.714964 +vt 0.981163 0.716060 +vt 0.971563 0.719954 +vt 0.973149 0.717104 +vt 0.974637 0.714169 +vt 0.978514 0.712505 +vt 0.969122 0.725706 +vt 0.969129 0.721179 +vt 0.968276 0.729659 +vt 0.966995 0.734017 +vt 0.988018 0.713365 +vt 0.982319 0.714377 +vt 0.986858 0.711714 +vt 0.983623 0.714915 +vt 0.980438 0.713905 +vt 0.974050 0.714924 +vt 0.976758 0.713459 +vt 0.975506 0.712596 +vt 0.977647 0.712006 +vt 0.979581 0.712226 +vt 0.968560 0.724193 +vt 0.969721 0.719971 +vt 0.968478 0.727927 +vt 0.966064 0.731863 +vt 0.966617 0.735011 +vt 0.986211 0.712034 +vt 0.984353 0.709280 +vt 0.989158 0.712198 +vt 0.971283 0.716869 +vt 0.973428 0.715243 +vt 0.973469 0.713218 +vt 0.973125 0.711750 +vt 0.978111 0.710683 +vt 0.979022 0.710810 +vt 0.968390 0.725609 +vt 0.967303 0.723588 +vt 0.968463 0.718964 +vt 0.970247 0.716847 +vt 0.967827 0.727604 +vt 0.967018 0.729688 +vt 0.987679 0.709374 +vt 0.982615 0.712294 +vt 0.986558 0.709524 +vt 0.985048 0.710253 +vt 0.983234 0.708935 +vt 0.980997 0.710567 +vt 0.971984 0.715228 +vt 0.976665 0.711111 +vt 0.974591 0.711108 +vt 0.980657 0.709800 +vt 0.968005 0.724288 +vt 0.965894 0.730074 +vt 0.965010 0.733129 +vt 0.984532 0.707244 +vt 0.984274 0.707761 +vt 0.988597 0.707353 +vt 0.970980 0.714031 +vt 0.972615 0.712230 +vt 0.975534 0.711424 +vt 0.973213 0.710423 +vt 0.978765 0.706570 +vt 0.976750 0.710033 +vt 0.980522 0.709085 +vt 0.967039 0.725573 +vt 0.967722 0.726928 +vt 0.966464 0.720988 +vt 0.969960 0.715554 +vt 0.967335 0.727944 +vt 0.964771 0.730381 +vt 0.966348 0.727940 +vt 0.965699 0.735332 +vt 0.964194 0.731950 +vt 0.987088 0.708605 +vt 0.982359 0.709307 +vt 0.985400 0.708838 +vt 0.983115 0.707711 +vt 0.971570 0.712776 +vt 0.975098 0.710096 +vt 0.971622 0.711351 +vt 0.972584 0.709649 +vt 0.974144 0.710011 +vt 0.979245 0.708323 +vt 0.977853 0.707861 +vt 0.975831 0.708904 +vt 0.981479 0.708566 +vt 0.966207 0.723634 +vt 0.966922 0.715715 +vt 0.966818 0.725142 +vt 0.968566 0.715707 +vt 0.964948 0.727985 +vt 0.966049 0.737213 +vt 0.964186 0.735139 +vt 0.986462 0.705675 +vt 0.985860 0.708244 +vt 0.985355 0.706759 +vt 0.984270 0.706996 +vt 0.969773 0.713624 +vt 0.970936 0.712454 +vt 0.973671 0.708750 +vt 0.974483 0.708976 +vt 0.976973 0.706160 +vt 0.980492 0.706927 +vt 0.967329 0.727065 +vt 0.965644 0.720874 +vt 0.966492 0.726372 +vt 0.963398 0.730386 +vt 0.965510 0.725345 +vt 0.964618 0.736388 +vt 0.963330 0.734019 +vt 0.970202 0.712894 +vt 0.975227 0.708342 +vt 0.970810 0.709897 +vt 0.973114 0.707503 +vt 0.975826 0.706065 +vt 0.964953 0.723559 +vt 0.964453 0.717405 +vt 0.968237 0.714029 +vt 0.963173 0.732097 +vt 0.962320 0.729806 +vt 0.964254 0.738061 +vt 0.963650 0.736706 +vt 0.963415 0.736029 +vt 0.969564 0.712270 +vt 0.971435 0.708757 +vt 0.973872 0.707779 +vt 0.972343 0.706760 +vt 0.963350 0.721905 +vt 0.965187 0.713178 +vt 0.967575 0.712948 +vt 0.961827 0.733421 +vt 0.962827 0.740653 +vt 0.962590 0.735902 +vt 0.970561 0.709400 +vt 0.974662 0.706996 +vt 0.973145 0.706188 +vt 0.962646 0.725472 +vt 0.961492 0.720351 +vt 0.966356 0.712561 +vt 0.964157 0.715476 +vt 0.961056 0.731712 +vt 0.963127 0.736344 +vt 0.963287 0.736263 +vt 0.969130 0.711164 +vt 0.970616 0.707997 +vt 0.972024 0.704780 +vt 0.962048 0.723890 +vt 0.961315 0.722163 +vt 0.960537 0.719496 +vt 0.966014 0.712323 +vt 0.964596 0.712839 +vt 0.961254 0.714058 +vt 0.967127 0.712398 +vt 0.960471 0.729409 +vt 0.960971 0.733626 +vt 0.962062 0.728656 +vt 0.961965 0.739942 +vt 0.962377 0.736786 +vt 0.962114 0.735608 +vt 0.969400 0.709321 +vt 0.971347 0.705840 +vt 0.961177 0.724803 +vt 0.959633 0.721611 +vt 0.964621 0.711826 +vt 0.966516 0.711672 +vt 0.964125 0.712531 +vt 0.961871 0.713234 +vt 0.966927 0.712047 +vt 0.960035 0.731910 +vt 0.968811 0.709670 +vt 0.969543 0.707043 +vt 0.960042 0.724658 +vt 0.958394 0.720251 +vt 0.960677 0.715410 +vt 0.965471 0.711446 +vt 0.963112 0.712610 +vt 0.962669 0.713444 +vt 0.961085 0.712610 +vt 0.968069 0.711012 +vt 0.967121 0.711619 +vt 0.960990 0.727171 +vt 0.958653 0.731341 +vt 0.960102 0.734214 +vt 0.960768 0.735000 +vt 0.961364 0.739034 +vt 0.961621 0.736467 +vt 0.968634 0.708319 +vt 0.959133 0.723744 +vt 0.958508 0.722062 +vt 0.959686 0.717304 +vt 0.960417 0.713428 +vt 0.964902 0.710309 +vt 0.963449 0.711895 +vt 0.962399 0.712700 +vt 0.960113 0.727168 +vt 0.958590 0.730173 +vt 0.957365 0.733437 +vt 0.959795 0.734584 +vt 0.967420 0.709727 +vt 0.968045 0.707052 +vt 0.958907 0.726494 +vt 0.957601 0.720961 +vt 0.958226 0.717642 +vt 0.959739 0.714845 +vt 0.963631 0.709773 +vt 0.966519 0.708618 +vt 0.962179 0.712015 +vt 0.963617 0.710864 +vt 0.960280 0.712152 +vt 0.960141 0.735507 +vt 0.960389 0.736518 +vt 0.960983 0.737754 +vt 0.967563 0.708620 +vt 0.957471 0.724647 +vt 0.957771 0.723152 +vt 0.957141 0.719345 +vt 0.958886 0.715331 +vt 0.959204 0.714063 +vt 0.964740 0.707976 +vt 0.962049 0.710491 +vt 0.959700 0.712944 +vt 0.961182 0.711731 +vt 0.956741 0.730919 +vt 0.958404 0.735138 +vt 0.959325 0.735238 +vt 0.960127 0.739692 +vt 0.967181 0.707464 +vt 0.957161 0.725612 +vt 0.956857 0.720765 +vt 0.956359 0.715923 +vt 0.957929 0.715198 +vt 0.963234 0.707344 +vt 0.966378 0.707468 +vt 0.961039 0.709495 +vt 0.959846 0.711983 +vt 0.960388 0.710438 +vt 0.956308 0.732456 +vt 0.956836 0.734817 +vt 0.959833 0.736281 +vt 0.960134 0.736073 +vt 0.959797 0.738571 +vt 0.967071 0.706469 +vt 0.956174 0.722797 +vt 0.955392 0.717450 +vt 0.956166 0.721893 +vt 0.957141 0.715108 +vt 0.958418 0.714084 +vt 0.959131 0.713004 +vt 0.963776 0.706982 +vt 0.962704 0.708733 +vt 0.962032 0.709456 +vt 0.965513 0.706683 +vt 0.959220 0.712474 +vt 0.956152 0.735362 +vt 0.955048 0.731981 +vt 0.958456 0.736436 +vt 0.957320 0.735370 +vt 0.959168 0.736919 +vt 0.959426 0.738441 +vt 0.955231 0.729850 +vt 0.955644 0.725929 +vt 0.955727 0.720268 +vt 0.956695 0.714133 +vt 0.955858 0.714250 +vt 0.957904 0.713969 +vt 0.957311 0.713700 +vt 0.958741 0.713448 +vt 0.962519 0.706242 +vt 0.962666 0.707386 +vt 0.961348 0.708823 +vt 0.959360 0.711528 +vt 0.959797 0.709402 +vt 0.955449 0.734677 +vt 0.957273 0.737177 +vt 0.956264 0.736378 +vt 0.954981 0.723522 +vt 0.955365 0.721807 +vt 0.954357 0.719545 +vt 0.955194 0.715053 +vt 0.957904 0.713275 +vt 0.958052 0.712681 +vt 0.958811 0.712195 +vt 0.962155 0.707930 +vt 0.960807 0.707406 +vt 0.961965 0.708297 +vt 0.959184 0.710538 +vt 0.960174 0.707789 +vt 0.955158 0.735781 +vt 0.954654 0.731318 +vt 0.954473 0.734304 +vt 0.958088 0.738869 +vt 0.958808 0.738153 +vt 0.959268 0.738308 +vt 0.954241 0.726470 +vt 0.954035 0.717207 +vt 0.956530 0.712956 +vt 0.956921 0.713203 +vt 0.953034 0.714873 +vt 0.955087 0.712632 +vt 0.961356 0.706413 +vt 0.961577 0.707545 +vt 0.958608 0.711437 +vt 0.958801 0.709422 +vt 0.959527 0.708362 +vt 0.953811 0.732985 +vt 0.954067 0.729553 +vt 0.956131 0.738128 +vt 0.955597 0.737237 +vt 0.958415 0.739703 +vt 0.954294 0.724202 +vt 0.954487 0.722722 +vt 0.954237 0.721231 +vt 0.953267 0.719140 +vt 0.955625 0.712471 +vt 0.957111 0.712780 +vt 0.953886 0.714159 +vt 0.953913 0.713219 +vt 0.957175 0.711430 +vt 0.958361 0.711840 +vt 0.960291 0.706778 +vt 0.958416 0.711134 +vt 0.958647 0.706900 +vt 0.954206 0.735793 +vt 0.953428 0.731684 +vt 0.953033 0.732877 +vt 0.954553 0.736538 +vt 0.953336 0.729569 +vt 0.953496 0.724131 +vt 0.953267 0.721050 +vt 0.956118 0.711346 +vt 0.953163 0.713631 +vt 0.954156 0.712545 +vt 0.954936 0.711705 +vt 0.957829 0.711340 +vt 0.958058 0.707872 +vt 0.957483 0.709742 +vt 0.954964 0.740551 +vt 0.953952 0.738556 +vt 0.952574 0.727452 +vt 0.952562 0.725243 +vt 0.953858 0.723280 +vt 0.953808 0.722305 +vt 0.951902 0.718819 +vt 0.952735 0.720693 +vt 0.952276 0.714672 +vt 0.953350 0.712444 +vt 0.953560 0.736585 +vt 0.952199 0.731286 +vt 0.952792 0.730312 +vt 0.952415 0.728948 +vt 0.952951 0.723699 +vt 0.953391 0.723271 +vt 0.953080 0.721732 +vt 0.951608 0.716614 +vt 0.954119 0.710674 +vt 0.953007 0.713180 +vt 0.952263 0.713650 +vt 0.957121 0.708733 +vt 0.951750 0.735327 +vt 0.951714 0.732986 +vt 0.953764 0.741925 +vt 0.952712 0.739431 +vt 0.950785 0.727873 +vt 0.951801 0.724933 +vt 0.952200 0.723707 +vt 0.951029 0.720391 +vt 0.952052 0.721311 +vt 0.955456 0.709067 +vt 0.951432 0.714378 +vt 0.951208 0.715571 +vt 0.952720 0.711200 +vt 0.951936 0.736317 +vt 0.950666 0.732485 +vt 0.951092 0.731117 +vt 0.951065 0.729388 +vt 0.953331 0.740523 +vt 0.952260 0.739141 +vt 0.951875 0.722725 +vt 0.950063 0.720196 +vt 0.951811 0.713328 +vt 0.949696 0.715241 +vt 0.952685 0.710088 +vt 0.950780 0.737557 +vt 0.950439 0.734259 +vt 0.952408 0.740755 +vt 0.952738 0.740719 +vt 0.950802 0.723826 +vt 0.950260 0.729132 +vt 0.950827 0.722240 +vt 0.949594 0.716904 +vt 0.950651 0.713142 +vt 0.950045 0.714209 +vt 0.951564 0.711928 +vt 0.951360 0.711282 +vt 0.951674 0.738480 +vt 0.950762 0.736576 +vt 0.951312 0.737808 +vt 0.949986 0.730892 +vt 0.949323 0.731419 +vt 0.951602 0.739982 +vt 0.948161 0.727834 +vt 0.949817 0.728536 +vt 0.949401 0.723390 +vt 0.949197 0.720484 +vt 0.948506 0.714727 +vt 0.948586 0.713562 +vt 0.950539 0.710244 +vt 0.950075 0.737536 +vt 0.950914 0.738985 +vt 0.950051 0.736398 +vt 0.949116 0.734415 +vt 0.951480 0.741398 +vt 0.952190 0.742594 +vt 0.950222 0.723795 +vt 0.949693 0.730645 +vt 0.949657 0.729489 +vt 0.948166 0.718320 +vt 0.949121 0.712850 +vt 0.950177 0.711487 +vt 0.950292 0.739051 +vt 0.948992 0.732260 +vt 0.950836 0.741357 +vt 0.947963 0.725529 +vt 0.947950 0.728948 +vt 0.949066 0.729708 +vt 0.948556 0.722263 +vt 0.948791 0.724671 +vt 0.948013 0.721466 +vt 0.947917 0.714092 +vt 0.947839 0.715677 +vt 0.948109 0.711365 +vt 0.949881 0.738649 +vt 0.949375 0.736795 +vt 0.949288 0.730356 +vt 0.948132 0.732796 +vt 0.948773 0.731269 +vt 0.950967 0.742753 +vt 0.946653 0.727795 +vt 0.946974 0.719333 +vt 0.947348 0.713178 +vt 0.946551 0.717194 +vt 0.949336 0.741553 +vt 0.949341 0.737890 +vt 0.950248 0.740968 +vt 0.947335 0.735702 +vt 0.947036 0.734181 +vt 0.948255 0.731444 +vt 0.950215 0.742147 +vt 0.947730 0.723289 +vt 0.946314 0.726947 +vt 0.946355 0.728921 +vt 0.947900 0.729751 +vt 0.948736 0.730382 +vt 0.947512 0.722489 +vt 0.947060 0.714859 +vt 0.949251 0.739189 +vt 0.948524 0.737550 +vt 0.948222 0.736764 +vt 0.947507 0.731962 +vt 0.946985 0.725086 +vt 0.944972 0.726392 +vt 0.945332 0.729003 +vt 0.946644 0.722495 +vt 0.945932 0.719263 +vt 0.946303 0.713786 +vt 0.945939 0.715471 +vt 0.949790 0.741777 +vt 0.948497 0.738827 +vt 0.945831 0.735961 +vt 0.947557 0.736847 +vt 0.946446 0.733010 +vt 0.947609 0.730776 +vt 0.946786 0.724201 +vt 0.945598 0.725305 +vt 0.943903 0.728186 +vt 0.946461 0.729850 +vt 0.945663 0.729953 +vt 0.944887 0.717262 +vt 0.945569 0.714595 +vt 0.949275 0.742880 +vt 0.948014 0.738089 +vt 0.945183 0.734866 +vt 0.946705 0.736822 +vt 0.947773 0.737828 +vt 0.946457 0.731753 +vt 0.943830 0.725809 +vt 0.944660 0.724875 +vt 0.946427 0.730893 +vt 0.945010 0.730014 +vt 0.942982 0.721594 +vt 0.945689 0.713580 +vt 0.944957 0.715285 +vt 0.947696 0.738802 +vt 0.944822 0.736566 +vt 0.945183 0.738395 +vt 0.945640 0.733552 +vt 0.945787 0.732332 +vt 0.944456 0.723294 +vt 0.942963 0.726268 +vt 0.945949 0.730579 +vt 0.944363 0.730096 +vt 0.945387 0.730414 +vt 0.943710 0.717521 +vt 0.944888 0.714114 +vt 0.944139 0.715631 +vt 0.944418 0.734283 +vt 0.945617 0.738131 +vt 0.946651 0.737669 +vt 0.945786 0.731840 +vt 0.943228 0.729991 +vt 0.944496 0.731140 +vt 0.941399 0.719928 +vt 0.944277 0.714359 +vt 0.946702 0.738623 +vt 0.944513 0.738484 +vt 0.944262 0.737569 +vt 0.945103 0.739611 +vt 0.945065 0.732908 +vt 0.945324 0.732033 +vt 0.940874 0.727796 +vt 0.941892 0.729744 +vt 0.945438 0.731303 +vt 0.944312 0.732304 +vt 0.943503 0.732661 +vt 0.943015 0.715595 +vt 0.942096 0.717011 +vt 0.941642 0.723385 +vt 0.943514 0.713033 +vt 0.946969 0.739304 +vt 0.942409 0.734815 +vt 0.944094 0.733389 +vt 0.945068 0.731981 +vt 0.940696 0.717701 +vt 0.940518 0.721238 +vt 0.944416 0.739215 +vt 0.943751 0.738136 +vt 0.939936 0.725908 +vt 0.940567 0.731513 +vt 0.942287 0.732514 +vt 0.941831 0.715542 +vt 0.942883 0.713688 +vt 0.939834 0.719905 +vt 0.940773 0.722773 +vt 0.945133 0.741000 +vt 0.944049 0.740103 +vt 0.941771 0.733589 +vt 0.941312 0.735647 +vt 0.939849 0.728428 +vt 0.939880 0.723720 +vt 0.942242 0.714636 +vt 0.942673 0.711989 +vt 0.939517 0.715171 +vt 0.940782 0.714826 +vt 0.940308 0.722063 +vt 0.945749 0.741913 +vt 0.942610 0.739236 +vt 0.941795 0.739451 +vt 0.939187 0.726956 +vt 0.938849 0.725021 +vt 0.939030 0.732924 +vt 0.940790 0.733743 +vt 0.941918 0.713786 +vt 0.938553 0.719002 +vt 0.938577 0.721391 +vt 0.944917 0.742480 +vt 0.946715 0.742605 +vt 0.942153 0.740835 +vt 0.940403 0.738548 +vt 0.939255 0.729293 +vt 0.939243 0.723296 +vt 0.940168 0.734336 +vt 0.938668 0.730547 +vt 0.941679 0.713106 +vt 0.938601 0.716721 +vt 0.945669 0.743344 +vt 0.947535 0.741853 +vt 0.943065 0.741456 +vt 0.940541 0.735712 +vt 0.941121 0.739674 +vt 0.938509 0.728680 +vt 0.938251 0.727490 +vt 0.937852 0.723963 +vt 0.938398 0.735551 +vt 0.937947 0.733097 +vt 0.941416 0.711735 +vt 0.937649 0.715553 +vt 0.938468 0.715117 +vt 0.937845 0.722411 +vt 0.941086 0.713292 +vt 0.946252 0.743471 +vt 0.947269 0.743663 +vt 0.942143 0.742337 +vt 0.941422 0.741195 +vt 0.939572 0.737700 +vt 0.939972 0.739736 +vt 0.937777 0.726153 +vt 0.939049 0.736339 +vt 0.937826 0.731199 +vt 0.937245 0.717257 +vt 0.938450 0.713798 +vt 0.937486 0.720044 +vt 0.946640 0.744018 +vt 0.945759 0.744957 +vt 0.939671 0.738790 +vt 0.940559 0.741187 +vt 0.940452 0.740432 +vt 0.937519 0.729810 +vt 0.937001 0.724597 +vt 0.938222 0.737175 +vt 0.937379 0.737100 +vt 0.936867 0.731981 +vt 0.936968 0.715029 +vt 0.936503 0.722142 +vt 0.946743 0.745544 +vt 0.941174 0.742932 +vt 0.939092 0.738283 +vt 0.939436 0.738370 +vt 0.939770 0.740680 +vt 0.939454 0.739663 +vt 0.938470 0.738129 +vt 0.935312 0.735876 +vt 0.937234 0.730989 +vt 0.936491 0.719092 +vt 0.936462 0.717002 +vt 0.939183 0.738945 +vt 0.939597 0.740162 +vt 0.936260 0.724908 +vt 0.938231 0.739648 +vt 0.936607 0.736951 +vt 0.936930 0.730188 +vt 0.935730 0.732859 +vt 0.936113 0.715304 +vt 0.935398 0.720968 +vt 0.938553 0.739056 +vt 0.939669 0.741979 +vt 0.939613 0.740374 +vt 0.938906 0.739838 +vt 0.939187 0.740235 +vt 0.936670 0.728661 +vt 0.935875 0.724189 +vt 0.936484 0.738666 +vt 0.935188 0.737135 +vt 0.935609 0.731075 +vt 0.934147 0.735372 +vt 0.936354 0.730166 +vt 0.935049 0.717396 +vt 0.935714 0.716535 +vt 0.939139 0.741095 +vt 0.936060 0.729053 +vt 0.935327 0.726260 +vt 0.935311 0.738657 +vt 0.934925 0.732142 +vt 0.934876 0.715769 +vt 0.935012 0.725330 +vt 0.933405 0.718264 +vt 0.937972 0.741417 +vt 0.935639 0.727020 +vt 0.934045 0.737251 +vt 0.934463 0.738076 +vt 0.934971 0.730966 +vt 0.934048 0.733232 +vt 0.934738 0.713216 +vt 0.934023 0.725406 +vt 0.933489 0.716285 +vt 0.934981 0.728046 +vt 0.933904 0.736111 +vt 0.934038 0.731623 +vt 0.935242 0.729524 +vt 0.933529 0.734970 +vt 0.932712 0.715021 +vt 0.932640 0.716208 +vt 0.932894 0.724192 +vt 0.934477 0.727095 +vt 0.932975 0.736556 +vt 0.933223 0.740470 +vt 0.934440 0.730049 +vt 0.932411 0.732762 +vt 0.932816 0.733897 +vt 0.930431 0.716823 +vt 0.932569 0.726151 +vt 0.934854 0.728485 +vt 0.933202 0.727768 +vt 0.934332 0.728405 +vt 0.932725 0.737727 +vt 0.933438 0.730845 +vt 0.929915 0.715253 +vt 0.931568 0.714462 +vt 0.930231 0.720776 +vt 0.932010 0.725489 +vt 0.931843 0.736008 +vt 0.933771 0.729211 +vt 0.931732 0.733959 +vt 0.932516 0.730929 +vt 0.928603 0.716617 +vt 0.928820 0.718158 +vt 0.928475 0.723488 +vt 0.931540 0.726080 +vt 0.931374 0.724607 +vt 0.932343 0.727935 +vt 0.932997 0.729073 +vt 0.931632 0.731947 +vt 0.928361 0.715403 +vt 0.928662 0.721618 +vt 0.931286 0.727580 +vt 0.930495 0.734444 +vt 0.931999 0.729041 +vt 0.927967 0.716741 +vt 0.927971 0.717841 +vt 0.927413 0.722537 +vt 0.930258 0.725756 +vt 0.930488 0.730589 +vt 0.926904 0.716043 +vt 0.927407 0.719071 +vt 0.927038 0.714091 +vt 0.926966 0.717667 +vt 0.925318 0.713998 +vt 0.959902 0.817842 +vt 0.959020 0.818788 +vt 0.959255 0.817348 +vt 0.959757 0.818434 +vt 0.958056 0.816090 +vt 0.959560 0.816694 +vt 0.959968 0.818577 +vt 0.955853 0.818340 +vt 0.960302 0.816643 +vt 0.960516 0.818322 +vt 0.960049 0.819381 +vt 0.959595 0.815596 +vt 0.957777 0.821431 +vt 0.955071 0.815291 +vt 0.959648 0.820093 +vt 0.959006 0.813898 +vt 0.959033 0.820328 +vt 0.954958 0.821292 +vt 0.956606 0.813195 +vt 0.954211 0.816863 +vt 0.961040 0.816766 +vt 0.960315 0.814775 +vt 0.960500 0.820115 +vt 0.960073 0.820292 +vt 0.959333 0.820971 +vt 0.954127 0.819500 +vt 0.955740 0.823969 +vt 0.953561 0.813291 +vt 0.953404 0.815849 +vt 0.953943 0.818173 +vt 0.959831 0.820648 +vt 0.958421 0.812655 +vt 0.959799 0.812460 +vt 0.959270 0.822107 +vt 0.953543 0.820744 +vt 0.957681 0.823893 +vt 0.954352 0.823884 +vt 0.953584 0.814263 +vt 0.954720 0.812208 +vt 0.953210 0.817330 +vt 0.961168 0.813562 +vt 0.959923 0.821080 +vt 0.957551 0.811423 +vt 0.959252 0.812803 +vt 0.958647 0.823234 +vt 0.952703 0.819431 +vt 0.953518 0.822393 +vt 0.957200 0.825714 +vt 0.954743 0.824427 +vt 0.953095 0.813397 +vt 0.953729 0.812721 +vt 0.955860 0.811802 +vt 0.952123 0.816889 +vt 0.960065 0.822180 +vt 0.958951 0.812281 +vt 0.960555 0.811793 +vt 0.959409 0.823630 +vt 0.952695 0.821489 +vt 0.958672 0.825048 +vt 0.955788 0.826581 +vt 0.953772 0.824015 +vt 0.954021 0.824736 +vt 0.954597 0.825398 +vt 0.953740 0.812161 +vt 0.954916 0.811277 +vt 0.960184 0.809719 +vt 0.951442 0.822340 +vt 0.952487 0.822878 +vt 0.958098 0.827158 +vt 0.956853 0.827655 +vt 0.952941 0.823736 +vt 0.952132 0.814822 +vt 0.951051 0.819625 +vt 0.955249 0.809488 +vt 0.961482 0.811995 +vt 0.954686 0.827488 +vt 0.956054 0.827821 +vt 0.953010 0.825009 +vt 0.953637 0.825197 +vt 0.953892 0.826317 +vt 0.953080 0.812175 +vt 0.951260 0.816569 +vt 0.950783 0.817966 +vt 0.962684 0.813213 +vt 0.951940 0.824814 +vt 0.949960 0.821818 +vt 0.957565 0.829810 +vt 0.955517 0.828053 +vt 0.956155 0.828997 +vt 0.951647 0.813874 +vt 0.951223 0.815532 +vt 0.949874 0.819537 +vt 0.955961 0.805591 +vt 0.951839 0.811720 +vt 0.949763 0.826809 +vt 0.958765 0.828367 +vt 0.955145 0.829316 +vt 0.953630 0.827789 +vt 0.952467 0.826723 +vt 0.953267 0.826052 +vt 0.950692 0.817292 +vt 0.950739 0.816619 +vt 0.950161 0.817778 +vt 0.953844 0.807626 +vt 0.951581 0.826840 +vt 0.958684 0.830156 +vt 0.955844 0.831329 +vt 0.954217 0.829151 +vt 0.953154 0.828432 +vt 0.950626 0.815756 +vt 0.949153 0.819631 +vt 0.952905 0.806651 +vt 0.951795 0.828910 +vt 0.958274 0.831782 +vt 0.959254 0.829404 +vt 0.957164 0.833392 +vt 0.954675 0.830838 +vt 0.953858 0.830907 +vt 0.951972 0.827409 +vt 0.953751 0.800259 +vt 0.950108 0.811833 +vt 0.958964 0.831737 +vt 0.955452 0.834291 +vt 0.952812 0.830588 +vt 0.952739 0.828245 +vt 0.958391 0.833945 +vt 0.959645 0.830350 +vt 0.954711 0.832598 +vt 0.956314 0.836624 +vt 0.953415 0.832015 +vt 0.958952 0.834906 +vt 0.957839 0.835982 +vt 0.955164 0.836127 +vt 0.954368 0.834405 +vt 0.954122 0.832188 +vt 0.953856 0.831977 +vt 0.952766 0.832433 +vt 0.958515 0.835813 +vt 0.955103 0.837551 +vt 0.954670 0.835485 +vt 0.957419 0.837813 +vt 0.954168 0.833241 +vt 0.953969 0.831747 +vt 0.953797 0.832827 +vt 0.953305 0.833378 +vt 0.952323 0.831566 +vt 0.952202 0.830550 +vt 0.958525 0.837388 +vt 0.958355 0.836695 +vt 0.954441 0.836735 +vt 0.955660 0.838763 +vt 0.958138 0.837476 +vt 0.956671 0.838998 +vt 0.954047 0.835862 +vt 0.953787 0.834018 +vt 0.952723 0.834053 +vt 0.951949 0.833116 +vt 0.951858 0.831197 +vt 0.954467 0.838708 +vt 0.957923 0.838625 +vt 0.957393 0.838909 +vt 0.953246 0.834959 +vt 0.950989 0.831975 +vt 0.953849 0.837881 +vt 0.955177 0.840306 +vt 0.955941 0.839967 +vt 0.953508 0.836773 +vt 0.957469 0.839914 +vt 0.952761 0.835153 +vt 0.952038 0.835515 +vt 0.954283 0.840402 +vt 0.956477 0.840683 +vt 0.951384 0.835048 +vt 0.951273 0.833536 +vt 0.953041 0.838433 +vt 0.954663 0.841246 +vt 0.955738 0.840950 +vt 0.952020 0.839478 +vt 0.951126 0.837400 +vt 0.950771 0.834166 +vt 0.953439 0.840226 +vt 0.955089 0.841815 +vt 0.954061 0.841874 +vt 0.956030 0.841890 +vt 0.950691 0.835417 +vt 0.949601 0.834863 +vt 0.953666 0.841243 +vt 0.954336 0.842168 +vt 0.951411 0.840113 +vt 0.953013 0.841191 +vt 0.953416 0.842254 +vt 0.953884 0.843128 +vt 0.951969 0.841823 +vt 0.950354 0.840610 +vt 0.951233 0.841775 +vt 0.952791 0.842460 +vt 0.953089 0.843523 +vt 0.951688 0.842480 +vt 0.951149 0.843727 +vt 0.952191 0.843295 +vt 0.952258 0.845346 +vt 0.328009 0.568454 +vt 0.329055 0.566396 +vt 0.330229 0.569923 +vt 0.327799 0.565592 +vt 0.330464 0.566684 +vt 0.328344 0.573623 +vt 0.328434 0.563958 +vt 0.326640 0.566489 +vt 0.330448 0.563898 +vt 0.332806 0.568946 +vt 0.332735 0.575963 +vt 0.325764 0.568502 +vt 0.327029 0.562857 +vt 0.325825 0.563337 +vt 0.332054 0.582396 +vt 0.323975 0.573134 +vt 0.329615 0.561836 +vt 0.325310 0.565321 +vt 0.332520 0.564466 +vt 0.334310 0.573669 +vt 0.326945 0.582751 +vt 0.333803 0.580420 +vt 0.324255 0.567521 +vt 0.325972 0.560671 +vt 0.324667 0.563908 +vt 0.324994 0.565894 +vt 0.333897 0.565155 +vt 0.335984 0.572021 +vt 0.335584 0.577465 +vt 0.331670 0.589549 +vt 0.334515 0.584963 +vt 0.322949 0.567688 +vt 0.318959 0.582964 +vt 0.324353 0.561327 +vt 0.327332 0.554561 +vt 0.334052 0.562637 +vt 0.334902 0.567562 +vt 0.326841 0.594441 +vt 0.333755 0.587102 +vt 0.335591 0.581932 +vt 0.323650 0.566029 +vt 0.320688 0.570277 +vt 0.324175 0.565177 +vt 0.322820 0.557439 +vt 0.332479 0.558178 +vt 0.324722 0.553389 +vt 0.323593 0.561652 +vt 0.335190 0.566145 +vt 0.336940 0.561929 +vt 0.337416 0.568507 +vt 0.337722 0.574012 +vt 0.333167 0.594255 +vt 0.334349 0.589547 +vt 0.337436 0.580063 +vt 0.335253 0.586495 +vt 0.336112 0.583880 +vt 0.323129 0.564472 +vt 0.321816 0.565985 +vt 0.321860 0.595405 +vt 0.316924 0.571343 +vt 0.331093 0.554009 +vt 0.328294 0.548335 +vt 0.335443 0.559518 +vt 0.336549 0.566361 +vt 0.330517 0.597953 +vt 0.334089 0.591636 +vt 0.334883 0.588174 +vt 0.320705 0.566234 +vt 0.317929 0.594184 +vt 0.325011 0.599003 +vt 0.314084 0.572864 +vt 0.319187 0.566093 +vt 0.323273 0.553684 +vt 0.321861 0.557029 +vt 0.333932 0.555028 +vt 0.328452 0.552611 +vt 0.322860 0.547087 +vt 0.335561 0.557001 +vt 0.322060 0.563616 +vt 0.337124 0.563640 +vt 0.338287 0.557559 +vt 0.339187 0.569327 +vt 0.338173 0.566075 +vt 0.339330 0.573954 +vt 0.332993 0.595985 +vt 0.328986 0.599204 +vt 0.334189 0.594280 +vt 0.335845 0.589556 +vt 0.335427 0.591744 +vt 0.336828 0.586036 +vt 0.336101 0.588348 +vt 0.320992 0.564452 +vt 0.315860 0.589587 +vt 0.321426 0.598902 +vt 0.323243 0.600975 +vt 0.327603 0.599036 +vt 0.313941 0.576420 +vt 0.311899 0.567540 +vt 0.315858 0.567153 +vt 0.321130 0.559703 +vt 0.331086 0.551224 +vt 0.329420 0.550494 +vt 0.327183 0.542161 +vt 0.339572 0.562603 +vt 0.340895 0.579924 +vt 0.332570 0.598192 +vt 0.329784 0.600289 +vt 0.339104 0.585890 +vt 0.320363 0.565075 +vt 0.315652 0.593138 +vt 0.315493 0.585603 +vt 0.318065 0.598998 +vt 0.325626 0.602552 +vt 0.312184 0.572733 +vt 0.312569 0.571239 +vt 0.317978 0.564408 +vt 0.318081 0.551852 +vt 0.319627 0.556951 +vt 0.334712 0.549262 +vt 0.331882 0.549255 +vt 0.330010 0.548009 +vt 0.329175 0.544601 +vt 0.325201 0.537767 +vt 0.338605 0.552579 +vt 0.340433 0.557898 +vt 0.343526 0.572389 +vt 0.340860 0.566603 +vt 0.334416 0.595825 +vt 0.330710 0.600603 +vt 0.329661 0.601244 +vt 0.328531 0.601311 +vt 0.335673 0.595162 +vt 0.336768 0.592276 +vt 0.337612 0.589734 +vt 0.320070 0.563760 +vt 0.316072 0.595085 +vt 0.314506 0.592016 +vt 0.313810 0.586925 +vt 0.321111 0.601601 +vt 0.324258 0.605337 +vt 0.313360 0.582269 +vt 0.312889 0.577082 +vt 0.313564 0.566985 +vt 0.318918 0.563797 +vt 0.315790 0.564408 +vt 0.316885 0.542829 +vt 0.319699 0.559630 +vt 0.330859 0.541841 +vt 0.344093 0.563061 +vt 0.344825 0.584576 +vt 0.342344 0.589471 +vt 0.335365 0.597418 +vt 0.332837 0.601006 +vt 0.335925 0.592622 +vt 0.340335 0.593112 +vt 0.314971 0.594613 +vt 0.313631 0.589791 +vt 0.314708 0.593563 +vt 0.322806 0.603581 +vt 0.315986 0.600156 +vt 0.319669 0.602797 +vt 0.326857 0.607837 +vt 0.327881 0.603642 +vt 0.309455 0.572816 +vt 0.308269 0.568146 +vt 0.312759 0.564462 +vt 0.318369 0.562260 +vt 0.316457 0.562086 +vt 0.313359 0.547286 +vt 0.318656 0.557425 +vt 0.337742 0.545375 +vt 0.332605 0.547665 +vt 0.331279 0.546489 +vt 0.328998 0.535537 +vt 0.317713 0.533291 +vt 0.339498 0.552620 +vt 0.343338 0.556307 +vt 0.348121 0.575163 +vt 0.330550 0.602553 +vt 0.329250 0.603022 +vt 0.336936 0.594630 +vt 0.337717 0.593118 +vt 0.317954 0.560151 +vt 0.315147 0.596440 +vt 0.313878 0.593406 +vt 0.312035 0.588532 +vt 0.321046 0.607588 +vt 0.317382 0.602781 +vt 0.324500 0.609887 +vt 0.311178 0.578182 +vt 0.309893 0.562987 +vt 0.314009 0.561910 +vt 0.315241 0.554439 +vt 0.313157 0.544423 +vt 0.337041 0.545208 +vt 0.333055 0.545043 +vt 0.332335 0.542590 +vt 0.326955 0.533466 +vt 0.329619 0.534044 +vt 0.313671 0.538671 +vt 0.323083 0.534564 +vt 0.348428 0.560721 +vt 0.347831 0.567037 +vt 0.345962 0.593939 +vt 0.348148 0.571943 +vt 0.349098 0.584459 +vt 0.341362 0.598295 +vt 0.336506 0.596479 +vt 0.334529 0.601042 +vt 0.332375 0.603121 +vt 0.329814 0.603182 +vt 0.338405 0.597461 +vt 0.313563 0.596487 +vt 0.312359 0.591945 +vt 0.311185 0.590395 +vt 0.310672 0.584850 +vt 0.322410 0.608236 +vt 0.314769 0.602519 +vt 0.314765 0.599001 +vt 0.319209 0.609182 +vt 0.318080 0.606166 +vt 0.329213 0.607469 +vt 0.326289 0.611012 +vt 0.329313 0.604335 +vt 0.308222 0.576518 +vt 0.307148 0.561271 +vt 0.317330 0.558760 +vt 0.313055 0.550003 +vt 0.313425 0.541865 +vt 0.312616 0.546312 +vt 0.317491 0.557331 +vt 0.338693 0.542061 +vt 0.339761 0.545667 +vt 0.334333 0.539150 +vt 0.328217 0.532986 +vt 0.332599 0.538300 +vt 0.312632 0.535392 +vt 0.323125 0.530945 +vt 0.342249 0.548175 +vt 0.347659 0.548890 +vt 0.345696 0.600366 +vt 0.346979 0.586577 +vt 0.349697 0.574405 +vt 0.350671 0.579261 +vt 0.336722 0.599663 +vt 0.333657 0.602638 +vt 0.330832 0.605513 +vt 0.312854 0.594233 +vt 0.321872 0.610410 +vt 0.313763 0.606613 +vt 0.320102 0.609241 +vt 0.316642 0.607972 +vt 0.328913 0.611077 +vt 0.325439 0.612422 +vt 0.327484 0.611492 +vt 0.323235 0.609832 +vt 0.304560 0.569448 +vt 0.309209 0.559650 +vt 0.306002 0.566737 +vt 0.311640 0.559935 +vt 0.316071 0.558052 +vt 0.311903 0.547007 +vt 0.311682 0.552822 +vt 0.311867 0.542921 +vt 0.311796 0.545140 +vt 0.335655 0.542578 +vt 0.328145 0.531513 +vt 0.330206 0.532365 +vt 0.333566 0.535724 +vt 0.312621 0.531651 +vt 0.311757 0.538586 +vt 0.312073 0.540769 +vt 0.321446 0.526931 +vt 0.350730 0.550455 +vt 0.350198 0.561265 +vt 0.350314 0.569112 +vt 0.350382 0.598563 +vt 0.347385 0.590793 +vt 0.349741 0.571464 +vt 0.350804 0.576760 +vt 0.351973 0.580947 +vt 0.349226 0.588020 +vt 0.339122 0.601265 +vt 0.342362 0.601244 +vt 0.333515 0.605045 +vt 0.337392 0.601483 +vt 0.311524 0.595112 +vt 0.313685 0.598492 +vt 0.310315 0.591803 +vt 0.320697 0.610276 +vt 0.314939 0.608025 +vt 0.312620 0.600411 +vt 0.319168 0.610072 +vt 0.317609 0.609100 +vt 0.330582 0.611156 +vt 0.328310 0.614014 +vt 0.324443 0.612242 +vt 0.323668 0.611921 +vt 0.302001 0.577906 +vt 0.301572 0.573389 +vt 0.309336 0.557643 +vt 0.306748 0.560771 +vt 0.311669 0.557498 +vt 0.314509 0.556922 +vt 0.310927 0.547693 +vt 0.310355 0.551482 +vt 0.339065 0.539061 +vt 0.336696 0.539068 +vt 0.325739 0.529910 +vt 0.330659 0.532642 +vt 0.310316 0.533223 +vt 0.318680 0.524285 +vt 0.310966 0.537119 +vt 0.324509 0.528025 +vt 0.344135 0.543963 +vt 0.350495 0.555716 +vt 0.348866 0.544730 +vt 0.353404 0.566136 +vt 0.350948 0.602738 +vt 0.349229 0.594716 +vt 0.351528 0.574730 +vt 0.352482 0.577865 +vt 0.351989 0.587015 +vt 0.350543 0.587674 +vt 0.340726 0.601443 +vt 0.344228 0.604321 +vt 0.336591 0.604049 +vt 0.332578 0.608850 +vt 0.300252 0.585961 +vt 0.322785 0.612037 +vt 0.321109 0.611713 +vt 0.313541 0.608537 +vt 0.309838 0.604843 +vt 0.316668 0.610023 +vt 0.315731 0.609133 +vt 0.330856 0.612700 +vt 0.325706 0.614345 +vt 0.323809 0.613108 +vt 0.300653 0.571270 +vt 0.303953 0.566889 +vt 0.304331 0.564013 +vt 0.310685 0.545674 +vt 0.308691 0.555642 +vt 0.311222 0.541937 +vt 0.337926 0.539380 +vt 0.342522 0.540333 +vt 0.327348 0.527558 +vt 0.330321 0.529970 +vt 0.330923 0.530150 +vt 0.332750 0.533159 +vt 0.308683 0.529241 +vt 0.310239 0.535740 +vt 0.315419 0.521186 +vt 0.310944 0.538660 +vt 0.322174 0.523948 +vt 0.320990 0.525223 +vt 0.345636 0.543188 +vt 0.356955 0.555477 +vt 0.351669 0.544043 +vt 0.354897 0.562459 +vt 0.353523 0.557080 +vt 0.354569 0.569206 +vt 0.351388 0.571769 +vt 0.346845 0.606226 +vt 0.353421 0.602772 +vt 0.353860 0.597039 +vt 0.348944 0.591218 +vt 0.354793 0.576342 +vt 0.356255 0.584140 +vt 0.350847 0.590899 +vt 0.341946 0.605992 +vt 0.338417 0.605536 +vt 0.336341 0.606894 +vt 0.307644 0.594924 +vt 0.304944 0.593218 +vt 0.321873 0.612627 +vt 0.320270 0.611801 +vt 0.314348 0.609531 +vt 0.310588 0.608442 +vt 0.309896 0.607336 +vt 0.309722 0.601791 +vt 0.317535 0.611201 +vt 0.314968 0.610063 +vt 0.330041 0.613795 +vt 0.327229 0.614784 +vt 0.323318 0.612993 +vt 0.298506 0.579867 +vt 0.299736 0.574016 +vt 0.299813 0.571647 +vt 0.300577 0.570136 +vt 0.307204 0.556915 +vt 0.305056 0.559372 +vt 0.309346 0.546104 +vt 0.307045 0.554117 +vt 0.308391 0.553801 +vt 0.310633 0.544125 +vt 0.337100 0.535577 +vt 0.340965 0.537114 +vt 0.326287 0.525788 +vt 0.328021 0.528854 +vt 0.332248 0.531171 +vt 0.334078 0.532485 +vt 0.311054 0.528670 +vt 0.308309 0.533147 +vt 0.309062 0.534791 +vt 0.317060 0.518735 +vt 0.311173 0.523494 +vt 0.309688 0.537313 +vt 0.323553 0.523127 +vt 0.320361 0.522189 +vt 0.357912 0.545908 +vt 0.346584 0.542556 +vt 0.349319 0.542190 +vt 0.354192 0.540625 +vt 0.361858 0.564563 +vt 0.352488 0.571171 +vt 0.348873 0.608653 +vt 0.354022 0.608928 +vt 0.352157 0.593626 +vt 0.352620 0.575007 +vt 0.355176 0.593640 +vt 0.339775 0.605203 +vt 0.344616 0.607880 +vt 0.335605 0.610002 +vt 0.310008 0.598807 +vt 0.300254 0.592450 +vt 0.322902 0.613981 +vt 0.320765 0.613229 +vt 0.313727 0.610666 +vt 0.310875 0.609321 +vt 0.308288 0.605563 +vt 0.319120 0.611691 +vt 0.316219 0.612191 +vt 0.315467 0.611322 +vt 0.329601 0.615339 +vt 0.330500 0.614611 +vt 0.332843 0.611131 +vt 0.324230 0.614863 +vt 0.328489 0.615957 +vt 0.327423 0.616728 +vt 0.323553 0.612768 +vt 0.299200 0.575973 +vt 0.295390 0.583436 +vt 0.302583 0.563373 +vt 0.301469 0.566929 +vt 0.306512 0.556273 +vt 0.303684 0.560399 +vt 0.307946 0.545495 +vt 0.309416 0.542970 +vt 0.310101 0.542886 +vt 0.339643 0.535312 +vt 0.342403 0.537967 +vt 0.336647 0.530270 +vt 0.328467 0.526142 +vt 0.330168 0.528972 +vt 0.332834 0.529623 +vt 0.308315 0.524782 +vt 0.306737 0.532855 +vt 0.308855 0.537409 +vt 0.312730 0.515826 +vt 0.320607 0.519460 +vt 0.309692 0.539028 +vt 0.344447 0.540061 +vt 0.360727 0.554119 +vt 0.350218 0.541347 +vt 0.352209 0.539163 +vt 0.361621 0.575897 +vt 0.354990 0.572681 +vt 0.351490 0.607328 +vt 0.346507 0.609991 +vt 0.355879 0.601725 +vt 0.357204 0.608861 +vt 0.358126 0.578280 +vt 0.357047 0.588954 +vt 0.340777 0.608103 +vt 0.343438 0.611317 +vt 0.337682 0.610343 +vt 0.334131 0.611722 +vt 0.307200 0.598408 +vt 0.305937 0.596287 +vt 0.304197 0.595363 +vt 0.293835 0.591769 +vt 0.321773 0.614177 +vt 0.312557 0.609801 +vt 0.314566 0.611290 +vt 0.310263 0.610054 +vt 0.309529 0.609149 +vt 0.308571 0.607858 +vt 0.317471 0.612919 +vt 0.331665 0.613730 +vt 0.332836 0.613584 +vt 0.323446 0.613654 +vt 0.328409 0.617424 +vt 0.297697 0.574771 +vt 0.296107 0.578928 +vt 0.298562 0.574005 +vt 0.298000 0.571896 +vt 0.298922 0.569810 +vt 0.299649 0.566736 +vt 0.304710 0.557639 +vt 0.304316 0.559602 +vt 0.305882 0.554108 +vt 0.310002 0.541328 +vt 0.341672 0.534361 +vt 0.324882 0.520997 +vt 0.330312 0.527756 +vt 0.334145 0.527072 +vt 0.306496 0.535386 +vt 0.314860 0.513766 +vt 0.317465 0.513056 +vt 0.309933 0.521141 +vt 0.359531 0.536009 +vt 0.362701 0.548330 +vt 0.347736 0.539747 +vt 0.349023 0.539080 +vt 0.352433 0.534109 +vt 0.365783 0.569206 +vt 0.350780 0.611774 +vt 0.347221 0.612985 +vt 0.356813 0.598041 +vt 0.351634 0.612540 +vt 0.355738 0.612904 +vt 0.361305 0.584483 +vt 0.359346 0.588333 +vt 0.359767 0.593964 +vt 0.339309 0.611801 +vt 0.336713 0.612862 +vt 0.335498 0.612634 +vt 0.305077 0.595599 +vt 0.302026 0.594714 +vt 0.297097 0.593471 +vt 0.321741 0.615500 +vt 0.320604 0.615133 +vt 0.319187 0.613921 +vt 0.313611 0.612110 +vt 0.310549 0.610852 +vt 0.311933 0.611110 +vt 0.307634 0.607829 +vt 0.306908 0.606505 +vt 0.315748 0.613926 +vt 0.314984 0.612261 +vt 0.330667 0.615385 +vt 0.331813 0.615651 +vt 0.325624 0.617513 +vt 0.329300 0.618374 +vt 0.327390 0.618160 +vt 0.296415 0.576208 +vt 0.294873 0.579085 +vt 0.291048 0.584461 +vt 0.301839 0.559620 +vt 0.300238 0.564064 +vt 0.303771 0.556897 +vt 0.308435 0.541532 +vt 0.304683 0.549814 +vt 0.338469 0.530314 +vt 0.341293 0.529813 +vt 0.343592 0.535566 +vt 0.325959 0.518393 +vt 0.336404 0.528342 +vt 0.307034 0.524650 +vt 0.302604 0.531758 +vt 0.305965 0.537715 +vt 0.313425 0.505254 +vt 0.320752 0.516624 +vt 0.309032 0.515191 +vt 0.309338 0.541411 +vt 0.355862 0.536376 +vt 0.362600 0.537137 +vt 0.363631 0.558808 +vt 0.365707 0.548992 +vt 0.362602 0.543080 +vt 0.345969 0.536952 +vt 0.351011 0.535444 +vt 0.364667 0.563553 +vt 0.365560 0.573857 +vt 0.343947 0.614703 +vt 0.357996 0.601178 +vt 0.358171 0.606682 +vt 0.353694 0.614027 +vt 0.358045 0.612132 +vt 0.359808 0.597915 +vt 0.341140 0.611556 +vt 0.338212 0.613306 +vt 0.334504 0.614134 +vt 0.305385 0.598902 +vt 0.304056 0.597069 +vt 0.300825 0.594598 +vt 0.295771 0.595135 +vt 0.298587 0.593595 +vt 0.323082 0.616159 +vt 0.309734 0.611092 +vt 0.308204 0.609561 +vt 0.317180 0.614898 +vt 0.324778 0.617998 +vt 0.328801 0.618842 +vt 0.296659 0.573439 +vt 0.293353 0.580655 +vt 0.295437 0.577739 +vt 0.289219 0.591813 +vt 0.298085 0.568516 +vt 0.300475 0.561303 +vt 0.299498 0.565785 +vt 0.306217 0.541512 +vt 0.342489 0.530021 +vt 0.343042 0.533183 +vt 0.324406 0.517741 +vt 0.332439 0.524037 +vt 0.327544 0.520257 +vt 0.336333 0.526268 +vt 0.308175 0.517808 +vt 0.306457 0.531078 +vt 0.302074 0.536366 +vt 0.307881 0.539213 +vt 0.309497 0.510199 +vt 0.317384 0.508947 +vt 0.320537 0.509800 +vt 0.357308 0.531130 +vt 0.360546 0.530802 +vt 0.364236 0.545887 +vt 0.348185 0.538289 +vt 0.349872 0.537608 +vt 0.347570 0.529199 +vt 0.354322 0.530703 +vt 0.370944 0.568560 +vt 0.368984 0.572350 +vt 0.366054 0.578147 +vt 0.351725 0.614480 +vt 0.349684 0.613649 +vt 0.346403 0.615838 +vt 0.359033 0.604875 +vt 0.359208 0.600203 +vt 0.355506 0.616602 +vt 0.357450 0.616427 +vt 0.364849 0.583462 +vt 0.361656 0.588544 +vt 0.361827 0.591431 +vt 0.362681 0.596414 +vt 0.342686 0.613961 +vt 0.340927 0.613595 +vt 0.339647 0.614297 +vt 0.337402 0.615696 +vt 0.336274 0.613458 +vt 0.335836 0.613979 +vt 0.301293 0.597664 +vt 0.299773 0.595441 +vt 0.292599 0.594300 +vt 0.297455 0.596052 +vt 0.321892 0.617415 +vt 0.319232 0.615938 +vt 0.311920 0.612785 +vt 0.314472 0.613811 +vt 0.310237 0.612841 +vt 0.306800 0.608719 +vt 0.306545 0.607024 +vt 0.302779 0.599650 +vt 0.316675 0.616183 +vt 0.330881 0.616708 +vt 0.333303 0.615008 +vt 0.324844 0.620733 +vt 0.323906 0.617523 +vt 0.327969 0.620073 +vt 0.330206 0.619689 +vt 0.295306 0.573668 +vt 0.293664 0.579044 +vt 0.294238 0.577585 +vt 0.288391 0.589427 +vt 0.291766 0.580633 +vt 0.296017 0.571102 +vt 0.297878 0.564927 +vt 0.301167 0.552948 +vt 0.297473 0.557949 +vt 0.302467 0.543857 +vt 0.339349 0.527476 +vt 0.342183 0.528565 +vt 0.344162 0.532382 +vt 0.329549 0.519479 +vt 0.328092 0.512182 +vt 0.327292 0.517613 +vt 0.333246 0.521055 +vt 0.307146 0.516200 +vt 0.305727 0.526147 +vt 0.300610 0.532267 +vt 0.303748 0.529328 +vt 0.305356 0.539059 +vt 0.310834 0.505868 +vt 0.316056 0.503057 +vt 0.322567 0.514251 +vt 0.307377 0.512404 +vt 0.365554 0.535858 +vt 0.365750 0.545067 +vt 0.370532 0.562833 +vt 0.369984 0.554994 +vt 0.350026 0.528068 +vt 0.350933 0.524869 +vt 0.368493 0.576798 +vt 0.349366 0.615817 +vt 0.345147 0.616236 +vt 0.348022 0.615861 +vt 0.360887 0.600897 +vt 0.361340 0.613634 +vt 0.361669 0.606530 +vt 0.353283 0.617058 +vt 0.360140 0.618411 +vt 0.363707 0.590872 +vt 0.363279 0.598201 +vt 0.342865 0.615778 +vt 0.339033 0.615296 +vt 0.335830 0.615110 +vt 0.295562 0.597970 +vt 0.297867 0.598342 +vt 0.320851 0.617091 +vt 0.313483 0.613628 +vt 0.308935 0.611893 +vt 0.303435 0.604593 +vt 0.318631 0.618960 +vt 0.314105 0.615965 +vt 0.331630 0.617779 +vt 0.330686 0.618294 +vt 0.333541 0.615594 +vt 0.323410 0.618910 +vt 0.326494 0.621339 +vt 0.292770 0.578671 +vt 0.294087 0.574838 +vt 0.291481 0.595010 +vt 0.286551 0.592227 +vt 0.287917 0.586713 +vt 0.291099 0.580599 +vt 0.295136 0.568817 +vt 0.341385 0.525898 +vt 0.343182 0.527927 +vt 0.345117 0.531747 +vt 0.331626 0.519311 +vt 0.324484 0.512774 +vt 0.335869 0.522427 +vt 0.306007 0.520557 +vt 0.301671 0.528327 +vt 0.300141 0.537023 +vt 0.304711 0.508338 +vt 0.308363 0.500956 +vt 0.322611 0.503957 +vt 0.312637 0.500492 +vt 0.354083 0.526255 +vt 0.358067 0.524964 +vt 0.367160 0.542245 +vt 0.361909 0.529198 +vt 0.369132 0.558942 +vt 0.369567 0.548775 +vt 0.348611 0.528384 +vt 0.346085 0.529516 +vt 0.372451 0.572199 +vt 0.373071 0.565086 +vt 0.371384 0.574865 +vt 0.369400 0.585508 +vt 0.369976 0.578094 +vt 0.344093 0.616740 +vt 0.346659 0.618015 +vt 0.347534 0.616774 +vt 0.363980 0.610651 +vt 0.350429 0.617216 +vt 0.356940 0.619301 +vt 0.355351 0.619685 +vt 0.358945 0.620662 +vt 0.363966 0.593723 +vt 0.364420 0.596747 +vt 0.341724 0.614627 +vt 0.340172 0.615745 +vt 0.338983 0.617407 +vt 0.334886 0.615809 +vt 0.301882 0.604123 +vt 0.321957 0.619536 +vt 0.319476 0.618068 +vt 0.311547 0.615186 +vt 0.309352 0.613874 +vt 0.306303 0.610930 +vt 0.305357 0.607796 +vt 0.304234 0.607008 +vt 0.317058 0.617686 +vt 0.315697 0.617508 +vt 0.322383 0.621360 +vt 0.326094 0.622482 +vt 0.328185 0.621851 +vt 0.328974 0.622189 +vt 0.293455 0.571682 +vt 0.292635 0.576778 +vt 0.289337 0.595025 +vt 0.285722 0.589470 +vt 0.289586 0.582534 +vt 0.291220 0.579165 +vt 0.294927 0.543031 +vt 0.338503 0.522135 +vt 0.344566 0.529392 +vt 0.329004 0.517378 +vt 0.328735 0.514574 +vt 0.324864 0.509952 +vt 0.333820 0.518882 +vt 0.335709 0.519291 +vt 0.304855 0.514055 +vt 0.304066 0.525217 +vt 0.298141 0.524655 +vt 0.298124 0.532299 +vt 0.321218 0.501991 +vt 0.316164 0.498238 +vt 0.324352 0.505537 +vt 0.306039 0.513214 +vt 0.306061 0.511186 +vt 0.370430 0.539482 +vt 0.366289 0.528753 +vt 0.371394 0.562064 +vt 0.372518 0.561062 +vt 0.373017 0.551018 +vt 0.346890 0.527225 +vt 0.348574 0.526007 +vt 0.349546 0.524872 +vt 0.346775 0.528466 +vt 0.352319 0.521922 +vt 0.375987 0.573723 +vt 0.348860 0.617611 +vt 0.345182 0.617902 +vt 0.362888 0.601263 +vt 0.364033 0.615283 +vt 0.362631 0.618692 +vt 0.364768 0.606343 +vt 0.352856 0.619804 +vt 0.353479 0.620650 +vt 0.360652 0.622668 +vt 0.367760 0.590687 +vt 0.365548 0.599525 +vt 0.343007 0.617012 +vt 0.341864 0.616281 +vt 0.337068 0.617455 +vt 0.335781 0.617926 +vt 0.300020 0.602344 +vt 0.292952 0.599018 +vt 0.294603 0.600398 +vt 0.309559 0.615189 +vt 0.305794 0.609471 +vt 0.303349 0.607058 +vt 0.302780 0.606323 +vt 0.319328 0.620111 +vt 0.317857 0.619133 +vt 0.311062 0.618702 +vt 0.333252 0.617871 +vt 0.334500 0.617409 +vt 0.323901 0.623158 +vt 0.325165 0.624114 +vt 0.327855 0.623623 +vt 0.330989 0.622032 +vt 0.332407 0.619641 +vt 0.292814 0.574899 +vt 0.290721 0.598032 +vt 0.282704 0.593935 +vt 0.288954 0.595964 +vt 0.284494 0.585508 +vt 0.286816 0.583500 +vt 0.289164 0.579989 +vt 0.289317 0.567883 +vt 0.287822 0.542920 +vt 0.344538 0.522322 +vt 0.344499 0.525476 +vt 0.332873 0.515263 +vt 0.328141 0.507955 +vt 0.303982 0.516837 +vt 0.300012 0.524692 +vt 0.297119 0.535737 +vt 0.305356 0.503179 +vt 0.311615 0.497111 +vt 0.317766 0.498601 +vt 0.323575 0.499116 +vt 0.314784 0.496924 +vt 0.326561 0.503096 +vt 0.304152 0.509375 +vt 0.353742 0.520000 +vt 0.356949 0.517907 +vt 0.371626 0.544367 +vt 0.367908 0.535142 +vt 0.363058 0.526147 +vt 0.375045 0.556490 +vt 0.373483 0.549046 +vt 0.350182 0.524049 +vt 0.346320 0.527783 +vt 0.350690 0.521251 +vt 0.352238 0.519640 +vt 0.377546 0.567851 +vt 0.374292 0.563134 +vt 0.372491 0.577171 +vt 0.373734 0.583649 +vt 0.349370 0.618173 +vt 0.343631 0.618161 +vt 0.346373 0.619440 +vt 0.347764 0.618180 +vt 0.367347 0.610456 +vt 0.351097 0.619604 +vt 0.356725 0.622144 +vt 0.358644 0.622124 +vt 0.355161 0.621307 +vt 0.365136 0.600418 +vt 0.366317 0.593618 +vt 0.370409 0.598129 +vt 0.340554 0.618590 +vt 0.340498 0.620294 +vt 0.300235 0.606480 +vt 0.298071 0.601729 +vt 0.311925 0.617101 +vt 0.304442 0.611729 +vt 0.306663 0.614548 +vt 0.304656 0.609247 +vt 0.303742 0.608580 +vt 0.301746 0.606862 +vt 0.318522 0.619878 +vt 0.317002 0.619139 +vt 0.315589 0.619691 +vt 0.322059 0.623682 +vt 0.327939 0.624150 +vt 0.328642 0.623286 +vt 0.329607 0.623323 +vt 0.291539 0.574937 +vt 0.290966 0.572769 +vt 0.282966 0.591059 +vt 0.287332 0.580544 +vt 0.291126 0.577355 +vt 0.289720 0.537602 +vt 0.339004 0.516676 +vt 0.344936 0.526422 +vt 0.345409 0.527899 +vt 0.334581 0.512841 +vt 0.331997 0.510324 +vt 0.304703 0.512427 +vt 0.304673 0.513313 +vt 0.300650 0.522102 +vt 0.295937 0.528988 +vt 0.297533 0.519876 +vt 0.293845 0.533115 +vt 0.303969 0.504730 +vt 0.304394 0.498573 +vt 0.308368 0.492400 +vt 0.319939 0.498071 +vt 0.316132 0.496838 +vt 0.303001 0.506235 +vt 0.362539 0.519132 +vt 0.373526 0.541317 +vt 0.372407 0.536543 +vt 0.366566 0.519280 +vt 0.378019 0.563068 +vt 0.376240 0.551369 +vt 0.347992 0.524210 +vt 0.348457 0.522990 +vt 0.376890 0.579177 +vt 0.378976 0.573238 +vt 0.347594 0.619616 +vt 0.366780 0.602872 +vt 0.353765 0.622521 +vt 0.351995 0.621704 +vt 0.359492 0.624301 +vt 0.341705 0.617926 +vt 0.338202 0.619707 +vt 0.333767 0.619311 +vt 0.298554 0.604414 +vt 0.293038 0.603333 +vt 0.290502 0.602389 +vt 0.295225 0.605186 +vt 0.303936 0.610260 +vt 0.304315 0.616955 +vt 0.302757 0.607461 +vt 0.318145 0.620372 +vt 0.313631 0.619890 +vt 0.324292 0.624669 +vt 0.326478 0.625536 +vt 0.332705 0.621039 +vt 0.329622 0.624585 +vt 0.285092 0.581824 +vt 0.290207 0.574739 +vt 0.285704 0.538590 +vt 0.345784 0.524563 +vt 0.343287 0.517007 +vt 0.332038 0.506430 +vt 0.336069 0.516693 +vt 0.301841 0.514498 +vt 0.298296 0.518906 +vt 0.295723 0.525747 +vt 0.296132 0.521381 +vt 0.303082 0.501728 +vt 0.315887 0.490511 +vt 0.311362 0.490730 +vt 0.318210 0.495691 +vt 0.323766 0.493850 +vt 0.326545 0.496478 +vt 0.316211 0.493058 +vt 0.328762 0.504536 +vt 0.302925 0.510518 +vt 0.301865 0.508453 +vt 0.351460 0.517577 +vt 0.353687 0.514265 +vt 0.357989 0.512041 +vt 0.374557 0.544991 +vt 0.378687 0.557524 +vt 0.378031 0.547290 +vt 0.346682 0.525345 +vt 0.345985 0.526470 +vt 0.350704 0.519686 +vt 0.350877 0.620930 +vt 0.348963 0.620242 +vt 0.344390 0.619939 +vt 0.346290 0.620166 +vt 0.358037 0.623486 +vt 0.355002 0.622680 +vt 0.360623 0.625658 +vt 0.341600 0.619884 +vt 0.335925 0.620520 +vt 0.339567 0.620710 +vt 0.301536 0.608723 +vt 0.298969 0.607093 +vt 0.297038 0.604882 +vt 0.294604 0.603423 +vt 0.291526 0.602586 +vt 0.288715 0.600576 +vt 0.306721 0.617729 +vt 0.304046 0.614390 +vt 0.302777 0.610351 +vt 0.303209 0.609485 +vt 0.302511 0.608537 +vt 0.315749 0.621148 +vt 0.322925 0.624742 +vt 0.319459 0.623265 +vt 0.327981 0.625177 +vt 0.332611 0.624183 +vt 0.331166 0.625655 +vt 0.291160 0.532419 +vt 0.287664 0.535211 +vt 0.346497 0.522387 +vt 0.342213 0.513388 +vt 0.347116 0.518197 +vt 0.337524 0.508726 +vt 0.338518 0.515453 +vt 0.302219 0.512373 +vt 0.293828 0.528470 +vt 0.296353 0.518005 +vt 0.302216 0.504592 +vt 0.303293 0.498974 +vt 0.304782 0.492679 +vt 0.312894 0.491018 +vt 0.309593 0.488004 +vt 0.319474 0.494611 +vt 0.328235 0.494419 +vt 0.330896 0.502341 +vt 0.301849 0.506409 +vt 0.352685 0.512258 +vt 0.347035 0.523694 +vt 0.347945 0.522019 +vt 0.349129 0.521670 +vt 0.349175 0.520110 +vt 0.343234 0.620215 +vt 0.348576 0.621341 +vt 0.353166 0.623567 +vt 0.351426 0.622222 +vt 0.356956 0.624063 +vt 0.354987 0.624205 +vt 0.358003 0.625060 +vt 0.359293 0.626620 +vt 0.362073 0.625600 +vt 0.342469 0.621316 +vt 0.341725 0.621475 +vt 0.338698 0.621636 +vt 0.339765 0.621763 +vt 0.334478 0.621772 +vt 0.300460 0.609189 +vt 0.299670 0.608415 +vt 0.297994 0.606301 +vt 0.293830 0.604356 +vt 0.291702 0.604836 +vt 0.290167 0.603361 +vt 0.290694 0.603856 +vt 0.296863 0.606762 +vt 0.294249 0.605428 +vt 0.302763 0.613117 +vt 0.302176 0.611107 +vt 0.304808 0.619609 +vt 0.303060 0.615270 +vt 0.307221 0.618920 +vt 0.314620 0.621713 +vt 0.323917 0.625961 +vt 0.320227 0.624857 +vt 0.325897 0.626304 +vt 0.329250 0.625481 +vt 0.329042 0.626904 +vt 0.330873 0.626131 +vt 0.292608 0.529873 +vt 0.289494 0.533724 +vt 0.285207 0.536239 +vt 0.344876 0.512434 +vt 0.338709 0.509737 +vt 0.337856 0.513288 +vt 0.333419 0.505499 +vt 0.297274 0.512600 +vt 0.301377 0.510133 +vt 0.294992 0.525148 +vt 0.291424 0.521082 +vt 0.300672 0.503265 +vt 0.302567 0.494421 +vt 0.301771 0.499747 +vt 0.307061 0.488595 +vt 0.315886 0.488408 +vt 0.318017 0.489772 +vt 0.314981 0.486302 +vt 0.311306 0.486417 +vt 0.325447 0.493985 +vt 0.321470 0.492715 +vt 0.330522 0.499329 +vt 0.300736 0.507734 +vt 0.349873 0.517998 +vt 0.352376 0.515515 +vt 0.355224 0.508035 +vt 0.349220 0.621631 +vt 0.344440 0.621653 +vt 0.346279 0.624315 +vt 0.356034 0.624437 +vt 0.361134 0.627325 +vt 0.336730 0.621511 +vt 0.301292 0.610465 +vt 0.301890 0.609702 +vt 0.298792 0.609228 +vt 0.298186 0.607662 +vt 0.293487 0.605257 +vt 0.292741 0.605586 +vt 0.288820 0.602975 +vt 0.295574 0.606615 +vt 0.294754 0.605918 +vt 0.302068 0.616891 +vt 0.307709 0.620326 +vt 0.317860 0.623444 +vt 0.322430 0.625305 +vt 0.327826 0.628014 +vt 0.330296 0.629360 +vt 0.335134 0.624296 +vt 0.333151 0.625700 +vt 0.292129 0.529015 +vt 0.290455 0.530449 +vt 0.287820 0.532835 +vt 0.285968 0.533728 +vt 0.344348 0.509196 +vt 0.341335 0.511129 +vt 0.348053 0.514154 +vt 0.336402 0.505204 +vt 0.299199 0.509425 +vt 0.293353 0.528078 +vt 0.294083 0.524514 +vt 0.292943 0.522905 +vt 0.293760 0.515659 +vt 0.300417 0.505663 +vt 0.301387 0.497258 +vt 0.303547 0.490238 +vt 0.317641 0.483680 +vt 0.319500 0.486960 +vt 0.313432 0.484941 +vt 0.309308 0.485105 +vt 0.326426 0.491887 +vt 0.320791 0.489321 +vt 0.324739 0.490722 +vt 0.327440 0.492891 +vt 0.330027 0.494782 +vt 0.332590 0.498317 +vt 0.349584 0.515756 +vt 0.350473 0.514033 +vt 0.351894 0.513387 +vt 0.351213 0.510060 +vt 0.348579 0.624695 +vt 0.354510 0.625433 +vt 0.351870 0.623996 +vt 0.357190 0.626292 +vt 0.359396 0.628898 +vt 0.362153 0.628429 +vt 0.342913 0.622699 +vt 0.337587 0.623796 +vt 0.339857 0.623791 +vt 0.299786 0.610028 +vt 0.300555 0.610943 +vt 0.297619 0.607161 +vt 0.291601 0.606325 +vt 0.289031 0.605149 +vt 0.287261 0.602873 +vt 0.296081 0.607849 +vt 0.294509 0.606626 +vt 0.301286 0.612297 +vt 0.306750 0.620748 +vt 0.303673 0.620659 +vt 0.301245 0.614596 +vt 0.314967 0.623548 +vt 0.312185 0.622388 +vt 0.323756 0.627588 +vt 0.322064 0.626259 +vt 0.320717 0.626541 +vt 0.333011 0.628377 +vt 0.334597 0.625769 +vt 0.333155 0.626773 +vt 0.292415 0.527918 +vt 0.288871 0.531451 +vt 0.284317 0.533763 +vt 0.345790 0.509787 +vt 0.346780 0.511575 +vt 0.341145 0.505403 +vt 0.334044 0.500629 +vt 0.334845 0.503960 +vt 0.296781 0.505946 +vt 0.291522 0.523769 +vt 0.291453 0.518533 +vt 0.298787 0.498286 +vt 0.299331 0.504756 +vt 0.298878 0.496680 +vt 0.303086 0.487644 +vt 0.300233 0.490242 +vt 0.319238 0.485545 +vt 0.315662 0.482353 +vt 0.310410 0.483833 +vt 0.311905 0.482358 +vt 0.305578 0.481985 +vt 0.328265 0.493446 +vt 0.331230 0.496205 +vt 0.350405 0.505565 +vt 0.344253 0.624765 +vt 0.346507 0.627356 +vt 0.361114 0.628421 +vt 0.342119 0.624884 +vt 0.299659 0.611278 +vt 0.297224 0.608661 +vt 0.293810 0.606185 +vt 0.293437 0.606650 +vt 0.292798 0.607227 +vt 0.287858 0.604268 +vt 0.295059 0.607292 +vt 0.294099 0.606375 +vt 0.305117 0.622337 +vt 0.300026 0.618378 +vt 0.299386 0.613386 +vt 0.307298 0.622233 +vt 0.317378 0.628848 +vt 0.310240 0.623760 +vt 0.321379 0.628000 +vt 0.325955 0.630228 +vt 0.327295 0.630891 +vt 0.330352 0.627225 +vt 0.332065 0.631558 +vt 0.336588 0.625575 +vt 0.290723 0.528538 +vt 0.291540 0.526992 +vt 0.287056 0.531166 +vt 0.283652 0.533747 +vt 0.285358 0.532343 +vt 0.341876 0.508193 +vt 0.345409 0.507611 +vt 0.348650 0.512605 +vt 0.349448 0.514143 +vt 0.338946 0.504758 +vt 0.336547 0.501927 +vt 0.293992 0.505497 +vt 0.294377 0.513256 +vt 0.292504 0.525635 +vt 0.289001 0.520332 +vt 0.287805 0.517240 +vt 0.298465 0.499715 +vt 0.299211 0.503017 +vt 0.298987 0.494589 +vt 0.300163 0.486869 +vt 0.304957 0.483363 +vt 0.319553 0.483284 +vt 0.321187 0.485729 +vt 0.320342 0.484233 +vt 0.313305 0.482163 +vt 0.327846 0.490130 +vt 0.328236 0.491503 +vt 0.324891 0.485966 +vt 0.331173 0.494378 +vt 0.329987 0.493209 +vt 0.332667 0.495911 +vt 0.335222 0.497607 +vt 0.350254 0.510506 +vt 0.349726 0.507544 +vt 0.353486 0.504701 +vt 0.345363 0.626054 +vt 0.347736 0.627808 +vt 0.350366 0.626461 +vt 0.353255 0.627217 +vt 0.356190 0.627572 +vt 0.357578 0.629116 +vt 0.361020 0.630348 +vt 0.340678 0.625458 +vt 0.300743 0.612539 +vt 0.298336 0.610680 +vt 0.291719 0.608122 +vt 0.289638 0.607028 +vt 0.287333 0.605324 +vt 0.286584 0.604529 +vt 0.295981 0.609210 +vt 0.294016 0.607042 +vt 0.300216 0.620569 +vt 0.298184 0.615965 +vt 0.303165 0.621954 +vt 0.312589 0.624265 +vt 0.319546 0.629706 +vt 0.323882 0.631266 +vt 0.329640 0.630606 +vt 0.336113 0.630110 +vt 0.337235 0.627233 +vt 0.336246 0.627736 +vt 0.287798 0.529902 +vt 0.284175 0.531957 +vt 0.343833 0.505725 +vt 0.346600 0.508642 +vt 0.347263 0.510098 +vt 0.349135 0.513589 +vt 0.340095 0.503531 +vt 0.297965 0.503522 +vt 0.291251 0.509529 +vt 0.296031 0.500029 +vt 0.290443 0.525947 +vt 0.289371 0.524136 +vt 0.296703 0.496946 +vt 0.301615 0.483644 +vt 0.298043 0.492167 +vt 0.298808 0.487388 +vt 0.317013 0.481129 +vt 0.319994 0.481016 +vt 0.314369 0.481081 +vt 0.306336 0.480374 +vt 0.311519 0.479435 +vt 0.312468 0.481334 +vt 0.302908 0.480621 +vt 0.335392 0.499735 +vt 0.349738 0.513238 +vt 0.349189 0.509277 +vt 0.348137 0.506601 +vt 0.356483 0.504708 +vt 0.352892 0.500488 +vt 0.344967 0.626546 +vt 0.347035 0.628856 +vt 0.349018 0.627736 +vt 0.345959 0.627992 +vt 0.351172 0.627814 +vt 0.349398 0.626752 +vt 0.358258 0.630324 +vt 0.359527 0.630019 +vt 0.338282 0.625571 +vt 0.341081 0.626073 +vt 0.298820 0.611978 +vt 0.294028 0.608495 +vt 0.288654 0.606807 +vt 0.294505 0.607590 +vt 0.305311 0.624048 +vt 0.297330 0.617641 +vt 0.297592 0.611763 +vt 0.307699 0.622886 +vt 0.311189 0.624997 +vt 0.321358 0.630213 +vt 0.322608 0.629128 +vt 0.326665 0.632356 +vt 0.328089 0.631634 +vt 0.329770 0.632818 +vt 0.289444 0.528484 +vt 0.287298 0.529728 +vt 0.285936 0.530572 +vt 0.346645 0.505671 +vt 0.349096 0.511449 +vt 0.349500 0.513682 +vt 0.343653 0.502999 +vt 0.338007 0.502222 +vt 0.341030 0.502177 +vt 0.339220 0.501327 +vt 0.288614 0.507159 +vt 0.291021 0.498327 +vt 0.286418 0.522581 +vt 0.285893 0.518973 +vt 0.298922 0.484774 +vt 0.297861 0.490171 +vt 0.316119 0.478405 +vt 0.321602 0.483332 +vt 0.323188 0.482961 +vt 0.312724 0.480070 +vt 0.314967 0.479821 +vt 0.309223 0.480070 +vt 0.303801 0.478799 +vt 0.328524 0.490557 +vt 0.328455 0.487852 +vt 0.329205 0.491149 +vt 0.330878 0.492361 +vt 0.331788 0.493424 +vt 0.332403 0.491559 +vt 0.337165 0.500023 +vt 0.346979 0.504122 +vt 0.348714 0.499510 +vt 0.344825 0.627106 +vt 0.348847 0.628888 +vt 0.349747 0.627653 +vt 0.352709 0.629001 +vt 0.356439 0.629701 +vt 0.357316 0.630176 +vt 0.359845 0.632511 +vt 0.343091 0.627660 +vt 0.339942 0.626000 +vt 0.342028 0.626437 +vt 0.291880 0.609651 +vt 0.289540 0.608452 +vt 0.286931 0.606491 +vt 0.297821 0.620020 +vt 0.301091 0.622619 +vt 0.297290 0.616828 +vt 0.304654 0.625980 +vt 0.296671 0.614907 +vt 0.308902 0.624481 +vt 0.325022 0.632672 +vt 0.339122 0.629529 +vt 0.338428 0.626755 +vt 0.339006 0.628105 +vt 0.288111 0.528193 +vt 0.287622 0.529203 +vt 0.286790 0.529229 +vt 0.285073 0.530207 +vt 0.347768 0.508459 +vt 0.293865 0.496515 +vt 0.286933 0.526937 +vt 0.286718 0.515465 +vt 0.295994 0.497798 +vt 0.296165 0.493426 +vt 0.301811 0.479253 +vt 0.297530 0.491423 +vt 0.296473 0.489354 +vt 0.295215 0.487774 +vt 0.317772 0.477643 +vt 0.322121 0.479519 +vt 0.324503 0.481841 +vt 0.313767 0.479414 +vt 0.307621 0.478772 +vt 0.305255 0.477701 +vt 0.309200 0.476999 +vt 0.329435 0.489894 +vt 0.327940 0.483988 +vt 0.336837 0.492290 +vt 0.339168 0.497522 +vt 0.346504 0.500138 +vt 0.356279 0.502536 +vt 0.349438 0.497187 +vt 0.347413 0.629648 +vt 0.345610 0.629629 +vt 0.350162 0.628459 +vt 0.340225 0.626826 +vt 0.342088 0.627879 +vt 0.295484 0.610175 +vt 0.307548 0.625938 +vt 0.295671 0.619294 +vt 0.299388 0.621762 +vt 0.295137 0.616608 +vt 0.327025 0.632801 +vt 0.324149 0.633570 +vt 0.327953 0.632465 +vt 0.287352 0.528728 +vt 0.285681 0.528148 +vt 0.282634 0.529857 +vt 0.343045 0.501201 +vt 0.340954 0.500286 +vt 0.288626 0.498067 +vt 0.292362 0.494542 +vt 0.284721 0.524026 +vt 0.284783 0.514856 +vt 0.287525 0.509197 +vt 0.298810 0.481040 +vt 0.294138 0.487667 +vt 0.315014 0.478300 +vt 0.316784 0.475630 +vt 0.322789 0.477320 +vt 0.313188 0.477238 +vt 0.314192 0.478727 +vt 0.307301 0.477473 +vt 0.305045 0.475410 +vt 0.311769 0.477911 +vt 0.310437 0.477377 +vt 0.302335 0.476495 +vt 0.331684 0.481782 +vt 0.331963 0.489069 +vt 0.331211 0.491256 +vt 0.344901 0.500956 +vt 0.358019 0.503471 +vt 0.353929 0.499339 +vt 0.345767 0.497559 +vt 0.347791 0.495552 +vt 0.352677 0.497785 +vt 0.288329 0.610320 +vt 0.292317 0.611593 +vt 0.297817 0.622008 +vt 0.299426 0.623411 +vt 0.294841 0.615334 +vt 0.326312 0.633346 +vt 0.328458 0.632960 +vt 0.340297 0.628492 +vt 0.287789 0.494087 +vt 0.286705 0.504744 +vt 0.291517 0.492559 +vt 0.293793 0.492982 +vt 0.281826 0.515818 +vt 0.286365 0.509246 +vt 0.295563 0.491659 +vt 0.300777 0.477617 +vt 0.295547 0.480029 +vt 0.293374 0.491334 +vt 0.315359 0.477502 +vt 0.319962 0.473998 +vt 0.315779 0.476489 +vt 0.320803 0.475012 +vt 0.327210 0.479227 +vt 0.303450 0.473519 +vt 0.307540 0.475869 +vt 0.310469 0.475715 +vt 0.336184 0.485784 +vt 0.340251 0.493007 +vt 0.344992 0.499168 +vt 0.357269 0.500305 +vt 0.355071 0.497519 +vt 0.349415 0.495643 +vt 0.342817 0.628814 +vt 0.341118 0.628532 +vt 0.293294 0.615898 +vt 0.327452 0.633035 +vt 0.325868 0.634217 +vt 0.329151 0.633402 +vt 0.342871 0.497121 +vt 0.284405 0.500944 +vt 0.278903 0.522850 +vt 0.285088 0.507516 +vt 0.280768 0.510840 +vt 0.297822 0.478086 +vt 0.291594 0.484489 +vt 0.314430 0.477349 +vt 0.318637 0.473706 +vt 0.315906 0.474303 +vt 0.322303 0.474781 +vt 0.311431 0.476303 +vt 0.305895 0.471965 +vt 0.311169 0.477106 +vt 0.309079 0.474329 +vt 0.301783 0.473951 +vt 0.300462 0.475710 +vt 0.330240 0.478433 +vt 0.336339 0.480573 +vt 0.340837 0.489164 +vt 0.341599 0.494387 +vt 0.359054 0.503029 +vt 0.356029 0.496565 +vt 0.346560 0.495856 +vt 0.345344 0.494706 +vt 0.348066 0.494167 +vt 0.351899 0.495900 +vt 0.288729 0.612014 +vt 0.293238 0.614231 +vt 0.328088 0.633955 +vt 0.326841 0.633782 +vt 0.326468 0.636877 +vt 0.330318 0.634882 +vt 0.287947 0.491110 +vt 0.285144 0.504137 +vt 0.299344 0.475787 +vt 0.297061 0.474495 +vt 0.290895 0.480416 +vt 0.313960 0.476203 +vt 0.314574 0.474493 +vt 0.319849 0.473289 +vt 0.317807 0.472471 +vt 0.320460 0.473053 +vt 0.321644 0.471839 +vt 0.323745 0.476220 +vt 0.325418 0.477237 +vt 0.312878 0.474165 +vt 0.302908 0.470057 +vt 0.307926 0.472744 +vt 0.310379 0.472630 +vt 0.301485 0.472381 +vt 0.328642 0.476607 +vt 0.333031 0.478363 +vt 0.339462 0.482318 +vt 0.340658 0.485653 +vt 0.342674 0.490314 +vt 0.359736 0.500187 +vt 0.357756 0.495459 +vt 0.354046 0.495094 +vt 0.354840 0.495539 +vt 0.346698 0.494177 +vt 0.343937 0.493175 +vt 0.350937 0.494279 +vt 0.283407 0.501515 +vt 0.283433 0.506960 +vt 0.294169 0.473517 +vt 0.318970 0.471999 +vt 0.316119 0.472960 +vt 0.322783 0.472303 +vt 0.324280 0.469673 +vt 0.326593 0.476567 +vt 0.307977 0.468112 +vt 0.308962 0.470450 +vt 0.300230 0.474423 +vt 0.330248 0.476839 +vt 0.331190 0.477465 +vt 0.335739 0.478103 +vt 0.338138 0.478971 +vt 0.342385 0.487153 +vt 0.343526 0.488504 +vt 0.354721 0.494381 +vt 0.345966 0.492106 +vt 0.347396 0.492739 +vt 0.348485 0.491897 +vt 0.352068 0.493762 +vt 0.290647 0.614809 +vt 0.328921 0.637004 +vt 0.280773 0.503521 +vt 0.297554 0.468944 +vt 0.319951 0.471735 +vt 0.318165 0.471459 +vt 0.317125 0.471920 +vt 0.314741 0.472841 +vt 0.322251 0.469297 +vt 0.325359 0.474697 +vt 0.305375 0.464725 +vt 0.311529 0.471381 +vt 0.299507 0.472822 +vt 0.329692 0.473874 +vt 0.331539 0.476121 +vt 0.334521 0.477378 +vt 0.337856 0.478642 +vt 0.342157 0.483161 +vt 0.340391 0.480275 +vt 0.342931 0.485554 +vt 0.343742 0.489864 +vt 0.363172 0.495629 +vt 0.359114 0.489904 +vt 0.344928 0.489760 +vt 0.350610 0.493070 +vt 0.353119 0.492483 +vt 0.320162 0.470333 +vt 0.317935 0.471280 +vt 0.318619 0.470969 +vt 0.328184 0.472977 +vt 0.309718 0.464983 +vt 0.311006 0.466945 +vt 0.314060 0.470342 +vt 0.312809 0.467326 +vt 0.333321 0.476454 +vt 0.335907 0.476211 +vt 0.337863 0.478040 +vt 0.341452 0.481987 +vt 0.340278 0.477418 +vt 0.365419 0.499426 +vt 0.352525 0.488196 +vt 0.345975 0.488940 +vt 0.347332 0.490793 +vt 0.349358 0.491489 +vt 0.351232 0.492503 +vt 0.351799 0.491989 +vt 0.317790 0.469663 +vt 0.325237 0.467152 +vt 0.319892 0.468553 +vt 0.332008 0.467444 +vt 0.330974 0.471186 +vt 0.331057 0.473692 +vt 0.333371 0.474832 +vt 0.334188 0.476245 +vt 0.344695 0.484026 +vt 0.343057 0.479805 +vt 0.339081 0.476835 +vt 0.340928 0.479143 +vt 0.345167 0.487663 +vt 0.366929 0.497650 +vt 0.364716 0.489469 +vt 0.359853 0.486863 +vt 0.349058 0.490277 +vt 0.350515 0.491517 +vt 0.318453 0.466659 +vt 0.330981 0.465872 +vt 0.322365 0.466859 +vt 0.311356 0.465919 +vt 0.312592 0.466309 +vt 0.314996 0.467360 +vt 0.338027 0.475507 +vt 0.334467 0.474929 +vt 0.343940 0.481722 +vt 0.339523 0.475047 +vt 0.341281 0.477097 +vt 0.353776 0.478696 +vt 0.347093 0.488413 +vt 0.327524 0.463816 +vt 0.325332 0.464285 +vt 0.320957 0.465865 +vt 0.334043 0.468895 +vt 0.332309 0.465354 +vt 0.311349 0.463598 +vt 0.314086 0.465274 +vt 0.334052 0.472515 +vt 0.336059 0.474035 +vt 0.345508 0.486517 +vt 0.345472 0.483344 +vt 0.345395 0.480713 +vt 0.340449 0.474708 +vt 0.367372 0.490573 +vt 0.365496 0.487359 +vt 0.348399 0.482335 +vt 0.360589 0.481608 +vt 0.316867 0.464517 +vt 0.330678 0.464152 +vt 0.321793 0.463305 +vt 0.332914 0.465486 +vt 0.339018 0.473635 +vt 0.347117 0.485476 +vt 0.345446 0.476648 +vt 0.342307 0.475388 +vt 0.341406 0.474115 +vt 0.369863 0.494078 +vt 0.347551 0.477703 +vt 0.360979 0.475882 +vt 0.318623 0.464160 +vt 0.329480 0.461204 +vt 0.328163 0.460320 +vt 0.325153 0.462510 +vt 0.335627 0.465989 +vt 0.335969 0.470388 +vt 0.333168 0.463567 +vt 0.314165 0.462914 +vt 0.337601 0.472005 +vt 0.344113 0.474999 +vt 0.340238 0.472068 +vt 0.366837 0.484850 +vt 0.370025 0.490354 +vt 0.364529 0.482604 +vt 0.349054 0.472951 +vt 0.355562 0.468976 +vt 0.317131 0.462018 +vt 0.332345 0.458663 +vt 0.322710 0.460503 +vt 0.319933 0.460578 +vt 0.337088 0.467584 +vt 0.335190 0.464165 +vt 0.338984 0.470102 +vt 0.346259 0.473472 +vt 0.342269 0.472306 +vt 0.344089 0.470386 +vt 0.342479 0.469379 +vt 0.372177 0.490337 +vt 0.351163 0.469035 +vt 0.360820 0.471294 +vt 0.366159 0.477376 +vt 0.331001 0.457831 +vt 0.325878 0.459386 +vt 0.338184 0.464928 +vt 0.336780 0.464065 +vt 0.336018 0.461109 +vt 0.315461 0.460148 +vt 0.344754 0.471109 +vt 0.369060 0.485625 +vt 0.372317 0.488148 +vt 0.348808 0.469123 +vt 0.347153 0.470243 +vt 0.362726 0.473234 +vt 0.359266 0.467099 +vt 0.352481 0.467142 +vt 0.365460 0.475276 +vt 0.317488 0.459255 +vt 0.328933 0.457389 +vt 0.333588 0.457230 +vt 0.327241 0.457650 +vt 0.322777 0.459224 +vt 0.321642 0.459458 +vt 0.337925 0.461128 +vt 0.343194 0.471119 +vt 0.344195 0.469690 +vt 0.341107 0.466620 +vt 0.368479 0.480051 +vt 0.373152 0.488554 +vt 0.349629 0.466143 +vt 0.362984 0.469370 +vt 0.355824 0.465510 +vt 0.351520 0.466636 +vt 0.352865 0.465876 +vt 0.370045 0.474248 +vt 0.320072 0.455946 +vt 0.330708 0.455270 +vt 0.332297 0.455013 +vt 0.323419 0.457886 +vt 0.338004 0.464163 +vt 0.336262 0.459535 +vt 0.315107 0.456728 +vt 0.345003 0.468598 +vt 0.343763 0.469985 +vt 0.343039 0.466582 +vt 0.369375 0.476518 +vt 0.370920 0.485642 +vt 0.370411 0.480287 +vt 0.372150 0.485189 +vt 0.347213 0.467903 +vt 0.350969 0.465122 +vt 0.347881 0.466166 +vt 0.364755 0.468443 +vt 0.361978 0.467029 +vt 0.353515 0.464497 +vt 0.356614 0.464160 +vt 0.351849 0.465680 +vt 0.368793 0.471684 +vt 0.328543 0.454441 +vt 0.334247 0.454949 +vt 0.340043 0.463362 +vt 0.338960 0.463276 +vt 0.335999 0.456197 +vt 0.337221 0.457218 +vt 0.343782 0.468486 +vt 0.341793 0.463558 +vt 0.373246 0.485773 +vt 0.349334 0.464764 +vt 0.365718 0.469015 +vt 0.363478 0.467718 +vt 0.359618 0.464283 +vt 0.355035 0.463451 +vt 0.352485 0.464660 +vt 0.370268 0.472319 +vt 0.371172 0.477246 +vt 0.317439 0.453931 +vt 0.334746 0.451725 +vt 0.324648 0.453704 +vt 0.339204 0.461866 +vt 0.338499 0.457096 +vt 0.346209 0.466337 +vt 0.344102 0.467413 +vt 0.344906 0.464760 +vt 0.371724 0.481737 +vt 0.350984 0.462974 +vt 0.346640 0.465006 +vt 0.364336 0.466629 +vt 0.363137 0.466147 +vt 0.352800 0.462651 +vt 0.356201 0.462412 +vt 0.351990 0.463838 +vt 0.369487 0.469890 +vt 0.371069 0.474398 +vt 0.367452 0.467092 +vt 0.370840 0.475020 +vt 0.320910 0.451578 +vt 0.331989 0.451560 +vt 0.336800 0.454200 +vt 0.327419 0.449780 +vt 0.322334 0.453013 +vt 0.340455 0.461406 +vt 0.340681 0.460431 +vt 0.338838 0.452996 +vt 0.345413 0.466564 +vt 0.344361 0.466227 +vt 0.344394 0.461754 +vt 0.372871 0.481744 +vt 0.349574 0.463431 +vt 0.365399 0.464761 +vt 0.360889 0.463471 +vt 0.355558 0.461686 +vt 0.360586 0.462330 +vt 0.371229 0.472188 +vt 0.319050 0.449741 +vt 0.329820 0.448258 +vt 0.334130 0.447792 +vt 0.339592 0.450870 +vt 0.324229 0.451069 +vt 0.342068 0.460921 +vt 0.341035 0.453115 +vt 0.349482 0.461895 +vt 0.364223 0.464786 +vt 0.363734 0.466111 +vt 0.363030 0.464535 +vt 0.352563 0.461236 +vt 0.358041 0.460582 +vt 0.369595 0.467113 +vt 0.370563 0.468911 +vt 0.372319 0.477023 +vt 0.367603 0.463088 +vt 0.322020 0.450970 +vt 0.337950 0.448836 +vt 0.327370 0.446065 +vt 0.340459 0.451501 +vt 0.341547 0.457533 +vt 0.347492 0.460171 +vt 0.342907 0.459112 +vt 0.363996 0.462831 +vt 0.362467 0.462630 +vt 0.351677 0.456443 +vt 0.360514 0.458232 +vt 0.362116 0.460539 +vt 0.369258 0.464038 +vt 0.371292 0.469892 +vt 0.365486 0.461573 +vt 0.323210 0.448461 +vt 0.330695 0.444869 +vt 0.337111 0.444469 +vt 0.340344 0.450413 +vt 0.329511 0.446661 +vt 0.342466 0.449940 +vt 0.342740 0.456332 +vt 0.345262 0.457137 +vt 0.358818 0.453980 +vt 0.370662 0.466604 +vt 0.369309 0.461628 +vt 0.368189 0.461389 +vt 0.322964 0.445134 +vt 0.333623 0.442658 +vt 0.339603 0.444493 +vt 0.328376 0.443406 +vt 0.326595 0.443276 +vt 0.342139 0.453895 +vt 0.342906 0.457469 +vt 0.364049 0.459642 +vt 0.355479 0.452330 +vt 0.363490 0.457627 +vt 0.362123 0.454730 +vt 0.370360 0.461948 +vt 0.366353 0.459031 +vt 0.331684 0.442164 +vt 0.339649 0.442186 +vt 0.340544 0.446104 +vt 0.341587 0.448528 +vt 0.343794 0.451755 +vt 0.343564 0.454928 +vt 0.347177 0.452009 +vt 0.357938 0.448962 +vt 0.352801 0.449746 +vt 0.361041 0.449273 +vt 0.368970 0.458724 +vt 0.369689 0.458865 +vt 0.367834 0.458270 +vt 0.328584 0.440929 +vt 0.341694 0.443762 +vt 0.342694 0.449802 +vt 0.344299 0.452824 +vt 0.344894 0.454191 +vt 0.365104 0.456030 +vt 0.364430 0.452606 +vt 0.370021 0.457059 +vt 0.341707 0.446231 +vt 0.343229 0.447130 +vt 0.344121 0.449233 +vt 0.345777 0.448806 +vt 0.350009 0.447311 +vt 0.354762 0.445332 +vt 0.360938 0.445413 +vt 0.363746 0.450291 +vt 0.368190 0.454935 +vt 0.369095 0.456367 +vt 0.367126 0.455322 +vt 0.342721 0.444802 +vt 0.347838 0.447748 +vt 0.352218 0.445765 +vt 0.359506 0.443581 +vt 0.362491 0.447851 +vt 0.366260 0.453792 +vt 0.366382 0.449445 +vt 0.369198 0.454200 +vt 0.344721 0.441675 +vt 0.344645 0.447633 +vt 0.349909 0.445606 +vt 0.350757 0.444699 +vt 0.353190 0.444258 +vt 0.357375 0.441155 +vt 0.363240 0.441479 +vt 0.364043 0.444104 +vt 0.364549 0.447663 +vt 0.369511 0.452740 +vt 0.343928 0.445453 +vt 0.345089 0.442532 +vt 0.346902 0.446071 +vt 0.351932 0.443609 +vt 0.353950 0.443313 +vt 0.359227 0.440438 +vt 0.365437 0.444430 +vt 0.367540 0.450865 +vt 0.366221 0.447315 +vt 0.368628 0.451876 +vt 0.346960 0.440739 +vt 0.345511 0.444404 +vt 0.347393 0.442691 +vt 0.349862 0.444623 +vt 0.350932 0.442900 +vt 0.353829 0.441493 +vt 0.357628 0.439135 +vt 0.363163 0.439896 +vt 0.364865 0.442350 +vt 0.367529 0.449212 +vt 0.367148 0.448340 +vt 0.368210 0.448629 +vt 0.346726 0.438354 +vt 0.349036 0.443748 +vt 0.351754 0.441492 +vt 0.354602 0.439518 +vt 0.364604 0.440589 +vt 0.366264 0.442023 +vt 0.366862 0.445388 +vt 0.349592 0.439686 +vt 0.348042 0.441478 +vt 0.349074 0.442059 +vt 0.350806 0.442018 +vt 0.353092 0.439085 +vt 0.356937 0.437848 +vt 0.361191 0.437980 +vt 0.365220 0.438700 +vt 0.365818 0.440463 +vt 0.367255 0.442027 +vt 0.348985 0.440636 +vt 0.350665 0.434424 +vt 0.350418 0.441192 +vt 0.351350 0.439670 +vt 0.363709 0.438119 +vt 0.366909 0.440555 +vt 0.367628 0.444546 +vt 0.353050 0.433392 +vt 0.352171 0.437459 +vt 0.361913 0.436162 +vt 0.364559 0.437202 +vt 0.366712 0.439408 +vt 0.367480 0.440910 +vt 0.367930 0.442277 +vt 0.351072 0.431785 +vt 0.358765 0.434314 +vt 0.365922 0.437604 +vt 0.366420 0.438309 +vt 0.367427 0.440374 +vt 0.352317 0.430980 +vt 0.361505 0.433261 +vt 0.363927 0.435662 +vt 0.365678 0.436581 +vt 0.367122 0.438787 +vt 0.367703 0.440635 +vt 0.351319 0.430582 +vt 0.353598 0.431853 +vt 0.355248 0.432853 +vt 0.360556 0.432544 +vt 0.366777 0.437953 +vt 0.366279 0.437192 +vt 0.350206 0.430053 +vt 0.351825 0.430042 +vt 0.353762 0.430358 +vt 0.357950 0.432002 +vt 0.363667 0.433832 +vt 0.362457 0.431763 +vt 0.365242 0.434760 +vt 0.366904 0.437581 +vt 0.367212 0.438528 +vt 0.351193 0.429817 +vt 0.352590 0.429232 +vt 0.355200 0.431286 +vt 0.356275 0.432121 +vt 0.360799 0.430857 +vt 0.359573 0.431384 +vt 0.366352 0.435809 +vt 0.353878 0.428821 +vt 0.355070 0.429852 +vt 0.356570 0.430478 +vt 0.365023 0.432869 +vt 0.362033 0.430302 +vt 0.358114 0.430391 +vt 0.366430 0.433904 +vt 0.365161 0.431657 +vt 0.359706 0.429527 +vt 0.363507 0.430464 +vt 0.360931 0.429594 +vt 0.356036 0.428715 +vt 0.357279 0.429761 +vt 0.366213 0.432163 +vt 0.362730 0.428611 +vt 0.361548 0.428718 +vt 0.358555 0.429554 +vt 0.356965 0.428962 +vt 0.357826 0.428946 +vt 0.364327 0.429384 +vt 0.365604 0.430667 +vt 0.360618 0.428325 +vt 0.358703 0.428123 +vt 0.365477 0.429254 +vt 0.369894 0.742653 +vt 0.368331 0.744286 +vt 0.369740 0.740966 +vt 0.369291 0.744511 +vt 0.368277 0.742139 +vt 0.370641 0.740953 +vt 0.368498 0.745475 +vt 0.371544 0.742676 +vt 0.366376 0.743026 +vt 0.369523 0.739239 +vt 0.370955 0.739266 +vt 0.367679 0.746788 +vt 0.368945 0.745911 +vt 0.369874 0.745679 +vt 0.366131 0.747871 +vt 0.367771 0.740867 +vt 0.370381 0.738967 +vt 0.372263 0.739596 +vt 0.368218 0.746838 +vt 0.370742 0.746236 +vt 0.364549 0.748180 +vt 0.366813 0.739753 +vt 0.370602 0.737866 +vt 0.368854 0.737902 +vt 0.371006 0.738001 +vt 0.371919 0.738550 +vt 0.372559 0.741341 +vt 0.367029 0.749282 +vt 0.369137 0.748165 +vt 0.368039 0.749083 +vt 0.371854 0.744515 +vt 0.364543 0.750203 +vt 0.364785 0.743817 +vt 0.364795 0.741624 +vt 0.370860 0.736484 +vt 0.372658 0.737268 +vt 0.373519 0.737279 +vt 0.365563 0.751337 +vt 0.370259 0.749323 +vt 0.364308 0.748496 +vt 0.363890 0.746620 +vt 0.367932 0.737394 +vt 0.365581 0.738943 +vt 0.371148 0.737224 +vt 0.370233 0.734955 +vt 0.374494 0.740043 +vt 0.366944 0.750521 +vt 0.368595 0.750013 +vt 0.373851 0.743421 +vt 0.364340 0.752683 +vt 0.363457 0.750612 +vt 0.363376 0.744178 +vt 0.367092 0.737461 +vt 0.369069 0.735180 +vt 0.364066 0.739798 +vt 0.371726 0.736645 +vt 0.372250 0.733542 +vt 0.372821 0.736038 +vt 0.373238 0.736143 +vt 0.375577 0.735002 +vt 0.366101 0.752545 +vt 0.374316 0.744136 +vt 0.367013 0.755284 +vt 0.363483 0.753095 +vt 0.365056 0.753506 +vt 0.362825 0.748993 +vt 0.362364 0.747500 +vt 0.361665 0.745311 +vt 0.368127 0.735533 +vt 0.366406 0.737100 +vt 0.365189 0.737916 +vt 0.372385 0.735368 +vt 0.371694 0.731552 +vt 0.369217 0.733843 +vt 0.374142 0.734908 +vt 0.375917 0.740110 +vt 0.366612 0.753468 +vt 0.373167 0.748143 +vt 0.368181 0.755801 +vt 0.363854 0.755249 +vt 0.362500 0.751952 +vt 0.362484 0.736608 +vt 0.363306 0.739231 +vt 0.365643 0.737723 +vt 0.364818 0.737066 +vt 0.374102 0.729215 +vt 0.373137 0.733967 +vt 0.373314 0.735128 +vt 0.375280 0.733626 +vt 0.376899 0.736020 +vt 0.375507 0.746468 +vt 0.371397 0.753267 +vt 0.376772 0.742323 +vt 0.365008 0.756851 +vt 0.366093 0.759786 +vt 0.362120 0.755014 +vt 0.362735 0.753113 +vt 0.361176 0.752025 +vt 0.359055 0.748870 +vt 0.359163 0.744863 +vt 0.365777 0.736398 +vt 0.368064 0.734047 +vt 0.369308 0.733351 +vt 0.372155 0.727251 +vt 0.374732 0.730755 +vt 0.376506 0.733051 +vt 0.378048 0.737024 +vt 0.373703 0.750277 +vt 0.374568 0.744088 +vt 0.377323 0.740082 +vt 0.365580 0.757497 +vt 0.369269 0.758979 +vt 0.362773 0.756898 +vt 0.363920 0.757398 +vt 0.361211 0.755317 +vt 0.360120 0.749992 +vt 0.361965 0.734073 +vt 0.363780 0.736888 +vt 0.365031 0.734261 +vt 0.374733 0.725934 +vt 0.375427 0.727716 +vt 0.376151 0.729671 +vt 0.378328 0.732629 +vt 0.375867 0.748462 +vt 0.375095 0.752141 +vt 0.378805 0.741120 +vt 0.364613 0.759170 +vt 0.366628 0.764549 +vt 0.372310 0.757413 +vt 0.362099 0.756489 +vt 0.358692 0.756658 +vt 0.356002 0.755646 +vt 0.355047 0.751868 +vt 0.359899 0.737231 +vt 0.364287 0.730663 +vt 0.366959 0.733319 +vt 0.368493 0.731970 +vt 0.375298 0.723544 +vt 0.378312 0.726026 +vt 0.379956 0.737549 +vt 0.379480 0.733531 +vt 0.380200 0.726998 +vt 0.379343 0.742885 +vt 0.369656 0.763764 +vt 0.363523 0.764396 +vt 0.364413 0.761264 +vt 0.370643 0.761148 +vt 0.361713 0.758235 +vt 0.362705 0.758822 +vt 0.363444 0.760113 +vt 0.360065 0.758316 +vt 0.352704 0.750453 +vt 0.357088 0.743419 +vt 0.360870 0.733600 +vt 0.361845 0.731090 +vt 0.366866 0.729756 +vt 0.369632 0.728126 +vt 0.376142 0.723545 +vt 0.374644 0.719259 +vt 0.376273 0.725617 +vt 0.377200 0.726586 +vt 0.380766 0.727616 +vt 0.378885 0.745706 +vt 0.377650 0.749125 +vt 0.377653 0.755972 +vt 0.380409 0.739257 +vt 0.368215 0.765585 +vt 0.362954 0.769591 +vt 0.363979 0.760863 +vt 0.371328 0.762391 +vt 0.361319 0.757164 +vt 0.357023 0.761305 +vt 0.358670 0.759774 +vt 0.352267 0.760890 +vt 0.350716 0.755233 +vt 0.357466 0.739091 +vt 0.359023 0.735796 +vt 0.363443 0.728577 +vt 0.377602 0.719131 +vt 0.376986 0.717025 +vt 0.381743 0.722420 +vt 0.377735 0.723161 +vt 0.382148 0.734059 +vt 0.382019 0.730192 +vt 0.381958 0.724185 +vt 0.377722 0.751026 +vt 0.373659 0.760141 +vt 0.378002 0.753308 +vt 0.380481 0.742953 +vt 0.381424 0.739204 +vt 0.381960 0.737135 +vt 0.365376 0.770213 +vt 0.369190 0.766234 +vt 0.361500 0.768671 +vt 0.363634 0.762298 +vt 0.361544 0.760710 +vt 0.360180 0.759872 +vt 0.363517 0.761580 +vt 0.353380 0.761968 +vt 0.359375 0.760093 +vt 0.348786 0.752956 +vt 0.353199 0.744855 +vt 0.355468 0.741377 +vt 0.360485 0.731752 +vt 0.359563 0.732900 +vt 0.361265 0.728940 +vt 0.367464 0.725316 +vt 0.370895 0.721356 +vt 0.376396 0.713851 +vt 0.382813 0.723670 +vt 0.381232 0.746516 +vt 0.376701 0.761181 +vt 0.381277 0.752641 +vt 0.382561 0.743084 +vt 0.367558 0.769081 +vt 0.370937 0.767340 +vt 0.360783 0.776869 +vt 0.360187 0.772188 +vt 0.361687 0.766674 +vt 0.362764 0.763395 +vt 0.372175 0.765295 +vt 0.358713 0.761072 +vt 0.355546 0.763056 +vt 0.351841 0.763740 +vt 0.349879 0.759211 +vt 0.351197 0.744764 +vt 0.347540 0.757085 +vt 0.357238 0.735782 +vt 0.353963 0.741550 +vt 0.357896 0.734218 +vt 0.362121 0.726686 +vt 0.365375 0.723806 +vt 0.372909 0.718433 +vt 0.379125 0.717766 +vt 0.378978 0.711631 +vt 0.382795 0.735050 +vt 0.384353 0.730762 +vt 0.385014 0.725714 +vt 0.379750 0.750286 +vt 0.380069 0.757020 +vt 0.382399 0.740714 +vt 0.383393 0.737883 +vt 0.366821 0.771033 +vt 0.368540 0.769029 +vt 0.365175 0.773368 +vt 0.360577 0.768735 +vt 0.362076 0.764720 +vt 0.360714 0.762695 +vt 0.361864 0.763103 +vt 0.357026 0.763234 +vt 0.356099 0.763563 +vt 0.352878 0.764623 +vt 0.359342 0.761508 +vt 0.348363 0.745967 +vt 0.344784 0.758601 +vt 0.352726 0.741163 +vt 0.359839 0.729926 +vt 0.358063 0.728754 +vt 0.360333 0.727514 +vt 0.368282 0.720913 +vt 0.370732 0.719486 +vt 0.379881 0.712438 +vt 0.376638 0.708409 +vt 0.374137 0.713607 +vt 0.382319 0.720798 +vt 0.383638 0.733489 +vt 0.382827 0.735815 +vt 0.385290 0.720531 +vt 0.384155 0.744999 +vt 0.384481 0.747147 +vt 0.381176 0.758702 +vt 0.375286 0.766666 +vt 0.382606 0.754818 +vt 0.383828 0.752312 +vt 0.383616 0.740706 +vt 0.369142 0.770393 +vt 0.371661 0.768687 +vt 0.359283 0.774601 +vt 0.364306 0.775940 +vt 0.359244 0.771721 +vt 0.361252 0.766172 +vt 0.361009 0.767226 +vt 0.359625 0.762986 +vt 0.358683 0.762746 +vt 0.354856 0.765174 +vt 0.347754 0.763426 +vt 0.351771 0.766752 +vt 0.346145 0.760979 +vt 0.346593 0.751820 +vt 0.351028 0.740533 +vt 0.356320 0.735299 +vt 0.357195 0.732436 +vt 0.362127 0.723448 +vt 0.360840 0.725834 +vt 0.369637 0.716554 +vt 0.382241 0.714323 +vt 0.381194 0.705829 +vt 0.378995 0.704976 +vt 0.383689 0.719135 +vt 0.383452 0.735058 +vt 0.386040 0.727145 +vt 0.385475 0.730735 +vt 0.387843 0.720919 +vt 0.385181 0.742334 +vt 0.376920 0.765363 +vt 0.385037 0.741136 +vt 0.383943 0.735800 +vt 0.366710 0.772376 +vt 0.367759 0.771546 +vt 0.370354 0.772221 +vt 0.358478 0.775744 +vt 0.365906 0.773955 +vt 0.362577 0.779973 +vt 0.358640 0.771840 +vt 0.361596 0.764219 +vt 0.360326 0.767377 +vt 0.360813 0.764568 +vt 0.359832 0.764906 +vt 0.356892 0.764940 +vt 0.356009 0.766222 +vt 0.352388 0.766009 +vt 0.349282 0.766730 +vt 0.351091 0.767590 +vt 0.346564 0.748409 +vt 0.344500 0.743245 +vt 0.340434 0.766010 +vt 0.344440 0.751996 +vt 0.355435 0.731311 +vt 0.359159 0.728326 +vt 0.364289 0.718109 +vt 0.360187 0.725853 +vt 0.370206 0.717555 +vt 0.372347 0.713819 +vt 0.381945 0.708351 +vt 0.376785 0.704314 +vt 0.373718 0.711044 +vt 0.384581 0.733852 +vt 0.387716 0.715361 +vt 0.385950 0.744552 +vt 0.386196 0.743203 +vt 0.386605 0.746051 +vt 0.385741 0.757662 +vt 0.379677 0.763549 +vt 0.373952 0.768341 +vt 0.375048 0.769027 +vt 0.386591 0.751152 +vt 0.385682 0.739010 +vt 0.384918 0.738163 +vt 0.385421 0.735542 +vt 0.368448 0.772719 +vt 0.372036 0.772864 +vt 0.357449 0.777284 +vt 0.358402 0.774494 +vt 0.366136 0.775137 +vt 0.359926 0.783272 +vt 0.363954 0.779812 +vt 0.358353 0.769380 +vt 0.359295 0.767430 +vt 0.358739 0.764847 +vt 0.358112 0.764732 +vt 0.354522 0.768234 +vt 0.347342 0.766094 +vt 0.344961 0.763836 +vt 0.352272 0.768530 +vt 0.346233 0.749797 +vt 0.350508 0.731090 +vt 0.341396 0.760053 +vt 0.341278 0.767004 +vt 0.342215 0.754136 +vt 0.358671 0.727328 +vt 0.359421 0.726754 +vt 0.357929 0.726702 +vt 0.360339 0.724816 +vt 0.361714 0.720847 +vt 0.368183 0.708788 +vt 0.383160 0.712317 +vt 0.383754 0.700757 +vt 0.381963 0.700952 +vt 0.380365 0.698786 +vt 0.384591 0.712939 +vt 0.387849 0.723371 +vt 0.387104 0.726963 +vt 0.386149 0.732438 +vt 0.384752 0.716282 +vt 0.389745 0.715909 +vt 0.386972 0.739732 +vt 0.387246 0.740635 +vt 0.388544 0.745113 +vt 0.383580 0.760962 +vt 0.376640 0.772298 +vt 0.382323 0.763445 +vt 0.373154 0.771628 +vt 0.367181 0.773148 +vt 0.368678 0.774942 +vt 0.370421 0.776874 +vt 0.356425 0.780460 +vt 0.357563 0.775992 +vt 0.357604 0.774899 +vt 0.361379 0.783547 +vt 0.356346 0.785463 +vt 0.362793 0.781408 +vt 0.356513 0.773076 +vt 0.358245 0.767198 +vt 0.357434 0.766062 +vt 0.357023 0.767583 +vt 0.349485 0.770291 +vt 0.345549 0.765869 +vt 0.348051 0.770616 +vt 0.350186 0.770854 +vt 0.345233 0.749213 +vt 0.346761 0.730479 +vt 0.341786 0.756131 +vt 0.338530 0.767733 +vt 0.338251 0.772153 +vt 0.342308 0.752472 +vt 0.354599 0.724230 +vt 0.356876 0.724843 +vt 0.360569 0.723188 +vt 0.361918 0.717390 +vt 0.359573 0.725431 +vt 0.371395 0.712605 +vt 0.366113 0.708694 +vt 0.384714 0.707891 +vt 0.385463 0.701779 +vt 0.375706 0.701783 +vt 0.388647 0.721919 +vt 0.387198 0.728757 +vt 0.387480 0.730166 +vt 0.388498 0.710923 +vt 0.389963 0.717914 +vt 0.389366 0.710603 +vt 0.387763 0.742021 +vt 0.384403 0.761647 +vt 0.387301 0.753364 +vt 0.379649 0.767427 +vt 0.374789 0.771646 +vt 0.389998 0.745203 +vt 0.387241 0.739076 +vt 0.386898 0.737287 +vt 0.367377 0.774976 +vt 0.373187 0.774060 +vt 0.355960 0.778496 +vt 0.356827 0.775890 +vt 0.365656 0.777883 +vt 0.360670 0.786233 +vt 0.358761 0.785929 +vt 0.363100 0.783254 +vt 0.357465 0.769013 +vt 0.355277 0.771561 +vt 0.346054 0.768310 +vt 0.343694 0.768010 +vt 0.343646 0.749871 +vt 0.343085 0.734514 +vt 0.349304 0.726025 +vt 0.340551 0.757639 +vt 0.338559 0.765324 +vt 0.341310 0.772657 +vt 0.344478 0.750820 +vt 0.340863 0.754837 +vt 0.341447 0.753220 +vt 0.352203 0.721571 +vt 0.358743 0.725948 +vt 0.358105 0.724653 +vt 0.359560 0.724052 +vt 0.360686 0.719886 +vt 0.360220 0.721969 +vt 0.386593 0.696572 +vt 0.383834 0.697594 +vt 0.383048 0.695779 +vt 0.376004 0.693131 +vt 0.388415 0.724013 +vt 0.390074 0.718578 +vt 0.388238 0.727512 +vt 0.388226 0.733236 +vt 0.391071 0.716224 +vt 0.390901 0.712201 +vt 0.388377 0.738519 +vt 0.391095 0.739478 +vt 0.383282 0.763243 +vt 0.386393 0.759389 +vt 0.386971 0.757539 +vt 0.389848 0.748727 +vt 0.379438 0.772349 +vt 0.383145 0.767358 +vt 0.391777 0.741617 +vt 0.368188 0.777231 +vt 0.371862 0.779831 +vt 0.356331 0.777162 +vt 0.355020 0.779879 +vt 0.355230 0.782972 +vt 0.362121 0.784244 +vt 0.358113 0.788572 +vt 0.356319 0.774700 +vt 0.356111 0.772307 +vt 0.352397 0.774650 +vt 0.349732 0.773917 +vt 0.349193 0.771569 +vt 0.344921 0.768238 +vt 0.345426 0.770558 +vt 0.340751 0.739505 +vt 0.344758 0.728176 +vt 0.347917 0.724927 +vt 0.339919 0.755583 +vt 0.338106 0.761062 +vt 0.337798 0.767388 +vt 0.338507 0.776086 +vt 0.340646 0.753420 +vt 0.355834 0.719659 +vt 0.356719 0.720642 +vt 0.358805 0.724982 +vt 0.358176 0.723090 +vt 0.359867 0.723095 +vt 0.360366 0.717619 +vt 0.364129 0.707978 +vt 0.372865 0.699152 +vt 0.387307 0.703237 +vt 0.387075 0.707763 +vt 0.387920 0.697990 +vt 0.381310 0.689890 +vt 0.389140 0.722393 +vt 0.389862 0.720905 +vt 0.388989 0.725137 +vt 0.389055 0.729054 +vt 0.389650 0.703424 +vt 0.390743 0.717783 +vt 0.391564 0.713586 +vt 0.391674 0.706861 +vt 0.390931 0.736620 +vt 0.384804 0.762604 +vt 0.388977 0.751841 +vt 0.375800 0.776071 +vt 0.391324 0.744796 +vt 0.366669 0.778772 +vt 0.367961 0.779218 +vt 0.373969 0.778972 +vt 0.369845 0.780778 +vt 0.355614 0.778019 +vt 0.354589 0.781775 +vt 0.355160 0.778499 +vt 0.353846 0.784024 +vt 0.355636 0.776366 +vt 0.365394 0.780759 +vt 0.362374 0.785159 +vt 0.356537 0.789128 +vt 0.355057 0.774415 +vt 0.348884 0.772575 +vt 0.348046 0.772452 +vt 0.345113 0.769137 +vt 0.346199 0.771915 +vt 0.344220 0.770454 +vt 0.341130 0.749569 +vt 0.339768 0.743858 +vt 0.340757 0.735663 +vt 0.342655 0.730704 +vt 0.349324 0.721520 +vt 0.338312 0.757553 +vt 0.337349 0.765436 +vt 0.339277 0.778412 +vt 0.354960 0.716656 +vt 0.357512 0.722180 +vt 0.359265 0.722754 +vt 0.359305 0.720198 +vt 0.368767 0.699408 +vt 0.390783 0.694047 +vt 0.385971 0.693733 +vt 0.386070 0.690076 +vt 0.385033 0.687164 +vt 0.380133 0.682062 +vt 0.389290 0.723531 +vt 0.391056 0.720527 +vt 0.390225 0.725755 +vt 0.391216 0.728569 +vt 0.391214 0.701886 +vt 0.391646 0.717624 +vt 0.392380 0.714796 +vt 0.392763 0.709322 +vt 0.393072 0.732952 +vt 0.393909 0.737260 +vt 0.387422 0.760323 +vt 0.388344 0.757238 +vt 0.389988 0.753523 +vt 0.391401 0.750466 +vt 0.376698 0.777272 +vt 0.382713 0.772537 +vt 0.392574 0.747289 +vt 0.392538 0.742872 +vt 0.367842 0.781933 +vt 0.372993 0.780403 +vt 0.369995 0.782618 +vt 0.353762 0.780687 +vt 0.354323 0.779066 +vt 0.353051 0.786537 +vt 0.363687 0.784055 +vt 0.362430 0.786799 +vt 0.359895 0.789123 +vt 0.356630 0.791301 +vt 0.355165 0.790872 +vt 0.348941 0.777148 +vt 0.353651 0.776804 +vt 0.348239 0.774134 +vt 0.346833 0.773150 +vt 0.344765 0.772181 +vt 0.343481 0.774557 +vt 0.339464 0.748297 +vt 0.338762 0.741394 +vt 0.339789 0.737565 +vt 0.341610 0.733172 +vt 0.344166 0.726419 +vt 0.346226 0.723500 +vt 0.352355 0.715409 +vt 0.347965 0.719126 +vt 0.339123 0.755369 +vt 0.337231 0.779730 +vt 0.341219 0.777556 +vt 0.339850 0.752495 +vt 0.357727 0.717129 +vt 0.358734 0.719005 +vt 0.358489 0.721267 +vt 0.362155 0.706147 +vt 0.389929 0.699500 +vt 0.392341 0.687652 +vt 0.388926 0.686293 +vt 0.382650 0.680800 +vt 0.375853 0.681345 +vt 0.389997 0.722239 +vt 0.390050 0.723646 +vt 0.390403 0.701406 +vt 0.394517 0.708892 +vt 0.392031 0.700955 +vt 0.393178 0.705254 +vt 0.385719 0.763729 +vt 0.378745 0.775244 +vt 0.380237 0.774671 +vt 0.384507 0.769424 +vt 0.393637 0.743938 +vt 0.366442 0.781214 +vt 0.373594 0.781174 +vt 0.371403 0.782427 +vt 0.367870 0.784225 +vt 0.354593 0.777609 +vt 0.353514 0.782439 +vt 0.352597 0.790481 +vt 0.352667 0.785104 +vt 0.365112 0.782438 +vt 0.357411 0.793302 +vt 0.354736 0.776210 +vt 0.349938 0.780529 +vt 0.348029 0.776855 +vt 0.351989 0.778002 +vt 0.348142 0.773162 +vt 0.344930 0.773513 +vt 0.345613 0.773869 +vt 0.339513 0.751228 +vt 0.337620 0.746017 +vt 0.338953 0.739096 +vt 0.337820 0.743463 +vt 0.339639 0.735797 +vt 0.340754 0.733883 +vt 0.341776 0.731511 +vt 0.342895 0.728049 +vt 0.349884 0.717259 +vt 0.338972 0.753751 +vt 0.337343 0.754633 +vt 0.338747 0.781551 +vt 0.339969 0.779165 +vt 0.357487 0.711188 +vt 0.364311 0.697800 +vt 0.393766 0.694142 +vt 0.395463 0.687112 +vt 0.387836 0.684350 +vt 0.385643 0.679474 +vt 0.368777 0.683997 +vt 0.392385 0.718729 +vt 0.390608 0.722274 +vt 0.391337 0.722492 +vt 0.392916 0.723147 +vt 0.391787 0.699603 +vt 0.393474 0.714864 +vt 0.394955 0.729909 +vt 0.395187 0.733264 +vt 0.394626 0.737036 +vt 0.386058 0.766148 +vt 0.389395 0.757670 +vt 0.387367 0.762559 +vt 0.390167 0.755286 +vt 0.391726 0.751329 +vt 0.392633 0.749043 +vt 0.375284 0.780023 +vt 0.377131 0.779150 +vt 0.380847 0.776212 +vt 0.384069 0.771244 +vt 0.394099 0.744983 +vt 0.394943 0.739285 +vt 0.365401 0.784033 +vt 0.372390 0.782005 +vt 0.365958 0.786012 +vt 0.369091 0.784730 +vt 0.370250 0.783782 +vt 0.353013 0.781858 +vt 0.353422 0.779729 +vt 0.351410 0.787916 +vt 0.351869 0.785966 +vt 0.352795 0.784174 +vt 0.353082 0.783417 +vt 0.363899 0.785978 +vt 0.362616 0.788746 +vt 0.355029 0.793484 +vt 0.346219 0.780809 +vt 0.346536 0.778740 +vt 0.352928 0.778889 +vt 0.347344 0.776032 +vt 0.347106 0.774108 +vt 0.345988 0.775144 +vt 0.342528 0.777012 +vt 0.338769 0.751205 +vt 0.337696 0.748166 +vt 0.339957 0.734120 +vt 0.340859 0.732184 +vt 0.342065 0.730879 +vt 0.341740 0.730198 +vt 0.343108 0.726631 +vt 0.345670 0.721763 +vt 0.346369 0.719662 +vt 0.352652 0.711936 +vt 0.348451 0.713870 +vt 0.337296 0.781950 +vt 0.339517 0.780096 +vt 0.340337 0.779510 +vt 0.338796 0.752980 +vt 0.339033 0.752424 +vt 0.359857 0.705362 +vt 0.360823 0.700027 +vt 0.394576 0.681856 +vt 0.373494 0.673542 +vt 0.392159 0.720762 +vt 0.395497 0.709069 +vt 0.393543 0.698824 +vt 0.394485 0.700929 +vt 0.396620 0.700887 +vt 0.388944 0.759267 +vt 0.388500 0.760651 +vt 0.391096 0.753250 +vt 0.393433 0.747515 +vt 0.379032 0.776725 +vt 0.382409 0.774821 +vt 0.384825 0.771034 +vt 0.384188 0.772347 +vt 0.385538 0.768445 +vt 0.394935 0.743245 +vt 0.394136 0.746179 +vt 0.394599 0.741881 +vt 0.373799 0.783601 +vt 0.372348 0.783316 +vt 0.366860 0.787449 +vt 0.367848 0.785552 +vt 0.370586 0.783871 +vt 0.352949 0.780939 +vt 0.352912 0.782783 +vt 0.350107 0.790137 +vt 0.352133 0.784595 +vt 0.356961 0.797149 +vt 0.355436 0.794412 +vt 0.352054 0.794990 +vt 0.350833 0.780000 +vt 0.343901 0.784915 +vt 0.351942 0.779519 +vt 0.344957 0.774985 +vt 0.343288 0.776816 +vt 0.342016 0.778194 +vt 0.338974 0.752002 +vt 0.338462 0.750267 +vt 0.335888 0.744535 +vt 0.337991 0.749437 +vt 0.336642 0.747616 +vt 0.336444 0.742774 +vt 0.337864 0.737920 +vt 0.341073 0.729129 +vt 0.347004 0.716916 +vt 0.338148 0.753153 +vt 0.339189 0.784260 +vt 0.340056 0.780960 +vt 0.341142 0.779483 +vt 0.339889 0.780014 +vt 0.356581 0.705923 +vt 0.363767 0.684619 +vt 0.361149 0.695124 +vt 0.397582 0.689895 +vt 0.391906 0.682317 +vt 0.390319 0.681660 +vt 0.387855 0.677910 +vt 0.369767 0.678276 +vt 0.374403 0.673820 +vt 0.394998 0.713615 +vt 0.395306 0.721279 +vt 0.397422 0.727727 +vt 0.396858 0.731829 +vt 0.396724 0.737409 +vt 0.387628 0.763842 +vt 0.389722 0.758482 +vt 0.390788 0.756116 +vt 0.388247 0.761589 +vt 0.391488 0.754180 +vt 0.392203 0.752148 +vt 0.393030 0.749968 +vt 0.393464 0.748372 +vt 0.375279 0.782501 +vt 0.377502 0.780282 +vt 0.379787 0.778930 +vt 0.381762 0.776625 +vt 0.382950 0.773743 +vt 0.385372 0.769708 +vt 0.383789 0.773447 +vt 0.386395 0.768853 +vt 0.395061 0.744630 +vt 0.395803 0.739259 +vt 0.364633 0.786602 +vt 0.371287 0.783496 +vt 0.364568 0.789014 +vt 0.368358 0.786087 +vt 0.369312 0.785636 +vt 0.370347 0.784597 +vt 0.352162 0.782198 +vt 0.352344 0.780519 +vt 0.350924 0.786375 +vt 0.350167 0.787822 +vt 0.349017 0.794171 +vt 0.351370 0.785043 +vt 0.352517 0.783541 +vt 0.355136 0.796347 +vt 0.361789 0.792222 +vt 0.353724 0.795438 +vt 0.350088 0.782466 +vt 0.344959 0.781309 +vt 0.347257 0.785738 +vt 0.345793 0.779810 +vt 0.346159 0.777213 +vt 0.346825 0.775600 +vt 0.344233 0.776585 +vt 0.345234 0.775787 +vt 0.342461 0.778587 +vt 0.338680 0.752192 +vt 0.338202 0.751078 +vt 0.336501 0.749547 +vt 0.336887 0.739819 +vt 0.345118 0.720011 +vt 0.345223 0.716671 +vt 0.353119 0.704517 +vt 0.336999 0.753853 +vt 0.339441 0.782790 +vt 0.336544 0.783869 +vt 0.356083 0.702041 +vt 0.357752 0.701272 +vt 0.365522 0.679670 +vt 0.358265 0.698665 +vt 0.396419 0.695861 +vt 0.393841 0.679513 +vt 0.388417 0.680168 +vt 0.371932 0.674315 +vt 0.374141 0.671689 +vt 0.395283 0.719193 +vt 0.398259 0.722150 +vt 0.398313 0.703327 +vt 0.397116 0.708756 +vt 0.396694 0.734887 +vt 0.388080 0.762456 +vt 0.387327 0.765193 +vt 0.389579 0.759845 +vt 0.390373 0.757615 +vt 0.388693 0.761144 +vt 0.394185 0.747353 +vt 0.380706 0.778207 +vt 0.382808 0.775950 +vt 0.383158 0.774517 +vt 0.383302 0.773592 +vt 0.385077 0.772767 +vt 0.385789 0.771214 +vt 0.384512 0.773613 +vt 0.387205 0.766707 +vt 0.395943 0.743286 +vt 0.396184 0.741063 +vt 0.395225 0.746199 +vt 0.372182 0.785899 +vt 0.373040 0.786730 +vt 0.370656 0.785180 +vt 0.365782 0.790162 +vt 0.368122 0.786838 +vt 0.349507 0.789074 +vt 0.348873 0.791130 +vt 0.351833 0.783540 +vt 0.353457 0.800399 +vt 0.352640 0.798060 +vt 0.350266 0.798147 +vt 0.351391 0.780801 +vt 0.343536 0.783950 +vt 0.343846 0.787189 +vt 0.345878 0.779078 +vt 0.343491 0.778079 +vt 0.338263 0.751891 +vt 0.337359 0.750080 +vt 0.349298 0.706386 +vt 0.345327 0.709769 +vt 0.337803 0.752444 +vt 0.340540 0.782851 +vt 0.339503 0.786221 +vt 0.341408 0.780634 +vt 0.361284 0.682071 +vt 0.360401 0.687960 +vt 0.359005 0.693462 +vt 0.399143 0.690898 +vt 0.392670 0.679315 +vt 0.394763 0.677441 +vt 0.389977 0.678079 +vt 0.368477 0.675000 +vt 0.373244 0.672118 +vt 0.396550 0.714012 +vt 0.396684 0.718462 +vt 0.397932 0.718362 +vt 0.402049 0.694868 +vt 0.399762 0.694369 +vt 0.398807 0.729130 +vt 0.399578 0.723207 +vt 0.397356 0.737737 +vt 0.398006 0.734551 +vt 0.388610 0.763053 +vt 0.387854 0.764405 +vt 0.390199 0.758658 +vt 0.389071 0.760811 +vt 0.392065 0.755442 +vt 0.391240 0.757108 +vt 0.388535 0.761836 +vt 0.392676 0.753262 +vt 0.393258 0.751274 +vt 0.393899 0.748576 +vt 0.375135 0.785375 +vt 0.378238 0.781367 +vt 0.380155 0.780168 +vt 0.382213 0.777329 +vt 0.381532 0.777766 +vt 0.384159 0.774891 +vt 0.383633 0.774275 +vt 0.387476 0.768284 +vt 0.395833 0.744742 +vt 0.371079 0.785877 +vt 0.363909 0.793574 +vt 0.366756 0.789349 +vt 0.367530 0.788478 +vt 0.351467 0.782291 +vt 0.350109 0.785990 +vt 0.348885 0.789434 +vt 0.349319 0.790019 +vt 0.347873 0.792095 +vt 0.350813 0.784285 +vt 0.347247 0.800000 +vt 0.349555 0.784727 +vt 0.342958 0.782892 +vt 0.343552 0.784791 +vt 0.345304 0.779100 +vt 0.342798 0.786543 +vt 0.343605 0.790314 +vt 0.345092 0.777317 +vt 0.344228 0.778673 +vt 0.342922 0.780341 +vt 0.337726 0.751266 +vt 0.336727 0.751415 +vt 0.351499 0.700268 +vt 0.343742 0.713367 +vt 0.340377 0.784707 +vt 0.363953 0.676695 +vt 0.391614 0.678805 +vt 0.393596 0.677494 +vt 0.371058 0.671141 +vt 0.372457 0.671665 +vt 0.367537 0.674579 +vt 0.373686 0.670693 +vt 0.401249 0.716751 +vt 0.401390 0.700968 +vt 0.399495 0.704690 +vt 0.398808 0.711589 +vt 0.388100 0.763810 +vt 0.387900 0.765340 +vt 0.390658 0.758610 +vt 0.389422 0.761533 +vt 0.388913 0.761557 +vt 0.393955 0.749616 +vt 0.394733 0.748076 +vt 0.377264 0.783634 +vt 0.378943 0.781491 +vt 0.381287 0.779029 +vt 0.382956 0.777113 +vt 0.383553 0.775397 +vt 0.386331 0.772636 +vt 0.384955 0.773865 +vt 0.387382 0.770150 +vt 0.384827 0.774830 +vt 0.388192 0.766882 +vt 0.397021 0.742317 +vt 0.396594 0.744221 +vt 0.396191 0.745924 +vt 0.397742 0.739973 +vt 0.371147 0.787774 +vt 0.369868 0.786753 +vt 0.366906 0.791078 +vt 0.368385 0.787733 +vt 0.369125 0.786483 +vt 0.349707 0.787144 +vt 0.348175 0.790485 +vt 0.347513 0.793491 +vt 0.350002 0.804690 +vt 0.348655 0.802991 +vt 0.346454 0.796040 +vt 0.348162 0.786613 +vt 0.350517 0.783316 +vt 0.344268 0.780615 +vt 0.342481 0.785742 +vt 0.341882 0.788845 +vt 0.345915 0.790118 +vt 0.341210 0.791180 +vt 0.347303 0.703835 +vt 0.343018 0.710520 +vt 0.342546 0.717242 +vt 0.341402 0.783875 +vt 0.340595 0.785866 +vt 0.341780 0.782186 +vt 0.359249 0.680424 +vt 0.361460 0.675210 +vt 0.365467 0.675271 +vt 0.392762 0.677658 +vt 0.393954 0.675224 +vt 0.391416 0.677277 +vt 0.368983 0.670910 +vt 0.373116 0.670767 +vt 0.400166 0.715621 +vt 0.406945 0.689238 +vt 0.399212 0.707347 +vt 0.400384 0.726515 +vt 0.402861 0.718672 +vt 0.399606 0.730359 +vt 0.399162 0.735114 +vt 0.388226 0.764255 +vt 0.390109 0.760741 +vt 0.391658 0.758442 +vt 0.393397 0.753056 +vt 0.394498 0.749628 +vt 0.395497 0.747230 +vt 0.380836 0.780749 +vt 0.379732 0.782136 +vt 0.382353 0.778648 +vt 0.383306 0.777111 +vt 0.381754 0.778041 +vt 0.385464 0.774602 +vt 0.384736 0.776434 +vt 0.388313 0.769160 +vt 0.395783 0.746504 +vt 0.398537 0.737658 +vt 0.370338 0.787698 +vt 0.370294 0.790003 +vt 0.368186 0.789263 +vt 0.349265 0.786509 +vt 0.349120 0.787593 +vt 0.347439 0.790616 +vt 0.347168 0.792720 +vt 0.347234 0.794358 +vt 0.351278 0.806264 +vt 0.345115 0.798323 +vt 0.346820 0.803659 +vt 0.347596 0.787607 +vt 0.340849 0.788645 +vt 0.344371 0.792175 +vt 0.342403 0.793643 +vt 0.344723 0.707124 +vt 0.347870 0.695200 +vt 0.341336 0.712282 +vt 0.354760 0.681877 +vt 0.363386 0.674882 +vt 0.364649 0.674856 +vt 0.352016 0.690472 +vt 0.392217 0.676608 +vt 0.393099 0.675868 +vt 0.391348 0.675571 +vt 0.372403 0.669930 +vt 0.369939 0.667983 +vt 0.367630 0.671123 +vt 0.366434 0.671957 +vt 0.373226 0.668921 +vt 0.399588 0.713695 +vt 0.403592 0.711794 +vt 0.400596 0.706513 +vt 0.406231 0.697142 +vt 0.399659 0.708463 +vt 0.404730 0.712349 +vt 0.400133 0.732098 +vt 0.388577 0.764933 +vt 0.390769 0.761152 +vt 0.389644 0.762852 +vt 0.393102 0.755628 +vt 0.395523 0.748730 +vt 0.378377 0.783568 +vt 0.381437 0.779987 +vt 0.383253 0.778069 +vt 0.382030 0.778366 +vt 0.383995 0.776695 +vt 0.387616 0.771123 +vt 0.397487 0.743531 +vt 0.397667 0.741899 +vt 0.397089 0.745633 +vt 0.395963 0.747126 +vt 0.398626 0.739052 +vt 0.369074 0.790028 +vt 0.369338 0.788226 +vt 0.347930 0.788942 +vt 0.347006 0.791746 +vt 0.346883 0.793394 +vt 0.346975 0.793855 +vt 0.348426 0.807835 +vt 0.347695 0.806178 +vt 0.343667 0.802311 +vt 0.345124 0.796257 +vt 0.346336 0.793960 +vt 0.345750 0.802909 +vt 0.348366 0.787439 +vt 0.342190 0.786836 +vt 0.347018 0.789705 +vt 0.345255 0.791399 +vt 0.344868 0.704530 +vt 0.345114 0.697917 +vt 0.343610 0.708142 +vt 0.340579 0.710482 +vt 0.358397 0.676540 +vt 0.360196 0.673362 +vt 0.362538 0.672273 +vt 0.365432 0.672956 +vt 0.371456 0.668384 +vt 0.368722 0.667911 +vt 0.367928 0.668904 +vt 0.399680 0.710170 +vt 0.402209 0.711787 +vt 0.402780 0.701332 +vt 0.408881 0.691257 +vt 0.401263 0.727555 +vt 0.403003 0.722657 +vt 0.406723 0.712123 +vt 0.400934 0.729557 +vt 0.399453 0.736115 +vt 0.400165 0.733400 +vt 0.388999 0.765796 +vt 0.394094 0.754248 +vt 0.396196 0.749864 +vt 0.381988 0.779451 +vt 0.381684 0.780950 +vt 0.380842 0.782536 +vt 0.382737 0.779218 +vt 0.383593 0.777305 +vt 0.384581 0.778330 +vt 0.398864 0.740644 +vt 0.396572 0.747651 +vt 0.399250 0.738112 +vt 0.346722 0.790725 +vt 0.350110 0.809098 +vt 0.343787 0.798403 +vt 0.344470 0.796960 +vt 0.345251 0.794932 +vt 0.345867 0.806276 +vt 0.345248 0.805078 +vt 0.345186 0.791821 +vt 0.343355 0.793955 +vt 0.344135 0.706508 +vt 0.344692 0.692275 +vt 0.346318 0.681680 +vt 0.341738 0.708224 +vt 0.348468 0.675802 +vt 0.355064 0.675535 +vt 0.361637 0.671631 +vt 0.363781 0.672432 +vt 0.364747 0.671292 +vt 0.392269 0.674436 +vt 0.366996 0.669429 +vt 0.404848 0.708667 +vt 0.404871 0.707555 +vt 0.403173 0.703190 +vt 0.411111 0.689886 +vt 0.409293 0.686715 +vt 0.402038 0.725319 +vt 0.404609 0.718144 +vt 0.406589 0.708236 +vt 0.401527 0.730237 +vt 0.400167 0.734399 +vt 0.400824 0.732201 +vt 0.390646 0.762784 +vt 0.383514 0.779670 +vt 0.383879 0.778275 +vt 0.398889 0.739201 +vt 0.346296 0.791575 +vt 0.346433 0.808271 +vt 0.346744 0.811283 +vt 0.342899 0.799435 +vt 0.344633 0.795772 +vt 0.344974 0.795628 +vt 0.345514 0.793537 +vt 0.344694 0.792734 +vt 0.344155 0.793655 +vt 0.342451 0.794938 +vt 0.344122 0.701997 +vt 0.342934 0.693302 +vt 0.342429 0.705530 +vt 0.338634 0.708427 +vt 0.351210 0.674348 +vt 0.358395 0.672745 +vt 0.361158 0.670662 +vt 0.362686 0.670264 +vt 0.364188 0.670333 +vt 0.367762 0.666800 +vt 0.403864 0.705629 +vt 0.410089 0.694853 +vt 0.411198 0.688163 +vt 0.407733 0.700585 +vt 0.402566 0.726022 +vt 0.402205 0.728078 +vt 0.405016 0.720568 +vt 0.403149 0.724218 +vt 0.408831 0.705584 +vt 0.406465 0.715750 +vt 0.400864 0.734424 +vt 0.399762 0.736426 +vt 0.400646 0.733369 +vt 0.382376 0.780288 +vt 0.381884 0.782507 +vt 0.382950 0.780595 +vt 0.384090 0.780265 +vt 0.345939 0.792663 +vt 0.344304 0.805989 +vt 0.343802 0.796259 +vt 0.342832 0.797431 +vt 0.344830 0.793544 +vt 0.342624 0.810531 +vt 0.345302 0.792627 +vt 0.343601 0.794894 +vt 0.342583 0.795877 +vt 0.341029 0.795976 +vt 0.346321 0.675447 +vt 0.340190 0.704268 +vt 0.350495 0.670351 +vt 0.359781 0.671053 +vt 0.353495 0.670770 +vt 0.356646 0.671404 +vt 0.360597 0.669960 +vt 0.361880 0.669561 +vt 0.406210 0.703847 +vt 0.407639 0.704062 +vt 0.412744 0.691859 +vt 0.413812 0.686570 +vt 0.412188 0.683927 +vt 0.404072 0.722768 +vt 0.405686 0.717989 +vt 0.409364 0.708287 +vt 0.407159 0.713661 +vt 0.401923 0.731067 +vt 0.402491 0.729295 +vt 0.400135 0.737745 +vt 0.401270 0.732682 +vt 0.382432 0.781422 +vt 0.343226 0.811206 +vt 0.341691 0.808607 +vt 0.342159 0.798791 +vt 0.344353 0.794803 +vt 0.341285 0.796717 +vt 0.340382 0.696085 +vt 0.341203 0.688931 +vt 0.347363 0.671289 +vt 0.342674 0.681970 +vt 0.337114 0.705587 +vt 0.348912 0.671045 +vt 0.359390 0.669836 +vt 0.355728 0.670687 +vt 0.361308 0.669111 +vt 0.363603 0.668962 +vt 0.362608 0.668068 +vt 0.411148 0.695817 +vt 0.403412 0.726428 +vt 0.403410 0.725049 +vt 0.404727 0.722351 +vt 0.406109 0.718612 +vt 0.403951 0.723949 +vt 0.410468 0.704777 +vt 0.408186 0.710717 +vt 0.409747 0.700920 +vt 0.406271 0.717302 +vt 0.407939 0.712223 +vt 0.407156 0.714640 +vt 0.403235 0.728193 +vt 0.382838 0.782127 +vt 0.340724 0.812631 +vt 0.340774 0.692391 +vt 0.339688 0.688252 +vt 0.345308 0.671733 +vt 0.342904 0.674687 +vt 0.338968 0.701173 +vt 0.349566 0.668481 +vt 0.352156 0.667868 +vt 0.360088 0.669659 +vt 0.360935 0.667665 +vt 0.361712 0.667823 +vt 0.414938 0.689905 +vt 0.412750 0.695440 +vt 0.414927 0.682648 +vt 0.404402 0.723137 +vt 0.405531 0.721707 +vt 0.406089 0.720102 +vt 0.411314 0.701624 +vt 0.410958 0.705706 +vt 0.408841 0.710582 +vt 0.406824 0.717175 +vt 0.407679 0.713896 +vt 0.407435 0.715529 +vt 0.402150 0.733498 +vt 0.402636 0.730201 +vt 0.382150 0.784175 +vt 0.383079 0.783837 +vt 0.339271 0.693302 +vt 0.339912 0.689602 +vt 0.346766 0.667933 +vt 0.348612 0.669202 +vt 0.339317 0.684283 +vt 0.336410 0.700173 +vt 0.350851 0.667386 +vt 0.359996 0.668939 +vt 0.414605 0.692725 +vt 0.415828 0.685080 +vt 0.411277 0.699515 +vt 0.404310 0.726447 +vt 0.404002 0.724965 +vt 0.404816 0.723809 +vt 0.407248 0.718135 +vt 0.411920 0.703601 +vt 0.410359 0.708414 +vt 0.409568 0.709779 +vt 0.408453 0.713217 +vt 0.404074 0.728939 +vt 0.336117 0.694410 +vt 0.337455 0.690186 +vt 0.348047 0.668208 +vt 0.345366 0.669035 +vt 0.344362 0.669432 +vt 0.340010 0.674044 +vt 0.334335 0.705325 +vt 0.348887 0.667392 +vt 0.349635 0.665722 +vt 0.351993 0.665496 +vt 0.416273 0.690713 +vt 0.416634 0.687777 +vt 0.412102 0.699296 +vt 0.414375 0.695938 +vt 0.416668 0.682304 +vt 0.405954 0.722260 +vt 0.406476 0.721279 +vt 0.406806 0.720020 +vt 0.412989 0.701358 +vt 0.411814 0.705022 +vt 0.411463 0.706150 +vt 0.409393 0.711086 +vt 0.408752 0.711853 +vt 0.407384 0.716722 +vt 0.408272 0.714409 +vt 0.348231 0.665517 +vt 0.345374 0.666607 +vt 0.342667 0.670490 +vt 0.335915 0.688674 +vt 0.333956 0.700446 +vt 0.350824 0.663969 +vt 0.416276 0.693283 +vt 0.418444 0.684094 +vt 0.417752 0.682152 +vt 0.416333 0.681623 +vt 0.405169 0.725945 +vt 0.406137 0.724967 +vt 0.413292 0.699086 +vt 0.413396 0.703290 +vt 0.412484 0.704536 +vt 0.411864 0.706419 +vt 0.410615 0.709643 +vt 0.408007 0.716623 +vt 0.409512 0.712089 +vt 0.409057 0.713890 +vt 0.334002 0.698044 +vt 0.346575 0.663901 +vt 0.344017 0.668469 +vt 0.335873 0.680002 +vt 0.341827 0.669046 +vt 0.331843 0.703091 +vt 0.348962 0.663724 +vt 0.352050 0.663295 +vt 0.417525 0.691307 +vt 0.417663 0.689222 +vt 0.418724 0.686889 +vt 0.416255 0.695232 +vt 0.417430 0.681430 +vt 0.417036 0.681035 +vt 0.416192 0.680530 +vt 0.408554 0.719249 +vt 0.413779 0.700125 +vt 0.414228 0.701152 +vt 0.334377 0.688637 +vt 0.345671 0.664431 +vt 0.343259 0.666212 +vt 0.343376 0.668669 +vt 0.339095 0.670548 +vt 0.342993 0.668341 +vt 0.330409 0.709921 +vt 0.351156 0.662003 +vt 0.417488 0.692926 +vt 0.420454 0.684017 +vt 0.418721 0.682022 +vt 0.414780 0.697854 +vt 0.417216 0.694276 +vt 0.415876 0.696924 +vt 0.417734 0.680343 +vt 0.414542 0.699361 +vt 0.413692 0.704899 +vt 0.414540 0.702640 +vt 0.411818 0.708712 +vt 0.410709 0.710802 +vt 0.410238 0.713446 +vt 0.330519 0.691343 +vt 0.344813 0.664454 +vt 0.345322 0.662923 +vt 0.343498 0.667839 +vt 0.332687 0.681571 +vt 0.335572 0.677236 +vt 0.341362 0.666527 +vt 0.329938 0.706878 +vt 0.331141 0.698710 +vt 0.351800 0.661581 +vt 0.419081 0.689685 +vt 0.418255 0.692043 +vt 0.419541 0.683320 +vt 0.419930 0.686845 +vt 0.418808 0.680170 +vt 0.419579 0.681957 +vt 0.417239 0.695879 +vt 0.415034 0.701939 +vt 0.411332 0.710733 +vt 0.331612 0.681347 +vt 0.345710 0.661886 +vt 0.343756 0.662344 +vt 0.333042 0.677939 +vt 0.335553 0.673128 +vt 0.339337 0.667143 +vt 0.328537 0.708616 +vt 0.330238 0.702564 +vt 0.417865 0.694264 +vt 0.420569 0.686082 +vt 0.415520 0.698471 +vt 0.416655 0.698534 +vt 0.415397 0.700081 +vt 0.325967 0.685633 +vt 0.329601 0.696051 +vt 0.344700 0.661036 +vt 0.341967 0.663551 +vt 0.334107 0.674446 +vt 0.338031 0.666621 +vt 0.342220 0.665426 +vt 0.340576 0.664863 +vt 0.329170 0.704335 +vt 0.328978 0.700304 +vt 0.419025 0.692606 +vt 0.420669 0.687696 +vt 0.420664 0.680818 +vt 0.421079 0.685846 +vt 0.419926 0.679513 +vt 0.418346 0.694705 +vt 0.326623 0.679383 +vt 0.325434 0.689993 +vt 0.326293 0.697903 +vt 0.342203 0.661746 +vt 0.328973 0.675761 +vt 0.335795 0.667898 +vt 0.331593 0.671289 +vt 0.339080 0.664367 +vt 0.327755 0.706033 +vt 0.328528 0.703236 +vt 0.421431 0.681344 +vt 0.421462 0.684441 +vt 0.323844 0.682101 +vt 0.323460 0.686077 +vt 0.343591 0.660400 +vt 0.343388 0.661063 +vt 0.341214 0.660904 +vt 0.336864 0.664580 +vt 0.340465 0.662674 +vt 0.337845 0.665019 +vt 0.327207 0.702935 +vt 0.421994 0.682523 +vt 0.421521 0.679281 +vt 0.420694 0.678783 +vt 0.421433 0.686700 +vt 0.325410 0.677859 +vt 0.326871 0.675044 +vt 0.321622 0.689987 +vt 0.322270 0.695649 +vt 0.342811 0.660397 +vt 0.333943 0.667715 +vt 0.335919 0.664982 +vt 0.339201 0.661814 +vt 0.337892 0.662657 +vt 0.422278 0.679999 +vt 0.422073 0.684250 +vt 0.323280 0.674610 +vt 0.322783 0.681775 +vt 0.320235 0.687286 +vt 0.340059 0.660373 +vt 0.329374 0.669192 +vt 0.334772 0.664764 +vt 0.333055 0.665385 +vt 0.335926 0.662630 +vt 0.423044 0.680935 +vt 0.422864 0.683078 +vt 0.325078 0.673862 +vt 0.320507 0.678246 +vt 0.320892 0.683686 +vt 0.318896 0.696561 +vt 0.318613 0.691075 +vt 0.325443 0.669966 +vt 0.336890 0.662137 +vt 0.339148 0.659332 +vt 0.319230 0.671459 +vt 0.318093 0.704855 +vt 0.319008 0.683966 +vt 0.327877 0.666786 +vt 0.330159 0.664815 +vt 0.333724 0.663499 +vt 0.334603 0.660980 +vt 0.322751 0.668198 +vt 0.317879 0.702292 +vt 0.317407 0.695269 +vt 0.326071 0.667223 +vt 0.332025 0.664272 +vt 0.332985 0.663907 +vt 0.324991 0.664670 +vt 0.317248 0.699050 +vt 0.316966 0.704809 +vt 0.316414 0.692493 +vt 0.328105 0.663210 +vt 0.332917 0.661929 +vt 0.317015 0.701533 +vt 0.316284 0.697881 +vt 0.315943 0.695322 +vt 0.316052 0.700365 +vt 0.316060 0.702878 +vt 0.315225 0.700330 +vt 0.563625 0.472723 +vt 0.563109 0.474626 +vt 0.562511 0.472416 +vt 0.563841 0.466029 +vt 0.562358 0.474856 +vt 0.562672 0.470211 +vt 0.562393 0.477186 +vt 0.561772 0.473179 +vt 0.561964 0.471466 +vt 0.561844 0.468843 +vt 0.561668 0.476354 +vt 0.561669 0.474782 +vt 0.563695 0.462661 +vt 0.562705 0.465057 +vt 0.561193 0.473838 +vt 0.560977 0.472287 +vt 0.561246 0.470379 +vt 0.561245 0.468491 +vt 0.561123 0.474732 +vt 0.560857 0.462547 +vt 0.560958 0.475801 +vt 0.560369 0.474097 +vt 0.560439 0.470783 +vt 0.560772 0.470130 +vt 0.560442 0.466427 +vt 0.559867 0.471986 +vt 0.560723 0.468825 +vt 0.559429 0.459141 +vt 0.560195 0.464041 +vt 0.560192 0.475581 +vt 0.559074 0.472934 +vt 0.559642 0.470555 +vt 0.560067 0.469592 +vt 0.559494 0.461677 +vt 0.559905 0.467898 +vt 0.559401 0.465997 +vt 0.559896 0.474756 +vt 0.558755 0.470890 +vt 0.557363 0.458409 +vt 0.556312 0.454808 +vt 0.559031 0.464116 +vt 0.559364 0.475143 +vt 0.557673 0.471652 +vt 0.559143 0.469235 +vt 0.557937 0.461633 +vt 0.558762 0.467270 +vt 0.558541 0.465149 +vt 0.559544 0.476500 +vt 0.557651 0.469859 +vt 0.558168 0.469224 +vt 0.555954 0.456915 +vt 0.556600 0.460940 +vt 0.553979 0.449740 +vt 0.557875 0.463218 +vt 0.558699 0.476039 +vt 0.556884 0.472981 +vt 0.557007 0.469977 +vt 0.558112 0.468163 +vt 0.556640 0.459556 +vt 0.554386 0.454227 +vt 0.556824 0.462470 +vt 0.554830 0.453129 +vt 0.557943 0.465801 +vt 0.557419 0.464131 +vt 0.557989 0.475271 +vt 0.558579 0.477453 +vt 0.556637 0.471069 +vt 0.556769 0.469059 +vt 0.557338 0.468348 +vt 0.558001 0.467359 +vt 0.555382 0.458298 +vt 0.556083 0.461987 +vt 0.555754 0.460811 +vt 0.557760 0.476523 +vt 0.555985 0.472959 +vt 0.555762 0.470908 +vt 0.556141 0.469139 +vt 0.554954 0.458737 +vt 0.555611 0.462495 +vt 0.553303 0.451495 +vt 0.552597 0.445871 +vt 0.557058 0.465164 +vt 0.556954 0.466450 +vt 0.556406 0.463859 +vt 0.556560 0.477064 +vt 0.557625 0.478041 +vt 0.556009 0.476011 +vt 0.554649 0.468566 +vt 0.556520 0.467549 +vt 0.555957 0.467857 +vt 0.555147 0.467763 +vt 0.555106 0.460029 +vt 0.553602 0.456104 +vt 0.552475 0.450807 +vt 0.552945 0.452848 +vt 0.552048 0.448926 +vt 0.556994 0.477740 +vt 0.554506 0.473544 +vt 0.554106 0.470449 +vt 0.554802 0.461211 +vt 0.554254 0.459651 +vt 0.553634 0.458161 +vt 0.555282 0.463163 +vt 0.550509 0.444399 +vt 0.556292 0.465109 +vt 0.556777 0.465641 +vt 0.556257 0.478689 +vt 0.555353 0.477475 +vt 0.557038 0.478876 +vt 0.555011 0.475344 +vt 0.554445 0.467306 +vt 0.552013 0.466728 +vt 0.555673 0.466089 +vt 0.554814 0.465859 +vt 0.553005 0.456005 +vt 0.552753 0.457332 +vt 0.554603 0.462674 +vt 0.552052 0.452110 +vt 0.551780 0.450832 +vt 0.550775 0.448513 +vt 0.549548 0.444508 +vt 0.551808 0.470051 +vt 0.553928 0.476299 +vt 0.554271 0.466166 +vt 0.553710 0.461099 +vt 0.553143 0.459291 +vt 0.552351 0.454115 +vt 0.554770 0.463865 +vt 0.555267 0.464777 +vt 0.551402 0.449655 +vt 0.549886 0.447346 +vt 0.555234 0.479082 +vt 0.552599 0.474075 +vt 0.551831 0.465654 +vt 0.550423 0.468515 +vt 0.554570 0.464468 +vt 0.552624 0.463239 +vt 0.552362 0.455862 +vt 0.551908 0.458336 +vt 0.553444 0.462037 +vt 0.553951 0.463244 +vt 0.551378 0.453040 +vt 0.551504 0.451829 +vt 0.551217 0.451067 +vt 0.550670 0.450244 +vt 0.549877 0.449448 +vt 0.548492 0.443438 +vt 0.548750 0.446625 +vt 0.554521 0.478446 +vt 0.555257 0.480590 +vt 0.554269 0.477315 +vt 0.550803 0.472589 +vt 0.551796 0.475137 +vt 0.549767 0.466752 +vt 0.549996 0.470581 +vt 0.553074 0.461230 +vt 0.551753 0.456615 +vt 0.551454 0.455007 +vt 0.554045 0.479835 +vt 0.553368 0.477216 +vt 0.551786 0.476842 +vt 0.548851 0.464920 +vt 0.551249 0.462269 +vt 0.547971 0.468318 +vt 0.553154 0.462675 +vt 0.552517 0.460826 +vt 0.551079 0.456854 +vt 0.550296 0.453181 +vt 0.551119 0.452019 +vt 0.550664 0.451500 +vt 0.549973 0.451026 +vt 0.548228 0.443605 +vt 0.553020 0.478607 +vt 0.552890 0.482323 +vt 0.549688 0.472971 +vt 0.551529 0.476001 +vt 0.547820 0.465528 +vt 0.550106 0.464646 +vt 0.549928 0.462169 +vt 0.549989 0.459756 +vt 0.547734 0.469524 +vt 0.551852 0.461239 +vt 0.550664 0.455100 +vt 0.551031 0.458244 +vt 0.550819 0.457271 +vt 0.550555 0.452406 +vt 0.549071 0.450467 +vt 0.552667 0.479999 +vt 0.552089 0.478360 +vt 0.546721 0.462754 +vt 0.548964 0.460047 +vt 0.546562 0.467622 +vt 0.550546 0.459132 +vt 0.550102 0.455272 +vt 0.549256 0.452190 +vt 0.551448 0.482150 +vt 0.551096 0.478379 +vt 0.547490 0.471221 +vt 0.549689 0.475190 +vt 0.545199 0.461906 +vt 0.548051 0.460985 +vt 0.548174 0.458200 +vt 0.545980 0.465427 +vt 0.546100 0.469307 +vt 0.549205 0.457401 +vt 0.549581 0.455639 +vt 0.548640 0.452639 +vt 0.548216 0.450792 +vt 0.551420 0.480089 +vt 0.550472 0.485194 +vt 0.550650 0.477338 +vt 0.551523 0.478776 +vt 0.548287 0.474050 +vt 0.545524 0.458893 +vt 0.548035 0.459371 +vt 0.548094 0.456697 +vt 0.545779 0.466857 +vt 0.548316 0.455051 +vt 0.548825 0.453782 +vt 0.547841 0.449915 +vt 0.549378 0.482890 +vt 0.550364 0.478518 +vt 0.551286 0.479246 +vt 0.546092 0.472007 +vt 0.549088 0.475961 +vt 0.549819 0.477934 +vt 0.543925 0.459733 +vt 0.546900 0.460099 +vt 0.543696 0.461984 +vt 0.546637 0.457681 +vt 0.547118 0.456337 +vt 0.544951 0.465209 +vt 0.545185 0.467828 +vt 0.547938 0.455917 +vt 0.547296 0.451118 +vt 0.547443 0.450908 +vt 0.547051 0.449829 +vt 0.550272 0.480407 +vt 0.548524 0.487774 +vt 0.550902 0.479240 +vt 0.546546 0.477306 +vt 0.544914 0.471920 +vt 0.548856 0.477402 +vt 0.544562 0.457243 +vt 0.541880 0.458926 +vt 0.545786 0.458039 +vt 0.542048 0.465654 +vt 0.543077 0.466680 +vt 0.547331 0.454577 +vt 0.547115 0.452565 +vt 0.547310 0.449341 +vt 0.551053 0.479725 +vt 0.549144 0.482019 +vt 0.546668 0.485511 +vt 0.549360 0.479079 +vt 0.546954 0.478944 +vt 0.544406 0.475475 +vt 0.542370 0.467613 +vt 0.543379 0.456773 +vt 0.540299 0.453937 +vt 0.541900 0.461499 +vt 0.545504 0.456980 +vt 0.546925 0.454978 +vt 0.546769 0.453518 +vt 0.545858 0.450703 +vt 0.546286 0.448782 +vt 0.547984 0.482944 +vt 0.548774 0.480791 +vt 0.545511 0.488484 +vt 0.546511 0.479281 +vt 0.543272 0.471781 +vt 0.548488 0.479697 +vt 0.543518 0.455495 +vt 0.540307 0.457978 +vt 0.546491 0.454125 +vt 0.545882 0.452039 +vt 0.545613 0.448636 +vt 0.545384 0.449475 +vt 0.546497 0.483629 +vt 0.546098 0.490392 +vt 0.544719 0.486474 +vt 0.547098 0.480485 +vt 0.545131 0.478242 +vt 0.543385 0.475933 +vt 0.541523 0.470982 +vt 0.548336 0.480155 +vt 0.542835 0.453988 +vt 0.544383 0.456060 +vt 0.539567 0.455821 +vt 0.544975 0.455596 +vt 0.540539 0.465714 +vt 0.545258 0.453159 +vt 0.545381 0.450558 +vt 0.545198 0.447623 +vt 0.547878 0.481407 +vt 0.546997 0.482056 +vt 0.544114 0.490993 +vt 0.544480 0.493483 +vt 0.545803 0.479514 +vt 0.544347 0.477597 +vt 0.540903 0.468757 +vt 0.543617 0.454750 +vt 0.543935 0.455245 +vt 0.542260 0.452826 +vt 0.539660 0.453566 +vt 0.544791 0.454394 +vt 0.541170 0.467037 +vt 0.543016 0.445325 +vt 0.544164 0.449315 +vt 0.545670 0.447947 +vt 0.544124 0.446257 +vt 0.545827 0.482906 +vt 0.542410 0.490916 +vt 0.546192 0.481151 +vt 0.545024 0.479241 +vt 0.543655 0.478027 +vt 0.540272 0.470247 +vt 0.543644 0.453435 +vt 0.541203 0.451331 +vt 0.539518 0.452579 +vt 0.538881 0.454756 +vt 0.544159 0.454842 +vt 0.539868 0.468083 +vt 0.543780 0.451579 +vt 0.543899 0.447954 +vt 0.544964 0.446922 +vt 0.544346 0.482772 +vt 0.542404 0.494061 +vt 0.542732 0.487891 +vt 0.545295 0.480713 +vt 0.544315 0.479012 +vt 0.542534 0.477491 +vt 0.539737 0.469111 +vt 0.542434 0.451877 +vt 0.539262 0.453783 +vt 0.537920 0.454941 +vt 0.538863 0.467892 +vt 0.543327 0.444313 +vt 0.541804 0.444430 +vt 0.541665 0.448454 +vt 0.545477 0.446870 +vt 0.544365 0.445593 +vt 0.543249 0.485659 +vt 0.541647 0.492035 +vt 0.544820 0.479781 +vt 0.545132 0.479903 +vt 0.543571 0.479335 +vt 0.539639 0.471398 +vt 0.538869 0.451126 +vt 0.538357 0.452550 +vt 0.538467 0.454324 +vt 0.542206 0.444350 +vt 0.542266 0.446543 +vt 0.543545 0.483659 +vt 0.544723 0.480694 +vt 0.540197 0.491962 +vt 0.543909 0.480235 +vt 0.545075 0.480174 +vt 0.542833 0.479652 +vt 0.540521 0.476921 +vt 0.538891 0.469622 +vt 0.540559 0.448347 +vt 0.539199 0.449733 +vt 0.537157 0.452335 +vt 0.543964 0.444268 +vt 0.541096 0.442697 +vt 0.541038 0.445848 +vt 0.545106 0.445021 +vt 0.541603 0.485733 +vt 0.543347 0.482387 +vt 0.544083 0.481186 +vt 0.543291 0.480506 +vt 0.542098 0.479397 +vt 0.538031 0.473573 +vt 0.537824 0.470850 +vt 0.540264 0.447155 +vt 0.537590 0.450480 +vt 0.537925 0.468726 +vt 0.543008 0.443440 +vt 0.540906 0.441968 +vt 0.539713 0.443620 +vt 0.542218 0.483475 +vt 0.540202 0.487534 +vt 0.543500 0.481225 +vt 0.542493 0.481243 +vt 0.541269 0.479659 +vt 0.538436 0.477147 +vt 0.535818 0.447737 +vt 0.536890 0.444706 +vt 0.542245 0.442097 +vt 0.542970 0.442610 +vt 0.544621 0.444212 +vt 0.539758 0.441386 +vt 0.541075 0.484437 +vt 0.538151 0.490950 +vt 0.540139 0.479352 +vt 0.536797 0.472170 +vt 0.536886 0.468659 +vt 0.535762 0.444863 +vt 0.538405 0.444606 +vt 0.535865 0.450782 +vt 0.544389 0.443372 +vt 0.540754 0.441084 +vt 0.539897 0.440859 +vt 0.538621 0.442006 +vt 0.541739 0.482614 +vt 0.539833 0.485789 +vt 0.541552 0.481278 +vt 0.540638 0.481099 +vt 0.537427 0.477966 +vt 0.536782 0.476512 +vt 0.536565 0.470122 +vt 0.532663 0.445709 +vt 0.536572 0.441596 +vt 0.533305 0.440151 +vt 0.542725 0.441850 +vt 0.543712 0.442523 +vt 0.540853 0.440232 +vt 0.538262 0.439398 +vt 0.538326 0.440681 +vt 0.541145 0.482565 +vt 0.538847 0.485899 +vt 0.540461 0.483307 +vt 0.539519 0.480877 +vt 0.539120 0.479800 +vt 0.535697 0.475924 +vt 0.535419 0.470739 +vt 0.535036 0.439827 +vt 0.537567 0.441332 +vt 0.543192 0.442238 +vt 0.544070 0.441796 +vt 0.539396 0.439519 +vt 0.539675 0.483929 +vt 0.537064 0.487791 +vt 0.539923 0.482046 +vt 0.537953 0.479481 +vt 0.537146 0.478241 +vt 0.536513 0.477894 +vt 0.535403 0.471631 +vt 0.535221 0.469135 +vt 0.535849 0.439405 +vt 0.543443 0.441412 +vt 0.539233 0.437778 +vt 0.538437 0.438265 +vt 0.537640 0.439487 +vt 0.536991 0.439923 +vt 0.539140 0.484168 +vt 0.538326 0.484467 +vt 0.539108 0.482607 +vt 0.538469 0.480339 +vt 0.536362 0.478372 +vt 0.534996 0.472009 +vt 0.534446 0.469981 +vt 0.533479 0.435737 +vt 0.537246 0.437486 +vt 0.536981 0.484721 +vt 0.538609 0.481189 +vt 0.537820 0.480421 +vt 0.536789 0.478821 +vt 0.535277 0.477888 +vt 0.534559 0.475747 +vt 0.533415 0.468595 +vt 0.534260 0.434984 +vt 0.536498 0.438278 +vt 0.537822 0.436874 +vt 0.537951 0.482227 +vt 0.536113 0.479501 +vt 0.536921 0.479733 +vt 0.533570 0.470882 +vt 0.534078 0.470204 +vt 0.532477 0.432946 +vt 0.536480 0.434479 +vt 0.535629 0.434902 +vt 0.536809 0.482003 +vt 0.533987 0.479730 +vt 0.533179 0.478675 +vt 0.532486 0.471582 +vt 0.532972 0.469129 +vt 0.533251 0.433131 +vt 0.536843 0.480887 +vt 0.536141 0.483422 +vt 0.536168 0.480552 +vt 0.532376 0.470059 +vt 0.531777 0.468029 +vt 0.534364 0.433522 +vt 0.533424 0.431760 +vt 0.535833 0.481666 +vt 0.532646 0.479805 +vt 0.534851 0.481042 +vt 0.530935 0.473358 +vt 0.530821 0.469435 +vt 0.535288 0.482663 +vt 0.534522 0.482137 +vt 0.531397 0.477944 +vt 0.530409 0.470990 +vt 0.535419 0.484336 +vt 0.532889 0.481575 +vt 0.531536 0.480729 +vt 0.527585 0.473492 +vt 0.529326 0.471361 +vt 0.529860 0.470294 +vt 0.534606 0.483526 +vt 0.533728 0.483020 +vt 0.530727 0.481906 +vt 0.528791 0.478831 +vt 0.528986 0.469954 +vt 0.533110 0.482777 +vt 0.532381 0.482498 +vt 0.529528 0.481401 +vt 0.531537 0.482736 +vt 0.526794 0.479034 +vt 0.526398 0.471892 +vt 0.533853 0.484833 +vt 0.533380 0.483312 +vt 0.530281 0.482989 +vt 0.530935 0.483227 +vt 0.528529 0.482800 +vt 0.523561 0.475660 +vt 0.533460 0.483949 +vt 0.532895 0.483650 +vt 0.532151 0.483576 +vt 0.529483 0.482982 +vt 0.531454 0.484430 +vt 0.527491 0.483697 +vt 0.526005 0.483130 +vt 0.524783 0.472747 +vt 0.532968 0.484983 +vt 0.530051 0.484462 +vt 0.530681 0.484099 +vt 0.528857 0.483415 +vt 0.528307 0.484846 +vt 0.523496 0.479680 +vt 0.523965 0.473593 +vt 0.532780 0.487005 +vt 0.532337 0.484519 +vt 0.529221 0.485028 +vt 0.530693 0.485473 +vt 0.527498 0.484617 +vt 0.525884 0.484362 +vt 0.523375 0.483089 +vt 0.521198 0.476032 +vt 0.522445 0.471750 +vt 0.522500 0.473176 +vt 0.531983 0.485773 +vt 0.529837 0.486434 +vt 0.531255 0.485850 +vt 0.527377 0.486286 +vt 0.524736 0.484023 +vt 0.520868 0.473342 +vt 0.530895 0.487557 +vt 0.528981 0.487051 +vt 0.528580 0.486373 +vt 0.526371 0.485738 +vt 0.528007 0.486728 +vt 0.524976 0.485543 +vt 0.522179 0.484900 +vt 0.523724 0.485170 +vt 0.518887 0.473383 +vt 0.529027 0.489396 +vt 0.526261 0.487087 +vt 0.526964 0.488129 +vt 0.520693 0.479070 +vt 0.527940 0.488497 +vt 0.526835 0.487626 +vt 0.524822 0.487903 +vt 0.524271 0.486397 +vt 0.523550 0.486580 +vt 0.520770 0.483511 +vt 0.518036 0.478339 +vt 0.526456 0.491452 +vt 0.526106 0.488516 +vt 0.525644 0.488225 +vt 0.522509 0.486547 +vt 0.519092 0.482478 +vt 0.521356 0.486650 +vt 0.525122 0.489554 +vt 0.524304 0.493275 +vt 0.523719 0.487916 +vt 0.521867 0.486484 +vt 0.523306 0.487402 +vt 0.520261 0.485936 +vt 0.516036 0.484429 +vt 0.523643 0.491154 +vt 0.523501 0.489595 +vt 0.522110 0.487526 +vt 0.522655 0.487771 +vt 0.519196 0.485440 +vt 0.520805 0.487162 +vt 0.521792 0.487332 +vt 0.518298 0.484944 +vt 0.523080 0.488497 +vt 0.523420 0.487949 +vt 0.520040 0.486952 +vt 0.521607 0.487755 +vt 0.517564 0.486738 +vt 0.521233 0.502243 +vt 0.520499 0.494459 +vt 0.521797 0.491039 +vt 0.522042 0.488976 +vt 0.519411 0.487571 +vt 0.518444 0.486803 +vt 0.520982 0.488630 +vt 0.520405 0.487898 +vt 0.520020 0.487817 +vt 0.518059 0.488069 +vt 0.518846 0.490041 +vt 0.519917 0.488952 +vt 0.518508 0.488629 +vt 0.094131 0.113758 +vt 0.093477 0.117443 +vt 0.093839 0.115047 +vt 0.094448 0.111919 +vt 0.093264 0.114216 +vt 0.093746 0.112466 +vt 0.093474 0.115796 +vt 0.092938 0.119159 +vt 0.093792 0.110454 +vt 0.094717 0.110006 +vt 0.092727 0.117901 +vt 0.092895 0.116273 +vt 0.093087 0.110499 +vt 0.092506 0.121007 +vt 0.092166 0.119397 +vt 0.092350 0.114631 +vt 0.094034 0.106207 +vt 0.094843 0.107044 +vt 0.092176 0.117354 +vt 0.091544 0.110124 +vt 0.092084 0.105101 +vt 0.091885 0.121291 +vt 0.092630 0.122141 +vt 0.091479 0.118743 +vt 0.091301 0.113745 +vt 0.090762 0.117858 +vt 0.095142 0.104811 +vt 0.091927 0.122637 +vt 0.091441 0.120605 +vt 0.092325 0.122138 +vt 0.088398 0.108049 +vt 0.089917 0.115888 +vt 0.092276 0.124669 +vt 0.092391 0.122946 +vt 0.090857 0.123139 +vt 0.090648 0.120221 +vt 0.088856 0.112729 +vt 0.091353 0.124615 +vt 0.089520 0.120794 +vt 0.087522 0.110457 +vt 0.088413 0.116019 +vt 0.089232 0.118636 +vt 0.092240 0.128674 +vt 0.092130 0.126857 +vt 0.090718 0.125488 +vt 0.090037 0.122318 +vt 0.086623 0.108252 +vt 0.087548 0.113123 +vt 0.087508 0.115449 +vt 0.091506 0.126190 +vt 0.091599 0.130394 +vt 0.090112 0.124501 +vt 0.090694 0.127584 +vt 0.089274 0.122663 +vt 0.088225 0.121544 +vt 0.086200 0.110822 +vt 0.086499 0.112531 +vt 0.088069 0.119168 +vt 0.086685 0.118521 +vt 0.091362 0.128316 +vt 0.089717 0.127556 +vt 0.089350 0.123862 +vt 0.088914 0.121841 +vt 0.085581 0.109761 +vt 0.084781 0.120007 +vt 0.085640 0.116687 +vt 0.087196 0.119621 +vt 0.091361 0.131773 +vt 0.090858 0.130406 +vt 0.089240 0.124889 +vt 0.089982 0.131524 +vt 0.088831 0.123979 +vt 0.088546 0.122695 +vt 0.087168 0.121206 +vt 0.085208 0.111996 +vt 0.085998 0.119918 +vt 0.086545 0.120808 +vt 0.090996 0.133299 +vt 0.088648 0.127816 +vt 0.088251 0.122342 +vt 0.086952 0.123160 +vt 0.086960 0.120599 +vt 0.085334 0.121460 +vt 0.086399 0.119780 +vt 0.088383 0.125979 +vt 0.088215 0.124008 +vt 0.087572 0.123199 +vt 0.085913 0.121458 +vt 0.087384 0.126502 +vt 0.087862 0.123854 +vt 0.087626 0.123843 +vt 0.085815 0.123452 +vt 0.087740 0.124776 +vt 0.086347 0.126555 +vt 0.097389 0.093496 +vt 0.097141 0.091676 +vt 0.096433 0.093510 +vt 0.097684 0.087629 +vt 0.096933 0.089616 +vt 0.096070 0.091477 +vt 0.096520 0.087577 +vt 0.097684 0.084967 +vt 0.098110 0.083908 +vt 0.096093 0.082627 +vt 0.097897 0.081983 +vt 0.098502 0.080376 +vt 0.098521 0.078160 +vt 0.096982 0.079900 +vt 0.097820 0.079815 +vt 0.096365 0.077715 +vt 0.098656 0.075432 +vt 0.097772 0.076886 +vt 0.094126 0.082016 +vt 0.099238 0.074017 +vt 0.094368 0.075747 +vt 0.095578 0.073133 +vt 0.099518 0.073912 +vt 0.098918 0.074227 +vt 0.097662 0.073908 +vt 0.096536 0.073385 +vt 0.099131 0.071608 +vt 0.095528 0.070770 +vt 0.099623 0.071492 +vt 0.098214 0.071582 +vt 0.097099 0.071595 +vt 0.098789 0.069674 +vt 0.096450 0.069573 +vt 0.099586 0.069334 +vt 0.097802 0.069420 +vt 0.096992 0.069058 +vt 0.098404 0.068541 +vt 0.099066 0.068259 +vt 0.096652 0.068760 +vt 0.097793 0.067719 +vt 0.098729 0.068374 +vt 0.099688 0.068118 +vt 0.097203 0.068030 +vt 0.096401 0.068308 +vt 0.098500 0.067779 +vt 0.099521 0.067371 +vt 0.097035 0.066984 +vt 0.098096 0.067014 +vt 0.098870 0.067102 +vt 0.097372 0.066673 +vt 0.098936 0.066212 +vt 0.096660 0.066211 +vt 0.098359 0.066587 +vt 0.097597 0.066366 +vt 0.098252 0.066046 +vt 0.082216 0.205674 +vt 0.082140 0.203358 +vt 0.081109 0.209026 +vt 0.081118 0.204923 +vt 0.081206 0.202507 +vt 0.080835 0.211340 +vt 0.080632 0.207033 +vt 0.080656 0.203075 +vt 0.080746 0.213637 +vt 0.080485 0.216069 +vt 0.080273 0.209537 +vt 0.080431 0.208174 +vt 0.080421 0.205621 +vt 0.080780 0.201919 +vt 0.080392 0.204394 +vt 0.080462 0.217901 +vt 0.080054 0.212995 +vt 0.080064 0.211136 +vt 0.080274 0.207601 +vt 0.080151 0.206478 +vt 0.080834 0.200779 +vt 0.080524 0.202059 +vt 0.080249 0.203491 +vt 0.079775 0.215273 +vt 0.079988 0.216970 +vt 0.080041 0.208127 +vt 0.079673 0.210338 +vt 0.079712 0.205316 +vt 0.080584 0.201437 +vt 0.080181 0.202519 +vt 0.080071 0.204144 +vt 0.080080 0.218190 +vt 0.079426 0.211660 +vt 0.078850 0.213957 +vt 0.079301 0.209055 +vt 0.079762 0.207199 +vt 0.080385 0.201117 +vt 0.080336 0.201661 +vt 0.079818 0.203506 +vt 0.079488 0.216710 +vt 0.079548 0.218062 +vt 0.079022 0.215958 +vt 0.079255 0.210530 +vt 0.079145 0.207046 +vt 0.079838 0.201363 +vt 0.079529 0.202769 +vt 0.079777 0.218976 +vt 0.079689 0.220551 +vt 0.078594 0.211258 +vt 0.078476 0.215684 +vt 0.078763 0.204699 +vt 0.078979 0.217573 +vt 0.079567 0.222675 +vt 0.077655 0.213318 +vt 0.078513 0.216680 +vt 0.077762 0.215661 +vt 0.078495 0.208012 +vt 0.078262 0.210299 +vt 0.078568 0.219006 +vt 0.078855 0.220461 +vt 0.079141 0.222291 +vt 0.078880 0.225000 +vt 0.077718 0.211476 +vt 0.078198 0.216253 +vt 0.078317 0.217806 +vt 0.079199 0.221091 +vt 0.078799 0.223590 +vt 0.078677 0.226625 +vt 0.076597 0.214291 +vt 0.077495 0.218249 +vt 0.078054 0.220315 +vt 0.077892 0.218888 +vt 0.078771 0.222218 +vt 0.078172 0.224772 +vt 0.076842 0.216995 +vt 0.077869 0.217836 +vt 0.078282 0.221711 +vt 0.078213 0.223133 +vt 0.078558 0.230283 +vt 0.078600 0.228562 +vt 0.078043 0.226978 +vt 0.075803 0.215866 +vt 0.075293 0.218973 +vt 0.077470 0.220013 +vt 0.077663 0.221014 +vt 0.077772 0.223676 +vt 0.077506 0.225876 +vt 0.076536 0.220220 +vt 0.077610 0.222609 +vt 0.078036 0.230452 +vt 0.077945 0.228898 +vt 0.077442 0.224352 +vt 0.077357 0.227528 +vt 0.075588 0.220738 +vt 0.077007 0.221385 +vt 0.077563 0.235458 +vt 0.077425 0.223520 +vt 0.076575 0.226585 +vt 0.076903 0.224953 +vt 0.074523 0.221197 +vt 0.076017 0.221206 +vt 0.076882 0.223431 +vt 0.077427 0.233019 +vt 0.077744 0.236808 +vt 0.077595 0.230939 +vt 0.077646 0.229739 +vt 0.077319 0.228818 +vt 0.076763 0.228225 +vt 0.075176 0.222214 +vt 0.076276 0.221539 +vt 0.077316 0.231946 +vt 0.077406 0.234128 +vt 0.077123 0.236537 +vt 0.076117 0.224746 +vt 0.075982 0.228393 +vt 0.074627 0.222879 +vt 0.076246 0.223473 +vt 0.077397 0.239785 +vt 0.077152 0.232564 +vt 0.076960 0.233321 +vt 0.077029 0.234638 +vt 0.077401 0.237962 +vt 0.077143 0.235582 +vt 0.077005 0.230880 +vt 0.077231 0.229845 +vt 0.076918 0.229153 +vt 0.075418 0.226850 +vt 0.076458 0.229368 +vt 0.073764 0.223227 +vt 0.076828 0.232021 +vt 0.076816 0.237633 +vt 0.076695 0.235417 +vt 0.075119 0.224888 +vt 0.075816 0.230371 +vt 0.074907 0.229292 +vt 0.074112 0.224514 +vt 0.077115 0.239018 +vt 0.076474 0.234158 +vt 0.076633 0.236371 +vt 0.076664 0.231210 +vt 0.076823 0.229896 +vt 0.074460 0.226538 +vt 0.076507 0.230509 +vt 0.074277 0.228330 +vt 0.073161 0.224686 +vt 0.076952 0.241171 +vt 0.076326 0.232824 +vt 0.076190 0.236666 +vt 0.076816 0.238949 +vt 0.076332 0.235793 +vt 0.076300 0.231507 +vt 0.074952 0.231516 +vt 0.073793 0.230270 +vt 0.073824 0.226227 +vt 0.076349 0.246355 +vt 0.076553 0.243994 +vt 0.076596 0.240308 +vt 0.076123 0.235051 +vt 0.075728 0.233865 +vt 0.076343 0.238371 +vt 0.073579 0.227406 +vt 0.073994 0.231400 +vt 0.075678 0.232182 +vt 0.073619 0.229277 +vt 0.072685 0.226397 +vt 0.076650 0.241811 +vt 0.076035 0.235725 +vt 0.075629 0.237535 +vt 0.074261 0.233589 +vt 0.075014 0.233105 +vt 0.073218 0.230687 +vt 0.075662 0.247329 +vt 0.075852 0.245393 +vt 0.075105 0.248694 +vt 0.076440 0.243000 +vt 0.076245 0.241902 +vt 0.075525 0.235645 +vt 0.075898 0.239404 +vt 0.073124 0.229058 +vt 0.073782 0.233731 +vt 0.072938 0.232883 +vt 0.072879 0.228220 +vt 0.075916 0.243715 +vt 0.074991 0.250239 +vt 0.076150 0.240617 +vt 0.075044 0.234383 +vt 0.075248 0.237753 +vt 0.074897 0.236951 +vt 0.073869 0.235786 +vt 0.072408 0.231258 +vt 0.072692 0.229879 +vt 0.072198 0.228255 +vt 0.075278 0.246200 +vt 0.075076 0.247588 +vt 0.074550 0.248983 +vt 0.074765 0.253667 +vt 0.075705 0.240979 +vt 0.074645 0.235533 +vt 0.075344 0.239811 +vt 0.072486 0.228994 +vt 0.072850 0.235675 +vt 0.072046 0.232908 +vt 0.074706 0.247865 +vt 0.075312 0.243459 +vt 0.074443 0.250424 +vt 0.074282 0.252325 +vt 0.075752 0.242330 +vt 0.074724 0.239333 +vt 0.074869 0.238045 +vt 0.074091 0.237016 +vt 0.073400 0.237698 +vt 0.072132 0.234654 +vt 0.072033 0.229671 +vt 0.071493 0.231419 +vt 0.072237 0.228946 +vt 0.074553 0.246460 +vt 0.074678 0.244439 +vt 0.073853 0.249439 +vt 0.074132 0.247740 +vt 0.074187 0.254287 +vt 0.075349 0.241998 +vt 0.074953 0.240996 +vt 0.074214 0.238034 +vt 0.072563 0.238051 +vt 0.071964 0.237061 +vt 0.071290 0.233425 +vt 0.074847 0.243284 +vt 0.074321 0.257340 +vt 0.073892 0.251030 +vt 0.073772 0.253363 +vt 0.074039 0.255784 +vt 0.074220 0.240625 +vt 0.072851 0.239857 +vt 0.073893 0.245272 +vt 0.073908 0.246516 +vt 0.074884 0.242419 +vt 0.074474 0.243067 +vt 0.074012 0.259121 +vt 0.073641 0.250623 +vt 0.073570 0.248187 +vt 0.073686 0.252239 +vt 0.073810 0.254574 +vt 0.074081 0.239486 +vt 0.074303 0.242003 +vt 0.073599 0.240257 +vt 0.071746 0.239649 +vt 0.073662 0.243457 +vt 0.073594 0.247238 +vt 0.073428 0.262344 +vt 0.073991 0.256852 +vt 0.073755 0.257876 +vt 0.073162 0.250172 +vt 0.073291 0.251454 +vt 0.073186 0.249002 +vt 0.073327 0.254196 +vt 0.073154 0.252808 +vt 0.073546 0.255426 +vt 0.073626 0.241699 +vt 0.073011 0.241230 +vt 0.072107 0.241435 +vt 0.073234 0.244912 +vt 0.073241 0.246334 +vt 0.073049 0.261065 +vt 0.073743 0.256468 +vt 0.073038 0.247887 +vt 0.072745 0.244177 +vt 0.072606 0.265776 +vt 0.072740 0.262367 +vt 0.073062 0.257979 +vt 0.072673 0.251107 +vt 0.072322 0.249557 +vt 0.072821 0.251954 +vt 0.072703 0.255832 +vt 0.072562 0.254007 +vt 0.073230 0.256539 +vt 0.072969 0.242715 +vt 0.072107 0.243361 +vt 0.073105 0.243387 +vt 0.072574 0.246070 +vt 0.072595 0.263773 +vt 0.072564 0.261417 +vt 0.072837 0.259213 +vt 0.072463 0.252613 +vt 0.071598 0.246047 +vt 0.072158 0.265061 +vt 0.072351 0.262283 +vt 0.072639 0.260369 +vt 0.072369 0.258171 +vt 0.072708 0.257030 +vt 0.071981 0.251706 +vt 0.072482 0.251840 +vt 0.071708 0.249739 +vt 0.072398 0.255036 +vt 0.071750 0.253403 +vt 0.070547 0.249292 +vt 0.072219 0.264011 +vt 0.072154 0.261275 +vt 0.072374 0.260770 +vt 0.072134 0.263140 +vt 0.072378 0.259347 +vt 0.072106 0.256701 +vt 0.071820 0.255635 +vt 0.072478 0.255666 +vt 0.071602 0.263910 +vt 0.071841 0.262257 +vt 0.072086 0.260176 +vt 0.071958 0.259088 +vt 0.070863 0.252560 +vt 0.072104 0.255615 +vt 0.070867 0.255661 +vt 0.071606 0.261015 +vt 0.071527 0.258302 +vt 0.071076 0.257317 +vt 0.071079 0.262230 +vt 0.071458 0.259733 +vt 0.069318 0.254487 +vt 0.069417 0.257135 +vt 0.070936 0.260785 +vt 0.070855 0.258608 +vt 0.069651 0.259626 +vt 0.069865 0.261871 +vt 0.174732 0.207910 +vt 0.173107 0.209940 +vt 0.172060 0.198557 +vt 0.173487 0.206607 +vt 0.171385 0.208579 +vt 0.172823 0.207984 +vt 0.171318 0.203036 +vt 0.172524 0.204688 +vt 0.169003 0.195364 +vt 0.167849 0.184076 +vt 0.170897 0.213198 +vt 0.171685 0.207686 +vt 0.169284 0.199000 +vt 0.169669 0.191538 +vt 0.166566 0.188364 +vt 0.170116 0.208042 +vt 0.168583 0.200361 +vt 0.168173 0.189379 +vt 0.168225 0.197678 +vt 0.164564 0.184582 +vt 0.165740 0.181343 +vt 0.169415 0.215126 +vt 0.169482 0.211441 +vt 0.170420 0.205597 +vt 0.169292 0.205673 +vt 0.167280 0.194429 +vt 0.166454 0.190991 +vt 0.164384 0.186820 +vt 0.164750 0.179379 +vt 0.169385 0.208367 +vt 0.168575 0.202928 +vt 0.167992 0.202011 +vt 0.167266 0.197938 +vt 0.165347 0.188851 +vt 0.163596 0.183541 +vt 0.163668 0.186827 +vt 0.163592 0.176969 +vt 0.163746 0.173064 +vt 0.168122 0.213183 +vt 0.168839 0.210322 +vt 0.168130 0.204980 +vt 0.165911 0.192349 +vt 0.165945 0.195549 +vt 0.165133 0.190792 +vt 0.164301 0.189342 +vt 0.162636 0.178523 +vt 0.162888 0.174057 +vt 0.167719 0.216181 +vt 0.168061 0.211580 +vt 0.167575 0.215252 +vt 0.168761 0.208690 +vt 0.168303 0.207051 +vt 0.167512 0.203441 +vt 0.166551 0.198786 +vt 0.166308 0.194965 +vt 0.163055 0.184321 +vt 0.163498 0.188641 +vt 0.162964 0.182144 +vt 0.162034 0.175550 +vt 0.162516 0.172971 +vt 0.166978 0.213294 +vt 0.167680 0.209224 +vt 0.167532 0.205885 +vt 0.167498 0.204775 +vt 0.167282 0.201444 +vt 0.165092 0.192677 +vt 0.165523 0.194559 +vt 0.165667 0.197168 +vt 0.164323 0.191238 +vt 0.163217 0.186485 +vt 0.163527 0.190186 +vt 0.162466 0.180327 +vt 0.161682 0.177193 +vt 0.162258 0.170280 +vt 0.165572 0.215722 +vt 0.165487 0.217466 +vt 0.167095 0.211430 +vt 0.167375 0.207212 +vt 0.167162 0.204376 +vt 0.166454 0.202425 +vt 0.166406 0.200647 +vt 0.165374 0.197522 +vt 0.165580 0.195946 +vt 0.162390 0.182951 +vt 0.162797 0.186076 +vt 0.163214 0.189089 +vt 0.162929 0.187980 +vt 0.161809 0.178956 +vt 0.162346 0.181944 +vt 0.161551 0.172540 +vt 0.161086 0.175867 +vt 0.164833 0.219731 +vt 0.166484 0.212419 +vt 0.165686 0.214287 +vt 0.166218 0.209949 +vt 0.166810 0.206075 +vt 0.166903 0.203981 +vt 0.165918 0.199141 +vt 0.164219 0.192617 +vt 0.164724 0.194108 +vt 0.165163 0.196576 +vt 0.165077 0.195351 +vt 0.163851 0.191575 +vt 0.162492 0.184337 +vt 0.162983 0.189185 +vt 0.161884 0.180358 +vt 0.162027 0.181960 +vt 0.160780 0.168111 +vt 0.162096 0.165386 +vt 0.160373 0.159685 +vt 0.161460 0.161838 +vt 0.161053 0.174519 +vt 0.160730 0.176883 +vt 0.161012 0.178380 +vt 0.160663 0.170822 +vt 0.164600 0.214526 +vt 0.163536 0.217751 +vt 0.165595 0.212591 +vt 0.166156 0.211512 +vt 0.166493 0.207666 +vt 0.166298 0.204431 +vt 0.165560 0.200228 +vt 0.165004 0.197644 +vt 0.163491 0.192029 +vt 0.161801 0.183442 +vt 0.162331 0.186850 +vt 0.162154 0.185208 +vt 0.162758 0.189759 +vt 0.161240 0.179820 +vt 0.159813 0.155880 +vt 0.160731 0.172941 +vt 0.160505 0.175178 +vt 0.160570 0.175981 +vt 0.164949 0.213471 +vt 0.165555 0.208474 +vt 0.165278 0.211285 +vt 0.166147 0.205964 +vt 0.165203 0.202293 +vt 0.164338 0.194677 +vt 0.162601 0.188411 +vt 0.161371 0.181357 +vt 0.160613 0.166113 +vt 0.159848 0.169384 +vt 0.159807 0.161381 +vt 0.160103 0.177802 +vt 0.159977 0.175767 +vt 0.160609 0.179405 +vt 0.162884 0.215933 +vt 0.162691 0.218452 +vt 0.162990 0.222178 +vt 0.164797 0.212545 +vt 0.164087 0.213318 +vt 0.165060 0.210096 +vt 0.165520 0.206460 +vt 0.164444 0.198582 +vt 0.165585 0.204803 +vt 0.163735 0.194826 +vt 0.162511 0.190984 +vt 0.161603 0.185323 +vt 0.162142 0.188050 +vt 0.160892 0.180320 +vt 0.159212 0.166585 +vt 0.158289 0.159980 +vt 0.164465 0.213082 +vt 0.164422 0.211210 +vt 0.160974 0.182647 +vt 0.160507 0.180526 +vt 0.159226 0.163562 +vt 0.158692 0.161701 +vt 0.158151 0.157814 +vt 0.158840 0.175562 +vt 0.160162 0.179241 +vt 0.162025 0.217588 +vt 0.162858 0.213916 +vt 0.161430 0.222070 +vt 0.164313 0.212007 +vt 0.164135 0.212674 +vt 0.164137 0.210544 +vt 0.161528 0.187356 +vt 0.160601 0.183715 +vt 0.158431 0.163915 +vt 0.158557 0.154595 +vt 0.157768 0.161282 +vt 0.157187 0.159805 +vt 0.159644 0.178983 +vt 0.161240 0.218908 +vt 0.161961 0.216343 +vt 0.162395 0.214728 +vt 0.163583 0.213142 +vt 0.163050 0.212197 +vt 0.160827 0.187117 +vt 0.160244 0.181393 +vt 0.157525 0.151024 +vt 0.157856 0.162676 +vt 0.156873 0.156963 +vt 0.161109 0.216847 +vt 0.161827 0.215338 +vt 0.162087 0.214163 +vt 0.163402 0.212804 +vt 0.160662 0.220470 +vt 0.158932 0.179943 +vt 0.157325 0.153397 +vt 0.157032 0.161990 +vt 0.160226 0.218752 +vt 0.162357 0.213364 +vt 0.160259 0.223899 +vt 0.160224 0.217037 +vt 0.161049 0.215500 +vt 0.161391 0.214568 +vt 0.161833 0.213858 +vt 0.160440 0.225199 +vt 0.159573 0.221188 +vt 0.160258 0.216077 +vt 0.159562 0.217566 +vt 0.159453 0.225611 +vt 0.159293 0.219983 +vt 0.159075 0.223730 +vt 0.159873 0.216563 +vt 0.159364 0.218966 +vt 0.158435 0.221802 +vt 0.158040 0.223856 +vt 0.158814 0.218486 +vt 0.158309 0.220047 +vt 0.158366 0.226398 +vt 0.157334 0.222747 +vt 0.157674 0.220954 +vt 0.156791 0.227403 +vt 0.157053 0.225078 +vt 0.154882 0.225635 +vt 0.157005 0.221617 +vt 0.156232 0.222712 +vt 0.155923 0.224753 +vt 0.154669 0.228265 +vt 0.154013 0.229618 +vt 0.153792 0.227699 +vt 0.153982 0.226072 +vt 0.152877 0.232900 +vt 0.150874 0.234148 +vt 0.150655 0.125832 +vt 0.149151 0.126495 +vt 0.148514 0.122521 +vt 0.147313 0.116767 +vt 0.147127 0.120655 +vt 0.147818 0.124167 +vt 0.146959 0.111727 +vt 0.146232 0.119345 +vt 0.147056 0.122782 +vt 0.146569 0.114804 +vt 0.146174 0.117635 +vt 0.144485 0.109017 +vt 0.146329 0.121912 +vt 0.146361 0.120318 +vt 0.146623 0.111764 +vt 0.145619 0.119033 +vt 0.145450 0.110442 +vt 0.145991 0.119931 +vt 0.145613 0.115801 +vt 0.145528 0.113170 +vt 0.144654 0.110608 +vt 0.144272 0.107638 +vt 0.145727 0.120612 +vt 0.144917 0.112133 +vt 0.144219 0.109616 +vt 0.288919 0.328762 +vt 0.289861 0.328805 +vt 0.287902 0.330264 +vt 0.289141 0.326173 +vt 0.291263 0.333586 +vt 0.287813 0.327493 +vt 0.290064 0.325711 +vt 0.290687 0.327117 +vt 0.289310 0.336013 +vt 0.287197 0.325311 +vt 0.291654 0.321715 +vt 0.288194 0.324919 +vt 0.292355 0.332902 +vt 0.287897 0.336172 +vt 0.291191 0.337516 +vt 0.287961 0.322870 +vt 0.286638 0.335325 +vt 0.288825 0.323138 +vt 0.293802 0.338766 +vt 0.292902 0.327713 +vt 0.288376 0.338512 +vt 0.291157 0.340783 +vt 0.286933 0.321811 +vt 0.285798 0.328805 +vt 0.289750 0.318628 +vt 0.293987 0.333839 +vt 0.288568 0.338729 +vt 0.286710 0.339094 +vt 0.294008 0.342456 +vt 0.292373 0.340866 +vt 0.288420 0.321429 +vt 0.286531 0.323525 +vt 0.285407 0.333471 +vt 0.291457 0.315256 +vt 0.294136 0.319385 +vt 0.294801 0.338112 +vt 0.295641 0.327482 +vt 0.288813 0.343273 +vt 0.287363 0.341740 +vt 0.285188 0.337926 +vt 0.294226 0.343971 +vt 0.289197 0.340070 +vt 0.291195 0.344876 +vt 0.286537 0.318910 +vt 0.286041 0.322004 +vt 0.285335 0.323374 +vt 0.284977 0.328785 +vt 0.289897 0.312174 +vt 0.292905 0.314606 +vt 0.288494 0.313969 +vt 0.295278 0.343620 +vt 0.296411 0.333308 +vt 0.287096 0.343813 +vt 0.286028 0.340439 +vt 0.293449 0.343271 +vt 0.287029 0.314089 +vt 0.284127 0.325723 +vt 0.283610 0.334232 +vt 0.284243 0.330393 +vt 0.296572 0.344942 +vt 0.296288 0.335267 +vt 0.289858 0.345820 +vt 0.287799 0.347932 +vt 0.285094 0.344383 +vt 0.294887 0.345918 +vt 0.293865 0.347420 +vt 0.292256 0.349550 +vt 0.285334 0.313338 +vt 0.285154 0.320552 +vt 0.283599 0.340618 +vt 0.287778 0.309177 +vt 0.296442 0.337574 +vt 0.296627 0.348103 +vt 0.297134 0.335637 +vt 0.286098 0.344739 +vt 0.287126 0.350868 +vt 0.284483 0.344122 +vt 0.295684 0.348713 +vt 0.284140 0.322433 +vt 0.282981 0.338788 +vt 0.282233 0.330762 +vt 0.283429 0.326841 +vt 0.297059 0.340159 +vt 0.297074 0.336410 +vt 0.289327 0.351706 +vt 0.284515 0.347078 +vt 0.294786 0.348972 +vt 0.292811 0.350183 +vt 0.283419 0.318062 +vt 0.285579 0.306079 +vt 0.282482 0.322792 +vt 0.283007 0.343697 +vt 0.282602 0.341126 +vt 0.282203 0.334651 +vt 0.297160 0.337136 +vt 0.296254 0.350383 +vt 0.288234 0.353816 +vt 0.295676 0.350806 +vt 0.294031 0.351246 +vt 0.290853 0.354610 +vt 0.289371 0.356804 +vt 0.284700 0.311077 +vt 0.282097 0.321347 +vt 0.282139 0.337491 +vt 0.281432 0.331575 +vt 0.297322 0.350846 +vt 0.286026 0.351519 +vt 0.287390 0.355151 +vt 0.282336 0.347613 +vt 0.294844 0.351880 +vt 0.293324 0.355273 +vt 0.281609 0.313802 +vt 0.284002 0.310121 +vt 0.280769 0.321593 +vt 0.282064 0.343299 +vt 0.281151 0.341945 +vt 0.281271 0.336229 +vt 0.280894 0.325652 +vt 0.296808 0.354461 +vt 0.295788 0.355517 +vt 0.283917 0.352993 +vt 0.286668 0.353164 +vt 0.288229 0.357847 +vt 0.281403 0.346873 +vt 0.283084 0.350626 +vt 0.295397 0.356409 +vt 0.294087 0.357950 +vt 0.291804 0.355237 +vt 0.290602 0.357890 +vt 0.283529 0.311190 +vt 0.282587 0.305620 +vt 0.280551 0.315475 +vt 0.280600 0.340602 +vt 0.280225 0.335594 +vt 0.280145 0.328700 +vt 0.297831 0.353324 +vt 0.285035 0.353874 +vt 0.285921 0.354553 +vt 0.286979 0.356187 +vt 0.287827 0.360656 +vt 0.282054 0.350440 +vt 0.293333 0.357672 +vt 0.292502 0.357579 +vt 0.290263 0.361335 +vt 0.281786 0.306811 +vt 0.280063 0.321745 +vt 0.280135 0.325450 +vt 0.279658 0.344686 +vt 0.297589 0.357589 +vt 0.296247 0.359134 +vt 0.283187 0.354233 +vt 0.283850 0.358479 +vt 0.294934 0.361072 +vt 0.291649 0.357936 +vt 0.278940 0.343048 +vt 0.279464 0.338862 +vt 0.279227 0.331250 +vt 0.279655 0.327146 +vt 0.296744 0.360529 +vt 0.285055 0.357305 +vt 0.286455 0.356630 +vt 0.288196 0.366365 +vt 0.295846 0.361933 +vt 0.293692 0.361895 +vt 0.292463 0.360031 +vt 0.291504 0.359673 +vt 0.278925 0.333982 +vt 0.297458 0.363847 +vt 0.282665 0.360403 +vt 0.285141 0.360907 +vt 0.286613 0.362754 +vt 0.291106 0.366338 +vt 0.295103 0.363761 +vt 0.294136 0.364090 +vt 0.291922 0.361893 +vt 0.296720 0.363382 +vt 0.282702 0.363992 +vt 0.284259 0.364732 +vt 0.285275 0.368203 +vt 0.289305 0.373443 +vt 0.296161 0.365797 +vt 0.292667 0.361086 +vt 0.293150 0.367601 +vt 0.292299 0.360789 +vt 0.297260 0.365258 +vt 0.281444 0.364311 +vt 0.286437 0.370971 +vt 0.291589 0.371582 +vt 0.295525 0.367883 +vt 0.294621 0.366375 +vt 0.283350 0.366724 +vt 0.282693 0.366908 +vt 0.285687 0.371992 +vt 0.291287 0.376658 +vt 0.287307 0.376052 +vt 0.295904 0.368962 +vt 0.294536 0.369295 +vt 0.297218 0.366796 +vt 0.282536 0.368535 +vt 0.286694 0.377441 +vt 0.293059 0.376312 +vt 0.289961 0.379203 +vt 0.288858 0.378515 +vt 0.294993 0.369746 +vt 0.296168 0.371713 +vt 0.293849 0.373516 +vt 0.286060 0.377108 +vt 0.291220 0.382247 +vt 0.287157 0.379670 +vt 0.295504 0.374014 +vt 0.297320 0.371321 +vt 0.294811 0.374044 +vt 0.284749 0.372234 +vt 0.285570 0.374017 +vt 0.286266 0.382724 +vt 0.292732 0.382709 +vt 0.288575 0.385252 +vt 0.287810 0.385224 +vt 0.296785 0.375554 +vt 0.295896 0.376279 +vt 0.284192 0.374238 +vt 0.285607 0.376119 +vt 0.285791 0.380705 +vt 0.294263 0.379099 +vt 0.291861 0.385190 +vt 0.290897 0.387027 +vt 0.297749 0.374368 +vt 0.295507 0.379678 +vt 0.284887 0.374102 +vt 0.285260 0.377067 +vt 0.285321 0.384405 +vt 0.292111 0.388250 +vt 0.293955 0.384135 +vt 0.288133 0.387690 +vt 0.289768 0.388066 +vt 0.287031 0.387373 +vt 0.296953 0.378590 +vt 0.298297 0.377865 +vt 0.298476 0.373486 +vt 0.296277 0.379134 +vt 0.284632 0.382442 +vt 0.292982 0.388500 +vt 0.295332 0.382188 +vt 0.289210 0.388755 +vt 0.291093 0.390407 +vt 0.299069 0.375678 +vt 0.296771 0.380653 +vt 0.284914 0.385216 +vt 0.292117 0.390989 +vt 0.294963 0.387008 +vt 0.293631 0.389049 +vt 0.287246 0.388758 +vt 0.288290 0.388725 +vt 0.291098 0.392404 +vt 0.297773 0.379868 +vt 0.299599 0.378496 +vt 0.299968 0.373737 +vt 0.293407 0.392076 +vt 0.296772 0.386063 +vt 0.289296 0.390427 +vt 0.291379 0.396243 +vt 0.297067 0.383662 +vt 0.298961 0.381327 +vt 0.300192 0.375821 +vt 0.286910 0.393777 +vt 0.292637 0.394141 +vt 0.294390 0.390211 +vt 0.296309 0.387666 +vt 0.294520 0.394490 +vt 0.288410 0.393004 +vt 0.290141 0.394175 +vt 0.298070 0.381639 +vt 0.299603 0.381742 +vt 0.300666 0.376961 +vt 0.301544 0.374891 +vt 0.295338 0.389491 +vt 0.297874 0.387285 +vt 0.297512 0.389084 +vt 0.298952 0.383551 +vt 0.300353 0.379211 +vt 0.301372 0.371743 +vt 0.295208 0.394041 +vt 0.296228 0.390746 +vt 0.300300 0.382802 +vt 0.301222 0.379080 +vt 0.302034 0.373324 +vt 0.295225 0.403605 +vt 0.296192 0.393889 +vt 0.299213 0.385595 +vt 0.298392 0.388496 +vt 0.297085 0.392405 +vt 0.300016 0.384928 +vt 0.302174 0.376756 +vt 0.303200 0.371176 +vt 0.301834 0.374130 +vt 0.296451 0.402249 +vt 0.296539 0.397376 +vt 0.299137 0.387305 +vt 0.298521 0.391275 +vt 0.301336 0.383650 +vt 0.302641 0.378979 +vt 0.303049 0.375155 +vt 0.302358 0.373758 +vt 0.296015 0.406419 +vt 0.297089 0.395115 +vt 0.299792 0.386482 +vt 0.299213 0.389539 +vt 0.298225 0.393563 +vt 0.300629 0.386607 +vt 0.297038 0.406008 +vt 0.297439 0.399744 +vt 0.297759 0.396871 +vt 0.299970 0.389846 +vt 0.299948 0.392138 +vt 0.298674 0.394533 +vt 0.302953 0.383149 +vt 0.301442 0.386940 +vt 0.304387 0.377529 +vt 0.297525 0.404172 +vt 0.296845 0.407837 +vt 0.297671 0.402088 +vt 0.300557 0.390949 +vt 0.297971 0.406245 +vt 0.297662 0.408690 +vt 0.296861 0.409698 +vt 0.298405 0.399838 +vt 0.297742 0.401069 +vt 0.299286 0.395249 +vt 0.298852 0.397561 +vt 0.306269 0.382963 +vt 0.301008 0.391222 +vt 0.298652 0.404155 +vt 0.297933 0.400688 +vt 0.297910 0.401328 +vt 0.300264 0.395240 +vt 0.302528 0.392232 +vt 0.298510 0.406991 +vt 0.298203 0.401579 +vt 0.297892 0.411543 +vt 0.299587 0.399913 +vt 0.301223 0.394105 +vt 0.300247 0.398542 +vt 0.305538 0.390957 +vt 0.298743 0.410559 +vt 0.299674 0.409577 +vt 0.299020 0.401422 +vt 0.297226 0.411829 +vt 0.306702 0.388053 +vt 0.302990 0.400512 +vt 0.301256 0.400792 +vt 0.300516 0.405480 +vt 0.299962 0.404122 +vt 0.297827 0.412590 +vt 0.298420 0.411742 +vt 0.308620 0.387759 +vt 0.309404 0.382497 +vt 0.309641 0.396979 +vt 0.299589 0.411700 +vt 0.301142 0.409667 +vt 0.298135 0.412693 +vt 0.298716 0.412301 +vt 0.300746 0.403277 +vt 0.308644 0.391236 +vt 0.301903 0.404317 +vt 0.307596 0.400043 +vt 0.300456 0.411466 +vt 0.301206 0.407060 +vt 0.298377 0.412950 +vt 0.311018 0.388233 +vt 0.303238 0.406287 +vt 0.309855 0.401430 +vt 0.305620 0.404349 +vt 0.300082 0.412782 +vt 0.302421 0.407705 +vt 0.301494 0.411917 +vt 0.311940 0.396547 +vt 0.307396 0.404696 +vt 0.302841 0.411537 +vt 0.303548 0.409499 +vt 0.304660 0.407509 +vt 0.312351 0.401246 +vt 0.307634 0.407486 +vt 0.306381 0.405638 +vt 0.316260 0.393743 +vt 0.301315 0.412940 +vt 0.302417 0.412596 +vt 0.306165 0.407205 +vt 0.314570 0.397040 +vt 0.311502 0.404555 +vt 0.309251 0.407048 +vt 0.301254 0.413311 +vt 0.303758 0.411392 +vt 0.305031 0.409563 +vt 0.314208 0.403018 +vt 0.307074 0.410435 +vt 0.306340 0.409388 +vt 0.316360 0.399981 +vt 0.303885 0.412592 +vt 0.311037 0.408123 +vt 0.313215 0.406529 +vt 0.309171 0.410149 +vt 0.317792 0.398651 +vt 0.305338 0.410915 +vt 0.315999 0.404101 +vt 0.314921 0.405810 +vt 0.317394 0.402974 +vt 0.312704 0.408711 +vt 0.314424 0.407541 +vt 0.319102 0.404068 +vt 0.316911 0.404937 +vt 0.316012 0.406527 +vt 0.317537 0.405273 +vt 0.319893 0.401958 +vt 0.317344 0.404617 +vt 0.314464 0.408801 +vt 0.318717 0.405280 +vt 0.321298 0.403959 +vt 0.317457 0.407475 +vt 0.319668 0.405394 +vt 0.321926 0.399982 +vt 0.318989 0.406372 +vt 0.322342 0.402788 +vt 0.320528 0.405201 +vt 0.319610 0.406729 +vt 0.323739 0.400891 +vt 0.322040 0.404349 +vt 0.321361 0.405665 +vt 0.318405 0.408281 +vt 0.323033 0.404188 +vt 0.320063 0.407479 +vt 0.324285 0.403155 +vt 0.324832 0.404156 +vt 0.324932 0.403111 +vt 0.322450 0.406418 +vt 0.325845 0.402132 +vt 0.324829 0.405797 +vt 0.326732 0.403813 +vt 0.327395 0.401948 +vt 0.327255 0.405026 +vt 0.327854 0.402574 +vt 0.328275 0.398628 +vt 0.328013 0.403504 +vt 0.328777 0.401814 +vt 0.329040 0.403362 +vt 0.329727 0.401497 +vt 0.328973 0.404654 +vt 0.330943 0.402286 +vt 0.330879 0.403988 +vt 0.331416 0.399490 +vt 0.332666 0.402933 +vt 0.330837 0.396288 +vt 0.332088 0.400691 +vt 0.332590 0.401603 +vt 0.332357 0.397358 +vt 0.333601 0.401516 +vt 0.332300 0.394808 +vt 0.333193 0.398335 +vt 0.334199 0.401781 +vt 0.334084 0.400352 +vt 0.334249 0.401159 +vt 0.334320 0.402436 +vt 0.333911 0.396496 +vt 0.334613 0.398753 +vt 0.334681 0.400616 +vt 0.334977 0.401258 +vt 0.334270 0.393260 +vt 0.335761 0.400970 +vt 0.335186 0.396880 +vt 0.335349 0.399817 +vt 0.335054 0.402355 +vt 0.336578 0.395612 +vt 0.336245 0.401652 +vt 0.336130 0.398853 +vt 0.338011 0.383917 +vt 0.336947 0.400152 +vt 0.336518 0.399744 +vt 0.341136 0.390693 +vt 0.337768 0.400782 +vt 0.338645 0.395830 +vt 0.340928 0.387094 +vt 0.337888 0.398000 +vt 0.338176 0.399277 +vt 0.340826 0.395176 +vt 0.341812 0.384699 +vt 0.343303 0.387324 +vt 0.338512 0.399585 +vt 0.342444 0.394560 +vt 0.343475 0.390619 +vt 0.339452 0.398993 +vt 0.342759 0.397527 +vt 0.344343 0.383456 +vt 0.344175 0.387349 +vt 0.338619 0.400847 +vt 0.341215 0.398290 +vt 0.343835 0.393990 +vt 0.344044 0.380068 +vt 0.344441 0.389377 +vt 0.339669 0.400254 +vt 0.344189 0.397226 +vt 0.341881 0.399286 +vt 0.346574 0.385725 +vt 0.346014 0.379846 +vt 0.342486 0.378246 +vt 0.340705 0.400034 +vt 0.345091 0.394560 +vt 0.343404 0.398664 +vt 0.342660 0.399487 +vt 0.345469 0.391021 +vt 0.345906 0.375734 +vt 0.346238 0.387686 +vt 0.345180 0.396693 +vt 0.343844 0.399298 +vt 0.341683 0.399994 +vt 0.348332 0.377659 +vt 0.347238 0.375575 +vt 0.346077 0.370941 +vt 0.348194 0.386874 +vt 0.347029 0.395448 +vt 0.345058 0.398167 +vt 0.341808 0.400107 +vt 0.347672 0.390814 +vt 0.347779 0.383731 +vt 0.347304 0.372876 +vt 0.346477 0.396613 +vt 0.345901 0.397787 +vt 0.342874 0.399962 +vt 0.344586 0.399370 +vt 0.348180 0.374646 +vt 0.350783 0.374260 +vt 0.347844 0.373987 +vt 0.347901 0.370578 +vt 0.349987 0.383492 +vt 0.350470 0.385980 +vt 0.349123 0.394718 +vt 0.347050 0.396966 +vt 0.345508 0.398765 +vt 0.343918 0.399825 +vt 0.349758 0.373063 +vt 0.348370 0.372380 +vt 0.348185 0.366377 +vt 0.348337 0.396326 +vt 0.346329 0.398044 +vt 0.348008 0.397389 +vt 0.349740 0.371311 +vt 0.349389 0.368625 +vt 0.351532 0.390826 +vt 0.348910 0.396846 +vt 0.346794 0.398308 +vt 0.345761 0.398875 +vt 0.350157 0.395271 +vt 0.348062 0.397656 +vt 0.347590 0.398051 +vt 0.351414 0.395449 +vt 0.349726 0.397015 +vt 0.347394 0.398408 +vt 0.350502 0.396754 +vt 0.352786 0.394669 +vt 0.349186 0.397485 +vt 0.350147 0.396740 +vt 0.351023 0.397094 +vt 0.352137 0.396401 +vt 0.349651 0.397580 +vt 0.350053 0.397301 +vt 0.349959 0.397534 +vt 0.353336 0.396247 +vt 0.351925 0.397173 +vt 0.866581 0.702389 +vt 0.863832 0.699412 +vt 0.865262 0.696500 +vt 0.863523 0.704588 +vt 0.862972 0.697577 +vt 0.866711 0.695136 +vt 0.864380 0.708170 +vt 0.860881 0.699780 +vt 0.864019 0.694193 +vt 0.865015 0.694510 +vt 0.869370 0.703270 +vt 0.866870 0.707258 +vt 0.862854 0.710091 +vt 0.860018 0.704098 +vt 0.861184 0.696469 +vt 0.862634 0.693303 +vt 0.867744 0.690632 +vt 0.870426 0.698149 +vt 0.870898 0.707713 +vt 0.867427 0.710448 +vt 0.862698 0.712746 +vt 0.862016 0.709867 +vt 0.861644 0.706637 +vt 0.858013 0.699157 +vt 0.858988 0.698252 +vt 0.865508 0.688216 +vt 0.862844 0.690336 +vt 0.870674 0.702055 +vt 0.865299 0.712108 +vt 0.864812 0.717585 +vt 0.860069 0.707695 +vt 0.857424 0.703941 +vt 0.860882 0.691845 +vt 0.871554 0.696062 +vt 0.868589 0.684900 +vt 0.873685 0.702182 +vt 0.871899 0.707479 +vt 0.870039 0.712257 +vt 0.867801 0.713569 +vt 0.863488 0.717933 +vt 0.861107 0.711272 +vt 0.858335 0.695204 +vt 0.854579 0.698455 +vt 0.864691 0.685491 +vt 0.861620 0.687724 +vt 0.872107 0.693666 +vt 0.868761 0.680200 +vt 0.870702 0.686194 +vt 0.873752 0.704818 +vt 0.866159 0.715952 +vt 0.861450 0.716337 +vt 0.863845 0.719385 +vt 0.859452 0.713718 +vt 0.857492 0.708319 +vt 0.854930 0.694360 +vt 0.853749 0.701674 +vt 0.856716 0.686662 +vt 0.865834 0.682759 +vt 0.874030 0.693410 +vt 0.874684 0.697362 +vt 0.875672 0.704486 +vt 0.873755 0.707544 +vt 0.873680 0.712150 +vt 0.869703 0.716224 +vt 0.867100 0.718319 +vt 0.861694 0.720083 +vt 0.866887 0.722334 +vt 0.858881 0.710467 +vt 0.854792 0.704294 +vt 0.854707 0.691583 +vt 0.853950 0.697439 +vt 0.864567 0.682888 +vt 0.861524 0.682517 +vt 0.872537 0.690946 +vt 0.875359 0.702736 +vt 0.866079 0.678674 +vt 0.874723 0.706627 +vt 0.871650 0.713794 +vt 0.858411 0.715909 +vt 0.861583 0.723018 +vt 0.863860 0.721375 +vt 0.858048 0.711302 +vt 0.855116 0.707276 +vt 0.851393 0.694120 +vt 0.850521 0.696305 +vt 0.851790 0.702975 +vt 0.853152 0.703986 +vt 0.852821 0.682114 +vt 0.859656 0.680640 +vt 0.876026 0.691531 +vt 0.878088 0.701573 +vt 0.876034 0.706535 +vt 0.874877 0.708505 +vt 0.875584 0.726179 +vt 0.871542 0.721173 +vt 0.856200 0.721808 +vt 0.858370 0.713253 +vt 0.866187 0.723277 +vt 0.856446 0.709219 +vt 0.853617 0.706998 +vt 0.855760 0.709401 +vt 0.850981 0.690257 +vt 0.851150 0.697710 +vt 0.850625 0.685431 +vt 0.854814 0.680170 +vt 0.864993 0.680544 +vt 0.863699 0.675916 +vt 0.861572 0.678422 +vt 0.856413 0.681348 +vt 0.879296 0.697605 +vt 0.878166 0.705990 +vt 0.876474 0.709636 +vt 0.877709 0.716800 +vt 0.869376 0.727738 +vt 0.856249 0.715347 +vt 0.864112 0.725215 +vt 0.856754 0.712153 +vt 0.856161 0.710111 +vt 0.854617 0.709354 +vt 0.849297 0.694330 +vt 0.849623 0.697068 +vt 0.849856 0.702916 +vt 0.851419 0.705421 +vt 0.850825 0.682637 +vt 0.853132 0.680019 +vt 0.858314 0.676231 +vt 0.880197 0.701448 +vt 0.880052 0.704173 +vt 0.872463 0.726468 +vt 0.878363 0.724359 +vt 0.852822 0.716230 +vt 0.871101 0.732268 +vt 0.853295 0.707738 +vt 0.855572 0.711329 +vt 0.849696 0.688335 +vt 0.848556 0.689823 +vt 0.850199 0.679364 +vt 0.848922 0.683716 +vt 0.855856 0.677773 +vt 0.853965 0.676792 +vt 0.864505 0.674098 +vt 0.861295 0.673355 +vt 0.860278 0.675817 +vt 0.881374 0.700537 +vt 0.879607 0.710343 +vt 0.881362 0.703659 +vt 0.875057 0.731169 +vt 0.882249 0.723775 +vt 0.877854 0.728653 +vt 0.873255 0.731619 +vt 0.853663 0.713001 +vt 0.853260 0.720058 +vt 0.855138 0.712898 +vt 0.853299 0.710598 +vt 0.854698 0.711047 +vt 0.848450 0.697271 +vt 0.849047 0.686114 +vt 0.848153 0.692154 +vt 0.848023 0.701071 +vt 0.848423 0.705394 +vt 0.847823 0.682023 +vt 0.855175 0.678484 +vt 0.852434 0.678628 +vt 0.851088 0.678415 +vt 0.862370 0.672414 +vt 0.858736 0.673823 +vt 0.856310 0.672258 +vt 0.880378 0.693856 +vt 0.881868 0.716222 +vt 0.877185 0.730842 +vt 0.880399 0.726326 +vt 0.879559 0.728588 +vt 0.850780 0.712690 +vt 0.849200 0.714099 +vt 0.872139 0.733986 +vt 0.846657 0.696885 +vt 0.846464 0.691626 +vt 0.849720 0.709250 +vt 0.848233 0.678343 +vt 0.847618 0.684241 +vt 0.855399 0.675932 +vt 0.852348 0.674519 +vt 0.848928 0.677139 +vt 0.864343 0.671562 +vt 0.861276 0.671540 +vt 0.857752 0.673337 +vt 0.882494 0.697148 +vt 0.883936 0.710086 +vt 0.882340 0.704710 +vt 0.876687 0.733284 +vt 0.874690 0.734033 +vt 0.881650 0.727980 +vt 0.885097 0.719659 +vt 0.879976 0.730791 +vt 0.879037 0.732514 +vt 0.873051 0.735136 +vt 0.871779 0.734980 +vt 0.846700 0.688478 +vt 0.846415 0.705343 +vt 0.846812 0.679484 +vt 0.845037 0.682986 +vt 0.854042 0.673816 +vt 0.850498 0.674886 +vt 0.862319 0.669706 +vt 0.859790 0.671616 +vt 0.858374 0.672923 +vt 0.854226 0.671748 +vt 0.857280 0.670546 +vt 0.883076 0.700802 +vt 0.877121 0.734400 +vt 0.875832 0.733248 +vt 0.880845 0.729405 +vt 0.882839 0.731803 +vt 0.885145 0.724152 +vt 0.847972 0.709760 +vt 0.844597 0.694811 +vt 0.845909 0.685952 +vt 0.844925 0.706372 +vt 0.846345 0.673424 +vt 0.844989 0.676172 +vt 0.852458 0.670992 +vt 0.849460 0.671343 +vt 0.865861 0.669328 +vt 0.858688 0.671676 +vt 0.855102 0.669951 +vt 0.885745 0.698535 +vt 0.884633 0.703209 +vt 0.887747 0.718874 +vt 0.875830 0.734976 +vt 0.874143 0.735754 +vt 0.881409 0.731595 +vt 0.884821 0.729567 +vt 0.886501 0.728592 +vt 0.880483 0.732360 +vt 0.879580 0.733168 +vt 0.846251 0.711592 +vt 0.873284 0.736676 +vt 0.842760 0.704966 +vt 0.843359 0.678749 +vt 0.842103 0.684794 +vt 0.851096 0.672031 +vt 0.863310 0.667102 +vt 0.859985 0.668286 +vt 0.858609 0.669305 +vt 0.853874 0.669508 +vt 0.855849 0.668430 +vt 0.886667 0.695052 +vt 0.888782 0.701098 +vt 0.889432 0.711687 +vt 0.875462 0.736251 +vt 0.882061 0.734801 +vt 0.883890 0.733560 +vt 0.886786 0.724710 +vt 0.878348 0.736056 +vt 0.840642 0.695090 +vt 0.842768 0.709936 +vt 0.843661 0.676404 +vt 0.843355 0.681183 +vt 0.838453 0.691630 +vt 0.862678 0.666864 +vt 0.857271 0.667497 +vt 0.890045 0.716633 +vt 0.874341 0.736666 +vt 0.887385 0.731505 +vt 0.885415 0.734108 +vt 0.888178 0.726808 +vt 0.880061 0.734381 +vt 0.879858 0.735653 +vt 0.839447 0.702832 +vt 0.844159 0.669316 +vt 0.842430 0.678015 +vt 0.842084 0.680818 +vt 0.837414 0.687586 +vt 0.859130 0.667539 +vt 0.888337 0.693562 +vt 0.892866 0.701300 +vt 0.892029 0.713931 +vt 0.888692 0.718627 +vt 0.880992 0.735443 +vt 0.882388 0.736771 +vt 0.888813 0.729583 +vt 0.884096 0.738690 +vt 0.879858 0.739295 +vt 0.880034 0.737288 +vt 0.837413 0.696430 +vt 0.841324 0.674244 +vt 0.836537 0.690241 +vt 0.837823 0.680219 +vt 0.840086 0.679461 +vt 0.892089 0.709230 +vt 0.894772 0.715796 +vt 0.891518 0.719898 +vt 0.881150 0.738995 +vt 0.888950 0.733251 +vt 0.888229 0.736184 +vt 0.886954 0.739135 +vt 0.889345 0.727397 +vt 0.836594 0.693078 +vt 0.839316 0.676550 +vt 0.834927 0.687217 +vt 0.836433 0.684023 +vt 0.893592 0.706332 +vt 0.893812 0.709583 +vt 0.895685 0.711344 +vt 0.892779 0.720574 +vt 0.890123 0.729509 +vt 0.885749 0.740242 +vt 0.835856 0.694286 +vt 0.834514 0.691749 +vt 0.834559 0.682232 +vt 0.837807 0.677415 +vt 0.895135 0.702577 +vt 0.899022 0.712431 +vt 0.895712 0.722260 +vt 0.883365 0.739246 +vt 0.891366 0.734071 +vt 0.889754 0.739045 +vt 0.884828 0.739692 +vt 0.886702 0.740287 +vt 0.891911 0.725604 +vt 0.881206 0.739913 +vt 0.834403 0.685268 +vt 0.833752 0.688193 +vt 0.832174 0.680595 +vt 0.835892 0.677273 +vt 0.895010 0.707118 +vt 0.899564 0.715228 +vt 0.897616 0.708533 +vt 0.896451 0.720270 +vt 0.893895 0.724154 +vt 0.883771 0.740056 +vt 0.882484 0.740156 +vt 0.892232 0.730166 +vt 0.885044 0.740818 +vt 0.886642 0.741359 +vt 0.833537 0.684739 +vt 0.832365 0.690164 +vt 0.834818 0.677123 +vt 0.833127 0.681968 +vt 0.897036 0.703584 +vt 0.899560 0.709807 +vt 0.897893 0.723065 +vt 0.895203 0.725167 +vt 0.894032 0.731273 +vt 0.894183 0.726964 +vt 0.833849 0.692478 +vt 0.831875 0.688419 +vt 0.831471 0.678068 +vt 0.832044 0.682935 +vt 0.835310 0.675370 +vt 0.901527 0.716577 +vt 0.899688 0.705096 +vt 0.897541 0.724531 +vt 0.899351 0.721160 +vt 0.893795 0.728919 +vt 0.894683 0.737262 +vt 0.831997 0.690949 +vt 0.831541 0.685846 +vt 0.832732 0.675705 +vt 0.829938 0.680349 +vt 0.830278 0.682948 +vt 0.834009 0.675750 +vt 0.899199 0.724104 +vt 0.894877 0.727795 +vt 0.896608 0.726251 +vt 0.894830 0.729431 +vt 0.899730 0.737172 +vt 0.830583 0.688089 +vt 0.830588 0.675149 +vt 0.829372 0.674661 +vt 0.830679 0.684511 +vt 0.833684 0.674062 +vt 0.900953 0.719629 +vt 0.898660 0.726441 +vt 0.902305 0.722674 +vt 0.897373 0.728226 +vt 0.895673 0.731289 +vt 0.897894 0.733074 +vt 0.830274 0.685675 +vt 0.828590 0.682114 +vt 0.827962 0.676601 +vt 0.829316 0.684167 +vt 0.900304 0.728847 +vt 0.895791 0.728663 +vt 0.829185 0.686790 +vt 0.829730 0.672496 +vt 0.831748 0.669053 +vt 0.828981 0.674138 +vt 0.904233 0.716798 +vt 0.829085 0.688783 +vt 0.828561 0.683212 +vt 0.826879 0.679809 +vt 0.826658 0.674522 +vt 0.827422 0.687334 +vt 0.828262 0.672653 +vt 0.827142 0.684997 +vt 0.826407 0.676800 +vt 0.827961 0.689054 +vt 0.824898 0.681403 +vt 0.824547 0.675159 +vt 0.826916 0.688463 +vt 0.823868 0.686743 +vt 0.822511 0.680149 +vt 0.811826 0.417557 +vt 0.812500 0.414308 +vt 0.814008 0.417198 +vt 0.810946 0.411405 +vt 0.813646 0.410969 +vt 0.812038 0.421738 +vt 0.809488 0.417201 +vt 0.816931 0.402389 +vt 0.813783 0.424764 +vt 0.811480 0.403071 +vt 0.814634 0.402640 +vt 0.817887 0.405171 +vt 0.815533 0.420176 +vt 0.812597 0.427875 +vt 0.809547 0.422179 +vt 0.809900 0.404990 +vt 0.814120 0.395526 +vt 0.817580 0.410414 +vt 0.818151 0.401650 +vt 0.816415 0.414003 +vt 0.814815 0.431139 +vt 0.812801 0.428586 +vt 0.809283 0.397807 +vt 0.812841 0.396166 +vt 0.815969 0.398477 +vt 0.818823 0.407896 +vt 0.819107 0.405078 +vt 0.816996 0.421240 +vt 0.816022 0.427138 +vt 0.810380 0.424611 +vt 0.807779 0.398521 +vt 0.810780 0.394774 +vt 0.811668 0.393400 +vt 0.816006 0.396231 +vt 0.819275 0.410559 +vt 0.818227 0.413409 +vt 0.818396 0.398711 +vt 0.819413 0.403407 +vt 0.817969 0.416907 +vt 0.813577 0.433235 +vt 0.815720 0.432517 +vt 0.809509 0.390548 +vt 0.809722 0.393471 +vt 0.812790 0.391967 +vt 0.814631 0.393942 +vt 0.816840 0.396470 +vt 0.819834 0.407322 +vt 0.820079 0.409631 +vt 0.817602 0.396723 +vt 0.819019 0.400881 +vt 0.820238 0.406286 +vt 0.817307 0.429069 +vt 0.818316 0.422385 +vt 0.814411 0.435290 +vt 0.812067 0.432205 +vt 0.814923 0.435408 +vt 0.807237 0.390246 +vt 0.810331 0.390885 +vt 0.811289 0.391322 +vt 0.811945 0.392024 +vt 0.815971 0.394437 +vt 0.816975 0.394740 +vt 0.819465 0.412716 +vt 0.820356 0.411742 +vt 0.819452 0.415444 +vt 0.818419 0.396848 +vt 0.819462 0.399606 +vt 0.820059 0.401761 +vt 0.820146 0.403581 +vt 0.819310 0.418900 +vt 0.813513 0.435626 +vt 0.816455 0.434531 +vt 0.808466 0.385704 +vt 0.813746 0.390939 +vt 0.812489 0.389884 +vt 0.815713 0.393040 +vt 0.817295 0.395479 +vt 0.820568 0.409018 +vt 0.820497 0.407998 +vt 0.821221 0.410749 +vt 0.819072 0.397941 +vt 0.818005 0.395828 +vt 0.820778 0.405332 +vt 0.820124 0.421987 +vt 0.814663 0.437399 +vt 0.812558 0.436762 +vt 0.815107 0.437011 +vt 0.817865 0.433869 +vt 0.810121 0.388430 +vt 0.809814 0.385291 +vt 0.806752 0.385078 +vt 0.811263 0.389515 +vt 0.813069 0.390551 +vt 0.814925 0.391696 +vt 0.816575 0.393451 +vt 0.817602 0.394993 +vt 0.820825 0.407641 +vt 0.820594 0.413722 +vt 0.821470 0.411969 +vt 0.820427 0.416192 +vt 0.819209 0.396624 +vt 0.818473 0.396216 +vt 0.820442 0.400446 +vt 0.820271 0.398833 +vt 0.820671 0.403097 +vt 0.820451 0.418898 +vt 0.813628 0.437350 +vt 0.815388 0.438093 +vt 0.816063 0.438421 +vt 0.811149 0.388437 +vt 0.809605 0.384203 +vt 0.807269 0.383540 +vt 0.805675 0.383868 +vt 0.813520 0.389676 +vt 0.814837 0.389574 +vt 0.815908 0.391897 +vt 0.816904 0.392445 +vt 0.818393 0.394816 +vt 0.821209 0.408949 +vt 0.820663 0.408512 +vt 0.822217 0.411495 +vt 0.821102 0.401862 +vt 0.820710 0.402183 +vt 0.821611 0.407359 +vt 0.821397 0.403695 +vt 0.819191 0.431531 +vt 0.821561 0.419365 +vt 0.814884 0.439868 +vt 0.813574 0.439420 +vt 0.817736 0.436989 +vt 0.810551 0.385482 +vt 0.808611 0.383052 +vt 0.810970 0.385058 +vt 0.805852 0.389962 +vt 0.812271 0.388286 +vt 0.816070 0.390157 +vt 0.813756 0.387877 +vt 0.816288 0.391000 +vt 0.822264 0.409188 +vt 0.821554 0.413911 +vt 0.821564 0.416240 +vt 0.820851 0.397880 +vt 0.821453 0.400852 +vt 0.821113 0.402561 +vt 0.821777 0.405379 +vt 0.820214 0.426808 +vt 0.819814 0.433270 +vt 0.821616 0.422053 +vt 0.812846 0.441698 +vt 0.817210 0.441075 +vt 0.812183 0.386192 +vt 0.809558 0.382800 +vt 0.810422 0.382864 +vt 0.808241 0.381678 +vt 0.806716 0.381808 +vt 0.805071 0.384897 +vt 0.812776 0.388562 +vt 0.816343 0.387666 +vt 0.819190 0.393261 +vt 0.822811 0.412921 +vt 0.823352 0.409529 +vt 0.821623 0.399511 +vt 0.820648 0.396179 +vt 0.822167 0.403502 +vt 0.822568 0.406644 +vt 0.821537 0.402744 +vt 0.820532 0.429829 +vt 0.821195 0.423834 +vt 0.822931 0.421539 +vt 0.823875 0.415668 +vt 0.814643 0.442549 +vt 0.818993 0.437705 +vt 0.809001 0.381679 +vt 0.811743 0.384020 +vt 0.805418 0.382140 +vt 0.803693 0.385366 +vt 0.816981 0.389897 +vt 0.823120 0.407949 +vt 0.822911 0.398826 +vt 0.822821 0.401579 +vt 0.821952 0.423746 +vt 0.821258 0.430654 +vt 0.815555 0.443164 +vt 0.814470 0.444225 +vt 0.819250 0.440858 +vt 0.820508 0.433540 +vt 0.809529 0.381412 +vt 0.811419 0.381459 +vt 0.807432 0.380298 +vt 0.806214 0.380196 +vt 0.804523 0.382051 +vt 0.818972 0.387874 +vt 0.819286 0.390572 +vt 0.822248 0.396076 +vt 0.825243 0.408831 +vt 0.823796 0.405579 +vt 0.822586 0.423382 +vt 0.825375 0.421105 +vt 0.813215 0.446322 +vt 0.816730 0.444995 +vt 0.821213 0.436323 +vt 0.812915 0.383917 +vt 0.808986 0.380322 +vt 0.805008 0.380268 +vt 0.804082 0.381836 +vt 0.817758 0.384990 +vt 0.821782 0.392934 +vt 0.824766 0.401512 +vt 0.825321 0.399591 +vt 0.822546 0.425161 +vt 0.822302 0.429934 +vt 0.824250 0.424138 +vt 0.826222 0.414440 +vt 0.815317 0.446400 +vt 0.811107 0.444657 +vt 0.814712 0.446975 +vt 0.820564 0.442980 +vt 0.817744 0.447563 +vt 0.807143 0.379112 +vt 0.808130 0.379330 +vt 0.805739 0.379019 +vt 0.803601 0.380697 +vt 0.824167 0.388564 +vt 0.821293 0.388879 +vt 0.821701 0.390251 +vt 0.824685 0.396079 +vt 0.825208 0.404726 +vt 0.826633 0.400271 +vt 0.826117 0.422104 +vt 0.826540 0.418578 +vt 0.827451 0.410111 +vt 0.810762 0.455727 +vt 0.814059 0.449571 +vt 0.815771 0.448053 +vt 0.822720 0.437102 +vt 0.823999 0.430934 +vt 0.809291 0.379351 +vt 0.804343 0.379350 +vt 0.804190 0.380393 +vt 0.802805 0.380773 +vt 0.824622 0.383880 +vt 0.823372 0.391501 +vt 0.826081 0.398257 +vt 0.825028 0.394680 +vt 0.826472 0.403311 +vt 0.825711 0.400543 +vt 0.825831 0.425750 +vt 0.828209 0.415303 +vt 0.827324 0.405885 +vt 0.809309 0.452665 +vt 0.812309 0.454227 +vt 0.815221 0.451137 +vt 0.823812 0.443988 +vt 0.818792 0.448949 +vt 0.816656 0.450295 +vt 0.811932 0.378817 +vt 0.807253 0.378257 +vt 0.807925 0.378799 +vt 0.804778 0.377774 +vt 0.803554 0.378967 +vt 0.826140 0.389408 +vt 0.824654 0.389627 +vt 0.828546 0.399001 +vt 0.828134 0.396708 +vt 0.826305 0.401210 +vt 0.827496 0.400006 +vt 0.828028 0.425076 +vt 0.829629 0.416740 +vt 0.828761 0.405427 +vt 0.829783 0.409550 +vt 0.808597 0.459342 +vt 0.812322 0.456680 +vt 0.813907 0.451995 +vt 0.824826 0.440727 +vt 0.825542 0.432250 +vt 0.817517 0.450543 +vt 0.809881 0.378573 +vt 0.802729 0.377879 +vt 0.828953 0.387846 +vt 0.827854 0.392138 +vt 0.827962 0.402949 +vt 0.827393 0.401368 +vt 0.827862 0.427527 +vt 0.807569 0.460391 +vt 0.809018 0.463376 +vt 0.811265 0.459301 +vt 0.815212 0.453209 +vt 0.824174 0.445061 +vt 0.819382 0.449862 +vt 0.817834 0.451889 +vt 0.816901 0.451435 +vt 0.816323 0.451997 +vt 0.808794 0.377134 +vt 0.806285 0.376854 +vt 0.803611 0.377875 +vt 0.826026 0.390542 +vt 0.828507 0.400123 +vt 0.830141 0.396490 +vt 0.828299 0.400991 +vt 0.830759 0.423757 +vt 0.831058 0.413023 +vt 0.828920 0.401914 +vt 0.830222 0.403956 +vt 0.812908 0.458346 +vt 0.814046 0.455574 +vt 0.827004 0.436429 +vt 0.822043 0.449126 +vt 0.826102 0.441408 +vt 0.817034 0.451951 +vt 0.805037 0.376768 +vt 0.803753 0.377211 +vt 0.830256 0.390701 +vt 0.829774 0.400715 +vt 0.830816 0.399076 +vt 0.831829 0.393726 +vt 0.827362 0.431482 +vt 0.828921 0.430761 +vt 0.832083 0.405699 +vt 0.833311 0.411712 +vt 0.808113 0.466309 +vt 0.811128 0.462029 +vt 0.811703 0.460631 +vt 0.815525 0.455723 +vt 0.816558 0.452779 +vt 0.823686 0.448771 +vt 0.825449 0.444794 +vt 0.806467 0.374563 +vt 0.803938 0.376470 +vt 0.804843 0.375884 +vt 0.803233 0.376457 +vt 0.831207 0.388815 +vt 0.830713 0.400178 +vt 0.831907 0.399499 +vt 0.832110 0.398007 +vt 0.831185 0.402056 +vt 0.809366 0.467401 +vt 0.810780 0.465189 +vt 0.812909 0.462794 +vt 0.814222 0.457978 +vt 0.816495 0.453818 +vt 0.828506 0.438872 +vt 0.822318 0.451985 +vt 0.817565 0.454502 +vt 0.802245 0.375504 +vt 0.832531 0.390109 +vt 0.831618 0.400663 +vt 0.834882 0.396394 +vt 0.834008 0.405816 +vt 0.831969 0.402332 +vt 0.808774 0.470032 +vt 0.811958 0.463016 +vt 0.813741 0.459944 +vt 0.815982 0.458161 +vt 0.824250 0.450745 +vt 0.820079 0.453112 +vt 0.804075 0.374129 +vt 0.803370 0.375352 +vt 0.833788 0.389126 +vt 0.832483 0.401615 +vt 0.833055 0.399862 +vt 0.834085 0.392037 +vt 0.834196 0.398798 +vt 0.833585 0.402465 +vt 0.835573 0.406949 +vt 0.810407 0.468213 +vt 0.809680 0.470364 +vt 0.807926 0.473333 +vt 0.812534 0.465375 +vt 0.814179 0.461496 +vt 0.814616 0.459851 +vt 0.822914 0.453446 +vt 0.820874 0.453726 +vt 0.818538 0.456303 +vt 0.802853 0.373989 +vt 0.833413 0.399068 +vt 0.837623 0.396950 +vt 0.835984 0.394729 +vt 0.835010 0.402827 +vt 0.811482 0.467677 +vt 0.809118 0.470748 +vt 0.808872 0.471590 +vt 0.814273 0.462716 +vt 0.814016 0.464144 +vt 0.815188 0.461028 +vt 0.823718 0.455479 +vt 0.821673 0.454748 +vt 0.820090 0.454786 +vt 0.836245 0.391267 +vt 0.834237 0.399896 +vt 0.835546 0.400301 +vt 0.836766 0.402108 +vt 0.808673 0.473762 +vt 0.812595 0.467697 +vt 0.814744 0.462147 +vt 0.813853 0.466500 +vt 0.816656 0.460665 +vt 0.825193 0.453255 +vt 0.819293 0.456142 +vt 0.836282 0.388774 +vt 0.842700 0.397757 +vt 0.837829 0.398971 +vt 0.842471 0.395611 +vt 0.838695 0.404135 +vt 0.811219 0.473429 +vt 0.809598 0.473931 +vt 0.808263 0.475954 +vt 0.815696 0.465002 +vt 0.819004 0.458036 +vt 0.824884 0.454480 +vt 0.821367 0.458387 +vt 0.819989 0.456435 +vt 0.840107 0.392829 +vt 0.841343 0.398422 +vt 0.840238 0.399206 +vt 0.839545 0.400932 +vt 0.813365 0.469448 +vt 0.814522 0.467563 +vt 0.818018 0.461609 +vt 0.826367 0.455044 +vt 0.824783 0.455925 +vt 0.823931 0.457834 +vt 0.842924 0.399312 +vt 0.843487 0.398232 +vt 0.843378 0.394618 +vt 0.840653 0.401715 +vt 0.810441 0.478571 +vt 0.809312 0.478049 +vt 0.811935 0.474446 +vt 0.814819 0.469649 +vt 0.819524 0.460592 +vt 0.825461 0.455610 +vt 0.821408 0.461139 +vt 0.841419 0.400077 +vt 0.844222 0.397039 +vt 0.843332 0.392216 +vt 0.840803 0.405077 +vt 0.808923 0.480536 +vt 0.813321 0.473253 +vt 0.818054 0.468783 +vt 0.817561 0.464428 +vt 0.818701 0.461952 +vt 0.826188 0.456227 +vt 0.825008 0.457426 +vt 0.819518 0.462530 +vt 0.823655 0.460983 +vt 0.842002 0.401824 +vt 0.843440 0.400885 +vt 0.844902 0.399244 +vt 0.845367 0.397050 +vt 0.811550 0.478282 +vt 0.809615 0.479699 +vt 0.807942 0.481912 +vt 0.812338 0.476259 +vt 0.815193 0.473638 +vt 0.827599 0.454598 +vt 0.820083 0.463972 +vt 0.846289 0.395573 +vt 0.842708 0.403753 +vt 0.811064 0.480385 +vt 0.810117 0.482629 +vt 0.808594 0.485588 +vt 0.807223 0.483170 +vt 0.814054 0.472966 +vt 0.813723 0.475529 +vt 0.818595 0.465518 +vt 0.817521 0.470958 +vt 0.825983 0.459041 +vt 0.821230 0.465485 +vt 0.845444 0.398069 +vt 0.847460 0.395074 +vt 0.846178 0.396795 +vt 0.812730 0.477784 +vt 0.812222 0.479854 +vt 0.819519 0.466340 +vt 0.818632 0.471113 +vt 0.816940 0.474511 +vt 0.827632 0.458345 +vt 0.824754 0.463594 +vt 0.822274 0.467868 +vt 0.845875 0.398292 +vt 0.847231 0.397456 +vt 0.846054 0.397460 +vt 0.812222 0.481624 +vt 0.809939 0.486788 +vt 0.813682 0.478635 +vt 0.815584 0.476567 +vt 0.831685 0.451027 +vt 0.846442 0.400485 +vt 0.848323 0.396882 +vt 0.846592 0.398242 +vt 0.811038 0.484188 +vt 0.817738 0.475099 +vt 0.816542 0.478519 +vt 0.825485 0.465181 +vt 0.832114 0.442426 +vt 0.829818 0.457689 +vt 0.823847 0.468126 +vt 0.849100 0.395786 +vt 0.848378 0.399762 +vt 0.847329 0.399593 +vt 0.812052 0.483365 +vt 0.813000 0.483012 +vt 0.811345 0.486010 +vt 0.814475 0.480621 +vt 0.827893 0.461901 +vt 0.835984 0.443219 +vt 0.831618 0.456489 +vt 0.820575 0.472195 +vt 0.849044 0.396655 +vt 0.849605 0.398362 +vt 0.811467 0.485178 +vt 0.818728 0.477434 +vt 0.815741 0.481168 +vt 0.824390 0.469118 +vt 0.825753 0.468049 +vt 0.834140 0.452129 +vt 0.830394 0.460173 +vt 0.828928 0.462077 +vt 0.822492 0.473838 +vt 0.812138 0.485188 +vt 0.813906 0.484281 +vt 0.816976 0.480888 +vt 0.826838 0.465685 +vt 0.836541 0.448437 +vt 0.832730 0.456801 +vt 0.831395 0.459520 +vt 0.812472 0.485593 +vt 0.818598 0.480794 +vt 0.825046 0.470156 +vt 0.828865 0.464230 +vt 0.835719 0.451472 +vt 0.831861 0.458021 +vt 0.834221 0.455960 +vt 0.829821 0.462632 +vt 0.830870 0.461816 +vt 0.823315 0.474329 +vt 0.826684 0.471506 +vt 0.837101 0.451658 +vt 0.835334 0.453905 +vt 0.832308 0.459587 +vt 0.833142 0.458839 +vt 0.831908 0.461313 +vt 0.821477 0.480223 +vt 0.829357 0.466847 +vt 0.833878 0.461508 +vt 0.838098 0.454210 +vt 0.831203 0.463772 +vt 0.820158 0.484371 +vt 0.822988 0.478994 +vt 0.824079 0.475923 +vt 0.827832 0.471783 +vt 0.832865 0.461016 +vt 0.835025 0.459301 +vt 0.836381 0.458000 +vt 0.830450 0.466595 +vt 0.832493 0.463570 +vt 0.822727 0.483125 +vt 0.836591 0.461144 +vt 0.838001 0.458589 +vt 0.824862 0.478324 +vt 0.829378 0.474170 +vt 0.833958 0.463389 +vt 0.840139 0.454853 +vt 0.832667 0.467248 +vt 0.834935 0.464708 +vt 0.839368 0.460836 +vt 0.837793 0.461974 +vt 0.834197 0.470157 +vt 0.836471 0.463256 +vt 0.842957 0.454797 +vt 0.834750 0.466926 +vt 0.837233 0.464587 +vt 0.838845 0.464239 +vt 0.844127 0.448021 +vt 0.843197 0.458540 +vt 0.835788 0.467348 +vt 0.840493 0.463493 +vt 0.844276 0.451996 +vt 0.845317 0.454249 +vt 0.837090 0.471876 +vt 0.839760 0.465852 +vt 0.837704 0.465476 +vt 0.845454 0.451132 +vt 0.845389 0.458800 +vt 0.842720 0.463190 +vt 0.839144 0.467094 +vt 0.846835 0.447115 +vt 0.846383 0.454737 +vt 0.839695 0.470820 +vt 0.842734 0.466104 +vt 0.846408 0.452001 +vt 0.845451 0.462458 +vt 0.846894 0.457873 +vt 0.841233 0.471224 +vt 0.848320 0.449608 +vt 0.848079 0.453952 +vt 0.844119 0.467787 +vt 0.847042 0.462102 +vt 0.848697 0.456586 +vt 0.841717 0.474836 +vt 0.850327 0.451046 +vt 0.845463 0.473171 +vt 0.846366 0.467597 +vt 0.849128 0.462281 +vt 0.851020 0.452710 +vt 0.841212 0.479331 +vt 0.843188 0.478128 +vt 0.848001 0.468415 +vt 0.847733 0.465952 +vt 0.852004 0.457673 +vt 0.845162 0.477572 +vt 0.841140 0.484037 +vt 0.847367 0.473697 +vt 0.851502 0.462045 +vt 0.843591 0.480354 +vt 0.849205 0.469805 +vt 0.850388 0.465818 +vt 0.852465 0.461806 +vt 0.846662 0.476298 +vt 0.845352 0.480086 +vt 0.844019 0.483112 +vt 0.848906 0.472689 +vt 0.854830 0.455879 +vt 0.852069 0.463585 +vt 0.851457 0.464038 +vt 0.847519 0.476100 +vt 0.846662 0.478134 +vt 0.848809 0.475102 +vt 0.850021 0.470408 +vt 0.849745 0.469806 +vt 0.854636 0.459618 +vt 0.854055 0.461162 +vt 0.846382 0.479828 +vt 0.846000 0.481593 +vt 0.850358 0.471550 +vt 0.851546 0.467512 +vt 0.853024 0.464063 +vt 0.848069 0.477676 +vt 0.847319 0.480029 +vt 0.850402 0.475093 +vt 0.852645 0.467867 +vt 0.855345 0.461327 +vt 0.849420 0.477671 +vt 0.849135 0.479707 +vt 0.846970 0.482870 +vt 0.254438 0.677349 +vt 0.255781 0.676410 +vt 0.255373 0.678011 +vt 0.254787 0.675922 +vt 0.256798 0.677541 +vt 0.254490 0.678691 +vt 0.256029 0.675365 +vt 0.253367 0.675927 +vt 0.256894 0.676884 +vt 0.256299 0.678929 +vt 0.253707 0.678628 +vt 0.254689 0.679892 +vt 0.256705 0.675603 +vt 0.254851 0.674229 +vt 0.253462 0.677138 +vt 0.254137 0.674400 +vt 0.257579 0.677440 +vt 0.257187 0.678540 +vt 0.255476 0.679918 +vt 0.253732 0.679680 +vt 0.255985 0.674175 +vt 0.252582 0.676606 +vt 0.252160 0.674500 +vt 0.257762 0.675970 +vt 0.257258 0.680610 +vt 0.256078 0.680776 +vt 0.252991 0.679518 +vt 0.252701 0.678175 +vt 0.253706 0.680661 +vt 0.254339 0.681577 +vt 0.257191 0.673996 +vt 0.254617 0.672554 +vt 0.253514 0.672575 +vt 0.257876 0.678789 +vt 0.258346 0.677811 +vt 0.255358 0.682050 +vt 0.253173 0.680347 +vt 0.256324 0.671837 +vt 0.252165 0.677386 +vt 0.251610 0.676422 +vt 0.252279 0.672112 +vt 0.258788 0.676235 +vt 0.258512 0.674368 +vt 0.257087 0.683700 +vt 0.256680 0.682111 +vt 0.252576 0.680420 +vt 0.252145 0.679452 +vt 0.253014 0.682102 +vt 0.252987 0.681033 +vt 0.254350 0.683209 +vt 0.257939 0.672184 +vt 0.255397 0.669856 +vt 0.253942 0.670344 +vt 0.251617 0.678147 +vt 0.251161 0.675071 +vt 0.252923 0.670918 +vt 0.251439 0.673183 +vt 0.258881 0.679959 +vt 0.259277 0.677776 +vt 0.257487 0.683370 +vt 0.255200 0.683189 +vt 0.257180 0.669084 +vt 0.256200 0.668544 +vt 0.250883 0.675803 +vt 0.251854 0.669248 +vt 0.250626 0.672177 +vt 0.258469 0.682326 +vt 0.259219 0.675269 +vt 0.259605 0.676342 +vt 0.259338 0.672786 +vt 0.256979 0.684224 +vt 0.256087 0.684387 +vt 0.252389 0.681183 +vt 0.251750 0.680498 +vt 0.251192 0.679540 +vt 0.253432 0.683893 +vt 0.255079 0.684161 +vt 0.260012 0.671315 +vt 0.254497 0.666861 +vt 0.250791 0.677061 +vt 0.249934 0.673496 +vt 0.251100 0.676441 +vt 0.249917 0.676093 +vt 0.259216 0.682660 +vt 0.259982 0.680860 +vt 0.259369 0.674280 +vt 0.260695 0.676719 +vt 0.258476 0.684663 +vt 0.257493 0.684725 +vt 0.250593 0.678589 +vt 0.254346 0.684650 +vt 0.252283 0.683124 +vt 0.251586 0.681409 +vt 0.258814 0.667600 +vt 0.256962 0.665263 +vt 0.249428 0.674591 +vt 0.249211 0.670663 +vt 0.249119 0.672483 +vt 0.258811 0.683328 +vt 0.259833 0.675110 +vt 0.259918 0.673827 +vt 0.259955 0.672865 +vt 0.256917 0.685632 +vt 0.255045 0.686136 +vt 0.250629 0.680531 +vt 0.250403 0.679598 +vt 0.253538 0.685446 +vt 0.251785 0.682197 +vt 0.252627 0.684361 +vt 0.260257 0.669468 +vt 0.252034 0.664035 +vt 0.254904 0.657666 +vt 0.249792 0.677743 +vt 0.248759 0.673625 +vt 0.249123 0.676490 +vt 0.249147 0.666884 +vt 0.260071 0.683704 +vt 0.259146 0.683774 +vt 0.261395 0.677675 +vt 0.260474 0.674655 +vt 0.260477 0.672980 +vt 0.257702 0.685829 +vt 0.256145 0.685951 +vt 0.249725 0.679050 +vt 0.251128 0.682559 +vt 0.252011 0.683660 +vt 0.250359 0.681347 +vt 0.260269 0.660550 +vt 0.260981 0.671165 +vt 0.261618 0.666856 +vt 0.248187 0.675162 +vt 0.247707 0.672852 +vt 0.246940 0.670476 +vt 0.260945 0.681008 +vt 0.261497 0.675696 +vt 0.259084 0.684395 +vt 0.258197 0.686461 +vt 0.256658 0.686616 +vt 0.257604 0.687963 +vt 0.256189 0.687184 +vt 0.249866 0.679931 +vt 0.253168 0.687759 +vt 0.252221 0.685608 +vt 0.251537 0.683134 +vt 0.251782 0.684318 +vt 0.261174 0.669398 +vt 0.248865 0.660683 +vt 0.249374 0.678429 +vt 0.248921 0.677779 +vt 0.247996 0.677105 +vt 0.243475 0.665933 +vt 0.261301 0.683165 +vt 0.259401 0.684201 +vt 0.262819 0.677883 +vt 0.262007 0.679468 +vt 0.261566 0.674207 +vt 0.261367 0.672875 +vt 0.259470 0.685226 +vt 0.259176 0.687713 +vt 0.255690 0.689543 +vt 0.248468 0.680524 +vt 0.248968 0.679710 +vt 0.250567 0.683142 +vt 0.249671 0.682363 +vt 0.251425 0.683564 +vt 0.261850 0.670233 +vt 0.249068 0.678793 +vt 0.246797 0.674742 +vt 0.246807 0.676331 +vt 0.246276 0.673475 +vt 0.242985 0.672085 +vt 0.261783 0.681245 +vt 0.261050 0.684681 +vt 0.262528 0.675418 +vt 0.261734 0.671780 +vt 0.250897 0.686903 +vt 0.251519 0.693426 +vt 0.251099 0.684990 +vt 0.250967 0.683921 +vt 0.263181 0.670550 +vt 0.244310 0.660296 +vt 0.248378 0.678576 +vt 0.245970 0.677146 +vt 0.245412 0.673712 +vt 0.242147 0.668197 +vt 0.262349 0.682916 +vt 0.262182 0.685106 +vt 0.260882 0.687279 +vt 0.263248 0.675802 +vt 0.262789 0.680582 +vt 0.263072 0.673582 +vt 0.262087 0.672872 +vt 0.260733 0.695223 +vt 0.248065 0.682109 +vt 0.247868 0.679473 +vt 0.249832 0.682992 +vt 0.262394 0.671792 +vt 0.264281 0.668169 +vt 0.242150 0.663977 +vt 0.245929 0.675535 +vt 0.247486 0.678280 +vt 0.241218 0.669911 +vt 0.242110 0.666070 +vt 0.244210 0.675399 +vt 0.263512 0.682340 +vt 0.264520 0.674711 +vt 0.263816 0.679610 +vt 0.247230 0.680388 +vt 0.248530 0.683336 +vt 0.250413 0.685262 +vt 0.249280 0.687674 +vt 0.250358 0.684259 +vt 0.249891 0.683354 +vt 0.249329 0.683518 +vt 0.250498 0.683648 +vt 0.264181 0.663256 +vt 0.264619 0.670825 +vt 0.241403 0.661578 +vt 0.245448 0.676097 +vt 0.240820 0.668131 +vt 0.240729 0.672024 +vt 0.241124 0.665779 +vt 0.245237 0.675280 +vt 0.263252 0.684205 +vt 0.262715 0.687814 +vt 0.263839 0.674992 +vt 0.264351 0.677134 +vt 0.246579 0.680610 +vt 0.247623 0.683283 +vt 0.246885 0.679270 +vt 0.250136 0.685639 +vt 0.247139 0.688879 +vt 0.249655 0.685826 +vt 0.250177 0.683594 +vt 0.267088 0.666663 +vt 0.264231 0.672543 +vt 0.265848 0.670426 +vt 0.241032 0.663669 +vt 0.244954 0.676890 +vt 0.240699 0.669208 +vt 0.240227 0.669125 +vt 0.241496 0.674540 +vt 0.245001 0.675854 +vt 0.264209 0.686819 +vt 0.263764 0.684029 +vt 0.264178 0.674070 +vt 0.264809 0.675611 +vt 0.264996 0.678014 +vt 0.264583 0.680697 +vt 0.246671 0.680074 +vt 0.246717 0.682391 +vt 0.248646 0.684449 +vt 0.247884 0.684534 +vt 0.249869 0.684877 +vt 0.245214 0.692920 +vt 0.247874 0.686156 +vt 0.248800 0.685626 +vt 0.249764 0.683978 +vt 0.265265 0.672447 +vt 0.240540 0.662582 +vt 0.239897 0.665580 +vt 0.239438 0.670882 +vt 0.240205 0.674381 +vt 0.264476 0.684288 +vt 0.264822 0.673906 +vt 0.264645 0.682650 +vt 0.246064 0.679920 +vt 0.246025 0.682582 +vt 0.249290 0.684665 +vt 0.247205 0.684193 +vt 0.246810 0.683371 +vt 0.243903 0.689220 +vt 0.242618 0.702422 +vt 0.246592 0.686188 +vt 0.267344 0.669551 +vt 0.266121 0.672760 +vt 0.240246 0.663679 +vt 0.240307 0.661188 +vt 0.239430 0.673288 +vt 0.239163 0.667056 +vt 0.265624 0.674237 +vt 0.266319 0.676215 +vt 0.245810 0.681392 +vt 0.246312 0.683106 +vt 0.248274 0.685190 +vt 0.247221 0.685155 +vt 0.240803 0.692181 +vt 0.245560 0.687464 +vt 0.259367 0.713523 +vt 0.266957 0.672098 +vt 0.239934 0.661859 +vt 0.239345 0.661240 +vt 0.238627 0.669489 +vt 0.245994 0.683431 +vt 0.246603 0.684609 +vt 0.246275 0.683836 +vt 0.244728 0.687644 +vt 0.249239 0.714921 +vt 0.245633 0.686030 +vt 0.266672 0.674571 +vt 0.239511 0.659292 +vt 0.238870 0.662332 +vt 0.238234 0.663423 +vt 0.245609 0.683567 +vt 0.244116 0.687586 +vt 0.245144 0.686812 +vt 0.254447 0.716602 +vt 0.241371 0.711400 +vt 0.246218 0.684454 +vt 0.238152 0.652809 +vt 0.245898 0.684172 +vt 0.244681 0.686913 +vt 0.255485 0.719501 +vt 0.253277 0.718672 +vt 0.245025 0.714585 +vt 0.236960 0.708612 +vt 0.244668 0.686266 +vt 0.245437 0.684726 +vt 0.258681 0.720018 +vt 0.251498 0.719179 +vt 0.242788 0.713895 +vt 0.247008 0.716387 +vt 0.237409 0.711104 +vt 0.254751 0.720634 +vt 0.261981 0.721400 +vt 0.258120 0.721666 +vt 0.250100 0.718783 +vt 0.252299 0.720083 +vt 0.241692 0.712827 +vt 0.244212 0.715625 +vt 0.245551 0.716356 +vt 0.248491 0.718051 +vt 0.238424 0.712168 +vt 0.236077 0.710595 +vt 0.253665 0.720407 +vt 0.256525 0.721182 +vt 0.260139 0.721920 +vt 0.263835 0.720756 +vt 0.259065 0.722302 +vt 0.251093 0.721018 +vt 0.249344 0.717481 +vt 0.252327 0.721552 +vt 0.240835 0.713067 +vt 0.241764 0.713855 +vt 0.242970 0.715730 +vt 0.246388 0.717227 +vt 0.247218 0.717940 +vt 0.236723 0.712425 +vt 0.239404 0.712985 +vt 0.234865 0.710767 +vt 0.235732 0.711700 +vt 0.253923 0.721529 +vt 0.255588 0.722069 +vt 0.261035 0.722774 +vt 0.266799 0.722860 +vt 0.266967 0.725330 +vt 0.258194 0.722825 +vt 0.250276 0.720964 +vt 0.249416 0.718634 +vt 0.242397 0.714517 +vt 0.244027 0.717128 +vt 0.244813 0.716777 +vt 0.245868 0.717137 +vt 0.247714 0.718919 +vt 0.237603 0.713612 +vt 0.234321 0.709545 +vt 0.260025 0.723218 +vt 0.262164 0.723474 +vt 0.263797 0.724076 +vt 0.258971 0.723973 +vt 0.250717 0.722051 +vt 0.249700 0.719895 +vt 0.251631 0.722223 +vt 0.253450 0.721923 +vt 0.240003 0.713841 +vt 0.240820 0.714749 +vt 0.241954 0.715120 +vt 0.243149 0.717249 +vt 0.245450 0.717529 +vt 0.246523 0.718260 +vt 0.246039 0.717732 +vt 0.247003 0.719142 +vt 0.248155 0.719727 +vt 0.249193 0.719316 +vt 0.236168 0.713544 +vt 0.235543 0.712758 +vt 0.238574 0.713868 +vt 0.234495 0.712413 +vt 0.233664 0.710525 +vt 0.254518 0.722351 +vt 0.257134 0.722928 +vt 0.261313 0.723591 +vt 0.260498 0.723566 +vt 0.265137 0.725271 +vt 0.258022 0.723966 +vt 0.251151 0.722528 +vt 0.250306 0.722590 +vt 0.249649 0.721502 +vt 0.252087 0.722824 +vt 0.254250 0.722396 +vt 0.253122 0.722617 +vt 0.239230 0.714203 +vt 0.244784 0.717660 +vt 0.242732 0.716595 +vt 0.243711 0.718858 +vt 0.247545 0.719858 +vt 0.248798 0.719873 +vt 0.236613 0.714329 +vt 0.237732 0.714526 +vt 0.233736 0.711529 +vt 0.232975 0.709558 +vt 0.255162 0.722985 +vt 0.256110 0.723028 +vt 0.259785 0.724276 +vt 0.262966 0.724510 +vt 0.261836 0.724340 +vt 0.260160 0.723827 +vt 0.263672 0.725124 +vt 0.266386 0.726369 +vt 0.258315 0.724938 +vt 0.251093 0.723449 +vt 0.249304 0.720345 +vt 0.251607 0.723182 +vt 0.252750 0.723140 +vt 0.253730 0.723248 +vt 0.239807 0.714983 +vt 0.241421 0.716079 +vt 0.244980 0.718562 +vt 0.242569 0.717147 +vt 0.242730 0.718181 +vt 0.245926 0.718740 +vt 0.246424 0.719030 +vt 0.246980 0.720488 +vt 0.247765 0.720965 +vt 0.248445 0.720711 +vt 0.235858 0.714679 +vt 0.237150 0.715042 +vt 0.234993 0.713764 +vt 0.238644 0.714656 +vt 0.233169 0.712858 +vt 0.232879 0.710953 +vt 0.254516 0.723212 +vt 0.257388 0.724069 +vt 0.256764 0.723701 +vt 0.259389 0.724896 +vt 0.260936 0.724348 +vt 0.260360 0.724141 +vt 0.264565 0.725475 +vt 0.265537 0.725810 +vt 0.267365 0.726909 +vt 0.257445 0.724800 +vt 0.258887 0.725469 +vt 0.250954 0.723838 +vt 0.249780 0.722870 +vt 0.248969 0.721149 +vt 0.252192 0.724016 +vt 0.253262 0.723313 +vt 0.240437 0.715990 +vt 0.239058 0.715564 +vt 0.241845 0.717428 +vt 0.243044 0.719681 +vt 0.244696 0.719723 +vt 0.236444 0.715038 +vt 0.234004 0.713439 +vt 0.237911 0.715296 +vt 0.255097 0.723942 +vt 0.255810 0.723876 +vt 0.256247 0.723761 +vt 0.260048 0.725042 +vt 0.262597 0.725210 +vt 0.261714 0.725453 +vt 0.265045 0.725543 +vt 0.264289 0.726231 +vt 0.265463 0.726154 +vt 0.268306 0.727605 +vt 0.267474 0.728002 +vt 0.257987 0.725834 +vt 0.258409 0.725634 +vt 0.251562 0.723917 +vt 0.251435 0.724264 +vt 0.250231 0.723797 +vt 0.249022 0.722589 +vt 0.252921 0.724075 +vt 0.254293 0.724467 +vt 0.253500 0.724518 +vt 0.240125 0.716659 +vt 0.240630 0.716832 +vt 0.244157 0.720545 +vt 0.242112 0.719052 +vt 0.245558 0.719540 +vt 0.246141 0.720687 +vt 0.247175 0.721274 +vt 0.248408 0.721701 +vt 0.235975 0.715419 +vt 0.235128 0.715301 +vt 0.234124 0.714283 +vt 0.237498 0.715759 +vt 0.233692 0.713672 +vt 0.256306 0.724577 +vt 0.259602 0.725862 +vt 0.263358 0.726427 +vt 0.260695 0.725327 +vt 0.264800 0.725850 +vt 0.266504 0.727789 +vt 0.269203 0.727184 +vt 0.257223 0.725997 +vt 0.258726 0.726570 +vt 0.250995 0.724378 +vt 0.250783 0.724745 +vt 0.249589 0.723845 +vt 0.239233 0.717034 +vt 0.243719 0.721329 +vt 0.242526 0.720435 +vt 0.245402 0.720812 +vt 0.244754 0.720985 +vt 0.240671 0.717489 +vt 0.247639 0.722103 +vt 0.237196 0.716180 +vt 0.233889 0.713772 +vt 0.238617 0.716448 +vt 0.237927 0.716459 +vt 0.233520 0.714117 +vt 0.255617 0.724980 +vt 0.254925 0.725211 +vt 0.260446 0.726547 +vt 0.262416 0.726459 +vt 0.261553 0.727054 +vt 0.264050 0.727230 +vt 0.265034 0.726523 +vt 0.268457 0.728804 +vt 0.269209 0.728135 +vt 0.267233 0.729029 +vt 0.256621 0.725454 +vt 0.257909 0.727245 +vt 0.251646 0.725623 +vt 0.250205 0.725024 +vt 0.248886 0.723707 +vt 0.252154 0.725333 +vt 0.253462 0.725848 +vt 0.253896 0.725211 +vt 0.239973 0.717324 +vt 0.244474 0.721980 +vt 0.241586 0.720053 +vt 0.245934 0.721420 +vt 0.246881 0.722446 +vt 0.235943 0.716043 +vt 0.234277 0.715381 +vt 0.236832 0.716795 +vt 0.233057 0.714267 +vt 0.254305 0.725911 +vt 0.259624 0.727422 +vt 0.263340 0.727614 +vt 0.264754 0.727514 +vt 0.266126 0.728812 +vt 0.268065 0.729543 +vt 0.270989 0.729253 +vt 0.255825 0.725850 +vt 0.256958 0.727453 +vt 0.249345 0.727503 +vt 0.248696 0.724769 +vt 0.252789 0.725925 +vt 0.239800 0.718001 +vt 0.238981 0.717801 +vt 0.240498 0.718376 +vt 0.243637 0.722174 +vt 0.241992 0.721372 +vt 0.245123 0.721718 +vt 0.235439 0.716304 +vt 0.234861 0.716245 +vt 0.233782 0.715015 +vt 0.232525 0.713743 +vt 0.255329 0.725981 +vt 0.260199 0.728186 +vt 0.258847 0.727526 +vt 0.262381 0.727584 +vt 0.260911 0.728163 +vt 0.264509 0.728468 +vt 0.265341 0.728376 +vt 0.270269 0.729989 +vt 0.269413 0.730848 +vt 0.267657 0.730506 +vt 0.257571 0.728211 +vt 0.252421 0.726601 +vt 0.250767 0.726967 +vt 0.247316 0.723978 +vt 0.253104 0.726623 +vt 0.242619 0.721480 +vt 0.244234 0.722818 +vt 0.240913 0.720344 +vt 0.240832 0.719358 +vt 0.245844 0.722027 +vt 0.244779 0.723070 +vt 0.236008 0.716934 +vt 0.234085 0.716102 +vt 0.238063 0.717644 +vt 0.233252 0.715381 +vt 0.232561 0.714599 +vt 0.231669 0.712126 +vt 0.255426 0.726982 +vt 0.259433 0.728347 +vt 0.263327 0.728787 +vt 0.261887 0.727988 +vt 0.265926 0.730156 +vt 0.268529 0.730970 +vt 0.271231 0.730406 +vt 0.258546 0.728339 +vt 0.257157 0.728653 +vt 0.252241 0.727795 +vt 0.251887 0.730484 +vt 0.248284 0.726634 +vt 0.247276 0.724876 +vt 0.253538 0.726614 +vt 0.240143 0.719081 +vt 0.242987 0.722676 +vt 0.243976 0.723558 +vt 0.241757 0.721981 +vt 0.237929 0.718030 +vt 0.235256 0.716709 +vt 0.238989 0.718350 +vt 0.232005 0.714004 +vt 0.254260 0.727088 +vt 0.260106 0.729059 +vt 0.260463 0.728939 +vt 0.262379 0.728777 +vt 0.261520 0.728958 +vt 0.264571 0.729987 +vt 0.270684 0.730903 +vt 0.269111 0.732219 +vt 0.272176 0.730246 +vt 0.267051 0.731871 +vt 0.268134 0.732105 +vt 0.256329 0.728421 +vt 0.257302 0.729350 +vt 0.253215 0.727279 +vt 0.249065 0.730612 +vt 0.247146 0.728300 +vt 0.245993 0.726286 +vt 0.243472 0.722630 +vt 0.240246 0.719610 +vt 0.240969 0.720732 +vt 0.232102 0.714683 +vt 0.231462 0.713537 +vt 0.255197 0.727647 +vt 0.259889 0.729633 +vt 0.260850 0.729427 +vt 0.259459 0.729477 +vt 0.263135 0.729056 +vt 0.261908 0.728777 +vt 0.263384 0.729766 +vt 0.269830 0.731691 +vt 0.269518 0.731797 +vt 0.271371 0.731413 +vt 0.271836 0.731359 +vt 0.266118 0.730949 +vt 0.258608 0.729098 +vt 0.253152 0.727954 +vt 0.253230 0.728928 +vt 0.252129 0.734242 +vt 0.244580 0.725504 +vt 0.240585 0.720458 +vt 0.242970 0.724109 +vt 0.231218 0.713957 +vt 0.231210 0.712521 +vt 0.253998 0.727814 +vt 0.260306 0.729583 +vt 0.262409 0.729900 +vt 0.261387 0.730546 +vt 0.265453 0.731124 +vt 0.264101 0.731393 +vt 0.270245 0.732193 +vt 0.268687 0.733055 +vt 0.269851 0.732587 +vt 0.270894 0.731869 +vt 0.272489 0.731238 +vt 0.266118 0.731946 +vt 0.267733 0.732637 +vt 0.255577 0.729368 +vt 0.258394 0.731543 +vt 0.254468 0.730482 +vt 0.254343 0.733436 +vt 0.230901 0.713308 +vt 0.231124 0.711376 +vt 0.254089 0.728695 +vt 0.260556 0.730180 +vt 0.259941 0.731009 +vt 0.264898 0.731503 +vt 0.263520 0.731635 +vt 0.269048 0.733641 +vt 0.268172 0.733294 +vt 0.271732 0.732905 +vt 0.273307 0.731482 +vt 0.272955 0.732746 +vt 0.266479 0.733151 +vt 0.267470 0.733278 +vt 0.256604 0.731634 +vt 0.230112 0.712611 +vt 0.230512 0.711584 +vt 0.262158 0.732072 +vt 0.260685 0.731209 +vt 0.265239 0.732330 +vt 0.264887 0.733567 +vt 0.270674 0.733097 +vt 0.270352 0.734196 +vt 0.259256 0.733218 +vt 0.257080 0.734155 +vt 0.260862 0.732167 +vt 0.263966 0.733905 +vt 0.267193 0.734100 +vt 0.268699 0.735715 +vt 0.271340 0.734220 +vt 0.272472 0.733232 +vt 0.274221 0.732708 +vt 0.266447 0.734303 +vt 0.262271 0.734831 +vt 0.264925 0.735623 +vt 0.270302 0.735745 +vt 0.272504 0.734080 +vt 0.273374 0.733792 +vt 0.274209 0.733941 +vt 0.263973 0.735864 +vt 0.266080 0.737662 +vt 0.262563 0.735366 +vt 0.267161 0.735905 +vt 0.271083 0.735148 +vt 0.269310 0.737168 +vt 0.273106 0.735835 +vt 0.274998 0.733066 +vt 0.264338 0.737980 +vt 0.272284 0.736735 +vt 0.270517 0.737863 +vt 0.273537 0.735382 +vt 0.274066 0.735289 +vt 0.275955 0.735050 +vt 0.268871 0.738470 +vt 0.267350 0.740621 +vt 0.269878 0.739085 +vt 0.274079 0.736731 +vt 0.275282 0.735866 +vt 0.268420 0.740443 +vt 0.265342 0.740426 +vt 0.273721 0.737653 +vt 0.271647 0.739468 +vt 0.274486 0.736204 +vt 0.275970 0.736895 +vt 0.269121 0.739566 +vt 0.269690 0.743378 +vt 0.266253 0.743113 +vt 0.270159 0.740188 +vt 0.276462 0.738382 +vt 0.275483 0.737169 +vt 0.276760 0.737013 +vt 0.270774 0.741734 +vt 0.267733 0.743975 +vt 0.265313 0.743992 +vt 0.273194 0.740977 +vt 0.274889 0.742134 +vt 0.277221 0.736071 +vt 0.271067 0.742254 +vt 0.269947 0.744451 +vt 0.272286 0.742711 +vt 0.278558 0.739175 +vt 0.277010 0.734859 +vt 0.277654 0.737457 +vt 0.273486 0.744093 +vt 0.274135 0.743327 +vt 0.276474 0.743494 +vt 0.277809 0.735228 +vt 0.278015 0.736522 +vt 0.272661 0.745223 +vt 0.278729 0.737597 +vt 0.272556 0.747822 +vt 0.275852 0.745666 +vt 0.274595 0.745847 +vt 0.278507 0.736065 +vt 0.274884 0.748747 +vt 0.271077 0.747650 +vt 0.273330 0.749295 +vt 0.272479 0.750273 +vt 0.273591 0.750259 +vt 0.274329 0.690218 +vt 0.275066 0.692730 +vt 0.274422 0.692327 +vt 0.275072 0.690070 +vt 0.272941 0.691522 +vt 0.273947 0.688300 +vt 0.276023 0.689598 +vt 0.271676 0.689730 +vt 0.271909 0.686199 +vt 0.274610 0.686763 +vt 0.277241 0.692260 +vt 0.271251 0.692102 +vt 0.273793 0.686213 +vt 0.276805 0.690317 +vt 0.275696 0.686825 +vt 0.271005 0.687079 +vt 0.270468 0.689890 +vt 0.272708 0.682227 +vt 0.274575 0.684912 +vt 0.277393 0.691324 +vt 0.276265 0.688766 +vt 0.275028 0.685000 +vt 0.270527 0.688406 +vt 0.271183 0.685305 +vt 0.269764 0.691218 +vt 0.271965 0.682486 +vt 0.273385 0.681151 +vt 0.277422 0.690396 +vt 0.278097 0.692311 +vt 0.275487 0.684577 +vt 0.270027 0.686711 +vt 0.270697 0.685813 +vt 0.269519 0.688610 +vt 0.274140 0.681657 +vt 0.274989 0.682802 +vt 0.278441 0.694201 +vt 0.271087 0.682056 +vt 0.270281 0.685046 +vt 0.268474 0.690042 +vt 0.278588 0.692724 +vt 0.269052 0.686474 +vt 0.268393 0.687698 +vt 0.269504 0.685165 +vt 0.269723 0.683044 +vt 0.267755 0.688618 +vt 0.268219 0.685217 +vt 0.267033 0.690188 +vt 0.267692 0.687257 +vt 0.266607 0.688445 +vt 0.267074 0.686881 +vt 0.266152 0.690394 +vt 0.265917 0.687537 +vt 0.928969 0.406937 +vt 0.930025 0.408480 +vt 0.929186 0.408916 +vt 0.929711 0.405586 +vt 0.929106 0.410750 +vt 0.928019 0.409488 +vt 0.928174 0.404104 +vt 0.930663 0.406696 +vt 0.930100 0.410714 +vt 0.927939 0.406829 +vt 0.928397 0.401976 +vt 0.930061 0.403741 +vt 0.930943 0.408098 +vt 0.931063 0.409491 +vt 0.929404 0.412958 +vt 0.927668 0.411843 +vt 0.926433 0.407316 +vt 0.926723 0.401069 +vt 0.927191 0.401092 +vt 0.930926 0.405517 +vt 0.931367 0.406910 +vt 0.930860 0.411513 +vt 0.928022 0.413243 +vt 0.927368 0.410882 +vt 0.926858 0.409644 +vt 0.926508 0.403688 +vt 0.928888 0.395784 +vt 0.931175 0.403688 +vt 0.931780 0.411283 +vt 0.927788 0.415618 +vt 0.930565 0.412932 +vt 0.926633 0.411687 +vt 0.926364 0.414878 +vt 0.925979 0.409448 +vt 0.925599 0.406193 +vt 0.926092 0.401078 +vt 0.925709 0.397451 +vt 0.926187 0.394753 +vt 0.932068 0.408412 +vt 0.929184 0.415432 +vt 0.926439 0.413281 +vt 0.925161 0.408378 +vt 0.924183 0.404664 +vt 0.931197 0.399174 +vt 0.928024 0.392927 +vt 0.932159 0.405605 +vt 0.930924 0.414490 +vt 0.932688 0.409427 +vt 0.925491 0.412584 +vt 0.924875 0.409986 +vt 0.924702 0.407995 +vt 0.924697 0.406721 +vt 0.925093 0.399219 +vt 0.924623 0.393922 +vt 0.932038 0.401855 +vt 0.930447 0.395902 +vt 0.924964 0.391191 +vt 0.932859 0.405204 +vt 0.933151 0.407379 +vt 0.932258 0.412670 +vt 0.932890 0.410935 +vt 0.924024 0.405556 +vt 0.924288 0.396086 +vt 0.931759 0.397421 +vt 0.931224 0.393877 +vt 0.933762 0.408860 +vt 0.921885 0.414463 +vt 0.923633 0.410161 +vt 0.924172 0.407887 +vt 0.922982 0.405652 +vt 0.922643 0.397526 +vt 0.924210 0.393406 +vt 0.924080 0.391782 +vt 0.932444 0.401237 +vt 0.933859 0.406925 +vt 0.922717 0.417099 +vt 0.923453 0.407969 +vt 0.922828 0.403192 +vt 0.923617 0.394242 +vt 0.933139 0.400081 +vt 0.932344 0.396348 +vt 0.933584 0.404453 +vt 0.922388 0.411161 +vt 0.921560 0.415877 +vt 0.921580 0.403715 +vt 0.922634 0.407280 +vt 0.922235 0.393548 +vt 0.921448 0.398958 +vt 0.923534 0.392731 +vt 0.932956 0.395606 +vt 0.921236 0.414483 +vt 0.922482 0.409138 +vt 0.920870 0.417369 +vt 0.921173 0.405211 +vt 0.921244 0.406911 +vt 0.920569 0.415981 +vt 0.920360 0.404074 +vt 0.920393 0.400819 +vt 0.921661 0.409659 +vt 0.921304 0.408652 +vt 0.919185 0.395722 +vt 0.920831 0.415276 +vt 0.920194 0.416627 +vt 0.920230 0.406394 +vt 0.918842 0.408779 +vt 0.918667 0.391351 +vt 0.920533 0.413033 +vt 0.920011 0.415023 +vt 0.919144 0.417664 +vt 0.919251 0.403509 +vt 0.920051 0.405032 +vt 0.918006 0.398071 +vt 0.919613 0.410576 +vt 0.918017 0.392634 +vt 0.919273 0.416531 +vt 0.919039 0.405776 +vt 0.918291 0.411086 +vt 0.918602 0.412874 +vt 0.918319 0.415644 +vt 0.918184 0.417373 +vt 0.917778 0.401789 +vt 0.918272 0.408398 +vt 0.917093 0.391735 +vt 0.918154 0.414542 +vt 0.916746 0.419484 +vt 0.916445 0.396307 +vt 0.918624 0.403876 +vt 0.918231 0.406860 +vt 0.916795 0.413267 +vt 0.916232 0.411217 +vt 0.917250 0.417744 +vt 0.915770 0.415805 +vt 0.915396 0.421427 +vt 0.916921 0.400509 +vt 0.917901 0.405105 +vt 0.918808 0.405017 +vt 0.916894 0.407110 +vt 0.915617 0.392566 +vt 0.916460 0.410018 +vt 0.914693 0.418100 +vt 0.914737 0.419645 +vt 0.915704 0.400578 +vt 0.916799 0.403855 +vt 0.913577 0.393998 +vt 0.914787 0.414281 +vt 0.915947 0.410469 +vt 0.914432 0.416244 +vt 0.912662 0.422118 +vt 0.914229 0.398105 +vt 0.916050 0.408683 +vt 0.914085 0.390777 +vt 0.913779 0.420710 +vt 0.913761 0.417649 +vt 0.909254 0.426826 +vt 0.915878 0.406172 +vt 0.914712 0.401800 +vt 0.910137 0.391618 +vt 0.912088 0.396571 +vt 0.914516 0.411866 +vt 0.915603 0.408774 +vt 0.913881 0.415490 +vt 0.913500 0.419050 +vt 0.912761 0.417089 +vt 0.904696 0.429535 +vt 0.911016 0.421876 +vt 0.913457 0.402074 +vt 0.912794 0.403028 +vt 0.914068 0.414131 +vt 0.915079 0.409609 +vt 0.913031 0.419873 +vt 0.912269 0.419276 +vt 0.907147 0.426233 +vt 0.914939 0.404940 +vt 0.913663 0.403991 +vt 0.910157 0.400247 +vt 0.911712 0.401331 +vt 0.913325 0.413658 +vt 0.914680 0.409874 +vt 0.914963 0.407886 +vt 0.911742 0.416797 +vt 0.913047 0.415167 +vt 0.909230 0.421012 +vt 0.904304 0.428987 +vt 0.906999 0.424008 +vt 0.908296 0.389907 +vt 0.911904 0.403512 +vt 0.913659 0.412065 +vt 0.913538 0.414535 +vt 0.913871 0.409046 +vt 0.903969 0.426297 +vt 0.914244 0.406635 +vt 0.912937 0.405001 +vt 0.910294 0.402218 +vt 0.908806 0.397829 +vt 0.912110 0.404964 +vt 0.911285 0.404689 +vt 0.913062 0.412372 +vt 0.912723 0.414610 +vt 0.908959 0.419079 +vt 0.911990 0.415400 +vt 0.905446 0.422871 +vt 0.909151 0.402419 +vt 0.907041 0.395193 +vt 0.908657 0.400843 +vt 0.911638 0.405909 +vt 0.912182 0.413972 +vt 0.909645 0.417154 +vt 0.910898 0.415422 +vt 0.901159 0.427719 +vt 0.912143 0.407236 +vt 0.910442 0.404734 +vt 0.909824 0.405118 +vt 0.907883 0.398984 +vt 0.906941 0.390265 +vt 0.911263 0.406466 +vt 0.911937 0.411593 +vt 0.909878 0.416273 +vt 0.902980 0.421052 +vt 0.908722 0.404074 +vt 0.907941 0.402228 +vt 0.907231 0.398510 +vt 0.905910 0.395332 +vt 0.911296 0.407567 +vt 0.911810 0.409181 +vt 0.911292 0.413413 +vt 0.900340 0.426152 +vt 0.910123 0.407695 +vt 0.908706 0.406689 +vt 0.907540 0.400511 +vt 0.904981 0.389139 +vt 0.910798 0.407945 +vt 0.910449 0.409985 +vt 0.909642 0.412529 +vt 0.907531 0.416377 +vt 0.910059 0.415611 +vt 0.897954 0.425295 +vt 0.899256 0.428826 +vt 0.907858 0.405584 +vt 0.906801 0.401447 +vt 0.904912 0.396318 +vt 0.903351 0.390054 +vt 0.906211 0.416534 +vt 0.899323 0.421585 +vt 0.897206 0.427780 +vt 0.897894 0.428807 +vt 0.908543 0.410079 +vt 0.907641 0.407687 +vt 0.906838 0.405212 +vt 0.905243 0.401645 +vt 0.909599 0.410951 +vt 0.908426 0.413856 +vt 0.907435 0.414223 +vt 0.904402 0.417144 +vt 0.897016 0.423896 +vt 0.902241 0.418470 +vt 0.896446 0.427285 +vt 0.909684 0.409225 +vt 0.908205 0.408597 +vt 0.907292 0.406955 +vt 0.906209 0.404667 +vt 0.901889 0.393512 +vt 0.903753 0.401263 +vt 0.908278 0.412221 +vt 0.906516 0.415010 +vt 0.905023 0.415990 +vt 0.895804 0.426431 +vt 0.897375 0.422438 +vt 0.900546 0.417934 +vt 0.907438 0.409675 +vt 0.906427 0.409021 +vt 0.906531 0.406928 +vt 0.904028 0.404613 +vt 0.902741 0.388766 +vt 0.902534 0.395824 +vt 0.905809 0.413673 +vt 0.903140 0.416345 +vt 0.895065 0.425053 +vt 0.895919 0.423156 +vt 0.897866 0.420814 +vt 0.898707 0.418647 +vt 0.901419 0.416971 +vt 0.907404 0.411430 +vt 0.905146 0.407537 +vt 0.901491 0.391619 +vt 0.899591 0.399149 +vt 0.902942 0.402370 +vt 0.906889 0.412794 +vt 0.904841 0.414977 +vt 0.896139 0.422326 +vt 0.900228 0.416379 +vt 0.906322 0.412099 +vt 0.906107 0.410567 +vt 0.903930 0.406867 +vt 0.901254 0.388102 +vt 0.901803 0.399431 +vt 0.903042 0.405189 +vt 0.903360 0.414586 +vt 0.895427 0.422819 +vt 0.896322 0.420916 +vt 0.898892 0.416732 +vt 0.900693 0.415798 +vt 0.905219 0.410367 +vt 0.903890 0.409183 +vt 0.899251 0.397896 +vt 0.899033 0.387845 +vt 0.900260 0.399983 +vt 0.902141 0.402892 +vt 0.905455 0.413186 +vt 0.894219 0.424585 +vt 0.894290 0.422930 +vt 0.904548 0.412126 +vt 0.904262 0.410506 +vt 0.902845 0.408698 +vt 0.898173 0.399071 +vt 0.899068 0.391406 +vt 0.901020 0.401615 +vt 0.899735 0.399546 +vt 0.901812 0.406462 +vt 0.902353 0.413642 +vt 0.893555 0.426146 +vt 0.899921 0.415211 +vt 0.903040 0.411623 +vt 0.898097 0.395724 +vt 0.897043 0.401481 +vt 0.897850 0.388418 +vt 0.900793 0.403326 +vt 0.899560 0.400989 +vt 0.902126 0.412834 +vt 0.891807 0.425561 +vt 0.895249 0.417558 +vt 0.898607 0.415203 +vt 0.900103 0.413782 +vt 0.901676 0.409525 +vt 0.901816 0.411566 +vt 0.897036 0.397976 +vt 0.898245 0.404434 +vt 0.896715 0.384800 +vt 0.901114 0.406547 +vt 0.888579 0.423977 +vt 0.891390 0.420407 +vt 0.901549 0.408060 +vt 0.896704 0.394418 +vt 0.895864 0.400734 +vt 0.897195 0.405035 +vt 0.896630 0.391011 +vt 0.896556 0.386260 +vt 0.898423 0.406037 +vt 0.900664 0.413008 +vt 0.895404 0.415138 +vt 0.893195 0.415888 +vt 0.899238 0.413657 +vt 0.900647 0.408582 +vt 0.900920 0.409980 +vt 0.896109 0.397155 +vt 0.895790 0.404042 +vt 0.895714 0.386045 +vt 0.900189 0.407657 +vt 0.900149 0.411944 +vt 0.888039 0.421993 +vt 0.897991 0.414157 +vt 0.891642 0.417699 +vt 0.894612 0.387624 +vt 0.893996 0.393001 +vt 0.895053 0.398780 +vt 0.893359 0.402766 +vt 0.896278 0.407556 +vt 0.897672 0.407595 +vt 0.898829 0.408252 +vt 0.889640 0.419993 +vt 0.886163 0.423764 +vt 0.896833 0.412706 +vt 0.893839 0.413820 +vt 0.891484 0.416258 +vt 0.898443 0.412067 +vt 0.900168 0.410218 +vt 0.899638 0.409629 +vt 0.892848 0.395382 +vt 0.893728 0.399295 +vt 0.892554 0.404843 +vt 0.894828 0.406922 +vt 0.899322 0.409056 +vt 0.888479 0.419662 +vt 0.886474 0.422065 +vt 0.894062 0.413192 +vt 0.892210 0.414462 +vt 0.889438 0.419149 +vt 0.893048 0.389643 +vt 0.892041 0.392400 +vt 0.891785 0.401288 +vt 0.892129 0.398354 +vt 0.896655 0.409677 +vt 0.896046 0.409011 +vt 0.897664 0.410222 +vt 0.898191 0.411316 +vt 0.884276 0.422705 +vt 0.896091 0.411473 +vt 0.893303 0.412762 +vt 0.890080 0.414851 +vt 0.889128 0.418543 +vt 0.890451 0.397506 +vt 0.890674 0.402694 +vt 0.893070 0.406713 +vt 0.894634 0.408936 +vt 0.894024 0.411823 +vt 0.892041 0.412208 +vt 0.890806 0.389887 +vt 0.890472 0.405763 +vt 0.890763 0.399688 +vt 0.893619 0.408390 +vt 0.895622 0.410452 +vt 0.884873 0.420607 +vt 0.887063 0.418935 +vt 0.894424 0.410715 +vt 0.892678 0.410375 +vt 0.891124 0.412778 +vt 0.887969 0.417620 +vt 0.889024 0.403708 +vt 0.889185 0.399860 +vt 0.891051 0.407321 +vt 0.892222 0.409009 +vt 0.893477 0.409674 +vt 0.882662 0.422217 +vt 0.889517 0.398144 +vt 0.888712 0.406369 +vt 0.883585 0.419634 +vt 0.880780 0.424414 +vt 0.886770 0.417709 +vt 0.891015 0.411206 +vt 0.889547 0.394963 +vt 0.887460 0.404233 +vt 0.888392 0.401675 +vt 0.887915 0.399561 +vt 0.890720 0.409493 +vt 0.889071 0.408099 +vt 0.885513 0.417328 +vt 0.881682 0.420742 +vt 0.878761 0.423583 +vt 0.889394 0.411730 +vt 0.888257 0.415225 +vt 0.888296 0.395642 +vt 0.887967 0.407100 +vt 0.888131 0.398065 +vt 0.890342 0.408528 +vt 0.888444 0.408790 +vt 0.882765 0.418728 +vt 0.873253 0.428545 +vt 0.886673 0.415808 +vt 0.887831 0.413719 +vt 0.886951 0.405778 +vt 0.887085 0.400702 +vt 0.883124 0.416676 +vt 0.876644 0.423356 +vt 0.881223 0.418034 +vt 0.888155 0.411463 +vt 0.887135 0.396639 +vt 0.886992 0.407760 +vt 0.886857 0.403422 +vt 0.885093 0.413945 +vt 0.877969 0.421085 +vt 0.874364 0.425600 +vt 0.885347 0.411654 +vt 0.888060 0.392257 +vt 0.886894 0.409787 +vt 0.886163 0.407351 +vt 0.886163 0.406133 +vt 0.886092 0.401154 +vt 0.886139 0.398110 +vt 0.881221 0.416281 +vt 0.876594 0.421265 +vt 0.878913 0.419402 +vt 0.872906 0.426292 +vt 0.875306 0.423519 +vt 0.886237 0.391944 +vt 0.885990 0.408591 +vt 0.885306 0.402257 +vt 0.882221 0.413971 +vt 0.880027 0.417972 +vt 0.877313 0.419647 +vt 0.873880 0.425102 +vt 0.870537 0.426702 +vt 0.883455 0.412235 +vt 0.887230 0.389505 +vt 0.884350 0.407530 +vt 0.885022 0.404937 +vt 0.884945 0.400681 +vt 0.884676 0.399220 +vt 0.883994 0.396527 +vt 0.878706 0.415990 +vt 0.878852 0.416956 +vt 0.874441 0.423243 +vt 0.877467 0.417539 +vt 0.872500 0.425338 +vt 0.886835 0.386185 +vt 0.883237 0.409594 +vt 0.884809 0.406505 +vt 0.883911 0.403690 +vt 0.884274 0.401228 +vt 0.885391 0.390848 +vt 0.881111 0.413299 +vt 0.876501 0.418472 +vt 0.871395 0.424831 +vt 0.885701 0.385978 +vt 0.883451 0.407390 +vt 0.884010 0.405729 +vt 0.884117 0.400113 +vt 0.883828 0.393385 +vt 0.881466 0.411472 +vt 0.878538 0.414942 +vt 0.874900 0.418587 +vt 0.876701 0.416390 +vt 0.873051 0.421724 +vt 0.869604 0.425079 +vt 0.886247 0.385296 +vt 0.881570 0.410108 +vt 0.883029 0.403028 +vt 0.883032 0.405896 +vt 0.882731 0.399626 +vt 0.884341 0.390302 +vt 0.881619 0.397883 +vt 0.878405 0.411054 +vt 0.876499 0.413750 +vt 0.869655 0.422885 +vt 0.872077 0.421966 +vt 0.885527 0.383687 +vt 0.886637 0.384449 +vt 0.881565 0.407562 +vt 0.882788 0.404718 +vt 0.882505 0.401825 +vt 0.884404 0.386533 +vt 0.881979 0.392024 +vt 0.880519 0.396591 +vt 0.880215 0.409916 +vt 0.877594 0.412179 +vt 0.874614 0.415782 +vt 0.873742 0.418958 +vt 0.867542 0.424437 +vt 0.872413 0.418717 +vt 0.884884 0.384526 +vt 0.882644 0.403733 +vt 0.881882 0.403549 +vt 0.881601 0.400180 +vt 0.879781 0.399400 +vt 0.878984 0.407765 +vt 0.877622 0.409515 +vt 0.873965 0.413084 +vt 0.873507 0.417477 +vt 0.867663 0.422384 +vt 0.870749 0.419671 +vt 0.884026 0.382901 +vt 0.886394 0.378109 +vt 0.880164 0.405752 +vt 0.881320 0.402480 +vt 0.882751 0.385525 +vt 0.884569 0.384104 +vt 0.880529 0.393014 +vt 0.879382 0.396302 +vt 0.873491 0.411609 +vt 0.872842 0.415465 +vt 0.866286 0.422549 +vt 0.868877 0.418875 +vt 0.870315 0.417817 +vt 0.880172 0.401273 +vt 0.881263 0.383838 +vt 0.883979 0.385088 +vt 0.879561 0.391428 +vt 0.878866 0.399035 +vt 0.877431 0.406717 +vt 0.876162 0.408061 +vt 0.871479 0.413554 +vt 0.872057 0.416932 +vt 0.866712 0.420943 +vt 0.882742 0.379382 +vt 0.881090 0.404182 +vt 0.880560 0.402551 +vt 0.878984 0.401298 +vt 0.882555 0.383127 +vt 0.879796 0.387846 +vt 0.877922 0.397729 +vt 0.879170 0.393292 +vt 0.877946 0.406006 +vt 0.872949 0.405736 +vt 0.870806 0.411598 +vt 0.871221 0.415365 +vt 0.864445 0.422550 +vt 0.865295 0.418123 +vt 0.869799 0.417002 +vt 0.870415 0.416415 +vt 0.884742 0.374961 +vt 0.879783 0.403281 +vt 0.879344 0.402176 +vt 0.881080 0.381586 +vt 0.878360 0.387086 +vt 0.879472 0.385445 +vt 0.877866 0.399951 +vt 0.878012 0.389989 +vt 0.876432 0.405244 +vt 0.878019 0.404559 +vt 0.874042 0.405705 +vt 0.870578 0.409429 +vt 0.868572 0.412880 +vt 0.865050 0.420399 +vt 0.867660 0.416912 +vt 0.881705 0.375054 +vt 0.880367 0.376092 +vt 0.879030 0.403063 +vt 0.880518 0.381554 +vt 0.879994 0.383276 +vt 0.877998 0.401610 +vt 0.877561 0.398709 +vt 0.877881 0.395150 +vt 0.877577 0.392456 +vt 0.873717 0.404600 +vt 0.871937 0.406722 +vt 0.868865 0.414094 +vt 0.869043 0.410803 +vt 0.862859 0.421558 +vt 0.865421 0.416448 +vt 0.863530 0.419747 +vt 0.882560 0.371616 +vt 0.878282 0.402956 +vt 0.879477 0.376700 +vt 0.878082 0.384413 +vt 0.877279 0.385911 +vt 0.879676 0.384190 +vt 0.877162 0.401744 +vt 0.876135 0.389115 +vt 0.874891 0.404231 +vt 0.875790 0.402885 +vt 0.873306 0.404054 +vt 0.870905 0.406526 +vt 0.871829 0.405457 +vt 0.869052 0.409464 +vt 0.868105 0.411789 +vt 0.867629 0.413604 +vt 0.867472 0.415070 +vt 0.864613 0.417079 +vt 0.866791 0.415780 +vt 0.863253 0.419299 +vt 0.881186 0.370936 +vt 0.883108 0.368810 +vt 0.880160 0.373300 +vt 0.878983 0.380724 +vt 0.879086 0.372211 +vt 0.879063 0.383293 +vt 0.877387 0.394148 +vt 0.876007 0.400807 +vt 0.876798 0.392878 +vt 0.874282 0.402733 +vt 0.870322 0.407986 +vt 0.867964 0.410735 +vt 0.869961 0.408928 +vt 0.867447 0.412933 +vt 0.862665 0.420476 +vt 0.864994 0.415426 +vt 0.865955 0.415042 +vt 0.881188 0.368793 +vt 0.880423 0.371704 +vt 0.881775 0.367732 +vt 0.876004 0.377006 +vt 0.878277 0.375218 +vt 0.876612 0.381855 +vt 0.875682 0.384845 +vt 0.876652 0.394472 +vt 0.876517 0.397769 +vt 0.875697 0.392499 +vt 0.873836 0.401590 +vt 0.871951 0.404050 +vt 0.870983 0.405409 +vt 0.869646 0.406792 +vt 0.867968 0.409024 +vt 0.869092 0.408211 +vt 0.867248 0.411202 +vt 0.866530 0.413743 +vt 0.866878 0.412586 +vt 0.863344 0.417008 +vt 0.863877 0.415249 +vt 0.862497 0.419352 +vt 0.880761 0.369331 +vt 0.880308 0.369810 +vt 0.879659 0.371684 +vt 0.878029 0.372886 +vt 0.874193 0.385972 +vt 0.875668 0.398884 +vt 0.874857 0.389731 +vt 0.873085 0.401960 +vt 0.874725 0.400379 +vt 0.872499 0.403015 +vt 0.871195 0.404221 +vt 0.870538 0.405453 +vt 0.869894 0.407768 +vt 0.870012 0.404970 +vt 0.867501 0.410266 +vt 0.866728 0.411391 +vt 0.863055 0.418593 +vt 0.864393 0.413694 +vt 0.865288 0.413416 +vt 0.880761 0.367420 +vt 0.880265 0.368306 +vt 0.879275 0.370134 +vt 0.874043 0.377310 +vt 0.877097 0.373710 +vt 0.877476 0.371521 +vt 0.874660 0.380943 +vt 0.874152 0.383155 +vt 0.875872 0.395585 +vt 0.875734 0.397334 +vt 0.874673 0.392049 +vt 0.875367 0.393534 +vt 0.873439 0.400302 +vt 0.874108 0.400447 +vt 0.871704 0.402839 +vt 0.870667 0.404855 +vt 0.869301 0.404902 +vt 0.868095 0.407392 +vt 0.867276 0.409276 +vt 0.866717 0.409557 +vt 0.865830 0.411981 +vt 0.862532 0.417873 +vt 0.863416 0.413980 +vt 0.873361 0.383341 +vt 0.873691 0.388029 +vt 0.875079 0.398038 +vt 0.874152 0.390290 +vt 0.872326 0.401176 +vt 0.874148 0.398570 +vt 0.871252 0.402240 +vt 0.870488 0.403758 +vt 0.870372 0.404873 +vt 0.868801 0.406361 +vt 0.869407 0.403546 +vt 0.867259 0.406972 +vt 0.865877 0.410056 +vt 0.862602 0.416222 +vt 0.864569 0.411836 +vt 0.863668 0.411272 +vt 0.880260 0.366714 +vt 0.873338 0.379110 +vt 0.873414 0.381564 +vt 0.872999 0.384862 +vt 0.873636 0.382613 +vt 0.872822 0.386523 +vt 0.874951 0.395867 +vt 0.873827 0.392369 +vt 0.874426 0.393832 +vt 0.872954 0.399116 +vt 0.869104 0.404031 +vt 0.869857 0.402970 +vt 0.868076 0.405369 +vt 0.866912 0.408474 +vt 0.866094 0.407989 +vt 0.865101 0.412042 +vt 0.865435 0.409466 +vt 0.861601 0.417790 +vt 0.862833 0.412121 +vt 0.872605 0.383096 +vt 0.872844 0.388668 +vt 0.873446 0.390409 +vt 0.874617 0.396630 +vt 0.873440 0.398783 +vt 0.871404 0.399911 +vt 0.868673 0.404101 +vt 0.868845 0.400638 +vt 0.870073 0.398320 +vt 0.867874 0.403074 +vt 0.864936 0.410644 +vt 0.864669 0.408402 +vt 0.862585 0.406693 +vt 0.872248 0.380142 +vt 0.872719 0.385351 +vt 0.872336 0.384984 +vt 0.872294 0.387932 +vt 0.874543 0.395273 +vt 0.874019 0.396795 +vt 0.873520 0.394190 +vt 0.872901 0.392832 +vt 0.873524 0.397421 +vt 0.872491 0.397151 +vt 0.866972 0.400445 +vt 0.865916 0.404224 +vt 0.864885 0.405044 +vt 0.860469 0.418583 +vt 0.861570 0.411188 +vt 0.863657 0.405407 +vt 0.871432 0.383046 +vt 0.871996 0.389730 +vt 0.871516 0.387143 +vt 0.872765 0.390668 +vt 0.874037 0.394897 +vt 0.874164 0.395805 +vt 0.873397 0.395606 +vt 0.870717 0.394244 +vt 0.869612 0.396559 +vt 0.868367 0.396596 +vt 0.861643 0.406412 +vt 0.863095 0.401888 +vt 0.872801 0.394922 +vt 0.871808 0.392411 +vt 0.872113 0.394633 +vt 0.868061 0.393222 +vt 0.866426 0.400373 +vt 0.865835 0.399105 +vt 0.860302 0.412000 +vt 0.864626 0.401643 +vt 0.861550 0.403849 +vt 0.860572 0.405588 +vt 0.863663 0.398719 +vt 0.870775 0.385682 +vt 0.869228 0.393112 +vt 0.859827 0.406827 +vt 0.860922 0.403576 +vt 0.862935 0.399482 +vt 0.862209 0.401370 +vt 0.870099 0.384670 +vt 0.870240 0.389848 +vt 0.868645 0.391110 +vt 0.860768 0.401964 +vt 0.860369 0.402568 +vt 0.859872 0.404775 +vt 0.862937 0.397396 +vt 0.862874 0.400484 +vt 0.861137 0.400619 +vt 0.859672 0.403293 +vt 0.862144 0.397716 +vt 0.862111 0.399623 +vt 0.861029 0.400041 +vt 0.860023 0.401619 +vt 0.801690 0.576060 +vt 0.802455 0.576816 +vt 0.801954 0.577597 +vt 0.802182 0.575078 +vt 0.802596 0.577458 +vt 0.801274 0.576612 +vt 0.803297 0.576203 +vt 0.801078 0.574965 +vt 0.803182 0.578048 +vt 0.802599 0.578410 +vt 0.801137 0.577853 +vt 0.801222 0.575816 +vt 0.802129 0.573115 +vt 0.801185 0.572973 +vt 0.802161 0.579346 +vt 0.801636 0.578672 +vt 0.800791 0.576791 +vt 0.800828 0.575922 +vt 0.803986 0.577954 +vt 0.803685 0.574880 +vt 0.800156 0.573920 +vt 0.802934 0.579615 +vt 0.801237 0.578996 +vt 0.800407 0.577528 +vt 0.803963 0.579828 +vt 0.804252 0.576321 +vt 0.803331 0.573116 +vt 0.801747 0.571141 +vt 0.800151 0.571847 +vt 0.800297 0.575465 +vt 0.801563 0.579665 +vt 0.802453 0.580808 +vt 0.800651 0.579061 +vt 0.800409 0.576399 +vt 0.804433 0.579035 +vt 0.804875 0.578032 +vt 0.804176 0.575164 +vt 0.802519 0.572210 +vt 0.804113 0.573960 +vt 0.800901 0.571022 +vt 0.799479 0.572986 +vt 0.799597 0.575379 +vt 0.803155 0.581193 +vt 0.801766 0.580685 +vt 0.801131 0.579830 +vt 0.799893 0.576688 +vt 0.800212 0.578360 +vt 0.805248 0.579765 +vt 0.805032 0.576285 +vt 0.804615 0.575167 +vt 0.802977 0.571667 +vt 0.803790 0.572695 +vt 0.801060 0.569023 +vt 0.802211 0.571197 +vt 0.799448 0.574229 +vt 0.799201 0.571418 +vt 0.800390 0.570313 +vt 0.803725 0.581719 +vt 0.801292 0.580520 +vt 0.801970 0.581994 +vt 0.802633 0.582036 +vt 0.800884 0.580407 +vt 0.799961 0.577879 +vt 0.799948 0.579065 +vt 0.804609 0.581720 +vt 0.805653 0.576931 +vt 0.803436 0.572034 +vt 0.802521 0.570965 +vt 0.804302 0.572567 +vt 0.801926 0.569293 +vt 0.802169 0.570428 +vt 0.799032 0.573847 +vt 0.798818 0.572782 +vt 0.799818 0.570521 +vt 0.799325 0.576642 +vt 0.799060 0.575116 +vt 0.803251 0.583202 +vt 0.801035 0.581765 +vt 0.800340 0.580595 +vt 0.801094 0.580493 +vt 0.799536 0.577895 +vt 0.805839 0.578302 +vt 0.805984 0.581590 +vt 0.805167 0.575091 +vt 0.805527 0.575800 +vt 0.804902 0.573749 +vt 0.803355 0.570951 +vt 0.802872 0.570639 +vt 0.803837 0.571684 +vt 0.800043 0.569274 +vt 0.801823 0.567622 +vt 0.798403 0.571620 +vt 0.799645 0.569954 +vt 0.804319 0.583452 +vt 0.801571 0.583612 +vt 0.802346 0.583054 +vt 0.799856 0.580878 +vt 0.806904 0.579289 +vt 0.805293 0.583125 +vt 0.806094 0.575684 +vt 0.806411 0.577234 +vt 0.802578 0.569567 +vt 0.804836 0.571931 +vt 0.800297 0.567199 +vt 0.801368 0.566637 +vt 0.802280 0.568227 +vt 0.798553 0.574535 +vt 0.798317 0.573125 +vt 0.798681 0.570326 +vt 0.799120 0.570105 +vt 0.798968 0.577843 +vt 0.798677 0.575925 +vt 0.803915 0.585067 +vt 0.800797 0.583708 +vt 0.802349 0.584469 +vt 0.800268 0.582103 +vt 0.799368 0.579400 +vt 0.807347 0.581786 +vt 0.806558 0.583677 +vt 0.805469 0.574682 +vt 0.803852 0.570704 +vt 0.803091 0.570011 +vt 0.805445 0.572573 +vt 0.799570 0.568391 +vt 0.801991 0.566220 +vt 0.802398 0.566874 +vt 0.797769 0.572298 +vt 0.798226 0.569897 +vt 0.798784 0.568813 +vt 0.803048 0.585489 +vt 0.805131 0.585090 +vt 0.800472 0.583013 +vt 0.801024 0.584778 +vt 0.799868 0.583238 +vt 0.799443 0.581305 +vt 0.807118 0.577096 +vt 0.808283 0.580709 +vt 0.805995 0.573012 +vt 0.806058 0.574110 +vt 0.806730 0.575965 +vt 0.803565 0.569912 +vt 0.803200 0.568975 +vt 0.805916 0.571017 +vt 0.804224 0.569429 +vt 0.799231 0.567108 +vt 0.800910 0.565461 +vt 0.802140 0.564764 +vt 0.802792 0.568041 +vt 0.798228 0.576130 +vt 0.797809 0.574151 +vt 0.797552 0.570872 +vt 0.798735 0.580022 +vt 0.798637 0.576807 +vt 0.803573 0.586698 +vt 0.804320 0.586491 +vt 0.800308 0.584028 +vt 0.800578 0.584671 +vt 0.801602 0.585341 +vt 0.802326 0.586137 +vt 0.800085 0.583231 +vt 0.807627 0.577888 +vt 0.808189 0.578910 +vt 0.808962 0.583501 +vt 0.806668 0.586839 +vt 0.806877 0.575224 +vt 0.804896 0.569188 +vt 0.799791 0.565877 +vt 0.800253 0.564941 +vt 0.802306 0.565809 +vt 0.802974 0.566964 +vt 0.797007 0.572729 +vt 0.797799 0.568916 +vt 0.798443 0.577894 +vt 0.802908 0.587390 +vt 0.805061 0.586949 +vt 0.800687 0.585515 +vt 0.801099 0.585478 +vt 0.799528 0.583025 +vt 0.799861 0.584220 +vt 0.798525 0.580802 +vt 0.807774 0.576417 +vt 0.808874 0.579774 +vt 0.809335 0.580748 +vt 0.806729 0.573139 +vt 0.803784 0.568970 +vt 0.803205 0.567813 +vt 0.806430 0.572087 +vt 0.805704 0.568987 +vt 0.804627 0.568050 +vt 0.798320 0.567097 +vt 0.798943 0.565460 +vt 0.800950 0.563624 +vt 0.802767 0.565859 +vt 0.797568 0.575847 +vt 0.796950 0.570969 +vt 0.797172 0.574323 +vt 0.797130 0.569104 +vt 0.797930 0.577741 +vt 0.803407 0.587984 +vt 0.803980 0.587791 +vt 0.804478 0.587425 +vt 0.800284 0.584910 +vt 0.801165 0.586130 +vt 0.801743 0.586674 +vt 0.802283 0.587498 +vt 0.808137 0.577573 +vt 0.808820 0.578882 +vt 0.810142 0.581271 +vt 0.809352 0.588073 +vt 0.805265 0.588260 +vt 0.807305 0.573805 +vt 0.803762 0.567903 +vt 0.803544 0.568115 +vt 0.806743 0.570776 +vt 0.805573 0.567699 +vt 0.806183 0.569749 +vt 0.805227 0.567652 +vt 0.799575 0.564685 +vt 0.799925 0.563737 +vt 0.802083 0.561811 +vt 0.803380 0.564961 +vt 0.803710 0.566469 +vt 0.803408 0.567318 +vt 0.796431 0.571524 +vt 0.797188 0.570572 +vt 0.796310 0.572862 +vt 0.797651 0.567495 +vt 0.797151 0.567743 +vt 0.803188 0.588607 +vt 0.804771 0.587709 +vt 0.800185 0.585732 +vt 0.802636 0.588573 +vt 0.799178 0.585265 +vt 0.797677 0.578981 +vt 0.808436 0.576542 +vt 0.807601 0.574792 +vt 0.808683 0.577904 +vt 0.809422 0.579986 +vt 0.809329 0.579322 +vt 0.809980 0.579854 +vt 0.810585 0.582497 +vt 0.810220 0.585433 +vt 0.807091 0.590372 +vt 0.806065 0.588874 +vt 0.807180 0.571747 +vt 0.807547 0.572863 +vt 0.806125 0.567839 +vt 0.806360 0.568935 +vt 0.804903 0.566849 +vt 0.804203 0.567101 +vt 0.797883 0.566228 +vt 0.798851 0.563476 +vt 0.800220 0.563023 +vt 0.803501 0.563078 +vt 0.801229 0.561951 +vt 0.797267 0.577136 +vt 0.796894 0.575361 +vt 0.796190 0.570725 +vt 0.796719 0.569750 +vt 0.797333 0.567047 +vt 0.796821 0.568035 +vt 0.803748 0.588856 +vt 0.804481 0.588313 +vt 0.800670 0.587251 +vt 0.800946 0.587727 +vt 0.801802 0.587831 +vt 0.802217 0.588525 +vt 0.798349 0.582906 +vt 0.799639 0.585789 +vt 0.808286 0.575775 +vt 0.809206 0.578412 +vt 0.810782 0.579785 +vt 0.810997 0.581246 +vt 0.810764 0.583943 +vt 0.811552 0.586249 +vt 0.809388 0.594319 +vt 0.805447 0.590112 +vt 0.807845 0.573716 +vt 0.807562 0.570313 +vt 0.806965 0.569369 +vt 0.805596 0.566807 +vt 0.806610 0.566192 +vt 0.798362 0.564690 +vt 0.799542 0.562778 +vt 0.800672 0.562815 +vt 0.803026 0.560417 +vt 0.801337 0.561193 +vt 0.804480 0.564364 +vt 0.795896 0.571108 +vt 0.795916 0.574365 +vt 0.796617 0.568573 +vt 0.796567 0.567285 +vt 0.803668 0.589453 +vt 0.802898 0.591069 +vt 0.804119 0.588833 +vt 0.800122 0.587160 +vt 0.802320 0.590783 +vt 0.798801 0.585981 +vt 0.799311 0.587467 +vt 0.797029 0.578998 +vt 0.797467 0.581511 +vt 0.808678 0.575764 +vt 0.809019 0.576970 +vt 0.810285 0.578677 +vt 0.811444 0.582046 +vt 0.811291 0.590033 +vt 0.806924 0.592903 +vt 0.804709 0.589170 +vt 0.807867 0.571736 +vt 0.807829 0.572414 +vt 0.806759 0.567670 +vt 0.805412 0.565440 +vt 0.797926 0.564242 +vt 0.797554 0.565653 +vt 0.799858 0.562470 +vt 0.800245 0.562501 +vt 0.802159 0.559927 +vt 0.805283 0.561423 +vt 0.800648 0.562098 +vt 0.800819 0.561231 +vt 0.801526 0.560322 +vt 0.796647 0.576388 +vt 0.795472 0.572339 +vt 0.795584 0.570215 +vt 0.796185 0.569337 +vt 0.796099 0.575468 +vt 0.796994 0.566780 +vt 0.803526 0.589893 +vt 0.804211 0.590112 +vt 0.804347 0.589104 +vt 0.800549 0.588450 +vt 0.801392 0.588245 +vt 0.801844 0.589087 +vt 0.798332 0.583915 +vt 0.796577 0.577566 +vt 0.808442 0.575075 +vt 0.809460 0.577531 +vt 0.810851 0.578692 +vt 0.811415 0.580268 +vt 0.811819 0.583198 +vt 0.812869 0.588770 +vt 0.812987 0.593194 +vt 0.807280 0.594402 +vt 0.806034 0.591717 +vt 0.807854 0.568934 +vt 0.808195 0.570674 +vt 0.807071 0.566964 +vt 0.807361 0.567103 +vt 0.797056 0.565835 +vt 0.798971 0.562189 +vt 0.797957 0.562699 +vt 0.799413 0.561681 +vt 0.802497 0.558421 +vt 0.801015 0.560481 +vt 0.795554 0.576196 +vt 0.795980 0.567796 +vt 0.796592 0.566020 +vt 0.803549 0.591227 +vt 0.802475 0.592577 +vt 0.801281 0.588897 +vt 0.799854 0.588967 +vt 0.802009 0.590430 +vt 0.798201 0.587473 +vt 0.796412 0.578385 +vt 0.796470 0.579866 +vt 0.797220 0.584921 +vt 0.808886 0.574957 +vt 0.809568 0.575831 +vt 0.810117 0.577213 +vt 0.810769 0.577399 +vt 0.811274 0.578937 +vt 0.812453 0.581744 +vt 0.813157 0.586130 +vt 0.812511 0.584655 +vt 0.813039 0.601257 +vt 0.806204 0.593950 +vt 0.807653 0.595593 +vt 0.805906 0.592882 +vt 0.805102 0.592408 +vt 0.808547 0.572126 +vt 0.808775 0.573373 +vt 0.808104 0.569931 +vt 0.806591 0.563750 +vt 0.807617 0.566295 +vt 0.797184 0.564733 +vt 0.798468 0.562207 +vt 0.797507 0.563759 +vt 0.799877 0.562097 +vt 0.800141 0.561964 +vt 0.801688 0.559059 +vt 0.800190 0.561141 +vt 0.800484 0.560122 +vt 0.800950 0.559264 +vt 0.796152 0.576509 +vt 0.796035 0.565954 +vt 0.803513 0.593328 +vt 0.802014 0.591789 +vt 0.802992 0.593569 +vt 0.800909 0.589842 +vt 0.800262 0.589650 +vt 0.801538 0.590003 +vt 0.799252 0.589524 +vt 0.796441 0.577799 +vt 0.796136 0.581617 +vt 0.797028 0.582968 +vt 0.811227 0.578211 +vt 0.811927 0.579322 +vt 0.812823 0.583587 +vt 0.813886 0.587737 +vt 0.814036 0.589779 +vt 0.813656 0.596197 +vt 0.809946 0.597805 +vt 0.806489 0.595451 +vt 0.808263 0.596674 +vt 0.804181 0.592122 +vt 0.808525 0.569201 +vt 0.807724 0.567512 +vt 0.808676 0.570085 +vt 0.808988 0.570998 +vt 0.808818 0.563519 +vt 0.796750 0.565113 +vt 0.798753 0.560928 +vt 0.797408 0.562778 +vt 0.798055 0.561434 +vt 0.799786 0.561480 +vt 0.801935 0.557827 +vt 0.796228 0.577697 +vt 0.795600 0.567072 +vt 0.796389 0.564913 +vt 0.802094 0.594079 +vt 0.802519 0.594114 +vt 0.800326 0.591066 +vt 0.801674 0.591026 +vt 0.797913 0.590238 +vt 0.797517 0.587084 +vt 0.799619 0.591873 +vt 0.796121 0.578970 +vt 0.795833 0.579695 +vt 0.796360 0.584024 +vt 0.809392 0.574378 +vt 0.810349 0.576457 +vt 0.810969 0.577521 +vt 0.812787 0.580414 +vt 0.813702 0.583346 +vt 0.814150 0.586310 +vt 0.814391 0.591777 +vt 0.814851 0.594603 +vt 0.809553 0.596356 +vt 0.809465 0.601012 +vt 0.805603 0.593478 +vt 0.805435 0.594634 +vt 0.809069 0.596326 +vt 0.806940 0.597345 +vt 0.804331 0.594175 +vt 0.809285 0.573065 +vt 0.808571 0.567934 +vt 0.809745 0.572202 +vt 0.807535 0.560395 +vt 0.808392 0.566454 +vt 0.797101 0.563759 +vt 0.796749 0.563816 +vt 0.799164 0.560421 +vt 0.797466 0.561541 +vt 0.799458 0.560497 +vt 0.801205 0.558113 +vt 0.799679 0.560627 +vt 0.800205 0.558541 +vt 0.795209 0.577005 +vt 0.795011 0.565807 +vt 0.796005 0.563360 +vt 0.803551 0.594672 +vt 0.801366 0.592333 +vt 0.802916 0.596062 +vt 0.801297 0.590842 +vt 0.798769 0.591474 +vt 0.797136 0.587059 +vt 0.795876 0.578657 +vt 0.795075 0.580387 +vt 0.796689 0.585631 +vt 0.810041 0.574909 +vt 0.810785 0.576565 +vt 0.811153 0.576959 +vt 0.813010 0.578634 +vt 0.813752 0.581784 +vt 0.813786 0.584891 +vt 0.814420 0.588388 +vt 0.814506 0.586994 +vt 0.814791 0.590275 +vt 0.816093 0.597488 +vt 0.809184 0.598921 +vt 0.808331 0.606002 +vt 0.805688 0.596824 +vt 0.808675 0.597231 +vt 0.807681 0.598301 +vt 0.809038 0.568410 +vt 0.809533 0.569113 +vt 0.809420 0.570046 +vt 0.810702 0.571668 +vt 0.811952 0.553436 +vt 0.809020 0.566072 +vt 0.798792 0.559773 +vt 0.798301 0.560239 +vt 0.796950 0.562662 +vt 0.797748 0.559837 +vt 0.800743 0.557628 +vt 0.801327 0.557049 +vt 0.801475 0.594815 +vt 0.800774 0.591374 +vt 0.800285 0.592965 +vt 0.797756 0.591259 +vt 0.797096 0.589988 +vt 0.797000 0.588174 +vt 0.799203 0.593251 +vt 0.795231 0.581925 +vt 0.795298 0.578683 +vt 0.795704 0.583048 +vt 0.796146 0.586113 +vt 0.810454 0.574416 +vt 0.810784 0.575570 +vt 0.813715 0.580285 +vt 0.814491 0.583336 +vt 0.814498 0.584492 +vt 0.814672 0.589126 +vt 0.814728 0.586013 +vt 0.815153 0.591752 +vt 0.818070 0.600827 +vt 0.816395 0.595080 +vt 0.809322 0.596748 +vt 0.809330 0.597568 +vt 0.808580 0.600102 +vt 0.807629 0.602078 +vt 0.809126 0.611763 +vt 0.804976 0.596350 +vt 0.809125 0.596745 +vt 0.808244 0.598305 +vt 0.806764 0.599728 +vt 0.805991 0.598863 +vt 0.809724 0.572885 +vt 0.809336 0.567415 +vt 0.810675 0.570584 +vt 0.810496 0.573185 +vt 0.811143 0.561585 +vt 0.809809 0.565863 +vt 0.797069 0.560623 +vt 0.799525 0.558418 +vt 0.800163 0.556818 +vt 0.794903 0.561092 +vt 0.804164 0.597165 +vt 0.802068 0.596490 +vt 0.799897 0.594015 +vt 0.798548 0.594170 +vt 0.796675 0.587086 +vt 0.794412 0.581388 +vt 0.794058 0.580322 +vt 0.795835 0.584461 +vt 0.813140 0.576671 +vt 0.814597 0.580234 +vt 0.814449 0.581619 +vt 0.814817 0.587825 +vt 0.815531 0.592640 +vt 0.815139 0.589330 +vt 0.815277 0.590458 +vt 0.820005 0.608390 +vt 0.817330 0.597610 +vt 0.816220 0.593189 +vt 0.816914 0.596251 +vt 0.809618 0.596932 +vt 0.808910 0.598240 +vt 0.808788 0.599113 +vt 0.806654 0.604774 +vt 0.807737 0.609814 +vt 0.814147 0.614174 +vt 0.805145 0.598236 +vt 0.808791 0.597709 +vt 0.807607 0.599370 +vt 0.808013 0.598718 +vt 0.809975 0.568351 +vt 0.810187 0.569216 +vt 0.811442 0.569858 +vt 0.811633 0.572370 +vt 0.810390 0.564299 +vt 0.813470 0.560487 +vt 0.799022 0.558489 +vt 0.798371 0.558804 +vt 0.796215 0.559762 +vt 0.797389 0.558563 +vt 0.800793 0.555534 +vt 0.800554 0.595578 +vt 0.801333 0.597194 +vt 0.802325 0.598385 +vt 0.797707 0.593018 +vt 0.796609 0.590164 +vt 0.796673 0.588051 +vt 0.799269 0.595475 +vt 0.795254 0.582797 +vt 0.794737 0.582636 +vt 0.795227 0.583848 +vt 0.795751 0.585319 +vt 0.811264 0.574161 +vt 0.812771 0.574090 +vt 0.814727 0.577439 +vt 0.815203 0.583274 +vt 0.815264 0.585423 +vt 0.815312 0.586626 +vt 0.815545 0.591875 +vt 0.815640 0.591200 +vt 0.818151 0.597725 +vt 0.817044 0.594188 +vt 0.817254 0.595300 +vt 0.809092 0.597300 +vt 0.809118 0.597640 +vt 0.807889 0.600364 +vt 0.808419 0.599342 +vt 0.806502 0.607119 +vt 0.806200 0.602284 +vt 0.806760 0.609276 +vt 0.807098 0.611478 +vt 0.808457 0.598678 +vt 0.806884 0.600482 +vt 0.810348 0.566897 +vt 0.811232 0.568945 +vt 0.811793 0.570703 +vt 0.811084 0.563661 +vt 0.811862 0.563342 +vt 0.818355 0.555675 +vt 0.810619 0.565633 +vt 0.797923 0.557523 +vt 0.796782 0.557226 +vt 0.799422 0.556707 +vt 0.800263 0.555558 +vt 0.794110 0.555198 +vt 0.799824 0.595233 +vt 0.797347 0.594614 +vt 0.793890 0.580995 +vt 0.793737 0.583000 +vt 0.795584 0.584675 +vt 0.795797 0.588230 +vt 0.795664 0.586276 +vt 0.814369 0.574904 +vt 0.815767 0.582325 +vt 0.815779 0.584715 +vt 0.815540 0.588156 +vt 0.815858 0.592020 +vt 0.815676 0.589963 +vt 0.818778 0.598852 +vt 0.817581 0.596339 +vt 0.817483 0.592797 +vt 0.805546 0.605939 +vt 0.805843 0.604380 +vt 0.806451 0.614297 +vt 0.807392 0.600100 +vt 0.808206 0.599463 +vt 0.810981 0.567706 +vt 0.812646 0.569192 +vt 0.813131 0.571095 +vt 0.811224 0.564904 +vt 0.812756 0.563804 +vt 0.815273 0.561488 +vt 0.798502 0.556957 +vt 0.798067 0.555849 +vt 0.798908 0.556732 +vt 0.799858 0.555624 +vt 0.800360 0.554799 +vt 0.801412 0.599112 +vt 0.799904 0.596372 +vt 0.798450 0.596645 +vt 0.794571 0.583535 +vt 0.795311 0.585268 +vt 0.814301 0.573402 +vt 0.815700 0.574493 +vt 0.816124 0.583764 +vt 0.816116 0.586431 +vt 0.816366 0.591235 +vt 0.819106 0.597151 +vt 0.819192 0.600043 +vt 0.818184 0.596119 +vt 0.817859 0.594765 +vt 0.817726 0.595577 +vt 0.805447 0.608664 +vt 0.805453 0.603568 +vt 0.805856 0.611510 +vt 0.807431 0.615945 +vt 0.811553 0.565676 +vt 0.812871 0.572531 +vt 0.811982 0.564964 +vt 0.813795 0.563303 +vt 0.816575 0.560204 +vt 0.795730 0.548505 +vt 0.797771 0.552642 +vt 0.798770 0.555262 +vt 0.799395 0.555160 +vt 0.800772 0.554619 +vt 0.799864 0.554465 +vt 0.797663 0.596439 +vt 0.796503 0.593215 +vt 0.795538 0.590333 +vt 0.794547 0.584787 +vt 0.795219 0.586633 +vt 0.816486 0.584713 +vt 0.816166 0.589420 +vt 0.816195 0.588140 +vt 0.819503 0.598961 +vt 0.819688 0.601598 +vt 0.817193 0.591120 +vt 0.818597 0.594126 +vt 0.807439 0.600286 +vt 0.805479 0.604762 +vt 0.804733 0.606777 +vt 0.805517 0.602050 +vt 0.806452 0.616532 +vt 0.805124 0.613808 +vt 0.812042 0.566476 +vt 0.812766 0.568445 +vt 0.813773 0.568940 +vt 0.813977 0.571699 +vt 0.812652 0.565566 +vt 0.813280 0.564746 +vt 0.814513 0.563672 +vt 0.815974 0.562395 +vt 0.817152 0.560493 +vt 0.801523 0.554928 +vt 0.800317 0.553869 +vt 0.796719 0.595674 +vt 0.798321 0.597851 +vt 0.794955 0.588221 +vt 0.793673 0.584387 +vt 0.794934 0.585707 +vt 0.815454 0.572094 +vt 0.816860 0.585677 +vt 0.816709 0.587791 +vt 0.816784 0.590006 +vt 0.820234 0.597727 +vt 0.818658 0.595479 +vt 0.819667 0.599959 +vt 0.819593 0.600511 +vt 0.818007 0.591177 +vt 0.805209 0.604729 +vt 0.804410 0.608184 +vt 0.804805 0.605200 +vt 0.804588 0.610954 +vt 0.805131 0.602652 +vt 0.805773 0.601225 +vt 0.806731 0.617693 +vt 0.805811 0.616897 +vt 0.805285 0.616204 +vt 0.814155 0.565063 +vt 0.815116 0.563479 +vt 0.818368 0.561057 +vt 0.797721 0.546200 +vt 0.799101 0.553603 +vt 0.799079 0.554660 +vt 0.801105 0.553679 +vt 0.800663 0.553754 +vt 0.799819 0.552671 +vt 0.797031 0.596853 +vt 0.797682 0.598038 +vt 0.798919 0.598756 +vt 0.795315 0.593546 +vt 0.795894 0.591804 +vt 0.794851 0.590075 +vt 0.793924 0.585881 +vt 0.793379 0.583672 +vt 0.794584 0.586388 +vt 0.817012 0.570296 +vt 0.816997 0.586685 +vt 0.817203 0.584741 +vt 0.816570 0.588885 +vt 0.820194 0.599947 +vt 0.819487 0.595395 +vt 0.819891 0.600672 +vt 0.817410 0.590135 +vt 0.819002 0.591249 +vt 0.805192 0.601615 +vt 0.804939 0.603766 +vt 0.805468 0.600967 +vt 0.805994 0.600670 +vt 0.807250 0.617876 +vt 0.806332 0.618594 +vt 0.804260 0.613672 +vt 0.804509 0.615999 +vt 0.813432 0.567575 +vt 0.814339 0.567361 +vt 0.813365 0.565851 +vt 0.812855 0.566566 +vt 0.814779 0.564357 +vt 0.816885 0.562431 +vt 0.815494 0.563625 +vt 0.820860 0.560000 +vt 0.799062 0.550231 +vt 0.801160 0.552317 +vt 0.800511 0.552698 +vt 0.796266 0.596181 +vt 0.798316 0.599255 +vt 0.795601 0.592564 +vt 0.795408 0.591561 +vt 0.794441 0.589123 +vt 0.793192 0.585284 +vt 0.793085 0.583953 +vt 0.794298 0.587335 +vt 0.816695 0.569399 +vt 0.817572 0.572422 +vt 0.817503 0.585858 +vt 0.817118 0.588935 +vt 0.817391 0.587629 +vt 0.820706 0.594672 +vt 0.820349 0.601545 +vt 0.817904 0.589923 +vt 0.818421 0.590863 +vt 0.804936 0.602262 +vt 0.805722 0.600285 +vt 0.807927 0.617589 +vt 0.806907 0.619007 +vt 0.805314 0.617635 +vt 0.805567 0.618952 +vt 0.803822 0.612328 +vt 0.804805 0.618628 +vt 0.814114 0.566164 +vt 0.815258 0.564833 +vt 0.815248 0.564149 +vt 0.815910 0.563690 +vt 0.819639 0.562470 +vt 0.817487 0.563082 +vt 0.799620 0.547506 +vt 0.800108 0.550797 +vt 0.797525 0.599298 +vt 0.796710 0.597750 +vt 0.798852 0.600506 +vt 0.794959 0.593941 +vt 0.795044 0.591866 +vt 0.794114 0.590921 +vt 0.794041 0.586863 +vt 0.793434 0.586579 +vt 0.817907 0.569274 +vt 0.818527 0.571052 +vt 0.817563 0.589298 +vt 0.818389 0.590583 +vt 0.804568 0.603982 +vt 0.805495 0.600142 +vt 0.807514 0.619362 +vt 0.806932 0.620265 +vt 0.806422 0.620438 +vt 0.803696 0.615636 +vt 0.803899 0.618206 +vt 0.815695 0.568308 +vt 0.814323 0.565623 +vt 0.814675 0.565944 +vt 0.816638 0.563473 +vt 0.821137 0.562913 +vt 0.818490 0.563103 +vt 0.795991 0.596846 +vt 0.797787 0.600762 +vt 0.799278 0.601704 +vt 0.798397 0.600362 +vt 0.793890 0.589480 +vt 0.792596 0.585136 +vt 0.792899 0.586589 +vt 0.817689 0.567413 +vt 0.818014 0.586948 +vt 0.817703 0.588724 +vt 0.821031 0.592553 +vt 0.818395 0.589446 +vt 0.819061 0.589772 +vt 0.804271 0.621137 +vt 0.803186 0.613786 +vt 0.816658 0.567021 +vt 0.815537 0.565925 +vt 0.816146 0.564251 +vt 0.819988 0.564095 +vt 0.819160 0.563825 +vt 0.816497 0.564477 +vt 0.817902 0.563863 +vt 0.797255 0.600017 +vt 0.796136 0.598280 +vt 0.798534 0.602097 +vt 0.794523 0.592638 +vt 0.795033 0.595617 +vt 0.793276 0.590791 +vt 0.793135 0.587138 +vt 0.818770 0.569717 +vt 0.818443 0.568296 +vt 0.818319 0.588126 +vt 0.820261 0.590975 +vt 0.822272 0.592954 +vt 0.819552 0.590583 +vt 0.807416 0.620992 +vt 0.807112 0.621757 +vt 0.805267 0.623382 +vt 0.803151 0.617087 +vt 0.803183 0.615423 +vt 0.803746 0.622285 +vt 0.815897 0.566566 +vt 0.815938 0.565050 +vt 0.820415 0.565240 +vt 0.818755 0.565725 +vt 0.817372 0.564037 +vt 0.795420 0.597322 +vt 0.797077 0.601197 +vt 0.799094 0.603815 +vt 0.794729 0.594207 +vt 0.794114 0.593434 +vt 0.793425 0.588612 +vt 0.793583 0.592878 +vt 0.792372 0.586269 +vt 0.792861 0.588061 +vt 0.817285 0.565612 +vt 0.818531 0.566850 +vt 0.818994 0.586767 +vt 0.821197 0.590772 +vt 0.822030 0.591075 +vt 0.818878 0.588462 +vt 0.819946 0.589321 +vt 0.807057 0.623394 +vt 0.804354 0.623470 +vt 0.802805 0.615102 +vt 0.816344 0.565358 +vt 0.819284 0.564983 +vt 0.819786 0.565202 +vt 0.821215 0.564761 +vt 0.816967 0.564794 +vt 0.817717 0.564872 +vt 0.795877 0.599892 +vt 0.795083 0.598600 +vt 0.796457 0.601205 +vt 0.797058 0.602520 +vt 0.798300 0.604160 +vt 0.794629 0.596073 +vt 0.792246 0.589692 +vt 0.791872 0.590674 +vt 0.792528 0.587277 +vt 0.819230 0.568309 +vt 0.816806 0.565762 +vt 0.821103 0.588948 +vt 0.819326 0.588756 +vt 0.807576 0.622636 +vt 0.806298 0.626265 +vt 0.804234 0.625824 +vt 0.803140 0.621353 +vt 0.803358 0.625564 +vt 0.819547 0.566378 +vt 0.820977 0.565863 +vt 0.822509 0.564918 +vt 0.798771 0.608038 +vt 0.794042 0.595036 +vt 0.793622 0.594096 +vt 0.793493 0.593497 +vt 0.792237 0.587164 +vt 0.792394 0.587634 +vt 0.819516 0.587374 +vt 0.807429 0.623960 +vt 0.805440 0.628377 +vt 0.805003 0.629042 +vt 0.802846 0.619218 +vt 0.802630 0.616396 +vt 0.820433 0.566558 +vt 0.821724 0.565945 +vt 0.795139 0.601657 +vt 0.794515 0.600818 +vt 0.793915 0.596832 +vt 0.796376 0.602375 +vt 0.797521 0.606220 +vt 0.791648 0.589084 +vt 0.792317 0.588707 +vt 0.792600 0.592686 +vt 0.791996 0.587165 +vt 0.792292 0.587877 +vt 0.819940 0.568334 +vt 0.820268 0.588009 +vt 0.808005 0.624886 +vt 0.806152 0.629350 +vt 0.807136 0.627574 +vt 0.803653 0.627311 +vt 0.804746 0.629708 +vt 0.802765 0.622580 +vt 0.803025 0.624990 +vt 0.820794 0.566750 +vt 0.821282 0.566483 +vt 0.822630 0.566916 +vt 0.794234 0.599757 +vt 0.796698 0.603280 +vt 0.798128 0.609409 +vt 0.793475 0.595384 +vt 0.793040 0.594598 +vt 0.791994 0.588932 +vt 0.792545 0.594232 +vt 0.792062 0.593144 +vt 0.808784 0.627770 +vt 0.805577 0.631271 +vt 0.808185 0.629938 +vt 0.803226 0.628351 +vt 0.805134 0.631015 +vt 0.802515 0.619702 +vt 0.802926 0.627613 +vt 0.821831 0.567352 +vt 0.824261 0.568217 +vt 0.794643 0.602928 +vt 0.795429 0.604055 +vt 0.793921 0.600860 +vt 0.793735 0.599603 +vt 0.796277 0.604206 +vt 0.796969 0.607349 +vt 0.797070 0.610294 +vt 0.798838 0.609987 +vt 0.793329 0.597129 +vt 0.791871 0.588102 +vt 0.791144 0.591990 +vt 0.807623 0.630805 +vt 0.805844 0.631532 +vt 0.803958 0.630157 +vt 0.804704 0.631842 +vt 0.802804 0.626092 +vt 0.802447 0.622458 +vt 0.821079 0.567438 +vt 0.823020 0.568782 +vt 0.797273 0.611286 +vt 0.798344 0.610551 +vt 0.792723 0.595895 +vt 0.792560 0.594754 +vt 0.791755 0.595435 +vt 0.790711 0.593018 +vt 0.805508 0.631784 +vt 0.806804 0.631828 +vt 0.806151 0.631178 +vt 0.803574 0.631916 +vt 0.805254 0.632154 +vt 0.801986 0.619343 +vt 0.802524 0.627287 +vt 0.794879 0.605100 +vt 0.793507 0.602019 +vt 0.795872 0.605991 +vt 0.793268 0.599981 +vt 0.793118 0.599181 +vt 0.795974 0.608143 +vt 0.796576 0.611070 +vt 0.797605 0.612392 +vt 0.798612 0.611807 +vt 0.792686 0.597802 +vt 0.806169 0.632588 +vt 0.804195 0.633611 +vt 0.803183 0.631034 +vt 0.805563 0.634223 +vt 0.802062 0.621062 +vt 0.802743 0.628792 +vt 0.794379 0.603824 +vt 0.793421 0.600634 +vt 0.795998 0.609708 +vt 0.796686 0.612828 +vt 0.799430 0.611483 +vt 0.792148 0.596552 +vt 0.791037 0.595774 +vt 0.805696 0.632916 +vt 0.803462 0.633889 +vt 0.802184 0.623498 +vt 0.801682 0.620491 +vt 0.802308 0.629854 +vt 0.795336 0.607874 +vt 0.794384 0.605516 +vt 0.793882 0.604403 +vt 0.793059 0.600287 +vt 0.792549 0.599140 +vt 0.795590 0.611106 +vt 0.795623 0.612635 +vt 0.796762 0.615109 +vt 0.798707 0.613647 +vt 0.791955 0.598014 +vt 0.791489 0.596736 +vt 0.790397 0.594191 +vt 0.806708 0.633627 +vt 0.806379 0.634810 +vt 0.806038 0.637124 +vt 0.802789 0.631864 +vt 0.802002 0.625134 +vt 0.801825 0.622598 +vt 0.802124 0.627600 +vt 0.793232 0.603508 +vt 0.792631 0.600635 +vt 0.795880 0.614252 +vt 0.799020 0.613950 +vt 0.790841 0.597207 +vt 0.790041 0.595087 +vt 0.802807 0.634791 +vt 0.801407 0.621816 +vt 0.801900 0.629256 +vt 0.802213 0.632981 +vt 0.794790 0.611621 +vt 0.794004 0.606496 +vt 0.792566 0.603226 +vt 0.792436 0.601761 +vt 0.791649 0.599140 +vt 0.795206 0.613779 +vt 0.797727 0.615513 +vt 0.795736 0.615950 +vt 0.798530 0.616149 +vt 0.791229 0.598352 +vt 0.801829 0.627730 +vt 0.801614 0.623201 +vt 0.801316 0.620340 +vt 0.801847 0.631280 +vt 0.793890 0.608896 +vt 0.792556 0.604612 +vt 0.791511 0.600557 +vt 0.795007 0.615688 +vt 0.796905 0.617795 +vt 0.796025 0.617594 +vt 0.798859 0.617703 +vt 0.790803 0.597966 +vt 0.790439 0.597216 +vt 0.801642 0.626856 +vt 0.801508 0.625656 +vt 0.801069 0.623989 +vt 0.800938 0.621378 +vt 0.801567 0.629016 +vt 0.801567 0.630188 +vt 0.793936 0.612456 +vt 0.792217 0.603748 +vt 0.791475 0.602029 +vt 0.791012 0.599284 +vt 0.794620 0.614533 +vt 0.797929 0.617891 +vt 0.794984 0.617198 +vt 0.795226 0.619193 +vt 0.799397 0.617428 +vt 0.789823 0.596118 +vt 0.801605 0.627864 +vt 0.801657 0.631848 +vt 0.792734 0.608459 +vt 0.792525 0.606419 +vt 0.791535 0.604509 +vt 0.790732 0.600706 +vt 0.794253 0.616441 +vt 0.795881 0.619227 +vt 0.797362 0.619436 +vt 0.798487 0.618648 +vt 0.799339 0.618750 +vt 0.790256 0.598182 +vt 0.790556 0.598831 +vt 0.801294 0.626357 +vt 0.801409 0.627453 +vt 0.800739 0.623281 +vt 0.801504 0.629560 +vt 0.801354 0.628837 +vt 0.801227 0.631112 +vt 0.792523 0.610635 +vt 0.793692 0.616018 +vt 0.790829 0.603450 +vt 0.790756 0.602637 +vt 0.790791 0.601693 +vt 0.796594 0.620216 +vt 0.798081 0.619031 +vt 0.793739 0.618818 +vt 0.794422 0.619793 +vt 0.795753 0.620678 +vt 0.798968 0.619126 +vt 0.789686 0.598688 +vt 0.800793 0.625549 +vt 0.799880 0.622511 +vt 0.800631 0.624365 +vt 0.801298 0.630172 +vt 0.793465 0.614509 +vt 0.792001 0.608325 +vt 0.792052 0.607193 +vt 0.791713 0.605883 +vt 0.790827 0.605263 +vt 0.790528 0.601923 +vt 0.797790 0.620630 +vt 0.797208 0.620829 +vt 0.794964 0.621304 +vt 0.798233 0.619950 +vt 0.798712 0.619846 +vt 0.799418 0.620620 +vt 0.790094 0.599819 +vt 0.801157 0.627630 +vt 0.800876 0.630146 +vt 0.792377 0.613447 +vt 0.791536 0.608430 +vt 0.793008 0.615299 +vt 0.790361 0.603952 +vt 0.790454 0.602679 +vt 0.793173 0.617221 +vt 0.796241 0.622291 +vt 0.796862 0.621779 +vt 0.794253 0.622784 +vt 0.795508 0.623605 +vt 0.789501 0.599560 +vt 0.800094 0.625310 +vt 0.799877 0.624574 +vt 0.800796 0.631497 +vt 0.792141 0.611939 +vt 0.791500 0.607150 +vt 0.790264 0.605390 +vt 0.790445 0.603227 +vt 0.789764 0.600961 +vt 0.797578 0.622211 +vt 0.798182 0.621657 +vt 0.798719 0.621178 +vt 0.789582 0.599949 +vt 0.789325 0.599172 +vt 0.800506 0.629685 +vt 0.799713 0.628272 +vt 0.799546 0.623747 +vt 0.800335 0.631058 +vt 0.791926 0.613257 +vt 0.792433 0.616564 +vt 0.790670 0.606292 +vt 0.791556 0.609981 +vt 0.789729 0.604552 +vt 0.790057 0.603082 +vt 0.789732 0.601404 +vt 0.796898 0.623503 +vt 0.796188 0.624185 +vt 0.795316 0.625867 +vt 0.799183 0.621823 +vt 0.799979 0.630001 +vt 0.799348 0.627084 +vt 0.799348 0.625552 +vt 0.799520 0.622350 +vt 0.799484 0.624599 +vt 0.800615 0.632355 +vt 0.791438 0.611291 +vt 0.791797 0.614775 +vt 0.790622 0.607249 +vt 0.790820 0.609003 +vt 0.790110 0.606166 +vt 0.789428 0.601428 +vt 0.789192 0.600528 +vt 0.795881 0.625351 +vt 0.798577 0.622658 +vt 0.797528 0.623731 +vt 0.798921 0.622034 +vt 0.799289 0.629671 +vt 0.799235 0.622680 +vt 0.799031 0.624136 +vt 0.800234 0.632362 +vt 0.791310 0.612679 +vt 0.791911 0.616203 +vt 0.789944 0.606987 +vt 0.789326 0.602588 +vt 0.796594 0.624756 +vt 0.796368 0.625678 +vt 0.798283 0.623614 +vt 0.797046 0.624993 +vt 0.796086 0.627050 +vt 0.799304 0.622415 +vt 0.799720 0.632487 +vt 0.798721 0.631095 +vt 0.800456 0.633510 +vt 0.790764 0.610659 +vt 0.791232 0.613959 +vt 0.791592 0.616353 +vt 0.789318 0.605863 +vt 0.788920 0.603589 +vt 0.797581 0.625286 +vt 0.798313 0.624958 +vt 0.796002 0.628244 +vt 0.798533 0.629008 +vt 0.799414 0.632696 +vt 0.800044 0.633657 +vt 0.791009 0.612781 +vt 0.790069 0.609133 +vt 0.788898 0.604762 +vt 0.789339 0.607680 +vt 0.788656 0.602867 +vt 0.796690 0.625389 +vt 0.796571 0.626896 +vt 0.796877 0.626092 +vt 0.796337 0.628340 +vt 0.798189 0.630069 +vt 0.798835 0.632719 +vt 0.798234 0.628180 +vt 0.790265 0.611276 +vt 0.788789 0.605770 +vt 0.788900 0.606903 +vt 0.796510 0.627996 +vt 0.796993 0.627147 +vt 0.796058 0.628998 +vt 0.798033 0.631459 +vt 0.799121 0.634312 +vt 0.798424 0.632151 +vt 0.789510 0.610621 +vt 0.788445 0.605401 +vt 0.788807 0.608745 +vt 0.788344 0.604413 +vt 0.796879 0.627880 +vt 0.797851 0.628055 +vt 0.796497 0.629132 +vt 0.796660 0.628703 +vt 0.797602 0.629338 +vt 0.797571 0.630513 +vt 0.798540 0.633619 +vt 0.798472 0.632773 +vt 0.788378 0.606371 +vt 0.788135 0.608198 +vt 0.797364 0.628365 +vt 0.796652 0.629829 +vt 0.797678 0.632348 +vt 0.798184 0.632700 +vt 0.798649 0.635280 +vt 0.788405 0.609613 +vt 0.787708 0.605379 +vt 0.787772 0.607385 +vt 0.788421 0.608823 +vt 0.796965 0.628557 +vt 0.796728 0.629365 +vt 0.796367 0.630204 +vt 0.797083 0.629778 +vt 0.797104 0.631059 +vt 0.798089 0.634024 +vt 0.787620 0.606135 +vt 0.787622 0.608521 +vt 0.788117 0.609071 +vt 0.796885 0.629135 +vt 0.797144 0.628984 +vt 0.795912 0.629836 +vt 0.797243 0.632444 +vt 0.787986 0.608545 +vt 0.796705 0.631908 +vt 0.797572 0.633573 +vt 0.797801 0.635100 +vt 0.797403 0.634051 +vt 0.806610 0.548015 +vt 0.806590 0.548787 +vt 0.806314 0.548239 +vt 0.806699 0.548824 +vt 0.806452 0.549059 +vt 0.806736 0.548795 +vt 0.806671 0.549041 +vt 0.962303 0.391912 +vt 0.960743 0.391719 +vt 0.961731 0.389417 +vt 0.960643 0.393654 +vt 0.959586 0.390905 +vt 0.963219 0.388905 +vt 0.958731 0.397410 +vt 0.961723 0.394922 +vt 0.961423 0.387872 +vt 0.962537 0.387211 +vt 0.963267 0.391019 +vt 0.959958 0.397432 +vt 0.961649 0.400396 +vt 0.957639 0.395070 +vt 0.959625 0.387069 +vt 0.964297 0.385553 +vt 0.964494 0.396234 +vt 0.966205 0.390181 +vt 0.957777 0.401877 +vt 0.960129 0.400767 +vt 0.956702 0.401343 +vt 0.957660 0.390954 +vt 0.961868 0.385852 +vt 0.961300 0.386523 +vt 0.962795 0.384957 +vt 0.965249 0.386228 +vt 0.966277 0.391459 +vt 0.958603 0.401937 +vt 0.964842 0.398965 +vt 0.959604 0.404026 +vt 0.955454 0.402673 +vt 0.957209 0.392990 +vt 0.957876 0.388522 +vt 0.960574 0.384544 +vt 0.963577 0.384217 +vt 0.964920 0.384512 +vt 0.966933 0.387061 +vt 0.969876 0.387232 +vt 0.957473 0.403069 +vt 0.956752 0.403607 +vt 0.962088 0.402987 +vt 0.960149 0.404993 +vt 0.955302 0.397214 +vt 0.956688 0.391822 +vt 0.961678 0.384183 +vt 0.962512 0.382592 +vt 0.966549 0.384047 +vt 0.966837 0.397607 +vt 0.968436 0.385268 +vt 0.968871 0.389749 +vt 0.957858 0.404071 +vt 0.963457 0.404310 +vt 0.958037 0.405577 +vt 0.958056 0.407650 +vt 0.954041 0.401130 +vt 0.955725 0.405122 +vt 0.956276 0.388957 +vt 0.960859 0.382540 +vt 0.964417 0.382752 +vt 0.962878 0.381635 +vt 0.965299 0.382165 +vt 0.967992 0.384105 +vt 0.966765 0.400238 +vt 0.969200 0.386050 +vt 0.970623 0.390280 +vt 0.964873 0.404384 +vt 0.961789 0.409571 +vt 0.959306 0.409494 +vt 0.952820 0.399129 +vt 0.953706 0.405164 +vt 0.956574 0.406837 +vt 0.954733 0.392548 +vt 0.961489 0.380435 +vt 0.966394 0.381589 +vt 0.967609 0.382533 +vt 0.968306 0.397201 +vt 0.967518 0.398909 +vt 0.969896 0.384943 +vt 0.969215 0.383997 +vt 0.968595 0.383706 +vt 0.971908 0.388114 +vt 0.963588 0.407252 +vt 0.956658 0.409433 +vt 0.953265 0.395792 +vt 0.951167 0.403569 +vt 0.950808 0.406766 +vt 0.954754 0.409517 +vt 0.955270 0.390452 +vt 0.964298 0.381212 +vt 0.962637 0.379669 +vt 0.965370 0.379071 +vt 0.968130 0.400180 +vt 0.966206 0.403170 +vt 0.970528 0.384838 +vt 0.972147 0.385764 +vt 0.972512 0.389820 +vt 0.970533 0.393095 +vt 0.965405 0.405716 +vt 0.963707 0.410878 +vt 0.961033 0.411593 +vt 0.957498 0.412997 +vt 0.951800 0.394346 +vt 0.950017 0.401940 +vt 0.950568 0.411364 +vt 0.953337 0.393098 +vt 0.954262 0.388079 +vt 0.954384 0.389362 +vt 0.964616 0.380117 +vt 0.961295 0.378743 +vt 0.967079 0.380156 +vt 0.968115 0.381893 +vt 0.968274 0.398538 +vt 0.967513 0.400958 +vt 0.966988 0.402365 +vt 0.970176 0.383421 +vt 0.971394 0.384457 +vt 0.969657 0.382751 +vt 0.969005 0.381748 +vt 0.968890 0.398761 +vt 0.962559 0.412290 +vt 0.949438 0.395779 +vt 0.947698 0.408051 +vt 0.948361 0.398984 +vt 0.949147 0.413152 +vt 0.951022 0.412024 +vt 0.963729 0.379703 +vt 0.961918 0.377130 +vt 0.963860 0.378529 +vt 0.966189 0.377851 +vt 0.967638 0.381841 +vt 0.968190 0.402340 +vt 0.966131 0.409281 +vt 0.970881 0.382245 +vt 0.971956 0.384305 +vt 0.973346 0.386132 +vt 0.972315 0.391530 +vt 0.970118 0.398388 +vt 0.963130 0.414613 +vt 0.958675 0.416551 +vt 0.960042 0.415484 +vt 0.955170 0.418257 +vt 0.951109 0.394388 +vt 0.953508 0.390741 +vt 0.947995 0.409212 +vt 0.946889 0.404756 +vt 0.951771 0.415883 +vt 0.960673 0.376863 +vt 0.964369 0.376672 +vt 0.965514 0.376157 +vt 0.966905 0.376996 +vt 0.968196 0.379507 +vt 0.969233 0.400931 +vt 0.968010 0.406705 +vt 0.969988 0.381520 +vt 0.972086 0.383584 +vt 0.969636 0.380950 +vt 0.973098 0.389882 +vt 0.973023 0.384583 +vt 0.972656 0.393892 +vt 0.971472 0.396277 +vt 0.964669 0.413324 +vt 0.961258 0.415910 +vt 0.957490 0.419692 +vt 0.951838 0.420542 +vt 0.956642 0.417953 +vt 0.950043 0.393411 +vt 0.951841 0.391861 +vt 0.947502 0.398743 +vt 0.946018 0.412379 +vt 0.945419 0.409055 +vt 0.945449 0.403818 +vt 0.948643 0.417293 +vt 0.952780 0.389036 +vt 0.959729 0.373750 +vt 0.969012 0.380099 +vt 0.969178 0.403822 +vt 0.967048 0.410504 +vt 0.970546 0.379904 +vt 0.972069 0.382181 +vt 0.973874 0.386810 +vt 0.974056 0.384202 +vt 0.973339 0.390524 +vt 0.971276 0.398722 +vt 0.971611 0.399929 +vt 0.961485 0.417593 +vt 0.963362 0.417021 +vt 0.958805 0.419099 +vt 0.958369 0.419115 +vt 0.960273 0.417751 +vt 0.953081 0.423199 +vt 0.955357 0.422620 +vt 0.948375 0.394078 +vt 0.945539 0.411537 +vt 0.943601 0.409383 +vt 0.947633 0.417230 +vt 0.949410 0.419908 +vt 0.953878 0.386210 +vt 0.961994 0.374595 +vt 0.964669 0.374577 +vt 0.966392 0.374608 +vt 0.968219 0.376963 +vt 0.969524 0.379708 +vt 0.970938 0.404060 +vt 0.971400 0.405944 +vt 0.971742 0.381008 +vt 0.973056 0.381941 +vt 0.973570 0.389340 +vt 0.973858 0.394444 +vt 0.973467 0.391720 +vt 0.965768 0.413649 +vt 0.962596 0.417494 +vt 0.960898 0.417042 +vt 0.964083 0.416951 +vt 0.957591 0.420855 +vt 0.956615 0.420785 +vt 0.949867 0.429118 +vt 0.948473 0.391621 +vt 0.950530 0.390995 +vt 0.945731 0.395871 +vt 0.943302 0.406913 +vt 0.951394 0.389698 +vt 0.944752 0.417335 +vt 0.944185 0.413895 +vt 0.946819 0.422568 +vt 0.949408 0.423188 +vt 0.952584 0.385602 +vt 0.968563 0.412515 +vt 0.971066 0.378740 +vt 0.975012 0.385241 +vt 0.973997 0.388552 +vt 0.974188 0.381983 +vt 0.974301 0.392197 +vt 0.974081 0.389504 +vt 0.961314 0.419416 +vt 0.962935 0.418775 +vt 0.958443 0.420492 +vt 0.959608 0.419488 +vt 0.957549 0.421750 +vt 0.956725 0.423169 +vt 0.946619 0.392356 +vt 0.942398 0.413730 +vt 0.941540 0.413005 +vt 0.944588 0.419552 +vt 0.965436 0.371837 +vt 0.967477 0.373666 +vt 0.970065 0.375931 +vt 0.973672 0.398498 +vt 0.972434 0.403603 +vt 0.970801 0.409141 +vt 0.972304 0.379590 +vt 0.975064 0.383058 +vt 0.974634 0.387491 +vt 0.973095 0.380122 +vt 0.974936 0.393413 +vt 0.974370 0.390169 +vt 0.964610 0.419226 +vt 0.968079 0.419408 +vt 0.961213 0.421512 +vt 0.960295 0.419377 +vt 0.958283 0.421943 +vt 0.944070 0.398849 +vt 0.942820 0.419437 +vt 0.940370 0.413515 +vt 0.946326 0.424708 +vt 0.972408 0.406982 +vt 0.971756 0.412356 +vt 0.972021 0.377686 +vt 0.975514 0.386713 +vt 0.974315 0.389264 +vt 0.974731 0.380649 +vt 0.975326 0.392159 +vt 0.974988 0.390140 +vt 0.960528 0.421650 +vt 0.959350 0.421628 +vt 0.961873 0.422380 +vt 0.957979 0.423997 +vt 0.940151 0.421842 +vt 0.940750 0.415046 +vt 0.943840 0.426950 +vt 0.942166 0.427587 +vt 0.966719 0.371726 +vt 0.969478 0.372448 +vt 0.977033 0.392886 +vt 0.973330 0.405896 +vt 0.973400 0.378476 +vt 0.971827 0.372807 +vt 0.974895 0.388570 +vt 0.964878 0.429468 +vt 0.971814 0.421160 +vt 0.960283 0.423815 +vt 0.958883 0.423313 +vt 0.939442 0.408100 +vt 0.939426 0.416242 +vt 0.977990 0.397096 +vt 0.973709 0.408120 +vt 0.975567 0.388561 +vt 0.979303 0.391084 +vt 0.967421 0.424101 +vt 0.969684 0.423560 +vt 0.974121 0.414943 +vt 0.959656 0.422300 +vt 0.938725 0.412669 +vt 0.938272 0.425138 +vt 0.970937 0.370726 +vt 0.976324 0.406164 +vt 0.977004 0.400817 +vt 0.972861 0.372045 +vt 0.939167 0.420755 +vt 0.980511 0.389702 +vt 0.976702 0.411564 +vt 0.980386 0.397443 +vt 0.981410 0.394101 +vt 0.977082 0.408733 +vt 0.976530 0.406334 +vt 0.978060 0.405576 +vt 0.982788 0.390102 +vt 0.978821 0.407321 +vt 0.979945 0.401514 +vt 0.981448 0.396334 +vt 0.982428 0.395683 +vt 0.979404 0.404496 +vt 0.980848 0.399107 +vt 0.984079 0.391951 +vt 0.980814 0.402661 +vt 0.981034 0.399981 +vt 0.981980 0.398457 +vt 0.984532 0.388496 +vt 0.983999 0.394066 +vt 0.980496 0.404965 +vt 0.982956 0.398670 +vt 0.984275 0.387510 +vt 0.985203 0.388717 +vt 0.984635 0.393327 +vt 0.983995 0.395627 +vt 0.980117 0.407361 +vt 0.982831 0.403160 +vt 0.981875 0.400615 +vt 0.985385 0.386631 +vt 0.985059 0.392284 +vt 0.984687 0.394307 +vt 0.982184 0.404929 +vt 0.982374 0.402143 +vt 0.984437 0.396437 +vt 0.983155 0.399801 +vt 0.986063 0.387493 +vt 0.985828 0.388712 +vt 0.985404 0.393111 +vt 0.984739 0.395115 +vt 0.980943 0.409009 +vt 0.982877 0.403975 +vt 0.983330 0.400882 +vt 0.984983 0.395373 +vt 0.986995 0.385747 +vt 0.985924 0.391507 +vt 0.985646 0.393850 +vt 0.982323 0.406399 +vt 0.982773 0.404827 +vt 0.983919 0.400902 +vt 0.984630 0.397477 +vt 0.985558 0.395534 +vt 0.986661 0.388448 +vt 0.986070 0.393064 +vt 0.985683 0.394463 +vt 0.981574 0.408535 +vt 0.983602 0.404536 +vt 0.984239 0.401834 +vt 0.987927 0.386092 +vt 0.986782 0.390771 +vt 0.986501 0.392308 +vt 0.986109 0.393665 +vt 0.983114 0.406524 +vt 0.985630 0.399011 +vt 0.985419 0.397284 +vt 0.986346 0.393579 +vt 0.987588 0.384395 +vt 0.987424 0.388958 +vt 0.986312 0.393256 +vt 0.986231 0.393389 +vt 0.982952 0.408249 +vt 0.985009 0.402148 +vt 0.986376 0.396090 +vt 0.986653 0.394027 +vt 0.988593 0.384349 +vt 0.988802 0.388064 +vt 0.987308 0.391476 +vt 0.984289 0.406444 +vt 0.984317 0.404270 +vt 0.986353 0.400534 +vt 0.987738 0.383401 +vt 0.989274 0.385223 +vt 0.983613 0.409238 +vt 0.985002 0.403603 +vt 0.986930 0.396656 +vt 0.985891 0.402721 +vt 0.986819 0.398286 +vt 0.987593 0.393121 +vt 0.988592 0.382797 +vt 0.989137 0.383962 +vt 0.988162 0.390960 +vt 0.984053 0.407884 +vt 0.984593 0.404548 +vt 0.987236 0.395040 +vt 0.986559 0.401825 +vt 0.987142 0.399487 +vt 0.989536 0.384394 +vt 0.988821 0.390548 +vt 0.984311 0.408279 +vt 0.984874 0.404672 +vt 0.985473 0.404327 +vt 0.987270 0.396972 +vt 0.987774 0.395552 +vt 0.986685 0.403011 +vt 0.986887 0.400834 +vt 0.987584 0.397853 +vt 0.987863 0.394124 +vt 0.988287 0.391796 +vt 0.989570 0.383165 +vt 0.990185 0.384302 +vt 0.985075 0.407842 +vt 0.984258 0.409647 +vt 0.985078 0.405465 +vt 0.986233 0.404281 +vt 0.987399 0.396285 +vt 0.987076 0.401574 +vt 0.988356 0.392856 +vt 0.988571 0.391714 +vt 0.984680 0.409102 +vt 0.985813 0.406136 +vt 0.987618 0.396537 +vt 0.988344 0.394249 +vt 0.990294 0.382332 +vt 0.985063 0.409390 +vt 0.984646 0.411767 +vt 0.985486 0.409258 +vt 0.986007 0.408497 +vt 0.985354 0.410501 +vt 0.485495 0.307682 +vt 0.484708 0.306175 +vt 0.484657 0.305107 +vt 0.485437 0.309081 +vt 0.484398 0.304829 +vt 0.486120 0.308632 +vt 0.486319 0.310279 +vt 0.484394 0.308114 +vt 0.484238 0.304714 +vt 0.483446 0.301728 +vt 0.485361 0.306349 +vt 0.485975 0.312065 +vt 0.484093 0.305344 +vt 0.485078 0.310656 +vt 0.483836 0.303899 +vt 0.483000 0.301050 +vt 0.484250 0.303720 +vt 0.486983 0.311185 +vt 0.487082 0.310387 +vt 0.487156 0.313109 +vt 0.483476 0.305823 +vt 0.483989 0.311521 +vt 0.483247 0.302418 +vt 0.482514 0.299164 +vt 0.483386 0.301379 +vt 0.484587 0.304276 +vt 0.486224 0.307690 +vt 0.486614 0.313900 +vt 0.484691 0.313184 +vt 0.483421 0.303826 +vt 0.482969 0.309118 +vt 0.482536 0.298582 +vt 0.482209 0.298868 +vt 0.482453 0.300628 +vt 0.484069 0.303081 +vt 0.487746 0.312592 +vt 0.485372 0.305863 +vt 0.487168 0.309318 +vt 0.487292 0.315832 +vt 0.485622 0.315082 +vt 0.482835 0.304001 +vt 0.482468 0.305717 +vt 0.481813 0.317458 +vt 0.482614 0.302333 +vt 0.481889 0.296575 +vt 0.481924 0.297352 +vt 0.483695 0.301934 +vt 0.487722 0.311362 +vt 0.488002 0.313942 +vt 0.484306 0.303163 +vt 0.486034 0.306932 +vt 0.487766 0.310673 +vt 0.486743 0.307831 +vt 0.487983 0.314923 +vt 0.480766 0.307639 +vt 0.481528 0.296970 +vt 0.481684 0.298714 +vt 0.481576 0.300922 +vt 0.483383 0.300670 +vt 0.488312 0.312404 +vt 0.488368 0.313644 +vt 0.488130 0.309975 +vt 0.487581 0.308899 +vt 0.488591 0.316694 +vt 0.486436 0.319087 +vt 0.481763 0.303558 +vt 0.475347 0.309421 +vt 0.483062 0.299182 +vt 0.483635 0.301402 +vt 0.483902 0.301989 +vt 0.488129 0.311530 +vt 0.488808 0.314873 +vt 0.484540 0.302614 +vt 0.488420 0.310860 +vt 0.487331 0.307938 +vt 0.486103 0.305782 +vt 0.488087 0.318724 +vt 0.487281 0.327136 +vt 0.479824 0.302756 +vt 0.473625 0.326477 +vt 0.480723 0.296900 +vt 0.480640 0.299281 +vt 0.483733 0.300654 +vt 0.489059 0.312967 +vt 0.488861 0.311517 +vt 0.488586 0.310400 +vt 0.488177 0.309186 +vt 0.486736 0.306502 +vt 0.487964 0.308341 +vt 0.489320 0.318667 +vt 0.489306 0.316415 +vt 0.487737 0.321403 +vt 0.476116 0.338930 +vt 0.478474 0.301220 +vt 0.470114 0.321863 +vt 0.485769 0.303334 +vt 0.488725 0.309907 +vt 0.489019 0.310258 +vt 0.488536 0.309163 +vt 0.487593 0.307170 +vt 0.486990 0.304987 +vt 0.488623 0.321355 +vt 0.489211 0.317334 +vt 0.479607 0.337923 +vt 0.477658 0.297570 +vt 0.479746 0.299999 +vt 0.469692 0.316472 +vt 0.469662 0.328303 +vt 0.473245 0.336172 +vt 0.479593 0.298197 +vt 0.484759 0.301997 +vt 0.487646 0.306073 +vt 0.488469 0.307532 +vt 0.489507 0.320609 +vt 0.489621 0.317346 +vt 0.489160 0.322355 +vt 0.481669 0.342281 +vt 0.477126 0.339567 +vt 0.474177 0.295003 +vt 0.468286 0.311313 +vt 0.466345 0.324083 +vt 0.470253 0.333476 +vt 0.468118 0.326718 +vt 0.476009 0.340835 +vt 0.479661 0.295829 +vt 0.484090 0.299981 +vt 0.486489 0.303321 +vt 0.485477 0.301848 +vt 0.489201 0.308773 +vt 0.488051 0.306875 +vt 0.487433 0.304998 +vt 0.490204 0.319909 +vt 0.490389 0.317557 +vt 0.489974 0.322071 +vt 0.492621 0.340415 +vt 0.467636 0.331989 +vt 0.472825 0.339540 +vt 0.471434 0.337194 +vt 0.484864 0.300914 +vt 0.487117 0.303442 +vt 0.488971 0.307894 +vt 0.488442 0.306343 +vt 0.488058 0.305298 +vt 0.489809 0.321155 +vt 0.490829 0.323010 +vt 0.493323 0.327008 +vt 0.485665 0.347983 +vt 0.477482 0.343389 +vt 0.464397 0.320519 +vt 0.468762 0.333810 +vt 0.473858 0.341039 +vt 0.470030 0.337277 +vt 0.484214 0.298984 +vt 0.486014 0.301987 +vt 0.486635 0.302476 +vt 0.485609 0.301471 +vt 0.489382 0.306748 +vt 0.488943 0.307065 +vt 0.487761 0.304363 +vt 0.491278 0.319174 +vt 0.490861 0.324675 +vt 0.491023 0.321070 +vt 0.491122 0.325729 +vt 0.482900 0.346706 +vt 0.475960 0.343085 +vt 0.478794 0.345654 +vt 0.463509 0.324816 +vt 0.464168 0.317109 +vt 0.465406 0.330991 +vt 0.468706 0.335493 +vt 0.474641 0.341596 +vt 0.472992 0.340728 +vt 0.471665 0.340055 +vt 0.484945 0.300259 +vt 0.487169 0.302521 +vt 0.488743 0.304996 +vt 0.489024 0.306050 +vt 0.488225 0.304360 +vt 0.490700 0.320492 +vt 0.491885 0.323396 +vt 0.491909 0.320961 +vt 0.492509 0.324433 +vt 0.482946 0.348941 +vt 0.481044 0.347107 +vt 0.474931 0.342448 +vt 0.476513 0.344075 +vt 0.476879 0.345047 +vt 0.479691 0.347265 +vt 0.462768 0.323086 +vt 0.463784 0.327265 +vt 0.463535 0.320133 +vt 0.463872 0.311743 +vt 0.464754 0.328259 +vt 0.466160 0.334284 +vt 0.467535 0.336399 +vt 0.473946 0.342457 +vt 0.472411 0.341061 +vt 0.473011 0.341872 +vt 0.469959 0.339884 +vt 0.468876 0.338190 +vt 0.485800 0.300860 +vt 0.486909 0.301688 +vt 0.492055 0.322303 +vt 0.493546 0.324565 +vt 0.481620 0.348910 +vt 0.475124 0.343677 +vt 0.475810 0.344624 +vt 0.477576 0.345836 +vt 0.478422 0.347286 +vt 0.462292 0.324914 +vt 0.463083 0.321467 +vt 0.462809 0.326185 +vt 0.462877 0.319985 +vt 0.462786 0.317443 +vt 0.463917 0.330142 +vt 0.465179 0.334465 +vt 0.466880 0.334935 +vt 0.468116 0.337176 +vt 0.471729 0.341492 +vt 0.470936 0.341149 +vt 0.487935 0.302265 +vt 0.489396 0.304780 +vt 0.488643 0.303897 +vt 0.492691 0.322801 +vt 0.492562 0.319306 +vt 0.492765 0.321797 +vt 0.493555 0.323219 +vt 0.494605 0.323767 +vt 0.480480 0.348364 +vt 0.474483 0.343638 +vt 0.477667 0.347054 +vt 0.476840 0.346853 +vt 0.478500 0.348741 +vt 0.461541 0.323301 +vt 0.462182 0.321799 +vt 0.462724 0.327359 +vt 0.461526 0.317069 +vt 0.464404 0.332893 +vt 0.465717 0.336016 +vt 0.466450 0.336764 +vt 0.467376 0.338222 +vt 0.472883 0.343538 +vt 0.471932 0.342795 +vt 0.469485 0.341358 +vt 0.469155 0.339962 +vt 0.468377 0.339782 +vt 0.489113 0.303575 +vt 0.488577 0.303057 +vt 0.492725 0.320873 +vt 0.496894 0.323564 +vt 0.480078 0.349248 +vt 0.481026 0.349585 +vt 0.474898 0.345045 +vt 0.476245 0.345978 +vt 0.479352 0.349444 +vt 0.477933 0.347855 +vt 0.462170 0.326303 +vt 0.461370 0.324890 +vt 0.462852 0.328561 +vt 0.461900 0.319813 +vt 0.463536 0.332157 +vt 0.465517 0.337125 +vt 0.464292 0.335421 +vt 0.473789 0.344072 +vt 0.471244 0.342613 +vt 0.488858 0.303364 +vt 0.493518 0.321229 +vt 0.494221 0.322871 +vt 0.495692 0.322853 +vt 0.480649 0.349969 +vt 0.481313 0.350530 +vt 0.474387 0.344993 +vt 0.475679 0.346114 +vt 0.477182 0.348151 +vt 0.475868 0.347235 +vt 0.478878 0.350139 +vt 0.477840 0.348535 +vt 0.477569 0.348050 +vt 0.460566 0.323380 +vt 0.461158 0.321340 +vt 0.462046 0.327402 +vt 0.462876 0.330095 +vt 0.463776 0.334106 +vt 0.472844 0.344829 +vt 0.471900 0.343831 +vt 0.468847 0.341051 +vt 0.493900 0.322032 +vt 0.494807 0.322293 +vt 0.496425 0.322171 +vt 0.480256 0.350447 +vt 0.479786 0.350616 +vt 0.474832 0.346470 +vt 0.476627 0.348850 +vt 0.479300 0.350642 +vt 0.478283 0.350279 +vt 0.477930 0.349306 +vt 0.461352 0.326108 +vt 0.460579 0.324922 +vt 0.460730 0.322374 +vt 0.461874 0.328482 +vt 0.462709 0.331141 +vt 0.463000 0.332811 +vt 0.463484 0.335712 +vt 0.473895 0.345568 +vt 0.494246 0.321198 +vt 0.495652 0.322170 +vt 0.497319 0.321685 +vt 0.480687 0.351187 +vt 0.477393 0.349571 +vt 0.477502 0.348980 +vt 0.475572 0.347842 +vt 0.478998 0.351492 +vt 0.462165 0.329922 +vt 0.463113 0.334414 +vt 0.473504 0.346389 +vt 0.493596 0.320131 +vt 0.495983 0.321381 +vt 0.496814 0.320927 +vt 0.495587 0.321550 +vt 0.480193 0.351523 +vt 0.481442 0.352581 +vt 0.473763 0.346207 +vt 0.477387 0.350003 +vt 0.478184 0.351335 +vt 0.477693 0.349971 +vt 0.461100 0.328594 +vt 0.462570 0.331780 +vt 0.462211 0.331098 +vt 0.462631 0.333782 +vt 0.462686 0.335492 +vt 0.494958 0.321233 +vt 0.494587 0.320024 +vt 0.497945 0.320309 +vt 0.474650 0.347505 +vt 0.477929 0.350636 +vt 0.460850 0.327059 +vt 0.462468 0.332489 +vt 0.473874 0.347427 +vt 0.493891 0.318899 +vt 0.496292 0.320140 +vt 0.497480 0.319345 +vt 0.495372 0.319699 +vt 0.477632 0.350616 +vt 0.461002 0.329954 +vt 0.459508 0.325702 +vt 0.461834 0.332642 +vt 0.461804 0.334510 +vt 0.492973 0.317760 +vt 0.494551 0.318709 +vt 0.498179 0.318651 +vt 0.461604 0.331095 +vt 0.460562 0.328890 +vt 0.458720 0.325995 +vt 0.461989 0.332136 +vt 0.493979 0.317723 +vt 0.496297 0.318451 +vt 0.497836 0.317723 +vt 0.498790 0.318719 +vt 0.460780 0.331587 +vt 0.460014 0.329527 +vt 0.458559 0.324437 +vt 0.461546 0.333231 +vt 0.461512 0.332132 +vt 0.495287 0.318396 +vt 0.494749 0.316958 +vt 0.497137 0.318324 +vt 0.498450 0.317896 +vt 0.459459 0.327578 +vt 0.457865 0.324634 +vt 0.460923 0.333105 +vt 0.494362 0.316268 +vt 0.497033 0.317046 +vt 0.496038 0.316977 +vt 0.498543 0.316978 +vt 0.498947 0.317609 +vt 0.461197 0.332454 +vt 0.459955 0.331183 +vt 0.458929 0.327872 +vt 0.458171 0.326207 +vt 0.457205 0.322347 +vt 0.495246 0.317335 +vt 0.494846 0.315960 +vt 0.497929 0.316301 +vt 0.459282 0.329584 +vt 0.460471 0.333351 +vt 0.457641 0.325251 +vt 0.457304 0.323851 +vt 0.495274 0.316355 +vt 0.494622 0.314921 +vt 0.497156 0.315246 +vt 0.495670 0.316898 +vt 0.499296 0.316745 +vt 0.498869 0.315859 +vt 0.459249 0.331062 +vt 0.459448 0.333325 +vt 0.458470 0.327659 +vt 0.458451 0.328506 +vt 0.458017 0.326772 +vt 0.456570 0.321781 +vt 0.493741 0.314405 +vt 0.495376 0.314051 +vt 0.495617 0.315092 +vt 0.496090 0.315905 +vt 0.498164 0.315151 +vt 0.458718 0.330366 +vt 0.457400 0.326041 +vt 0.457017 0.324150 +vt 0.456648 0.322554 +vt 0.492850 0.315159 +vt 0.493606 0.313000 +vt 0.494987 0.313113 +vt 0.496374 0.314399 +vt 0.498931 0.314684 +vt 0.497993 0.313630 +vt 0.458422 0.331987 +vt 0.458845 0.333010 +vt 0.457971 0.329009 +vt 0.457667 0.327706 +vt 0.455738 0.320217 +vt 0.493145 0.313707 +vt 0.495984 0.311863 +vt 0.497034 0.313567 +vt 0.457571 0.329986 +vt 0.456911 0.327336 +vt 0.456787 0.324981 +vt 0.455984 0.322123 +vt 0.492601 0.313186 +vt 0.494413 0.312142 +vt 0.493132 0.312624 +vt 0.496411 0.313144 +vt 0.494919 0.311141 +vt 0.498926 0.313567 +vt 0.497413 0.312786 +vt 0.457270 0.328880 +vt 0.454569 0.318374 +vt 0.491950 0.313850 +vt 0.493734 0.311252 +vt 0.496941 0.312204 +vt 0.495811 0.309653 +vt 0.498703 0.312148 +vt 0.499666 0.314188 +vt 0.497733 0.311811 +vt 0.491904 0.311922 +vt 0.492779 0.311814 +vt 0.497129 0.310147 +vt 0.494744 0.308818 +vt 0.499410 0.312984 +vt 0.492653 0.309997 +vt 0.496369 0.306247 +vt 0.500172 0.313364 +vt 0.493546 0.308524 +vt 0.492865 0.307326 +vt 0.202746 0.303497 +vt 0.202907 0.305904 +vt 0.202365 0.305308 +vt 0.203317 0.303300 +vt 0.202487 0.306992 +vt 0.202063 0.304454 +vt 0.203221 0.299755 +vt 0.203600 0.306664 +vt 0.203000 0.307633 +vt 0.203389 0.301409 +vt 0.204025 0.304048 +vt 0.202107 0.308441 +vt 0.203136 0.297823 +vt 0.203706 0.299545 +vt 0.203949 0.301868 +vt 0.203919 0.305678 +vt 0.203685 0.307700 +vt 0.202253 0.308977 +vt 0.201598 0.308407 +vt 0.202802 0.297264 +vt 0.203671 0.295620 +vt 0.203930 0.300288 +vt 0.205096 0.303255 +vt 0.204093 0.306842 +vt 0.204575 0.305320 +vt 0.203138 0.308852 +vt 0.202624 0.309649 +vt 0.201618 0.310194 +vt 0.201674 0.304280 +vt 0.203400 0.294704 +vt 0.204224 0.298899 +vt 0.204202 0.295457 +vt 0.204650 0.301061 +vt 0.204304 0.306163 +vt 0.204323 0.308075 +vt 0.203877 0.309293 +vt 0.202728 0.311037 +vt 0.202135 0.311758 +vt 0.202128 0.297345 +vt 0.202945 0.294279 +vt 0.203831 0.293457 +vt 0.204474 0.300010 +vt 0.204453 0.296892 +vt 0.205466 0.300838 +vt 0.205516 0.305924 +vt 0.204716 0.306899 +vt 0.203249 0.309866 +vt 0.201805 0.314296 +vt 0.203479 0.292990 +vt 0.204955 0.298173 +vt 0.204647 0.293851 +vt 0.205005 0.295730 +vt 0.204849 0.299971 +vt 0.206085 0.302492 +vt 0.206004 0.304170 +vt 0.204658 0.309457 +vt 0.204913 0.308296 +vt 0.203481 0.311279 +vt 0.202474 0.313360 +vt 0.201127 0.317328 +vt 0.205298 0.299265 +vt 0.205720 0.303348 +vt 0.206371 0.300433 +vt 0.206674 0.307706 +vt 0.205358 0.307691 +vt 0.204244 0.311109 +vt 0.203174 0.312544 +vt 0.202069 0.315505 +vt 0.201619 0.317848 +vt 0.205548 0.296636 +vt 0.205311 0.294147 +vt 0.205419 0.298351 +vt 0.207083 0.301501 +vt 0.207879 0.303676 +vt 0.205165 0.310537 +vt 0.205498 0.309330 +vt 0.203265 0.313864 +vt 0.202507 0.315187 +vt 0.205796 0.295208 +vt 0.207357 0.299248 +vt 0.208178 0.311323 +vt 0.205060 0.312632 +vt 0.202223 0.318303 +vt 0.202708 0.316860 +vt 0.206009 0.297562 +vt 0.206190 0.295694 +vt 0.205861 0.293733 +vt 0.208127 0.301537 +vt 0.208719 0.306815 +vt 0.207360 0.309985 +vt 0.204252 0.313812 +vt 0.207192 0.312712 +vt 0.203125 0.315616 +vt 0.206463 0.294408 +vt 0.208341 0.298650 +vt 0.209046 0.303483 +vt 0.210117 0.308510 +vt 0.205126 0.314772 +vt 0.206883 0.315754 +vt 0.203482 0.316554 +vt 0.203092 0.318754 +vt 0.207437 0.294707 +vt 0.207524 0.296890 +vt 0.209452 0.312015 +vt 0.210052 0.304168 +vt 0.208590 0.314193 +vt 0.204420 0.315189 +vt 0.207550 0.314780 +vt 0.208719 0.295933 +vt 0.210604 0.311160 +vt 0.211484 0.305428 +vt 0.204501 0.316741 +vt 0.208192 0.317136 +vt 0.203830 0.317924 +vt 0.211439 0.302804 +vt 0.210313 0.295508 +vt 0.209960 0.315270 +vt 0.211337 0.312212 +vt 0.210301 0.313882 +vt 0.212954 0.307532 +vt 0.206275 0.321485 +vt 0.207213 0.319823 +vt 0.204359 0.319438 +vt 0.208316 0.293598 +vt 0.209783 0.294948 +vt 0.209617 0.317906 +vt 0.212209 0.308777 +vt 0.213059 0.304064 +vt 0.209073 0.321169 +vt 0.209208 0.293504 +vt 0.213351 0.301584 +vt 0.210238 0.294138 +vt 0.210503 0.317815 +vt 0.211996 0.313216 +vt 0.211397 0.315137 +vt 0.213473 0.309282 +vt 0.213818 0.306256 +vt 0.207152 0.324466 +vt 0.213694 0.297865 +vt 0.210884 0.295098 +vt 0.209906 0.319556 +vt 0.214794 0.303222 +vt 0.214304 0.300852 +vt 0.208653 0.326312 +vt 0.211436 0.294385 +vt 0.212496 0.315989 +vt 0.209899 0.322366 +vt 0.212374 0.314150 +vt 0.214034 0.309785 +vt 0.212244 0.296186 +vt 0.215284 0.298937 +vt 0.210748 0.322055 +vt 0.215163 0.307828 +vt 0.215728 0.301713 +vt 0.209829 0.325519 +vt 0.213610 0.295726 +vt 0.212313 0.294096 +vt 0.211324 0.323971 +vt 0.216329 0.303846 +vt 0.217269 0.297531 +vt 0.214996 0.319112 +vt 0.216086 0.314334 +vt 0.217255 0.305729 +vt 0.218484 0.303219 +vt 0.218323 0.300270 +vt 0.218693 0.298806 +vt 0.217531 0.315759 +vt 0.217177 0.312032 +vt 0.218303 0.306263 +vt 0.219849 0.301177 +vt 0.217667 0.319476 +vt 0.217644 0.308464 +vt 0.219555 0.304119 +vt 0.219860 0.299641 +vt 0.218455 0.313316 +vt 0.218113 0.316850 +vt 0.218136 0.309463 +vt 0.219425 0.306560 +vt 0.220833 0.305054 +vt 0.220668 0.298786 +vt 0.219633 0.298160 +vt 0.218520 0.314980 +vt 0.218620 0.317144 +vt 0.220368 0.305959 +vt 0.222118 0.302777 +vt 0.219255 0.314848 +vt 0.219259 0.313108 +vt 0.218820 0.318847 +vt 0.219980 0.308111 +vt 0.222148 0.304688 +vt 0.221384 0.306746 +vt 0.219128 0.316291 +vt 0.218772 0.309766 +vt 0.219095 0.317283 +vt 0.218644 0.320692 +vt 0.220993 0.309102 +vt 0.223677 0.305720 +vt 0.219846 0.316141 +vt 0.220302 0.314459 +vt 0.219900 0.311286 +vt 0.218943 0.316728 +vt 0.219426 0.317470 +vt 0.219375 0.320650 +vt 0.218471 0.323006 +vt 0.220699 0.310602 +vt 0.222293 0.308615 +vt 0.218920 0.321787 +vt 0.222004 0.311319 +vt 0.223879 0.307935 +vt 0.220238 0.318030 +vt 0.220659 0.316869 +vt 0.221238 0.313561 +vt 0.220025 0.321371 +vt 0.219304 0.322483 +vt 0.225370 0.306851 +vt 0.224151 0.309058 +vt 0.221270 0.315632 +vt 0.222032 0.314356 +vt 0.225364 0.308502 +vt 0.227395 0.305080 +vt 0.223140 0.310818 +vt 0.220857 0.318602 +vt 0.220949 0.320780 +vt 0.221350 0.317628 +vt 0.220001 0.324449 +vt 0.222989 0.313115 +vt 0.224660 0.313294 +vt 0.225358 0.310127 +vt 0.220925 0.323407 +vt 0.222130 0.316546 +vt 0.223004 0.315176 +vt 0.226764 0.309340 +vt 0.221176 0.319999 +vt 0.221346 0.318744 +vt 0.221510 0.320682 +vt 0.222223 0.318917 +vt 0.228226 0.307126 +vt 0.225957 0.314257 +vt 0.223191 0.317748 +vt 0.224267 0.315647 +vt 0.229892 0.303796 +vt 0.229732 0.314080 +vt 0.227488 0.314870 +vt 0.229155 0.301752 +vt 0.230353 0.306638 +vt 0.227204 0.317109 +vt 0.224611 0.321755 +vt 0.230284 0.302930 +vt 0.230701 0.304417 +vt 0.230516 0.310640 +vt 0.229461 0.316791 +vt 0.231724 0.306376 +vt 0.230934 0.314377 +vt 0.231142 0.308734 +vt 0.231353 0.318190 +vt 0.226211 0.320133 +vt 0.228413 0.320698 +vt 0.230765 0.302218 +vt 0.231563 0.303534 +vt 0.231764 0.309574 +vt 0.230223 0.319583 +vt 0.229429 0.320144 +vt 0.232027 0.304064 +vt 0.232171 0.313719 +vt 0.232366 0.316331 +vt 0.230843 0.320933 +vt 0.228945 0.320662 +vt 0.231414 0.301922 +vt 0.232570 0.302500 +vt 0.232465 0.305381 +vt 0.233588 0.307645 +vt 0.233164 0.310480 +vt 0.233299 0.318533 +vt 0.229876 0.321960 +vt 0.232335 0.320346 +vt 0.228955 0.322030 +vt 0.230841 0.300557 +vt 0.233063 0.303595 +vt 0.233370 0.305534 +vt 0.234145 0.310079 +vt 0.234332 0.315130 +vt 0.230627 0.322859 +vt 0.231952 0.324478 +vt 0.232112 0.301313 +vt 0.232995 0.301837 +vt 0.236037 0.307726 +vt 0.232866 0.322587 +vt 0.234822 0.318058 +vt 0.228268 0.323953 +vt 0.230083 0.324979 +vt 0.231937 0.300313 +vt 0.233768 0.302877 +vt 0.233994 0.303961 +vt 0.235983 0.306332 +vt 0.236557 0.311018 +vt 0.234330 0.322887 +vt 0.236373 0.314957 +vt 0.232848 0.325333 +vt 0.232728 0.300563 +vt 0.233694 0.301466 +vt 0.236881 0.306518 +vt 0.236119 0.319812 +vt 0.232708 0.299539 +vt 0.235028 0.303054 +vt 0.235601 0.304287 +vt 0.237797 0.307438 +vt 0.236270 0.305344 +vt 0.239002 0.311903 +vt 0.234375 0.324734 +vt 0.238385 0.318837 +vt 0.235473 0.302461 +vt 0.238131 0.308599 +vt 0.237070 0.305104 +vt 0.237965 0.306732 +vt 0.238300 0.315134 +vt 0.236967 0.323261 +vt 0.238040 0.323062 +vt 0.236094 0.303948 +vt 0.239022 0.309035 +vt 0.239875 0.316076 +vt 0.241460 0.321868 +vt 0.233717 0.299643 +vt 0.236913 0.303688 +vt 0.238816 0.307399 +vt 0.238432 0.305763 +vt 0.240578 0.309867 +vt 0.238174 0.327158 +vt 0.241076 0.316657 +vt 0.239876 0.324605 +vt 0.235301 0.301109 +vt 0.236250 0.301639 +vt 0.238193 0.304732 +vt 0.239698 0.308028 +vt 0.239061 0.324639 +vt 0.240868 0.323985 +vt 0.243794 0.317510 +vt 0.235196 0.300169 +vt 0.237233 0.302521 +vt 0.239747 0.306728 +vt 0.238215 0.303696 +vt 0.239399 0.305334 +vt 0.240824 0.307401 +vt 0.242276 0.309561 +vt 0.239348 0.327438 +vt 0.240876 0.327159 +vt 0.241918 0.326580 +vt 0.242755 0.323638 +vt 0.243159 0.313557 +vt 0.236665 0.300990 +vt 0.241597 0.308283 +vt 0.239167 0.330651 +vt 0.240560 0.328698 +vt 0.246068 0.320215 +vt 0.245336 0.316267 +vt 0.240611 0.305720 +vt 0.241406 0.307057 +vt 0.243360 0.309920 +vt 0.241772 0.329960 +vt 0.243186 0.325498 +vt 0.246787 0.325821 +vt 0.244285 0.311049 +vt 0.242649 0.327403 +vt 0.244600 0.328071 +vt 0.248060 0.321044 +vt 0.246635 0.315793 +vt 0.245479 0.310600 +vt 0.243853 0.308580 +vt 0.243160 0.329344 +vt 0.247425 0.329293 +vt 0.244382 0.308976 +vt 0.243509 0.331409 +vt 0.247567 0.315061 +vt 0.250191 0.319544 +vt 0.245290 0.309131 +vt 0.244305 0.307852 +vt 0.250060 0.328516 +vt 0.247397 0.310288 +vt 0.245147 0.308196 +vt 0.247198 0.308911 +vt 0.249169 0.314224 +vt 0.250023 0.329964 +vt 0.251313 0.322317 +vt 0.248885 0.311912 +vt 0.247124 0.308027 +vt 0.244984 0.307158 +vt 0.252719 0.319868 +vt 0.251956 0.329553 +vt 0.252164 0.326997 +vt 0.248312 0.310579 +vt 0.247842 0.308955 +vt 0.249920 0.311672 +vt 0.251460 0.316002 +vt 0.252834 0.323412 +vt 0.249208 0.309635 +vt 0.246713 0.307352 +vt 0.247762 0.307356 +vt 0.250733 0.313312 +vt 0.252666 0.317367 +vt 0.253282 0.328244 +vt 0.253709 0.319439 +vt 0.246497 0.306487 +vt 0.248438 0.308258 +vt 0.250160 0.310461 +vt 0.250801 0.311559 +vt 0.251804 0.313367 +vt 0.253086 0.314266 +vt 0.254392 0.327333 +vt 0.254400 0.320955 +vt 0.248377 0.307022 +vt 0.249151 0.308086 +vt 0.251259 0.311139 +vt 0.253914 0.316712 +vt 0.255168 0.318236 +vt 0.248797 0.308244 +vt 0.250816 0.309587 +vt 0.254267 0.314122 +vt 0.256636 0.329327 +vt 0.257136 0.324703 +vt 0.255522 0.316310 +vt 0.257457 0.319830 +vt 0.257119 0.317130 +vt 0.255244 0.313586 +vt 0.257719 0.329386 +vt 0.258714 0.322236 +vt 0.257467 0.315015 +vt 0.255940 0.313078 +vt 0.259112 0.326252 +vt 0.258928 0.319654 +vt 0.259060 0.324185 +vt 0.258712 0.329538 +vt 0.260173 0.322712 +vt 0.257391 0.313561 +vt 0.259729 0.314942 +vt 0.259814 0.325668 +vt 0.259777 0.328483 +vt 0.260081 0.324630 +vt 0.260967 0.322024 +vt 0.256863 0.311948 +vt 0.259779 0.316307 +vt 0.259869 0.326969 +vt 0.259729 0.331352 +vt 0.260843 0.325282 +vt 0.257555 0.312801 +vt 0.258508 0.313098 +vt 0.260097 0.314638 +vt 0.260555 0.326934 +vt 0.260614 0.328883 +vt 0.261847 0.317582 +vt 0.261597 0.325123 +vt 0.257912 0.311956 +vt 0.259207 0.312932 +vt 0.262485 0.323928 +vt 0.260985 0.327497 +vt 0.256608 0.310705 +vt 0.258091 0.310863 +vt 0.259025 0.311706 +vt 0.425083 0.075085 +vt 0.425089 0.077287 +vt 0.424705 0.077766 +vt 0.425387 0.075440 +vt 0.424706 0.080137 +vt 0.424551 0.076449 +vt 0.425471 0.073596 +vt 0.425426 0.076658 +vt 0.424145 0.078678 +vt 0.425090 0.079315 +vt 0.425229 0.072162 +vt 0.425756 0.074299 +vt 0.425381 0.077871 +vt 0.425696 0.076245 +vt 0.423575 0.082942 +vt 0.425126 0.080846 +vt 0.424560 0.074099 +vt 0.423761 0.076355 +vt 0.425576 0.070927 +vt 0.425913 0.072617 +vt 0.424836 0.081540 +vt 0.422753 0.082713 +vt 0.425654 0.079050 +vt 0.424416 0.071619 +vt 0.425134 0.070757 +vt 0.426070 0.074223 +vt 0.425831 0.077771 +vt 0.424761 0.083228 +vt 0.422565 0.086839 +vt 0.425886 0.080216 +vt 0.425200 0.082123 +vt 0.423834 0.072502 +vt 0.424756 0.070717 +vt 0.426152 0.070414 +vt 0.425408 0.069515 +vt 0.426333 0.071951 +vt 0.426200 0.076586 +vt 0.423848 0.087470 +vt 0.426288 0.078674 +vt 0.425615 0.081843 +vt 0.423869 0.069323 +vt 0.425884 0.069616 +vt 0.425054 0.069358 +vt 0.427212 0.073512 +vt 0.426917 0.076259 +vt 0.424602 0.086170 +vt 0.425039 0.083277 +vt 0.422696 0.091433 +vt 0.426179 0.083280 +vt 0.427186 0.080205 +vt 0.425318 0.083770 +vt 0.423035 0.066130 +vt 0.424355 0.067928 +vt 0.426642 0.068233 +vt 0.426907 0.070590 +vt 0.425833 0.068331 +vt 0.425179 0.068021 +vt 0.424864 0.068111 +vt 0.427480 0.075216 +vt 0.424859 0.089183 +vt 0.423451 0.093431 +vt 0.425635 0.083924 +vt 0.427135 0.078631 +vt 0.423838 0.066147 +vt 0.427898 0.074177 +vt 0.427543 0.072399 +vt 0.428101 0.076470 +vt 0.425279 0.087102 +vt 0.425348 0.084873 +vt 0.421875 0.097302 +vt 0.427155 0.082116 +vt 0.425890 0.085232 +vt 0.427496 0.079185 +vt 0.423065 0.062668 +vt 0.424374 0.065789 +vt 0.426116 0.066697 +vt 0.427759 0.068661 +vt 0.425281 0.065607 +vt 0.424849 0.065948 +vt 0.428495 0.075186 +vt 0.427693 0.070777 +vt 0.427550 0.077416 +vt 0.425267 0.085906 +vt 0.425387 0.088783 +vt 0.424472 0.095659 +vt 0.423689 0.100858 +vt 0.427800 0.081340 +vt 0.426409 0.084642 +vt 0.425685 0.085578 +vt 0.427802 0.079724 +vt 0.427674 0.078664 +vt 0.424033 0.064758 +vt 0.424587 0.065250 +vt 0.426663 0.065667 +vt 0.427759 0.067165 +vt 0.425086 0.065609 +vt 0.428593 0.073783 +vt 0.428354 0.072191 +vt 0.428219 0.078126 +vt 0.428751 0.076226 +vt 0.425707 0.087402 +vt 0.425114 0.090393 +vt 0.425215 0.092825 +vt 0.428041 0.082417 +vt 0.427529 0.083614 +vt 0.426131 0.086925 +vt 0.424315 0.062352 +vt 0.424399 0.063718 +vt 0.426043 0.065134 +vt 0.429017 0.066401 +vt 0.428836 0.070057 +vt 0.425211 0.064930 +vt 0.424951 0.065015 +vt 0.424761 0.064873 +vt 0.429311 0.074944 +vt 0.428694 0.077065 +vt 0.429447 0.076415 +vt 0.425826 0.088783 +vt 0.425657 0.090252 +vt 0.425227 0.095664 +vt 0.424963 0.098443 +vt 0.428330 0.080281 +vt 0.427091 0.084883 +vt 0.427081 0.087585 +vt 0.424194 0.060889 +vt 0.424711 0.063006 +vt 0.425588 0.064342 +vt 0.426565 0.064475 +vt 0.427891 0.065531 +vt 0.430077 0.073977 +vt 0.429006 0.078253 +vt 0.429079 0.076704 +vt 0.426092 0.089190 +vt 0.425708 0.094038 +vt 0.424849 0.101346 +vt 0.428346 0.079450 +vt 0.428407 0.083675 +vt 0.428907 0.081312 +vt 0.427865 0.085044 +vt 0.423526 0.059764 +vt 0.424679 0.061520 +vt 0.426215 0.063380 +vt 0.427232 0.064309 +vt 0.430357 0.068957 +vt 0.428245 0.064110 +vt 0.425104 0.064138 +vt 0.430050 0.076335 +vt 0.429090 0.077269 +vt 0.429423 0.077242 +vt 0.425833 0.092386 +vt 0.425436 0.096399 +vt 0.424387 0.104350 +vt 0.425854 0.100562 +vt 0.429108 0.079971 +vt 0.429060 0.082601 +vt 0.428061 0.086782 +vt 0.427073 0.090215 +vt 0.424070 0.058429 +vt 0.422452 0.061176 +vt 0.424860 0.060890 +vt 0.425558 0.062684 +vt 0.429074 0.064034 +vt 0.425086 0.062920 +vt 0.430368 0.077963 +vt 0.430924 0.079193 +vt 0.432764 0.072328 +vt 0.429278 0.077643 +vt 0.429975 0.077927 +vt 0.425899 0.098046 +vt 0.426184 0.094830 +vt 0.426096 0.092232 +vt 0.425291 0.103177 +vt 0.426039 0.099404 +vt 0.429497 0.084160 +vt 0.428709 0.085721 +vt 0.429398 0.081144 +vt 0.429279 0.081872 +vt 0.427968 0.089162 +vt 0.426446 0.091066 +vt 0.423669 0.054867 +vt 0.424676 0.058904 +vt 0.426240 0.061193 +vt 0.426905 0.062331 +vt 0.427711 0.062520 +vt 0.429819 0.064523 +vt 0.428705 0.063326 +vt 0.431829 0.079592 +vt 0.429593 0.079223 +vt 0.429592 0.078189 +vt 0.426322 0.096549 +vt 0.424727 0.106652 +vt 0.425705 0.101871 +vt 0.426263 0.100740 +vt 0.429625 0.082747 +vt 0.430037 0.080634 +vt 0.429406 0.082305 +vt 0.428655 0.086925 +vt 0.428619 0.087956 +vt 0.428365 0.090689 +vt 0.426985 0.092339 +vt 0.424288 0.056502 +vt 0.423588 0.052852 +vt 0.425264 0.059093 +vt 0.428381 0.062623 +vt 0.429647 0.063673 +vt 0.429386 0.062894 +vt 0.430813 0.079429 +vt 0.430510 0.078914 +vt 0.431560 0.083799 +vt 0.434121 0.089036 +vt 0.430179 0.079272 +vt 0.426450 0.097174 +vt 0.426447 0.098142 +vt 0.426535 0.092976 +vt 0.426568 0.094665 +vt 0.425604 0.105061 +vt 0.425891 0.101188 +vt 0.425639 0.103154 +vt 0.426477 0.099032 +vt 0.430398 0.082595 +vt 0.429586 0.086707 +vt 0.429701 0.081905 +vt 0.428944 0.086878 +vt 0.428575 0.089350 +vt 0.427465 0.091617 +vt 0.424142 0.054118 +vt 0.424738 0.057468 +vt 0.424020 0.052775 +vt 0.426237 0.059859 +vt 0.426859 0.060868 +vt 0.427452 0.060883 +vt 0.428173 0.060875 +vt 0.430170 0.062984 +vt 0.428891 0.061782 +vt 0.430952 0.081050 +vt 0.431239 0.081821 +vt 0.439012 0.077527 +vt 0.426985 0.096654 +vt 0.424929 0.109230 +vt 0.425798 0.101616 +vt 0.425919 0.102544 +vt 0.427089 0.099310 +vt 0.430603 0.084749 +vt 0.429430 0.089091 +vt 0.429137 0.090801 +vt 0.428455 0.093100 +vt 0.427463 0.094472 +vt 0.426922 0.094308 +vt 0.424602 0.055092 +vt 0.424898 0.056294 +vt 0.424130 0.051124 +vt 0.425614 0.057843 +vt 0.425820 0.058306 +vt 0.429603 0.061561 +vt 0.430690 0.080048 +vt 0.431017 0.088686 +vt 0.431042 0.083023 +vt 0.438318 0.093372 +vt 0.430502 0.080339 +vt 0.426794 0.098084 +vt 0.425832 0.107217 +vt 0.426949 0.100988 +vt 0.430788 0.083562 +vt 0.430624 0.080987 +vt 0.429089 0.092364 +vt 0.428059 0.093955 +vt 0.424864 0.053653 +vt 0.424197 0.053030 +vt 0.424521 0.052258 +vt 0.427054 0.059556 +vt 0.426648 0.057527 +vt 0.427689 0.058985 +vt 0.429029 0.060296 +vt 0.429325 0.060918 +vt 0.431879 0.094152 +vt 0.438428 0.107916 +vt 0.442070 0.097711 +vt 0.427358 0.096878 +vt 0.425892 0.109400 +vt 0.425873 0.105519 +vt 0.426102 0.103513 +vt 0.426433 0.102112 +vt 0.427700 0.099653 +vt 0.430278 0.092647 +vt 0.429167 0.093710 +vt 0.428749 0.094637 +vt 0.427758 0.095274 +vt 0.425356 0.055040 +vt 0.425754 0.057019 +vt 0.424537 0.050568 +vt 0.426163 0.056561 +vt 0.428477 0.058954 +vt 0.430268 0.061622 +vt 0.430004 0.060409 +vt 0.432975 0.102623 +vt 0.443685 0.092264 +vt 0.426101 0.107675 +vt 0.426094 0.105936 +vt 0.427071 0.102143 +vt 0.429855 0.093861 +vt 0.425546 0.053061 +vt 0.425090 0.051548 +vt 0.424784 0.051134 +vt 0.424420 0.048938 +vt 0.427175 0.057098 +vt 0.426696 0.055907 +vt 0.428170 0.057298 +vt 0.429559 0.058890 +vt 0.428983 0.058324 +vt 0.431333 0.097152 +vt 0.446118 0.111634 +vt 0.434330 0.111356 +vt 0.444580 0.088021 +vt 0.447108 0.101159 +vt 0.428426 0.096205 +vt 0.426376 0.108628 +vt 0.426456 0.103879 +vt 0.426512 0.103039 +vt 0.428457 0.097813 +vt 0.428059 0.101223 +vt 0.430593 0.095185 +vt 0.429615 0.094841 +vt 0.426003 0.053507 +vt 0.425941 0.055662 +vt 0.425006 0.050136 +vt 0.426504 0.054979 +vt 0.428675 0.057367 +vt 0.430702 0.060806 +vt 0.430320 0.058996 +vt 0.431224 0.100580 +vt 0.432609 0.108999 +vt 0.435966 0.116168 +vt 0.446841 0.080065 +vt 0.445841 0.094498 +vt 0.426519 0.105260 +vt 0.426401 0.107582 +vt 0.426595 0.109624 +vt 0.427495 0.102706 +vt 0.426872 0.103292 +vt 0.430296 0.094997 +vt 0.429276 0.095898 +vt 0.426192 0.051294 +vt 0.425909 0.052771 +vt 0.426131 0.054388 +vt 0.425215 0.048684 +vt 0.427564 0.055392 +vt 0.427497 0.053962 +vt 0.428538 0.055508 +vt 0.428501 0.056278 +vt 0.429238 0.056965 +vt 0.429888 0.057575 +vt 0.430854 0.097279 +vt 0.431032 0.105194 +vt 0.432304 0.113177 +vt 0.431253 0.107901 +vt 0.433912 0.117567 +vt 0.446051 0.088094 +vt 0.446110 0.091847 +vt 0.447208 0.096784 +vt 0.429111 0.097410 +vt 0.427026 0.108175 +vt 0.427121 0.104825 +vt 0.428833 0.100786 +vt 0.428816 0.102980 +vt 0.430627 0.095655 +vt 0.430106 0.095614 +vt 0.425759 0.050788 +vt 0.428791 0.056559 +vt 0.430487 0.057348 +vt 0.430351 0.098918 +vt 0.430391 0.101781 +vt 0.435161 0.118804 +vt 0.446746 0.089491 +vt 0.446694 0.094532 +vt 0.449110 0.097785 +vt 0.429101 0.099124 +vt 0.426954 0.106718 +vt 0.428178 0.104027 +vt 0.429862 0.096849 +vt 0.427997 0.054073 +vt 0.428829 0.055804 +vt 0.429339 0.055179 +vt 0.430503 0.055629 +vt 0.430470 0.096384 +vt 0.429640 0.103907 +vt 0.430447 0.106692 +vt 0.430491 0.109710 +vt 0.431178 0.116169 +vt 0.436037 0.120311 +vt 0.434893 0.120445 +vt 0.447924 0.091212 +vt 0.446973 0.092887 +vt 0.447682 0.094934 +vt 0.429671 0.098379 +vt 0.427753 0.106148 +vt 0.429721 0.099800 +vt 0.427944 0.053269 +vt 0.428511 0.053959 +vt 0.428901 0.053937 +vt 0.429928 0.054984 +vt 0.431081 0.056834 +vt 0.430581 0.095557 +vt 0.430088 0.100468 +vt 0.430171 0.105813 +vt 0.429716 0.101462 +vt 0.434096 0.122034 +vt 0.449745 0.089714 +vt 0.448669 0.094746 +vt 0.428098 0.107605 +vt 0.428803 0.105399 +vt 0.428495 0.052959 +vt 0.427917 0.052495 +vt 0.429688 0.054093 +vt 0.430230 0.054218 +vt 0.431060 0.055470 +vt 0.429522 0.105919 +vt 0.429970 0.108571 +vt 0.429904 0.106702 +vt 0.429935 0.113173 +vt 0.435370 0.122827 +vt 0.449211 0.093204 +vt 0.449804 0.095328 +vt 0.427962 0.109682 +vt 0.428794 0.107513 +vt 0.429019 0.053325 +vt 0.430727 0.054725 +vt 0.431505 0.056030 +vt 0.430073 0.110646 +vt 0.434627 0.124275 +vt 0.450231 0.093275 +vt 0.428776 0.109398 +vt 0.428660 0.051890 +vt 0.429584 0.053344 +vt 0.429610 0.052660 +vt 0.429908 0.053593 +vt 0.430665 0.054024 +vt 0.431252 0.055135 +vt 0.431026 0.054700 +vt 0.429398 0.108007 +vt 0.429248 0.110595 +vt 0.434088 0.125789 +vt 0.435306 0.124823 +vt 0.428739 0.110278 +vt 0.430102 0.053364 +vt 0.431161 0.054476 +vt 0.429179 0.112561 +vt 0.434729 0.125875 +vt 0.428544 0.110897 +vt 0.430486 0.053405 +vt 0.428847 0.111441 +vt 0.428879 0.110792 +vt 0.427492 0.111261 +vt 0.428376 0.112144 +vt 0.667720 0.668290 +vt 0.666508 0.667663 +vt 0.667875 0.665553 +vt 0.665282 0.670612 +vt 0.666703 0.662814 +vt 0.668648 0.668462 +vt 0.668572 0.670500 +vt 0.664982 0.665607 +vt 0.668934 0.659479 +vt 0.670732 0.666873 +vt 0.668599 0.672617 +vt 0.664306 0.669058 +vt 0.666638 0.659700 +vt 0.665966 0.658621 +vt 0.669918 0.670503 +vt 0.670022 0.672427 +vt 0.666723 0.672654 +vt 0.664255 0.671760 +vt 0.662787 0.665455 +vt 0.671954 0.664753 +vt 0.666511 0.657125 +vt 0.664567 0.662421 +vt 0.671699 0.670969 +vt 0.668113 0.676191 +vt 0.666206 0.676134 +vt 0.665447 0.673457 +vt 0.663292 0.669491 +vt 0.672384 0.669836 +vt 0.673483 0.658380 +vt 0.664296 0.659746 +vt 0.670314 0.678576 +vt 0.664193 0.674156 +vt 0.663253 0.673000 +vt 0.662797 0.660709 +vt 0.661767 0.666543 +vt 0.674596 0.667517 +vt 0.665326 0.656304 +vt 0.664562 0.657772 +vt 0.672463 0.673073 +vt 0.674242 0.672736 +vt 0.672372 0.676776 +vt 0.669261 0.680348 +vt 0.667036 0.680184 +vt 0.664648 0.675751 +vt 0.662528 0.670830 +vt 0.661381 0.662917 +vt 0.675104 0.670240 +vt 0.676638 0.663706 +vt 0.663445 0.658488 +vt 0.673518 0.674891 +vt 0.671788 0.680203 +vt 0.670530 0.680625 +vt 0.668285 0.680010 +vt 0.666211 0.679579 +vt 0.662480 0.675109 +vt 0.661785 0.673803 +vt 0.661842 0.659167 +vt 0.660011 0.664204 +vt 0.677499 0.668571 +vt 0.663170 0.656785 +vt 0.662757 0.658712 +vt 0.672899 0.675510 +vt 0.674883 0.675239 +vt 0.676393 0.673847 +vt 0.672700 0.679880 +vt 0.669014 0.681479 +vt 0.666936 0.681501 +vt 0.662785 0.677239 +vt 0.660062 0.661370 +vt 0.660023 0.670403 +vt 0.659696 0.667838 +vt 0.677505 0.672010 +vt 0.678403 0.666737 +vt 0.673546 0.677407 +vt 0.674639 0.676859 +vt 0.671528 0.681865 +vt 0.669612 0.682196 +vt 0.667858 0.683257 +vt 0.661489 0.678265 +vt 0.661506 0.674868 +vt 0.660210 0.672682 +vt 0.657980 0.660879 +vt 0.678446 0.671217 +vt 0.678864 0.669158 +vt 0.676336 0.676607 +vt 0.677145 0.673487 +vt 0.673610 0.680005 +vt 0.672587 0.681612 +vt 0.670385 0.681875 +vt 0.669199 0.683223 +vt 0.661499 0.674271 +vt 0.661132 0.673999 +vt 0.658124 0.670263 +vt 0.678340 0.673138 +vt 0.679426 0.669429 +vt 0.674756 0.678764 +vt 0.676609 0.678632 +vt 0.677408 0.675383 +vt 0.677921 0.674302 +vt 0.672117 0.682725 +vt 0.670566 0.683540 +vt 0.660200 0.680632 +vt 0.660351 0.674336 +vt 0.656201 0.670733 +vt 0.679241 0.671387 +vt 0.678880 0.673105 +vt 0.680167 0.664964 +vt 0.677409 0.677490 +vt 0.673196 0.681702 +vt 0.674749 0.680311 +vt 0.672602 0.682890 +vt 0.671789 0.683440 +vt 0.659888 0.675507 +vt 0.659290 0.673526 +vt 0.653887 0.668432 +vt 0.678470 0.673716 +vt 0.678593 0.673978 +vt 0.680029 0.671687 +vt 0.680907 0.667522 +vt 0.676192 0.680599 +vt 0.678397 0.678660 +vt 0.678071 0.676542 +vt 0.678274 0.675902 +vt 0.674192 0.681936 +vt 0.671942 0.683986 +vt 0.669807 0.684224 +vt 0.671344 0.683990 +vt 0.659404 0.679391 +vt 0.658056 0.674578 +vt 0.654863 0.671636 +vt 0.679693 0.674069 +vt 0.678396 0.675139 +vt 0.678965 0.674912 +vt 0.680453 0.669920 +vt 0.682023 0.665556 +vt 0.673168 0.683089 +vt 0.672427 0.684059 +vt 0.671673 0.684291 +vt 0.669767 0.685037 +vt 0.670654 0.684750 +vt 0.658760 0.681763 +vt 0.658051 0.676171 +vt 0.655697 0.674296 +vt 0.653440 0.672060 +vt 0.681024 0.671908 +vt 0.680644 0.673873 +vt 0.682189 0.672721 +vt 0.681403 0.670221 +vt 0.677435 0.681174 +vt 0.678716 0.676857 +vt 0.671542 0.685244 +vt 0.671262 0.684797 +vt 0.658089 0.679130 +vt 0.656480 0.676747 +vt 0.653889 0.674403 +vt 0.651024 0.670914 +vt 0.679991 0.676478 +vt 0.680725 0.675547 +vt 0.684115 0.670062 +vt 0.678299 0.680359 +vt 0.679777 0.678879 +vt 0.670298 0.685665 +vt 0.657319 0.681416 +vt 0.654770 0.677094 +vt 0.651536 0.673287 +vt 0.681786 0.673065 +vt 0.683845 0.672387 +vt 0.679120 0.680050 +vt 0.655472 0.678614 +vt 0.657319 0.683135 +vt 0.652493 0.676835 +vt 0.649042 0.672787 +vt 0.680507 0.678174 +vt 0.682451 0.676053 +vt 0.682674 0.674356 +vt 0.685089 0.672770 +vt 0.678888 0.681378 +vt 0.680222 0.680262 +vt 0.656358 0.681201 +vt 0.656264 0.682509 +vt 0.658195 0.684123 +vt 0.652266 0.679158 +vt 0.649746 0.675240 +vt 0.651842 0.676600 +vt 0.681505 0.677704 +vt 0.684466 0.674371 +vt 0.685569 0.670761 +vt 0.655654 0.680900 +vt 0.656289 0.683674 +vt 0.656974 0.684299 +vt 0.653466 0.680605 +vt 0.648413 0.674891 +vt 0.681102 0.680067 +vt 0.681880 0.679854 +vt 0.684032 0.676159 +vt 0.685274 0.674438 +vt 0.686222 0.673802 +vt 0.680469 0.682097 +vt 0.655510 0.682274 +vt 0.657434 0.685185 +vt 0.652282 0.680925 +vt 0.649423 0.676799 +vt 0.682865 0.679490 +vt 0.684483 0.678063 +vt 0.685132 0.676058 +vt 0.686977 0.673502 +vt 0.654299 0.682016 +vt 0.656284 0.684959 +vt 0.655158 0.683865 +vt 0.651351 0.682262 +vt 0.652443 0.682479 +vt 0.681501 0.680515 +vt 0.683257 0.680601 +vt 0.682254 0.681218 +vt 0.686206 0.675650 +vt 0.687802 0.673529 +vt 0.687040 0.675102 +vt 0.681426 0.681394 +vt 0.655670 0.684621 +vt 0.684192 0.680277 +vt 0.685303 0.678654 +vt 0.686056 0.677282 +vt 0.687725 0.674742 +vt 0.687742 0.668375 +vt 0.681060 0.682479 +vt 0.653934 0.682481 +vt 0.654022 0.683348 +vt 0.654715 0.685180 +vt 0.651616 0.683770 +vt 0.682714 0.682238 +vt 0.681462 0.682921 +vt 0.683575 0.681854 +vt 0.688310 0.674597 +vt 0.688402 0.672472 +vt 0.687674 0.676178 +vt 0.680565 0.683425 +vt 0.653124 0.683829 +vt 0.653592 0.684832 +vt 0.653663 0.687218 +vt 0.652265 0.684043 +vt 0.684999 0.680074 +vt 0.684232 0.682114 +vt 0.686047 0.679847 +vt 0.688096 0.675486 +vt 0.689175 0.669501 +vt 0.652802 0.686207 +vt 0.651483 0.684949 +vt 0.683065 0.683221 +vt 0.681933 0.683837 +vt 0.687142 0.678270 +vt 0.688264 0.677314 +vt 0.688435 0.676345 +vt 0.689064 0.674959 +vt 0.690089 0.671894 +vt 0.680726 0.684505 +vt 0.652299 0.684991 +vt 0.650855 0.686825 +vt 0.650870 0.684837 +vt 0.685381 0.681547 +vt 0.683460 0.684029 +vt 0.687206 0.679898 +vt 0.689790 0.672997 +vt 0.690540 0.671149 +vt 0.651583 0.685804 +vt 0.649230 0.688290 +vt 0.650547 0.685940 +vt 0.682040 0.684546 +vt 0.684738 0.683309 +vt 0.686200 0.680628 +vt 0.689306 0.676736 +vt 0.689939 0.674898 +vt 0.690566 0.673997 +vt 0.691050 0.672988 +vt 0.691520 0.668613 +vt 0.649665 0.687078 +vt 0.650121 0.685553 +vt 0.685669 0.682784 +vt 0.686170 0.681661 +vt 0.687071 0.681446 +vt 0.688908 0.679566 +vt 0.689913 0.679433 +vt 0.693466 0.672597 +vt 0.647841 0.687140 +vt 0.690785 0.677203 +vt 0.690699 0.675848 +vt 0.691352 0.674903 +vt 0.692629 0.672959 +vt 0.694640 0.671689 +vt 0.689726 0.680267 +vt 0.690350 0.679136 +vt 0.692254 0.674695 +vt 0.693404 0.675135 +vt 0.695203 0.673328 +vt 0.691410 0.679026 +vt 0.691906 0.676519 +vt 0.694107 0.674632 +vt 0.694789 0.674488 +vt 0.696739 0.673113 +vt 0.690451 0.680933 +vt 0.691065 0.680390 +vt 0.692728 0.676927 +vt 0.693878 0.675164 +vt 0.695521 0.675229 +vt 0.697356 0.667184 +vt 0.696171 0.674092 +vt 0.689526 0.681680 +vt 0.691726 0.680367 +vt 0.692049 0.678619 +vt 0.693519 0.677180 +vt 0.694689 0.676100 +vt 0.694024 0.675717 +vt 0.697915 0.672581 +vt 0.696977 0.674678 +vt 0.690873 0.681695 +vt 0.690117 0.682697 +vt 0.691433 0.681446 +vt 0.693105 0.679451 +vt 0.693834 0.676361 +vt 0.695563 0.677517 +vt 0.696508 0.675787 +vt 0.697588 0.674527 +vt 0.698055 0.669078 +vt 0.692178 0.680929 +vt 0.691822 0.681220 +vt 0.694330 0.677826 +vt 0.698502 0.674101 +vt 0.698973 0.670528 +vt 0.697352 0.675166 +vt 0.697130 0.675536 +vt 0.691036 0.682673 +vt 0.691715 0.681869 +vt 0.692673 0.681923 +vt 0.694155 0.679699 +vt 0.696780 0.677369 +vt 0.695181 0.679572 +vt 0.698167 0.675916 +vt 0.698985 0.666315 +vt 0.697454 0.676016 +vt 0.697030 0.676162 +vt 0.691429 0.684058 +vt 0.691826 0.682737 +vt 0.693464 0.681833 +vt 0.699594 0.672974 +vt 0.699354 0.676188 +vt 0.699953 0.669905 +vt 0.692779 0.682692 +vt 0.695012 0.680557 +vt 0.696854 0.679535 +vt 0.699434 0.674968 +vt 0.698550 0.677206 +vt 0.697701 0.677485 +vt 0.699983 0.666002 +vt 0.692299 0.683362 +vt 0.693205 0.683182 +vt 0.695743 0.681444 +vt 0.700322 0.673171 +vt 0.700149 0.674730 +vt 0.699667 0.676760 +vt 0.699187 0.677009 +vt 0.701141 0.669261 +vt 0.693223 0.684433 +vt 0.698126 0.678690 +vt 0.700550 0.671290 +vt 0.700047 0.676028 +vt 0.699230 0.677768 +vt 0.701656 0.668113 +vt 0.695097 0.682799 +vt 0.696771 0.680925 +vt 0.697609 0.680511 +vt 0.700639 0.674807 +vt 0.700971 0.673813 +vt 0.700506 0.676330 +vt 0.700076 0.677327 +vt 0.701454 0.672455 +vt 0.702725 0.671433 +vt 0.696561 0.681974 +vt 0.698953 0.679068 +vt 0.699639 0.677912 +vt 0.703236 0.668957 +vt 0.698421 0.681198 +vt 0.701006 0.675855 +vt 0.701635 0.675161 +vt 0.700371 0.678405 +vt 0.699762 0.678476 +vt 0.702404 0.673778 +vt 0.701865 0.662758 +vt 0.703736 0.673030 +vt 0.697450 0.681598 +vt 0.699469 0.679534 +vt 0.701218 0.677804 +vt 0.703703 0.666053 +vt 0.704340 0.673135 +vt 0.697280 0.682517 +vt 0.699660 0.680340 +vt 0.702656 0.675657 +vt 0.700966 0.680175 +vt 0.704061 0.675496 +vt 0.705037 0.672269 +vt 0.698702 0.682070 +vt 0.702148 0.677206 +vt 0.700383 0.679863 +vt 0.701778 0.679199 +vt 0.705199 0.669630 +vt 0.705303 0.674946 +vt 0.700017 0.681176 +vt 0.702573 0.678309 +vt 0.703422 0.676929 +vt 0.701544 0.680758 +vt 0.706180 0.672474 +vt 0.705278 0.666705 +vt 0.706075 0.674168 +vt 0.704949 0.677026 +vt 0.699179 0.682890 +vt 0.703976 0.677591 +vt 0.700596 0.681797 +vt 0.702291 0.680118 +vt 0.701174 0.681485 +vt 0.705887 0.669122 +vt 0.706191 0.676944 +vt 0.703327 0.679147 +vt 0.701913 0.681580 +vt 0.706359 0.669273 +vt 0.706909 0.675346 +vt 0.704382 0.678986 +vt 0.706057 0.678992 +vt 0.700956 0.682305 +vt 0.702697 0.681046 +vt 0.708027 0.673412 +vt 0.707693 0.674551 +vt 0.706927 0.676644 +vt 0.706875 0.677899 +vt 0.703721 0.680664 +vt 0.702131 0.682088 +vt 0.701183 0.682678 +vt 0.707422 0.676625 +vt 0.705106 0.680207 +vt 0.706455 0.679581 +vt 0.703154 0.681899 +vt 0.708204 0.675277 +vt 0.705919 0.680143 +vt 0.707207 0.678778 +vt 0.704397 0.681307 +vt 0.702443 0.682971 +vt 0.708574 0.672624 +vt 0.707907 0.677477 +vt 0.705878 0.680735 +vt 0.706898 0.680329 +vt 0.703998 0.682220 +vt 0.708769 0.675161 +vt 0.708392 0.676559 +vt 0.707923 0.679782 +vt 0.705376 0.681718 +vt 0.709271 0.674240 +vt 0.708033 0.678559 +vt 0.706373 0.681207 +vt 0.707330 0.681047 +vt 0.708867 0.677137 +vt 0.709932 0.672624 +vt 0.709516 0.675894 +vt 0.708152 0.679190 +vt 0.708065 0.680692 +vt 0.705672 0.682272 +vt 0.709865 0.674545 +vt 0.708734 0.679189 +vt 0.706981 0.681976 +vt 0.707376 0.681877 +vt 0.710021 0.677616 +vt 0.710889 0.674566 +vt 0.709837 0.675404 +vt 0.708676 0.681052 +vt 0.705513 0.683793 +vt 0.711207 0.672707 +vt 0.709995 0.678469 +vt 0.709736 0.679971 +vt 0.707419 0.682853 +vt 0.710617 0.676325 +vt 0.711939 0.674446 +vt 0.710730 0.679317 +vt 0.709650 0.681317 +vt 0.709759 0.682281 +vt 0.711974 0.676739 +vt 0.711882 0.675741 +vt 0.712867 0.673973 +vt 0.711523 0.678090 +vt 0.709200 0.683548 +vt 0.710334 0.680574 +vt 0.711490 0.679422 +vt 0.710369 0.681420 +vt 0.712942 0.677491 +vt 0.712959 0.675908 +vt 0.711532 0.680070 +vt 0.711188 0.681085 +vt 0.816936 0.343350 +vt 0.815902 0.344479 +vt 0.817531 0.343492 +vt 0.816455 0.344246 +vt 0.818242 0.344161 +vt 0.816923 0.344100 +vt 0.815990 0.345040 +vt 0.815473 0.345279 +vt 0.817598 0.344687 +vt 0.817149 0.344531 +vt 0.816473 0.345102 +vt 0.817946 0.345271 +vt 0.818328 0.345421 +vt 0.815519 0.345755 +vt 0.817114 0.345611 +vt 0.815879 0.345939 +vt 0.816511 0.345712 +vt 0.816224 0.345902 +vt 0.815920 0.346346 +vt 0.816554 0.345833 +vt 0.836693 0.618903 +vt 0.836049 0.619157 +vt 0.836373 0.617350 +vt 0.836392 0.622124 +vt 0.835756 0.617241 +vt 0.837020 0.616453 +vt 0.837427 0.620093 +vt 0.835764 0.621503 +vt 0.835670 0.618497 +vt 0.836128 0.615362 +vt 0.838059 0.628836 +vt 0.835479 0.622792 +vt 0.835262 0.619452 +vt 0.835334 0.618064 +vt 0.835340 0.615451 +vt 0.837759 0.617086 +vt 0.836625 0.614241 +vt 0.835564 0.625474 +vt 0.838583 0.618015 +vt 0.835283 0.621904 +vt 0.834940 0.621036 +vt 0.835478 0.613808 +vt 0.837606 0.615467 +vt 0.836067 0.613293 +vt 0.837164 0.613757 +vt 0.844507 0.634259 +vt 0.834171 0.622998 +vt 0.837942 0.615773 +vt 0.836483 0.612531 +vt 0.840306 0.612573 +vt 0.837236 0.609120 +vt 0.843930 0.600567 +vt 0.837899 0.602415 +vt 0.852513 0.636969 +vt 0.835612 0.604522 +vt 0.839018 0.598404 +vt 0.860155 0.619197 +vt 0.835094 0.607400 +vt 0.835951 0.601952 +vt 0.837832 0.594991 +vt 0.836871 0.597823 +vt 0.834344 0.605394 +vt 0.835013 0.602418 +vt 0.836198 0.600162 +vt 0.838032 0.592563 +vt 0.836380 0.598833 +vt 0.834103 0.603486 +vt 0.833624 0.606428 +vt 0.835181 0.600783 +vt 0.836214 0.595310 +vt 0.836199 0.591675 +vt 0.835781 0.598129 +vt 0.833475 0.604916 +vt 0.834250 0.601496 +vt 0.835406 0.599268 +vt 0.835939 0.599036 +vt 0.835372 0.596744 +vt 0.836360 0.593711 +vt 0.836592 0.593060 +vt 0.836795 0.591101 +vt 0.832798 0.603596 +vt 0.832632 0.605330 +vt 0.833314 0.601926 +vt 0.834270 0.599710 +vt 0.834248 0.594733 +vt 0.835552 0.593017 +vt 0.836154 0.592725 +vt 0.836351 0.589921 +vt 0.833614 0.600794 +vt 0.835020 0.598126 +vt 0.833799 0.597639 +vt 0.834924 0.593709 +vt 0.834885 0.588056 +vt 0.831720 0.604348 +vt 0.832122 0.602079 +vt 0.832659 0.600215 +vt 0.832769 0.596133 +vt 0.834017 0.592636 +vt 0.834709 0.591302 +vt 0.834104 0.588998 +vt 0.831473 0.605720 +vt 0.832264 0.598125 +vt 0.832871 0.594554 +vt 0.833074 0.593188 +vt 0.833765 0.585630 +vt 0.830994 0.604161 +vt 0.831493 0.600360 +vt 0.831574 0.596926 +vt 0.831802 0.594947 +vt 0.833477 0.590677 +vt 0.832509 0.590377 +vt 0.832770 0.587542 +vt 0.830710 0.606056 +vt 0.831143 0.598695 +vt 0.831963 0.593749 +vt 0.832006 0.592795 +vt 0.833023 0.589152 +vt 0.830462 0.603037 +vt 0.830427 0.604546 +vt 0.829902 0.598178 +vt 0.830922 0.596201 +vt 0.831018 0.593853 +vt 0.831871 0.591676 +vt 0.832350 0.588814 +vt 0.829858 0.601239 +vt 0.829926 0.605728 +vt 0.830451 0.600157 +vt 0.829604 0.598527 +vt 0.830931 0.595220 +vt 0.831569 0.590537 +vt 0.829830 0.602657 +vt 0.829816 0.604080 +vt 0.830151 0.606567 +vt 0.830345 0.595700 +vt 0.829366 0.598296 +vt 0.830731 0.595174 +vt 0.832040 0.589557 +vt 0.830510 0.592217 +vt 0.829456 0.601985 +vt 0.829364 0.606901 +vt 0.829510 0.605042 +vt 0.829671 0.597012 +vt 0.829176 0.599384 +vt 0.830020 0.594551 +vt 0.831640 0.588515 +vt 0.830068 0.590143 +vt 0.829370 0.604079 +vt 0.829420 0.605919 +vt 0.829632 0.595696 +vt 0.829250 0.597306 +vt 0.828960 0.598299 +vt 0.829313 0.593517 +vt 0.829366 0.591583 +vt 0.828897 0.599781 +vt 0.829127 0.605082 +vt 0.829174 0.595786 +vt 0.829235 0.595150 +vt 0.829007 0.597423 +vt 0.828889 0.597069 +vt 0.828751 0.592937 +vt 0.828805 0.594548 +vt 0.828723 0.596007 +vt 0.846837 0.536129 +vt 0.839920 0.550912 +vt 0.834252 0.548868 +vt 0.845640 0.542315 +vt 0.833395 0.559474 +vt 0.846006 0.523221 +vt 0.849289 0.544261 +vt 0.847601 0.539751 +vt 0.833464 0.562104 +vt 0.830679 0.564842 +vt 0.843879 0.553992 +vt 0.849255 0.538257 +vt 0.830545 0.568273 +vt 0.834710 0.561040 +vt 0.829860 0.565256 +vt 0.849543 0.551636 +vt 0.831093 0.569060 +vt 0.828735 0.572955 +vt 0.829053 0.570025 +vt 0.842979 0.560676 +vt 0.848428 0.556892 +vt 0.828615 0.576746 +vt 0.830131 0.575213 +vt 0.839391 0.569753 +vt 0.853060 0.554817 +vt 0.849237 0.563802 +vt 0.851820 0.558032 +vt 0.853433 0.556926 +vt 0.853678 0.558502 +vt 0.854013 0.556631 +vt 0.853375 0.560285 +vt 0.854812 0.556578 +vt 0.854855 0.559041 +vt 0.854276 0.560635 +vt 0.855321 0.557833 +vt 0.854311 0.562707 +vt 0.855910 0.558699 +vt 0.855897 0.560445 +vt 0.855886 0.561303 +vt 0.856514 0.561159 +vt 0.640087 0.754286 +vt 0.638961 0.753244 +vt 0.639790 0.752047 +vt 0.638724 0.753877 +vt 0.638921 0.751402 +vt 0.640464 0.753121 +vt 0.638559 0.753268 +vt 0.639843 0.755830 +vt 0.638692 0.752475 +vt 0.640946 0.753566 +vt 0.641161 0.751878 +vt 0.638269 0.753874 +vt 0.638721 0.756259 +vt 0.640797 0.756015 +vt 0.638450 0.751799 +vt 0.638125 0.752166 +vt 0.638539 0.754795 +vt 0.640809 0.756952 +vt 0.638332 0.750960 +vt 0.637750 0.753319 +vt 0.637830 0.755124 +vt 0.638740 0.749653 +vt 0.637702 0.751523 +vt 0.638054 0.750107 +vt 0.637302 0.754062 +vt 0.637251 0.753006 +vt 0.638021 0.748798 +vt 0.637142 0.754989 +vt 0.637041 0.751616 +vt 0.637457 0.749919 +vt 0.638522 0.748089 +vt 0.637050 0.753592 +vt 0.636796 0.754090 +vt 0.636870 0.753039 +vt 0.637460 0.748205 +vt 0.639260 0.748075 +vt 0.637949 0.746719 +vt 0.636248 0.752670 +vt 0.636939 0.749199 +vt 0.638702 0.747017 +vt 0.636316 0.750343 +vt 0.636997 0.747699 +vt 0.637374 0.746875 +vt 0.639275 0.746415 +vt 0.638391 0.746291 +vt 0.636579 0.748613 +vt 0.637418 0.745650 +vt 0.638984 0.746196 +vt 0.638143 0.745286 +vt 0.638649 0.746364 +vt 0.636024 0.748463 +vt 0.636980 0.746036 +vt 0.636548 0.747250 +vt 0.637518 0.743714 +vt 0.639221 0.744759 +vt 0.638598 0.745534 +vt 0.637135 0.744393 +vt 0.638279 0.743497 +vt 0.636058 0.746760 +vt 0.636504 0.745740 +vt 0.636663 0.744223 +vt 0.636615 0.740988 +vt 0.637346 0.738411 +vt 0.636098 0.744944 +vt 0.636462 0.745006 +vt 0.636097 0.742599 +vt 0.635915 0.735826 +vt 0.635958 0.740352 +vt 0.635560 0.727975 +vt 0.635996 0.738628 +vt 0.635382 0.732329 +vt 0.635643 0.737319 +vt 0.635611 0.738644 +vt 0.635410 0.734141 +vt 0.634980 0.728737 +vt 0.635476 0.736284 +vt 0.635155 0.733022 +vt 0.635392 0.735242 +vt 0.635156 0.731194 +vt 0.634311 0.722079 +vt 0.635224 0.736995 +vt 0.635420 0.737720 +vt 0.635176 0.734108 +vt 0.634946 0.730975 +vt 0.634406 0.726504 +vt 0.634389 0.716948 +vt 0.635061 0.736039 +vt 0.635368 0.738154 +vt 0.634956 0.733936 +vt 0.634970 0.734788 +vt 0.634730 0.729411 +vt 0.634155 0.723720 +vt 0.633802 0.715685 +vt 0.635101 0.737797 +vt 0.634492 0.737021 +vt 0.634718 0.732610 +vt 0.634642 0.730983 +vt 0.633957 0.726759 +vt 0.633911 0.722092 +vt 0.634472 0.728701 +vt 0.633252 0.717269 +vt 0.633987 0.713401 +vt 0.634596 0.735457 +vt 0.634430 0.734217 +vt 0.634539 0.729934 +vt 0.633914 0.723368 +vt 0.633695 0.720398 +vt 0.632851 0.713228 +vt 0.634011 0.711926 +vt 0.633517 0.711994 +vt 0.633973 0.735777 +vt 0.634237 0.731679 +vt 0.633911 0.732979 +vt 0.634346 0.730619 +vt 0.634188 0.729412 +vt 0.633471 0.723121 +vt 0.633790 0.721213 +vt 0.633269 0.719479 +vt 0.632524 0.714272 +vt 0.633774 0.711010 +vt 0.633990 0.709981 +vt 0.633573 0.736680 +vt 0.634171 0.735030 +vt 0.633618 0.734517 +vt 0.633813 0.728219 +vt 0.633303 0.725870 +vt 0.633596 0.721321 +vt 0.632808 0.718162 +vt 0.632423 0.716419 +vt 0.632079 0.713587 +vt 0.632921 0.709991 +vt 0.633605 0.708856 +vt 0.633354 0.709304 +vt 0.633316 0.735723 +vt 0.633722 0.731800 +vt 0.633860 0.730601 +vt 0.633324 0.733354 +vt 0.633665 0.729145 +vt 0.633438 0.727154 +vt 0.633117 0.725003 +vt 0.633076 0.722808 +vt 0.632585 0.719801 +vt 0.631936 0.711736 +vt 0.632438 0.710485 +vt 0.633263 0.706549 +vt 0.632575 0.736450 +vt 0.633210 0.732346 +vt 0.632926 0.733787 +vt 0.633479 0.728206 +vt 0.633113 0.726447 +vt 0.632912 0.725570 +vt 0.632701 0.721204 +vt 0.632434 0.718227 +vt 0.631388 0.715180 +vt 0.631381 0.712906 +vt 0.632787 0.707060 +vt 0.632411 0.708472 +vt 0.633217 0.707395 +vt 0.632848 0.734978 +vt 0.633320 0.731123 +vt 0.632961 0.733033 +vt 0.633234 0.729700 +vt 0.633330 0.728712 +vt 0.633161 0.727990 +vt 0.633066 0.727114 +vt 0.632533 0.724628 +vt 0.632752 0.723593 +vt 0.632452 0.722390 +vt 0.631885 0.717575 +vt 0.632038 0.719452 +vt 0.632284 0.720915 +vt 0.631056 0.711168 +vt 0.631988 0.709442 +vt 0.632960 0.705676 +vt 0.632296 0.735029 +vt 0.632842 0.731317 +vt 0.632451 0.734112 +vt 0.632427 0.732571 +vt 0.632787 0.726528 +vt 0.632412 0.725715 +vt 0.631314 0.717523 +vt 0.630957 0.713413 +vt 0.631522 0.710058 +vt 0.631002 0.712489 +vt 0.632327 0.706832 +vt 0.631942 0.707544 +vt 0.632970 0.703774 +vt 0.631865 0.735379 +vt 0.633044 0.730682 +vt 0.633142 0.728742 +vt 0.632778 0.727454 +vt 0.631757 0.724546 +vt 0.632303 0.723636 +vt 0.632051 0.721757 +vt 0.631455 0.719799 +vt 0.631889 0.720723 +vt 0.631008 0.716443 +vt 0.630526 0.714232 +vt 0.631132 0.710307 +vt 0.630720 0.712247 +vt 0.631612 0.708724 +vt 0.632338 0.705315 +vt 0.632609 0.704104 +vt 0.631873 0.733974 +vt 0.631889 0.736155 +vt 0.632808 0.730400 +vt 0.632314 0.730499 +vt 0.632788 0.728547 +vt 0.632409 0.726783 +vt 0.632031 0.726048 +vt 0.631929 0.722889 +vt 0.630935 0.718547 +vt 0.630689 0.715749 +vt 0.630828 0.717295 +vt 0.630595 0.712982 +vt 0.630825 0.712769 +vt 0.631177 0.709207 +vt 0.630259 0.710159 +vt 0.630346 0.711754 +vt 0.632017 0.705132 +vt 0.631373 0.707482 +vt 0.632570 0.700130 +vt 0.631345 0.734294 +vt 0.631414 0.735697 +vt 0.631818 0.736762 +vt 0.632646 0.729575 +vt 0.631774 0.730408 +vt 0.631585 0.732205 +vt 0.632418 0.727706 +vt 0.631530 0.725958 +vt 0.631554 0.721789 +vt 0.631550 0.720634 +vt 0.631170 0.719503 +vt 0.630732 0.716560 +vt 0.629969 0.713094 +vt 0.629954 0.714511 +vt 0.630626 0.708849 +vt 0.630442 0.712444 +vt 0.631738 0.706070 +vt 0.632049 0.703080 +vt 0.632086 0.728578 +vt 0.631986 0.727061 +vt 0.631289 0.723057 +vt 0.631060 0.725008 +vt 0.631263 0.720259 +vt 0.630564 0.717903 +vt 0.630748 0.719835 +vt 0.630342 0.716858 +vt 0.630866 0.707127 +vt 0.629460 0.711639 +vt 0.629701 0.708391 +vt 0.631688 0.704578 +vt 0.631211 0.705709 +vt 0.630137 0.734375 +vt 0.629965 0.732052 +vt 0.631124 0.736556 +vt 0.631434 0.728359 +vt 0.630907 0.730162 +vt 0.630590 0.723740 +vt 0.630881 0.725851 +vt 0.631364 0.727134 +vt 0.631383 0.721158 +vt 0.630968 0.722270 +vt 0.631372 0.720762 +vt 0.630489 0.718735 +vt 0.629350 0.715047 +vt 0.629955 0.717654 +vt 0.630075 0.706334 +vt 0.628756 0.709989 +vt 0.631638 0.703451 +vt 0.631067 0.729013 +vt 0.630800 0.722893 +vt 0.630474 0.724905 +vt 0.631090 0.721514 +vt 0.631122 0.720806 +vt 0.630234 0.718081 +vt 0.629990 0.719227 +vt 0.628689 0.713483 +vt 0.630689 0.705549 +vt 0.628515 0.711748 +vt 0.629011 0.706797 +vt 0.628677 0.708348 +vt 0.631380 0.704534 +vt 0.631419 0.701885 +vt 0.631536 0.704069 +vt 0.628987 0.732409 +vt 0.630543 0.736736 +vt 0.629529 0.730221 +vt 0.630794 0.727592 +vt 0.630395 0.728090 +vt 0.630303 0.722332 +vt 0.630042 0.725615 +vt 0.630726 0.726532 +vt 0.629742 0.724292 +vt 0.630641 0.721706 +vt 0.630676 0.720957 +vt 0.630099 0.720278 +vt 0.629234 0.716859 +vt 0.628368 0.715844 +vt 0.630384 0.704519 +vt 0.627867 0.711115 +vt 0.629160 0.704545 +vt 0.627912 0.709017 +vt 0.630927 0.704292 +vt 0.631286 0.703595 +vt 0.630124 0.735563 +vt 0.631097 0.738107 +vt 0.629845 0.728161 +vt 0.629840 0.722976 +vt 0.628956 0.723213 +vt 0.629194 0.720255 +vt 0.628946 0.717992 +vt 0.627890 0.714241 +vt 0.629677 0.702704 +vt 0.627846 0.712825 +vt 0.628577 0.705601 +vt 0.628421 0.706706 +vt 0.630824 0.702074 +vt 0.629756 0.736222 +vt 0.628530 0.729338 +vt 0.630311 0.737964 +vt 0.629246 0.728152 +vt 0.630388 0.726570 +vt 0.630370 0.727326 +vt 0.629965 0.727075 +vt 0.629531 0.722125 +vt 0.629508 0.724866 +vt 0.629031 0.723834 +vt 0.630049 0.721101 +vt 0.627424 0.715284 +vt 0.630417 0.702896 +vt 0.627188 0.710770 +vt 0.627019 0.712679 +vt 0.628474 0.704062 +vt 0.629050 0.702441 +vt 0.627871 0.707037 +vt 0.628211 0.732687 +vt 0.629015 0.728844 +vt 0.627775 0.730242 +vt 0.630853 0.739623 +vt 0.629419 0.727278 +vt 0.629676 0.727147 +vt 0.628559 0.722555 +vt 0.628962 0.724435 +vt 0.629162 0.725058 +vt 0.629359 0.726484 +vt 0.628520 0.723475 +vt 0.627778 0.718433 +vt 0.627185 0.714099 +vt 0.630628 0.700999 +vt 0.627257 0.708605 +vt 0.628135 0.706374 +vt 0.628061 0.705489 +vt 0.629070 0.735993 +vt 0.628660 0.727974 +vt 0.627795 0.728792 +vt 0.630196 0.739291 +vt 0.628823 0.726939 +vt 0.628455 0.721304 +vt 0.629158 0.725426 +vt 0.628450 0.723944 +vt 0.627360 0.719831 +vt 0.627111 0.715344 +vt 0.626393 0.712338 +vt 0.626485 0.710914 +vt 0.626573 0.714250 +vt 0.627094 0.707063 +vt 0.628118 0.734283 +vt 0.627313 0.731758 +vt 0.628023 0.727945 +vt 0.627532 0.729121 +vt 0.627656 0.721713 +vt 0.627963 0.723111 +vt 0.628466 0.724525 +vt 0.628583 0.725255 +vt 0.629138 0.725682 +vt 0.627307 0.718552 +vt 0.626990 0.715868 +vt 0.626725 0.714702 +vt 0.626098 0.713921 +vt 0.628702 0.737415 +vt 0.626877 0.730544 +vt 0.628159 0.727026 +vt 0.627390 0.728575 +vt 0.627090 0.729102 +vt 0.627369 0.727899 +vt 0.628662 0.725936 +vt 0.628935 0.725785 +vt 0.627590 0.723996 +vt 0.627737 0.723695 +vt 0.626878 0.717092 +vt 0.626993 0.719120 +vt 0.626603 0.715347 +vt 0.624822 0.716336 +vt 0.625065 0.712460 +vt 0.625295 0.709469 +vt 0.626187 0.715314 +vt 0.626474 0.714887 +vt 0.626927 0.733372 +vt 0.627741 0.735634 +vt 0.626147 0.731909 +vt 0.629738 0.740623 +vt 0.627454 0.726986 +vt 0.627845 0.726392 +vt 0.627307 0.723138 +vt 0.626722 0.721236 +vt 0.627462 0.724664 +vt 0.626788 0.718374 +vt 0.626681 0.719665 +vt 0.626442 0.716328 +vt 0.625601 0.715573 +vt 0.627947 0.738002 +vt 0.626323 0.729498 +vt 0.629064 0.739772 +vt 0.627062 0.728262 +vt 0.626771 0.727282 +vt 0.627584 0.725668 +vt 0.627025 0.722314 +vt 0.626981 0.723866 +vt 0.626322 0.717575 +vt 0.623975 0.712309 +vt 0.625294 0.716129 +vt 0.625754 0.716868 +vt 0.626309 0.733673 +vt 0.626768 0.734164 +vt 0.625254 0.730339 +vt 0.626473 0.728166 +vt 0.627163 0.726249 +vt 0.626929 0.727849 +vt 0.626942 0.726714 +vt 0.626425 0.723003 +vt 0.626059 0.719703 +vt 0.623937 0.716866 +vt 0.624605 0.718158 +vt 0.625383 0.732096 +vt 0.626835 0.736757 +vt 0.629164 0.741487 +vt 0.625740 0.728744 +vt 0.626017 0.726729 +vt 0.625981 0.720911 +vt 0.626032 0.722111 +vt 0.625775 0.718561 +vt 0.624311 0.717682 +vt 0.625269 0.718289 +vt 0.625785 0.733641 +vt 0.626117 0.734852 +vt 0.627234 0.738771 +vt 0.628066 0.740394 +vt 0.624746 0.732394 +vt 0.624899 0.729648 +vt 0.625446 0.727986 +vt 0.625710 0.727438 +vt 0.625425 0.720150 +vt 0.623983 0.718251 +vt 0.624693 0.719205 +vt 0.624277 0.718367 +vt 0.625236 0.733713 +vt 0.626090 0.736226 +vt 0.626497 0.737670 +vt 0.628807 0.741790 +vt 0.624224 0.731337 +vt 0.624733 0.728976 +vt 0.625216 0.726177 +vt 0.624798 0.726904 +vt 0.625049 0.721619 +vt 0.625164 0.719382 +vt 0.624095 0.719084 +vt 0.625556 0.735146 +vt 0.627382 0.740317 +vt 0.626370 0.739459 +vt 0.628117 0.742439 +vt 0.624553 0.733080 +vt 0.624053 0.732313 +vt 0.623620 0.729819 +vt 0.624239 0.728073 +vt 0.624061 0.727014 +vt 0.624757 0.720319 +vt 0.625780 0.737163 +vt 0.625659 0.736037 +vt 0.627757 0.741209 +vt 0.624623 0.733920 +vt 0.623768 0.731161 +vt 0.623368 0.728276 +vt 0.623725 0.727395 +vt 0.623733 0.726643 +vt 0.625053 0.734616 +vt 0.625149 0.735851 +vt 0.627131 0.741666 +vt 0.624753 0.737832 +vt 0.624153 0.733307 +vt 0.623475 0.731854 +vt 0.623140 0.730899 +vt 0.622939 0.729021 +vt 0.625501 0.742546 +vt 0.624678 0.734824 +vt 0.624074 0.734352 +vt 0.623529 0.733084 +vt 0.622961 0.729882 +vt 0.622838 0.728432 +vt 0.622963 0.727232 +vt 0.624456 0.735676 +vt 0.622331 0.738275 +vt 0.623103 0.731981 +vt 0.622666 0.730444 +vt 0.622719 0.728678 +vt 0.622663 0.728063 +vt 0.622677 0.729548 +vt 0.623581 0.735586 +vt 0.623570 0.734268 +vt 0.622902 0.732739 +vt 0.622766 0.731468 +vt 0.622613 0.728557 +vt 0.622597 0.729021 +vt 0.622819 0.734446 +vt 0.623229 0.734040 +vt 0.622480 0.729817 +vt 0.622379 0.731505 +vt 0.622427 0.729100 +vt 0.622210 0.728426 +vt 0.621523 0.729564 +vt 0.898492 0.537231 +vt 0.901746 0.536840 +vt 0.901866 0.539956 +vt 0.901022 0.533827 +vt 0.903411 0.538158 +vt 0.899166 0.542784 +vt 0.902656 0.535998 +vt 0.891214 0.534245 +vt 0.903268 0.540191 +vt 0.902185 0.543015 +vt 0.894615 0.538621 +vt 0.903390 0.535639 +vt 0.900134 0.528519 +vt 0.902930 0.541476 +vt 0.903824 0.540125 +vt 0.902449 0.541334 +vt 0.901553 0.546668 +vt 0.904320 0.533817 +vt 0.903724 0.530796 +vt 0.896647 0.522426 +vt 0.904436 0.536863 +vt 0.903713 0.541467 +vt 0.904083 0.539189 +vt 0.903198 0.546358 +vt 0.886716 0.515028 +vt 0.903469 0.543385 +vt 0.904047 0.540602 +vt 0.902873 0.548482 +vt 0.903936 0.542535 +vt 0.904088 0.541693 +vt 0.903851 0.545136 +vt 0.903413 0.548891 +vt 0.902306 0.549605 +vt 0.904046 0.543609 +vt 0.904026 0.547110 +vt 0.903726 0.548251 +vt 0.903166 0.549844 +vt 0.901018 0.552256 +vt 0.904339 0.544953 +vt 0.903729 0.549845 +vt 0.903275 0.550753 +vt 0.902640 0.551055 +vt 0.900285 0.546677 +vt 0.904513 0.543114 +vt 0.904048 0.549004 +vt 0.904556 0.548605 +vt 0.903122 0.550299 +vt 0.902681 0.553910 +vt 0.900240 0.549887 +vt 0.904044 0.550384 +vt 0.903626 0.551847 +vt 0.900862 0.558294 +vt 0.900233 0.552261 +vt 0.904398 0.550263 +vt 0.902252 0.557589 +vt 0.900004 0.557465 +vt 0.900003 0.554124 +vt 0.899806 0.551361 +vt 0.904222 0.551381 +vt 0.903429 0.553400 +vt 0.903015 0.555915 +vt 0.901574 0.559876 +vt 0.899607 0.560695 +vt 0.900063 0.553138 +vt 0.899755 0.553238 +vt 0.904694 0.550168 +vt 0.903820 0.553537 +vt 0.903502 0.554540 +vt 0.902726 0.560198 +vt 0.903410 0.554943 +vt 0.901009 0.563431 +vt 0.899394 0.557082 +vt 0.900018 0.561496 +vt 0.899303 0.559751 +vt 0.904249 0.552691 +vt 0.903437 0.556498 +vt 0.899321 0.555325 +vt 0.899684 0.563520 +vt 0.899167 0.563893 +vt 0.904744 0.551709 +vt 0.903975 0.554885 +vt 0.903796 0.555627 +vt 0.903524 0.557687 +vt 0.902448 0.565187 +vt 0.899064 0.557287 +vt 0.898963 0.559876 +vt 0.898694 0.563872 +vt 0.904221 0.555123 +vt 0.903689 0.558751 +vt 0.902222 0.570660 +vt 0.899932 0.568077 +vt 0.898721 0.556709 +vt 0.898867 0.567660 +vt 0.903877 0.556593 +vt 0.898892 0.557581 +vt 0.898691 0.558766 +vt 0.898741 0.562081 +vt 0.898412 0.568224 +vt 0.900390 0.576088 +vt 0.898637 0.557751 +vt 0.898641 0.560800 +vt 0.898461 0.562719 +vt 0.899186 0.571366 +vt 0.898469 0.570812 +vt 0.898096 0.568390 +vt 0.902629 0.576835 +vt 0.897985 0.558105 +vt 0.898244 0.559812 +vt 0.898120 0.570474 +vt 0.898625 0.574528 +vt 0.898026 0.561564 +vt 0.897984 0.572981 +vt 0.897376 0.560256 +vt 0.986643 0.462731 +vt 0.987592 0.463016 +vt 0.986945 0.463290 +vt 0.987559 0.461692 +vt 0.987478 0.464394 +vt 0.986357 0.463031 +vt 0.987416 0.460611 +vt 0.987961 0.462076 +vt 0.986904 0.464700 +vt 0.988298 0.464118 +vt 0.986038 0.462646 +vt 0.986485 0.463406 +vt 0.988258 0.460826 +vt 0.986425 0.461347 +vt 0.988189 0.462994 +vt 0.987265 0.465801 +vt 0.988563 0.465995 +vt 0.987335 0.459423 +vt 0.988708 0.461998 +vt 0.986309 0.464395 +vt 0.986595 0.465540 +vt 0.989232 0.463241 +vt 0.989633 0.464955 +vt 0.985304 0.461652 +vt 0.989041 0.458623 +vt 0.986576 0.459756 +vt 0.989496 0.460351 +vt 0.986829 0.466218 +vt 0.987440 0.466621 +vt 0.992805 0.468889 +vt 0.985078 0.462741 +vt 0.985634 0.460426 +vt 0.985343 0.464469 +vt 0.989158 0.456959 +vt 0.986514 0.458120 +vt 0.989766 0.462357 +vt 0.986045 0.465631 +vt 0.986386 0.466198 +vt 0.988419 0.467902 +vt 0.990580 0.464375 +vt 0.983800 0.462250 +vt 0.984582 0.459616 +vt 0.990007 0.457711 +vt 0.987503 0.454677 +vt 0.985938 0.458202 +vt 0.987108 0.457274 +vt 0.990546 0.462113 +vt 0.986721 0.466829 +vt 0.987493 0.467805 +vt 0.989063 0.470619 +vt 0.984273 0.463792 +vt 0.985242 0.459479 +vt 0.985487 0.465768 +vt 0.990780 0.459376 +vt 0.989180 0.455308 +vt 0.989945 0.455725 +vt 0.986530 0.456540 +vt 0.986027 0.466728 +vt 0.987080 0.468050 +vt 0.991718 0.471379 +vt 0.983395 0.464445 +vt 0.982979 0.461519 +vt 0.984562 0.465383 +vt 0.984808 0.457154 +vt 0.990874 0.457265 +vt 0.986922 0.455704 +vt 0.988410 0.454625 +vt 0.990958 0.456159 +vt 0.985835 0.454800 +vt 0.991350 0.461443 +vt 0.986640 0.469199 +vt 0.993845 0.475250 +vt 0.983164 0.462964 +vt 0.983626 0.458587 +vt 0.984050 0.457588 +vt 0.985122 0.466600 +vt 0.991717 0.457440 +vt 0.987031 0.453341 +vt 0.988933 0.452046 +vt 0.989931 0.454173 +vt 0.990610 0.454444 +vt 0.985428 0.456555 +vt 0.986180 0.453534 +vt 0.991639 0.459595 +vt 0.985812 0.467940 +vt 0.986258 0.470767 +vt 0.987008 0.474717 +vt 0.982502 0.464306 +vt 0.983895 0.465736 +vt 0.982628 0.460545 +vt 0.984511 0.455239 +vt 0.984283 0.466884 +vt 0.990025 0.452657 +vt 0.991933 0.455353 +vt 0.985040 0.455762 +vt 0.985340 0.453652 +vt 0.992158 0.461020 +vt 0.985623 0.469113 +vt 0.988319 0.480792 +vt 0.983043 0.465713 +vt 0.981408 0.462487 +vt 0.981559 0.460528 +vt 0.982787 0.455434 +vt 0.984840 0.468255 +vt 0.992321 0.458904 +vt 0.986719 0.451230 +vt 0.990559 0.451297 +vt 0.990652 0.453371 +vt 0.992056 0.453663 +vt 0.985897 0.452365 +vt 0.984931 0.471971 +vt 0.985006 0.469823 +vt 0.983012 0.480346 +vt 0.982660 0.466767 +vt 0.983498 0.466898 +vt 0.981924 0.457935 +vt 0.982090 0.467198 +vt 0.983535 0.454263 +vt 0.983893 0.468620 +vt 0.992323 0.456154 +vt 0.992690 0.457163 +vt 0.989354 0.448356 +vt 0.990896 0.452380 +vt 0.990180 0.449784 +vt 0.991253 0.453258 +vt 0.992424 0.454471 +vt 0.985046 0.451896 +vt 0.984113 0.474866 +vt 0.982985 0.468251 +vt 0.980738 0.461430 +vt 0.981297 0.459559 +vt 0.981676 0.455678 +vt 0.981248 0.467070 +vt 0.984490 0.453347 +vt 0.982675 0.454144 +vt 0.984470 0.469161 +vt 0.992547 0.455322 +vt 0.986008 0.450560 +vt 0.991881 0.449425 +vt 0.992005 0.452027 +vt 0.992799 0.453623 +vt 0.984133 0.472836 +vt 0.984297 0.470148 +vt 0.982879 0.477340 +vt 0.982150 0.468488 +vt 0.980377 0.461972 +vt 0.980812 0.457450 +vt 0.981271 0.468369 +vt 0.980547 0.465750 +vt 0.984052 0.451228 +vt 0.983505 0.451019 +vt 0.990376 0.448283 +vt 0.991936 0.450653 +vt 0.992725 0.452389 +vt 0.993004 0.454684 +vt 0.985525 0.449726 +vt 0.983782 0.473877 +vt 0.983997 0.471475 +vt 0.983263 0.475046 +vt 0.982605 0.480039 +vt 0.982637 0.469905 +vt 0.983255 0.469439 +vt 0.980288 0.460273 +vt 0.979923 0.464122 +vt 0.980281 0.456026 +vt 0.982259 0.453151 +vt 0.980922 0.468333 +vt 0.980495 0.467511 +vt 0.982693 0.451639 +vt 0.983653 0.470188 +vt 0.993473 0.457037 +vt 0.989888 0.446412 +vt 0.992749 0.450149 +vt 0.991540 0.447505 +vt 0.993268 0.451263 +vt 0.993426 0.453933 +vt 0.993444 0.452968 +vt 0.984583 0.450217 +vt 0.983568 0.472743 +vt 0.982679 0.475844 +vt 0.982550 0.482740 +vt 0.982333 0.478609 +vt 0.981104 0.469350 +vt 0.981741 0.470194 +vt 0.979843 0.462362 +vt 0.979824 0.457606 +vt 0.980983 0.453754 +vt 0.981427 0.452837 +vt 0.979587 0.466950 +vt 0.984069 0.449057 +vt 0.983206 0.450133 +vt 0.992784 0.448809 +vt 0.992093 0.447411 +vt 0.994030 0.454400 +vt 0.994394 0.457267 +vt 0.983281 0.473941 +vt 0.983381 0.471274 +vt 0.982832 0.474820 +vt 0.982061 0.476887 +vt 0.982433 0.481376 +vt 0.982286 0.480084 +vt 0.983005 0.470858 +vt 0.982347 0.471621 +vt 0.979835 0.460346 +vt 0.979085 0.462938 +vt 0.979118 0.455903 +vt 0.980182 0.453717 +vt 0.981832 0.451730 +vt 0.979883 0.468809 +vt 0.980305 0.470057 +vt 0.978869 0.466493 +vt 0.982411 0.449999 +vt 0.993836 0.450026 +vt 0.993323 0.449415 +vt 0.992567 0.445846 +vt 0.993692 0.452163 +vt 0.994064 0.453711 +vt 0.982813 0.473137 +vt 0.983121 0.474522 +vt 0.983007 0.471956 +vt 0.982251 0.475064 +vt 0.982326 0.482485 +vt 0.982008 0.478667 +vt 0.979606 0.472549 +vt 0.981022 0.473515 +vt 0.979451 0.460754 +vt 0.978844 0.465200 +vt 0.979447 0.459331 +vt 0.978017 0.458118 +vt 0.980674 0.451911 +vt 0.981225 0.452146 +vt 0.979221 0.468141 +vt 0.978702 0.467726 +vt 0.982906 0.449395 +vt 0.994906 0.453133 +vt 0.995711 0.455461 +vt 0.982954 0.474139 +vt 0.982556 0.474127 +vt 0.981453 0.475265 +vt 0.982328 0.481757 +vt 0.982231 0.483992 +vt 0.982249 0.481155 +vt 0.982018 0.480159 +vt 0.981608 0.477871 +vt 0.981822 0.473408 +vt 0.978326 0.461048 +vt 0.978156 0.463371 +vt 0.978920 0.458693 +vt 0.979684 0.453018 +vt 0.978184 0.455785 +vt 0.981482 0.450268 +vt 0.979595 0.470698 +vt 0.978699 0.469630 +vt 0.978194 0.467022 +vt 0.982134 0.447907 +vt 0.994488 0.449334 +vt 0.994218 0.451483 +vt 0.993653 0.447292 +vt 0.981236 0.476878 +vt 0.982139 0.481964 +vt 0.982154 0.482487 +vt 0.982472 0.485307 +vt 0.981673 0.479076 +vt 0.980335 0.474913 +vt 0.977397 0.464473 +vt 0.978580 0.460052 +vt 0.978564 0.454629 +vt 0.978099 0.459170 +vt 0.977401 0.457273 +vt 0.980323 0.450734 +vt 0.979361 0.472998 +vt 0.978108 0.468306 +vt 0.977545 0.465877 +vt 0.994505 0.447140 +vt 0.994437 0.450638 +vt 0.993609 0.444615 +vt 0.995354 0.451712 +vt 0.995974 0.452738 +vt 0.981826 0.483331 +vt 0.982334 0.485245 +vt 0.981992 0.481226 +vt 0.981684 0.480490 +vt 0.981108 0.478294 +vt 0.977956 0.462257 +vt 0.977357 0.463200 +vt 0.978708 0.453401 +vt 0.977225 0.460080 +vt 0.977697 0.455263 +vt 0.976909 0.458800 +vt 0.979368 0.451873 +vt 0.981202 0.448689 +vt 0.978736 0.470546 +vt 0.978072 0.469637 +vt 0.977423 0.467986 +vt 0.977116 0.467388 +vt 0.995359 0.448621 +vt 0.980399 0.477102 +vt 0.981671 0.482032 +vt 0.981680 0.484657 +vt 0.982238 0.486510 +vt 0.982083 0.485276 +vt 0.981226 0.479702 +vt 0.979462 0.475112 +vt 0.978001 0.460845 +vt 0.977010 0.464319 +vt 0.977940 0.453495 +vt 0.976612 0.456682 +vt 0.978478 0.471693 +vt 0.977731 0.469409 +vt 0.977436 0.469001 +vt 0.977030 0.466527 +vt 0.981400 0.483245 +vt 0.981043 0.484382 +vt 0.980590 0.479173 +vt 0.979091 0.474856 +vt 0.977033 0.462691 +vt 0.976769 0.465602 +vt 0.978108 0.452374 +vt 0.978738 0.452058 +vt 0.976385 0.459150 +vt 0.976826 0.453603 +vt 0.976313 0.458475 +vt 0.977034 0.455061 +vt 0.978212 0.471383 +vt 0.977802 0.470360 +vt 0.976968 0.467751 +vt 0.976998 0.468836 +vt 0.976247 0.466864 +vt 0.980224 0.486621 +vt 0.981647 0.486099 +vt 0.976504 0.463483 +vt 0.976415 0.464593 +vt 0.977196 0.452419 +vt 0.978931 0.450652 +vt 0.976567 0.461850 +vt 0.975766 0.459135 +vt 0.976458 0.455457 +vt 0.977997 0.472512 +vt 0.978320 0.473828 +vt 0.977642 0.470688 +vt 0.977297 0.469871 +vt 0.980881 0.486686 +vt 0.975969 0.464409 +vt 0.978426 0.450804 +vt 0.976103 0.460094 +vt 0.976604 0.451843 +vt 0.976168 0.456344 +vt 0.978418 0.475645 +vt 0.976781 0.470615 +vt 0.975991 0.462470 +vt 0.976199 0.453895 +vt 0.975665 0.454796 +vt 0.977552 0.472143 +vt 0.977243 0.471034 +vt 0.974544 0.466567 +vt 0.975134 0.461911 +vt 0.974588 0.460222 +vt 0.975815 0.452449 +vt 0.975179 0.456762 +vt 0.976968 0.472125 +vt 0.973792 0.465150 +vt 0.974450 0.463035 +vt 0.974834 0.458471 +vt 0.975550 0.453381 +vt 0.974836 0.454156 +vt 0.973952 0.468966 +vt 0.974021 0.461323 +vt 0.974180 0.458565 +vt 0.975244 0.452302 +vt 0.974771 0.452915 +vt 0.974554 0.456912 +vt 0.974435 0.455860 +vt 0.972851 0.463314 +vt 0.975815 0.451307 +vt 0.974387 0.454074 +vt 0.973072 0.459378 +vt 0.973861 0.456451 +vt 0.974894 0.451511 +vt 0.974078 0.453078 +vt 0.973648 0.454702 +vt 0.975561 0.449301 +vt 0.974233 0.451529 +vt 0.974852 0.450276 +vt 0.974870 0.448980 +vt 0.973601 0.449336 +vt 0.974175 0.448937 +vt 0.914044 0.563626 +vt 0.915191 0.553500 +vt 0.916758 0.559817 +vt 0.911629 0.563303 +vt 0.919393 0.550500 +vt 0.915441 0.568544 +vt 0.912183 0.552319 +vt 0.914169 0.574468 +vt 0.919184 0.543200 +vt 0.920418 0.557723 +vt 0.917544 0.565136 +vt 0.915957 0.544580 +vt 0.918449 0.561479 +vt 0.919840 0.553004 +vt 0.915749 0.576675 +vt 0.917594 0.571904 +vt 0.913485 0.543434 +vt 0.920679 0.532851 +vt 0.919530 0.561646 +vt 0.919830 0.551543 +vt 0.920576 0.552751 +vt 0.918956 0.563518 +vt 0.919896 0.565875 +vt 0.920104 0.562094 +vt 0.920504 0.550431 +vt 0.919850 0.572023 +vt 0.909139 0.539398 +vt 0.919681 0.563349 +vt 0.920688 0.561847 +vt 0.910956 0.522005 +vt 0.921320 0.560651 +vt 0.913561 0.513214 +vt 0.921543 0.563225 +vt 0.922553 0.560260 +vt 0.595695 0.690273 +vt 0.596672 0.680744 +vt 0.602216 0.677899 +vt 0.592925 0.683492 +vt 0.597902 0.672445 +vt 0.609074 0.683154 +vt 0.590486 0.689305 +vt 0.589227 0.686966 +vt 0.590509 0.681534 +vt 0.591237 0.675093 +vt 0.587128 0.687406 +vt 0.594211 0.661832 +vt 0.586943 0.683452 +vt 0.605164 0.656379 +vt 0.937259 0.563298 +vt 0.936265 0.566404 +vt 0.936152 0.559649 +vt 0.936628 0.572344 +vt 0.934972 0.564837 +vt 0.937734 0.558196 +vt 0.934023 0.569215 +vt 0.939907 0.570554 +vt 0.933358 0.563654 +vt 0.938170 0.561083 +vt 0.937629 0.556091 +vt 0.933672 0.575595 +vt 0.938909 0.564188 +vt 0.933310 0.554957 +vt 0.938708 0.558534 +vt 0.938198 0.555341 +vt 0.937442 0.552796 +vt 0.932388 0.572292 +vt 0.931729 0.567511 +vt 0.930417 0.562561 +vt 0.938870 0.562098 +vt 0.938535 0.560048 +vt 0.938509 0.555912 +vt 0.938319 0.553517 +vt 0.930973 0.576117 +vt 0.930403 0.557586 +vt 0.936996 0.549852 +vt 0.939560 0.561713 +vt 0.938524 0.554260 +vt 0.938965 0.549931 +vt 0.929097 0.575199 +vt 0.928912 0.568072 +vt 0.929233 0.559815 +vt 0.930436 0.553812 +vt 0.934819 0.545019 +vt 0.938957 0.553653 +vt 0.928596 0.573863 +vt 0.928803 0.570516 +vt 0.929162 0.563667 +vt 0.929497 0.557999 +vt 0.929088 0.562220 +vt 0.929368 0.556351 +vt 0.931394 0.548556 +vt 0.928494 0.575339 +vt 0.928297 0.569272 +vt 0.927742 0.566012 +vt 0.928829 0.558397 +vt 0.928329 0.561982 +vt 0.929409 0.554460 +vt 0.929577 0.551234 +vt 0.931791 0.542529 +vt 0.927889 0.574529 +vt 0.928601 0.576702 +vt 0.928216 0.572385 +vt 0.928111 0.568135 +vt 0.928030 0.570660 +vt 0.927976 0.564822 +vt 0.928150 0.560327 +vt 0.929060 0.553704 +vt 0.929598 0.553300 +vt 0.929430 0.547356 +vt 0.934060 0.536770 +vt 0.928262 0.576883 +vt 0.928012 0.573758 +vt 0.927850 0.568868 +vt 0.927564 0.565245 +vt 0.927833 0.567951 +vt 0.927661 0.559534 +vt 0.928299 0.556985 +vt 0.927812 0.561866 +vt 0.928698 0.548416 +vt 0.931191 0.538552 +vt 0.936432 0.539931 +vt 0.928866 0.542677 +vt 0.927714 0.563663 +vt 0.927533 0.560437 +vt 0.927574 0.554346 +vt 0.928412 0.551961 +vt 0.928392 0.546999 +vt 0.932723 0.533797 +vt 0.930528 0.541021 +vt 0.937083 0.529778 +vt 0.927576 0.558142 +vt 0.927786 0.549550 +vt 0.933564 0.529074 +vt 0.931145 0.533890 +vt 0.929146 0.539267 +vt 0.928114 0.545862 +vt 0.927209 0.552390 +vt 0.927426 0.550911 +vt 0.927402 0.548591 +vt 0.930178 0.537495 +vt 0.934818 0.523975 +vt 0.927153 0.549615 +vt 0.930959 0.528976 +vt 0.930378 0.533478 +vt 0.931755 0.521801 +vt 0.926913 0.550067 +vt 0.752802 0.508295 +vt 0.753129 0.509033 +vt 0.752450 0.509817 +vt 0.753882 0.508647 +vt 0.753270 0.510555 +vt 0.752118 0.509091 +vt 0.753262 0.506439 +vt 0.752995 0.512586 +vt 0.752258 0.508115 +vt 0.752007 0.510626 +vt 0.754373 0.511484 +vt 0.753872 0.506686 +vt 0.752441 0.507344 +vt 0.753856 0.512487 +vt 0.751698 0.508658 +vt 0.755029 0.510611 +vt 0.753956 0.505086 +vt 0.755490 0.508136 +vt 0.752556 0.514262 +vt 0.753411 0.513659 +vt 0.751601 0.506989 +vt 0.751110 0.508738 +vt 0.754687 0.513680 +vt 0.755344 0.509397 +vt 0.755667 0.512377 +vt 0.751811 0.514233 +vt 0.752960 0.514207 +vt 0.753975 0.513909 +vt 0.752218 0.506239 +vt 0.750042 0.508942 +vt 0.755695 0.510887 +vt 0.755896 0.505462 +vt 0.756395 0.510824 +vt 0.752063 0.515812 +vt 0.751085 0.513271 +vt 0.752724 0.515825 +vt 0.753674 0.514843 +vt 0.751483 0.505330 +vt 0.750681 0.507575 +vt 0.754218 0.515144 +vt 0.755135 0.515460 +vt 0.756111 0.512144 +vt 0.757389 0.506301 +vt 0.756658 0.509279 +vt 0.751384 0.516082 +vt 0.753378 0.515863 +vt 0.752297 0.504948 +vt 0.750729 0.505627 +vt 0.749579 0.510369 +vt 0.750112 0.506348 +vt 0.756270 0.513253 +vt 0.759064 0.505058 +vt 0.758387 0.507402 +vt 0.758114 0.511216 +vt 0.752945 0.516789 +vt 0.751698 0.517797 +vt 0.750610 0.515418 +vt 0.753811 0.515469 +vt 0.750864 0.503829 +vt 0.749218 0.508172 +vt 0.754356 0.516547 +vt 0.756591 0.514226 +vt 0.756823 0.512869 +vt 0.756585 0.513050 +vt 0.761998 0.503500 +vt 0.757383 0.512007 +vt 0.753496 0.517052 +vt 0.753883 0.516193 +vt 0.750103 0.504624 +vt 0.749282 0.515075 +vt 0.749552 0.505333 +vt 0.754691 0.517863 +vt 0.756630 0.515545 +vt 0.762926 0.508558 +vt 0.758942 0.510951 +vt 0.757961 0.513556 +vt 0.752565 0.519664 +vt 0.753181 0.518291 +vt 0.750264 0.502306 +vt 0.748244 0.506700 +vt 0.753926 0.517780 +vt 0.757148 0.514271 +vt 0.763862 0.506984 +vt 0.761433 0.510348 +vt 0.758980 0.513210 +vt 0.749705 0.503542 +vt 0.748762 0.504286 +vt 0.755283 0.518988 +vt 0.754024 0.519256 +vt 0.757646 0.514986 +vt 0.765510 0.511591 +vt 0.762909 0.512505 +vt 0.760255 0.514084 +vt 0.758544 0.515820 +vt 0.753469 0.519542 +vt 0.753668 0.518813 +vt 0.749127 0.502260 +vt 0.747405 0.504424 +vt 0.756351 0.517806 +vt 0.754551 0.519566 +vt 0.757453 0.517071 +vt 0.766250 0.506651 +vt 0.764360 0.512670 +vt 0.762636 0.513445 +vt 0.759437 0.514803 +vt 0.760922 0.513466 +vt 0.753289 0.520559 +vt 0.755730 0.520654 +vt 0.754611 0.520836 +vt 0.753995 0.520425 +vt 0.767995 0.509667 +vt 0.766858 0.513195 +vt 0.764204 0.513978 +vt 0.760202 0.515458 +vt 0.761192 0.515542 +vt 0.759533 0.516387 +vt 0.753704 0.520067 +vt 0.756954 0.519182 +vt 0.758033 0.518810 +vt 0.767993 0.511503 +vt 0.763504 0.514928 +vt 0.759109 0.518018 +vt 0.769180 0.511629 +vt 0.768160 0.513725 +vt 0.767195 0.514186 +vt 0.765142 0.515441 +vt 0.760949 0.517996 +vt 0.759146 0.519600 +vt 0.770093 0.510351 +vt 0.770025 0.512829 +vt 0.763207 0.516722 +vt 0.762039 0.517680 +vt 0.770009 0.514946 +vt 0.768107 0.515608 +vt 0.767460 0.517433 +vt 0.764908 0.517838 +vt 0.761610 0.519428 +vt 0.760520 0.519949 +vt 0.771341 0.511512 +vt 0.771802 0.513152 +vt 0.766449 0.518745 +vt 0.763408 0.518415 +vt 0.764081 0.517934 +vt 0.763055 0.519499 +vt 0.769817 0.516748 +vt 0.771513 0.515732 +vt 0.767284 0.520057 +vt 0.766127 0.520951 +vt 0.764854 0.519761 +vt 0.762872 0.521073 +vt 0.771862 0.511201 +vt 0.772731 0.515225 +vt 0.769390 0.519611 +vt 0.768467 0.519425 +vt 0.764600 0.521444 +vt 0.772979 0.513248 +vt 0.770513 0.520481 +vt 0.772037 0.517832 +vt 0.766420 0.521722 +vt 0.767307 0.520413 +vt 0.764314 0.523947 +vt 0.773104 0.518810 +vt 0.775905 0.516326 +vt 0.770006 0.521043 +vt 0.768766 0.521077 +vt 0.771594 0.520085 +vt 0.774246 0.519089 +vt 0.772297 0.520787 +vt 0.770712 0.521926 +vt 0.766896 0.522252 +vt 0.767474 0.521159 +vt 0.771199 0.521551 +vt 0.774336 0.520638 +vt 0.773133 0.520528 +vt 0.775197 0.519279 +vt 0.769589 0.522174 +vt 0.768369 0.522905 +vt 0.771650 0.521392 +vt 0.772915 0.521823 +vt 0.770701 0.522568 +vt 0.772052 0.523612 +vt 0.774988 0.520742 +vt 0.774182 0.521217 +vt 0.775503 0.521191 +vt 0.774560 0.521506 +vt 0.773373 0.522728 +vt 0.771728 0.525439 +vt 0.774811 0.522261 +vt 0.774093 0.522033 +vt 0.774081 0.523048 +vt 0.774431 0.522258 +vt 0.362310 0.314374 +vt 0.361701 0.315190 +vt 0.361820 0.313648 +vt 0.362459 0.315248 +vt 0.362812 0.313485 +vt 0.362828 0.315017 +vt 0.363078 0.317089 +vt 0.361703 0.311925 +vt 0.361596 0.317912 +vt 0.362940 0.311180 +vt 0.363555 0.315676 +vt 0.365362 0.322937 +vt 0.363570 0.312484 +vt 0.362028 0.309349 +vt 0.363881 0.314196 +vt 0.364194 0.318070 +vt 0.361806 0.321011 +vt 0.364173 0.310839 +vt 0.363414 0.309013 +vt 0.366405 0.316818 +vt 0.361235 0.323125 +vt 0.360175 0.319512 +vt 0.364185 0.312820 +vt 0.363364 0.307549 +vt 0.364692 0.314258 +vt 0.370377 0.317503 +vt 0.365282 0.315460 +vt 0.360689 0.321281 +vt 0.364245 0.309046 +vt 0.364871 0.312419 +vt 0.364192 0.307630 +vt 0.367342 0.313575 +vt 0.372508 0.324880 +vt 0.365638 0.314112 +vt 0.359593 0.321526 +vt 0.364964 0.309096 +vt 0.364905 0.311149 +vt 0.363688 0.306043 +vt 0.369099 0.313568 +vt 0.375969 0.320197 +vt 0.357697 0.324233 +vt 0.358188 0.319107 +vt 0.365034 0.308310 +vt 0.365012 0.310083 +vt 0.365199 0.311650 +vt 0.364576 0.306343 +vt 0.365770 0.312240 +vt 0.368100 0.311658 +vt 0.370325 0.313902 +vt 0.374130 0.315974 +vt 0.365850 0.309336 +vt 0.365083 0.307126 +vt 0.365489 0.310869 +vt 0.365175 0.304846 +vt 0.366522 0.310862 +vt 0.369120 0.311661 +vt 0.369727 0.312466 +vt 0.372075 0.313586 +vt 0.366284 0.308005 +vt 0.366136 0.306619 +vt 0.363984 0.304084 +vt 0.366084 0.305116 +vt 0.369142 0.309268 +vt 0.367593 0.309607 +vt 0.370704 0.311807 +vt 0.374049 0.313119 +vt 0.367197 0.307818 +vt 0.365045 0.303670 +vt 0.366093 0.303822 +vt 0.369794 0.310969 +vt 0.372087 0.310249 +vt 0.373030 0.311840 +vt 0.367234 0.306405 +vt 0.367085 0.305161 +vt 0.364461 0.302333 +vt 0.366955 0.304261 +vt 0.368287 0.307171 +vt 0.373972 0.310127 +vt 0.366042 0.302488 +vt 0.367046 0.303525 +vt 0.369272 0.307192 +vt 0.372189 0.307917 +vt 0.367957 0.305751 +vt 0.368637 0.304661 +vt 0.365341 0.301517 +vt 0.368303 0.303097 +vt 0.369298 0.305814 +vt 0.370375 0.306582 +vt 0.368549 0.305587 +vt 0.368644 0.303808 +vt 0.366426 0.300919 +vt 0.364332 0.300684 +vt 0.367678 0.302221 +vt 0.371874 0.305821 +vt 0.369679 0.304502 +vt 0.369275 0.302489 +vt 0.369948 0.305309 +vt 0.371401 0.304610 +vt 0.370153 0.303517 +vt 0.364544 0.298103 +vt 0.367372 0.300772 +vt 0.369942 0.302769 +vt 0.370446 0.304555 +vt 0.367040 0.298638 +vt 0.369928 0.302414 +vt 0.369309 0.300766 +vt 0.371073 0.303266 +vt 0.370424 0.302863 +vt 0.366198 0.296809 +vt 0.368176 0.299411 +vt 0.370453 0.302107 +vt 0.372363 0.303548 +vt 0.367719 0.295886 +vt 0.368582 0.298450 +vt 0.372036 0.300849 +vt 0.370659 0.299424 +vt 0.372089 0.302210 +vt 0.367945 0.297347 +vt 0.369435 0.297611 +vt 0.372342 0.300146 +vt 0.368768 0.296447 +vt 0.371725 0.297290 +vt 0.373523 0.299066 +vt 0.368574 0.295854 +vt 0.369851 0.296779 +vt 0.369194 0.295808 +vt 0.368327 0.294215 +vt 0.373500 0.297867 +vt 0.371692 0.295653 +vt 0.369258 0.294739 +vt 0.373943 0.296506 +vt 0.374641 0.297784 +vt 0.370123 0.295764 +vt 0.374930 0.295150 +vt 0.375186 0.296699 +vt 0.372883 0.294329 +vt 0.371905 0.293641 +vt 0.376211 0.294752 +vt 0.375065 0.294736 +vt 0.375539 0.293122 +vt 0.376002 0.293679 +vt 0.374485 0.292255 +vt 0.377328 0.293492 +vt 0.376101 0.292201 +vt 0.375302 0.291972 +vt 0.721955 0.671218 +vt 0.720744 0.671056 +vt 0.721536 0.669288 +vt 0.721477 0.673067 +vt 0.720602 0.669520 +vt 0.723175 0.669776 +vt 0.722214 0.672650 +vt 0.720587 0.673261 +vt 0.721026 0.667766 +vt 0.720200 0.670305 +vt 0.722162 0.663721 +vt 0.721999 0.674135 +vt 0.721363 0.673875 +vt 0.719890 0.671076 +vt 0.720300 0.668484 +vt 0.720108 0.669613 +vt 0.723511 0.672874 +vt 0.725913 0.666147 +vt 0.722959 0.674016 +vt 0.721455 0.674926 +vt 0.718886 0.671831 +vt 0.720897 0.666924 +vt 0.719834 0.670063 +vt 0.723891 0.671916 +vt 0.726325 0.657170 +vt 0.724571 0.670444 +vt 0.722547 0.676217 +vt 0.720822 0.675535 +vt 0.719340 0.669803 +vt 0.719795 0.675468 +vt 0.719804 0.669328 +vt 0.720445 0.666853 +vt 0.724214 0.673517 +vt 0.723805 0.674384 +vt 0.729236 0.658714 +vt 0.724718 0.647455 +vt 0.725737 0.671412 +vt 0.723685 0.675515 +vt 0.721490 0.676353 +vt 0.717720 0.674883 +vt 0.719683 0.668244 +vt 0.719595 0.665728 +vt 0.725101 0.673045 +vt 0.724824 0.671989 +vt 0.729526 0.650735 +vt 0.729452 0.668364 +vt 0.718400 0.658973 +vt 0.727130 0.670157 +vt 0.723803 0.676893 +vt 0.720892 0.677335 +vt 0.720081 0.679542 +vt 0.724722 0.674186 +vt 0.724440 0.674949 +vt 0.724081 0.675186 +vt 0.726922 0.673207 +vt 0.721760 0.677544 +vt 0.723300 0.678218 +vt 0.724155 0.676284 +vt 0.718586 0.680445 +vt 0.725573 0.674591 +vt 0.724427 0.675914 +vt 0.728101 0.672129 +vt 0.726109 0.673125 +vt 0.725663 0.673432 +vt 0.722381 0.678545 +vt 0.724354 0.678483 +vt 0.724678 0.677099 +vt 0.721450 0.679096 +vt 0.717389 0.684200 +vt 0.719339 0.682502 +vt 0.725478 0.675363 +vt 0.729491 0.674680 +vt 0.728074 0.674600 +vt 0.726215 0.674457 +vt 0.723676 0.679905 +vt 0.722922 0.679586 +vt 0.721325 0.680619 +vt 0.720589 0.682743 +vt 0.726207 0.675812 +vt 0.732581 0.677838 +vt 0.727428 0.674962 +vt 0.726906 0.674915 +vt 0.722226 0.680540 +vt 0.724550 0.680041 +vt 0.725173 0.678335 +vt 0.725184 0.676466 +vt 0.721100 0.681669 +vt 0.720125 0.684556 +vt 0.725852 0.676347 +vt 0.730742 0.678376 +vt 0.728942 0.676751 +vt 0.727960 0.675840 +vt 0.726638 0.675795 +vt 0.725522 0.679030 +vt 0.724067 0.681648 +vt 0.723496 0.680935 +vt 0.725557 0.677745 +vt 0.721731 0.681724 +vt 0.719948 0.686393 +vt 0.721701 0.683096 +vt 0.721134 0.684092 +vt 0.726430 0.677270 +vt 0.727412 0.676044 +vt 0.725402 0.681075 +vt 0.725666 0.678602 +vt 0.723241 0.681676 +vt 0.725988 0.677737 +vt 0.722276 0.682195 +vt 0.721185 0.685676 +vt 0.721371 0.684893 +vt 0.728119 0.676676 +vt 0.727333 0.677794 +vt 0.725633 0.679740 +vt 0.724887 0.682687 +vt 0.726132 0.678852 +vt 0.725841 0.679243 +vt 0.722848 0.682578 +vt 0.721835 0.684343 +vt 0.726764 0.678637 +vt 0.728536 0.677364 +vt 0.727869 0.677307 +vt 0.726118 0.680137 +vt 0.723443 0.682524 +vt 0.723965 0.683621 +vt 0.725844 0.683149 +vt 0.722501 0.683140 +vt 0.722585 0.685079 +vt 0.722339 0.683916 +vt 0.729150 0.677904 +vt 0.728091 0.678843 +vt 0.726235 0.681610 +vt 0.723650 0.683067 +vt 0.725060 0.684256 +vt 0.723023 0.683436 +vt 0.726698 0.679815 +vt 0.722794 0.683120 +vt 0.727513 0.679086 +vt 0.728705 0.678251 +vt 0.726721 0.680982 +vt 0.724458 0.686036 +vt 0.726938 0.683113 +vt 0.726071 0.685912 +vt 0.727165 0.679665 +vt 0.728074 0.679896 +vt 0.728685 0.679125 +vt 0.727315 0.681980 +vt 0.727253 0.685019 +vt 0.727214 0.680628 +vt 0.727611 0.680134 +vt 0.728465 0.679675 +vt 0.727601 0.683570 +vt 0.727763 0.688273 +vt 0.728878 0.680177 +vt 0.728018 0.680486 +vt 0.727764 0.681158 +vt 0.727936 0.684773 +vt 0.728280 0.683076 +vt 0.728233 0.685940 +vt 0.728343 0.681129 +vt 0.727849 0.681923 +vt 0.728006 0.684078 +vt 0.728796 0.687794 +vt 0.728744 0.684529 +vt 0.728653 0.681969 +vt 0.729206 0.686510 +vt 0.729329 0.682951 +vt 0.729605 0.688210 +vt 0.729683 0.685455 +vt 0.729743 0.684504 +vt 0.730142 0.686929 +vt 0.730135 0.683894 +vt 0.730413 0.685368 +vt 0.347212 0.046115 +vt 0.347193 0.049735 +vt 0.346416 0.048813 +vt 0.348386 0.048189 +vt 0.346150 0.051357 +vt 0.345735 0.047113 +vt 0.349510 0.045726 +vt 0.347976 0.051303 +vt 0.344689 0.049304 +vt 0.345484 0.044922 +vt 0.349545 0.048847 +vt 0.346236 0.054029 +vt 0.344399 0.052093 +vt 0.344553 0.046987 +vt 0.350836 0.047197 +vt 0.349710 0.051598 +vt 0.347884 0.054910 +vt 0.343757 0.050646 +vt 0.343152 0.045745 +vt 0.343209 0.048524 +vt 0.350769 0.049487 +vt 0.344381 0.054615 +vt 0.346868 0.055755 +vt 0.342825 0.051759 +vt 0.343281 0.049916 +vt 0.352549 0.048777 +vt 0.351350 0.051783 +vt 0.350117 0.054345 +vt 0.343521 0.053369 +vt 0.345428 0.056271 +vt 0.348674 0.057568 +vt 0.341215 0.050137 +vt 0.342099 0.050291 +vt 0.349953 0.056732 +vt 0.343361 0.054830 +vt 0.343937 0.057174 +vt 0.346134 0.057714 +vt 0.342715 0.053680 +vt 0.338136 0.054045 +vt 0.353470 0.052410 +vt 0.353037 0.056718 +vt 0.345009 0.057737 +vt 0.349266 0.059147 +vt 0.347130 0.059045 +vt 0.340900 0.052649 +vt 0.341461 0.051676 +vt 0.339790 0.052246 +vt 0.340850 0.051202 +vt 0.354941 0.050185 +vt 0.352062 0.058580 +vt 0.342249 0.055279 +vt 0.344792 0.059834 +vt 0.345965 0.059050 +vt 0.338882 0.054334 +vt 0.355752 0.052697 +vt 0.353418 0.054804 +vt 0.353036 0.058230 +vt 0.341277 0.056572 +vt 0.342359 0.058852 +vt 0.351618 0.060754 +vt 0.348365 0.061682 +vt 0.340582 0.054528 +vt 0.340767 0.051882 +vt 0.337019 0.055566 +vt 0.357215 0.050953 +vt 0.354630 0.054908 +vt 0.354062 0.055859 +vt 0.354965 0.057901 +vt 0.346132 0.063468 +vt 0.342191 0.062141 +vt 0.352540 0.063650 +vt 0.337933 0.055323 +vt 0.357748 0.053196 +vt 0.356452 0.055456 +vt 0.354170 0.061455 +vt 0.340324 0.058492 +vt 0.339468 0.055593 +vt 0.338497 0.055852 +vt 0.337637 0.056087 +vt 0.358542 0.051833 +vt 0.356152 0.060922 +vt 0.338143 0.057413 +vt 0.339726 0.060251 +vt 0.355804 0.063424 +vt 0.336969 0.056750 +vt 0.358350 0.056005 +vt 0.358866 0.052699 +vt 0.359048 0.051025 +vt 0.357133 0.058492 +vt 0.357287 0.067563 +vt 0.335723 0.056917 +vt 0.358893 0.053926 +vt 0.359579 0.052546 +vt 0.358896 0.061787 +vt 0.358186 0.063361 +vt 0.358279 0.065404 +vt 0.359241 0.055156 +vt 0.358973 0.059416 +vt 0.359313 0.053146 +vt 0.360211 0.052064 +vt 0.359692 0.054203 +vt 0.359989 0.056818 +vt 0.360917 0.054430 +vt 0.359809 0.063941 +vt 0.360115 0.061709 +vt 0.360323 0.059641 +vt 0.361098 0.052149 +vt 0.359792 0.066111 +vt 0.361102 0.058585 +vt 0.362541 0.054190 +vt 0.360892 0.064852 +vt 0.360892 0.060164 +vt 0.362594 0.057166 +vt 0.361158 0.062766 +vt 0.363376 0.064433 +vt 0.362803 0.060534 +vt 0.948382 0.562332 +vt 0.944237 0.576844 +vt 0.944799 0.567845 +vt 0.954225 0.551897 +vt 0.957129 0.553604 +vt 0.950197 0.544078 +vt 0.958223 0.549932 +vt 0.961463 0.560867 +vt 0.945117 0.560378 +vt 0.963211 0.547120 +vt 0.950445 0.517306 +vt 0.951482 0.515932 +vt 0.952334 0.521863 +vt 0.950433 0.515172 +vt 0.953585 0.516777 +vt 0.950693 0.520191 +vt 0.950298 0.513091 +vt 0.949695 0.515100 +vt 0.952045 0.513182 +vt 0.956050 0.533972 +vt 0.951607 0.524790 +vt 0.949800 0.518163 +vt 0.949007 0.516688 +vt 0.953038 0.512898 +vt 0.956024 0.513790 +vt 0.952828 0.528267 +vt 0.949859 0.519060 +vt 0.948501 0.513890 +vt 0.951330 0.510407 +vt 0.953565 0.513158 +vt 0.952531 0.511310 +vt 0.959954 0.525178 +vt 0.954183 0.512774 +vt 0.951991 0.535331 +vt 0.952182 0.528782 +vt 0.949113 0.518731 +vt 0.949861 0.520183 +vt 0.949106 0.511545 +vt 0.949916 0.510396 +vt 0.947586 0.516471 +vt 0.953391 0.511390 +vt 0.957803 0.502371 +vt 0.954129 0.509864 +vt 0.948182 0.518017 +vt 0.950720 0.521905 +vt 0.948206 0.511251 +vt 0.950289 0.508660 +vt 0.952688 0.509391 +vt 0.946852 0.514651 +vt 0.956372 0.505075 +vt 0.954927 0.505736 +vt 0.948170 0.519679 +vt 0.949023 0.520294 +vt 0.951013 0.521725 +vt 0.950066 0.522228 +vt 0.948869 0.509852 +vt 0.947366 0.512695 +vt 0.948758 0.510891 +vt 0.951356 0.507279 +vt 0.949507 0.509036 +vt 0.947167 0.518817 +vt 0.945976 0.517095 +vt 0.955249 0.496985 +vt 0.953081 0.506185 +vt 0.949518 0.520922 +vt 0.947310 0.511231 +vt 0.950238 0.507306 +vt 0.949298 0.507614 +vt 0.946367 0.513173 +vt 0.944596 0.515361 +vt 0.953518 0.500960 +vt 0.948378 0.521053 +vt 0.947540 0.520082 +vt 0.949071 0.521966 +vt 0.948787 0.508555 +vt 0.946824 0.512028 +vt 0.947617 0.510447 +vt 0.947887 0.509418 +vt 0.949980 0.505598 +vt 0.951931 0.505241 +vt 0.945785 0.519629 +vt 0.952423 0.503399 +vt 0.947787 0.520879 +vt 0.946977 0.520788 +vt 0.949723 0.523599 +vt 0.946695 0.511131 +vt 0.946909 0.509880 +vt 0.951039 0.504948 +vt 0.948005 0.507567 +vt 0.945464 0.513025 +vt 0.946151 0.511954 +vt 0.951679 0.499710 +vt 0.947760 0.522670 +vt 0.948851 0.524493 +vt 0.948567 0.505456 +vt 0.950295 0.502585 +vt 0.951516 0.503401 +vt 0.945702 0.522518 +vt 0.944533 0.513782 +vt 0.947040 0.508379 +vt 0.946015 0.510636 +vt 0.949057 0.503685 +vt 0.947417 0.505415 +vt 0.944905 0.512815 +vt 0.945161 0.511782 +vt 0.947241 0.527503 +vt 0.946745 0.506795 +vt 0.946484 0.508741 +vt 0.948122 0.503944 +vt 0.948583 0.499772 +vt 0.944214 0.512762 +vt 0.949677 0.498556 +vt 0.946121 0.507867 +vt 0.944910 0.509986 +vt 0.947595 0.502052 +vt 0.946061 0.505032 +vt 0.947086 0.503409 +vt 0.945695 0.506547 +vt 0.944753 0.507589 +vt 0.944971 0.506339 +vt 0.978482 0.570488 +vt 0.978302 0.569238 +vt 0.979587 0.569484 +vt 0.977347 0.571457 +vt 0.979373 0.567617 +vt 0.978189 0.573333 +vt 0.976243 0.570247 +vt 0.977870 0.567242 +vt 0.974584 0.574888 +vt 0.976072 0.571683 +vt 0.978919 0.566128 +vt 0.975648 0.571120 +vt 0.976372 0.567998 +vt 0.977907 0.564898 +vt 0.975032 0.572154 +vt 0.975366 0.569979 +vt 0.976448 0.566061 +vt 0.979733 0.563953 +vt 0.973020 0.573098 +vt 0.974300 0.571394 +vt 0.974992 0.568811 +vt 0.975289 0.567093 +vt 0.978085 0.561412 +vt 0.976683 0.564184 +vt 0.972283 0.574932 +vt 0.974637 0.570198 +vt 0.975270 0.564869 +vt 0.980336 0.558829 +vt 0.971624 0.573925 +vt 0.972135 0.576698 +vt 0.972990 0.571757 +vt 0.974107 0.570743 +vt 0.974159 0.568161 +vt 0.974146 0.566153 +vt 0.975808 0.561010 +vt 0.978355 0.554189 +vt 0.982322 0.560549 +vt 0.971150 0.574630 +vt 0.971490 0.572849 +vt 0.971210 0.575579 +vt 0.971911 0.571956 +vt 0.973620 0.571240 +vt 0.973635 0.570490 +vt 0.973238 0.570025 +vt 0.974157 0.563429 +vt 0.983503 0.552592 +vt 0.970891 0.573994 +vt 0.970934 0.573349 +vt 0.971139 0.576656 +vt 0.972128 0.570858 +vt 0.973013 0.570972 +vt 0.972999 0.568217 +vt 0.972982 0.565166 +vt 0.974460 0.557025 +vt 0.973909 0.560905 +vt 0.970572 0.574189 +vt 0.970272 0.574074 +vt 0.971033 0.571850 +vt 0.970572 0.572257 +vt 0.970244 0.575238 +vt 0.970988 0.570506 +vt 0.972629 0.569676 +vt 0.972900 0.562552 +vt 0.975175 0.550721 +vt 0.970164 0.573020 +vt 0.972597 0.570442 +vt 0.971421 0.569318 +vt 0.972220 0.566781 +vt 0.972330 0.569103 +vt 0.972034 0.562695 +vt 0.973391 0.559432 +vt 0.973387 0.553938 +vt 0.972945 0.561027 +vt 0.970342 0.574036 +vt 0.968254 0.569888 +vt 0.970405 0.571100 +vt 0.969614 0.570506 +vt 0.972139 0.569877 +vt 0.970237 0.567791 +vt 0.972129 0.568138 +vt 0.971709 0.564687 +vt 0.972282 0.561874 +vt 0.973283 0.558219 +vt 0.972953 0.556692 +vt 0.973088 0.551061 +vt 0.972661 0.561888 +vt 0.970035 0.569696 +vt 0.971848 0.568859 +vt 0.971342 0.567007 +vt 0.970821 0.560835 +vt 0.972521 0.562061 +vt 0.971860 0.559924 +vt 0.972626 0.559150 +vt 0.972448 0.554694 +vt 0.974199 0.547293 +vt 0.972758 0.553228 +vt 0.972423 0.561166 +vt 0.968791 0.567507 +vt 0.969741 0.568581 +vt 0.970283 0.564467 +vt 0.971014 0.564483 +vt 0.972094 0.556576 +vt 0.973296 0.546512 +vt 0.972497 0.553213 +vt 0.969458 0.568872 +vt 0.967647 0.563686 +vt 0.969379 0.567470 +vt 0.968931 0.564045 +vt 0.971468 0.556054 +vt 0.972092 0.555090 +vt 0.972127 0.550100 +vt 0.972125 0.553850 +vt 0.969548 0.561404 +vt 0.970683 0.554596 +vt 0.968545 0.559363 +vt 0.969540 0.557621 +vt 0.990025 0.514678 +vt 0.990884 0.515344 +vt 0.990486 0.515981 +vt 0.990789 0.513883 +vt 0.990958 0.516385 +vt 0.990120 0.516444 +vt 0.990159 0.512173 +vt 0.991853 0.514652 +vt 0.990621 0.516581 +vt 0.991419 0.515968 +vt 0.989177 0.515323 +vt 0.989012 0.513097 +vt 0.991389 0.512301 +vt 0.991038 0.517146 +vt 0.991460 0.516668 +vt 0.989337 0.517397 +vt 0.989429 0.510129 +vt 0.990906 0.510950 +vt 0.992073 0.516288 +vt 0.993102 0.512629 +vt 0.990390 0.517627 +vt 0.988486 0.514350 +vt 0.988472 0.515679 +vt 0.988451 0.511367 +vt 0.990522 0.509763 +vt 0.992267 0.509471 +vt 0.992616 0.515666 +vt 0.992914 0.514724 +vt 0.991923 0.517090 +vt 0.991204 0.518323 +vt 0.988216 0.513098 +vt 0.988373 0.517090 +vt 0.990305 0.518842 +vt 0.988803 0.508150 +vt 0.990950 0.506199 +vt 0.992950 0.516519 +vt 0.994628 0.510050 +vt 0.993772 0.514707 +vt 0.991777 0.517694 +vt 0.992384 0.516931 +vt 0.988045 0.514198 +vt 0.987862 0.515469 +vt 0.988772 0.518485 +vt 0.989439 0.518896 +vt 0.987787 0.512082 +vt 0.993350 0.515736 +vt 0.995715 0.505231 +vt 0.994358 0.512049 +vt 0.994338 0.513459 +vt 0.992413 0.517527 +vt 0.992344 0.518486 +vt 0.991617 0.519541 +vt 0.987835 0.517353 +vt 0.989183 0.518228 +vt 0.988110 0.518507 +vt 0.989953 0.520434 +vt 0.988781 0.504323 +vt 0.989169 0.505831 +vt 0.993756 0.516421 +vt 0.993570 0.517017 +vt 0.997362 0.509311 +vt 0.995696 0.512477 +vt 0.994040 0.515843 +vt 0.994927 0.515673 +vt 0.993233 0.517764 +vt 0.990818 0.520233 +vt 0.987246 0.516136 +vt 0.988265 0.519543 +vt 0.989043 0.520169 +vt 0.986320 0.514248 +vt 0.992335 0.519688 +vt 0.991562 0.520959 +vt 0.987555 0.518667 +vt 0.990450 0.521105 +vt 0.989375 0.521757 +vt 0.984647 0.511771 +vt 0.991976 0.520228 +vt 0.990842 0.521607 +vt 0.986586 0.518870 +vt 0.988355 0.521976 +vt 0.987714 0.520354 +vt 0.990168 0.522087 +vt 0.984712 0.505529 +vt 0.984816 0.516809 +vt 0.992380 0.520833 +vt 0.990916 0.522778 +vt 0.987279 0.519767 +vt 0.989311 0.522983 +vt 0.985142 0.518315 +vt 0.983613 0.517116 +vt 0.991869 0.522045 +vt 0.987057 0.520424 +vt 0.987325 0.521648 +vt 0.987374 0.520533 +vt 0.988218 0.524225 +vt 0.990215 0.523918 +vt 0.984387 0.520114 +vt 0.983905 0.519217 +vt 0.986151 0.519753 +vt 0.991106 0.524102 +vt 0.986596 0.521353 +vt 0.987315 0.523876 +vt 0.989134 0.524412 +vt 0.985394 0.520845 +vt 0.982296 0.521201 +vt 0.985881 0.520960 +vt 0.992447 0.525028 +vt 0.986681 0.523108 +vt 0.988356 0.526089 +vt 0.987358 0.525662 +vt 0.989769 0.525515 +vt 0.983846 0.523514 +vt 0.982055 0.523792 +vt 0.990633 0.525603 +vt 0.991523 0.525629 +vt 0.985901 0.523120 +vt 0.986159 0.525654 +vt 0.989134 0.526287 +vt 0.986965 0.525023 +vt 0.985121 0.522682 +vt 0.992339 0.526146 +vt 0.987652 0.527274 +vt 0.988726 0.527050 +vt 0.989727 0.527321 +vt 0.984807 0.524979 +vt 0.982565 0.527163 +vt 0.990722 0.527020 +vt 0.991432 0.526984 +vt 0.986736 0.527678 +vt 0.988185 0.527737 +vt 0.989099 0.527177 +vt 0.983777 0.526116 +vt 0.992075 0.527790 +vt 0.983986 0.528892 +vt 0.987374 0.528528 +vt 0.988820 0.527883 +vt 0.985576 0.529023 +vt 0.990619 0.528690 +vt 0.986741 0.529053 +vt 0.988166 0.529225 +vt 0.986294 0.528963 +vt 0.989039 0.528708 +vt 0.989654 0.528794 +vt 0.984514 0.531372 +vt 0.987209 0.529884 +vt 0.986176 0.530426 +vt 0.989645 0.529870 +vt 0.985296 0.531004 +vt 0.983156 0.535320 +vt 0.987997 0.530831 +vt 0.988801 0.529644 +vt 0.989225 0.529438 +vt 0.984809 0.533278 +vt 0.987043 0.531171 +vt 0.985424 0.531228 +vt 0.989129 0.530314 +vt 0.985240 0.531729 +vt 0.986507 0.532340 +vt 0.989613 0.532050 +vt 0.987598 0.532133 +vt 0.985604 0.531977 +vt 0.985785 0.534430 +vt 0.869675 0.612230 +vt 0.869913 0.613789 +vt 0.869104 0.613266 +vt 0.870070 0.612623 +vt 0.869269 0.615349 +vt 0.869171 0.611873 +vt 0.870584 0.612712 +vt 0.869992 0.611649 +vt 0.870042 0.615531 +vt 0.868637 0.614265 +vt 0.868556 0.611925 +vt 0.869544 0.610885 +vt 0.870637 0.614662 +vt 0.869796 0.617304 +vt 0.868543 0.613223 +vt 0.868445 0.615602 +vt 0.869360 0.609994 +vt 0.871151 0.613666 +vt 0.870525 0.611239 +vt 0.870106 0.610702 +vt 0.870515 0.616385 +vt 0.868818 0.617469 +vt 0.868209 0.612995 +vt 0.868160 0.614369 +vt 0.868957 0.609767 +vt 0.869826 0.609685 +vt 0.871204 0.614781 +vt 0.871209 0.612529 +vt 0.871017 0.611466 +vt 0.871048 0.615694 +vt 0.869309 0.618747 +vt 0.870582 0.618131 +vt 0.867719 0.615079 +vt 0.867944 0.617040 +vt 0.867951 0.612103 +vt 0.869474 0.608539 +vt 0.868276 0.610458 +vt 0.871557 0.614227 +vt 0.871722 0.613110 +vt 0.870458 0.610469 +vt 0.870797 0.610440 +vt 0.870357 0.609570 +vt 0.870968 0.616855 +vt 0.870034 0.619811 +vt 0.868653 0.619654 +vt 0.867691 0.613194 +vt 0.868171 0.618622 +vt 0.868966 0.608091 +vt 0.868489 0.608921 +vt 0.869976 0.608540 +vt 0.871572 0.615192 +vt 0.871303 0.615429 +vt 0.871547 0.611697 +vt 0.871284 0.610946 +vt 0.871457 0.616289 +vt 0.869278 0.619974 +vt 0.870484 0.619696 +vt 0.871294 0.617731 +vt 0.866994 0.613873 +vt 0.866997 0.616512 +vt 0.867456 0.619226 +vt 0.867473 0.611748 +vt 0.867774 0.611106 +vt 0.867956 0.609309 +vt 0.869742 0.606996 +vt 0.872138 0.614419 +vt 0.872021 0.612155 +vt 0.871030 0.609683 +vt 0.870402 0.607848 +vt 0.869662 0.620683 +vt 0.868006 0.620045 +vt 0.868819 0.621479 +vt 0.871133 0.619403 +vt 0.870714 0.620135 +vt 0.866799 0.611679 +vt 0.867727 0.610180 +vt 0.868570 0.607659 +vt 0.868138 0.608185 +vt 0.872432 0.613000 +vt 0.872044 0.615814 +vt 0.872011 0.611022 +vt 0.871528 0.610479 +vt 0.871997 0.617187 +vt 0.870093 0.621066 +vt 0.868298 0.620749 +vt 0.868568 0.620552 +vt 0.871708 0.618396 +vt 0.865718 0.613067 +vt 0.866196 0.621249 +vt 0.867654 0.622467 +vt 0.867230 0.610317 +vt 0.872918 0.613626 +vt 0.872730 0.615556 +vt 0.872444 0.611770 +vt 0.871105 0.607968 +vt 0.869726 0.621790 +vt 0.870834 0.620599 +vt 0.870498 0.621666 +vt 0.872109 0.619217 +vt 0.872917 0.612251 +vt 0.872409 0.616399 +vt 0.872574 0.610630 +vt 0.871853 0.609895 +vt 0.871808 0.608565 +vt 0.872072 0.618222 +vt 0.869341 0.622753 +vt 0.871438 0.620873 +vt 0.864549 0.617441 +vt 0.867058 0.626925 +vt 0.873522 0.614782 +vt 0.873339 0.612147 +vt 0.872959 0.617032 +vt 0.872850 0.611339 +vt 0.872215 0.610192 +vt 0.871571 0.606877 +vt 0.872504 0.617891 +vt 0.870000 0.622914 +vt 0.868886 0.623287 +vt 0.868325 0.623247 +vt 0.873143 0.620519 +vt 0.864614 0.627246 +vt 0.866260 0.627759 +vt 0.867612 0.625736 +vt 0.872516 0.609843 +vt 0.873118 0.610564 +vt 0.872254 0.609348 +vt 0.872304 0.607482 +vt 0.871062 0.623414 +vt 0.869503 0.623644 +vt 0.867990 0.624355 +vt 0.872862 0.618661 +vt 0.868011 0.635456 +vt 0.867950 0.629079 +vt 0.875067 0.614391 +vt 0.873991 0.616229 +vt 0.873009 0.617734 +vt 0.873037 0.609474 +vt 0.872247 0.608568 +vt 0.871938 0.606422 +vt 0.870008 0.624036 +vt 0.868963 0.624332 +vt 0.868547 0.624133 +vt 0.868266 0.624083 +vt 0.872561 0.625280 +vt 0.868183 0.626217 +vt 0.873947 0.611764 +vt 0.873862 0.609968 +vt 0.872605 0.609368 +vt 0.872657 0.608635 +vt 0.871466 0.604999 +vt 0.872290 0.605857 +vt 0.870238 0.625199 +vt 0.869415 0.624996 +vt 0.868304 0.624774 +vt 0.874866 0.616536 +vt 0.874665 0.623379 +vt 0.871039 0.626675 +vt 0.865401 0.637182 +vt 0.869066 0.632183 +vt 0.868677 0.628300 +vt 0.874985 0.612287 +vt 0.873753 0.608381 +vt 0.872874 0.606692 +vt 0.872934 0.607640 +vt 0.868693 0.625337 +vt 0.875534 0.619305 +vt 0.873934 0.628298 +vt 0.872171 0.629505 +vt 0.868610 0.626560 +vt 0.874737 0.610201 +vt 0.876414 0.610993 +vt 0.873204 0.608244 +vt 0.874810 0.608590 +vt 0.872035 0.604720 +vt 0.873199 0.605348 +vt 0.869968 0.627113 +vt 0.869111 0.626867 +vt 0.877125 0.620754 +vt 0.876255 0.626237 +vt 0.870805 0.629957 +vt 0.869648 0.629670 +vt 0.874939 0.608984 +vt 0.873518 0.607002 +vt 0.874371 0.607036 +vt 0.872538 0.604579 +vt 0.871793 0.603945 +vt 0.870727 0.634256 +vt 0.875718 0.609363 +vt 0.875119 0.608910 +vt 0.875561 0.607303 +vt 0.872165 0.604038 +vt 0.871424 0.603401 +vt 0.873089 0.603663 +vt 0.874075 0.605626 +vt 0.877426 0.606563 +vt 0.874785 0.604588 +vt 0.872485 0.603644 +vt 0.872069 0.603147 +vt 0.871715 0.603233 +vt 0.873882 0.603890 +vt 0.871638 0.602414 +vt 0.872639 0.602675 +vt 0.872193 0.601126 +vt 0.468728 0.264350 +vt 0.468905 0.265009 +vt 0.468517 0.264002 +vt 0.468853 0.263999 +vt 0.468467 0.265771 +vt 0.469390 0.264220 +vt 0.468812 0.266369 +vt 0.468462 0.262755 +vt 0.469092 0.263228 +vt 0.469363 0.265298 +vt 0.468458 0.270944 +vt 0.469225 0.266723 +vt 0.468191 0.262161 +vt 0.468614 0.261982 +vt 0.469012 0.262193 +vt 0.469616 0.262645 +vt 0.469775 0.265211 +vt 0.468775 0.269909 +vt 0.468973 0.266850 +vt 0.470285 0.264186 +vt 0.469747 0.266142 +vt 0.468975 0.268404 +vt 0.468842 0.271771 +vt 0.468526 0.260882 +vt 0.468810 0.261140 +vt 0.469348 0.261016 +vt 0.470400 0.262236 +vt 0.470185 0.265682 +vt 0.469681 0.266827 +vt 0.469106 0.269257 +vt 0.469217 0.270381 +vt 0.469472 0.268796 +vt 0.468367 0.259328 +vt 0.469907 0.260863 +vt 0.470844 0.263086 +vt 0.470220 0.266969 +vt 0.470867 0.266274 +vt 0.469674 0.267765 +vt 0.469299 0.273027 +vt 0.468782 0.259956 +vt 0.468687 0.260681 +vt 0.469478 0.259390 +vt 0.471498 0.264192 +vt 0.471395 0.261342 +vt 0.470521 0.260469 +vt 0.469908 0.267459 +vt 0.469873 0.271444 +vt 0.468780 0.274266 +vt 0.470062 0.268254 +vt 0.468565 0.258453 +vt 0.470181 0.259191 +vt 0.471054 0.268399 +vt 0.472975 0.266306 +vt 0.470071 0.269975 +vt 0.470008 0.272959 +vt 0.469197 0.274564 +vt 0.468985 0.258645 +vt 0.469856 0.258101 +vt 0.473246 0.260873 +vt 0.471274 0.259415 +vt 0.470687 0.258328 +vt 0.470200 0.270960 +vt 0.470638 0.271370 +vt 0.469707 0.274711 +vt 0.469116 0.275844 +vt 0.468770 0.257442 +vt 0.469349 0.258337 +vt 0.472578 0.257981 +vt 0.472381 0.271154 +vt 0.475755 0.261785 +vt 0.470878 0.274342 +vt 0.469098 0.258001 +vt 0.470152 0.256420 +vt 0.469378 0.257320 +vt 0.476214 0.252080 +vt 0.471428 0.257383 +vt 0.476068 0.269538 +vt 0.469847 0.277014 +vt 0.471298 0.255683 +vt 0.473197 0.273175 +vt 0.472072 0.273980 +vt 0.470825 0.277474 +vt 0.469005 0.256297 +vt 0.469528 0.256126 +vt 0.470608 0.254825 +vt 0.472694 0.253741 +vt 0.473214 0.275334 +vt 0.471592 0.275753 +vt 0.468619 0.256408 +vt 0.469883 0.254748 +vt 0.471356 0.253413 +vt 0.472599 0.251553 +vt 0.472369 0.275232 +vt 0.471843 0.277623 +vt 0.468651 0.255437 +vt 0.469314 0.255412 +vt 0.470494 0.253522 +vt 0.473196 0.247127 +vt 0.468986 0.255216 +vt 0.469301 0.254214 +vt 0.469882 0.252200 +vt 0.470859 0.252056 +vt 0.471491 0.251929 +vt 0.476358 0.242721 +vt 0.471549 0.250273 +vt 0.468831 0.254317 +vt 0.474106 0.239906 +vt 0.471114 0.247826 +vt 0.469055 0.253021 +vt 0.470680 0.250458 +vt 0.471790 0.244126 +vt 0.469078 0.251453 +vt 0.470173 0.249503 +vt 0.472234 0.238813 +vt 0.471064 0.245693 +vt 0.468697 0.252689 +vt 0.469516 0.250294 +vt 0.473823 0.233986 +vt 0.470872 0.242240 +vt 0.470234 0.247897 +vt 0.471301 0.244998 +vt 0.470634 0.246674 +vt 0.469056 0.250320 +vt 0.468630 0.251214 +vt 0.469721 0.248721 +vt 0.472418 0.232574 +vt 0.471104 0.244597 +vt 0.471053 0.237707 +vt 0.470058 0.248746 +vt 0.470517 0.245103 +vt 0.469170 0.249337 +vt 0.468798 0.250623 +vt 0.473911 0.229877 +vt 0.470158 0.240263 +vt 0.470103 0.246035 +vt 0.468816 0.249023 +vt 0.469174 0.248018 +vt 0.471250 0.234496 +vt 0.474479 0.223988 +vt 0.470184 0.243742 +vt 0.470002 0.238030 +vt 0.469922 0.242348 +vt 0.469665 0.246969 +vt 0.469923 0.244907 +vt 0.470368 0.235968 +vt 0.471758 0.232750 +vt 0.472037 0.225979 +vt 0.469604 0.239710 +vt 0.469615 0.241004 +vt 0.469660 0.245728 +vt 0.468645 0.247211 +vt 0.469082 0.246878 +vt 0.470591 0.233846 +vt 0.471387 0.230338 +vt 0.469619 0.243880 +vt 0.469824 0.240345 +vt 0.469011 0.242700 +vt 0.469224 0.245764 +vt 0.469511 0.244977 +vt 0.469207 0.244468 +vt 0.910089 0.625741 +vt 0.909157 0.625697 +vt 0.908816 0.624466 +vt 0.909017 0.626743 +vt 0.908549 0.625737 +vt 0.909655 0.622769 +vt 0.909811 0.628066 +vt 0.907797 0.624360 +vt 0.910667 0.623462 +vt 0.908239 0.622095 +vt 0.908167 0.627667 +vt 0.910676 0.627673 +vt 0.908639 0.628976 +vt 0.907432 0.626373 +vt 0.911275 0.624920 +vt 0.910371 0.621134 +vt 0.909196 0.621227 +vt 0.911176 0.630555 +vt 0.910675 0.626656 +vt 0.909298 0.631288 +vt 0.907239 0.622750 +vt 0.906647 0.624243 +vt 0.911211 0.626614 +vt 0.911220 0.622478 +vt 0.908089 0.620599 +vt 0.907464 0.629108 +vt 0.911819 0.628937 +vt 0.907111 0.620688 +vt 0.906699 0.627708 +vt 0.912307 0.625964 +vt 0.912102 0.624046 +vt 0.909964 0.619029 +vt 0.911081 0.620117 +vt 0.908916 0.619160 +vt 0.911356 0.631930 +vt 0.912214 0.630657 +vt 0.911369 0.627893 +vt 0.906283 0.621733 +vt 0.905642 0.623455 +vt 0.912082 0.627726 +vt 0.911855 0.622462 +vt 0.910526 0.619755 +vt 0.911751 0.620828 +vt 0.907770 0.619053 +vt 0.910948 0.633239 +vt 0.912563 0.629830 +vt 0.906080 0.618870 +vt 0.912726 0.627445 +vt 0.912887 0.625513 +vt 0.912624 0.623385 +vt 0.910272 0.618622 +vt 0.909391 0.617478 +vt 0.911680 0.618178 +vt 0.910878 0.618853 +vt 0.908474 0.616710 +vt 0.911596 0.633166 +vt 0.913134 0.632640 +vt 0.905192 0.621167 +vt 0.904783 0.617720 +vt 0.912831 0.626643 +vt 0.913042 0.629393 +vt 0.910112 0.616077 +vt 0.909378 0.615668 +vt 0.912353 0.620541 +vt 0.906710 0.616436 +vt 0.907643 0.616248 +vt 0.911337 0.634497 +vt 0.913736 0.632066 +vt 0.905043 0.616207 +vt 0.913177 0.627513 +vt 0.913338 0.628749 +vt 0.913173 0.625319 +vt 0.913111 0.626407 +vt 0.910716 0.617365 +vt 0.912631 0.619221 +vt 0.908369 0.613992 +vt 0.912638 0.634872 +vt 0.911985 0.636117 +vt 0.913694 0.633784 +vt 0.903978 0.619131 +vt 0.904154 0.616236 +vt 0.913773 0.631250 +vt 0.913713 0.624929 +vt 0.912780 0.622159 +vt 0.911074 0.614581 +vt 0.910022 0.613244 +vt 0.912449 0.617303 +vt 0.913314 0.621356 +vt 0.906484 0.614816 +vt 0.907045 0.612721 +vt 0.903495 0.616822 +vt 0.904400 0.614709 +vt 0.913469 0.626924 +vt 0.913746 0.627995 +vt 0.914246 0.631190 +vt 0.913340 0.626104 +vt 0.913514 0.625853 +vt 0.913314 0.623218 +vt 0.909155 0.613602 +vt 0.912150 0.614565 +vt 0.912938 0.617868 +vt 0.906849 0.609757 +vt 0.912960 0.637133 +vt 0.902900 0.618083 +vt 0.903550 0.615010 +vt 0.914324 0.629155 +vt 0.913733 0.626253 +vt 0.914044 0.623179 +vt 0.910822 0.612724 +vt 0.908997 0.611628 +vt 0.911773 0.612117 +vt 0.912641 0.615971 +vt 0.902335 0.615492 +vt 0.903173 0.615371 +vt 0.913495 0.626128 +vt 0.914047 0.627281 +vt 0.914463 0.626259 +vt 0.914796 0.624608 +vt 0.911288 0.612145 +vt 0.910896 0.610846 +vt 0.909695 0.610832 +vt 0.912220 0.611434 +vt 0.912665 0.615220 +vt 0.913035 0.615673 +vt 0.908333 0.608515 +vt 0.914992 0.622698 +vt 0.911611 0.611346 +vt 0.912025 0.610051 +vt 0.912504 0.612383 +vt 0.912624 0.613997 +vt 0.915726 0.626395 +vt 0.916234 0.624412 +vt 0.911376 0.611219 +vt 0.910266 0.608987 +vt 0.909543 0.607751 +vt 0.911807 0.610760 +vt 0.912470 0.610569 +vt 0.913090 0.614444 +vt 0.911569 0.610347 +vt 0.911224 0.608312 +vt 0.912166 0.608094 +vt 0.911784 0.609917 +vt 0.912960 0.612765 +vt 0.912776 0.610862 +vt 0.910517 0.606776 +vt 0.911792 0.608864 +vt 0.912489 0.607870 +vt 0.911627 0.605799 +vt 0.911817 0.607510 +vt 0.912411 0.606471 +vt 0.912101 0.606632 +vt 0.912325 0.605328 +vt 0.925673 0.628752 +vt 0.924864 0.608967 +vt 0.935407 0.612018 +vt 0.920537 0.631970 +vt 0.930778 0.637054 +vt 0.920713 0.621918 +vt 0.660719 0.303720 +vt 0.662788 0.305489 +vt 0.660224 0.308814 +vt 0.661849 0.302540 +vt 0.658895 0.303120 +vt 0.662856 0.302315 +vt 0.661132 0.301439 +vt 0.660074 0.301579 +vt 0.662591 0.300763 +vt 0.665654 0.304328 +vt 0.661938 0.299803 +vt 0.659179 0.300539 +vt 0.664457 0.301774 +vt 0.665694 0.308588 +vt 0.660513 0.299929 +vt 0.656971 0.301273 +vt 0.662732 0.299213 +vt 0.667177 0.302747 +vt 0.661222 0.298467 +vt 0.653571 0.300667 +vt 0.657534 0.299505 +vt 0.660026 0.298693 +vt 0.663302 0.296743 +vt 0.665363 0.299564 +vt 0.654641 0.298376 +vt 0.658848 0.299557 +vt 0.661932 0.297259 +vt 0.659789 0.296554 +vt 0.652517 0.296514 +vt 0.655457 0.297161 +vt 0.658438 0.298297 +vt 0.661629 0.295447 +vt 0.651529 0.297817 +vt 0.654767 0.296135 +vt 0.656764 0.297139 +vt 0.663131 0.291945 +vt 0.657538 0.296081 +vt 0.651267 0.301782 +vt 0.651387 0.295609 +vt 0.653590 0.294948 +vt 0.656340 0.295265 +vt 0.660466 0.293382 +vt 0.657838 0.292922 +vt 0.650704 0.306536 +vt 0.649081 0.299001 +vt 0.652568 0.293940 +vt 0.650052 0.296159 +vt 0.655364 0.293087 +vt 0.659968 0.290167 +vt 0.647579 0.303629 +vt 0.652051 0.293814 +vt 0.649478 0.294352 +vt 0.652952 0.293559 +vt 0.648719 0.296229 +vt 0.651209 0.292806 +vt 0.652456 0.293342 +vt 0.653793 0.292381 +vt 0.656564 0.291403 +vt 0.656613 0.288152 +vt 0.652590 0.292245 +vt 0.649162 0.291576 +vt 0.648778 0.295080 +vt 0.654833 0.291127 +vt 0.652441 0.288811 +vt 0.648119 0.293905 +vt 0.653938 0.290653 +vt 0.966437 0.615076 +vt 0.967014 0.615184 +vt 0.966638 0.616522 +vt 0.967043 0.614242 +vt 0.967378 0.616025 +vt 0.965816 0.616215 +vt 0.967605 0.614828 +vt 0.966681 0.613218 +vt 0.967110 0.617217 +vt 0.965891 0.615475 +vt 0.965610 0.617654 +vt 0.967741 0.613333 +vt 0.965870 0.614319 +vt 0.966401 0.618503 +vt 0.967668 0.617022 +vt 0.968050 0.615788 +vt 0.965417 0.615307 +vt 0.965294 0.616891 +vt 0.968232 0.614536 +vt 0.965461 0.612691 +vt 0.967268 0.612742 +vt 0.967291 0.618196 +vt 0.967287 0.617382 +vt 0.965132 0.616245 +vt 0.965583 0.619408 +vt 0.964506 0.617288 +vt 0.968544 0.613922 +vt 0.965174 0.614152 +vt 0.965900 0.610497 +vt 0.967327 0.611671 +vt 0.966892 0.619537 +vt 0.967996 0.617851 +vt 0.968940 0.615475 +vt 0.965099 0.615587 +vt 0.966178 0.619895 +vt 0.964918 0.619185 +vt 0.964363 0.618622 +vt 0.964539 0.613305 +vt 0.965220 0.611453 +vt 0.967795 0.619572 +vt 0.964966 0.615082 +vt 0.964466 0.616603 +vt 0.965543 0.621120 +vt 0.964882 0.620360 +vt 0.963469 0.618137 +vt 0.964621 0.614440 +vt 0.964693 0.612065 +vt 0.965224 0.610892 +vt 0.967106 0.620826 +vt 0.966527 0.620446 +vt 0.969100 0.617569 +vt 0.964458 0.615405 +vt 0.964440 0.616194 +vt 0.966139 0.620691 +vt 0.964230 0.620056 +vt 0.963962 0.616992 +vt 0.963785 0.620259 +vt 0.963856 0.614516 +vt 0.964994 0.610473 +vt 0.964757 0.611135 +vt 0.967492 0.621406 +vt 0.968467 0.618402 +vt 0.964737 0.621678 +vt 0.966333 0.621503 +vt 0.964327 0.621019 +vt 0.967004 0.622182 +vt 0.968265 0.621090 +vt 0.968600 0.619656 +vt 0.969284 0.618735 +vt 0.963927 0.615919 +vt 0.965109 0.621956 +vt 0.965670 0.622458 +vt 0.963665 0.621271 +vt 0.967538 0.622175 +vt 0.969937 0.618247 +vt 0.964859 0.622653 +vt 0.965229 0.622479 +vt 0.964102 0.621932 +vt 0.966289 0.622961 +vt 0.967267 0.622932 +vt 0.968958 0.620729 +vt 0.967896 0.622797 +vt 0.969683 0.619513 +vt 0.964236 0.622963 +vt 0.964848 0.624332 +vt 0.963425 0.622871 +vt 0.966885 0.623089 +vt 0.968997 0.622247 +vt 0.970524 0.620367 +vt 0.966785 0.624277 +vt 0.970111 0.622032 +vt 0.968306 0.625041 +vt 0.963252 0.624478 +vt 0.965594 0.628934 +vt 0.969730 0.623557 +vt 0.961422 0.627978 +vt 0.962208 0.624263 +vt 0.970797 0.621975 +vt 0.971053 0.623323 +vt 0.970053 0.625323 +vt 0.961890 0.637000 +vt 0.968692 0.628554 +vt 0.971095 0.621599 +vt 0.961405 0.625776 +vt 0.958720 0.633674 +vt 0.967031 0.635360 +vt 0.971430 0.621025 +vt 0.971284 0.622347 +vt 0.971484 0.624980 +vt 0.960945 0.626302 +vt 0.959046 0.629554 +vt 0.971517 0.621953 +vt 0.972019 0.622452 +vt 0.972934 0.623748 +vt 0.959414 0.627833 +vt 0.957768 0.630297 +vt 0.971777 0.621815 +vt 0.959802 0.626620 +vt 0.958359 0.628019 +vt 0.972084 0.621352 +vt 0.979683 0.600323 +vt 0.980431 0.600215 +vt 0.980296 0.601742 +vt 0.980200 0.598095 +vt 0.981072 0.601541 +vt 0.979460 0.602584 +vt 0.979087 0.598723 +vt 0.981578 0.599722 +vt 0.980821 0.602561 +vt 0.978786 0.600698 +vt 0.980169 0.603271 +vt 0.979460 0.596430 +vt 0.980826 0.596229 +vt 0.981871 0.602779 +vt 0.981267 0.602614 +vt 0.978368 0.603347 +vt 0.979521 0.605013 +vt 0.980276 0.596324 +vt 0.978603 0.597596 +vt 0.978060 0.599331 +vt 0.981909 0.598388 +vt 0.982799 0.602657 +vt 0.981156 0.603868 +vt 0.978689 0.605094 +vt 0.977683 0.603394 +vt 0.980284 0.605614 +vt 0.979487 0.593744 +vt 0.978675 0.594851 +vt 0.980723 0.594464 +vt 0.981697 0.596216 +vt 0.982765 0.599696 +vt 0.983157 0.606625 +vt 0.978890 0.607841 +vt 0.980151 0.609043 +vt 0.980280 0.593580 +vt 0.981089 0.594208 +vt 0.982320 0.597292 +vt 0.981324 0.606173 +vt 0.984283 0.607257 +vt 0.982603 0.607584 +vt 0.984098 0.602850 +vt 0.977387 0.606927 +vt 0.979704 0.609250 +vt 0.977592 0.608240 +vt 0.980953 0.608552 +vt 0.979607 0.591269 +vt 0.978650 0.591273 +vt 0.983444 0.612233 +vt 0.979223 0.611627 +vt 0.980412 0.611901 +vt 0.980615 0.592449 +vt 0.981328 0.592000 +vt 0.981826 0.608139 +vt 0.984804 0.613024 +vt 0.982235 0.611175 +vt 0.979877 0.613042 +vt 0.981394 0.612224 +vt 0.984642 0.614647 +vt 0.982841 0.614560 +vt 0.981001 0.614592 +vt 0.985073 0.618967 +vt 0.981987 0.614084 +vt 0.982523 0.616976 +vt 0.980156 0.615654 +vt 0.983802 0.620941 +vt 0.982825 0.619642 +vt 0.981353 0.616719 +vt 0.984955 0.622368 +vt 0.981970 0.617003 +vt 0.981954 0.618765 +vt 0.980418 0.619472 +vt 0.984185 0.624020 +vt 0.983019 0.621444 +vt 0.982332 0.620483 +vt 0.981215 0.619452 +vt 0.983472 0.622622 +vt 0.985715 0.626240 +vt 0.982603 0.621012 +vt 0.980377 0.620664 +vt 0.983531 0.624503 +vt 0.984006 0.627118 +vt 0.982714 0.622935 +vt 0.981363 0.623261 +vt 0.984813 0.631040 +vt 0.982261 0.622920 +vt 0.980108 0.623255 +vt 0.982943 0.625411 +vt 0.983814 0.630102 +vt 0.982594 0.623890 +vt 0.982124 0.624651 +vt 0.980074 0.626944 +vt 0.983071 0.627740 +vt 0.984192 0.633244 +vt 0.981333 0.625791 +vt 0.982250 0.626692 +vt 0.984154 0.635054 +vt 0.983156 0.631356 +vt 0.980638 0.629538 +vt 0.982388 0.629030 +vt 0.983288 0.633720 +vt 0.981466 0.629060 +vt 0.983254 0.635441 +vt 0.982560 0.632781 +vt 0.981983 0.631174 +vt 0.981110 0.630867 +vt 0.983712 0.636945 +vt 0.982505 0.634662 +vt 0.982699 0.637084 +vt 0.981735 0.633226 +vt 0.981276 0.632385 +vt 0.981287 0.636155 +vt 0.980877 0.633686 +vt 0.707506 0.294965 +vt 0.707089 0.292840 +vt 0.708217 0.294232 +vt 0.706645 0.294889 +vt 0.709350 0.293561 +vt 0.708141 0.295197 +vt 0.707273 0.295777 +vt 0.705572 0.294103 +vt 0.709292 0.294986 +vt 0.709473 0.291814 +vt 0.708029 0.296188 +vt 0.708590 0.295719 +vt 0.706788 0.296566 +vt 0.704328 0.293291 +vt 0.705734 0.295283 +vt 0.710315 0.294089 +vt 0.710497 0.292919 +vt 0.708279 0.290995 +vt 0.707766 0.297340 +vt 0.704669 0.294406 +vt 0.705285 0.291418 +vt 0.709220 0.296586 +vt 0.710223 0.295334 +vt 0.708447 0.297447 +vt 0.707174 0.298284 +vt 0.705755 0.296278 +vt 0.703892 0.294040 +vt 0.702952 0.290791 +vt 0.704513 0.295661 +vt 0.711100 0.294458 +vt 0.705287 0.290166 +vt 0.708088 0.300075 +vt 0.706606 0.298404 +vt 0.707117 0.300235 +vt 0.706125 0.297605 +vt 0.702843 0.293144 +vt 0.703437 0.289850 +vt 0.709122 0.298703 +vt 0.710706 0.297135 +vt 0.711087 0.295472 +vt 0.706845 0.299277 +vt 0.705338 0.297671 +vt 0.703358 0.294516 +vt 0.701177 0.291061 +vt 0.701429 0.289597 +vt 0.703640 0.289193 +vt 0.707072 0.303601 +vt 0.705910 0.299148 +vt 0.703890 0.297426 +vt 0.702269 0.294250 +vt 0.703140 0.295650 +vt 0.701085 0.293041 +vt 0.705315 0.301157 +vt 0.705062 0.299233 +vt 0.704782 0.298491 +vt 0.698948 0.292615 +vt 0.704441 0.303909 +vt 0.704072 0.299236 +vt 0.702796 0.296812 +vt 0.702288 0.295691 +vt 0.699009 0.294472 +vt 0.698502 0.290986 +vt 0.704012 0.301118 +vt 0.703308 0.298565 +vt 0.701117 0.295747 +vt 0.696300 0.290857 +vt 0.697529 0.293619 +vt 0.702543 0.303219 +vt 0.703334 0.299891 +vt 0.701926 0.296320 +vt 0.702168 0.297513 +vt 0.699622 0.295318 +vt 0.696663 0.295394 +vt 0.703425 0.305899 +vt 0.701381 0.301895 +vt 0.702369 0.297080 +vt 0.701219 0.296375 +vt 0.700376 0.296897 +vt 0.698586 0.296007 +vt 0.696288 0.292778 +vt 0.694968 0.295706 +vt 0.701905 0.300429 +vt 0.699337 0.308614 +vt 0.701595 0.304174 +vt 0.701988 0.298875 +vt 0.701712 0.296911 +vt 0.694121 0.291226 +vt 0.697622 0.296387 +vt 0.696593 0.296983 +vt 0.700021 0.304470 +vt 0.700530 0.300812 +vt 0.699367 0.297538 +vt 0.698180 0.297130 +vt 0.701172 0.298971 +vt 0.700056 0.303069 +vt 0.700826 0.298029 +vt 0.700292 0.298948 +vt 0.697752 0.297669 +vt 0.699245 0.304866 +vt 0.699589 0.301726 +vt 0.698649 0.297885 +vt 0.699026 0.298873 +vt 0.697240 0.299011 +vt 0.698470 0.306382 +vt 0.699236 0.302701 +vt 0.699608 0.300271 +vt 0.697799 0.299756 +vt 0.698755 0.304414 +vt 0.698792 0.300816 +vt 0.697522 0.301152 +vt 0.698329 0.302464 +vt 0.846123 0.508976 +vt 0.844952 0.508531 +vt 0.845222 0.507901 +vt 0.845327 0.509841 +vt 0.844846 0.507477 +vt 0.846615 0.508374 +vt 0.843730 0.509574 +vt 0.847133 0.510667 +vt 0.845818 0.506168 +vt 0.843653 0.507357 +vt 0.847390 0.509213 +vt 0.846897 0.507189 +vt 0.844658 0.512232 +vt 0.842876 0.508538 +vt 0.845687 0.503630 +vt 0.843521 0.504142 +vt 0.847344 0.507930 +vt 0.842788 0.511107 +vt 0.842285 0.509396 +vt 0.848402 0.510036 +vt 0.847028 0.512389 +vt 0.846923 0.505613 +vt 0.842659 0.506529 +vt 0.842089 0.507865 +vt 0.847898 0.508087 +vt 0.847300 0.507457 +vt 0.843324 0.512828 +vt 0.849315 0.512605 +vt 0.847465 0.507148 +vt 0.842878 0.503779 +vt 0.842553 0.512375 +vt 0.841947 0.511312 +vt 0.841475 0.509227 +vt 0.848500 0.508072 +vt 0.849956 0.510998 +vt 0.847958 0.506566 +vt 0.841848 0.505715 +vt 0.842483 0.513551 +vt 0.841665 0.510147 +vt 0.840801 0.508117 +vt 0.849052 0.508966 +vt 0.849643 0.509717 +vt 0.847069 0.504254 +vt 0.841407 0.503110 +vt 0.841583 0.513210 +vt 0.841242 0.510953 +vt 0.841013 0.510052 +vt 0.841348 0.510245 +vt 0.848827 0.507256 +vt 0.850249 0.509403 +vt 0.848195 0.505895 +vt 0.839745 0.503824 +vt 0.840869 0.514621 +vt 0.841164 0.512053 +vt 0.840722 0.509997 +vt 0.849571 0.508603 +vt 0.839083 0.505925 +vt 0.840402 0.513168 +vt 0.840721 0.511667 +vt 0.840708 0.510687 +vt 0.840383 0.509615 +vt 0.849427 0.507915 +vt 0.839463 0.509068 +vt 0.838270 0.503085 +vt 0.839355 0.514193 +vt 0.840385 0.511942 +vt 0.840877 0.510940 +vt 0.840484 0.510390 +vt 0.838026 0.508266 +vt 0.837248 0.505220 +vt 0.840023 0.510394 +vt 0.838567 0.510337 +vt 0.836994 0.502089 +vt 0.839197 0.512935 +vt 0.839893 0.511372 +vt 0.839416 0.510785 +vt 0.837765 0.510161 +vt 0.836847 0.507833 +vt 0.836184 0.503584 +vt 0.837636 0.513078 +vt 0.838945 0.511827 +vt 0.837226 0.509447 +vt 0.837810 0.511760 +vt 0.835815 0.507678 +vt 0.835589 0.502439 +vt 0.836058 0.505452 +vt 0.837138 0.510868 +vt 0.836294 0.510052 +vt 0.835516 0.504361 +vt 0.837013 0.511949 +vt 0.835496 0.509673 +vt 0.835150 0.505945 +vt 0.834829 0.504383 +vt 0.836508 0.512538 +vt 0.836580 0.511521 +vt 0.835819 0.510288 +vt 0.834341 0.508460 +vt 0.834731 0.502776 +vt 0.835801 0.513453 +vt 0.835960 0.511778 +vt 0.835594 0.510869 +vt 0.834797 0.510399 +vt 0.834268 0.505872 +vt 0.833996 0.504496 +vt 0.835664 0.512597 +vt 0.833709 0.510371 +vt 0.833370 0.506883 +vt 0.833463 0.503046 +vt 0.835114 0.512413 +vt 0.835398 0.511672 +vt 0.834284 0.511327 +vt 0.833492 0.509288 +vt 0.833417 0.508464 +vt 0.834508 0.500217 +vt 0.832879 0.505503 +vt 0.835597 0.512255 +vt 0.833723 0.511784 +vt 0.833037 0.509877 +vt 0.832605 0.508231 +vt 0.830431 0.506654 +vt 0.832623 0.511000 +vt 0.832980 0.509081 +vt 0.832111 0.507019 +vt 0.832433 0.509500 +vt 0.831293 0.508306 +vt 0.831572 0.509915 +vt 0.831938 0.508943 +vt 0.830102 0.508414 +vt 0.831597 0.511299 +vt 0.830556 0.509554 +vt 0.828790 0.508469 +vt 0.830833 0.510854 +vt 0.829615 0.509590 +vt 0.830869 0.512343 +vt 0.830128 0.510494 +vt 0.828755 0.510027 +vt 0.830255 0.511610 +vt 0.829503 0.510920 +vt 0.829643 0.512268 +vt 0.828732 0.511612 +vt 0.829606 0.513532 +vt 0.507377 0.252894 +vt 0.506126 0.253460 +vt 0.505679 0.252884 +vt 0.505958 0.255828 +vt 0.507622 0.257955 +vt 0.504846 0.255051 +vt 0.506850 0.262491 +vt 0.505301 0.257196 +vt 0.508815 0.261617 +vt 0.503761 0.254847 +vt 0.505673 0.261192 +vt 0.508695 0.264993 +vt 0.509373 0.258253 +vt 0.503885 0.258588 +vt 0.506119 0.265253 +vt 0.503831 0.261867 +vt 0.509710 0.261983 +vt 0.507164 0.266356 +vt 0.509366 0.260334 +vt 0.502988 0.257049 +vt 0.504470 0.265003 +vt 0.510526 0.263805 +vt 0.509712 0.269113 +vt 0.510634 0.259417 +vt 0.502137 0.264566 +vt 0.503925 0.267463 +vt 0.505698 0.271780 +vt 0.502832 0.265455 +vt 0.511806 0.257678 +vt 0.507300 0.274260 +vt 0.501011 0.258475 +vt 0.511444 0.262256 +vt 0.501010 0.263564 +vt 0.501826 0.268966 +vt 0.503406 0.270402 +vt 0.507009 0.276170 +vt 0.499663 0.263318 +vt 0.501091 0.266189 +vt 0.503996 0.274600 +vt 0.500412 0.265855 +vt 0.500307 0.269162 +vt 0.501111 0.271971 +vt 0.502197 0.274164 +vt 0.505165 0.277691 +vt 0.499268 0.270277 +vt 0.501845 0.277147 +vt 0.500018 0.273236 +vt 0.431250 0.663707 +vt 0.430940 0.662217 +vt 0.431617 0.663064 +vt 0.432103 0.660199 +vt 0.432005 0.664284 +vt 0.429932 0.656537 +vt 0.432871 0.662511 +vt 0.431309 0.665500 +vt 0.432127 0.656861 +vt 0.434386 0.660477 +vt 0.432126 0.665728 +vt 0.432892 0.664586 +vt 0.431787 0.654603 +vt 0.434754 0.658423 +vt 0.434438 0.661752 +vt 0.431561 0.667185 +vt 0.434045 0.663932 +vt 0.430593 0.653854 +vt 0.435712 0.661751 +vt 0.435330 0.659694 +vt 0.432632 0.666836 +vt 0.433844 0.665754 +vt 0.432909 0.652571 +vt 0.434602 0.653704 +vt 0.435087 0.662461 +vt 0.438171 0.661525 +vt 0.432852 0.668698 +vt 0.435204 0.664177 +vt 0.436204 0.656132 +vt 0.436241 0.662874 +vt 0.435980 0.661383 +vt 0.437552 0.661806 +vt 0.434209 0.667195 +vt 0.435127 0.666289 +vt 0.434613 0.650990 +vt 0.437860 0.651342 +vt 0.438367 0.663085 +vt 0.437513 0.658402 +vt 0.434788 0.667899 +vt 0.436300 0.665668 +vt 0.437001 0.662411 +vt 0.437375 0.663711 +vt 0.438836 0.661580 +vt 0.438710 0.659335 +vt 0.435513 0.666966 +vt 0.439024 0.649187 +vt 0.438130 0.654498 +vt 0.438120 0.664690 +vt 0.439158 0.663504 +vt 0.439478 0.658271 +vt 0.435616 0.667995 +vt 0.439954 0.651945 +vt 0.440204 0.656131 +vt 0.437448 0.665326 +vt 0.438416 0.665161 +vt 0.439899 0.661584 +vt 0.437930 0.665987 +vt 0.440977 0.648424 +vt 0.439838 0.663186 +vt 0.440688 0.661036 +vt 0.440888 0.653139 +vt 0.440628 0.662986 +vt 0.442433 0.650904 +vt 0.441277 0.659943 +vt 0.441545 0.662258 +vt 0.442784 0.654095 +vt 0.444411 0.651442 +vt 0.442276 0.658987 +vt 0.441542 0.663413 +vt 0.442692 0.661211 +vt 0.442427 0.662876 +vt 0.444492 0.655967 +vt 0.443564 0.657400 +vt 0.443122 0.659691 +vt 0.442121 0.664289 +vt 0.443703 0.661512 +vt 0.443160 0.662681 +vt 0.442596 0.663696 +vt 0.444622 0.658185 +vt 0.444081 0.659758 +vt 0.442884 0.663438 +vt 0.442737 0.664043 +vt 0.443591 0.662971 +vt 0.444537 0.660879 +vt 0.443254 0.663791 +vt 0.442654 0.664749 +vt 0.445054 0.660004 +vt 0.443977 0.663046 +vt 0.444523 0.662494 +vt 0.445308 0.661689 +vt 0.444156 0.664507 +vt 0.450040 0.654613 +vt 0.450235 0.653973 +vt 0.450375 0.655213 +vt 0.449756 0.652739 +vt 0.450829 0.654501 +vt 0.450136 0.656355 +vt 0.449748 0.654286 +vt 0.450588 0.656664 +vt 0.451487 0.656231 +vt 0.449697 0.655956 +vt 0.450225 0.658514 +vt 0.451566 0.651618 +vt 0.450873 0.658982 +vt 0.449916 0.658118 +vt 0.451760 0.646499 +vt 0.451080 0.653358 +vt 0.451421 0.659584 +vt 0.449677 0.658254 +vt 0.449896 0.659780 +vt 0.450360 0.661142 +vt 0.452551 0.659200 +vt 0.451049 0.652562 +vt 0.451168 0.661330 +vt 0.452149 0.661440 +vt 0.451448 0.651736 +vt 0.450743 0.663293 +vt 0.454611 0.665178 +vt 0.451677 0.649934 +vt 0.451313 0.651684 +vt 0.451522 0.663387 +vt 0.450000 0.664167 +vt 0.452450 0.664524 +vt 0.463248 0.661093 +vt 0.450494 0.665010 +vt 0.451050 0.664895 +vt 0.452982 0.665911 +vt 0.451701 0.665033 +vt 0.450175 0.667761 +vt 0.452356 0.665650 +vt 0.452083 0.665225 +vt 0.450671 0.666433 +vt 0.451316 0.666564 +vt 0.452472 0.666979 +vt 0.451939 0.666063 +vt 0.450411 0.668482 +vt 0.451846 0.667479 +vt 0.451386 0.668196 +vt 0.988233 0.575993 +vt 0.988044 0.576362 +vt 0.987886 0.575901 +vt 0.988147 0.576826 +vt 0.987930 0.575544 +vt 0.989491 0.575215 +vt 0.988092 0.575603 +vt 0.987795 0.575312 +vt 0.988409 0.575536 +vt 0.987959 0.575197 +vt 0.987865 0.574996 +vt 0.988336 0.574931 +vt 0.988134 0.575282 +vt 0.988262 0.574341 +vt 0.987930 0.574789 +vt 0.988040 0.574873 +vt 0.988220 0.572665 +vt 0.988097 0.574596 +vt 0.987979 0.574541 +vt 0.990537 0.566068 +vt 0.987980 0.574617 +vt 0.994369 0.565220 +vt 0.994080 0.573345 +vt 0.996853 0.548934 +vt 0.989415 0.562018 +vt 0.738887 0.529602 +vt 0.738624 0.529449 +vt 0.739108 0.528379 +vt 0.738714 0.530300 +vt 0.738498 0.528268 +vt 0.739016 0.530389 +vt 0.738347 0.530624 +vt 0.738145 0.529716 +vt 0.738900 0.526759 +vt 0.739442 0.529712 +vt 0.738618 0.531580 +vt 0.737923 0.528842 +vt 0.739448 0.525756 +vt 0.738646 0.526364 +vt 0.739081 0.532783 +vt 0.739799 0.527141 +vt 0.737915 0.530437 +vt 0.738007 0.532092 +vt 0.737738 0.529867 +vt 0.738130 0.527796 +vt 0.739063 0.525005 +vt 0.739836 0.529751 +vt 0.738394 0.533281 +vt 0.737540 0.529731 +vt 0.737781 0.528015 +vt 0.740012 0.524347 +vt 0.738546 0.525320 +vt 0.739281 0.536090 +vt 0.740593 0.524714 +vt 0.737609 0.531297 +vt 0.737966 0.533402 +vt 0.738479 0.535346 +vt 0.737389 0.530852 +vt 0.740205 0.527661 +vt 0.738961 0.535601 +vt 0.737352 0.533721 +vt 0.737683 0.533197 +vt 0.738053 0.534377 +vt 0.740635 0.521227 +vt 0.739715 0.536711 +vt 0.738602 0.537731 +vt 0.742800 0.518001 +vt 0.737069 0.532967 +vt 0.737688 0.534105 +vt 0.737971 0.535372 +vt 0.738749 0.541886 +vt 0.738237 0.541292 +vt 0.737049 0.535497 +vt 0.737747 0.534848 +vt 0.738073 0.536250 +vt 0.738250 0.537088 +vt 0.738908 0.539955 +vt 0.739175 0.542712 +vt 0.738292 0.539482 +vt 0.736520 0.534623 +vt 0.737395 0.535141 +vt 0.737742 0.536161 +vt 0.737655 0.535475 +vt 0.738065 0.538614 +vt 0.739803 0.539596 +vt 0.737338 0.548124 +vt 0.737955 0.540045 +vt 0.736734 0.536445 +vt 0.737435 0.536590 +vt 0.737758 0.537374 +vt 0.737541 0.546542 +vt 0.739798 0.535539 +vt 0.739682 0.542987 +vt 0.738748 0.545127 +vt 0.737686 0.541165 +vt 0.736200 0.536338 +vt 0.737040 0.537566 +vt 0.737530 0.536646 +vt 0.737597 0.538942 +vt 0.737409 0.544622 +vt 0.739820 0.541081 +vt 0.737498 0.540058 +vt 0.737603 0.542265 +vt 0.737735 0.539445 +vt 0.735642 0.536214 +vt 0.736456 0.537923 +vt 0.736724 0.538321 +vt 0.737329 0.537159 +vt 0.737329 0.537787 +vt 0.737557 0.543156 +vt 0.737057 0.546549 +vt 0.739697 0.544362 +vt 0.737305 0.541223 +vt 0.737380 0.541909 +vt 0.735168 0.538454 +vt 0.735621 0.540041 +vt 0.736837 0.539427 +vt 0.737587 0.539491 +vt 0.737102 0.540256 +vt 0.737041 0.544076 +vt 0.736805 0.545634 +vt 0.737191 0.547701 +vt 0.737274 0.542569 +vt 0.737315 0.543110 +vt 0.735567 0.542497 +vt 0.736315 0.541088 +vt 0.736605 0.546891 +vt 0.737331 0.548017 +vt 0.736729 0.547769 +vt 0.737010 0.542189 +vt 0.736479 0.544993 +vt 0.737048 0.543138 +vt 0.736222 0.546601 +vt 0.737276 0.548060 +vt 0.736939 0.548378 +vt 0.736603 0.543516 +vt 0.735948 0.543491 +vt 0.737173 0.548186 +vt 0.737233 0.548411 +vt 0.737141 0.549027 +vt 0.737113 0.548466 +vt 0.737030 0.548890 +vt 0.273802 0.310205 +vt 0.273779 0.308707 +vt 0.274400 0.309232 +vt 0.272903 0.309773 +vt 0.274168 0.307724 +vt 0.274332 0.311203 +vt 0.272932 0.311230 +vt 0.273182 0.308060 +vt 0.273673 0.307604 +vt 0.273545 0.311879 +vt 0.272498 0.310849 +vt 0.272831 0.307879 +vt 0.273800 0.306882 +vt 0.274231 0.313397 +vt 0.273165 0.312415 +vt 0.272627 0.312130 +vt 0.272370 0.308944 +vt 0.273338 0.306770 +vt 0.274140 0.306607 +vt 0.273360 0.313270 +vt 0.272091 0.312424 +vt 0.272094 0.310197 +vt 0.272365 0.307326 +vt 0.272966 0.305857 +vt 0.273667 0.305847 +vt 0.273751 0.314500 +vt 0.272787 0.313581 +vt 0.272471 0.313869 +vt 0.271897 0.311814 +vt 0.271976 0.307237 +vt 0.273274 0.314493 +vt 0.274174 0.315084 +vt 0.271813 0.314505 +vt 0.271231 0.313488 +vt 0.271637 0.310328 +vt 0.271568 0.308336 +vt 0.272390 0.305045 +vt 0.273086 0.305010 +vt 0.273565 0.315323 +vt 0.273863 0.315337 +vt 0.272858 0.314796 +vt 0.272392 0.315320 +vt 0.271660 0.306938 +vt 0.271786 0.304236 +vt 0.273653 0.304342 +vt 0.273192 0.315311 +vt 0.273952 0.316413 +vt 0.271913 0.316269 +vt 0.271053 0.308646 +vt 0.271439 0.304936 +vt 0.271292 0.306897 +vt 0.272719 0.304149 +vt 0.272287 0.303659 +vt 0.272987 0.302936 +vt 0.273391 0.315967 +vt 0.272905 0.316131 +vt 0.270672 0.313900 +vt 0.272405 0.317006 +vt 0.270480 0.311871 +vt 0.270924 0.307069 +vt 0.271336 0.303455 +vt 0.271829 0.302940 +vt 0.270532 0.316335 +vt 0.271851 0.318275 +vt 0.270407 0.308808 +vt 0.270706 0.305404 +vt 0.270767 0.304204 +vt 0.273374 0.316813 +vt 0.272655 0.317047 +vt 0.270158 0.314803 +vt 0.270151 0.312742 +vt 0.272182 0.319203 +vt 0.269400 0.310369 +vt 0.269764 0.306226 +vt 0.271012 0.303238 +vt 0.273688 0.318136 +vt 0.272959 0.317594 +vt 0.270122 0.316336 +vt 0.269494 0.308855 +vt 0.269675 0.308009 +vt 0.270377 0.304401 +vt 0.270054 0.304755 +vt 0.270548 0.303040 +vt 0.272669 0.318917 +vt 0.269806 0.314924 +vt 0.270248 0.317583 +vt 0.269689 0.313551 +vt 0.269464 0.312068 +vt 0.269007 0.309319 +vt 0.269218 0.307078 +vt 0.269378 0.305564 +vt 0.271231 0.301702 +vt 0.273152 0.319060 +vt 0.269564 0.316192 +vt 0.269710 0.317141 +vt 0.268858 0.312168 +vt 0.269940 0.303074 +vt 0.269872 0.300944 +vt 0.269387 0.315080 +vt 0.269421 0.314388 +vt 0.269658 0.318295 +vt 0.269171 0.313429 +vt 0.268840 0.303339 +vt 0.269076 0.316233 +vt 0.269284 0.316935 +vt 0.270210 0.319382 +vt 0.269403 0.317493 +vt 0.268965 0.314336 +vt 0.268855 0.315434 +vt 0.269324 0.319233 +vt 0.269279 0.317799 +vt 0.268996 0.300980 +vt 0.268681 0.316429 +vt 0.268911 0.316814 +vt 0.269247 0.317484 +vt 0.269107 0.318330 +vt 0.269760 0.320522 +vt 0.268504 0.315447 +vt 0.269159 0.317504 +vt 0.268781 0.319900 +vt 0.269249 0.320189 +vt 0.271037 0.320428 +vt 0.268793 0.317570 +vt 0.268651 0.318811 +vt 0.269353 0.321108 +vt 0.270509 0.321608 +vt 0.267795 0.316617 +vt 0.268202 0.320035 +vt 0.269923 0.322400 +vt 0.271206 0.322064 +vt 0.268386 0.318169 +vt 0.268817 0.321778 +vt 0.269457 0.323440 +vt 0.270999 0.323068 +vt 0.267587 0.320053 +vt 0.268988 0.322289 +vt 0.267931 0.322777 +vt 0.269865 0.323881 +vt 0.270860 0.323697 +vt 0.271711 0.323270 +vt 0.268623 0.323498 +vt 0.269051 0.323758 +vt 0.269698 0.324684 +vt 0.267111 0.320852 +vt 0.267447 0.324989 +vt 0.269245 0.325359 +vt 0.270236 0.324988 +vt 0.270820 0.324600 +vt 0.271950 0.324536 +vt 0.268492 0.325565 +vt 0.269796 0.325640 +vt 0.271488 0.325273 +vt 0.267734 0.326066 +vt 0.269276 0.327713 +vt 0.271148 0.327144 +vt 0.269841 0.327510 +vt 0.269615 0.326143 +vt 0.272085 0.325645 +vt 0.268964 0.329013 +vt 0.266933 0.328138 +vt 0.269342 0.326600 +vt 0.271977 0.326103 +vt 0.268249 0.328959 +vt 0.269459 0.327598 +vt 0.269418 0.329627 +vt 0.270566 0.328414 +vt 0.268788 0.331467 +vt 0.269647 0.328420 +vt 0.268973 0.330610 +vt 0.269968 0.328600 +vt 0.271872 0.329424 +vt 0.269166 0.331435 +vt 0.270474 0.329940 +vt 0.269810 0.330777 +vt 0.518941 0.220318 +vt 0.518892 0.222674 +vt 0.518171 0.221960 +vt 0.519417 0.221185 +vt 0.518369 0.224022 +vt 0.518355 0.220426 +vt 0.519360 0.222613 +vt 0.519675 0.219645 +vt 0.518806 0.224369 +vt 0.517629 0.223428 +vt 0.517770 0.220654 +vt 0.518963 0.218238 +vt 0.519821 0.221728 +vt 0.519250 0.224660 +vt 0.519421 0.218402 +vt 0.519943 0.220435 +vt 0.518429 0.225912 +vt 0.517837 0.224925 +vt 0.517180 0.222006 +vt 0.518423 0.218587 +vt 0.519608 0.223192 +vt 0.519903 0.218591 +vt 0.520508 0.219242 +vt 0.519126 0.228192 +vt 0.517520 0.219259 +vt 0.517085 0.220067 +vt 0.520035 0.222811 +vt 0.520444 0.220803 +vt 0.519900 0.224779 +vt 0.520070 0.217293 +vt 0.520126 0.228069 +vt 0.518387 0.227621 +vt 0.517982 0.226235 +vt 0.518066 0.217495 +vt 0.520261 0.221829 +vt 0.521452 0.220712 +vt 0.519992 0.230062 +vt 0.518597 0.230068 +vt 0.516812 0.217707 +vt 0.517497 0.216296 +vt 0.520189 0.222257 +vt 0.520540 0.224410 +vt 0.520963 0.221685 +vt 0.521277 0.230939 +vt 0.521150 0.217522 +vt 0.521710 0.219658 +vt 0.519663 0.231012 +vt 0.520858 0.233138 +vt 0.517900 0.226779 +vt 0.517890 0.228853 +vt 0.516171 0.218845 +vt 0.518183 0.215114 +vt 0.520494 0.222569 +vt 0.521041 0.226739 +vt 0.520501 0.215238 +vt 0.523449 0.222211 +vt 0.522103 0.222027 +vt 0.520353 0.233235 +vt 0.518162 0.230328 +vt 0.516743 0.216352 +vt 0.516186 0.216713 +vt 0.516463 0.215232 +vt 0.521510 0.223615 +vt 0.521231 0.225309 +vt 0.522452 0.228442 +vt 0.523156 0.244464 +vt 0.521036 0.236150 +vt 0.517110 0.228025 +vt 0.518366 0.231361 +vt 0.517876 0.230713 +vt 0.523744 0.224357 +vt 0.633495 0.685971 +vt 0.633136 0.686933 +vt 0.633219 0.685501 +vt 0.633372 0.688224 +vt 0.633564 0.684028 +vt 0.633087 0.688341 +vt 0.634117 0.686684 +vt 0.633914 0.685948 +vt 0.633323 0.682128 +vt 0.633262 0.689535 +vt 0.633732 0.689356 +vt 0.634104 0.684259 +vt 0.633602 0.682279 +vt 0.634644 0.687783 +vt 0.634718 0.685503 +vt 0.633924 0.682886 +vt 0.633486 0.680147 +vt 0.633415 0.690203 +vt 0.634898 0.684452 +vt 0.634369 0.683048 +vt 0.633070 0.680651 +vt 0.634202 0.679034 +vt 0.634432 0.681319 +vt 0.635832 0.684989 +vt 0.633226 0.679137 +vt 0.633561 0.678019 +vt 0.635255 0.682985 +vt 0.633181 0.677820 +vt 0.635091 0.679608 +vt 0.634228 0.676863 +vt 0.635473 0.681095 +vt 0.634946 0.676798 +vt 0.633499 0.677089 +vt 0.634511 0.677276 +vt 0.636276 0.681121 +vt 0.636060 0.679623 +vt 0.635712 0.678268 +vt 0.634239 0.674092 +vt 0.633489 0.674731 +vt 0.635803 0.676038 +vt 0.634957 0.674469 +vt 0.637338 0.680342 +vt 0.637234 0.676408 +vt 0.635541 0.675119 +vt 0.634074 0.672049 +vt 0.634801 0.672495 +vt 0.635848 0.673008 +vt 0.634340 0.672886 +vt 0.633062 0.670799 +vt 0.633928 0.669610 +vt 0.635841 0.670374 +vt 0.634968 0.669507 +vt 0.633545 0.666927 +vt 0.634723 0.665776 +vt 0.635543 0.669830 +vt 0.635373 0.665627 +vt 0.634156 0.662851 +vt 0.636058 0.668531 +vt 0.635395 0.664174 +vt 0.634996 0.662469 +vt 0.636071 0.665622 +vt 0.634695 0.659385 +vt 0.635490 0.660297 +vt 0.636074 0.662219 +vt 0.636630 0.665158 +vt 0.635725 0.657972 +vt 0.636566 0.658000 +vt 0.637016 0.659362 +vt 0.635183 0.656271 +vt 0.636607 0.659434 +vt 0.636562 0.656009 +vt 0.637865 0.656244 +vt 0.489013 0.659158 +vt 0.488784 0.658407 +vt 0.489105 0.657826 +vt 0.488501 0.659914 +vt 0.488655 0.657186 +vt 0.489101 0.658108 +vt 0.487710 0.659384 +vt 0.488899 0.660983 +vt 0.488031 0.656855 +vt 0.489091 0.657250 +vt 0.488957 0.660226 +vt 0.489188 0.657433 +vt 0.487741 0.661944 +vt 0.487585 0.657478 +vt 0.488525 0.661746 +vt 0.487583 0.655502 +vt 0.488851 0.657043 +vt 0.486843 0.660443 +vt 0.486961 0.658440 +vt 0.488970 0.662054 +vt 0.488769 0.663218 +vt 0.487528 0.656336 +vt 0.488360 0.662954 +vt 0.486777 0.662275 +vt 0.486503 0.655854 +vt 0.488032 0.663711 +vt 0.485853 0.659017 +vt 0.487131 0.663178 +vt 0.488718 0.663975 +vt 0.488436 0.664312 +vt 0.486225 0.653235 +vt 0.487471 0.664186 +vt 0.486502 0.663153 +vt 0.484535 0.655559 +vt 0.488684 0.664701 +vt 0.485100 0.651967 +vt 0.485380 0.650658 +vt 0.487974 0.665226 +vt 0.486887 0.664509 +vt 0.488772 0.665126 +vt 0.488433 0.666010 +vt 0.487463 0.665857 +vt 0.484190 0.652072 +vt 0.484328 0.648317 +vt 0.487818 0.667141 +vt 0.487092 0.667266 +vt 0.483841 0.653478 +vt 0.484118 0.649464 +vt 0.488648 0.666626 +vt 0.484131 0.647002 +vt 0.488256 0.668495 +vt 0.483666 0.652179 +vt 0.483542 0.654253 +vt 0.483708 0.650207 +vt 0.488784 0.665823 +vt 0.484054 0.648210 +vt 0.483769 0.646679 +vt 0.483576 0.653064 +vt 0.483459 0.653511 +vt 0.483803 0.649237 +vt 0.483803 0.648344 +vt 0.483833 0.647568 +vt 0.483908 0.647112 +vt 0.483559 0.646050 +vt 0.483319 0.651374 +vt 0.483351 0.652807 +vt 0.483257 0.653556 +vt 0.483744 0.648802 +vt 0.483656 0.649115 +vt 0.483644 0.646861 +vt 0.483397 0.646341 +vt 0.483422 0.649764 +vt 0.483275 0.653358 +vt 0.483553 0.649222 +vt 0.483460 0.648225 +vt 0.483540 0.648788 +vt 0.483424 0.646711 +vt 0.483217 0.650279 +vt 0.483158 0.652485 +vt 0.483161 0.653097 +vt 0.483592 0.648838 +vt 0.483524 0.647287 +vt 0.483448 0.646957 +vt 0.483353 0.649193 +vt 0.483145 0.651199 +vt 0.483084 0.652067 +vt 0.483274 0.647513 +vt 0.483233 0.649313 +vt 0.483058 0.651499 +vt 0.483179 0.648841 +vt 0.496213 0.663999 +vt 0.496993 0.664441 +vt 0.496153 0.668147 +vt 0.498112 0.659697 +vt 0.495273 0.666084 +vt 0.495612 0.661212 +vt 0.494923 0.663609 +vt 0.494990 0.668653 +vt 0.496330 0.656508 +vt 0.494426 0.666698 +vt 0.494514 0.661627 +vt 0.494939 0.659467 +vt 0.500183 0.653609 +vt 0.494342 0.664387 +vt 0.494660 0.660619 +vt 0.494896 0.657648 +vt 0.497155 0.650333 +vt 0.493998 0.664591 +vt 0.493917 0.662892 +vt 0.494376 0.661011 +vt 0.494235 0.660492 +vt 0.494872 0.656028 +vt 0.494316 0.657971 +vt 0.495296 0.653761 +vt 0.493937 0.661559 +vt 0.493616 0.661689 +vt 0.493785 0.657930 +vt 0.494860 0.655057 +vt 0.494194 0.656299 +vt 0.494571 0.655068 +vt 0.535934 0.275688 +vt 0.536589 0.275798 +vt 0.535984 0.276832 +vt 0.536166 0.273458 +vt 0.536357 0.277433 +vt 0.535321 0.276639 +vt 0.535316 0.274863 +vt 0.536922 0.274159 +vt 0.535458 0.277592 +vt 0.537047 0.276461 +vt 0.535176 0.273160 +vt 0.537414 0.271841 +vt 0.537194 0.274976 +vt 0.537133 0.277077 +vt 0.534802 0.275658 +vt 0.534323 0.273902 +vt 0.535372 0.271369 +vt 0.536104 0.270071 +vt 0.536855 0.277609 +vt 0.537569 0.275688 +vt 0.534612 0.271853 +vt 0.536592 0.267507 +vt 0.537518 0.276902 +vt 0.533942 0.271600 +vt 0.534710 0.270203 +vt 0.535273 0.269413 +vt 0.535455 0.267394 +vt 0.537577 0.266375 +vt 0.538633 0.276044 +vt 0.534229 0.270676 +vt 0.535965 0.265278 +vt 0.536712 0.265496 +vt 0.539344 0.269047 +vt 0.533846 0.270041 +vt 0.534232 0.269602 +vt 0.534576 0.268380 +vt 0.534960 0.265230 +vt 0.536539 0.264007 +vt 0.533426 0.270546 +vt 0.534513 0.266904 +vt 0.535323 0.263334 +vt 0.533586 0.269015 +vt 0.533988 0.268774 +vt 0.534393 0.267585 +vt 0.534238 0.263597 +vt 0.534169 0.265609 +vt 0.533236 0.268959 +vt 0.534167 0.267724 +vt 0.534530 0.262010 +vt 0.535846 0.262334 +vt 0.533944 0.267027 +vt 0.533015 0.270434 +vt 0.533529 0.267762 +vt 0.533798 0.268035 +vt 0.533960 0.261993 +vt 0.534704 0.261457 +vt 0.533711 0.264869 +vt 0.533648 0.266378 +vt 0.532764 0.267802 +vt 0.533171 0.267208 +vt 0.533983 0.260801 +vt 0.533453 0.262607 +vt 0.533651 0.263659 +vt 0.533426 0.260427 +vt 0.533003 0.265149 +vt 0.533285 0.265815 +vt 0.532814 0.266266 +vt 0.909734 0.687372 +vt 0.909979 0.688783 +vt 0.908678 0.688627 +vt 0.910245 0.687595 +vt 0.909267 0.691214 +vt 0.909228 0.685818 +vt 0.910702 0.688004 +vt 0.910381 0.686856 +vt 0.911094 0.690631 +vt 0.909920 0.694461 +vt 0.911183 0.686270 +vt 0.910947 0.687099 +vt 0.911344 0.687862 +vt 0.911044 0.693444 +vt 0.912663 0.687885 +vt 0.911435 0.695998 +vt 0.912026 0.693209 +vt 0.913069 0.691555 +vt 0.910251 0.698386 +vt 0.912919 0.694897 +vt 0.911175 0.700166 +vt 0.913012 0.693336 +vt 0.912390 0.695882 +vt 0.911794 0.698259 +vt 0.910073 0.700756 +vt 0.914242 0.693935 +vt 0.913243 0.696248 +vt 0.912075 0.696743 +vt 0.911927 0.700564 +vt 0.911046 0.705232 +vt 0.914442 0.696556 +vt 0.912633 0.696496 +vt 0.912011 0.699218 +vt 0.911532 0.702257 +vt 0.912105 0.697569 +vt 0.914024 0.697431 +vt 0.913187 0.697149 +vt 0.912535 0.697379 +vt 0.912111 0.699742 +vt 0.912265 0.698510 +vt 0.912082 0.703410 +vt 0.914502 0.697517 +vt 0.912180 0.699319 +vt 0.912474 0.699912 +vt 0.912555 0.701893 +vt 0.913637 0.698142 +vt 0.914524 0.698243 +vt 0.913087 0.697958 +vt 0.912685 0.698189 +vt 0.914056 0.698060 +vt 0.914274 0.698243 +vt 0.912865 0.700970 +vt 0.912646 0.698867 +vt 0.914073 0.698667 +vt 0.913338 0.698332 +vt 0.914402 0.699071 +vt 0.912978 0.698580 +vt 0.913040 0.701861 +vt 0.913066 0.700018 +vt 0.912895 0.699266 +vt 0.913754 0.699044 +vt 0.913322 0.698950 +vt 0.913202 0.698424 +vt 0.913317 0.701027 +vt 0.914041 0.699656 +vt 0.913569 0.699928 +vt 0.740367 0.504804 +vt 0.741153 0.506299 +vt 0.740401 0.506755 +vt 0.741052 0.504940 +vt 0.741015 0.507517 +vt 0.739497 0.505624 +vt 0.741558 0.505423 +vt 0.740794 0.502867 +vt 0.741698 0.507663 +vt 0.740532 0.508301 +vt 0.739738 0.507652 +vt 0.738852 0.501742 +vt 0.741760 0.506574 +vt 0.741250 0.508484 +vt 0.739027 0.506886 +vt 0.738363 0.505352 +vt 0.742108 0.506211 +vt 0.742073 0.505173 +vt 0.742163 0.507009 +vt 0.739817 0.509155 +vt 0.739055 0.508211 +vt 0.742706 0.504433 +vt 0.738417 0.507337 +vt 0.742823 0.506580 +vt 0.743013 0.501976 +vt 0.737661 0.507089 +vt 0.738148 0.508219 +vt 0.741104 0.500191 +vt 0.742576 0.500409 +vt 0.742812 0.498923 +vt 0.735217 0.496612 +vt 0.884831 0.597801 +vt 0.884112 0.598497 +vt 0.883626 0.598641 +vt 0.884804 0.598995 +vt 0.884203 0.599339 +vt 0.883452 0.597132 +vt 0.885116 0.598606 +vt 0.882449 0.597378 +vt 0.884130 0.595596 +vt 0.885415 0.598134 +vt 0.885288 0.598916 +vt 0.884635 0.599708 +vt 0.883045 0.596232 +vt 0.885605 0.596050 +vt 0.885648 0.596882 +vt 0.885046 0.599413 +vt 0.882393 0.596051 +vt 0.884419 0.594054 +vt 0.883490 0.593814 +vt 0.886218 0.597903 +vt 0.885768 0.598645 +vt 0.885521 0.599097 +vt 0.882829 0.594940 +vt 0.882176 0.597204 +vt 0.885045 0.593297 +vt 0.886220 0.597022 +vt 0.882350 0.594940 +vt 0.881952 0.596463 +vt 0.883720 0.592810 +vt 0.885734 0.593084 +vt 0.884036 0.591901 +vt 0.886779 0.595981 +vt 0.882079 0.595729 +vt 0.881869 0.596931 +vt 0.882883 0.592053 +vt 0.886272 0.594024 +vt 0.885765 0.591828 +vt 0.884682 0.590981 +vt 0.887231 0.594648 +vt 0.882122 0.595085 +vt 0.881766 0.596770 +vt 0.881896 0.597281 +vt 0.881841 0.596167 +vt 0.882904 0.590667 +vt 0.886556 0.592409 +vt 0.883344 0.589488 +vt 0.887372 0.595718 +vt 0.882471 0.591086 +vt 0.887006 0.593565 +vt 0.885674 0.589820 +vt 0.886591 0.590902 +vt 0.883851 0.587972 +vt 0.887852 0.594325 +vt 0.882927 0.589231 +vt 0.882322 0.589754 +vt 0.887159 0.592444 +vt 0.887520 0.593809 +vt 0.884924 0.589185 +vt 0.886572 0.589510 +vt 0.883167 0.587901 +vt 0.887615 0.593053 +vt 0.882811 0.586605 +vt 0.884450 0.587101 +vt 0.887805 0.593599 +vt 0.882578 0.588350 +vt 0.883544 0.585951 +vt 0.888098 0.593413 +vt 0.813290 0.298002 +vt 0.812425 0.297856 +vt 0.813141 0.295841 +vt 0.812788 0.299297 +vt 0.813858 0.296533 +vt 0.813172 0.299600 +vt 0.812410 0.299189 +vt 0.814764 0.298262 +vt 0.813429 0.295381 +vt 0.813554 0.299716 +vt 0.812922 0.300389 +vt 0.812565 0.300481 +vt 0.814549 0.296423 +vt 0.813248 0.292984 +vt 0.813119 0.300756 +vt 0.813517 0.300678 +vt 0.814994 0.297238 +vt 0.813613 0.293272 +vt 0.814780 0.294995 +vt 0.813297 0.300959 +vt 0.812724 0.301234 +vt 0.816432 0.297994 +vt 0.815157 0.296348 +vt 0.813983 0.290310 +vt 0.813077 0.302097 +vt 0.812788 0.302108 +vt 0.818988 0.300225 +vt 0.815766 0.296675 +vt 0.814473 0.292883 +vt 0.815666 0.295279 +vt 0.816332 0.296355 +vt 0.815764 0.290554 +vt 0.815525 0.294020 +vt 0.815561 0.292656 +vt 0.816169 0.294692 +vt 0.816484 0.291505 +vt 0.816458 0.292712 +vt 0.897857 0.596392 +vt 0.897483 0.590799 +vt 0.898071 0.594238 +vt 0.896769 0.598978 +vt 0.897959 0.592666 +vt 0.894981 0.588652 +vt 0.896388 0.589093 +vt 0.893335 0.590157 +vt 0.895101 0.599844 +vt 0.892477 0.594924 +vt 0.909684 0.672372 +vt 0.909244 0.672544 +vt 0.909391 0.672002 +vt 0.909589 0.673484 +vt 0.909149 0.671519 +vt 0.909569 0.671378 +vt 0.909020 0.673512 +vt 0.910565 0.672355 +vt 0.908601 0.672744 +vt 0.909919 0.671938 +vt 0.909295 0.674602 +vt 0.909848 0.674980 +vt 0.908848 0.670702 +vt 0.909231 0.670297 +vt 0.910016 0.671230 +vt 0.908790 0.674745 +vt 0.910688 0.675829 +vt 0.909774 0.669953 +vt 0.909263 0.675998 +vt 0.913547 0.672494 +vt 0.909783 0.677060 +vt 0.910451 0.670029 +vt 0.911880 0.667177 +vt 0.910292 0.668741 +vt 0.874804 0.501219 +vt 0.874804 0.502322 +vt 0.874399 0.501064 +vt 0.875078 0.501391 +vt 0.874618 0.503050 +vt 0.875041 0.500102 +vt 0.875365 0.502266 +vt 0.873811 0.502608 +vt 0.875111 0.503795 +vt 0.875522 0.501199 +vt 0.874314 0.503650 +vt 0.875797 0.501898 +vt 0.875736 0.502872 +vt 0.875818 0.500219 +vt 0.875890 0.501281 +vt 0.876003 0.504561 +vt 0.876357 0.501816 +vt 0.878188 0.501028 +vt 0.876615 0.498245 +vt 0.878481 0.507016 +vt 0.207623 0.647037 +vt 0.207417 0.647998 +vt 0.206944 0.646545 +vt 0.208217 0.647536 +vt 0.206534 0.648470 +vt 0.207898 0.645970 +vt 0.207958 0.648878 +vt 0.207270 0.649263 +vt 0.205901 0.647137 +vt 0.208715 0.648691 +vt 0.206710 0.649828 +vt 0.205506 0.648726 +vt 0.207383 0.650283 +vt 0.208688 0.649448 +vt 0.206067 0.649669 +vt 0.204340 0.647797 +vt 0.206857 0.650637 +vt 0.206387 0.650587 +vt 0.204763 0.648785 +vt 0.205479 0.649871 +vt 0.208067 0.650866 +vt 0.207310 0.651107 +vt 0.205891 0.650594 +vt 0.205033 0.649051 +vt 0.205161 0.649301 +vt 0.206759 0.651449 +vt 0.206226 0.651411 +vt 0.205113 0.649785 +vt 0.205539 0.650723 +vt 0.207612 0.651048 +vt 0.207231 0.651908 +vt 0.205609 0.651327 +vt 0.205184 0.650552 +vt 0.207721 0.651166 +vt 0.207541 0.651279 +vt 0.207438 0.651784 +vt 0.207295 0.652731 +vt 0.206408 0.652280 +vt 0.207843 0.651679 +vt 0.970687 0.601035 +vt 0.968979 0.595929 +vt 0.971181 0.599752 +vt 0.971009 0.597666 +vt 0.972325 0.601571 +vt 0.969476 0.594166 +vt 0.972007 0.600028 +vt 0.970844 0.595235 +vt 0.972302 0.598825 +vt 0.972728 0.600734 +vt 0.855317 0.509696 +vt 0.855464 0.508158 +vt 0.855822 0.509787 +vt 0.855078 0.507870 +vt 0.855644 0.506931 +vt 0.855776 0.511884 +vt 0.855253 0.506844 +vt 0.856011 0.506884 +vt 0.855982 0.514460 +vt 0.854951 0.506843 +vt 0.855294 0.505640 +vt 0.855678 0.504718 +vt 0.855936 0.510845 +vt 0.855011 0.506133 +vt 0.854711 0.507382 +vt 0.856001 0.503184 +vt 0.854732 0.506417 +vt 0.855239 0.504381 +vt 0.854859 0.505361 +vt 0.855676 0.502948 +vt 0.855480 0.503708 +vt 0.855869 0.501778 +vt 0.855228 0.503164 +vt 0.856034 0.501477 +vt 0.855500 0.501821 +vt 0.855877 0.501050 +vt 0.856052 0.501803 +vt 0.855718 0.501150 +vt 0.855843 0.500933 +vt 0.856028 0.501212 +vt 0.855552 0.501112 +vt 0.855027 0.502266 +vt 0.855641 0.500851 +vt 0.855336 0.501266 +vt 0.856010 0.504280 +vt 0.856038 0.505488 +vt 0.856061 0.505915 +vt 0.855998 0.507555 +vt 0.504965 0.662294 +vt 0.505303 0.663424 +vt 0.504750 0.663161 +vt 0.505378 0.662409 +vt 0.505258 0.664708 +vt 0.504676 0.660579 +vt 0.505242 0.661457 +vt 0.505709 0.663076 +vt 0.504937 0.664957 +vt 0.505664 0.664459 +vt 0.505624 0.661868 +vt 0.504577 0.664491 +vt 0.505213 0.666003 +vt 0.505601 0.665770 +vt 0.505527 0.660244 +vt 0.505999 0.664148 +vt 0.506114 0.662153 +vt 0.504646 0.665660 +vt 0.505991 0.665660 +vt 0.504957 0.666847 +vt 0.505530 0.666577 +vt 0.505862 0.667129 +vt 0.506246 0.665318 +vt 0.505419 0.667271 +vt 0.506265 0.666944 +vt 0.506215 0.663940 +vt 0.505182 0.667609 +vt 0.506180 0.668067 +vt 0.506360 0.661258 +vt 0.506376 0.667105 +vt 0.504925 0.667711 +vt 0.505456 0.668232 +vt 0.505717 0.667992 +vt 0.506394 0.667717 +vt 0.505940 0.668098 +vt 0.506454 0.660118 +vt 0.505873 0.668598 +vt 0.506556 0.659419 +vt 0.221011 0.051778 +vt 0.220278 0.050949 +vt 0.220831 0.050030 +vt 0.221627 0.050314 +vt 0.221079 0.048895 +vt 0.221912 0.052656 +vt 0.221689 0.048651 +vt 0.222573 0.050903 +vt 0.221185 0.047965 +vt 0.222106 0.049622 +vt 0.221501 0.046782 +vt 0.222455 0.048842 +vt 0.990971 0.647490 +vt 0.990674 0.647376 +vt 0.990774 0.646996 +vt 0.990632 0.647956 +vt 0.990430 0.647099 +vt 0.991322 0.647236 +vt 0.990411 0.647539 +vt 0.991277 0.648033 +vt 0.990372 0.646791 +vt 0.990820 0.646694 +vt 0.990306 0.647930 +vt 0.990500 0.648848 +vt 0.990206 0.647308 +vt 0.990086 0.647196 +vt 0.992027 0.647617 +vt 0.991857 0.646828 +vt 0.990238 0.648253 +vt 0.990149 0.647670 +vt 0.992110 0.648940 +vt 0.991345 0.646383 +vt 0.990146 0.648006 +vt 0.990086 0.647255 +vt 0.990077 0.647389 +vt 0.992635 0.647018 +vt 0.992802 0.647665 +vt 0.990745 0.646489 +vt 0.992243 0.646357 +vt 0.990009 0.647948 +vt 0.990017 0.647351 +vt 0.990007 0.647567 +vt 0.992437 0.646663 +vt 0.990274 0.646661 +vt 0.990619 0.646333 +vt 0.992041 0.645964 +vt 0.992893 0.646433 +vt 0.991117 0.646111 +vt 0.992749 0.645810 +vt 0.989935 0.647565 +vt 0.254571 0.049394 +vt 0.254897 0.048863 +vt 0.254704 0.049775 +vt 0.254564 0.048311 +vt 0.254586 0.050832 +vt 0.254590 0.050023 +vt 0.254367 0.049203 +vt 0.254868 0.047307 +vt 0.255256 0.051480 +vt 0.254379 0.050105 +vt 0.254371 0.049599 +vt 0.254175 0.049037 +vt 0.255027 0.046793 +vt 0.254675 0.046868 +vt 0.255187 0.047073 +vt 0.254423 0.052643 +vt 0.254200 0.049752 +vt 0.254971 0.046823 +vt 0.254912 0.046682 +vt 0.254212 0.050821 +vt 0.254284 0.051996 +vt 0.253919 0.050270 +vt 0.255096 0.046234 +vt 0.254910 0.046209 +vt 0.254193 0.051511 +vt 0.254121 0.050348 +vt 0.254024 0.052701 +vt 0.254795 0.046091 +vt 0.254023 0.051268 +vt 0.253989 0.050830 +vt 0.254107 0.052066 +vt 0.253922 0.051923 +vt 0.377902 0.388506 +vt 0.377469 0.390493 +vt 0.377166 0.389210 +vt 0.378054 0.390176 +vt 0.377094 0.392088 +vt 0.377586 0.387776 +vt 0.378901 0.390045 +vt 0.377815 0.391714 +vt 0.378355 0.387719 +vt 0.378701 0.391104 +vt 0.378067 0.340820 +vt 0.379028 0.338867 +vt 0.377531 0.337215 +vt 0.377232 0.339929 +vt 0.377098 0.338449 +vt 0.922044 0.290017 +vt 0.922267 0.287682 +vt 0.923019 0.289032 +vt 0.521431 0.289851 +vt 0.521312 0.291455 +vt 0.521226 0.289436 +vt 0.522065 0.288976 +vt 0.587539 0.646870 +vt 0.586975 0.646527 +vt 0.588093 0.645951 +vt 0.587541 0.647645 +vt 0.603601 0.647606 +vt 0.604123 0.646656 +vt 0.605024 0.647061 +vt 0.310711 0.721262 +vt 0.310561 0.722417 +vt 0.310254 0.723457 +vt 0.705429 0.647025 +vt 0.705175 0.647556 +vt 0.705270 0.646192 +vt 0.705877 0.647325 +vt 0.480811 0.207286 +vt 0.481651 0.206703 +vt 0.481098 0.207753 +vt 0.511735 0.210814 +vt 0.511674 0.210659 +vt 0.511803 0.210665 +vt 0.511760 0.209971 +vt 0.511641 0.209445 +vt 0.511607 0.208120 +vt 0.799954 0.650493 +vt 0.799966 0.649295 +vt 0.800537 0.649902 +vt 0.528143 0.218737 +vt 0.528254 0.218157 +vt 0.528294 0.218732 +vt 0.528438 0.219644 +vt 0.813857 0.650196 +vt 0.814356 0.650310 +vt 0.814027 0.650475 +vt 0.929952 0.295886 +vt 0.929935 0.295892 +vt 0.929937 0.294205 +vt 0.082638 0.759261 +vt 0.082668 0.758448 +vt 0.082715 0.757529 +vt 0.082787 0.756306 +vt 0.082638 0.759261 +vt 0.082715 0.757529 +vt 0.082668 0.758448 +vt 0.082787 0.756306 +vt 0.081844 0.776298 +vt 0.081867 0.775411 +vt 0.081898 0.774883 +vt 0.081867 0.775411 +vt 0.081844 0.776298 +vt 0.081898 0.774883 +vt 0.081951 0.773920 +vt 0.082003 0.772829 +vt 0.082003 0.772829 +vt 0.081951 0.773920 +vt 0.625775 0.793246 +vt 0.625666 0.792180 +vt 0.626186 0.797287 +vt 0.626136 0.796796 +vt 0.626581 0.801764 +vt 0.626186 0.797287 +vt 0.627160 0.810615 +vt 0.626703 0.803317 +vt 0.625406 0.789093 +vt 0.625394 0.788877 +vt 0.625406 0.789093 +vt 0.625666 0.792180 +vt 0.625775 0.793246 +vt 0.626039 0.795815 +vt 0.626136 0.796796 +vt 0.626039 0.795815 +vt 0.627294 0.812641 +vt 0.627160 0.810615 +vt 0.626581 0.801764 +vt 0.626663 0.802691 +vt 0.626670 0.802783 +vt 0.626703 0.803317 +vt 0.627396 0.814093 +vt 0.627294 0.812641 +vt 0.625394 0.788877 +vt 0.625378 0.788633 +vt 0.626663 0.802691 +vt 0.626670 0.802783 +vt 0.627595 0.817082 +vt 0.627396 0.814093 +vt 0.625192 0.785907 +vt 0.625378 0.788633 +vt 0.627595 0.817082 +vt 0.627655 0.817930 +vt 0.625192 0.785907 +vt 0.625082 0.784065 +vt 0.628058 0.822884 +vt 0.627655 0.817930 +vt 0.628058 0.822884 +vt 0.628379 0.827142 +vt 0.628441 0.827961 +vt 0.628379 0.827142 +vt 0.628452 0.828154 +vt 0.628441 0.827961 +vt 0.628498 0.828817 +vt 0.628732 0.832362 +vt 0.628498 0.828817 +vt 0.628452 0.828154 +vt 0.628732 0.832362 +vt 0.629121 0.837730 +vt 0.629244 0.839465 +vt 0.629121 0.837730 +vt 0.629291 0.839992 +vt 0.629244 0.839465 +vt 0.629326 0.840318 +vt 0.629291 0.839992 +vt 0.629326 0.840318 +vt 0.629690 0.844480 +vt 0.629744 0.845183 +vt 0.629690 0.844480 +vt 0.629744 0.845183 +vt 0.629824 0.846013 +vt 0.630321 0.851387 +vt 0.630433 0.852631 +vt 0.630116 0.849309 +vt 0.629824 0.846013 +vt 0.630321 0.851387 +vt 0.630263 0.850669 +vt 0.630433 0.852631 +vt 0.630614 0.854795 +vt 0.630263 0.850669 +vt 0.630116 0.849309 +vt 0.630783 0.857610 +vt 0.630738 0.856936 +vt 0.630614 0.854795 +vt 0.630738 0.856936 +vt 0.630828 0.858491 +vt 0.630783 0.857610 +vt 0.630828 0.858491 +vt 0.630969 0.860632 +vt 0.631234 0.865649 +vt 0.631220 0.865396 +vt 0.630969 0.860632 +vt 0.631220 0.865396 +vt 0.631241 0.865814 +vt 0.631234 0.865649 +vt 0.631247 0.865893 +vt 0.631241 0.865814 +vt 0.631276 0.866180 +vt 0.631247 0.865893 +vt 0.631276 0.866180 +vt 0.631549 0.869012 +vt 0.631549 0.869012 +vt 0.631621 0.869718 +vt 0.631621 0.869718 +vt 0.631760 0.871312 +vt 0.631760 0.871312 +vt 0.631773 0.871602 +vt 0.631980 0.875223 +vt 0.631773 0.871602 +vt 0.631980 0.875223 +vt 0.632138 0.878877 +vt 0.632206 0.880093 +vt 0.632138 0.878877 +vt 0.632324 0.881394 +vt 0.632664 0.885323 +vt 0.632324 0.881394 +vt 0.632206 0.880093 +vt 0.632698 0.885974 +vt 0.632979 0.890750 +vt 0.632672 0.885462 +vt 0.632664 0.885323 +vt 0.632979 0.890750 +vt 0.633071 0.892494 +vt 0.632698 0.885974 +vt 0.632672 0.885462 +vt 0.633071 0.892494 +vt 0.633265 0.895114 +vt 0.633273 0.895246 +vt 0.633265 0.895114 +vt 0.633281 0.895342 +vt 0.633273 0.895246 +vt 0.633300 0.895613 +vt 0.634202 0.908148 +vt 0.633286 0.895425 +vt 0.633281 0.895342 +vt 0.634300 0.909448 +vt 0.634202 0.908148 +vt 0.633300 0.895613 +vt 0.633286 0.895425 +vt 0.566422 0.466774 +vt 0.565874 0.465860 +vt 0.566422 0.466774 +vt 0.564530 0.463415 +vt 0.565874 0.465860 +vt 0.564530 0.463415 +vt 0.564060 0.462461 +vt 0.563773 0.461948 +vt 0.564060 0.462461 +vt 0.563452 0.461438 +vt 0.563773 0.461948 +vt 0.563452 0.461438 +vt 0.562028 0.459185 +vt 0.562028 0.459185 +vt 0.561376 0.458088 +vt 0.560011 0.455826 +vt 0.561376 0.458088 +vt 0.560011 0.455826 +vt 0.558695 0.453479 +vt 0.557656 0.451725 +vt 0.558695 0.453479 +vt 0.557656 0.451725 +vt 0.556984 0.450615 +vt 0.554984 0.447256 +vt 0.556984 0.450615 +vt 0.554179 0.445936 +vt 0.554984 0.447256 +vt 0.554179 0.445936 +vt 0.553135 0.444103 +vt 0.552619 0.443286 +vt 0.553135 0.444103 +vt 0.552619 0.443286 +vt 0.552156 0.442577 +vt 0.551486 0.441494 +vt 0.552097 0.442478 +vt 0.552156 0.442577 +vt 0.552097 0.442478 +vt 0.550253 0.439512 +vt 0.551486 0.441494 +vt 0.550253 0.439512 +vt 0.550122 0.439262 +vt 0.548938 0.437067 +vt 0.550122 0.439262 +vt 0.548938 0.437067 +vt 0.548916 0.437022 +vt 0.173838 0.210852 +vt 0.173572 0.211132 +vt 0.173838 0.210852 +vt 0.173572 0.211132 +vt 0.172912 0.211898 +vt 0.172702 0.212140 +vt 0.172912 0.211898 +vt 0.171450 0.213698 +vt 0.171386 0.213785 +vt 0.171386 0.213785 +vt 0.171112 0.214096 +vt 0.172210 0.212752 +vt 0.171450 0.213698 +vt 0.172210 0.212752 +vt 0.172702 0.212140 +vt 0.171112 0.214096 +vt 0.170980 0.214241 +vt 0.169671 0.215670 +vt 0.170980 0.214241 +vt 0.169671 0.215670 +vt 0.169466 0.215878 +vt 0.169466 0.215878 +vt 0.169160 0.216194 +vt 0.167862 0.217537 +vt 0.169160 0.216194 +vt 0.167862 0.217537 +vt 0.166209 0.219233 +vt 0.166174 0.219269 +vt 0.166209 0.219233 +vt 0.166144 0.219301 +vt 0.165284 0.220218 +vt 0.166144 0.219301 +vt 0.166174 0.219269 +vt 0.165284 0.220218 +vt 0.164390 0.221153 +vt 0.164225 0.221329 +vt 0.164390 0.221153 +vt 0.164181 0.221377 +vt 0.164225 0.221329 +vt 0.163785 0.221785 +vt 0.163146 0.222454 +vt 0.163785 0.221785 +vt 0.164181 0.221377 +vt 0.163146 0.222454 +vt 0.163058 0.222552 +vt 0.163058 0.222552 +vt 0.162606 0.223043 +vt 0.161946 0.223777 +vt 0.162606 0.223043 +vt 0.161946 0.223777 +vt 0.161215 0.224585 +vt 0.160950 0.224870 +vt 0.161215 0.224585 +vt 0.160643 0.225191 +vt 0.160950 0.224870 +vt 0.160643 0.225191 +vt 0.160487 0.225363 +vt 0.160487 0.225363 +vt 0.160422 0.225430 +vt 0.159690 0.226278 +vt 0.160422 0.225430 +vt 0.159690 0.226278 +vt 0.159562 0.226415 +vt 0.158804 0.227285 +vt 0.159562 0.226415 +vt 0.157967 0.228252 +vt 0.157516 0.228767 +vt 0.157516 0.228767 +vt 0.155945 0.230472 +vt 0.157967 0.228252 +vt 0.158804 0.227285 +vt 0.155770 0.230671 +vt 0.155945 0.230472 +vt 0.155725 0.230722 +vt 0.155770 0.230671 +vt 0.155649 0.230812 +vt 0.154458 0.232142 +vt 0.155649 0.230812 +vt 0.155725 0.230722 +vt 0.154458 0.232142 +vt 0.153933 0.232754 +vt 0.153074 0.233711 +vt 0.153933 0.232754 +vt 0.153074 0.233711 +vt 0.152884 0.233916 +vt 0.151538 0.235333 +vt 0.152884 0.233916 +vt 0.151538 0.235333 +vt 0.150866 0.236035 +vt 0.076392 0.862264 +vt 0.076399 0.862163 +vt 0.077432 0.844077 +vt 0.077458 0.842778 +vt 0.077364 0.845892 +vt 0.077430 0.844216 +vt 0.077193 0.847707 +vt 0.077269 0.847204 +vt 0.078494 0.824816 +vt 0.078522 0.824581 +vt 0.076399 0.862163 +vt 0.076403 0.862093 +vt 0.076392 0.862264 +vt 0.076284 0.863503 +vt 0.076160 0.864546 +vt 0.076175 0.864417 +vt 0.076547 0.860733 +vt 0.076561 0.860535 +vt 0.077149 0.850317 +vt 0.077134 0.849587 +vt 0.077458 0.842778 +vt 0.077438 0.842179 +vt 0.077432 0.844077 +vt 0.077434 0.844172 +vt 0.077434 0.844172 +vt 0.077430 0.844216 +vt 0.077364 0.845892 +vt 0.077349 0.846305 +vt 0.077349 0.846305 +vt 0.077269 0.847204 +vt 0.077196 0.848098 +vt 0.077193 0.847707 +vt 0.075425 0.877685 +vt 0.075431 0.877623 +vt 0.078693 0.822416 +vt 0.078725 0.822126 +vt 0.078522 0.824581 +vt 0.078532 0.824379 +vt 0.078364 0.826594 +vt 0.078399 0.826082 +vt 0.078494 0.824816 +vt 0.078404 0.825605 +vt 0.078911 0.816760 +vt 0.078918 0.816518 +vt 0.076547 0.860733 +vt 0.076403 0.862093 +vt 0.076284 0.863503 +vt 0.076175 0.864417 +vt 0.076160 0.864546 +vt 0.076150 0.864945 +vt 0.076771 0.858020 +vt 0.076870 0.857294 +vt 0.076620 0.859408 +vt 0.076620 0.859193 +vt 0.076620 0.859408 +vt 0.076561 0.860535 +vt 0.077067 0.855068 +vt 0.077122 0.853996 +vt 0.077164 0.848688 +vt 0.077196 0.848098 +vt 0.077149 0.850317 +vt 0.077094 0.851619 +vt 0.077164 0.848688 +vt 0.077134 0.849587 +vt 0.077091 0.851885 +vt 0.077094 0.851619 +vt 0.077663 0.840288 +vt 0.077699 0.839731 +vt 0.077772 0.837583 +vt 0.077772 0.837066 +vt 0.077593 0.840695 +vt 0.077663 0.840288 +vt 0.077449 0.842011 +vt 0.077438 0.842179 +vt 0.077449 0.842011 +vt 0.077540 0.841254 +vt 0.076160 0.868128 +vt 0.076220 0.866420 +vt 0.075723 0.873606 +vt 0.075753 0.873170 +vt 0.075636 0.875870 +vt 0.075654 0.875081 +vt 0.075413 0.877751 +vt 0.075425 0.877685 +vt 0.075567 0.876596 +vt 0.075431 0.877623 +vt 0.078077 0.831053 +vt 0.078087 0.830780 +vt 0.078165 0.830028 +vt 0.078145 0.829328 +vt 0.078301 0.827367 +vt 0.078313 0.827116 +vt 0.077858 0.833874 +vt 0.077970 0.832759 +vt 0.077713 0.836006 +vt 0.077752 0.835012 +vt 0.078725 0.822126 +vt 0.078752 0.821592 +vt 0.078693 0.822416 +vt 0.078634 0.823350 +vt 0.078634 0.823350 +vt 0.078532 0.824379 +vt 0.078364 0.826594 +vt 0.078313 0.827116 +vt 0.078404 0.825605 +vt 0.078399 0.826082 +vt 0.079238 0.811641 +vt 0.079357 0.810733 +vt 0.079007 0.815007 +vt 0.079034 0.813867 +vt 0.078897 0.817088 +vt 0.078911 0.816760 +vt 0.079007 0.815007 +vt 0.078918 0.816518 +vt 0.076143 0.865535 +vt 0.076150 0.864945 +vt 0.076870 0.857294 +vt 0.076875 0.857165 +vt 0.076771 0.858020 +vt 0.076705 0.858569 +vt 0.076620 0.859193 +vt 0.076672 0.858713 +vt 0.076875 0.857165 +vt 0.076924 0.856740 +vt 0.077118 0.853052 +vt 0.077122 0.853996 +vt 0.077067 0.855068 +vt 0.077051 0.855758 +vt 0.077091 0.851885 +vt 0.077118 0.853052 +vt 0.077763 0.838828 +vt 0.077780 0.838087 +vt 0.077770 0.839176 +vt 0.077699 0.839731 +vt 0.077772 0.837066 +vt 0.077714 0.836032 +vt 0.077772 0.837583 +vt 0.077780 0.838087 +vt 0.077593 0.840695 +vt 0.077540 0.841254 +vt 0.075927 0.869605 +vt 0.076133 0.868407 +vt 0.076160 0.868128 +vt 0.076168 0.868245 +vt 0.076143 0.865535 +vt 0.076220 0.866420 +vt 0.075796 0.871401 +vt 0.075790 0.870932 +vt 0.075697 0.874157 +vt 0.075723 0.873606 +vt 0.075857 0.872510 +vt 0.075753 0.873170 +vt 0.075636 0.875870 +vt 0.075567 0.876596 +vt 0.075686 0.874618 +vt 0.075654 0.875081 +vt 0.075413 0.877751 +vt 0.075288 0.878404 +vt 0.075221 0.879270 +vt 0.075281 0.878709 +vt 0.078165 0.830028 +vt 0.078087 0.830780 +vt 0.078003 0.831807 +vt 0.078077 0.831053 +vt 0.078147 0.829286 +vt 0.078257 0.828434 +vt 0.078147 0.829286 +vt 0.078145 0.829328 +vt 0.078301 0.827367 +vt 0.078340 0.827872 +vt 0.077970 0.832759 +vt 0.077993 0.831944 +vt 0.077858 0.833874 +vt 0.077752 0.835012 +vt 0.077713 0.836006 +vt 0.077714 0.836016 +vt 0.078827 0.820787 +vt 0.078752 0.821592 +vt 0.079075 0.813155 +vt 0.079152 0.812219 +vt 0.079238 0.811641 +vt 0.079152 0.812219 +vt 0.079437 0.809578 +vt 0.079357 0.810733 +vt 0.079437 0.809578 +vt 0.079470 0.808587 +vt 0.079068 0.813439 +vt 0.079034 0.813867 +vt 0.078897 0.817088 +vt 0.078923 0.818091 +vt 0.078896 0.819476 +vt 0.078901 0.818961 +vt 0.076705 0.858569 +vt 0.076672 0.858713 +vt 0.077051 0.855758 +vt 0.076924 0.856740 +vt 0.077763 0.838828 +vt 0.077770 0.839176 +vt 0.077714 0.836016 +vt 0.077714 0.836032 +vt 0.074945 0.881835 +vt 0.074996 0.881242 +vt 0.075927 0.869605 +vt 0.075842 0.869967 +vt 0.076163 0.868337 +vt 0.076133 0.868407 +vt 0.075819 0.870141 +vt 0.075842 0.869967 +vt 0.076168 0.868245 +vt 0.076163 0.868337 +vt 0.075811 0.870251 +vt 0.075819 0.870141 +vt 0.075796 0.871401 +vt 0.075857 0.872510 +vt 0.075811 0.870251 +vt 0.075790 0.870932 +vt 0.075697 0.874157 +vt 0.075686 0.874618 +vt 0.075288 0.878404 +vt 0.075281 0.878709 +vt 0.075221 0.879270 +vt 0.075123 0.879792 +vt 0.078003 0.831807 +vt 0.077995 0.831911 +vt 0.078340 0.827872 +vt 0.078257 0.828434 +vt 0.077995 0.831911 +vt 0.077993 0.831944 +vt 0.078891 0.820316 +vt 0.078827 0.820787 +vt 0.079075 0.813155 +vt 0.079068 0.813439 +vt 0.079550 0.807467 +vt 0.079470 0.808587 +vt 0.078923 0.818091 +vt 0.078901 0.818961 +vt 0.078896 0.819476 +vt 0.078891 0.820316 +vt 0.074940 0.882540 +vt 0.074945 0.881835 +vt 0.075050 0.880833 +vt 0.074996 0.881242 +vt 0.075060 0.880500 +vt 0.075123 0.879792 +vt 0.079506 0.805638 +vt 0.079511 0.804537 +vt 0.079506 0.805638 +vt 0.079550 0.807467 +vt 0.074560 0.889053 +vt 0.074620 0.888320 +vt 0.074703 0.887548 +vt 0.074786 0.886368 +vt 0.074871 0.884864 +vt 0.074889 0.884088 +vt 0.074816 0.885909 +vt 0.074871 0.884864 +vt 0.074907 0.883903 +vt 0.074945 0.882846 +vt 0.074940 0.882540 +vt 0.074947 0.882683 +vt 0.075060 0.880500 +vt 0.075050 0.880833 +vt 0.079511 0.804537 +vt 0.079522 0.804266 +vt 0.079522 0.804266 +vt 0.079545 0.803955 +vt 0.079668 0.801339 +vt 0.079675 0.801161 +vt 0.081277 0.782314 +vt 0.081403 0.781065 +vt 0.074560 0.889053 +vt 0.074493 0.890017 +vt 0.074703 0.887548 +vt 0.074620 0.888320 +vt 0.074810 0.886209 +vt 0.074786 0.886368 +vt 0.074907 0.883903 +vt 0.074889 0.884088 +vt 0.074816 0.885909 +vt 0.074811 0.886105 +vt 0.074947 0.882683 +vt 0.074945 0.882846 +vt 0.079675 0.801161 +vt 0.079679 0.801045 +vt 0.079695 0.802748 +vt 0.079545 0.803955 +vt 0.079668 0.801339 +vt 0.079695 0.802748 +vt 0.081132 0.782706 +vt 0.081277 0.782314 +vt 0.081482 0.780561 +vt 0.081403 0.781065 +vt 0.081621 0.779664 +vt 0.081482 0.780561 +vt 0.074452 0.890514 +vt 0.074493 0.890017 +vt 0.074811 0.886105 +vt 0.074810 0.886209 +vt 0.079679 0.801045 +vt 0.079742 0.800014 +vt 0.080871 0.786136 +vt 0.080859 0.785128 +vt 0.080906 0.784190 +vt 0.080931 0.783852 +vt 0.080931 0.783852 +vt 0.080930 0.783811 +vt 0.081669 0.778132 +vt 0.081700 0.777649 +vt 0.081132 0.782706 +vt 0.080930 0.783811 +vt 0.081669 0.778132 +vt 0.081621 0.779664 +vt 0.074452 0.890514 +vt 0.074453 0.890810 +vt 0.079806 0.799242 +vt 0.079742 0.800014 +vt 0.082083 0.766346 +vt 0.082219 0.764320 +vt 0.082234 0.764109 +vt 0.082219 0.764320 +vt 0.082309 0.763142 +vt 0.082370 0.762278 +vt 0.082410 0.761707 +vt 0.082370 0.762278 +vt 0.082547 0.755154 +vt 0.082473 0.754068 +vt 0.082433 0.752970 +vt 0.082452 0.752294 +vt 0.082462 0.751374 +vt 0.082480 0.750401 +vt 0.082545 0.749242 +vt 0.082569 0.748866 +vt 0.080736 0.787815 +vt 0.080871 0.786136 +vt 0.080872 0.784930 +vt 0.080859 0.785128 +vt 0.080906 0.784190 +vt 0.080872 0.784930 +vt 0.081700 0.777649 +vt 0.081701 0.777289 +vt 0.074404 0.891584 +vt 0.074453 0.890810 +vt 0.080131 0.797276 +vt 0.080134 0.797215 +vt 0.080011 0.797934 +vt 0.080131 0.797276 +vt 0.079855 0.798986 +vt 0.079806 0.799242 +vt 0.081935 0.768651 +vt 0.081947 0.768422 +vt 0.081947 0.768422 +vt 0.081948 0.768343 +vt 0.082309 0.763142 +vt 0.082234 0.764109 +vt 0.082068 0.766560 +vt 0.081948 0.768343 +vt 0.082083 0.766346 +vt 0.082068 0.766560 +vt 0.082410 0.761707 +vt 0.082615 0.760044 +vt 0.082547 0.755154 +vt 0.082679 0.755723 +vt 0.082433 0.752970 +vt 0.082473 0.754068 +vt 0.082793 0.756249 +vt 0.082679 0.755723 +vt 0.082462 0.751374 +vt 0.082452 0.752294 +vt 0.082513 0.750082 +vt 0.082480 0.750401 +vt 0.082545 0.749242 +vt 0.082513 0.750082 +vt 0.080736 0.787815 +vt 0.080717 0.788135 +vt 0.081728 0.777157 +vt 0.081701 0.777289 +vt 0.081728 0.777157 +vt 0.081835 0.776624 +vt 0.074404 0.891584 +vt 0.074393 0.891735 +vt 0.074378 0.892484 +vt 0.074393 0.891735 +vt 0.080134 0.797215 +vt 0.080147 0.797058 +vt 0.080011 0.797934 +vt 0.079855 0.798986 +vt 0.081931 0.769564 +vt 0.081935 0.768651 +vt 0.080823 0.789204 +vt 0.080717 0.788135 +vt 0.074378 0.892484 +vt 0.074368 0.893116 +vt 0.080315 0.795682 +vt 0.080147 0.797058 +vt 0.080763 0.792367 +vt 0.080830 0.790120 +vt 0.080834 0.789990 +vt 0.080830 0.790120 +vt 0.081931 0.769564 +vt 0.081923 0.772018 +vt 0.080823 0.789204 +vt 0.080871 0.789480 +vt 0.080315 0.795682 +vt 0.080582 0.793448 +vt 0.080722 0.792612 +vt 0.080582 0.793448 +vt 0.080763 0.792367 +vt 0.080722 0.792612 +vt 0.080859 0.789736 +vt 0.080834 0.789990 +vt 0.082043 0.772203 +vt 0.081923 0.772018 +vt 0.080871 0.789480 +vt 0.080859 0.789736 +vt 0.237568 0.823163 +vt 0.238946 0.823425 +vt 0.237657 0.824095 +vt 0.237568 0.823163 +vt 0.238946 0.823425 +vt 0.238574 0.824382 +vt 0.237784 0.824489 +vt 0.237657 0.824095 +vt 0.238574 0.824382 +vt 0.238114 0.824490 +vt 0.238114 0.824490 +vt 0.237784 0.824489 +vt 0.245958 0.823490 +vt 0.246904 0.825812 +vt 0.246321 0.824969 +vt 0.245958 0.823490 +vt 0.246321 0.824969 +vt 0.247123 0.825933 +vt 0.246904 0.825812 +vt 0.247343 0.826005 +vt 0.247123 0.825933 +vt 0.247343 0.826005 +vt 0.247829 0.825773 +vt 0.247829 0.825773 +vt 0.248687 0.826272 +vt 0.248819 0.826318 +vt 0.248687 0.826272 +vt 0.249048 0.826330 +vt 0.251254 0.826472 +vt 0.249048 0.826330 +vt 0.248819 0.826318 +vt 0.251600 0.826304 +vt 0.251254 0.826472 +vt 0.251600 0.826304 +vt 0.252567 0.826164 +vt 0.254507 0.825656 +vt 0.254912 0.825457 +vt 0.252897 0.826028 +vt 0.252567 0.826164 +vt 0.252897 0.826028 +vt 0.253774 0.825586 +vt 0.254507 0.825656 +vt 0.253774 0.825586 +vt 0.254912 0.825457 +vt 0.255953 0.826429 +vt 0.256256 0.826591 +vt 0.255953 0.826429 +vt 0.256339 0.826701 +vt 0.257049 0.827652 +vt 0.256285 0.826622 +vt 0.256256 0.826591 +vt 0.257613 0.827900 +vt 0.258334 0.828142 +vt 0.257613 0.827900 +vt 0.257049 0.827652 +vt 0.256339 0.826701 +vt 0.256285 0.826622 +vt 0.258789 0.828298 +vt 0.258334 0.828142 +vt 0.259358 0.828749 +vt 0.258789 0.828298 +vt 0.259358 0.828749 +vt 0.259672 0.828750 +vt 0.266103 0.828047 +vt 0.265903 0.828015 +vt 0.264921 0.827422 +vt 0.264776 0.827241 +vt 0.260173 0.828644 +vt 0.259672 0.828750 +vt 0.261928 0.827905 +vt 0.261965 0.827887 +vt 0.261965 0.827887 +vt 0.261985 0.827879 +vt 0.261928 0.827905 +vt 0.260435 0.828404 +vt 0.264921 0.827422 +vt 0.265903 0.828015 +vt 0.266478 0.828369 +vt 0.266103 0.828047 +vt 0.264776 0.827241 +vt 0.264334 0.827385 +vt 0.269369 0.829162 +vt 0.268508 0.829051 +vt 0.268095 0.828776 +vt 0.267160 0.828701 +vt 0.260435 0.828404 +vt 0.260173 0.828644 +vt 0.263403 0.827344 +vt 0.264334 0.827385 +vt 0.263403 0.827344 +vt 0.261985 0.827879 +vt 0.269829 0.829275 +vt 0.269369 0.829162 +vt 0.266478 0.828369 +vt 0.267160 0.828701 +vt 0.268095 0.828776 +vt 0.268508 0.829051 +vt 0.269829 0.829275 +vt 0.270309 0.829369 +vt 0.271028 0.829271 +vt 0.270309 0.829369 +vt 0.272177 0.828855 +vt 0.271792 0.829026 +vt 0.272383 0.828876 +vt 0.272177 0.828855 +vt 0.271028 0.829271 +vt 0.271117 0.829226 +vt 0.271117 0.829226 +vt 0.271792 0.829026 +vt 0.272383 0.828876 +vt 0.273240 0.828617 +vt 0.273240 0.828617 +vt 0.273844 0.828770 +vt 0.274395 0.828964 +vt 0.273844 0.828770 +vt 0.275422 0.829383 +vt 0.274877 0.829201 +vt 0.274395 0.828964 +vt 0.274877 0.829201 +vt 0.275422 0.829383 +vt 0.275858 0.829513 +vt 0.276782 0.830253 +vt 0.276338 0.829910 +vt 0.275858 0.829513 +vt 0.276338 0.829910 +vt 0.278025 0.830927 +vt 0.277929 0.830905 +vt 0.279700 0.831131 +vt 0.279591 0.831139 +vt 0.279963 0.831048 +vt 0.279700 0.831131 +vt 0.277929 0.830905 +vt 0.277833 0.830879 +vt 0.277127 0.830403 +vt 0.276782 0.830253 +vt 0.278025 0.830927 +vt 0.278592 0.831001 +vt 0.278592 0.831001 +vt 0.279591 0.831139 +vt 0.279963 0.831048 +vt 0.280640 0.830803 +vt 0.277127 0.830403 +vt 0.277833 0.830879 +vt 0.280640 0.830803 +vt 0.280744 0.830640 +vt 0.282025 0.830617 +vt 0.280998 0.830626 +vt 0.282757 0.830609 +vt 0.282101 0.830650 +vt 0.283447 0.830548 +vt 0.283136 0.830598 +vt 0.284127 0.830033 +vt 0.283826 0.830251 +vt 0.280744 0.830640 +vt 0.280998 0.830626 +vt 0.282025 0.830617 +vt 0.282101 0.830650 +vt 0.282757 0.830609 +vt 0.283136 0.830598 +vt 0.284862 0.829998 +vt 0.284127 0.830033 +vt 0.283447 0.830548 +vt 0.283826 0.830251 +vt 0.286537 0.829923 +vt 0.285964 0.829860 +vt 0.284862 0.829998 +vt 0.285388 0.829783 +vt 0.286973 0.830193 +vt 0.286537 0.829923 +vt 0.285388 0.829783 +vt 0.285964 0.829860 +vt 0.286973 0.830193 +vt 0.287206 0.830295 +vt 0.287850 0.830530 +vt 0.287842 0.830531 +vt 0.287510 0.830396 +vt 0.287206 0.830295 +vt 0.288655 0.830264 +vt 0.288342 0.830183 +vt 0.287510 0.830396 +vt 0.287842 0.830531 +vt 0.287850 0.830530 +vt 0.288342 0.830183 +vt 0.288655 0.830264 +vt 0.289498 0.830541 +vt 0.289717 0.830794 +vt 0.289498 0.830541 +vt 0.292109 0.830423 +vt 0.291885 0.830478 +vt 0.291085 0.830632 +vt 0.290780 0.830775 +vt 0.292658 0.830455 +vt 0.292109 0.830423 +vt 0.290479 0.830827 +vt 0.289956 0.830904 +vt 0.289717 0.830794 +vt 0.289956 0.830904 +vt 0.291085 0.830632 +vt 0.291885 0.830478 +vt 0.290479 0.830827 +vt 0.290780 0.830775 +vt 0.296898 0.831407 +vt 0.296527 0.831315 +vt 0.295615 0.830940 +vt 0.294749 0.830739 +vt 0.292658 0.830455 +vt 0.293176 0.830395 +vt 0.294293 0.830492 +vt 0.293443 0.830419 +vt 0.297133 0.831490 +vt 0.296898 0.831407 +vt 0.299277 0.831026 +vt 0.299273 0.831027 +vt 0.295990 0.830986 +vt 0.296527 0.831315 +vt 0.294521 0.830631 +vt 0.294749 0.830739 +vt 0.295615 0.830940 +vt 0.295990 0.830986 +vt 0.293176 0.830395 +vt 0.293443 0.830419 +vt 0.294293 0.830492 +vt 0.294521 0.830631 +vt 0.299278 0.831026 +vt 0.299277 0.831026 +vt 0.297133 0.831490 +vt 0.297573 0.831617 +vt 0.297934 0.831561 +vt 0.297573 0.831617 +vt 0.298230 0.831464 +vt 0.299273 0.831027 +vt 0.299290 0.831024 +vt 0.299278 0.831026 +vt 0.297934 0.831561 +vt 0.298230 0.831464 +vt 0.299290 0.831024 +vt 0.300606 0.830759 +vt 0.301642 0.831033 +vt 0.300606 0.830759 +vt 0.301642 0.831033 +vt 0.301656 0.831033 +vt 0.302659 0.831477 +vt 0.301668 0.831043 +vt 0.301656 0.831033 +vt 0.301668 0.831043 +vt 0.302659 0.831477 +vt 0.302939 0.831661 +vt 0.303293 0.831743 +vt 0.302939 0.831661 +vt 0.304949 0.831212 +vt 0.304607 0.831215 +vt 0.303293 0.831743 +vt 0.303766 0.831661 +vt 0.303825 0.831637 +vt 0.303766 0.831661 +vt 0.303825 0.831637 +vt 0.304607 0.831215 +vt 0.304949 0.831212 +vt 0.306016 0.831019 +vt 0.730668 0.831757 +vt 0.730563 0.830009 +vt 0.730610 0.828185 +vt 0.730563 0.830009 +vt 0.730660 0.833573 +vt 0.730668 0.831757 +vt 0.730637 0.827718 +vt 0.730676 0.827474 +vt 0.730637 0.827718 +vt 0.730610 0.828185 +vt 0.730660 0.833573 +vt 0.730749 0.834788 +vt 0.730768 0.826795 +vt 0.730790 0.826411 +vt 0.730676 0.827474 +vt 0.730768 0.826795 +vt 0.730936 0.825087 +vt 0.730862 0.825595 +vt 0.731564 0.793633 +vt 0.731551 0.793206 +vt 0.731570 0.796212 +vt 0.731602 0.794684 +vt 0.731521 0.796916 +vt 0.731570 0.796212 +vt 0.731689 0.791609 +vt 0.731642 0.790697 +vt 0.730790 0.826411 +vt 0.730862 0.825595 +vt 0.730971 0.824219 +vt 0.730936 0.825087 +vt 0.731641 0.806661 +vt 0.731650 0.806494 +vt 0.731672 0.792759 +vt 0.731551 0.793206 +vt 0.731564 0.793633 +vt 0.731617 0.793961 +vt 0.731652 0.794246 +vt 0.731602 0.794684 +vt 0.731521 0.796916 +vt 0.731426 0.799112 +vt 0.731425 0.799240 +vt 0.731426 0.799112 +vt 0.731689 0.791609 +vt 0.731672 0.792759 +vt 0.731589 0.789979 +vt 0.731642 0.790697 +vt 0.731589 0.789979 +vt 0.731577 0.789178 +vt 0.731544 0.788234 +vt 0.731545 0.787911 +vt 0.730966 0.822604 +vt 0.730956 0.822423 +vt 0.730977 0.820982 +vt 0.731009 0.820689 +vt 0.731129 0.818231 +vt 0.731185 0.817555 +vt 0.730947 0.823096 +vt 0.730966 0.822604 +vt 0.730947 0.823096 +vt 0.730971 0.824219 +vt 0.731548 0.804836 +vt 0.731483 0.804359 +vt 0.731548 0.804836 +vt 0.731650 0.806494 +vt 0.731647 0.807386 +vt 0.731641 0.806661 +vt 0.731421 0.799333 +vt 0.731425 0.799240 +vt 0.731451 0.801555 +vt 0.731421 0.799333 +vt 0.731617 0.793961 +vt 0.731652 0.794246 +vt 0.731544 0.788234 +vt 0.731577 0.789178 +vt 0.731545 0.787911 +vt 0.731552 0.787417 +vt 0.731571 0.786342 +vt 0.731600 0.785799 +vt 0.730977 0.820982 +vt 0.730956 0.822423 +vt 0.731009 0.820689 +vt 0.731002 0.820424 +vt 0.731072 0.818641 +vt 0.731129 0.818231 +vt 0.731185 0.817555 +vt 0.731362 0.815752 +vt 0.731483 0.804359 +vt 0.731457 0.801867 +vt 0.731647 0.807386 +vt 0.731713 0.809066 +vt 0.731451 0.801555 +vt 0.731456 0.801777 +vt 0.731595 0.786737 +vt 0.731552 0.787417 +vt 0.731581 0.784596 +vt 0.731596 0.783836 +vt 0.731571 0.786342 +vt 0.731595 0.786737 +vt 0.731676 0.785122 +vt 0.731600 0.785799 +vt 0.731072 0.818641 +vt 0.731002 0.820424 +vt 0.731492 0.814998 +vt 0.731362 0.815752 +vt 0.731459 0.801796 +vt 0.731457 0.801867 +vt 0.731713 0.809066 +vt 0.731456 0.801777 +vt 0.731459 0.801796 +vt 0.731648 0.782956 +vt 0.731596 0.783836 +vt 0.731581 0.784596 +vt 0.731676 0.785122 +vt 0.731648 0.782956 +vt 0.731668 0.782495 +vt 0.731492 0.814998 +vt 0.731755 0.780318 +vt 0.731762 0.780166 +vt 0.731789 0.781548 +vt 0.731668 0.782495 +vt 0.731770 0.778792 +vt 0.731762 0.780166 +vt 0.731755 0.780318 +vt 0.731789 0.781548 +vt 0.731770 0.778792 +vt 0.731770 0.778672 +vt 0.731770 0.778672 +vt 0.731775 0.778398 +vt 0.731812 0.777563 +vt 0.731775 0.778398 +vt 0.731812 0.777563 +vt 0.731861 0.776828 +vt 0.731897 0.776448 +vt 0.731861 0.776828 +vt 0.731897 0.776448 +vt 0.731982 0.775649 +vt 0.731982 0.775649 +vt 0.731977 0.775008 +vt 0.731983 0.774563 +vt 0.731977 0.775008 +vt 0.731983 0.774563 +vt 0.732039 0.773961 +vt 0.732231 0.771039 +vt 0.732283 0.770026 +vt 0.732044 0.773000 +vt 0.732063 0.772647 +vt 0.732283 0.770026 +vt 0.732343 0.769037 +vt 0.732387 0.766825 +vt 0.732403 0.766225 +vt 0.732044 0.773000 +vt 0.732039 0.773961 +vt 0.732231 0.771039 +vt 0.732117 0.772160 +vt 0.732117 0.772160 +vt 0.732063 0.772647 +vt 0.732402 0.767944 +vt 0.732343 0.769037 +vt 0.732403 0.766225 +vt 0.732401 0.766003 +vt 0.732387 0.766825 +vt 0.732402 0.767944 +vt 0.732504 0.764042 +vt 0.732580 0.763400 +vt 0.732401 0.766003 +vt 0.732426 0.765402 +vt 0.732654 0.762420 +vt 0.732580 0.763400 +vt 0.732504 0.764042 +vt 0.732464 0.764577 +vt 0.732464 0.764577 +vt 0.732426 0.765402 +vt 0.733681 0.733878 +vt 0.733722 0.733353 +vt 0.734059 0.729025 +vt 0.734076 0.728286 +vt 0.733994 0.729740 +vt 0.734059 0.729025 +vt 0.733851 0.731940 +vt 0.733889 0.731279 +vt 0.733851 0.731940 +vt 0.733722 0.733353 +vt 0.733681 0.733878 +vt 0.733573 0.735013 +vt 0.734140 0.726518 +vt 0.734184 0.725308 +vt 0.734147 0.727188 +vt 0.734076 0.728286 +vt 0.733994 0.729740 +vt 0.733957 0.730481 +vt 0.733957 0.730481 +vt 0.733889 0.731279 +vt 0.734140 0.726518 +vt 0.734147 0.727188 +vt 0.734184 0.725308 +vt 0.734203 0.723764 +vt 0.734212 0.723625 +vt 0.734203 0.723764 +vt 0.350893 0.429483 +vt 0.350539 0.429414 +vt 0.351686 0.429405 +vt 0.351527 0.429449 +vt 0.351967 0.429277 +vt 0.351686 0.429405 +vt 0.350091 0.428959 +vt 0.350539 0.429414 +vt 0.350893 0.429483 +vt 0.351230 0.429573 +vt 0.351230 0.429573 +vt 0.351527 0.429449 +vt 0.351967 0.429277 +vt 0.352379 0.428953 +vt 0.353674 0.428620 +vt 0.352705 0.428854 +vt 0.352379 0.428953 +vt 0.352705 0.428854 +vt 0.353674 0.428620 +vt 0.353914 0.428568 +vt 0.354949 0.428076 +vt 0.354287 0.428395 +vt 0.353914 0.428568 +vt 0.354287 0.428395 +vt 0.355321 0.428080 +vt 0.354949 0.428076 +vt 0.355321 0.428080 +vt 0.356049 0.427990 +vt 0.356746 0.428084 +vt 0.356505 0.428078 +vt 0.360261 0.427987 +vt 0.359743 0.427875 +vt 0.362140 0.427897 +vt 0.361780 0.427942 +vt 0.363782 0.427804 +vt 0.363379 0.427799 +vt 0.361334 0.428029 +vt 0.360867 0.428043 +vt 0.359743 0.427875 +vt 0.358915 0.427998 +vt 0.356049 0.427990 +vt 0.356505 0.428078 +vt 0.356746 0.428084 +vt 0.357322 0.428063 +vt 0.357589 0.428069 +vt 0.357322 0.428063 +vt 0.360261 0.427987 +vt 0.360714 0.427994 +vt 0.361334 0.428029 +vt 0.361780 0.427942 +vt 0.362140 0.427897 +vt 0.362668 0.427596 +vt 0.362668 0.427596 +vt 0.363379 0.427799 +vt 0.363782 0.427804 +vt 0.364573 0.427936 +vt 0.360714 0.427994 +vt 0.360867 0.428043 +vt 0.358480 0.428071 +vt 0.358000 0.428146 +vt 0.358718 0.427981 +vt 0.358915 0.427998 +vt 0.357589 0.428069 +vt 0.358000 0.428146 +vt 0.365272 0.428317 +vt 0.365118 0.428292 +vt 0.364573 0.427936 +vt 0.365118 0.428292 +vt 0.358480 0.428071 +vt 0.358643 0.428018 +vt 0.358643 0.428018 +vt 0.358718 0.427981 +vt 0.094476 0.113700 +vt 0.094271 0.114554 +vt 0.093752 0.117278 +vt 0.093706 0.117705 +vt 0.094138 0.115240 +vt 0.094271 0.114554 +vt 0.094476 0.113700 +vt 0.094647 0.112427 +vt 0.094138 0.115240 +vt 0.093921 0.116104 +vt 0.093706 0.117705 +vt 0.093538 0.118319 +vt 0.093888 0.116296 +vt 0.093752 0.117278 +vt 0.094716 0.111687 +vt 0.094647 0.112427 +vt 0.093909 0.116171 +vt 0.093921 0.116104 +vt 0.093379 0.119139 +vt 0.093538 0.118319 +vt 0.093888 0.116296 +vt 0.093909 0.116171 +vt 0.094716 0.111687 +vt 0.094838 0.110290 +vt 0.093379 0.119139 +vt 0.093145 0.120021 +vt 0.094859 0.109916 +vt 0.094838 0.110290 +vt 0.093070 0.120399 +vt 0.093145 0.120021 +vt 0.094913 0.109155 +vt 0.094859 0.109916 +vt 0.093070 0.120399 +vt 0.092926 0.121339 +vt 0.094913 0.109155 +vt 0.095027 0.108053 +vt 0.092769 0.121962 +vt 0.092926 0.121339 +vt 0.095146 0.107147 +vt 0.095027 0.108053 +vt 0.092769 0.121962 +vt 0.092721 0.122472 +vt 0.095249 0.106425 +vt 0.095355 0.105854 +vt 0.095249 0.106425 +vt 0.095146 0.107147 +vt 0.092668 0.123856 +vt 0.092591 0.124504 +vt 0.092691 0.123128 +vt 0.092721 0.122472 +vt 0.095519 0.105122 +vt 0.095355 0.105854 +vt 0.092591 0.124504 +vt 0.092592 0.124917 +vt 0.092668 0.123856 +vt 0.092691 0.123128 +vt 0.092592 0.124917 +vt 0.092544 0.125684 +vt 0.092391 0.128288 +vt 0.092377 0.128690 +vt 0.092507 0.126224 +vt 0.092508 0.127099 +vt 0.092507 0.126224 +vt 0.092544 0.125684 +vt 0.092377 0.128690 +vt 0.092306 0.129132 +vt 0.092391 0.128288 +vt 0.092508 0.127099 +vt 0.092158 0.130471 +vt 0.092306 0.129132 +vt 0.092158 0.130471 +vt 0.091839 0.131915 +vt 0.091834 0.131940 +vt 0.091839 0.131915 +vt 0.091831 0.131963 +vt 0.091665 0.133276 +vt 0.091831 0.131963 +vt 0.091834 0.131940 +vt 0.097440 0.093351 +vt 0.097431 0.093494 +vt 0.097440 0.093351 +vt 0.097644 0.091668 +vt 0.097726 0.090228 +vt 0.097644 0.091668 +vt 0.097947 0.087894 +vt 0.097819 0.089162 +vt 0.097726 0.090228 +vt 0.097771 0.089822 +vt 0.097964 0.087330 +vt 0.097947 0.087894 +vt 0.097771 0.089822 +vt 0.097819 0.089162 +vt 0.098044 0.085991 +vt 0.097964 0.087330 +vt 0.098044 0.085991 +vt 0.098077 0.085645 +vt 0.098262 0.084129 +vt 0.098109 0.085390 +vt 0.098077 0.085645 +vt 0.098109 0.085390 +vt 0.098532 0.082878 +vt 0.098307 0.083817 +vt 0.098307 0.083817 +vt 0.098262 0.084129 +vt 0.098532 0.082878 +vt 0.098689 0.082125 +vt 0.099068 0.079880 +vt 0.098744 0.081691 +vt 0.098689 0.082125 +vt 0.098744 0.081691 +vt 0.099068 0.079880 +vt 0.099159 0.079234 +vt 0.099380 0.076889 +vt 0.099159 0.079234 +vt 0.099380 0.076889 +vt 0.099401 0.076647 +vt 0.099546 0.074332 +vt 0.099416 0.076131 +vt 0.099401 0.076647 +vt 0.099416 0.076131 +vt 0.099556 0.073741 +vt 0.099542 0.073952 +vt 0.099546 0.074332 +vt 0.099542 0.073952 +vt 0.099556 0.073741 +vt 0.099613 0.073118 +vt 0.099747 0.071448 +vt 0.099696 0.072038 +vt 0.099613 0.073118 +vt 0.099677 0.072521 +vt 0.099677 0.072521 +vt 0.099696 0.072038 +vt 0.099806 0.070883 +vt 0.099747 0.071448 +vt 0.099806 0.070883 +vt 0.099897 0.069973 +vt 0.099957 0.069340 +vt 0.099897 0.069973 +vt 0.099950 0.068668 +vt 0.099957 0.069340 +vt 0.099873 0.067720 +vt 0.099932 0.068254 +vt 0.099950 0.068668 +vt 0.099932 0.068254 +vt 0.099873 0.067720 +vt 0.099789 0.067285 +vt 0.099539 0.066644 +vt 0.099789 0.067285 +vt 0.099539 0.066644 +vt 0.099498 0.066523 +vt 0.099117 0.065973 +vt 0.099398 0.066418 +vt 0.099498 0.066523 +vt 0.099398 0.066418 +vt 0.098946 0.065894 +vt 0.099117 0.065973 +vt 0.098946 0.065894 +vt 0.098638 0.065642 +vt 0.082326 0.205561 +vt 0.082295 0.205808 +vt 0.082295 0.205808 +vt 0.082219 0.206043 +vt 0.082326 0.205561 +vt 0.082611 0.203854 +vt 0.081754 0.208786 +vt 0.082219 0.206043 +vt 0.081754 0.208786 +vt 0.081476 0.210992 +vt 0.081443 0.211671 +vt 0.081476 0.210992 +vt 0.081387 0.212269 +vt 0.081387 0.212269 +vt 0.081443 0.211671 +vt 0.078390 0.231175 +vt 0.078247 0.231114 +vt 0.078390 0.231175 +vt 0.077680 0.234411 +vt 0.077950 0.235361 +vt 0.078247 0.231114 +vt 0.077994 0.231260 +vt 0.077680 0.234411 +vt 0.077704 0.232433 +vt 0.077950 0.235361 +vt 0.077859 0.231622 +vt 0.077994 0.231260 +vt 0.077704 0.232433 +vt 0.077803 0.231901 +vt 0.077803 0.231901 +vt 0.077859 0.231622 +vt 0.816680 0.343344 +vt 0.817099 0.342670 +vt 0.815901 0.344469 +vt 0.815923 0.344431 +vt 0.817408 0.342443 +vt 0.818195 0.342659 +vt 0.817408 0.342443 +vt 0.817099 0.342670 +vt 0.816680 0.343344 +vt 0.816422 0.343628 +vt 0.816422 0.343628 +vt 0.815923 0.344431 +vt 0.815848 0.344511 +vt 0.815901 0.344469 +vt 0.818394 0.342937 +vt 0.818195 0.342659 +vt 0.818394 0.342937 +vt 0.818894 0.343781 +vt 0.815848 0.344511 +vt 0.815311 0.344915 +vt 0.818894 0.343781 +vt 0.818968 0.345216 +vt 0.818987 0.345333 +vt 0.818968 0.345216 +vt 0.190080 0.823679 +vt 0.190068 0.823679 +vt 0.190089 0.823678 +vt 0.190080 0.823679 +vt 0.188596 0.823712 +vt 0.190068 0.823679 +vt 0.188596 0.823712 +vt 0.187925 0.823754 +vt 0.190113 0.823676 +vt 0.190089 0.823678 +vt 0.187159 0.823792 +vt 0.187925 0.823754 +vt 0.187159 0.823792 +vt 0.186667 0.823816 +vt 0.190237 0.823671 +vt 0.190113 0.823676 +vt 0.190237 0.823671 +vt 0.191564 0.823616 +vt 0.191564 0.823616 +vt 0.191816 0.823627 +vt 0.192787 0.823736 +vt 0.191816 0.823627 +vt 0.193502 0.823790 +vt 0.193465 0.823785 +vt 0.192787 0.823736 +vt 0.193465 0.823785 +vt 0.193650 0.823799 +vt 0.193502 0.823790 +vt 0.193650 0.823799 +vt 0.194518 0.823869 +vt 0.195853 0.823805 +vt 0.195816 0.823807 +vt 0.194518 0.823869 +vt 0.194710 0.823868 +vt 0.194900 0.823853 +vt 0.195816 0.823807 +vt 0.195867 0.823804 +vt 0.195853 0.823805 +vt 0.194710 0.823868 +vt 0.194900 0.823853 +vt 0.195867 0.823804 +vt 0.196787 0.823751 +vt 0.196787 0.823751 +vt 0.197267 0.823687 +vt 0.197494 0.823634 +vt 0.197267 0.823687 +vt 0.197494 0.823634 +vt 0.197769 0.823614 +vt 0.198879 0.823582 +vt 0.197769 0.823614 +vt 0.198879 0.823582 +vt 0.199173 0.823585 +vt 0.199173 0.823585 +vt 0.199661 0.823615 +vt 0.200535 0.823679 +vt 0.199661 0.823615 +vt 0.201901 0.823701 +vt 0.200535 0.823679 +vt 0.201901 0.823701 +vt 0.203288 0.823728 +vt 0.204449 0.823766 +vt 0.203288 0.823728 +vt 0.205887 0.823755 +vt 0.204449 0.823766 +vt 0.205887 0.823755 +vt 0.206533 0.823733 +vt 0.206533 0.823733 +vt 0.207374 0.823698 +vt 0.208390 0.823669 +vt 0.207374 0.823698 +vt 0.208542 0.823645 +vt 0.208390 0.823669 +vt 0.208919 0.823635 +vt 0.210061 0.823583 +vt 0.208919 0.823635 +vt 0.208542 0.823645 +vt 0.210606 0.823601 +vt 0.210061 0.823583 +vt 0.210606 0.823601 +vt 0.211337 0.823568 +vt 0.212943 0.823618 +vt 0.212953 0.823619 +vt 0.211988 0.823583 +vt 0.211337 0.823568 +vt 0.212953 0.823619 +vt 0.212985 0.823620 +vt 0.212943 0.823618 +vt 0.211988 0.823583 +vt 0.214534 0.823648 +vt 0.215386 0.823650 +vt 0.213978 0.823702 +vt 0.212985 0.823620 +vt 0.216470 0.823579 +vt 0.217854 0.823545 +vt 0.215865 0.823613 +vt 0.215386 0.823650 +vt 0.214534 0.823648 +vt 0.213978 0.823702 +vt 0.216470 0.823579 +vt 0.215865 0.823613 +vt 0.218339 0.823552 +vt 0.217854 0.823545 +vt 0.218339 0.823552 +vt 0.220933 0.823423 +vt 0.221212 0.823412 +vt 0.220933 0.823423 +vt 0.221909 0.823398 +vt 0.223043 0.823377 +vt 0.221326 0.823409 +vt 0.221212 0.823412 +vt 0.225657 0.823341 +vt 0.225961 0.823337 +vt 0.224327 0.823366 +vt 0.223043 0.823377 +vt 0.221909 0.823398 +vt 0.221326 0.823409 +vt 0.226906 0.823266 +vt 0.225961 0.823337 +vt 0.225657 0.823341 +vt 0.224714 0.823373 +vt 0.224714 0.823373 +vt 0.224327 0.823366 +vt 0.226906 0.823266 +vt 0.227395 0.823276 +vt 0.227945 0.823351 +vt 0.227395 0.823276 +vt 0.227945 0.823351 +vt 0.229827 0.823453 +vt 0.230012 0.823468 +vt 0.229827 0.823453 +vt 0.230093 0.823473 +vt 0.230012 0.823468 +vt 0.230184 0.823474 +vt 0.231877 0.823531 +vt 0.230184 0.823474 +vt 0.230093 0.823473 +vt 0.232484 0.823479 +vt 0.231877 0.823531 +vt 0.232484 0.823479 +vt 0.233361 0.823437 +vt 0.234875 0.823337 +vt 0.235805 0.823262 +vt 0.233729 0.823430 +vt 0.233361 0.823437 +vt 0.237554 0.823126 +vt 0.237579 0.823125 +vt 0.237579 0.823125 +vt 0.237639 0.823124 +vt 0.234875 0.823337 +vt 0.234045 0.823406 +vt 0.235805 0.823262 +vt 0.235984 0.823255 +vt 0.233832 0.823419 +vt 0.233729 0.823430 +vt 0.238607 0.823125 +vt 0.239316 0.823146 +vt 0.237380 0.823140 +vt 0.235984 0.823255 +vt 0.237554 0.823126 +vt 0.237380 0.823140 +vt 0.234045 0.823406 +vt 0.233832 0.823419 +vt 0.240559 0.823203 +vt 0.239316 0.823146 +vt 0.241532 0.823268 +vt 0.243524 0.823290 +vt 0.241155 0.823258 +vt 0.240559 0.823203 +vt 0.243961 0.823269 +vt 0.243524 0.823290 +vt 0.241532 0.823268 +vt 0.241155 0.823258 +vt 0.243961 0.823269 +vt 0.245144 0.823221 +vt 0.245895 0.823187 +vt 0.245144 0.823221 +vt 0.392377 0.759700 +vt 0.392668 0.758890 +vt 0.387280 0.773646 +vt 0.387352 0.773443 +vt 0.389022 0.769006 +vt 0.389176 0.768583 +vt 0.388179 0.771219 +vt 0.388357 0.770747 +vt 0.393357 0.757139 +vt 0.392668 0.758890 +vt 0.392377 0.759700 +vt 0.391996 0.760775 +vt 0.393357 0.757139 +vt 0.393519 0.756722 +vt 0.391561 0.761919 +vt 0.391996 0.760775 +vt 0.388133 0.771369 +vt 0.388179 0.771219 +vt 0.387352 0.773443 +vt 0.387507 0.773028 +vt 0.387280 0.773646 +vt 0.386189 0.776490 +vt 0.386128 0.776657 +vt 0.386189 0.776490 +vt 0.389176 0.768583 +vt 0.389294 0.768245 +vt 0.389022 0.769006 +vt 0.388357 0.770747 +vt 0.393919 0.755817 +vt 0.394381 0.754761 +vt 0.395078 0.753088 +vt 0.395525 0.752050 +vt 0.393919 0.755817 +vt 0.393519 0.756722 +vt 0.391561 0.761919 +vt 0.391273 0.762676 +vt 0.395525 0.752050 +vt 0.396214 0.750523 +vt 0.388133 0.771369 +vt 0.387507 0.773028 +vt 0.386043 0.776893 +vt 0.386128 0.776657 +vt 0.390245 0.765477 +vt 0.389294 0.768245 +vt 0.397974 0.746007 +vt 0.398049 0.745789 +vt 0.397856 0.746337 +vt 0.397974 0.746007 +vt 0.391174 0.762948 +vt 0.391273 0.762676 +vt 0.394686 0.754019 +vt 0.394381 0.754761 +vt 0.395078 0.753088 +vt 0.394686 0.754019 +vt 0.396400 0.750069 +vt 0.396214 0.750523 +vt 0.386043 0.776893 +vt 0.385138 0.779253 +vt 0.390245 0.765477 +vt 0.390379 0.765097 +vt 0.398747 0.744033 +vt 0.398049 0.745789 +vt 0.398747 0.744033 +vt 0.398874 0.743738 +vt 0.397856 0.746337 +vt 0.396910 0.748846 +vt 0.391174 0.762948 +vt 0.390379 0.765097 +vt 0.396400 0.750069 +vt 0.396910 0.748846 +vt 0.384873 0.779955 +vt 0.385138 0.779253 +vt 0.400246 0.740488 +vt 0.398874 0.743738 +vt 0.384873 0.779955 +vt 0.384697 0.780381 +vt 0.400246 0.740488 +vt 0.400415 0.740105 +vt 0.383344 0.783473 +vt 0.384697 0.780381 +vt 0.402700 0.734701 +vt 0.400415 0.740105 +vt 0.402700 0.734701 +vt 0.403174 0.733540 +vt 0.383344 0.783473 +vt 0.383174 0.783853 +vt 0.404400 0.730770 +vt 0.404433 0.730692 +vt 0.404433 0.730692 +vt 0.404449 0.730653 +vt 0.404400 0.730770 +vt 0.403174 0.733540 +vt 0.382466 0.785657 +vt 0.382849 0.784699 +vt 0.383174 0.783853 +vt 0.383138 0.783940 +vt 0.407678 0.721869 +vt 0.407727 0.721742 +vt 0.404449 0.730653 +vt 0.404476 0.730583 +vt 0.383138 0.783940 +vt 0.382849 0.784699 +vt 0.407640 0.721984 +vt 0.407678 0.721869 +vt 0.407727 0.721742 +vt 0.408207 0.720491 +vt 0.405819 0.727087 +vt 0.404476 0.730583 +vt 0.407403 0.722714 +vt 0.407640 0.721984 +vt 0.405819 0.727087 +vt 0.405851 0.727009 +vt 0.408667 0.719289 +vt 0.408207 0.720491 +vt 0.407403 0.722714 +vt 0.406591 0.725080 +vt 0.406591 0.725080 +vt 0.405851 0.727009 +vt 0.408836 0.718891 +vt 0.408667 0.719289 +vt 0.408836 0.718891 +vt 0.410506 0.715004 +vt 0.414887 0.704085 +vt 0.415121 0.703485 +vt 0.415121 0.703485 +vt 0.415230 0.703173 +vt 0.413438 0.707781 +vt 0.413592 0.707373 +vt 0.413344 0.708017 +vt 0.413438 0.707781 +vt 0.416955 0.698274 +vt 0.417671 0.696327 +vt 0.410506 0.715004 +vt 0.411030 0.713723 +vt 0.414887 0.704085 +vt 0.413592 0.707373 +vt 0.415791 0.701570 +vt 0.415230 0.703173 +vt 0.415791 0.701570 +vt 0.415961 0.701051 +vt 0.413344 0.708017 +vt 0.411030 0.713723 +vt 0.419264 0.692373 +vt 0.419933 0.690402 +vt 0.419933 0.690402 +vt 0.420665 0.688855 +vt 0.417671 0.696327 +vt 0.418346 0.694762 +vt 0.416955 0.698274 +vt 0.416777 0.698721 +vt 0.415961 0.701051 +vt 0.416465 0.699628 +vt 0.419264 0.692373 +vt 0.419084 0.692818 +vt 0.418370 0.694703 +vt 0.419084 0.692818 +vt 0.421145 0.687727 +vt 0.420665 0.688855 +vt 0.418370 0.694703 +vt 0.418346 0.694762 +vt 0.416777 0.698721 +vt 0.416465 0.699628 +vt 0.421145 0.687727 +vt 0.421518 0.686966 +vt 0.421767 0.686340 +vt 0.421518 0.686966 +vt 0.421767 0.686340 +vt 0.422365 0.684782 +vt 0.422365 0.684782 +vt 0.422813 0.683707 +vt 0.423125 0.682922 +vt 0.423501 0.681986 +vt 0.423125 0.682922 +vt 0.422813 0.683707 +vt 0.564423 0.473932 +vt 0.563492 0.476457 +vt 0.563198 0.477246 +vt 0.563492 0.476457 +vt 0.565030 0.472255 +vt 0.564423 0.473932 +vt 0.565454 0.471085 +vt 0.565030 0.472255 +vt 0.563198 0.477246 +vt 0.563102 0.477517 +vt 0.565454 0.471085 +vt 0.566546 0.468119 +vt 0.566546 0.468119 +vt 0.566801 0.467426 +vt 0.562851 0.478147 +vt 0.563102 0.477517 +vt 0.726726 0.929677 +vt 0.726752 0.929298 +vt 0.726611 0.932892 +vt 0.726693 0.930586 +vt 0.726752 0.929298 +vt 0.726794 0.928400 +vt 0.726726 0.929677 +vt 0.726693 0.930586 +vt 0.726611 0.932892 +vt 0.726590 0.933906 +vt 0.726461 0.938155 +vt 0.726512 0.936566 +vt 0.726387 0.939601 +vt 0.726461 0.938155 +vt 0.726590 0.933906 +vt 0.726574 0.934703 +vt 0.726574 0.934703 +vt 0.726512 0.936566 +vt 0.726387 0.939601 +vt 0.726284 0.941482 +vt 0.726015 0.946099 +vt 0.726107 0.944297 +vt 0.726284 0.941482 +vt 0.726248 0.941878 +vt 0.726202 0.942475 +vt 0.726107 0.944297 +vt 0.725977 0.946797 +vt 0.726015 0.946099 +vt 0.726248 0.941878 +vt 0.726202 0.942475 +vt 0.725977 0.946797 +vt 0.725951 0.948884 +vt 0.725938 0.949426 +vt 0.725951 0.948884 +vt 0.725920 0.950136 +vt 0.725938 0.949426 +vt 0.731792 0.810878 +vt 0.731775 0.811134 +vt 0.731792 0.810878 +vt 0.731807 0.810641 +vt 0.731674 0.813672 +vt 0.731674 0.813611 +vt 0.731674 0.813672 +vt 0.731674 0.814035 +vt 0.731762 0.811356 +vt 0.731775 0.811134 +vt 0.731675 0.813578 +vt 0.731675 0.813556 +vt 0.731674 0.813611 +vt 0.731675 0.813578 +vt 0.731762 0.811356 +vt 0.731675 0.813556 +vt 0.081180 0.214482 +vt 0.081346 0.213535 +vt 0.080891 0.216297 +vt 0.080850 0.216538 +vt 0.081074 0.215228 +vt 0.080891 0.216297 +vt 0.081074 0.215228 +vt 0.081156 0.214649 +vt 0.081180 0.214482 +vt 0.081156 0.214649 +vt 0.080710 0.217671 +vt 0.080850 0.216538 +vt 0.080710 0.217671 +vt 0.080584 0.218528 +vt 0.080495 0.219157 +vt 0.080584 0.218528 +vt 0.080495 0.219157 +vt 0.080215 0.221265 +vt 0.080072 0.222192 +vt 0.080163 0.221602 +vt 0.080215 0.221265 +vt 0.080163 0.221602 +vt 0.079967 0.222941 +vt 0.080030 0.222489 +vt 0.080072 0.222192 +vt 0.080030 0.222489 +vt 0.079929 0.223132 +vt 0.079458 0.225521 +vt 0.079967 0.222941 +vt 0.079929 0.223132 +vt 0.079414 0.225744 +vt 0.079458 0.225521 +vt 0.079397 0.225846 +vt 0.079128 0.227375 +vt 0.079397 0.225846 +vt 0.079414 0.225744 +vt 0.079128 0.227375 +vt 0.078999 0.228434 +vt 0.078850 0.230194 +vt 0.078782 0.230913 +vt 0.078907 0.229485 +vt 0.078850 0.230194 +vt 0.078951 0.228888 +vt 0.078999 0.228434 +vt 0.078721 0.231714 +vt 0.078782 0.230913 +vt 0.078721 0.231714 +vt 0.078719 0.231736 +vt 0.078907 0.229485 +vt 0.078951 0.228888 +vt 0.078019 0.236510 +vt 0.078090 0.236072 +vt 0.078090 0.236072 +vt 0.078122 0.235876 +vt 0.077974 0.236765 +vt 0.077905 0.237152 +vt 0.078019 0.236510 +vt 0.077974 0.236765 +vt 0.077531 0.239655 +vt 0.077905 0.237152 +vt 0.077531 0.239655 +vt 0.077444 0.240170 +vt 0.077444 0.240170 +vt 0.077266 0.241138 +vt 0.077186 0.241578 +vt 0.077266 0.241138 +vt 0.076399 0.246256 +vt 0.076382 0.246371 +vt 0.076794 0.243742 +vt 0.076746 0.244110 +vt 0.077110 0.242014 +vt 0.077186 0.241578 +vt 0.077110 0.242014 +vt 0.076794 0.243742 +vt 0.076382 0.246371 +vt 0.076362 0.246512 +vt 0.076399 0.246256 +vt 0.076746 0.244110 +vt 0.076137 0.248101 +vt 0.076362 0.246512 +vt 0.076062 0.248745 +vt 0.075641 0.251608 +vt 0.076062 0.248745 +vt 0.076137 0.248101 +vt 0.075587 0.251993 +vt 0.075641 0.251608 +vt 0.075384 0.253168 +vt 0.075587 0.251993 +vt 0.075384 0.253168 +vt 0.075019 0.255307 +vt 0.075019 0.255307 +vt 0.074918 0.256005 +vt 0.074704 0.257509 +vt 0.074918 0.256005 +vt 0.074602 0.258265 +vt 0.074422 0.259962 +vt 0.074602 0.258265 +vt 0.074704 0.257509 +vt 0.074184 0.261641 +vt 0.074422 0.259962 +vt 0.074184 0.261641 +vt 0.073963 0.263230 +vt 0.073583 0.265715 +vt 0.073963 0.263230 +vt 0.174756 0.207828 +vt 0.174855 0.208147 +vt 0.175243 0.209417 +vt 0.174855 0.208147 +vt 0.174727 0.207733 +vt 0.174756 0.207828 +vt 0.174574 0.207218 +vt 0.174727 0.207733 +vt 0.172139 0.198536 +vt 0.172194 0.198734 +vt 0.172194 0.198734 +vt 0.172517 0.199928 +vt 0.174574 0.207218 +vt 0.173704 0.204306 +vt 0.172019 0.198107 +vt 0.172139 0.198536 +vt 0.173509 0.203599 +vt 0.172517 0.199928 +vt 0.173704 0.204306 +vt 0.173568 0.203827 +vt 0.172019 0.198107 +vt 0.170606 0.193051 +vt 0.167865 0.184072 +vt 0.167930 0.184285 +vt 0.173568 0.203827 +vt 0.173509 0.203599 +vt 0.170606 0.193051 +vt 0.170172 0.191619 +vt 0.169784 0.190299 +vt 0.170172 0.191619 +vt 0.169442 0.189166 +vt 0.167930 0.184285 +vt 0.167858 0.184047 +vt 0.167865 0.184072 +vt 0.169784 0.190299 +vt 0.169482 0.189308 +vt 0.169482 0.189308 +vt 0.169442 0.189166 +vt 0.167858 0.184047 +vt 0.167068 0.181042 +vt 0.166269 0.178126 +vt 0.167068 0.181042 +vt 0.166269 0.178126 +vt 0.165989 0.177125 +vt 0.165606 0.175802 +vt 0.165989 0.177125 +vt 0.165606 0.175802 +vt 0.165532 0.175549 +vt 0.164549 0.172506 +vt 0.165368 0.175034 +vt 0.165532 0.175549 +vt 0.165458 0.175314 +vt 0.164212 0.171338 +vt 0.164549 0.172506 +vt 0.165458 0.175314 +vt 0.165368 0.175034 +vt 0.164212 0.171338 +vt 0.164146 0.171097 +vt 0.164146 0.171097 +vt 0.164068 0.170801 +vt 0.163422 0.168162 +vt 0.164068 0.170801 +vt 0.162995 0.166519 +vt 0.163422 0.168162 +vt 0.162995 0.166519 +vt 0.162936 0.166294 +vt 0.162402 0.164582 +vt 0.162856 0.166020 +vt 0.160642 0.158717 +vt 0.160914 0.159668 +vt 0.161509 0.161685 +vt 0.161590 0.161938 +vt 0.162936 0.166294 +vt 0.162856 0.166020 +vt 0.162402 0.164582 +vt 0.161590 0.161938 +vt 0.160642 0.158717 +vt 0.159915 0.155957 +vt 0.161509 0.161685 +vt 0.160914 0.159668 +vt 0.159858 0.155751 +vt 0.159915 0.155957 +vt 0.159846 0.155712 +vt 0.159858 0.155751 +vt 0.159785 0.155505 +vt 0.159846 0.155712 +vt 0.159785 0.155505 +vt 0.159258 0.153777 +vt 0.157956 0.149271 +vt 0.158905 0.152547 +vt 0.159258 0.153777 +vt 0.158905 0.152547 +vt 0.151008 0.125275 +vt 0.151357 0.126518 +vt 0.150863 0.124785 +vt 0.151008 0.125275 +vt 0.150041 0.122090 +vt 0.150863 0.124785 +vt 0.150041 0.122090 +vt 0.149935 0.121741 +vt 0.149270 0.119509 +vt 0.149901 0.121632 +vt 0.149935 0.121741 +vt 0.149901 0.121632 +vt 0.148042 0.115157 +vt 0.148481 0.116724 +vt 0.149270 0.119509 +vt 0.148892 0.118192 +vt 0.148042 0.115157 +vt 0.147284 0.112210 +vt 0.148719 0.117571 +vt 0.148481 0.116724 +vt 0.147191 0.111860 +vt 0.147284 0.112210 +vt 0.147108 0.111553 +vt 0.147191 0.111860 +vt 0.148892 0.118192 +vt 0.148719 0.117571 +vt 0.146707 0.110209 +vt 0.147108 0.111553 +vt 0.145909 0.107426 +vt 0.146032 0.107932 +vt 0.146707 0.110209 +vt 0.146420 0.109249 +vt 0.146129 0.108283 +vt 0.146032 0.107932 +vt 0.145592 0.106371 +vt 0.145909 0.107426 +vt 0.146420 0.109249 +vt 0.146129 0.108283 +vt 0.145592 0.106371 +vt 0.145367 0.105593 +vt 0.144980 0.104245 +vt 0.145367 0.105593 +g mesh +usemtl main +f 1/1 2/2 3/3 +f 4/4 2/2 1/1 +f 3/3 2/2 5/5 +f 6/6 1/1 3/3 +f 2/2 4/4 7/7 +f 8/8 4/4 1/1 +f 2/2 9/9 5/5 +f 6/6 3/3 5/5 +f 6/6 10/10 1/1 +f 4/4 11/11 7/7 +f 12/12 2/2 7/7 +f 8/8 13/13 4/4 +f 10/10 8/8 1/1 +f 12/12 9/9 2/2 +f 5/5 9/9 14/14 +f 5/5 15/15 6/6 +f 10/10 6/6 15/15 +f 7/7 11/11 16/16 +f 13/13 11/11 4/4 +f 7/7 17/17 12/12 +f 18/18 13/13 8/8 +f 8/8 10/10 19/19 +f 12/12 17/17 9/9 +f 20/20 14/14 9/9 +f 14/14 21/21 5/5 +f 21/21 15/15 5/5 +f 22/22 10/10 15/15 +f 11/11 23/23 16/16 +f 16/16 17/17 7/7 +f 13/13 24/24 11/11 +f 18/18 24/24 13/13 +f 8/8 25/25 18/18 +f 19/19 10/10 22/22 +f 8/8 19/19 26/26 +f 9/9 17/17 27/27 +f 14/14 20/20 28/28 +f 29/29 20/20 9/9 +f 14/14 28/28 21/21 +f 21/21 30/30 15/15 +f 22/22 15/15 31/31 +f 32/32 16/16 23/23 +f 11/11 24/24 23/23 +f 33/33 17/17 16/16 +f 34/34 24/24 18/18 +f 8/8 26/26 25/25 +f 18/18 25/25 34/34 +f 22/22 35/35 19/19 +f 19/19 35/35 26/26 +f 17/17 36/36 27/27 +f 9/9 27/27 29/29 +f 20/20 37/37 28/28 +f 29/29 38/38 20/20 +f 21/21 28/28 39/39 +f 21/21 39/39 30/30 +f 31/31 15/15 30/30 +f 22/22 31/31 40/40 +f 41/41 16/16 32/32 +f 32/32 23/23 24/24 +f 17/17 33/33 36/36 +f 16/16 41/41 33/33 +f 32/32 24/24 34/34 +f 25/25 26/26 42/42 +f 43/43 34/34 25/25 +f 35/35 22/22 44/44 +f 35/35 45/45 26/26 +f 27/27 36/36 29/29 +f 37/37 20/20 38/38 +f 37/37 46/46 28/28 +f 47/47 38/38 29/29 +f 39/39 28/28 48/48 +f 30/30 39/39 49/49 +f 31/31 30/30 50/50 +f 40/40 31/31 50/50 +f 44/44 22/22 40/40 +f 51/51 41/41 32/32 +f 36/36 33/33 52/52 +f 51/51 33/33 41/41 +f 43/43 32/32 34/34 +f 45/45 42/42 26/26 +f 53/53 25/25 42/42 +f 25/25 53/53 43/43 +f 35/35 44/44 54/54 +f 45/45 35/35 55/55 +f 36/36 56/56 29/29 +f 38/38 46/46 37/37 +f 46/46 57/57 28/28 +f 58/58 38/38 47/47 +f 47/47 29/29 56/56 +f 48/48 28/28 57/57 +f 48/48 59/59 39/39 +f 49/49 39/39 59/59 +f 50/50 30/30 49/49 +f 60/60 40/40 50/50 +f 40/40 60/60 44/44 +f 32/32 61/61 51/51 +f 51/51 52/52 33/33 +f 36/36 52/52 62/62 +f 32/32 43/43 63/63 +f 45/45 64/64 42/42 +f 65/65 53/53 42/42 +f 53/53 65/65 43/43 +f 54/54 44/44 60/60 +f 54/54 55/55 35/35 +f 45/45 55/55 66/66 +f 67/67 56/56 36/36 +f 68/68 46/46 38/38 +f 69/69 57/57 46/46 +f 70/70 38/38 58/58 +f 47/47 71/71 58/58 +f 72/72 47/47 56/56 +f 48/48 57/57 73/73 +f 48/48 74/74 59/59 +f 59/59 75/75 49/49 +f 49/49 76/76 50/50 +f 50/50 77/77 60/60 +f 78/78 51/51 61/61 +f 63/63 61/61 32/32 +f 51/51 79/79 52/52 +f 36/36 62/62 67/67 +f 52/52 79/79 62/62 +f 63/63 43/43 80/80 +f 64/64 65/65 42/42 +f 66/66 64/64 45/45 +f 43/43 65/65 81/81 +f 54/54 60/60 55/55 +f 82/82 66/66 55/55 +f 56/56 67/67 83/83 +f 46/46 68/68 84/84 +f 38/38 70/70 68/68 +f 85/85 57/57 69/69 +f 46/46 84/84 69/69 +f 58/58 86/86 70/70 +f 71/71 87/87 58/58 +f 47/47 72/72 71/71 +f 83/83 72/72 56/56 +f 73/73 57/57 88/88 +f 73/73 74/74 48/48 +f 59/59 74/74 73/73 +f 75/75 89/89 49/49 +f 75/75 59/59 90/90 +f 49/49 89/89 76/76 +f 50/50 76/76 77/77 +f 82/82 60/60 77/77 +f 61/61 91/91 78/78 +f 79/79 51/51 78/78 +f 63/63 92/92 61/61 +f 93/93 67/67 62/62 +f 79/79 93/93 62/62 +f 80/80 43/43 81/81 +f 63/63 80/80 94/94 +f 95/95 65/65 64/64 +f 64/64 66/66 96/96 +f 65/65 97/97 81/81 +f 55/55 60/60 82/82 +f 66/66 82/82 98/98 +f 99/99 83/83 67/67 +f 68/68 100/100 84/84 +f 70/70 101/101 68/68 +f 85/85 88/88 57/57 +f 69/69 102/102 85/85 +f 69/69 84/84 100/100 +f 103/103 86/86 58/58 +f 70/70 86/86 101/101 +f 87/87 104/104 58/58 +f 87/87 71/71 105/105 +f 105/105 71/71 72/72 +f 72/72 83/83 105/105 +f 73/73 88/88 106/106 +f 90/90 59/59 73/73 +f 107/107 89/89 75/75 +f 106/106 75/75 90/90 +f 89/89 108/108 76/76 +f 109/109 77/77 76/76 +f 98/98 82/82 77/77 +f 78/78 91/91 110/110 +f 91/91 61/61 111/111 +f 79/79 78/78 112/112 +f 92/92 63/63 113/113 +f 111/111 61/61 92/92 +f 67/67 93/93 99/99 +f 93/93 79/79 112/112 +f 80/80 81/81 94/94 +f 114/114 63/63 94/94 +f 64/64 96/96 95/95 +f 95/95 97/97 65/65 +f 95/95 96/96 66/66 +f 97/97 115/115 81/81 +f 98/98 116/116 66/66 +f 83/83 99/99 117/117 +f 100/100 68/68 118/118 +f 101/101 119/119 68/68 +f 88/88 85/85 120/120 +f 102/102 69/69 100/100 +f 85/85 102/102 121/121 +f 122/122 86/86 103/103 +f 104/104 103/103 58/58 +f 86/86 123/123 101/101 +f 104/104 87/87 124/124 +f 105/105 125/125 87/87 +f 105/105 83/83 125/125 +f 126/126 106/106 88/88 +f 106/106 90/90 73/73 +f 127/127 89/89 107/107 +f 75/75 128/128 107/107 +f 106/106 129/129 75/75 +f 127/127 108/108 89/89 +f 109/109 76/76 108/108 +f 77/77 109/109 130/130 +f 130/130 98/98 77/77 +f 110/110 91/91 131/131 +f 78/78 110/110 132/132 +f 111/111 133/133 91/91 +f 78/78 132/132 112/112 +f 114/114 113/113 63/63 +f 92/92 113/113 134/134 +f 111/111 92/92 135/135 +f 93/93 136/136 99/99 +f 93/93 112/112 137/137 +f 138/138 94/94 81/81 +f 139/139 114/114 94/94 +f 116/116 97/97 95/95 +f 66/66 116/116 95/95 +f 97/97 116/116 115/115 +f 138/138 81/81 115/115 +f 140/140 116/116 98/98 +f 99/99 136/136 117/117 +f 125/125 83/83 117/117 +f 118/118 141/141 100/100 +f 118/118 68/68 119/119 +f 123/123 119/119 101/101 +f 85/85 142/142 120/120 +f 120/120 143/143 88/88 +f 100/100 141/141 102/102 +f 102/102 144/144 121/121 +f 121/121 145/145 85/85 +f 86/86 122/122 123/123 +f 122/122 103/103 146/146 +f 104/104 146/146 103/103 +f 147/147 124/124 87/87 +f 104/104 124/124 148/148 +f 147/147 87/87 125/125 +f 149/149 106/106 126/126 +f 88/88 150/150 126/126 +f 151/151 127/127 107/107 +f 152/152 107/107 128/128 +f 129/129 128/128 75/75 +f 106/106 149/149 129/129 +f 153/153 108/108 127/127 +f 154/154 109/109 108/108 +f 154/154 130/130 109/109 +f 98/98 130/130 155/155 +f 156/156 131/131 91/91 +f 131/131 157/157 110/110 +f 158/158 132/132 110/110 +f 133/133 111/111 159/159 +f 133/133 156/156 91/91 +f 132/132 137/137 112/112 +f 160/160 113/113 114/114 +f 134/134 113/113 161/161 +f 92/92 134/134 162/162 +f 92/92 162/162 135/135 +f 135/135 159/159 111/111 +f 137/137 136/136 93/93 +f 139/139 94/94 138/138 +f 160/160 114/114 139/139 +f 163/163 115/115 116/116 +f 115/115 163/163 138/138 +f 116/116 140/140 163/163 +f 140/140 98/98 155/155 +f 136/136 164/164 117/117 +f 165/165 125/125 117/117 +f 141/141 118/118 166/166 +f 118/118 119/119 167/167 +f 168/168 119/119 123/123 +f 145/145 142/142 85/85 +f 169/169 120/120 142/142 +f 170/170 143/143 120/120 +f 143/143 150/150 88/88 +f 171/171 102/102 141/141 +f 172/172 144/144 102/102 +f 173/173 121/121 144/144 +f 145/145 121/121 173/173 +f 122/122 174/174 123/123 +f 122/122 146/146 174/174 +f 148/148 146/146 104/104 +f 147/147 175/175 124/124 +f 175/175 148/148 124/124 +f 125/125 176/176 147/147 +f 149/149 126/126 177/177 +f 178/178 126/126 150/150 +f 179/179 127/127 151/151 +f 151/151 107/107 180/180 +f 181/181 107/107 152/152 +f 128/128 149/149 152/152 +f 149/149 128/128 129/129 +f 108/108 153/153 154/154 +f 153/153 127/127 182/182 +f 130/130 154/154 183/183 +f 155/155 130/130 183/183 +f 156/156 184/184 131/131 +f 158/158 110/110 157/157 +f 157/157 131/131 185/185 +f 158/158 186/186 132/132 +f 187/187 133/133 159/159 +f 156/156 133/133 188/188 +f 186/186 137/137 132/132 +f 161/161 113/113 160/160 +f 189/189 134/134 161/161 +f 162/162 134/134 190/190 +f 135/135 162/162 191/191 +f 192/192 159/159 135/135 +f 186/186 136/136 137/137 +f 139/139 138/138 193/193 +f 139/139 194/194 160/160 +f 138/138 163/163 193/193 +f 163/163 140/140 195/195 +f 196/196 140/140 155/155 +f 136/136 186/186 164/164 +f 197/197 117/117 164/164 +f 125/125 165/165 176/176 +f 198/198 165/165 117/117 +f 166/166 118/118 199/199 +f 200/200 141/141 166/166 +f 167/167 199/199 118/118 +f 119/119 168/168 167/167 +f 201/201 168/168 123/123 +f 142/142 145/145 202/202 +f 169/169 142/142 202/202 +f 203/203 120/120 169/169 +f 204/204 143/143 170/170 +f 120/120 203/203 170/170 +f 143/143 178/178 150/150 +f 102/102 171/171 172/172 +f 141/141 200/200 171/171 +f 205/205 144/144 172/172 +f 144/144 206/206 173/173 +f 202/202 145/145 173/173 +f 123/123 174/174 201/201 +f 146/146 207/207 174/174 +f 208/208 146/146 148/148 +f 175/175 147/147 209/209 +f 208/208 148/148 175/175 +f 210/210 147/147 176/176 +f 149/149 177/177 152/152 +f 126/126 178/178 177/177 +f 179/179 211/211 127/127 +f 151/151 212/212 179/179 +f 151/151 180/180 213/213 +f 107/107 181/181 180/180 +f 177/177 181/181 152/152 +f 153/153 182/182 154/154 +f 182/182 127/127 211/211 +f 183/183 154/154 214/214 +f 214/214 155/155 183/183 +f 184/184 156/156 188/188 +f 184/184 215/215 131/131 +f 216/216 158/158 157/157 +f 216/216 157/157 185/185 +f 185/185 131/131 215/215 +f 158/158 216/216 186/186 +f 133/133 187/187 188/188 +f 159/159 217/217 187/187 +f 160/160 194/194 161/161 +f 189/189 190/190 134/134 +f 218/218 189/189 161/161 +f 162/162 190/190 219/219 +f 191/191 162/162 219/219 +f 135/135 191/191 192/192 +f 217/217 159/159 192/192 +f 194/194 139/139 193/193 +f 220/220 193/193 163/163 +f 195/195 140/140 196/196 +f 163/163 195/195 220/220 +f 196/196 155/155 221/221 +f 164/164 186/186 197/197 +f 198/198 117/117 197/197 +f 222/222 176/176 165/165 +f 165/165 198/198 222/222 +f 223/223 166/166 199/199 +f 224/224 200/200 166/166 +f 199/199 167/167 225/225 +f 167/167 168/168 201/201 +f 226/226 169/169 202/202 +f 203/203 169/169 227/227 +f 170/170 228/228 204/204 +f 204/204 178/178 143/143 +f 228/228 170/170 203/203 +f 200/200 172/172 171/171 +f 206/206 144/144 205/205 +f 229/229 205/205 172/172 +f 173/173 206/206 230/230 +f 231/231 202/202 173/173 +f 174/174 232/232 201/201 +f 207/207 146/146 208/208 +f 174/174 207/207 232/232 +f 209/209 147/147 210/210 +f 175/175 209/209 208/208 +f 176/176 222/222 210/210 +f 178/178 233/233 177/177 +f 234/234 211/211 179/179 +f 151/151 235/235 212/212 +f 179/179 212/212 234/234 +f 213/213 235/235 151/151 +f 213/213 180/180 236/236 +f 181/181 236/236 180/180 +f 237/237 181/181 177/177 +f 182/182 214/214 154/154 +f 211/211 238/238 182/182 +f 221/221 155/155 214/214 +f 184/184 188/188 239/239 +f 240/240 215/215 184/184 +f 241/241 216/216 185/185 +f 242/242 185/185 215/215 +f 186/186 216/216 243/243 +f 239/239 188/188 187/187 +f 244/244 187/187 217/217 +f 161/161 194/194 218/218 +f 189/189 245/245 190/190 +f 189/189 218/218 246/246 +f 190/190 247/247 219/219 +f 219/219 248/248 191/191 +f 248/248 192/192 191/191 +f 192/192 249/249 217/217 +f 220/220 194/194 193/193 +f 196/196 250/250 195/195 +f 220/220 195/195 250/250 +f 251/251 196/196 221/221 +f 186/186 243/243 197/197 +f 198/198 197/197 252/252 +f 252/252 222/222 198/198 +f 223/223 224/224 166/166 +f 223/223 199/199 253/253 +f 229/229 200/200 224/224 +f 253/253 199/199 225/225 +f 201/201 225/225 167/167 +f 231/231 226/226 202/202 +f 169/169 226/226 254/254 +f 203/203 227/227 228/228 +f 255/255 227/227 169/169 +f 228/228 256/256 204/204 +f 257/257 178/178 204/204 +f 229/229 172/172 200/200 +f 258/258 206/206 205/205 +f 258/258 205/205 229/229 +f 230/230 206/206 258/258 +f 173/173 230/230 231/231 +f 225/225 201/201 232/232 +f 259/259 207/207 208/208 +f 232/232 207/207 259/259 +f 260/260 209/209 210/210 +f 261/261 208/208 209/209 +f 262/262 210/210 222/222 +f 178/178 257/257 233/233 +f 233/233 263/263 177/177 +f 211/211 234/234 264/264 +f 212/212 235/235 265/265 +f 234/234 212/212 265/265 +f 213/213 265/265 235/235 +f 265/265 213/213 236/236 +f 181/181 266/266 236/236 +f 237/237 177/177 263/263 +f 181/181 237/237 266/266 +f 182/182 238/238 214/214 +f 211/211 267/267 238/238 +f 214/214 268/268 221/221 +f 184/184 239/239 269/269 +f 270/270 215/215 240/240 +f 269/269 240/240 184/184 +f 216/216 241/241 271/271 +f 272/272 241/241 185/185 +f 215/215 270/270 242/242 +f 242/242 272/272 185/185 +f 216/216 271/271 243/243 +f 239/239 187/187 273/273 +f 273/273 187/187 244/244 +f 244/244 217/217 274/274 +f 218/218 194/194 220/220 +f 245/245 189/189 246/246 +f 245/245 247/247 190/190 +f 246/246 218/218 220/220 +f 219/219 247/247 275/275 +f 219/219 276/276 248/248 +f 248/248 277/277 192/192 +f 274/274 217/217 249/249 +f 277/277 249/249 192/192 +f 278/278 250/250 196/196 +f 279/279 220/220 250/250 +f 280/280 196/196 251/251 +f 251/251 221/221 281/281 +f 282/282 197/197 243/243 +f 283/283 252/252 197/197 +f 222/222 252/252 262/262 +f 223/223 284/284 224/224 +f 223/223 253/253 284/284 +f 285/285 229/229 224/224 +f 225/225 286/286 253/253 +f 287/287 226/226 231/231 +f 226/226 288/288 254/254 +f 255/255 169/169 254/254 +f 256/256 228/228 227/227 +f 289/289 227/227 255/255 +f 257/257 204/204 256/256 +f 258/258 229/229 285/285 +f 290/290 230/230 258/258 +f 287/287 231/231 230/230 +f 232/232 291/291 225/225 +f 208/208 292/292 259/259 +f 293/293 232/232 259/259 +f 209/209 260/260 294/294 +f 262/262 260/260 210/210 +f 261/261 209/209 295/295 +f 292/292 208/208 261/261 +f 257/257 263/263 233/233 +f 264/264 234/234 296/296 +f 264/264 267/267 211/211 +f 297/297 234/234 265/265 +f 236/236 298/298 265/265 +f 299/299 236/236 266/266 +f 237/237 263/263 300/300 +f 266/266 237/237 301/301 +f 302/302 214/214 238/238 +f 267/267 302/302 238/238 +f 214/214 302/302 268/268 +f 268/268 281/281 221/221 +f 239/239 303/303 269/269 +f 270/270 240/240 304/304 +f 305/305 240/240 269/269 +f 241/241 306/306 271/271 +f 272/272 306/306 241/241 +f 270/270 307/307 242/242 +f 242/242 308/308 272/272 +f 271/271 282/282 243/243 +f 309/309 239/239 273/273 +f 273/273 244/244 310/310 +f 311/311 244/244 274/274 +f 246/246 312/312 245/245 +f 313/313 247/247 245/245 +f 279/279 246/246 220/220 +f 276/276 219/219 275/275 +f 314/314 275/275 247/247 +f 315/315 248/248 276/276 +f 248/248 316/316 277/277 +f 274/274 249/249 311/311 +f 277/277 317/317 249/249 +f 318/318 250/250 278/278 +f 196/196 280/280 278/278 +f 250/250 246/246 279/279 +f 251/251 319/319 280/280 +f 319/319 251/251 281/281 +f 283/283 197/197 282/282 +f 283/283 320/320 252/252 +f 262/262 252/252 320/320 +f 321/321 224/224 284/284 +f 284/284 253/253 322/322 +f 323/323 285/285 224/224 +f 225/225 324/324 286/286 +f 253/253 286/286 322/322 +f 287/287 325/325 226/226 +f 254/254 288/288 326/326 +f 288/288 226/226 327/327 +f 328/328 255/255 254/254 +f 256/256 227/227 329/329 +f 289/289 255/255 330/330 +f 227/227 289/289 329/329 +f 256/256 263/263 257/257 +f 258/258 285/285 331/331 +f 258/258 332/332 290/290 +f 230/230 290/290 287/287 +f 291/291 232/232 293/293 +f 291/291 324/324 225/225 +f 259/259 292/292 293/293 +f 294/294 260/260 333/333 +f 295/295 209/209 294/294 +f 260/260 262/262 334/334 +f 295/295 335/335 261/261 +f 292/292 261/261 336/336 +f 234/234 297/297 296/296 +f 337/337 264/264 296/296 +f 267/267 264/264 337/337 +f 297/297 265/265 338/338 +f 339/339 298/298 236/236 +f 265/265 298/298 338/338 +f 339/339 236/236 299/299 +f 340/340 299/299 266/266 +f 300/300 263/263 341/341 +f 300/300 301/301 237/237 +f 301/301 342/342 266/266 +f 302/302 267/267 343/343 +f 344/344 268/268 302/302 +f 268/268 344/344 281/281 +f 309/309 303/303 239/239 +f 303/303 345/345 269/269 +f 305/305 304/304 240/240 +f 304/304 307/307 270/270 +f 345/345 305/305 269/269 +f 271/271 306/306 346/346 +f 306/306 272/272 347/347 +f 308/308 242/242 307/307 +f 272/272 308/308 347/347 +f 348/348 282/282 271/271 +f 310/310 309/309 273/273 +f 310/310 244/244 311/311 +f 312/312 246/246 349/349 +f 312/312 313/313 245/245 +f 313/313 314/314 247/247 +f 275/275 350/350 276/276 +f 275/275 314/314 350/350 +f 248/248 315/315 316/316 +f 276/276 351/351 315/315 +f 277/277 316/316 352/352 +f 311/311 249/249 317/317 +f 311/311 317/317 277/277 +f 250/250 318/318 349/349 +f 353/353 318/318 278/278 +f 280/280 354/354 278/278 +f 246/246 250/250 349/349 +f 355/355 280/280 319/319 +f 319/319 281/281 356/356 +f 282/282 357/357 283/283 +f 283/283 358/358 320/320 +f 334/334 262/262 320/320 +f 359/359 321/321 284/284 +f 224/224 321/321 323/323 +f 322/322 359/359 284/284 +f 360/360 285/285 323/323 +f 361/361 286/286 324/324 +f 361/361 322/322 286/286 +f 362/362 325/325 287/287 +f 325/325 327/327 226/226 +f 327/327 326/326 288/288 +f 254/254 326/326 328/328 +f 328/328 330/330 255/255 +f 256/256 329/329 363/363 +f 330/330 364/364 289/289 +f 289/289 364/364 329/329 +f 256/256 341/341 263/263 +f 365/365 258/258 331/331 +f 360/360 331/331 285/285 +f 258/258 365/365 332/332 +f 362/362 290/290 332/332 +f 290/290 362/362 287/287 +f 293/293 366/366 291/291 +f 324/324 291/291 367/367 +f 336/336 293/293 292/292 +f 368/368 294/294 333/333 +f 334/334 333/333 260/260 +f 369/369 295/295 294/294 +f 369/369 335/335 295/295 +f 261/261 335/335 370/370 +f 370/370 336/336 261/261 +f 296/296 297/297 371/371 +f 371/371 337/337 296/296 +f 337/337 343/343 267/267 +f 298/298 297/297 338/338 +f 298/298 339/339 372/372 +f 372/372 339/339 299/299 +f 340/340 372/372 299/299 +f 266/266 373/373 340/340 +f 374/374 300/300 341/341 +f 374/374 301/301 300/300 +f 375/375 342/342 301/301 +f 373/373 266/266 342/342 +f 302/302 343/343 344/344 +f 344/344 356/356 281/281 +f 376/376 303/303 309/309 +f 345/345 303/303 376/376 +f 377/377 304/304 305/305 +f 378/378 307/307 304/304 +f 305/305 345/345 379/379 +f 346/346 306/306 380/380 +f 271/271 346/346 348/348 +f 306/306 347/347 380/380 +f 308/308 307/307 378/378 +f 308/308 381/381 347/347 +f 348/348 382/382 282/282 +f 309/309 310/310 383/383 +f 384/384 310/310 311/311 +f 385/385 312/312 349/349 +f 313/313 312/312 385/385 +f 314/314 313/313 386/386 +f 276/276 350/350 387/387 +f 350/350 314/314 386/386 +f 315/315 388/388 316/316 +f 351/351 276/276 389/389 +f 351/351 390/390 315/315 +f 316/316 388/388 352/352 +f 391/391 277/277 352/352 +f 391/391 311/311 277/277 +f 318/318 392/392 349/349 +f 318/318 353/353 393/393 +f 278/278 394/394 353/353 +f 354/354 280/280 395/395 +f 354/354 394/394 278/278 +f 355/355 319/319 356/356 +f 396/396 280/280 355/355 +f 282/282 382/382 357/357 +f 397/397 283/283 357/357 +f 397/397 358/358 283/283 +f 398/398 320/320 358/358 +f 334/334 320/320 398/398 +f 359/359 361/361 321/321 +f 323/323 321/321 399/399 +f 359/359 322/322 361/361 +f 360/360 323/323 400/400 +f 361/361 324/324 401/401 +f 362/362 402/402 325/325 +f 325/325 403/403 327/327 +f 404/404 326/326 327/327 +f 326/326 405/405 328/328 +f 406/406 330/330 328/328 +f 363/363 341/341 256/256 +f 363/363 329/329 407/407 +f 364/364 330/330 408/408 +f 409/409 329/329 364/364 +f 400/400 365/365 331/331 +f 400/400 331/331 360/360 +f 365/365 410/410 332/332 +f 362/362 332/332 410/410 +f 293/293 336/336 366/366 +f 367/367 291/291 366/366 +f 324/324 367/367 401/401 +f 369/369 294/294 368/368 +f 411/411 368/368 333/333 +f 412/412 333/333 334/334 +f 369/369 413/413 335/335 +f 335/335 414/414 370/370 +f 336/336 370/370 415/415 +f 298/298 371/371 297/297 +f 337/337 371/371 416/416 +f 337/337 417/417 343/343 +f 372/372 418/418 298/298 +f 418/418 372/372 340/340 +f 340/340 373/373 418/418 +f 341/341 419/419 374/374 +f 420/420 301/301 374/374 +f 342/342 375/375 421/421 +f 420/420 375/375 301/301 +f 421/421 373/373 342/342 +f 356/356 344/344 343/343 +f 376/376 309/309 383/383 +f 376/376 379/379 345/345 +f 422/422 304/304 377/377 +f 379/379 377/377 305/305 +f 378/378 304/304 422/422 +f 346/346 380/380 423/423 +f 423/423 348/348 346/346 +f 347/347 424/424 380/380 +f 308/308 378/378 425/425 +f 425/425 381/381 308/308 +f 424/424 347/347 381/381 +f 382/382 348/348 423/423 +f 426/426 383/383 310/310 +f 310/310 384/384 426/426 +f 384/384 311/311 391/391 +f 427/427 385/385 349/349 +f 313/313 385/385 428/428 +f 386/386 313/313 428/428 +f 276/276 387/387 389/389 +f 429/429 387/387 350/350 +f 430/430 350/350 386/386 +f 388/388 315/315 390/390 +f 389/389 431/431 351/351 +f 390/390 351/351 432/432 +f 388/388 433/433 352/352 +f 391/391 352/352 434/434 +f 435/435 392/392 318/318 +f 392/392 427/427 349/349 +f 436/436 393/393 353/353 +f 437/437 318/318 393/393 +f 353/353 394/394 436/436 +f 280/280 396/396 395/395 +f 354/354 395/395 438/438 +f 439/439 394/394 354/354 +f 355/355 356/356 440/440 +f 440/440 396/396 355/355 +f 397/397 357/357 382/382 +f 358/358 397/397 441/441 +f 442/442 398/398 358/358 +f 398/398 443/443 334/334 +f 361/361 401/401 321/321 +f 401/401 399/399 321/321 +f 323/323 399/399 444/444 +f 400/400 323/323 445/445 +f 402/402 362/362 410/410 +f 402/402 446/446 325/325 +f 446/446 403/403 325/325 +f 404/404 327/327 403/403 +f 326/326 404/404 405/405 +f 405/405 406/406 328/328 +f 447/447 330/330 406/406 +f 407/407 341/341 363/363 +f 407/407 329/329 409/409 +f 408/408 448/448 364/364 +f 330/330 447/447 408/408 +f 409/409 364/364 448/448 +f 449/449 365/365 400/400 +f 410/410 365/365 449/449 +f 366/366 336/336 450/450 +f 367/367 366/366 451/451 +f 451/451 401/401 367/367 +f 368/368 411/411 369/369 +f 411/411 333/333 452/452 +f 453/453 412/412 334/334 +f 454/454 333/333 412/412 +f 414/414 335/335 413/413 +f 455/455 413/413 369/369 +f 414/414 456/456 370/370 +f 370/370 456/456 415/415 +f 415/415 457/457 336/336 +f 371/371 298/298 458/458 +f 371/371 459/459 416/416 +f 417/417 337/337 416/416 +f 343/343 417/417 396/396 +f 298/298 418/418 460/460 +f 461/461 418/418 373/373 +f 462/462 374/374 419/419 +f 341/341 407/407 419/419 +f 463/463 420/420 374/374 +f 421/421 375/375 464/464 +f 375/375 420/420 465/465 +f 421/421 466/466 373/373 +f 343/343 440/440 356/356 +f 383/383 467/467 376/376 +f 376/376 377/377 379/379 +f 422/422 377/377 468/468 +f 422/422 469/469 378/378 +f 423/423 380/380 470/470 +f 424/424 470/470 380/380 +f 469/469 425/425 378/378 +f 471/471 381/381 425/425 +f 424/424 381/381 472/472 +f 473/473 382/382 423/423 +f 474/474 383/383 426/426 +f 384/384 434/434 426/426 +f 434/434 384/384 391/391 +f 427/427 475/475 385/385 +f 385/385 475/475 428/428 +f 386/386 428/428 430/430 +f 476/476 389/389 387/387 +f 350/350 477/477 429/429 +f 429/429 478/478 387/387 +f 430/430 477/477 350/350 +f 433/433 388/388 390/390 +f 431/431 389/389 476/476 +f 351/351 431/431 432/432 +f 479/479 390/390 432/432 +f 434/434 352/352 433/433 +f 318/318 437/437 435/435 +f 392/392 435/435 427/427 +f 436/436 480/480 393/393 +f 437/437 393/393 481/481 +f 482/482 436/436 394/394 +f 483/483 395/395 396/396 +f 395/395 483/483 438/438 +f 439/439 354/354 438/438 +f 484/484 394/394 439/439 +f 440/440 343/343 396/396 +f 382/382 473/473 397/397 +f 473/473 441/441 397/397 +f 358/358 441/441 485/485 +f 486/486 398/398 442/442 +f 485/485 442/442 358/358 +f 398/398 486/486 443/443 +f 487/487 334/334 443/443 +f 451/451 399/399 401/401 +f 444/444 399/399 488/488 +f 444/444 445/445 323/323 +f 489/489 400/400 445/445 +f 449/449 402/402 410/410 +f 402/402 490/490 446/446 +f 403/403 446/446 490/490 +f 404/404 403/403 490/490 +f 405/405 404/404 491/491 +f 492/492 406/406 405/405 +f 447/447 406/406 492/492 +f 493/493 407/407 409/409 +f 448/448 408/408 494/494 +f 408/408 447/447 494/494 +f 448/448 493/493 409/409 +f 400/400 489/489 449/449 +f 457/457 450/450 336/336 +f 451/451 366/366 450/450 +f 411/411 455/455 369/369 +f 333/333 454/454 452/452 +f 411/411 452/452 495/495 +f 496/496 412/412 453/453 +f 334/334 487/487 453/453 +f 412/412 497/497 454/454 +f 498/498 414/414 413/413 +f 413/413 455/455 499/499 +f 414/414 500/500 456/456 +f 415/415 456/456 501/501 +f 502/502 457/457 415/415 +f 298/298 503/503 458/458 +f 458/458 504/504 371/371 +f 416/416 459/459 505/505 +f 459/459 371/371 506/506 +f 416/416 505/505 417/417 +f 396/396 417/417 505/505 +f 460/460 418/418 461/461 +f 298/298 460/460 503/503 +f 461/461 373/373 507/507 +f 462/462 419/419 508/508 +f 374/374 462/462 463/463 +f 419/419 407/407 508/508 +f 420/420 463/463 465/465 +f 375/375 465/465 464/464 +f 509/509 421/421 464/464 +f 373/373 466/466 507/507 +f 421/421 510/510 466/466 +f 377/377 376/376 467/467 +f 467/467 383/383 511/511 +f 377/377 511/511 468/468 +f 468/468 469/469 422/422 +f 423/423 470/470 512/512 +f 470/470 424/424 512/512 +f 513/513 425/425 469/469 +f 472/472 381/381 471/471 +f 425/425 513/513 471/471 +f 472/472 514/514 424/424 +f 423/423 515/515 473/473 +f 383/383 474/474 511/511 +f 516/516 474/474 426/426 +f 434/434 516/516 426/426 +f 475/475 427/427 517/517 +f 430/430 428/428 475/475 +f 476/476 387/387 478/478 +f 518/518 429/429 477/477 +f 519/519 478/478 429/429 +f 520/520 477/477 430/430 +f 390/390 479/479 433/433 +f 476/476 521/521 431/431 +f 431/431 521/521 432/432 +f 479/479 432/432 522/522 +f 434/434 433/433 479/479 +f 437/437 523/523 435/435 +f 427/427 435/435 517/517 +f 393/393 480/480 481/481 +f 480/480 436/436 524/524 +f 523/523 437/437 481/481 +f 524/524 436/436 482/482 +f 482/482 394/394 525/525 +f 396/396 505/505 483/483 +f 438/438 483/483 526/526 +f 438/438 526/526 439/439 +f 527/527 394/394 484/484 +f 439/439 526/526 484/484 +f 515/515 441/441 473/473 +f 528/528 485/485 441/441 +f 486/486 442/442 529/529 +f 442/442 485/485 530/530 +f 531/531 443/443 486/486 +f 487/487 443/443 531/531 +f 451/451 532/532 399/399 +f 399/399 532/532 488/488 +f 488/488 533/533 444/444 +f 533/533 445/445 444/444 +f 533/533 489/489 445/445 +f 449/449 534/534 402/402 +f 490/490 402/402 535/535 +f 490/490 491/491 404/404 +f 536/536 405/405 491/491 +f 405/405 537/537 492/492 +f 492/492 538/538 447/447 +f 493/493 508/508 407/407 +f 448/448 494/494 539/539 +f 447/447 540/540 494/494 +f 493/493 448/448 508/508 +f 449/449 489/489 534/534 +f 450/450 457/457 541/541 +f 542/542 451/451 450/450 +f 455/455 411/411 543/543 +f 454/454 544/544 452/452 +f 495/495 545/545 411/411 +f 546/546 495/495 452/452 +f 496/496 497/497 412/412 +f 496/496 453/453 547/547 +f 453/453 487/487 547/547 +f 454/454 497/497 544/544 +f 499/499 498/498 413/413 +f 548/548 414/414 498/498 +f 543/543 499/499 455/455 +f 548/548 500/500 414/414 +f 456/456 500/500 501/501 +f 415/415 501/501 502/502 +f 549/549 457/457 502/502 +f 503/503 550/550 458/458 +f 550/550 504/504 458/458 +f 504/504 551/551 371/371 +f 552/552 505/505 459/459 +f 459/459 506/506 552/552 +f 551/551 506/506 371/371 +f 461/461 553/553 460/460 +f 460/460 554/554 503/503 +f 553/553 461/461 507/507 +f 508/508 463/463 462/462 +f 463/463 555/555 465/465 +f 509/509 464/464 465/465 +f 509/509 510/510 421/421 +f 556/556 507/507 466/466 +f 510/510 557/557 466/466 +f 467/467 511/511 377/377 +f 511/511 558/558 468/468 +f 468/468 559/559 469/469 +f 512/512 560/560 423/423 +f 424/424 514/514 512/512 +f 513/513 469/469 561/561 +f 472/472 471/471 513/513 +f 514/514 472/472 562/562 +f 560/560 515/515 423/423 +f 558/558 511/511 474/474 +f 563/563 474/474 516/516 +f 434/434 479/479 516/516 +f 564/564 475/475 517/517 +f 430/430 475/475 520/520 +f 478/478 521/521 476/476 +f 518/518 477/477 565/565 +f 429/429 518/518 519/519 +f 519/519 566/566 478/478 +f 565/565 477/477 520/520 +f 432/432 521/521 567/567 +f 522/522 516/516 479/479 +f 522/522 432/432 567/567 +f 564/564 435/435 523/523 +f 435/435 564/564 517/517 +f 481/481 480/480 568/568 +f 568/568 480/480 524/524 +f 523/523 481/481 569/569 +f 524/524 482/482 570/570 +f 571/571 482/482 525/525 +f 394/394 527/527 525/525 +f 505/505 572/572 483/483 +f 483/483 572/572 526/526 +f 527/527 484/484 573/573 +f 484/484 526/526 573/573 +f 528/528 441/441 515/515 +f 574/574 485/485 528/528 +f 486/486 529/529 575/575 +f 529/529 442/442 576/576 +f 530/530 485/485 577/577 +f 576/576 442/442 530/530 +f 531/531 486/486 575/575 +f 487/487 531/531 547/547 +f 578/578 532/532 451/451 +f 579/579 488/488 532/532 +f 533/533 488/488 580/580 +f 533/533 581/581 489/489 +f 534/534 582/582 402/402 +f 535/535 583/583 490/490 +f 535/535 402/402 582/582 +f 584/584 491/491 490/490 +f 536/536 585/585 405/405 +f 586/586 536/536 491/491 +f 492/492 537/537 587/587 +f 405/405 585/585 537/537 +f 492/492 587/587 538/538 +f 538/538 540/540 447/447 +f 448/448 539/539 508/508 +f 494/494 588/588 539/539 +f 589/589 494/494 540/540 +f 489/489 590/590 534/534 +f 541/541 457/457 549/549 +f 542/542 450/450 541/541 +f 451/451 542/542 591/591 +f 543/543 411/411 545/545 +f 452/452 544/544 546/546 +f 545/545 495/495 592/592 +f 495/495 546/546 593/593 +f 496/496 594/594 497/497 +f 595/595 496/496 547/547 +f 497/497 594/594 544/544 +f 499/499 596/596 498/498 +f 498/498 597/597 548/548 +f 499/499 543/543 596/596 +f 500/500 548/548 598/598 +f 500/500 599/599 501/501 +f 501/501 599/599 502/502 +f 600/600 549/549 502/502 +f 601/601 550/550 503/503 +f 504/504 550/550 602/602 +f 504/504 603/603 551/551 +f 552/552 572/572 505/505 +f 506/506 604/604 552/552 +f 604/604 506/506 551/551 +f 460/460 553/553 605/605 +f 606/606 503/503 554/554 +f 554/554 460/460 607/607 +f 605/605 553/553 507/507 +f 463/463 508/508 608/608 +f 465/465 555/555 609/609 +f 463/463 610/610 555/555 +f 611/611 509/509 465/465 +f 509/509 611/611 510/510 +f 605/605 507/507 556/556 +f 557/557 556/556 466/466 +f 510/510 612/612 557/557 +f 468/468 558/558 559/559 +f 559/559 613/613 469/469 +f 560/560 512/512 528/528 +f 512/512 514/514 528/528 +f 513/513 561/561 614/614 +f 561/561 469/469 615/615 +f 472/472 513/513 614/614 +f 616/616 514/514 562/562 +f 562/562 472/472 617/617 +f 560/560 528/528 515/515 +f 563/563 558/558 474/474 +f 516/516 618/618 563/563 +f 475/475 564/564 520/520 +f 619/619 521/521 478/478 +f 565/565 620/620 518/518 +f 621/621 519/519 518/518 +f 566/566 622/622 478/478 +f 519/519 623/623 566/566 +f 565/565 520/520 624/624 +f 567/567 521/521 625/625 +f 516/516 522/522 618/618 +f 567/567 626/626 522/522 +f 564/564 523/523 627/627 +f 569/569 481/481 568/568 +f 524/524 570/570 568/568 +f 523/523 569/569 627/627 +f 482/482 571/571 570/570 +f 628/628 571/571 525/525 +f 629/629 525/525 527/527 +f 573/573 526/526 572/572 +f 573/573 630/630 527/527 +f 574/574 631/631 485/485 +f 574/574 528/528 616/616 +f 575/575 529/529 632/632 +f 529/529 576/576 632/632 +f 577/577 633/633 530/530 +f 577/577 485/485 631/631 +f 530/530 633/633 576/576 +f 531/531 575/575 634/634 +f 531/531 595/595 547/547 +f 532/532 578/578 635/635 +f 591/591 578/578 451/451 +f 580/580 488/488 579/579 +f 579/579 532/532 636/636 +f 581/581 533/533 580/580 +f 581/581 590/590 489/489 +f 590/590 582/582 534/534 +f 535/535 637/637 583/583 +f 584/584 490/490 583/583 +f 582/582 637/637 535/535 +f 584/584 638/638 491/491 +f 585/585 536/536 639/639 +f 638/638 586/586 491/491 +f 586/586 640/640 536/536 +f 587/587 537/537 641/641 +f 585/585 642/642 537/537 +f 587/587 641/641 538/538 +f 643/643 540/540 538/538 +f 539/539 608/608 508/508 +f 588/588 644/644 539/539 +f 589/589 588/588 494/494 +f 540/540 643/643 589/589 +f 645/645 541/541 549/549 +f 645/645 542/542 541/541 +f 591/591 542/542 645/645 +f 545/545 646/646 543/543 +f 594/594 546/546 544/544 +f 592/592 495/495 593/593 +f 545/545 592/592 647/647 +f 593/593 546/546 648/648 +f 595/595 594/594 496/496 +f 596/596 649/649 498/498 +f 548/548 597/597 598/598 +f 498/498 650/650 597/597 +f 596/596 543/543 646/646 +f 500/500 598/598 651/651 +f 500/500 651/651 599/599 +f 599/599 600/600 502/502 +f 600/600 645/645 549/549 +f 652/652 550/550 601/601 +f 503/503 606/606 601/601 +f 602/602 550/550 652/652 +f 602/602 603/603 504/504 +f 653/653 551/551 603/603 +f 654/654 572/572 552/552 +f 655/655 552/552 604/604 +f 604/604 551/551 656/656 +f 460/460 605/605 607/607 +f 554/554 657/657 606/606 +f 554/554 607/607 658/658 +f 608/608 610/610 463/463 +f 659/659 609/609 555/555 +f 609/609 611/611 465/465 +f 610/610 659/659 555/555 +f 510/510 611/611 660/660 +f 556/556 661/661 605/605 +f 557/557 662/662 556/556 +f 510/510 660/660 612/612 +f 663/663 557/557 612/612 +f 559/559 558/558 664/664 +f 613/613 615/615 469/469 +f 559/559 665/665 613/613 +f 514/514 616/616 528/528 +f 561/561 666/666 614/614 +f 615/615 667/667 561/561 +f 614/614 617/617 472/472 +f 562/562 668/668 616/616 +f 617/617 669/669 562/562 +f 563/563 664/664 558/558 +f 563/563 618/618 670/670 +f 520/520 564/564 671/671 +f 619/619 625/625 521/521 +f 478/478 622/622 619/619 +f 620/620 565/565 624/624 +f 621/621 518/518 620/620 +f 519/519 621/621 672/672 +f 622/622 566/566 673/673 +f 672/672 623/623 519/519 +f 674/674 566/566 623/623 +f 624/624 520/520 671/671 +f 675/675 567/567 625/625 +f 618/618 522/522 626/626 +f 626/626 567/567 676/676 +f 677/677 564/564 627/627 +f 569/569 568/568 678/678 +f 678/678 568/568 570/570 +f 627/627 569/569 679/679 +f 570/570 571/571 680/680 +f 628/628 680/680 571/571 +f 628/628 525/525 629/629 +f 629/629 527/527 681/681 +f 572/572 654/654 573/573 +f 527/527 630/630 682/682 +f 573/573 654/654 630/630 +f 574/574 668/668 631/631 +f 668/668 574/574 616/616 +f 683/683 575/575 632/632 +f 632/632 576/576 684/684 +f 577/577 685/685 633/633 +f 686/686 577/577 631/631 +f 576/576 633/633 684/684 +f 531/531 634/634 687/687 +f 634/634 575/575 688/688 +f 687/687 595/595 531/531 +f 591/591 635/635 578/578 +f 635/635 636/636 532/532 +f 689/689 580/580 579/579 +f 579/579 636/636 689/689 +f 581/581 580/580 590/590 +f 590/590 690/690 582/582 +f 637/637 691/691 583/583 +f 584/584 583/583 692/692 +f 637/637 582/582 691/691 +f 584/584 692/692 638/638 +f 639/639 536/536 640/640 +f 639/639 693/693 585/585 +f 638/638 694/694 586/586 +f 640/640 586/586 695/695 +f 642/642 641/641 537/537 +f 585/585 693/693 642/642 +f 538/538 641/641 643/643 +f 644/644 608/608 539/539 +f 696/696 644/644 588/588 +f 589/589 696/696 588/588 +f 643/643 697/697 589/589 +f 591/591 645/645 698/698 +f 646/646 545/545 699/699 +f 546/546 594/594 648/648 +f 700/700 592/592 593/593 +f 592/592 701/701 647/647 +f 647/647 699/699 545/545 +f 648/648 700/700 593/593 +f 595/595 702/702 594/594 +f 703/703 649/649 596/596 +f 649/649 650/650 498/498 +f 598/598 597/597 704/704 +f 597/597 650/650 705/705 +f 703/703 596/596 646/646 +f 651/651 598/598 704/704 +f 706/706 599/599 651/651 +f 600/600 599/599 706/706 +f 706/706 645/645 600/600 +f 652/652 601/601 707/707 +f 601/601 606/606 708/708 +f 652/652 709/709 602/602 +f 709/709 603/603 602/602 +f 656/656 551/551 653/653 +f 653/653 603/603 710/710 +f 711/711 654/654 552/552 +f 655/655 604/604 656/656 +f 552/552 655/655 711/711 +f 605/605 661/661 607/607 +f 606/606 657/657 712/712 +f 657/657 554/554 658/658 +f 607/607 713/713 658/658 +f 610/610 608/608 714/714 +f 609/609 659/659 715/715 +f 611/611 609/609 716/716 +f 659/659 610/610 714/714 +f 717/717 660/660 611/611 +f 661/661 556/556 662/662 +f 663/663 662/662 557/557 +f 660/660 718/718 612/612 +f 719/719 663/663 612/612 +f 720/720 559/559 664/664 +f 615/615 613/613 721/721 +f 665/665 559/559 722/722 +f 723/723 613/613 665/665 +f 561/561 667/667 666/666 +f 614/614 666/666 669/669 +f 724/724 667/667 615/615 +f 669/669 617/617 614/614 +f 725/725 668/668 562/562 +f 562/562 669/669 725/725 +f 726/726 664/664 563/563 +f 618/618 626/626 670/670 +f 563/563 670/670 726/726 +f 727/727 671/671 564/564 +f 625/625 619/619 622/622 +f 621/621 620/620 624/624 +f 621/621 728/728 672/672 +f 566/566 674/674 673/673 +f 729/729 622/622 673/673 +f 623/623 672/672 730/730 +f 674/674 623/623 730/730 +f 671/671 728/728 624/624 +f 567/567 675/675 676/676 +f 625/625 731/731 675/675 +f 732/732 626/626 676/676 +f 627/627 679/679 677/677 +f 727/727 564/564 677/677 +f 679/679 569/569 678/678 +f 678/678 570/570 733/733 +f 570/570 680/680 733/733 +f 734/734 680/680 628/628 +f 629/629 734/734 628/628 +f 682/682 681/681 527/527 +f 629/629 681/681 735/735 +f 682/682 630/630 736/736 +f 737/737 630/630 654/654 +f 668/668 725/725 631/631 +f 684/684 683/683 632/632 +f 575/575 683/683 688/688 +f 738/738 633/633 685/685 +f 739/739 685/685 577/577 +f 577/577 686/686 739/739 +f 631/631 740/740 686/686 +f 741/741 684/684 633/633 +f 687/687 634/634 742/742 +f 743/743 634/634 688/688 +f 744/744 595/595 687/687 +f 635/635 591/591 745/745 +f 636/636 635/635 746/746 +f 689/689 590/590 580/580 +f 747/747 689/689 636/636 +f 690/690 748/748 582/582 +f 690/690 590/590 749/749 +f 691/691 750/750 583/583 +f 583/583 750/750 692/692 +f 691/691 582/582 748/748 +f 638/638 692/692 694/694 +f 751/751 639/639 640/640 +f 639/639 751/751 693/693 +f 694/694 752/752 586/586 +f 752/752 695/695 586/586 +f 753/753 640/640 695/695 +f 641/641 642/642 754/754 +f 642/642 693/693 755/755 +f 641/641 756/756 643/643 +f 644/644 714/714 608/608 +f 644/644 696/696 757/757 +f 589/589 697/697 696/696 +f 643/643 758/758 697/697 +f 745/745 591/591 698/698 +f 645/645 706/706 698/698 +f 759/759 646/646 699/699 +f 760/760 648/648 594/594 +f 700/700 761/761 592/592 +f 701/701 592/592 762/762 +f 647/647 701/701 763/763 +f 763/763 699/699 647/647 +f 700/700 648/648 764/764 +f 702/702 595/595 744/744 +f 702/702 765/765 594/594 +f 649/649 703/703 766/766 +f 649/649 766/766 650/650 +f 767/767 704/704 597/597 +f 650/650 768/768 705/705 +f 767/767 597/597 705/705 +f 759/759 703/703 646/646 +f 704/704 769/769 651/651 +f 769/769 706/706 651/651 +f 707/707 770/770 652/652 +f 707/707 601/601 708/708 +f 606/606 771/771 708/708 +f 772/772 709/709 652/652 +f 709/709 710/710 603/603 +f 653/653 773/773 656/656 +f 774/774 653/653 710/710 +f 654/654 711/711 737/737 +f 655/655 656/656 773/773 +f 655/655 775/775 711/711 +f 713/713 607/607 661/661 +f 776/776 712/712 657/657 +f 712/712 777/777 606/606 +f 658/658 778/778 657/657 +f 658/658 713/713 779/779 +f 609/609 715/715 780/780 +f 715/715 659/659 757/757 +f 609/609 781/781 716/716 +f 716/716 717/717 611/611 +f 714/714 757/757 659/659 +f 660/660 717/717 782/782 +f 662/662 783/783 661/661 +f 662/662 663/663 783/783 +f 660/660 782/782 718/718 +f 718/718 784/784 612/612 +f 663/663 719/719 785/785 +f 784/784 719/719 612/612 +f 726/726 720/720 664/664 +f 720/720 722/722 559/559 +f 721/721 724/724 615/615 +f 721/721 613/613 723/723 +f 786/786 665/665 722/722 +f 786/786 723/723 665/665 +f 667/667 787/787 666/666 +f 669/669 666/666 788/788 +f 667/667 724/724 789/789 +f 725/725 669/669 790/790 +f 791/791 670/670 626/626 +f 792/792 726/726 670/670 +f 727/727 793/793 671/671 +f 622/622 729/729 625/625 +f 624/624 728/728 621/621 +f 672/672 728/728 794/794 +f 673/673 674/674 795/795 +f 673/673 796/796 729/729 +f 730/730 672/672 797/797 +f 674/674 730/730 798/798 +f 728/728 671/671 799/799 +f 731/731 676/676 675/675 +f 800/800 731/731 625/625 +f 801/801 626/626 732/732 +f 732/732 676/676 802/802 +f 679/679 678/678 677/677 +f 803/803 727/727 677/677 +f 733/733 803/803 678/678 +f 733/733 680/680 804/804 +f 804/804 680/680 734/734 +f 734/734 629/629 805/805 +f 682/682 806/806 681/681 +f 681/681 807/807 735/735 +f 629/629 735/735 805/805 +f 682/682 736/736 806/806 +f 737/737 736/736 630/630 +f 740/740 631/631 725/725 +f 683/683 684/684 741/741 +f 743/743 688/688 683/683 +f 738/738 741/741 633/633 +f 685/685 808/808 738/738 +f 808/808 685/685 739/739 +f 739/739 686/686 809/809 +f 810/810 686/686 740/740 +f 743/743 742/742 634/634 +f 811/811 687/687 742/742 +f 687/687 812/812 744/744 +f 813/813 635/635 745/745 +f 635/635 813/813 746/746 +f 746/746 814/814 636/636 +f 590/590 689/689 749/749 +f 689/689 747/747 749/749 +f 747/747 636/636 814/814 +f 748/748 690/690 815/815 +f 690/690 749/749 815/815 +f 691/691 816/816 750/750 +f 692/692 750/750 817/817 +f 818/818 691/691 748/748 +f 694/694 692/692 817/817 +f 753/753 751/751 640/640 +f 693/693 751/751 819/819 +f 752/752 694/694 820/820 +f 695/695 752/752 821/821 +f 821/821 753/753 695/695 +f 754/754 756/756 641/641 +f 642/642 822/822 754/754 +f 819/819 755/755 693/693 +f 823/823 642/642 755/755 +f 756/756 758/758 643/643 +f 644/644 757/757 714/714 +f 696/696 824/824 757/757 +f 824/824 696/696 697/697 +f 758/758 825/825 697/697 +f 706/706 745/745 698/698 +f 699/699 763/763 759/759 +f 760/760 594/594 765/765 +f 648/648 760/760 764/764 +f 761/761 700/700 764/764 +f 761/761 826/826 592/592 +f 826/826 762/762 592/592 +f 762/762 827/827 701/701 +f 828/828 763/763 701/701 +f 702/702 744/744 829/829 +f 830/830 765/765 702/702 +f 703/703 831/831 766/766 +f 766/766 768/768 650/650 +f 767/767 832/832 704/704 +f 833/833 705/705 768/768 +f 767/767 705/705 833/833 +f 703/703 759/759 831/831 +f 769/769 704/704 834/834 +f 745/745 706/706 769/769 +f 835/835 770/770 707/707 +f 836/836 652/652 770/770 +f 707/707 708/708 837/837 +f 708/708 771/771 838/838 +f 606/606 839/839 771/771 +f 840/840 709/709 772/772 +f 841/841 772/772 652/652 +f 842/842 710/710 709/709 +f 653/653 774/774 773/773 +f 842/842 774/774 710/710 +f 711/711 736/736 737/737 +f 843/843 655/655 773/773 +f 843/843 775/775 655/655 +f 736/736 711/711 775/775 +f 713/713 661/661 783/783 +f 712/712 776/776 844/844 +f 845/845 776/776 657/657 +f 712/712 846/846 777/777 +f 777/777 847/847 606/606 +f 778/778 845/845 657/657 +f 778/778 658/658 848/848 +f 848/848 658/658 779/779 +f 779/779 713/713 783/783 +f 849/849 780/780 715/715 +f 609/609 780/780 781/781 +f 824/824 715/715 757/757 +f 781/781 850/850 716/716 +f 717/717 716/716 851/851 +f 782/782 717/717 718/718 +f 663/663 785/785 783/783 +f 718/718 852/852 784/784 +f 785/785 719/719 853/853 +f 719/719 784/784 854/854 +f 720/720 726/726 855/855 +f 722/722 720/720 856/856 +f 724/724 721/721 723/723 +f 786/786 722/722 856/856 +f 786/786 724/724 723/723 +f 666/666 787/787 857/857 +f 787/787 667/667 858/858 +f 666/666 857/857 788/788 +f 788/788 790/790 669/669 +f 786/786 789/789 724/724 +f 667/667 789/789 858/858 +f 859/859 725/725 790/790 +f 801/801 791/791 626/626 +f 791/791 792/792 670/670 +f 855/855 726/726 792/792 +f 727/727 803/803 793/793 +f 671/671 793/793 799/799 +f 625/625 729/729 800/800 +f 794/794 797/797 672/672 +f 860/860 794/794 728/728 +f 674/674 798/798 795/795 +f 673/673 795/795 796/796 +f 729/729 796/796 861/861 +f 862/862 730/730 797/797 +f 798/798 730/730 863/863 +f 860/860 728/728 799/799 +f 676/676 731/731 864/864 +f 864/864 731/731 800/800 +f 801/801 732/732 865/865 +f 865/865 732/732 802/802 +f 802/802 676/676 864/864 +f 678/678 803/803 677/677 +f 803/803 733/733 793/793 +f 804/804 866/866 733/733 +f 734/734 866/866 804/804 +f 866/866 734/734 805/805 +f 867/867 681/681 806/806 +f 681/681 867/867 807/807 +f 807/807 868/868 735/735 +f 735/735 869/869 805/805 +f 870/870 806/806 736/736 +f 859/859 740/740 725/725 +f 871/871 683/683 741/741 +f 743/743 683/683 871/871 +f 741/741 738/738 872/872 +f 808/808 873/873 738/738 +f 808/808 739/739 874/874 +f 809/809 874/874 739/739 +f 809/809 686/686 810/810 +f 875/875 810/810 740/740 +f 742/742 743/743 876/876 +f 687/687 811/811 877/877 +f 811/811 742/742 876/876 +f 812/812 687/687 877/877 +f 812/812 878/878 744/744 +f 745/745 879/879 813/813 +f 879/879 746/746 813/813 +f 746/746 880/880 814/814 +f 749/749 747/747 815/815 +f 881/881 747/747 814/814 +f 882/882 748/748 815/815 +f 750/750 816/816 883/883 +f 691/691 884/884 816/816 +f 885/885 817/817 750/750 +f 691/691 818/818 886/886 +f 818/818 748/748 882/882 +f 887/887 694/694 817/817 +f 888/888 751/751 753/753 +f 819/819 751/751 888/888 +f 694/694 887/887 820/820 +f 889/889 752/752 820/820 +f 890/890 821/821 752/752 +f 753/753 821/821 888/888 +f 756/756 754/754 891/891 +f 823/823 822/822 642/642 +f 822/822 892/892 754/754 +f 755/755 819/819 893/893 +f 894/894 823/823 755/755 +f 891/891 758/758 756/756 +f 824/824 697/697 825/825 +f 825/825 758/758 895/895 +f 759/759 763/763 831/831 +f 830/830 760/760 765/765 +f 760/760 896/896 764/764 +f 897/897 761/761 764/764 +f 898/898 826/826 761/761 +f 827/827 762/762 826/826 +f 701/701 827/827 828/828 +f 763/763 828/828 831/831 +f 829/829 744/744 878/878 +f 702/702 829/829 830/830 +f 831/831 899/899 766/766 +f 900/900 768/768 766/766 +f 833/833 832/832 767/767 +f 704/704 832/832 834/834 +f 901/901 833/833 768/768 +f 769/769 834/834 879/879 +f 745/745 769/769 879/879 +f 707/707 837/837 835/835 +f 835/835 902/902 770/770 +f 903/903 836/836 770/770 +f 652/652 836/836 841/841 +f 837/837 708/708 904/904 +f 838/838 771/771 905/905 +f 904/904 708/708 838/838 +f 905/905 771/771 839/839 +f 847/847 839/839 606/606 +f 709/709 840/840 842/842 +f 906/906 840/840 772/772 +f 907/907 772/772 841/841 +f 908/908 773/773 774/774 +f 774/774 842/842 909/909 +f 773/773 806/806 843/843 +f 843/843 870/870 775/775 +f 775/775 870/870 736/736 +f 910/910 844/844 776/776 +f 846/846 712/712 844/844 +f 776/776 845/845 910/910 +f 846/846 911/911 777/777 +f 777/777 912/912 847/847 +f 845/845 778/778 913/913 +f 848/848 913/913 778/778 +f 779/779 913/913 848/848 +f 783/783 785/785 779/779 +f 914/914 780/780 849/849 +f 715/715 824/824 849/849 +f 781/781 780/780 915/915 +f 850/850 781/781 915/915 +f 851/851 716/716 850/850 +f 916/916 717/717 851/851 +f 917/917 718/718 717/717 +f 718/718 917/917 852/852 +f 784/784 852/852 854/854 +f 853/853 719/719 854/854 +f 853/853 918/918 785/785 +f 856/856 720/720 855/855 +f 919/919 786/786 856/856 +f 857/857 787/787 858/858 +f 857/857 920/920 788/788 +f 921/921 790/790 788/788 +f 922/922 789/789 786/786 +f 789/789 922/922 858/858 +f 859/859 790/790 923/923 +f 791/791 801/801 924/924 +f 925/925 792/792 791/791 +f 855/855 792/792 926/926 +f 793/793 927/927 799/799 +f 729/729 861/861 800/800 +f 928/928 797/797 794/794 +f 860/860 929/929 794/794 +f 795/795 798/798 930/930 +f 795/795 931/931 796/796 +f 932/932 861/861 796/796 +f 730/730 862/862 863/863 +f 862/862 797/797 928/928 +f 930/930 798/798 863/863 +f 799/799 933/933 860/860 +f 800/800 934/934 864/864 +f 865/865 924/924 801/801 +f 865/865 802/802 935/935 +f 802/802 864/864 935/935 +f 936/936 793/793 733/733 +f 866/866 936/936 733/733 +f 866/866 805/805 937/937 +f 867/867 806/806 938/938 +f 807/807 867/867 939/939 +f 940/940 868/868 807/807 +f 869/869 735/735 868/868 +f 937/937 805/805 869/869 +f 843/843 806/806 870/870 +f 875/875 740/740 859/859 +f 871/871 741/741 872/872 +f 871/871 941/941 743/743 +f 873/873 872/872 738/738 +f 873/873 808/808 942/942 +f 874/874 942/942 808/808 +f 874/874 809/809 943/943 +f 809/809 810/810 944/944 +f 810/810 875/875 945/945 +f 743/743 946/946 876/876 +f 947/947 877/877 811/811 +f 947/947 811/811 876/876 +f 948/948 812/812 877/877 +f 949/949 878/878 812/812 +f 879/879 950/950 746/746 +f 746/746 950/950 880/880 +f 814/814 880/880 881/881 +f 815/815 747/747 881/881 +f 881/881 882/882 815/815 +f 884/884 883/883 816/816 +f 750/750 883/883 951/951 +f 886/886 884/884 691/691 +f 952/952 817/817 885/885 +f 750/750 951/951 885/885 +f 886/886 818/818 953/953 +f 954/954 818/818 882/882 +f 887/887 817/817 952/952 +f 893/893 819/819 888/888 +f 955/955 820/820 887/887 +f 955/955 889/889 820/820 +f 889/889 890/890 752/752 +f 890/890 956/956 821/821 +f 888/888 821/821 893/893 +f 891/891 754/754 957/957 +f 823/823 958/958 822/822 +f 957/957 754/754 892/892 +f 959/959 892/892 822/822 +f 960/960 755/755 893/893 +f 755/755 961/961 894/894 +f 823/823 894/894 962/962 +f 758/758 891/891 963/963 +f 824/824 825/825 964/964 +f 963/963 895/895 758/758 +f 895/895 964/964 825/825 +f 830/830 965/965 760/760 +f 760/760 965/965 896/896 +f 897/897 764/764 896/896 +f 761/761 897/897 898/898 +f 966/966 826/826 898/898 +f 966/966 827/827 826/826 +f 828/828 827/827 967/967 +f 968/968 831/831 828/828 +f 829/829 878/878 830/830 +f 968/968 899/899 831/831 +f 766/766 899/899 900/900 +f 900/900 969/969 768/768 +f 833/833 970/970 832/832 +f 834/834 832/832 971/971 +f 901/901 972/972 833/833 +f 969/969 901/901 768/768 +f 971/971 879/879 834/834 +f 902/902 835/835 837/837 +f 902/902 903/903 770/770 +f 973/973 836/836 903/903 +f 841/841 836/836 974/974 +f 904/904 975/975 837/837 +f 905/905 976/976 838/838 +f 977/977 904/904 838/838 +f 839/839 978/978 905/905 +f 847/847 979/979 839/839 +f 842/842 840/840 906/906 +f 772/772 907/907 906/906 +f 841/841 980/980 907/907 +f 908/908 938/938 773/773 +f 908/908 774/774 909/909 +f 981/981 909/909 842/842 +f 773/773 938/938 806/806 +f 844/844 910/910 982/982 +f 844/844 911/911 846/846 +f 845/845 918/918 910/910 +f 911/911 983/983 777/777 +f 847/847 912/912 979/979 +f 777/777 983/983 912/912 +f 913/913 984/984 845/845 +f 913/913 779/779 984/984 +f 779/779 785/785 984/984 +f 780/780 914/914 915/915 +f 964/964 914/914 849/849 +f 824/824 964/964 849/849 +f 915/915 985/985 850/850 +f 851/851 850/850 986/986 +f 916/916 917/917 717/717 +f 986/986 916/916 851/851 +f 852/852 917/917 916/916 +f 987/987 854/854 852/852 +f 988/988 853/853 854/854 +f 853/853 988/988 918/918 +f 785/785 918/918 845/845 +f 919/919 856/856 855/855 +f 922/922 786/786 919/919 +f 857/857 858/858 922/922 +f 788/788 920/920 921/921 +f 920/920 857/857 989/989 +f 921/921 923/923 790/790 +f 990/990 859/859 923/923 +f 991/991 791/791 924/924 +f 926/926 792/792 925/925 +f 791/791 992/992 925/925 +f 919/919 855/855 926/926 +f 927/927 993/993 799/799 +f 927/927 793/793 936/936 +f 861/861 994/994 800/800 +f 928/928 794/794 929/929 +f 933/933 929/929 860/860 +f 995/995 795/795 930/930 +f 931/931 795/795 995/995 +f 996/996 796/796 931/931 +f 932/932 997/997 861/861 +f 796/796 996/996 932/932 +f 863/863 862/862 998/998 +f 928/928 999/999 862/862 +f 998/998 930/930 863/863 +f 1000/1000 933/933 799/799 +f 934/934 800/800 1001/1001 +f 864/864 934/934 1002/1002 +f 865/865 1003/1003 924/924 +f 935/935 1003/1003 865/865 +f 864/864 1004/1004 935/935 +f 936/936 866/866 1005/1005 +f 937/937 1005/1005 866/866 +f 939/939 867/867 938/938 +f 939/939 1006/1006 807/807 +f 868/868 940/940 1007/1007 +f 1006/1006 940/940 807/807 +f 1008/1008 869/869 868/868 +f 1008/1008 937/937 869/869 +f 859/859 990/990 875/875 +f 872/872 1009/1009 871/871 +f 1010/1010 941/941 871/871 +f 941/941 1011/1011 743/743 +f 872/872 873/873 1012/1012 +f 942/942 1013/1013 873/873 +f 943/943 942/942 874/874 +f 944/944 943/943 809/809 +f 944/944 810/810 945/945 +f 875/875 990/990 945/945 +f 743/743 1011/1011 946/946 +f 876/876 946/946 1014/1014 +f 948/948 877/877 947/947 +f 1015/1015 947/947 876/876 +f 949/949 812/812 948/948 +f 878/878 949/949 830/830 +f 950/950 879/879 1016/1016 +f 880/880 950/950 1017/1017 +f 880/880 1017/1017 881/881 +f 882/882 881/881 954/954 +f 884/884 1018/1018 883/883 +f 1019/1019 951/951 883/883 +f 1020/1020 884/884 886/886 +f 952/952 885/885 1021/1021 +f 1022/1022 885/885 951/951 +f 953/953 1023/1023 886/886 +f 818/818 954/954 953/953 +f 887/887 952/952 955/955 +f 955/955 1024/1024 889/889 +f 890/890 889/889 956/956 +f 956/956 1025/1025 821/821 +f 821/821 1025/1025 893/893 +f 957/957 963/963 891/891 +f 823/823 962/962 958/958 +f 822/822 958/958 959/959 +f 892/892 1026/1026 957/957 +f 1027/1027 892/892 959/959 +f 1028/1028 960/960 893/893 +f 960/960 961/961 755/755 +f 894/894 961/961 1029/1029 +f 962/962 894/894 1029/1029 +f 963/963 1030/1030 895/895 +f 964/964 895/895 1031/1031 +f 830/830 1032/1032 965/965 +f 965/965 1033/1033 896/896 +f 896/896 1033/1033 897/897 +f 897/897 1034/1034 898/898 +f 898/898 1035/1035 966/966 +f 1036/1036 827/827 966/966 +f 828/828 967/967 968/968 +f 967/967 827/827 1037/1037 +f 1038/1038 899/899 968/968 +f 900/900 899/899 1039/1039 +f 969/969 900/900 1039/1039 +f 970/970 833/833 1040/1040 +f 970/970 1041/1041 832/832 +f 971/971 832/832 1041/1041 +f 833/833 972/972 1040/1040 +f 1042/1042 972/972 901/901 +f 969/969 1043/1043 901/901 +f 1016/1016 879/879 971/971 +f 902/902 837/837 1044/1044 +f 902/902 1045/1045 903/903 +f 1046/1046 973/973 903/903 +f 836/836 973/973 1047/1047 +f 1047/1047 974/974 836/836 +f 980/980 841/841 974/974 +f 1048/1048 975/975 904/904 +f 837/837 975/975 1044/1044 +f 977/977 838/838 976/976 +f 976/976 905/905 1049/1049 +f 904/904 977/977 1050/1050 +f 979/979 978/978 839/839 +f 978/978 1051/1051 905/905 +f 842/842 906/906 981/981 +f 1052/1052 906/906 907/907 +f 907/907 980/980 1053/1053 +f 938/938 908/908 939/939 +f 1006/1006 908/908 909/909 +f 909/909 981/981 1054/1054 +f 910/910 1055/1055 982/982 +f 982/982 911/911 844/844 +f 1055/1055 910/910 918/918 +f 982/982 983/983 911/911 +f 1056/1056 979/979 912/912 +f 912/912 983/983 1057/1057 +f 785/785 845/845 984/984 +f 914/914 1058/1058 915/915 +f 964/964 1059/1059 914/914 +f 1060/1060 985/985 915/915 +f 850/850 985/985 1061/1061 +f 986/986 850/850 1061/1061 +f 986/986 1062/1062 916/916 +f 852/852 916/916 1063/1063 +f 852/852 1063/1063 987/987 +f 987/987 1064/1064 854/854 +f 1064/1064 988/988 854/854 +f 988/988 1055/1055 918/918 +f 919/919 989/989 922/922 +f 922/922 989/989 857/857 +f 921/921 920/920 1065/1065 +f 1066/1066 920/920 989/989 +f 923/923 921/921 1067/1067 +f 923/923 1068/1068 990/990 +f 924/924 1069/1069 991/991 +f 992/992 791/791 991/991 +f 1070/1070 926/926 925/925 +f 1071/1071 925/925 992/992 +f 1070/1070 919/919 926/926 +f 927/927 1072/1072 993/993 +f 799/799 993/993 1073/1073 +f 927/927 936/936 1074/1074 +f 997/997 994/994 861/861 +f 800/800 994/994 1075/1075 +f 928/928 929/929 999/999 +f 933/933 999/999 929/929 +f 995/995 930/930 998/998 +f 995/995 1076/1076 931/931 +f 996/996 931/931 1077/1077 +f 932/932 1078/1078 997/997 +f 1079/1079 932/932 996/996 +f 999/999 998/998 862/862 +f 799/799 1073/1073 1000/1000 +f 933/933 1000/1000 1080/1080 +f 1001/1001 800/800 1075/1075 +f 1001/1001 1081/1081 934/934 +f 1002/1002 934/934 1081/1081 +f 1004/1004 864/864 1002/1002 +f 1003/1003 1082/1082 924/924 +f 1083/1083 1003/1003 935/935 +f 1004/1004 1083/1083 935/935 +f 1005/1005 1074/1074 936/936 +f 1005/1005 937/937 1084/1084 +f 908/908 1006/1006 939/939 +f 1085/1085 1007/1007 940/940 +f 1008/1008 868/868 1007/1007 +f 940/940 1006/1006 1086/1086 +f 1008/1008 1087/1087 937/937 +f 1009/1009 1088/1088 871/871 +f 1012/1012 1009/1009 872/872 +f 941/941 1010/1010 1089/1089 +f 871/871 1090/1090 1010/1010 +f 1011/1011 941/941 1089/1089 +f 1091/1091 1012/1012 873/873 +f 1092/1092 1013/1013 942/942 +f 873/873 1013/1013 1091/1091 +f 942/942 943/943 1092/1092 +f 1093/1093 943/943 944/944 +f 945/945 1094/1094 944/944 +f 990/990 1095/1095 945/945 +f 1014/1014 946/946 1011/1011 +f 1014/1014 1015/1015 876/876 +f 947/947 1096/1096 948/948 +f 1015/1015 1097/1097 947/947 +f 948/948 1098/1098 949/949 +f 949/949 1032/1032 830/830 +f 1016/1016 1099/1099 950/950 +f 1017/1017 950/950 1100/1100 +f 1017/1017 954/954 881/881 +f 1020/1020 1018/1018 884/884 +f 1101/1101 883/883 1018/1018 +f 1019/1019 1102/1102 951/951 +f 883/883 1103/1103 1019/1019 +f 886/886 1023/1023 1020/1020 +f 885/885 1022/1022 1021/1021 +f 1024/1024 952/952 1021/1021 +f 951/951 1104/1104 1022/1022 +f 1105/1105 1023/1023 953/953 +f 954/954 1105/1105 953/953 +f 955/955 952/952 1024/1024 +f 889/889 1024/1024 1106/1106 +f 1106/1106 956/956 889/889 +f 1028/1028 1025/1025 956/956 +f 1025/1025 1028/1028 893/893 +f 1107/1107 963/963 957/957 +f 958/958 962/962 1108/1108 +f 958/958 1109/1109 959/959 +f 957/957 1026/1026 1110/1110 +f 892/892 1111/1111 1026/1026 +f 1111/1111 892/892 1027/1027 +f 1109/1109 1027/1027 959/959 +f 1028/1028 1112/1112 960/960 +f 961/961 960/960 1113/1113 +f 1029/1029 961/961 1114/1114 +f 1114/1114 962/962 1029/1029 +f 1030/1030 963/963 1115/1115 +f 895/895 1030/1030 1031/1031 +f 964/964 1031/1031 1059/1059 +f 1116/1116 965/965 1032/1032 +f 1117/1117 1033/1033 965/965 +f 897/897 1033/1033 1118/1118 +f 897/897 1118/1118 1034/1034 +f 1034/1034 1035/1035 898/898 +f 1119/1119 966/966 1035/1035 +f 1119/1119 1036/1036 966/966 +f 1036/1036 1120/1120 827/827 +f 967/967 1121/1121 968/968 +f 1037/1037 1122/1122 967/967 +f 1120/1120 1037/1037 827/827 +f 1123/1123 899/899 1038/1038 +f 1038/1038 968/968 1124/1124 +f 1125/1125 1039/1039 899/899 +f 1126/1126 969/969 1039/1039 +f 1127/1127 970/970 1040/1040 +f 970/970 1128/1128 1041/1041 +f 971/971 1041/1041 1016/1016 +f 1040/1040 972/972 1129/1129 +f 1043/1043 1042/1042 901/901 +f 1129/1129 972/972 1042/1042 +f 1043/1043 969/969 1126/1126 +f 1130/1130 902/902 1044/1044 +f 1130/1130 1045/1045 902/902 +f 903/903 1045/1045 1131/1131 +f 1047/1047 973/973 1046/1046 +f 1046/1046 903/903 1132/1132 +f 1047/1047 1133/1133 974/974 +f 974/974 1134/1134 980/980 +f 1050/1050 1048/1048 904/904 +f 975/975 1048/1048 1044/1044 +f 976/976 1135/1135 977/977 +f 1136/1136 976/976 1049/1049 +f 1049/1049 905/905 1137/1137 +f 977/977 1135/1135 1050/1050 +f 978/978 979/979 1138/1138 +f 978/978 1138/1138 1051/1051 +f 1051/1051 1139/1139 905/905 +f 981/981 906/906 1052/1052 +f 907/907 1053/1053 1052/1052 +f 1053/1053 980/980 1140/1140 +f 1054/1054 1006/1006 909/909 +f 1086/1086 1054/1054 981/981 +f 982/982 1055/1055 1141/1141 +f 1141/1141 983/983 982/982 +f 1057/1057 1056/1056 912/912 +f 1056/1056 1142/1142 979/979 +f 983/983 1143/1143 1057/1057 +f 915/915 1058/1058 1060/1060 +f 1058/1058 914/914 1144/1144 +f 914/914 1059/1059 1144/1144 +f 1060/1060 1145/1145 985/985 +f 985/985 1146/1146 1061/1061 +f 986/986 1061/1061 1147/1147 +f 1062/1062 986/986 1147/1147 +f 916/916 1062/1062 1148/1148 +f 1063/1063 916/916 1148/1148 +f 1063/1063 1149/1149 987/987 +f 1064/1064 987/987 1150/1150 +f 1151/1151 988/988 1064/1064 +f 1055/1055 988/988 1151/1151 +f 919/919 1070/1070 989/989 +f 920/920 1152/1152 1065/1065 +f 1067/1067 921/921 1065/1065 +f 989/989 1153/1153 1066/1066 +f 1066/1066 1152/1152 920/920 +f 923/923 1067/1067 1068/1068 +f 990/990 1068/1068 1095/1095 +f 1154/1154 1069/1069 924/924 +f 1069/1069 1155/1155 991/991 +f 991/991 1155/1155 992/992 +f 1156/1156 1070/1070 925/925 +f 925/925 1071/1071 1156/1156 +f 992/992 1155/1155 1071/1071 +f 1072/1072 927/927 1074/1074 +f 1157/1157 993/993 1072/1072 +f 1073/1073 993/993 1157/1157 +f 994/994 997/997 1158/1158 +f 1075/1075 994/994 1158/1158 +f 1080/1080 999/999 933/933 +f 1159/1159 995/995 998/998 +f 1160/1160 1076/1076 995/995 +f 931/931 1076/1076 1077/1077 +f 1079/1079 996/996 1077/1077 +f 1078/1078 932/932 1079/1079 +f 1078/1078 1161/1161 997/997 +f 1162/1162 998/998 999/999 +f 1163/1163 1000/1000 1073/1073 +f 1164/1164 1080/1080 1000/1000 +f 1075/1075 1165/1165 1001/1001 +f 1001/1001 1165/1165 1081/1081 +f 1081/1081 1166/1166 1002/1002 +f 1004/1004 1002/1002 1167/1167 +f 924/924 1082/1082 1154/1154 +f 1082/1082 1003/1003 1083/1083 +f 1167/1167 1083/1083 1004/1004 +f 1168/1168 1074/1074 1005/1005 +f 1005/1005 1084/1084 1169/1169 +f 1087/1087 1084/1084 937/937 +f 1085/1085 1170/1170 1007/1007 +f 940/940 1171/1171 1085/1085 +f 1008/1008 1007/1007 1172/1172 +f 1171/1171 940/940 1086/1086 +f 1086/1086 1006/1006 1054/1054 +f 1008/1008 1173/1173 1087/1087 +f 1090/1090 871/871 1088/1088 +f 1088/1088 1009/1009 1090/1090 +f 1009/1009 1012/1012 1091/1091 +f 1089/1089 1010/1010 1174/1174 +f 1010/1010 1090/1090 1175/1175 +f 1089/1089 1014/1014 1011/1011 +f 1013/1013 1092/1092 1176/1176 +f 1176/1176 1091/1091 1013/1013 +f 943/943 1093/1093 1092/1092 +f 1094/1094 1093/1093 944/944 +f 1095/1095 1094/1094 945/945 +f 1174/1174 1015/1015 1014/1014 +f 1097/1097 1096/1096 947/947 +f 948/948 1096/1096 1098/1098 +f 1015/1015 1177/1177 1097/1097 +f 1098/1098 1178/1178 949/949 +f 1178/1178 1032/1032 949/949 +f 1016/1016 1179/1179 1099/1099 +f 1180/1180 950/950 1099/1099 +f 1100/1100 950/950 1181/1181 +f 954/954 1017/1017 1100/1100 +f 1018/1018 1020/1020 1182/1182 +f 1103/1103 883/883 1101/1101 +f 1101/1101 1018/1018 1183/1183 +f 1104/1104 951/951 1102/1102 +f 1102/1102 1019/1019 1103/1103 +f 1184/1184 1020/1020 1023/1023 +f 1021/1021 1022/1022 1185/1185 +f 1186/1186 1024/1024 1021/1021 +f 1022/1022 1104/1104 1185/1185 +f 1023/1023 1105/1105 1184/1184 +f 1105/1105 954/954 1100/1100 +f 1186/1186 1106/1106 1024/1024 +f 1187/1187 956/956 1106/1106 +f 1188/1188 1028/1028 956/956 +f 1110/1110 1107/1107 957/957 +f 1115/1115 963/963 1107/1107 +f 962/962 1114/1114 1108/1108 +f 1109/1109 958/958 1108/1108 +f 1026/1026 1189/1189 1110/1110 +f 1111/1111 1190/1190 1026/1026 +f 1191/1191 1111/1111 1027/1027 +f 1027/1027 1109/1109 1191/1191 +f 960/960 1112/1112 1192/1192 +f 1112/1112 1028/1028 1193/1193 +f 960/960 1192/1192 1113/1113 +f 1113/1113 1114/1114 961/961 +f 1115/1115 1194/1194 1030/1030 +f 1195/1195 1031/1031 1030/1030 +f 1196/1196 1059/1059 1031/1031 +f 1116/1116 1117/1117 965/965 +f 1032/1032 1178/1178 1116/1116 +f 1033/1033 1117/1117 1197/1197 +f 1118/1118 1033/1033 1198/1198 +f 1118/1118 1199/1199 1034/1034 +f 1200/1200 1035/1035 1034/1034 +f 1200/1200 1119/1119 1035/1035 +f 1119/1119 1200/1200 1036/1036 +f 1201/1201 1120/1120 1036/1036 +f 1122/1122 1121/1121 967/967 +f 1124/1124 968/968 1121/1121 +f 1120/1120 1122/1122 1037/1037 +f 1125/1125 899/899 1123/1123 +f 1202/1202 1123/1123 1038/1038 +f 1202/1202 1038/1038 1124/1124 +f 1125/1125 1203/1203 1039/1039 +f 1039/1039 1204/1204 1126/1126 +f 1127/1127 1128/1128 970/970 +f 1040/1040 1205/1205 1127/1127 +f 1128/1128 1016/1016 1041/1041 +f 1205/1205 1040/1040 1129/1129 +f 1042/1042 1043/1043 1206/1206 +f 1129/1129 1042/1042 1207/1207 +f 1206/1206 1043/1043 1126/1126 +f 1208/1208 1130/1130 1044/1044 +f 1209/1209 1045/1045 1130/1130 +f 1131/1131 1045/1045 1209/1209 +f 903/903 1131/1131 1132/1132 +f 1046/1046 1133/1133 1047/1047 +f 1210/1210 1046/1046 1132/1132 +f 1133/1133 1134/1134 974/974 +f 1140/1140 980/980 1134/1134 +f 1048/1048 1050/1050 1211/1211 +f 1044/1044 1048/1048 1208/1208 +f 1135/1135 976/976 1136/1136 +f 1212/1212 1136/1136 1049/1049 +f 1137/1137 1212/1212 1049/1049 +f 1213/1213 1137/1137 905/905 +f 1135/1135 1214/1214 1050/1050 +f 1138/1138 979/979 1142/1142 +f 1138/1138 1215/1215 1051/1051 +f 1139/1139 1051/1051 1216/1216 +f 905/905 1139/1139 1213/1213 +f 1052/1052 1086/1086 981/981 +f 1052/1052 1053/1053 1217/1217 +f 1217/1217 1053/1053 1140/1140 +f 1151/1151 1141/1141 1055/1055 +f 1141/1141 1143/1143 983/983 +f 1056/1056 1057/1057 1218/1218 +f 1142/1142 1056/1056 1218/1218 +f 1057/1057 1143/1143 1218/1218 +f 1060/1060 1058/1058 1219/1219 +f 1144/1144 1220/1220 1058/1058 +f 1059/1059 1221/1221 1144/1144 +f 1145/1145 1060/1060 1222/1222 +f 985/985 1145/1145 1146/1146 +f 1146/1146 1147/1147 1061/1061 +f 1147/1147 1223/1223 1062/1062 +f 1148/1148 1062/1062 1224/1224 +f 1225/1225 1063/1063 1148/1148 +f 1149/1149 1063/1063 1225/1225 +f 1149/1149 1150/1150 987/987 +f 1226/1226 1064/1064 1150/1150 +f 1064/1064 1227/1227 1151/1151 +f 989/989 1070/1070 1153/1153 +f 1228/1228 1065/1065 1152/1152 +f 1065/1065 1229/1229 1067/1067 +f 1153/1153 1230/1230 1066/1066 +f 1230/1230 1152/1152 1066/1066 +f 1229/1229 1068/1068 1067/1067 +f 1068/1068 1231/1231 1095/1095 +f 1232/1232 1069/1069 1154/1154 +f 1233/1233 1155/1155 1069/1069 +f 1234/1234 1070/1070 1156/1156 +f 1071/1071 1235/1235 1156/1156 +f 1071/1071 1155/1155 1233/1233 +f 1074/1074 1168/1168 1072/1072 +f 1236/1236 1157/1157 1072/1072 +f 1073/1073 1157/1157 1163/1163 +f 997/997 1237/1237 1158/1158 +f 1075/1075 1158/1158 1238/1238 +f 1080/1080 1239/1239 999/999 +f 1159/1159 998/998 1162/1162 +f 1160/1160 995/995 1159/1159 +f 1076/1076 1160/1160 1240/1240 +f 1241/1241 1077/1077 1076/1076 +f 1079/1079 1077/1077 1242/1242 +f 1078/1078 1079/1079 1243/1243 +f 1237/1237 997/997 1161/1161 +f 1243/1243 1161/1161 1078/1078 +f 1239/1239 1162/1162 999/999 +f 1000/1000 1163/1163 1244/1244 +f 1000/1000 1244/1244 1164/1164 +f 1164/1164 1239/1239 1080/1080 +f 1165/1165 1075/1075 1238/1238 +f 1081/1081 1165/1165 1245/1245 +f 1166/1166 1081/1081 1246/1246 +f 1166/1166 1247/1247 1002/1002 +f 1002/1002 1247/1247 1167/1167 +f 1154/1154 1082/1082 1167/1167 +f 1082/1082 1083/1083 1167/1167 +f 1169/1169 1168/1168 1005/1005 +f 1169/1169 1084/1084 1248/1248 +f 1249/1249 1084/1084 1087/1087 +f 1172/1172 1007/1007 1170/1170 +f 1170/1170 1085/1085 1250/1250 +f 1251/1251 1085/1085 1171/1171 +f 1173/1173 1008/1008 1172/1172 +f 1171/1171 1086/1086 1052/1052 +f 1249/1249 1087/1087 1173/1173 +f 1009/1009 1252/1252 1090/1090 +f 1009/1009 1091/1091 1253/1253 +f 1089/1089 1174/1174 1014/1014 +f 1010/1010 1254/1254 1174/1174 +f 1252/1252 1175/1175 1090/1090 +f 1010/1010 1175/1175 1255/1255 +f 1256/1256 1176/1176 1092/1092 +f 1257/1257 1091/1091 1176/1176 +f 1092/1092 1093/1093 1258/1258 +f 1093/1093 1094/1094 1259/1259 +f 1095/1095 1260/1260 1094/1094 +f 1015/1015 1174/1174 1261/1261 +f 1096/1096 1097/1097 1262/1262 +f 1096/1096 1262/1262 1098/1098 +f 1263/1263 1177/1177 1015/1015 +f 1177/1177 1264/1264 1097/1097 +f 1262/1262 1178/1178 1098/1098 +f 1127/1127 1179/1179 1016/1016 +f 1099/1099 1179/1179 1265/1265 +f 1180/1180 1266/1266 950/950 +f 1180/1180 1099/1099 1267/1267 +f 1266/1266 1181/1181 950/950 +f 1100/1100 1181/1181 1268/1268 +f 1182/1182 1020/1020 1184/1184 +f 1182/1182 1183/1183 1018/1018 +f 1101/1101 1269/1269 1103/1103 +f 1183/1183 1270/1270 1101/1101 +f 1271/1271 1104/1104 1102/1102 +f 1271/1271 1102/1102 1103/1103 +f 1186/1186 1021/1021 1185/1185 +f 1104/1104 1272/1272 1185/1185 +f 1273/1273 1184/1184 1105/1105 +f 1105/1105 1100/1100 1268/1268 +f 1106/1106 1186/1186 1187/1187 +f 1188/1188 956/956 1187/1187 +f 1188/1188 1193/1193 1028/1028 +f 1107/1107 1110/1110 1274/1274 +f 1107/1107 1274/1274 1115/1115 +f 1108/1108 1114/1114 1275/1275 +f 1109/1109 1108/1108 1276/1276 +f 1277/1277 1110/1110 1189/1189 +f 1026/1026 1278/1278 1189/1189 +f 1190/1190 1111/1111 1191/1191 +f 1026/1026 1190/1190 1278/1278 +f 1109/1109 1279/1279 1191/1191 +f 1280/1280 1192/1192 1112/1112 +f 1112/1112 1193/1193 1281/1281 +f 1113/1113 1192/1192 1282/1282 +f 1275/1275 1114/1114 1113/1113 +f 1030/1030 1194/1194 1195/1195 +f 1194/1194 1115/1115 1283/1283 +f 1031/1031 1195/1195 1284/1284 +f 1059/1059 1196/1196 1221/1221 +f 1196/1196 1031/1031 1285/1285 +f 1117/1117 1116/1116 1262/1262 +f 1116/1116 1178/1178 1262/1262 +f 1033/1033 1197/1197 1198/1198 +f 1197/1197 1117/1117 1286/1286 +f 1118/1118 1198/1198 1287/1287 +f 1200/1200 1034/1034 1199/1199 +f 1288/1288 1199/1199 1118/1118 +f 1200/1200 1201/1201 1036/1036 +f 1289/1289 1120/1120 1201/1201 +f 1202/1202 1121/1121 1122/1122 +f 1121/1121 1202/1202 1124/1124 +f 1122/1122 1120/1120 1290/1290 +f 1291/1291 1125/1125 1123/1123 +f 1291/1291 1123/1123 1202/1202 +f 1204/1204 1039/1039 1203/1203 +f 1125/1125 1292/1292 1203/1203 +f 1204/1204 1206/1206 1126/1126 +f 1128/1128 1127/1127 1016/1016 +f 1127/1127 1205/1205 1293/1293 +f 1205/1205 1129/1129 1207/1207 +f 1294/1294 1042/1042 1206/1206 +f 1294/1294 1207/1207 1042/1042 +f 1208/1208 1295/1295 1130/1130 +f 1296/1296 1209/1209 1130/1130 +f 1131/1131 1209/1209 1297/1297 +f 1131/1131 1297/1297 1132/1132 +f 1046/1046 1298/1298 1133/1133 +f 1299/1299 1046/1046 1210/1210 +f 1132/1132 1300/1300 1210/1210 +f 1301/1301 1134/1134 1133/1133 +f 1134/1134 1301/1301 1140/1140 +f 1050/1050 1214/1214 1211/1211 +f 1208/1208 1048/1048 1211/1211 +f 1136/1136 1214/1214 1135/1135 +f 1136/1136 1212/1212 1302/1302 +f 1137/1137 1303/1303 1212/1212 +f 1137/1137 1213/1213 1303/1303 +f 1138/1138 1142/1142 1304/1304 +f 1215/1215 1138/1138 1305/1305 +f 1216/1216 1051/1051 1215/1215 +f 1216/1216 1306/1306 1139/1139 +f 1139/1139 1306/1306 1213/1213 +f 1052/1052 1217/1217 1307/1307 +f 1140/1140 1307/1307 1217/1217 +f 1151/1151 1143/1143 1141/1141 +f 1142/1142 1218/1218 1304/1304 +f 1227/1227 1218/1218 1143/1143 +f 1219/1219 1058/1058 1220/1220 +f 1060/1060 1219/1219 1222/1222 +f 1221/1221 1220/1220 1144/1144 +f 1308/1308 1145/1145 1222/1222 +f 1145/1145 1308/1308 1146/1146 +f 1309/1309 1147/1147 1146/1146 +f 1223/1223 1147/1147 1309/1309 +f 1062/1062 1223/1223 1224/1224 +f 1310/1310 1148/1148 1224/1224 +f 1310/1310 1225/1225 1148/1148 +f 1225/1225 1311/1311 1149/1149 +f 1150/1150 1149/1149 1312/1312 +f 1226/1226 1313/1313 1064/1064 +f 1314/1314 1226/1226 1150/1150 +f 1151/1151 1227/1227 1143/1143 +f 1227/1227 1064/1064 1313/1313 +f 1315/1315 1153/1153 1070/1070 +f 1228/1228 1316/1316 1065/1065 +f 1228/1228 1152/1152 1317/1317 +f 1065/1065 1316/1316 1229/1229 +f 1230/1230 1153/1153 1318/1318 +f 1152/1152 1230/1230 1317/1317 +f 1229/1229 1316/1316 1068/1068 +f 1231/1231 1068/1068 1316/1316 +f 1231/1231 1260/1260 1095/1095 +f 1154/1154 1319/1319 1232/1232 +f 1320/1320 1069/1069 1232/1232 +f 1233/1233 1069/1069 1320/1320 +f 1234/1234 1321/1321 1070/1070 +f 1322/1322 1234/1234 1156/1156 +f 1156/1156 1235/1235 1323/1323 +f 1071/1071 1233/1233 1235/1235 +f 1236/1236 1072/1072 1168/1168 +f 1157/1157 1236/1236 1324/1324 +f 1157/1157 1324/1324 1163/1163 +f 1238/1238 1158/1158 1237/1237 +f 1162/1162 1325/1325 1159/1159 +f 1160/1160 1159/1159 1325/1325 +f 1160/1160 1326/1326 1240/1240 +f 1241/1241 1076/1076 1240/1240 +f 1327/1327 1077/1077 1241/1241 +f 1077/1077 1327/1327 1242/1242 +f 1242/1242 1243/1243 1079/1079 +f 1161/1161 1328/1328 1237/1237 +f 1161/1161 1243/1243 1329/1329 +f 1239/1239 1325/1325 1162/1162 +f 1330/1330 1244/1244 1163/1163 +f 1331/1331 1164/1164 1244/1244 +f 1164/1164 1331/1331 1239/1239 +f 1332/1332 1165/1165 1238/1238 +f 1246/1246 1081/1081 1245/1245 +f 1245/1245 1165/1165 1333/1333 +f 1334/1334 1166/1166 1246/1246 +f 1334/1334 1247/1247 1166/1166 +f 1247/1247 1335/1335 1167/1167 +f 1167/1167 1335/1335 1154/1154 +f 1168/1168 1169/1169 1336/1336 +f 1169/1169 1248/1248 1337/1337 +f 1084/1084 1249/1249 1248/1248 +f 1338/1338 1172/1172 1170/1170 +f 1250/1250 1339/1339 1170/1170 +f 1085/1085 1251/1251 1250/1250 +f 1251/1251 1171/1171 1340/1340 +f 1341/1341 1173/1173 1172/1172 +f 1307/1307 1171/1171 1052/1052 +f 1173/1173 1342/1342 1249/1249 +f 1343/1343 1252/1252 1009/1009 +f 1344/1344 1253/1253 1091/1091 +f 1253/1253 1343/1343 1009/1009 +f 1255/1255 1254/1254 1010/1010 +f 1254/1254 1345/1345 1174/1174 +f 1175/1175 1252/1252 1346/1346 +f 1347/1347 1255/1255 1175/1175 +f 1256/1256 1348/1348 1176/1176 +f 1092/1092 1258/1258 1256/1256 +f 1349/1349 1257/1257 1176/1176 +f 1257/1257 1344/1344 1091/1091 +f 1350/1350 1258/1258 1093/1093 +f 1259/1259 1094/1094 1260/1260 +f 1093/1093 1259/1259 1350/1350 +f 1263/1263 1015/1015 1261/1261 +f 1261/1261 1174/1174 1345/1345 +f 1097/1097 1264/1264 1262/1262 +f 1263/1263 1351/1351 1177/1177 +f 1264/1264 1177/1177 1351/1351 +f 1293/1293 1179/1179 1127/1127 +f 1179/1179 1352/1352 1265/1265 +f 1267/1267 1099/1099 1265/1265 +f 1266/1266 1180/1180 1353/1353 +f 1354/1354 1180/1180 1267/1267 +f 1355/1355 1181/1181 1266/1266 +f 1268/1268 1181/1181 1355/1355 +f 1182/1182 1184/1184 1356/1356 +f 1182/1182 1356/1356 1183/1183 +f 1269/1269 1357/1357 1103/1103 +f 1101/1101 1358/1358 1269/1269 +f 1270/1270 1183/1183 1359/1359 +f 1360/1360 1101/1101 1270/1270 +f 1271/1271 1361/1361 1104/1104 +f 1103/1103 1362/1362 1271/1271 +f 1185/1185 1363/1363 1186/1186 +f 1104/1104 1361/1361 1272/1272 +f 1364/1364 1185/1185 1272/1272 +f 1365/1365 1273/1273 1105/1105 +f 1273/1273 1366/1366 1184/1184 +f 1105/1105 1268/1268 1365/1365 +f 1187/1187 1186/1186 1363/1363 +f 1188/1188 1187/1187 1367/1367 +f 1193/1193 1188/1188 1368/1368 +f 1110/1110 1277/1277 1274/1274 +f 1283/1283 1115/1115 1274/1274 +f 1369/1369 1108/1108 1275/1275 +f 1276/1276 1370/1370 1109/1109 +f 1276/1276 1108/1108 1371/1371 +f 1277/1277 1189/1189 1372/1372 +f 1189/1189 1278/1278 1373/1373 +f 1374/1374 1190/1190 1191/1191 +f 1374/1374 1278/1278 1190/1190 +f 1279/1279 1109/1109 1370/1370 +f 1279/1279 1370/1370 1191/1191 +f 1280/1280 1375/1375 1192/1192 +f 1112/1112 1281/1281 1280/1280 +f 1376/1376 1281/1281 1193/1193 +f 1282/1282 1192/1192 1375/1375 +f 1113/1113 1282/1282 1275/1275 +f 1194/1194 1377/1377 1195/1195 +f 1378/1378 1194/1194 1283/1283 +f 1284/1284 1195/1195 1377/1377 +f 1284/1284 1285/1285 1031/1031 +f 1221/1221 1196/1196 1379/1379 +f 1380/1380 1196/1196 1285/1285 +f 1286/1286 1117/1117 1262/1262 +f 1381/1381 1198/1198 1197/1197 +f 1286/1286 1381/1381 1197/1197 +f 1198/1198 1382/1382 1287/1287 +f 1287/1287 1383/1383 1118/1118 +f 1199/1199 1201/1201 1200/1200 +f 1288/1288 1384/1384 1199/1199 +f 1385/1385 1288/1288 1118/1118 +f 1289/1289 1201/1201 1199/1199 +f 1120/1120 1289/1289 1290/1290 +f 1386/1386 1202/1202 1122/1122 +f 1122/1122 1290/1290 1387/1387 +f 1291/1291 1292/1292 1125/1125 +f 1291/1291 1202/1202 1386/1386 +f 1203/1203 1388/1388 1204/1204 +f 1292/1292 1388/1388 1203/1203 +f 1294/1294 1206/1206 1204/1204 +f 1389/1389 1293/1293 1205/1205 +f 1205/1205 1207/1207 1390/1390 +f 1391/1391 1207/1207 1294/1294 +f 1208/1208 1392/1392 1295/1295 +f 1130/1130 1295/1295 1296/1296 +f 1209/1209 1296/1296 1393/1393 +f 1209/1209 1394/1394 1297/1297 +f 1132/1132 1297/1297 1300/1300 +f 1298/1298 1395/1395 1133/1133 +f 1299/1299 1298/1298 1046/1046 +f 1299/1299 1210/1210 1396/1396 +f 1210/1210 1300/1300 1397/1397 +f 1301/1301 1133/1133 1395/1395 +f 1301/1301 1340/1340 1140/1140 +f 1211/1211 1214/1214 1398/1398 +f 1392/1392 1208/1208 1211/1211 +f 1136/1136 1302/1302 1214/1214 +f 1399/1399 1302/1302 1212/1212 +f 1303/1303 1400/1400 1212/1212 +f 1303/1303 1213/1213 1306/1306 +f 1304/1304 1401/1401 1138/1138 +f 1401/1401 1305/1305 1138/1138 +f 1402/1402 1215/1215 1305/1305 +f 1216/1216 1215/1215 1306/1306 +f 1307/1307 1140/1140 1340/1340 +f 1304/1304 1218/1218 1403/1403 +f 1218/1218 1227/1227 1404/1404 +f 1221/1221 1219/1219 1220/1220 +f 1222/1222 1219/1219 1405/1405 +f 1222/1222 1405/1405 1308/1308 +f 1146/1146 1308/1308 1406/1406 +f 1406/1406 1309/1309 1146/1146 +f 1407/1407 1223/1223 1309/1309 +f 1223/1223 1408/1408 1224/1224 +f 1224/1224 1408/1408 1310/1310 +f 1225/1225 1310/1310 1311/1311 +f 1409/1409 1149/1149 1311/1311 +f 1149/1149 1409/1409 1312/1312 +f 1150/1150 1312/1312 1410/1410 +f 1411/1411 1313/1313 1226/1226 +f 1226/1226 1314/1314 1412/1412 +f 1314/1314 1150/1150 1410/1410 +f 1227/1227 1313/1313 1413/1413 +f 1315/1315 1318/1318 1153/1153 +f 1315/1315 1070/1070 1414/1414 +f 1228/1228 1415/1415 1316/1316 +f 1228/1228 1317/1317 1416/1416 +f 1318/1318 1417/1417 1230/1230 +f 1317/1317 1230/1230 1417/1417 +f 1231/1231 1316/1316 1418/1418 +f 1231/1231 1419/1419 1260/1260 +f 1319/1319 1154/1154 1335/1335 +f 1319/1319 1420/1420 1232/1232 +f 1320/1320 1232/1232 1420/1420 +f 1235/1235 1233/1233 1320/1320 +f 1234/1234 1421/1421 1321/1321 +f 1321/1321 1414/1414 1070/1070 +f 1234/1234 1322/1322 1422/1422 +f 1156/1156 1423/1423 1322/1322 +f 1323/1323 1235/1235 1424/1424 +f 1323/1323 1423/1423 1156/1156 +f 1168/1168 1336/1336 1236/1236 +f 1236/1236 1425/1425 1324/1324 +f 1324/1324 1330/1330 1163/1163 +f 1237/1237 1332/1332 1238/1238 +f 1325/1325 1426/1426 1160/1160 +f 1326/1326 1160/1160 1426/1426 +f 1427/1427 1240/1240 1326/1326 +f 1241/1241 1240/1240 1428/1428 +f 1327/1327 1241/1241 1429/1429 +f 1430/1430 1242/1242 1327/1327 +f 1431/1431 1243/1243 1242/1242 +f 1161/1161 1432/1432 1328/1328 +f 1328/1328 1332/1332 1237/1237 +f 1243/1243 1433/1433 1329/1329 +f 1161/1161 1329/1329 1432/1432 +f 1331/1331 1325/1325 1239/1239 +f 1244/1244 1330/1330 1434/1434 +f 1331/1331 1244/1244 1435/1435 +f 1332/1332 1333/1333 1165/1165 +f 1436/1436 1246/1246 1245/1245 +f 1245/1245 1333/1333 1436/1436 +f 1437/1437 1334/1334 1246/1246 +f 1247/1247 1334/1334 1438/1438 +f 1438/1438 1335/1335 1247/1247 +f 1336/1336 1169/1169 1337/1337 +f 1337/1337 1248/1248 1439/1439 +f 1248/1248 1249/1249 1440/1440 +f 1172/1172 1338/1338 1341/1341 +f 1338/1338 1170/1170 1441/1441 +f 1441/1441 1170/1170 1339/1339 +f 1339/1339 1250/1250 1442/1442 +f 1251/1251 1443/1443 1250/1250 +f 1171/1171 1307/1307 1340/1340 +f 1301/1301 1251/1251 1340/1340 +f 1342/1342 1173/1173 1341/1341 +f 1249/1249 1342/1342 1440/1440 +f 1343/1343 1346/1346 1252/1252 +f 1253/1253 1344/1344 1444/1444 +f 1444/1444 1343/1343 1253/1253 +f 1254/1254 1255/1255 1445/1445 +f 1254/1254 1446/1446 1345/1345 +f 1175/1175 1346/1346 1347/1347 +f 1347/1347 1447/1447 1255/1255 +f 1348/1348 1256/1256 1448/1448 +f 1176/1176 1348/1348 1449/1449 +f 1258/1258 1450/1450 1256/1256 +f 1176/1176 1449/1449 1349/1349 +f 1257/1257 1349/1349 1451/1451 +f 1344/1344 1257/1257 1452/1452 +f 1450/1450 1258/1258 1350/1350 +f 1260/1260 1350/1350 1259/1259 +f 1345/1345 1263/1263 1261/1261 +f 1262/1262 1264/1264 1286/1286 +f 1351/1351 1263/1263 1453/1453 +f 1264/1264 1351/1351 1286/1286 +f 1179/1179 1293/1293 1352/1352 +f 1454/1454 1265/1265 1352/1352 +f 1265/1265 1455/1455 1267/1267 +f 1353/1353 1180/1180 1354/1354 +f 1353/1353 1456/1456 1266/1266 +f 1267/1267 1455/1455 1354/1354 +f 1355/1355 1266/1266 1457/1457 +f 1355/1355 1365/1365 1268/1268 +f 1356/1356 1184/1184 1359/1359 +f 1359/1359 1183/1183 1356/1356 +f 1357/1357 1362/1362 1103/1103 +f 1458/1458 1357/1357 1269/1269 +f 1269/1269 1358/1358 1458/1458 +f 1459/1459 1358/1358 1101/1101 +f 1270/1270 1359/1359 1460/1460 +f 1360/1360 1459/1459 1101/1101 +f 1461/1461 1360/1360 1270/1270 +f 1462/1462 1361/1361 1271/1271 +f 1463/1463 1271/1271 1362/1362 +f 1185/1185 1364/1364 1363/1363 +f 1464/1464 1272/1272 1361/1361 +f 1272/1272 1464/1464 1364/1364 +f 1365/1365 1465/1465 1273/1273 +f 1465/1465 1366/1366 1273/1273 +f 1359/1359 1184/1184 1366/1366 +f 1187/1187 1363/1363 1367/1367 +f 1367/1367 1368/1368 1188/1188 +f 1376/1376 1193/1193 1368/1368 +f 1274/1274 1277/1277 1372/1372 +f 1274/1274 1466/1466 1283/1283 +f 1108/1108 1369/1369 1371/1371 +f 1275/1275 1375/1375 1369/1369 +f 1276/1276 1467/1467 1370/1370 +f 1276/1276 1371/1371 1467/1467 +f 1372/1372 1189/1189 1468/1468 +f 1373/1373 1469/1469 1189/1189 +f 1373/1373 1278/1278 1470/1470 +f 1471/1471 1374/1374 1191/1191 +f 1278/1278 1374/1374 1470/1470 +f 1191/1191 1370/1370 1471/1471 +f 1472/1472 1375/1375 1280/1280 +f 1280/1280 1281/1281 1473/1473 +f 1281/1281 1376/1376 1473/1473 +f 1282/1282 1375/1375 1275/1275 +f 1378/1378 1377/1377 1194/1194 +f 1378/1378 1283/1283 1474/1474 +f 1284/1284 1377/1377 1380/1380 +f 1380/1380 1285/1285 1284/1284 +f 1475/1475 1379/1379 1196/1196 +f 1379/1379 1476/1476 1221/1221 +f 1475/1475 1196/1196 1380/1380 +f 1198/1198 1381/1381 1382/1382 +f 1286/1286 1477/1477 1381/1381 +f 1382/1382 1478/1478 1287/1287 +f 1383/1383 1385/1385 1118/1118 +f 1287/1287 1479/1479 1383/1383 +f 1480/1480 1384/1384 1288/1288 +f 1384/1384 1289/1289 1199/1199 +f 1385/1385 1481/1481 1288/1288 +f 1290/1290 1289/1289 1387/1387 +f 1386/1386 1122/1122 1482/1482 +f 1482/1482 1122/1122 1387/1387 +f 1292/1292 1291/1291 1483/1483 +f 1483/1483 1291/1291 1386/1386 +f 1484/1484 1204/1204 1388/1388 +f 1388/1388 1292/1292 1483/1483 +f 1485/1485 1294/1294 1204/1204 +f 1486/1486 1389/1389 1205/1205 +f 1487/1487 1293/1293 1389/1389 +f 1207/1207 1391/1391 1390/1390 +f 1486/1486 1205/1205 1390/1390 +f 1294/1294 1488/1488 1391/1391 +f 1489/1489 1295/1295 1392/1392 +f 1295/1295 1393/1393 1296/1296 +f 1209/1209 1393/1393 1394/1394 +f 1297/1297 1394/1394 1490/1490 +f 1300/1300 1297/1297 1490/1490 +f 1395/1395 1298/1298 1442/1442 +f 1397/1397 1298/1298 1299/1299 +f 1210/1210 1397/1397 1396/1396 +f 1397/1397 1299/1299 1396/1396 +f 1300/1300 1491/1491 1397/1397 +f 1251/1251 1301/1301 1395/1395 +f 1398/1398 1214/1214 1492/1492 +f 1398/1398 1493/1493 1211/1211 +f 1493/1493 1392/1392 1211/1211 +f 1214/1214 1302/1302 1494/1494 +f 1212/1212 1495/1495 1399/1399 +f 1399/1399 1494/1494 1302/1302 +f 1212/1212 1400/1400 1496/1496 +f 1400/1400 1303/1303 1497/1497 +f 1303/1303 1306/1306 1497/1497 +f 1401/1401 1304/1304 1403/1403 +f 1305/1305 1401/1401 1498/1498 +f 1215/1215 1402/1402 1499/1499 +f 1305/1305 1500/1500 1402/1402 +f 1499/1499 1306/1306 1215/1215 +f 1404/1404 1403/1403 1218/1218 +f 1404/1404 1227/1227 1501/1501 +f 1502/1502 1219/1219 1221/1221 +f 1405/1405 1219/1219 1502/1502 +f 1503/1503 1308/1308 1405/1405 +f 1504/1504 1406/1406 1308/1308 +f 1309/1309 1406/1406 1505/1505 +f 1223/1223 1407/1407 1408/1408 +f 1309/1309 1505/1505 1407/1407 +f 1310/1310 1408/1408 1506/1506 +f 1311/1311 1310/1310 1507/1507 +f 1409/1409 1311/1311 1507/1507 +f 1409/1409 1410/1410 1312/1312 +f 1413/1413 1313/1313 1411/1411 +f 1411/1411 1226/1226 1412/1412 +f 1508/1508 1412/1412 1314/1314 +f 1410/1410 1509/1509 1314/1314 +f 1227/1227 1413/1413 1501/1501 +f 1318/1318 1315/1315 1510/1510 +f 1414/1414 1511/1511 1315/1315 +f 1415/1415 1228/1228 1416/1416 +f 1316/1316 1415/1415 1418/1418 +f 1416/1416 1317/1317 1512/1512 +f 1318/1318 1513/1513 1417/1417 +f 1417/1417 1514/1514 1317/1317 +f 1419/1419 1231/1231 1418/1418 +f 1350/1350 1260/1260 1419/1419 +f 1319/1319 1335/1335 1515/1515 +f 1420/1420 1319/1319 1516/1516 +f 1420/1420 1517/1517 1320/1320 +f 1320/1320 1517/1517 1235/1235 +f 1518/1518 1421/1421 1234/1234 +f 1421/1421 1519/1519 1321/1321 +f 1414/1414 1321/1321 1519/1519 +f 1322/1322 1520/1520 1422/1422 +f 1422/1422 1518/1518 1234/1234 +f 1520/1520 1322/1322 1423/1423 +f 1235/1235 1517/1517 1424/1424 +f 1424/1424 1521/1521 1323/1323 +f 1423/1423 1323/1323 1522/1522 +f 1523/1523 1236/1236 1336/1336 +f 1425/1425 1236/1236 1523/1523 +f 1330/1330 1324/1324 1425/1425 +f 1426/1426 1325/1325 1331/1331 +f 1524/1524 1326/1326 1426/1426 +f 1240/1240 1427/1427 1428/1428 +f 1326/1326 1525/1525 1427/1427 +f 1241/1241 1428/1428 1429/1429 +f 1526/1526 1327/1327 1429/1429 +f 1431/1431 1242/1242 1430/1430 +f 1430/1430 1327/1327 1526/1526 +f 1431/1431 1433/1433 1243/1243 +f 1432/1432 1527/1527 1328/1328 +f 1527/1527 1332/1332 1328/1328 +f 1528/1528 1329/1329 1433/1433 +f 1432/1432 1329/1329 1528/1528 +f 1434/1434 1330/1330 1529/1529 +f 1435/1435 1244/1244 1434/1434 +f 1435/1435 1530/1530 1331/1331 +f 1332/1332 1527/1527 1333/1333 +f 1246/1246 1436/1436 1437/1437 +f 1436/1436 1333/1333 1432/1432 +f 1531/1531 1334/1334 1437/1437 +f 1438/1438 1334/1334 1532/1532 +f 1335/1335 1438/1438 1515/1515 +f 1336/1336 1337/1337 1533/1533 +f 1534/1534 1439/1439 1248/1248 +f 1337/1337 1439/1439 1535/1535 +f 1534/1534 1248/1248 1440/1440 +f 1338/1338 1441/1441 1341/1341 +f 1441/1441 1339/1339 1536/1536 +f 1250/1250 1443/1443 1442/1442 +f 1442/1442 1491/1491 1339/1339 +f 1443/1443 1251/1251 1395/1395 +f 1342/1342 1341/1341 1441/1441 +f 1440/1440 1342/1342 1537/1537 +f 1346/1346 1343/1343 1538/1538 +f 1344/1344 1452/1452 1444/1444 +f 1444/1444 1538/1538 1343/1343 +f 1445/1445 1255/1255 1539/1539 +f 1445/1445 1446/1446 1254/1254 +f 1446/1446 1540/1540 1345/1345 +f 1346/1346 1541/1541 1347/1347 +f 1347/1347 1542/1542 1447/1447 +f 1539/1539 1255/1255 1447/1447 +f 1256/1256 1450/1450 1448/1448 +f 1543/1543 1348/1348 1448/1448 +f 1449/1449 1348/1348 1543/1543 +f 1349/1349 1449/1449 1543/1543 +f 1349/1349 1544/1544 1451/1451 +f 1452/1452 1257/1257 1451/1451 +f 1350/1350 1419/1419 1450/1450 +f 1263/1263 1345/1345 1540/1540 +f 1351/1351 1453/1453 1545/1545 +f 1453/1453 1263/1263 1540/1540 +f 1477/1477 1286/1286 1351/1351 +f 1352/1352 1293/1293 1487/1487 +f 1265/1265 1454/1454 1455/1455 +f 1546/1546 1454/1454 1352/1352 +f 1456/1456 1353/1353 1354/1354 +f 1266/1266 1456/1456 1457/1457 +f 1354/1354 1455/1455 1547/1547 +f 1365/1365 1355/1355 1457/1457 +f 1357/1357 1548/1548 1362/1362 +f 1357/1357 1458/1458 1548/1548 +f 1458/1458 1358/1358 1549/1549 +f 1358/1358 1459/1459 1549/1549 +f 1366/1366 1460/1460 1359/1359 +f 1270/1270 1460/1460 1550/1550 +f 1360/1360 1551/1551 1459/1459 +f 1461/1461 1270/1270 1550/1550 +f 1461/1461 1552/1552 1360/1360 +f 1462/1462 1553/1553 1361/1361 +f 1462/1462 1271/1271 1463/1463 +f 1362/1362 1548/1548 1463/1463 +f 1554/1554 1363/1363 1364/1364 +f 1464/1464 1361/1361 1555/1555 +f 1554/1554 1364/1364 1464/1464 +f 1457/1457 1465/1465 1365/1365 +f 1556/1556 1366/1366 1465/1465 +f 1367/1367 1363/1363 1557/1557 +f 1557/1557 1368/1368 1367/1367 +f 1368/1368 1558/1558 1376/1376 +f 1372/1372 1466/1466 1274/1274 +f 1283/1283 1466/1466 1559/1559 +f 1369/1369 1560/1560 1371/1371 +f 1472/1472 1369/1369 1375/1375 +f 1370/1370 1467/1467 1561/1561 +f 1371/1371 1562/1562 1467/1467 +f 1468/1468 1189/1189 1469/1469 +f 1468/1468 1563/1563 1372/1372 +f 1469/1469 1373/1373 1468/1468 +f 1564/1564 1373/1373 1470/1470 +f 1565/1565 1374/1374 1471/1471 +f 1470/1470 1374/1374 1565/1565 +f 1561/1561 1471/1471 1370/1370 +f 1473/1473 1472/1472 1280/1280 +f 1558/1558 1473/1473 1376/1376 +f 1377/1377 1378/1378 1566/1566 +f 1474/1474 1283/1283 1559/1559 +f 1567/1567 1378/1378 1474/1474 +f 1568/1568 1380/1380 1377/1377 +f 1569/1569 1379/1379 1475/1475 +f 1476/1476 1502/1502 1221/1221 +f 1570/1570 1476/1476 1379/1379 +f 1475/1475 1380/1380 1569/1569 +f 1571/1571 1382/1382 1381/1381 +f 1381/1381 1477/1477 1571/1571 +f 1478/1478 1382/1382 1571/1571 +f 1478/1478 1479/1479 1287/1287 +f 1383/1383 1572/1572 1385/1385 +f 1573/1573 1383/1383 1479/1479 +f 1574/1574 1384/1384 1480/1480 +f 1575/1575 1289/1289 1384/1384 +f 1481/1481 1385/1385 1572/1572 +f 1289/1289 1575/1575 1387/1387 +f 1482/1482 1576/1576 1386/1386 +f 1387/1387 1574/1574 1482/1482 +f 1576/1576 1483/1483 1386/1386 +f 1204/1204 1484/1484 1577/1577 +f 1484/1484 1388/1388 1578/1578 +f 1483/1483 1579/1579 1388/1388 +f 1485/1485 1488/1488 1294/1294 +f 1580/1580 1485/1485 1204/1204 +f 1486/1486 1487/1487 1389/1389 +f 1581/1581 1390/1390 1391/1391 +f 1486/1486 1390/1390 1582/1582 +f 1583/1583 1391/1391 1488/1488 +f 1392/1392 1584/1584 1489/1489 +f 1393/1393 1295/1295 1489/1489 +f 1394/1394 1393/1393 1489/1489 +f 1585/1585 1490/1490 1394/1394 +f 1300/1300 1490/1490 1586/1586 +f 1395/1395 1442/1442 1443/1443 +f 1298/1298 1397/1397 1442/1442 +f 1491/1491 1300/1300 1586/1586 +f 1397/1397 1491/1491 1442/1442 +f 1587/1587 1398/1398 1492/1492 +f 1492/1492 1214/1214 1494/1494 +f 1493/1493 1398/1398 1588/1588 +f 1493/1493 1584/1584 1392/1392 +f 1496/1496 1495/1495 1212/1212 +f 1495/1495 1589/1589 1399/1399 +f 1589/1589 1494/1494 1399/1399 +f 1496/1496 1400/1400 1590/1590 +f 1497/1497 1591/1591 1400/1400 +f 1306/1306 1592/1592 1497/1497 +f 1401/1401 1403/1403 1593/1593 +f 1498/1498 1401/1401 1593/1593 +f 1498/1498 1500/1500 1305/1305 +f 1499/1499 1402/1402 1594/1594 +f 1594/1594 1402/1402 1500/1500 +f 1592/1592 1306/1306 1499/1499 +f 1404/1404 1595/1595 1403/1403 +f 1501/1501 1596/1596 1404/1404 +f 1597/1597 1405/1405 1502/1502 +f 1308/1308 1503/1503 1504/1504 +f 1405/1405 1597/1597 1503/1503 +f 1505/1505 1406/1406 1504/1504 +f 1408/1408 1407/1407 1598/1598 +f 1505/1505 1598/1598 1407/1407 +f 1507/1507 1310/1310 1506/1506 +f 1408/1408 1598/1598 1506/1506 +f 1409/1409 1507/1507 1509/1509 +f 1509/1509 1410/1410 1409/1409 +f 1411/1411 1599/1599 1413/1413 +f 1411/1411 1412/1412 1600/1600 +f 1508/1508 1600/1600 1412/1412 +f 1508/1508 1314/1314 1509/1509 +f 1601/1601 1501/1501 1413/1413 +f 1513/1513 1318/1318 1510/1510 +f 1510/1510 1315/1315 1511/1511 +f 1511/1511 1414/1414 1602/1602 +f 1415/1415 1416/1416 1603/1603 +f 1418/1418 1415/1415 1603/1603 +f 1604/1604 1416/1416 1512/1512 +f 1317/1317 1514/1514 1512/1512 +f 1417/1417 1513/1513 1605/1605 +f 1514/1514 1417/1417 1605/1605 +f 1419/1419 1418/1418 1603/1603 +f 1606/1606 1319/1319 1515/1515 +f 1516/1516 1319/1319 1607/1607 +f 1516/1516 1608/1608 1420/1420 +f 1517/1517 1420/1420 1608/1608 +f 1519/1519 1421/1421 1518/1518 +f 1602/1602 1414/1414 1519/1519 +f 1520/1520 1609/1609 1422/1422 +f 1609/1609 1518/1518 1422/1422 +f 1423/1423 1610/1610 1520/1520 +f 1517/1517 1608/1608 1424/1424 +f 1323/1323 1521/1521 1522/1522 +f 1611/1611 1521/1521 1424/1424 +f 1610/1610 1423/1423 1522/1522 +f 1612/1612 1523/1523 1336/1336 +f 1613/1613 1425/1425 1523/1523 +f 1529/1529 1330/1330 1425/1425 +f 1614/1614 1426/1426 1331/1331 +f 1524/1524 1525/1525 1326/1326 +f 1524/1524 1426/1426 1614/1614 +f 1615/1615 1428/1428 1427/1427 +f 1616/1616 1427/1427 1525/1525 +f 1617/1617 1429/1429 1428/1428 +f 1526/1526 1429/1429 1618/1618 +f 1431/1431 1430/1430 1433/1433 +f 1526/1526 1619/1619 1430/1430 +f 1432/1432 1333/1333 1527/1527 +f 1433/1433 1620/1620 1528/1528 +f 1432/1432 1528/1528 1621/1621 +f 1529/1529 1622/1622 1434/1434 +f 1435/1435 1434/1434 1623/1623 +f 1530/1530 1614/1614 1331/1331 +f 1530/1530 1435/1435 1623/1623 +f 1437/1437 1436/1436 1624/1624 +f 1432/1432 1621/1621 1436/1436 +f 1624/1624 1531/1531 1437/1437 +f 1334/1334 1531/1531 1532/1532 +f 1515/1515 1438/1438 1532/1532 +f 1533/1533 1337/1337 1625/1625 +f 1336/1336 1533/1533 1612/1612 +f 1439/1439 1534/1534 1440/1440 +f 1337/1337 1535/1535 1625/1625 +f 1439/1439 1440/1440 1535/1535 +f 1536/1536 1626/1626 1441/1441 +f 1339/1339 1627/1627 1536/1536 +f 1586/1586 1339/1339 1491/1491 +f 1441/1441 1626/1626 1342/1342 +f 1537/1537 1342/1342 1626/1626 +f 1535/1535 1440/1440 1537/1537 +f 1538/1538 1628/1628 1346/1346 +f 1629/1629 1444/1444 1452/1452 +f 1629/1629 1538/1538 1444/1444 +f 1539/1539 1630/1630 1445/1445 +f 1631/1631 1446/1446 1445/1445 +f 1632/1632 1540/1540 1446/1446 +f 1541/1541 1346/1346 1628/1628 +f 1541/1541 1633/1633 1347/1347 +f 1633/1633 1542/1542 1347/1347 +f 1539/1539 1447/1447 1542/1542 +f 1634/1634 1448/1448 1450/1450 +f 1543/1543 1448/1448 1635/1635 +f 1636/1636 1349/1349 1543/1543 +f 1349/1349 1637/1637 1544/1544 +f 1451/1451 1544/1544 1638/1638 +f 1629/1629 1452/1452 1451/1451 +f 1419/1419 1634/1634 1450/1450 +f 1545/1545 1453/1453 1540/1540 +f 1477/1477 1351/1351 1545/1545 +f 1546/1546 1352/1352 1487/1487 +f 1455/1455 1454/1454 1639/1639 +f 1546/1546 1640/1640 1454/1454 +f 1641/1641 1456/1456 1354/1354 +f 1456/1456 1642/1642 1457/1457 +f 1455/1455 1643/1643 1547/1547 +f 1547/1547 1641/1641 1354/1354 +f 1458/1458 1644/1644 1548/1548 +f 1644/1644 1458/1458 1549/1549 +f 1549/1549 1459/1459 1645/1645 +f 1460/1460 1366/1366 1646/1646 +f 1550/1550 1460/1460 1647/1647 +f 1552/1552 1551/1551 1360/1360 +f 1551/1551 1645/1645 1459/1459 +f 1550/1550 1648/1648 1461/1461 +f 1552/1552 1461/1461 1649/1649 +f 1462/1462 1650/1650 1553/1553 +f 1553/1553 1651/1651 1361/1361 +f 1652/1652 1462/1462 1463/1463 +f 1653/1653 1463/1463 1548/1548 +f 1654/1654 1363/1363 1554/1554 +f 1555/1555 1361/1361 1651/1651 +f 1555/1555 1655/1655 1464/1464 +f 1554/1554 1464/1464 1655/1655 +f 1656/1656 1465/1465 1457/1457 +f 1646/1646 1366/1366 1556/1556 +f 1465/1465 1656/1656 1556/1556 +f 1363/1363 1654/1654 1557/1557 +f 1557/1557 1657/1657 1368/1368 +f 1657/1657 1558/1558 1368/1368 +f 1372/1372 1563/1563 1466/1466 +f 1658/1658 1559/1559 1466/1466 +f 1560/1560 1369/1369 1659/1659 +f 1562/1562 1371/1371 1560/1560 +f 1660/1660 1369/1369 1472/1472 +f 1661/1661 1561/1561 1467/1467 +f 1467/1467 1562/1562 1560/1560 +f 1373/1373 1563/1563 1468/1468 +f 1565/1565 1564/1564 1470/1470 +f 1662/1662 1373/1373 1564/1564 +f 1565/1565 1471/1471 1561/1561 +f 1663/1663 1472/1472 1473/1473 +f 1473/1473 1558/1558 1664/1664 +f 1378/1378 1567/1567 1566/1566 +f 1566/1566 1665/1665 1377/1377 +f 1474/1474 1559/1559 1658/1658 +f 1666/1666 1567/1567 1474/1474 +f 1569/1569 1380/1380 1568/1568 +f 1377/1377 1667/1667 1568/1568 +f 1570/1570 1379/1379 1569/1569 +f 1476/1476 1668/1668 1502/1502 +f 1570/1570 1669/1669 1476/1476 +f 1477/1477 1670/1670 1571/1571 +f 1670/1670 1478/1478 1571/1571 +f 1573/1573 1479/1479 1478/1478 +f 1573/1573 1572/1572 1383/1383 +f 1574/1574 1575/1575 1384/1384 +f 1574/1574 1480/1480 1671/1671 +f 1672/1672 1481/1481 1572/1572 +f 1575/1575 1574/1574 1387/1387 +f 1576/1576 1482/1482 1673/1673 +f 1482/1482 1574/1574 1673/1673 +f 1579/1579 1483/1483 1576/1576 +f 1577/1577 1580/1580 1204/1204 +f 1484/1484 1674/1674 1577/1577 +f 1578/1578 1675/1675 1484/1484 +f 1579/1579 1578/1578 1388/1388 +f 1488/1488 1485/1485 1676/1676 +f 1580/1580 1676/1676 1485/1485 +f 1677/1677 1487/1487 1486/1486 +f 1581/1581 1391/1391 1678/1678 +f 1390/1390 1581/1581 1679/1679 +f 1677/1677 1486/1486 1582/1582 +f 1582/1582 1390/1390 1680/1680 +f 1676/1676 1583/1583 1488/1488 +f 1681/1681 1391/1391 1583/1583 +f 1584/1584 1585/1585 1489/1489 +f 1394/1394 1489/1489 1585/1585 +f 1682/1682 1490/1490 1585/1585 +f 1490/1490 1682/1682 1586/1586 +f 1398/1398 1587/1587 1588/1588 +f 1683/1683 1587/1587 1492/1492 +f 1684/1684 1492/1492 1494/1494 +f 1584/1584 1493/1493 1588/1588 +f 1590/1590 1495/1495 1496/1496 +f 1685/1685 1589/1589 1495/1495 +f 1589/1589 1686/1686 1494/1494 +f 1400/1400 1687/1687 1590/1590 +f 1592/1592 1591/1591 1497/1497 +f 1687/1687 1400/1400 1591/1591 +f 1595/1595 1593/1593 1403/1403 +f 1593/1593 1688/1688 1498/1498 +f 1500/1500 1498/1498 1689/1689 +f 1690/1690 1499/1499 1594/1594 +f 1500/1500 1691/1691 1594/1594 +f 1690/1690 1592/1592 1499/1499 +f 1404/1404 1596/1596 1595/1595 +f 1596/1596 1501/1501 1692/1692 +f 1597/1597 1502/1502 1668/1668 +f 1504/1504 1503/1503 1693/1693 +f 1693/1693 1503/1503 1597/1597 +f 1504/1504 1694/1694 1505/1505 +f 1598/1598 1505/1505 1695/1695 +f 1696/1696 1507/1507 1506/1506 +f 1598/1598 1697/1697 1506/1506 +f 1698/1698 1509/1509 1507/1507 +f 1699/1699 1599/1599 1411/1411 +f 1413/1413 1599/1599 1601/1601 +f 1600/1600 1700/1700 1411/1411 +f 1508/1508 1701/1701 1600/1600 +f 1702/1702 1508/1508 1509/1509 +f 1501/1501 1601/1601 1692/1692 +f 1703/1703 1513/1513 1510/1510 +f 1704/1704 1510/1510 1511/1511 +f 1704/1704 1511/1511 1602/1602 +f 1603/1603 1416/1416 1604/1604 +f 1512/1512 1705/1705 1604/1604 +f 1514/1514 1706/1706 1512/1512 +f 1513/1513 1707/1707 1605/1605 +f 1706/1706 1514/1514 1605/1605 +f 1634/1634 1419/1419 1603/1603 +f 1606/1606 1515/1515 1708/1708 +f 1607/1607 1319/1319 1606/1606 +f 1607/1607 1709/1709 1516/1516 +f 1710/1710 1608/1608 1516/1516 +f 1519/1519 1518/1518 1711/1711 +f 1519/1519 1711/1711 1602/1602 +f 1712/1712 1609/1609 1520/1520 +f 1609/1609 1711/1711 1518/1518 +f 1713/1713 1520/1520 1610/1610 +f 1608/1608 1714/1714 1424/1424 +f 1715/1715 1522/1522 1521/1521 +f 1611/1611 1716/1716 1521/1521 +f 1714/1714 1611/1611 1424/1424 +f 1522/1522 1713/1713 1610/1610 +f 1523/1523 1612/1612 1717/1717 +f 1425/1425 1613/1613 1718/1718 +f 1613/1613 1523/1523 1719/1719 +f 1529/1529 1425/1425 1720/1720 +f 1524/1524 1614/1614 1525/1525 +f 1428/1428 1615/1615 1617/1617 +f 1615/1615 1427/1427 1721/1721 +f 1427/1427 1616/1616 1721/1721 +f 1616/1616 1525/1525 1722/1722 +f 1429/1429 1617/1617 1723/1723 +f 1618/1618 1724/1724 1526/1526 +f 1618/1618 1429/1429 1723/1723 +f 1433/1433 1430/1430 1725/1725 +f 1619/1619 1526/1526 1726/1726 +f 1430/1430 1619/1619 1725/1725 +f 1727/1727 1528/1528 1620/1620 +f 1620/1620 1433/1433 1728/1728 +f 1528/1528 1729/1729 1621/1621 +f 1720/1720 1622/1622 1529/1529 +f 1730/1730 1434/1434 1622/1622 +f 1730/1730 1623/1623 1434/1434 +f 1722/1722 1614/1614 1530/1530 +f 1623/1623 1731/1731 1530/1530 +f 1624/1624 1436/1436 1732/1732 +f 1732/1732 1436/1436 1621/1621 +f 1624/1624 1733/1733 1531/1531 +f 1531/1531 1734/1734 1532/1532 +f 1734/1734 1515/1515 1532/1532 +f 1625/1625 1612/1612 1533/1533 +f 1735/1735 1625/1625 1535/1535 +f 1736/1736 1626/1626 1536/1536 +f 1627/1627 1339/1339 1682/1682 +f 1536/1536 1627/1627 1737/1737 +f 1682/1682 1339/1339 1586/1586 +f 1537/1537 1626/1626 1736/1736 +f 1738/1738 1535/1535 1537/1537 +f 1538/1538 1739/1739 1628/1628 +f 1629/1629 1638/1638 1538/1538 +f 1630/1630 1631/1631 1445/1445 +f 1542/1542 1630/1630 1539/1539 +f 1446/1446 1631/1631 1740/1740 +f 1540/1540 1632/1632 1741/1741 +f 1632/1632 1446/1446 1740/1740 +f 1541/1541 1628/1628 1739/1739 +f 1541/1541 1742/1742 1633/1633 +f 1743/1743 1542/1542 1633/1633 +f 1634/1634 1744/1744 1448/1448 +f 1448/1448 1744/1744 1635/1635 +f 1543/1543 1635/1635 1745/1745 +f 1637/1637 1349/1349 1636/1636 +f 1745/1745 1636/1636 1543/1543 +f 1544/1544 1637/1637 1746/1746 +f 1544/1544 1747/1747 1638/1638 +f 1629/1629 1451/1451 1638/1638 +f 1545/1545 1540/1540 1741/1741 +f 1748/1748 1477/1477 1545/1545 +f 1749/1749 1546/1546 1487/1487 +f 1454/1454 1640/1640 1639/1639 +f 1639/1639 1750/1750 1455/1455 +f 1640/1640 1546/1546 1749/1749 +f 1642/1642 1456/1456 1641/1641 +f 1457/1457 1642/1642 1751/1751 +f 1752/1752 1643/1643 1455/1455 +f 1643/1643 1753/1753 1547/1547 +f 1641/1641 1547/1547 1753/1753 +f 1754/1754 1548/1548 1644/1644 +f 1755/1755 1644/1644 1549/1549 +f 1549/1549 1645/1645 1755/1755 +f 1756/1756 1460/1460 1646/1646 +f 1460/1460 1756/1756 1647/1647 +f 1757/1757 1550/1550 1647/1647 +f 1551/1551 1552/1552 1758/1758 +f 1759/1759 1645/1645 1551/1551 +f 1760/1760 1461/1461 1648/1648 +f 1757/1757 1648/1648 1550/1550 +f 1649/1649 1461/1461 1761/1761 +f 1758/1758 1552/1552 1649/1649 +f 1553/1553 1650/1650 1762/1762 +f 1650/1650 1462/1462 1652/1652 +f 1651/1651 1553/1553 1762/1762 +f 1463/1463 1653/1653 1652/1652 +f 1754/1754 1653/1653 1548/1548 +f 1554/1554 1763/1763 1654/1654 +f 1762/1762 1555/1555 1651/1651 +f 1763/1763 1655/1655 1555/1555 +f 1655/1655 1763/1763 1554/1554 +f 1751/1751 1656/1656 1457/1457 +f 1764/1764 1646/1646 1556/1556 +f 1765/1765 1556/1556 1656/1656 +f 1654/1654 1766/1766 1557/1557 +f 1557/1557 1766/1766 1657/1657 +f 1664/1664 1558/1558 1657/1657 +f 1563/1563 1658/1658 1466/1466 +f 1660/1660 1659/1659 1369/1369 +f 1659/1659 1767/1767 1560/1560 +f 1472/1472 1663/1663 1660/1660 +f 1767/1767 1661/1661 1467/1467 +f 1661/1661 1768/1768 1561/1561 +f 1560/1560 1767/1767 1467/1467 +f 1373/1373 1662/1662 1563/1563 +f 1565/1565 1769/1769 1564/1564 +f 1769/1769 1662/1662 1564/1564 +f 1565/1565 1561/1561 1768/1768 +f 1663/1663 1473/1473 1664/1664 +f 1770/1770 1566/1566 1567/1567 +f 1771/1771 1665/1665 1566/1566 +f 1667/1667 1377/1377 1665/1665 +f 1658/1658 1666/1666 1474/1474 +f 1567/1567 1666/1666 1770/1770 +f 1568/1568 1667/1667 1569/1569 +f 1569/1569 1772/1772 1570/1570 +f 1669/1669 1668/1668 1476/1476 +f 1570/1570 1773/1773 1669/1669 +f 1477/1477 1774/1774 1670/1670 +f 1670/1670 1775/1775 1478/1478 +f 1478/1478 1775/1775 1573/1573 +f 1572/1572 1573/1573 1776/1776 +f 1671/1671 1480/1480 1777/1777 +f 1778/1778 1574/1574 1671/1671 +f 1779/1779 1672/1672 1572/1572 +f 1778/1778 1576/1576 1673/1673 +f 1574/1574 1778/1778 1673/1673 +f 1778/1778 1579/1579 1576/1576 +f 1674/1674 1580/1580 1577/1577 +f 1675/1675 1674/1674 1484/1484 +f 1675/1675 1578/1578 1780/1780 +f 1579/1579 1671/1671 1578/1578 +f 1676/1676 1580/1580 1781/1781 +f 1677/1677 1749/1749 1487/1487 +f 1391/1391 1681/1681 1678/1678 +f 1581/1581 1678/1678 1679/1679 +f 1679/1679 1680/1680 1390/1390 +f 1582/1582 1749/1749 1677/1677 +f 1582/1582 1680/1680 1782/1782 +f 1583/1583 1676/1676 1783/1783 +f 1784/1784 1681/1681 1583/1583 +f 1588/1588 1585/1585 1584/1584 +f 1585/1585 1785/1785 1682/1682 +f 1588/1588 1587/1587 1683/1683 +f 1684/1684 1683/1683 1492/1492 +f 1786/1786 1684/1684 1494/1494 +f 1495/1495 1590/1590 1787/1787 +f 1788/1788 1589/1589 1685/1685 +f 1495/1495 1787/1787 1685/1685 +f 1589/1589 1788/1788 1686/1686 +f 1786/1786 1494/1494 1686/1686 +f 1590/1590 1687/1687 1789/1789 +f 1592/1592 1790/1790 1591/1591 +f 1790/1790 1687/1687 1591/1591 +f 1791/1791 1593/1593 1595/1595 +f 1498/1498 1688/1688 1792/1792 +f 1793/1793 1688/1688 1593/1593 +f 1498/1498 1792/1792 1689/1689 +f 1691/1691 1500/1500 1689/1689 +f 1690/1690 1594/1594 1794/1794 +f 1691/1691 1795/1795 1594/1594 +f 1690/1690 1790/1790 1592/1592 +f 1595/1595 1596/1596 1796/1796 +f 1692/1692 1797/1797 1596/1596 +f 1597/1597 1668/1668 1798/1798 +f 1504/1504 1693/1693 1799/1799 +f 1597/1597 1798/1798 1693/1693 +f 1799/1799 1694/1694 1504/1504 +f 1694/1694 1800/1800 1505/1505 +f 1598/1598 1695/1695 1697/1697 +f 1695/1695 1505/1505 1800/1800 +f 1801/1801 1507/1507 1696/1696 +f 1697/1697 1696/1696 1506/1506 +f 1698/1698 1507/1507 1802/1802 +f 1803/1803 1509/1509 1698/1698 +f 1699/1699 1804/1804 1599/1599 +f 1411/1411 1700/1700 1699/1699 +f 1601/1601 1599/1599 1804/1804 +f 1600/1600 1805/1805 1700/1700 +f 1702/1702 1701/1701 1508/1508 +f 1806/1806 1600/1600 1701/1701 +f 1509/1509 1803/1803 1702/1702 +f 1601/1601 1807/1807 1692/1692 +f 1513/1513 1703/1703 1707/1707 +f 1704/1704 1703/1703 1510/1510 +f 1602/1602 1808/1808 1704/1704 +f 1809/1809 1603/1603 1604/1604 +f 1512/1512 1706/1706 1705/1705 +f 1705/1705 1810/1810 1604/1604 +f 1605/1605 1707/1707 1811/1811 +f 1706/1706 1605/1605 1811/1811 +f 1744/1744 1634/1634 1603/1603 +f 1607/1607 1606/1606 1708/1708 +f 1515/1515 1734/1734 1708/1708 +f 1812/1812 1709/1709 1607/1607 +f 1709/1709 1710/1710 1516/1516 +f 1608/1608 1710/1710 1714/1714 +f 1602/1602 1711/1711 1808/1808 +f 1813/1813 1609/1609 1712/1712 +f 1712/1712 1520/1520 1814/1814 +f 1813/1813 1711/1711 1609/1609 +f 1520/1520 1713/1713 1814/1814 +f 1522/1522 1715/1715 1713/1713 +f 1815/1815 1715/1715 1521/1521 +f 1716/1716 1611/1611 1816/1816 +f 1521/1521 1716/1716 1815/1815 +f 1714/1714 1817/1817 1611/1611 +f 1523/1523 1717/1717 1818/1818 +f 1612/1612 1625/1625 1717/1717 +f 1425/1425 1718/1718 1720/1720 +f 1718/1718 1613/1613 1819/1819 +f 1719/1719 1523/1523 1820/1820 +f 1719/1719 1819/1819 1613/1613 +f 1525/1525 1614/1614 1722/1722 +f 1615/1615 1723/1723 1617/1617 +f 1615/1615 1721/1721 1821/1821 +f 1721/1721 1616/1616 1822/1822 +f 1722/1722 1823/1823 1616/1616 +f 1726/1726 1724/1724 1618/1618 +f 1526/1526 1724/1724 1726/1726 +f 1824/1824 1618/1618 1723/1723 +f 1433/1433 1725/1725 1825/1825 +f 1619/1619 1726/1726 1826/1826 +f 1725/1725 1619/1619 1826/1826 +f 1727/1727 1729/1729 1528/1528 +f 1620/1620 1827/1827 1727/1727 +f 1433/1433 1825/1825 1728/1728 +f 1827/1827 1620/1620 1728/1728 +f 1621/1621 1729/1729 1828/1828 +f 1720/1720 1829/1829 1622/1622 +f 1622/1622 1830/1830 1730/1730 +f 1731/1731 1623/1623 1730/1730 +f 1530/1530 1731/1731 1722/1722 +f 1732/1732 1831/1831 1624/1624 +f 1732/1732 1621/1621 1828/1828 +f 1734/1734 1531/1531 1733/1733 +f 1733/1733 1624/1624 1831/1831 +f 1735/1735 1832/1832 1625/1625 +f 1735/1735 1535/1535 1738/1738 +f 1737/1737 1736/1736 1536/1536 +f 1833/1833 1627/1627 1682/1682 +f 1737/1737 1627/1627 1834/1834 +f 1736/1736 1738/1738 1537/1537 +f 1638/1638 1739/1739 1538/1538 +f 1631/1631 1630/1630 1835/1835 +f 1630/1630 1542/1542 1836/1836 +f 1631/1631 1837/1837 1740/1740 +f 1838/1838 1741/1741 1632/1632 +f 1740/1740 1838/1838 1632/1632 +f 1742/1742 1541/1541 1739/1739 +f 1742/1742 1839/1839 1633/1633 +f 1840/1840 1542/1542 1743/1743 +f 1633/1633 1839/1839 1743/1743 +f 1841/1841 1635/1635 1744/1744 +f 1745/1745 1635/1635 1841/1841 +f 1636/1636 1842/1842 1637/1637 +f 1745/1745 1843/1843 1636/1636 +f 1747/1747 1544/1544 1746/1746 +f 1637/1637 1844/1844 1746/1746 +f 1747/1747 1845/1845 1638/1638 +f 1741/1741 1748/1748 1545/1545 +f 1477/1477 1748/1748 1846/1846 +f 1639/1639 1640/1640 1847/1847 +f 1752/1752 1750/1750 1639/1639 +f 1752/1752 1455/1455 1750/1750 +f 1848/1848 1640/1640 1749/1749 +f 1642/1642 1641/1641 1849/1849 +f 1642/1642 1850/1850 1751/1751 +f 1752/1752 1851/1851 1643/1643 +f 1852/1852 1753/1753 1643/1643 +f 1641/1641 1753/1753 1849/1849 +f 1644/1644 1853/1853 1754/1754 +f 1853/1853 1644/1644 1755/1755 +f 1854/1854 1755/1755 1645/1645 +f 1646/1646 1764/1764 1756/1756 +f 1647/1647 1756/1756 1855/1855 +f 1647/1647 1856/1856 1757/1757 +f 1758/1758 1759/1759 1551/1551 +f 1645/1645 1759/1759 1857/1857 +f 1761/1761 1461/1461 1760/1760 +f 1648/1648 1858/1858 1760/1760 +f 1757/1757 1856/1856 1648/1648 +f 1761/1761 1859/1859 1649/1649 +f 1860/1860 1758/1758 1649/1649 +f 1762/1762 1650/1650 1861/1861 +f 1861/1861 1650/1650 1652/1652 +f 1652/1652 1653/1653 1861/1861 +f 1653/1653 1754/1754 1861/1861 +f 1862/1862 1654/1654 1763/1763 +f 1555/1555 1762/1762 1863/1863 +f 1864/1864 1763/1763 1555/1555 +f 1865/1865 1656/1656 1751/1751 +f 1765/1765 1764/1764 1556/1556 +f 1656/1656 1866/1866 1765/1765 +f 1862/1862 1766/1766 1654/1654 +f 1766/1766 1664/1664 1657/1657 +f 1867/1867 1658/1658 1563/1563 +f 1659/1659 1660/1660 1868/1868 +f 1868/1868 1767/1767 1659/1659 +f 1869/1869 1660/1660 1663/1663 +f 1662/1662 1769/1769 1563/1563 +f 1769/1769 1565/1565 1768/1768 +f 1869/1869 1663/1663 1664/1664 +f 1770/1770 1771/1771 1566/1566 +f 1665/1665 1771/1771 1870/1870 +f 1871/1871 1667/1667 1665/1665 +f 1658/1658 1867/1867 1666/1666 +f 1770/1770 1666/1666 1872/1872 +f 1772/1772 1569/1569 1667/1667 +f 1773/1773 1570/1570 1772/1772 +f 1873/1873 1668/1668 1669/1669 +f 1669/1669 1773/1773 1873/1873 +f 1477/1477 1874/1874 1774/1774 +f 1774/1774 1775/1775 1670/1670 +f 1775/1775 1875/1875 1573/1573 +f 1875/1875 1776/1776 1573/1573 +f 1776/1776 1779/1779 1572/1572 +f 1777/1777 1780/1780 1671/1671 +f 1579/1579 1778/1778 1671/1671 +f 1876/1876 1580/1580 1674/1674 +f 1671/1671 1780/1780 1578/1578 +f 1777/1777 1675/1675 1780/1780 +f 1877/1877 1781/1781 1580/1580 +f 1781/1781 1783/1783 1676/1676 +f 1878/1878 1678/1678 1681/1681 +f 1879/1879 1679/1679 1678/1678 +f 1680/1680 1679/1679 1880/1880 +f 1582/1582 1881/1881 1749/1749 +f 1680/1680 1882/1882 1782/1782 +f 1881/1881 1582/1582 1782/1782 +f 1784/1784 1583/1583 1783/1783 +f 1784/1784 1883/1883 1681/1681 +f 1785/1785 1585/1585 1588/1588 +f 1833/1833 1682/1682 1785/1785 +f 1588/1588 1683/1683 1884/1884 +f 1885/1885 1683/1683 1684/1684 +f 1886/1886 1684/1684 1786/1786 +f 1787/1787 1590/1590 1887/1887 +f 1788/1788 1685/1685 1888/1888 +f 1685/1685 1787/1787 1889/1889 +f 1686/1686 1788/1788 1890/1890 +f 1891/1891 1786/1786 1686/1686 +f 1789/1789 1687/1687 1790/1790 +f 1892/1892 1590/1590 1789/1789 +f 1593/1593 1791/1791 1793/1793 +f 1791/1791 1595/1595 1796/1796 +f 1893/1893 1792/1792 1688/1688 +f 1793/1793 1894/1894 1688/1688 +f 1792/1792 1893/1893 1689/1689 +f 1689/1689 1895/1895 1691/1691 +f 1794/1794 1594/1594 1896/1896 +f 1690/1690 1794/1794 1897/1897 +f 1795/1795 1896/1896 1594/1594 +f 1895/1895 1795/1795 1691/1691 +f 1790/1790 1690/1690 1898/1898 +f 1596/1596 1797/1797 1796/1796 +f 1899/1899 1797/1797 1692/1692 +f 1900/1900 1798/1798 1668/1668 +f 1901/1901 1799/1799 1693/1693 +f 1693/1693 1798/1798 1902/1902 +f 1799/1799 1903/1903 1694/1694 +f 1694/1694 1904/1904 1800/1800 +f 1905/1905 1697/1697 1695/1695 +f 1800/1800 1906/1906 1695/1695 +f 1507/1507 1801/1801 1802/1802 +f 1801/1801 1696/1696 1905/1905 +f 1696/1696 1697/1697 1905/1905 +f 1802/1802 1907/1907 1698/1698 +f 1803/1803 1698/1698 1908/1908 +f 1804/1804 1699/1699 1909/1909 +f 1699/1699 1700/1700 1910/1910 +f 1601/1601 1804/1804 1911/1911 +f 1806/1806 1805/1805 1600/1600 +f 1805/1805 1910/1910 1700/1700 +f 1701/1701 1702/1702 1912/1912 +f 1806/1806 1701/1701 1913/1913 +f 1702/1702 1803/1803 1912/1912 +f 1914/1914 1692/1692 1807/1807 +f 1807/1807 1601/1601 1911/1911 +f 1703/1703 1811/1811 1707/1707 +f 1808/1808 1703/1703 1704/1704 +f 1915/1915 1603/1603 1809/1809 +f 1916/1916 1809/1809 1604/1604 +f 1706/1706 1917/1917 1705/1705 +f 1705/1705 1918/1918 1810/1810 +f 1810/1810 1916/1916 1604/1604 +f 1811/1811 1917/1917 1706/1706 +f 1919/1919 1744/1744 1603/1603 +f 1812/1812 1607/1607 1708/1708 +f 1708/1708 1734/1734 1920/1920 +f 1812/1812 1921/1921 1709/1709 +f 1710/1710 1709/1709 1921/1921 +f 1922/1922 1714/1714 1710/1710 +f 1808/1808 1711/1711 1813/1813 +f 1923/1923 1813/1813 1712/1712 +f 1924/1924 1712/1712 1814/1814 +f 1814/1814 1713/1713 1924/1924 +f 1925/1925 1713/1713 1715/1715 +f 1925/1925 1715/1715 1815/1815 +f 1611/1611 1817/1817 1816/1816 +f 1716/1716 1816/1816 1926/1926 +f 1926/1926 1815/1815 1716/1716 +f 1817/1817 1714/1714 1922/1922 +f 1927/1927 1818/1818 1717/1717 +f 1820/1820 1523/1523 1818/1818 +f 1625/1625 1832/1832 1717/1717 +f 1928/1928 1720/1720 1718/1718 +f 1928/1928 1718/1718 1819/1819 +f 1820/1820 1929/1929 1719/1719 +f 1930/1930 1819/1819 1719/1719 +f 1615/1615 1824/1824 1723/1723 +f 1821/1821 1931/1931 1615/1615 +f 1721/1721 1932/1932 1821/1821 +f 1616/1616 1823/1823 1822/1822 +f 1721/1721 1822/1822 1933/1933 +f 1722/1722 1731/1731 1823/1823 +f 1934/1934 1726/1726 1618/1618 +f 1618/1618 1824/1824 1934/1934 +f 1826/1826 1825/1825 1725/1725 +f 1935/1935 1826/1826 1726/1726 +f 1936/1936 1729/1729 1727/1727 +f 1827/1827 1937/1937 1727/1727 +f 1728/1728 1825/1825 1938/1938 +f 1827/1827 1728/1728 1938/1938 +f 1729/1729 1939/1939 1828/1828 +f 1829/1829 1720/1720 1928/1928 +f 1622/1622 1829/1829 1940/1940 +f 1830/1830 1941/1941 1730/1730 +f 1942/1942 1830/1830 1622/1622 +f 1731/1731 1730/1730 1941/1941 +f 1831/1831 1732/1732 1943/1943 +f 1944/1944 1732/1732 1828/1828 +f 1733/1733 1920/1920 1734/1734 +f 1733/1733 1831/1831 1945/1945 +f 1946/1946 1832/1832 1735/1735 +f 1735/1735 1738/1738 1947/1947 +f 1736/1736 1737/1737 1948/1948 +f 1627/1627 1833/1833 1949/1949 +f 1834/1834 1627/1627 1949/1949 +f 1834/1834 1948/1948 1737/1737 +f 1738/1738 1736/1736 1948/1948 +f 1739/1739 1638/1638 1845/1845 +f 1630/1630 1836/1836 1835/1835 +f 1631/1631 1835/1835 1950/1950 +f 1840/1840 1836/1836 1542/1542 +f 1740/1740 1837/1837 1951/1951 +f 1950/1950 1837/1837 1631/1631 +f 1741/1741 1838/1838 1952/1952 +f 1838/1838 1740/1740 1951/1951 +f 1739/1739 1839/1839 1742/1742 +f 1743/1743 1953/1953 1840/1840 +f 1953/1953 1743/1743 1839/1839 +f 1841/1841 1744/1744 1954/1954 +f 1745/1745 1841/1841 1955/1955 +f 1956/1956 1637/1637 1842/1842 +f 1842/1842 1636/1636 1843/1843 +f 1843/1843 1745/1745 1955/1955 +f 1845/1845 1747/1747 1746/1746 +f 1746/1746 1844/1844 1957/1957 +f 1637/1637 1956/1956 1844/1844 +f 1748/1748 1741/1741 1846/1846 +f 1477/1477 1846/1846 1874/1874 +f 1848/1848 1847/1847 1640/1640 +f 1847/1847 1958/1958 1639/1639 +f 1958/1958 1752/1752 1639/1639 +f 1749/1749 1881/1881 1848/1848 +f 1849/1849 1959/1959 1642/1642 +f 1850/1850 1642/1642 1959/1959 +f 1751/1751 1850/1850 1959/1959 +f 1851/1851 1852/1852 1643/1643 +f 1752/1752 1958/1958 1851/1851 +f 1753/1753 1852/1852 1960/1960 +f 1753/1753 1961/1961 1849/1849 +f 1861/1861 1754/1754 1853/1853 +f 1853/1853 1755/1755 1962/1962 +f 1962/1962 1755/1755 1854/1854 +f 1854/1854 1645/1645 1857/1857 +f 1764/1764 1765/1765 1756/1756 +f 1756/1756 1765/1765 1855/1855 +f 1963/1963 1647/1647 1855/1855 +f 1856/1856 1647/1647 1963/1963 +f 1964/1964 1759/1759 1758/1758 +f 1759/1759 1965/1965 1857/1857 +f 1966/1966 1761/1761 1760/1760 +f 1760/1760 1858/1858 1967/1967 +f 1648/1648 1968/1968 1858/1858 +f 1856/1856 1969/1969 1648/1648 +f 1970/1970 1859/1859 1761/1761 +f 1860/1860 1649/1649 1859/1859 +f 1964/1964 1758/1758 1860/1860 +f 1971/1971 1762/1762 1861/1861 +f 1864/1864 1862/1862 1763/1763 +f 1863/1863 1762/1762 1971/1971 +f 1863/1863 1864/1864 1555/1555 +f 1865/1865 1972/1972 1656/1656 +f 1959/1959 1865/1865 1751/1751 +f 1656/1656 1972/1972 1866/1866 +f 1765/1765 1866/1866 1855/1855 +f 1664/1664 1766/1766 1862/1862 +f 1563/1563 1769/1769 1867/1867 +f 1973/1973 1868/1868 1660/1660 +f 1660/1660 1869/1869 1973/1973 +f 1869/1869 1664/1664 1862/1862 +f 1770/1770 1974/1974 1771/1771 +f 1771/1771 1975/1975 1870/1870 +f 1871/1871 1665/1665 1870/1870 +f 1772/1772 1667/1667 1871/1871 +f 1867/1867 1976/1976 1666/1666 +f 1872/1872 1974/1974 1770/1770 +f 1976/1976 1872/1872 1666/1666 +f 1773/1773 1772/1772 1871/1871 +f 1668/1668 1873/1873 1900/1900 +f 1873/1873 1773/1773 1977/1977 +f 1978/1978 1774/1774 1874/1874 +f 1775/1775 1774/1774 1979/1979 +f 1875/1875 1775/1775 1979/1979 +f 1779/1779 1776/1776 1875/1875 +f 1580/1580 1876/1876 1877/1877 +f 1877/1877 1980/1980 1781/1781 +f 1783/1783 1781/1781 1980/1980 +f 1878/1878 1681/1681 1883/1883 +f 1879/1879 1678/1678 1878/1878 +f 1879/1879 1880/1880 1679/1679 +f 1880/1880 1882/1882 1680/1680 +f 1882/1882 1981/1981 1782/1782 +f 1881/1881 1782/1782 1981/1981 +f 1980/1980 1784/1784 1783/1783 +f 1784/1784 1982/1982 1883/1883 +f 1785/1785 1588/1588 1983/1983 +f 1984/1984 1833/1833 1785/1785 +f 1683/1683 1885/1885 1884/1884 +f 1983/1983 1588/1588 1884/1884 +f 1684/1684 1985/1985 1885/1885 +f 1886/1886 1985/1985 1684/1684 +f 1786/1786 1986/1986 1886/1886 +f 1590/1590 1892/1892 1887/1887 +f 1887/1887 1987/1987 1787/1787 +f 1685/1685 1889/1889 1888/1888 +f 1988/1988 1788/1788 1888/1888 +f 1787/1787 1987/1987 1889/1889 +f 1686/1686 1890/1890 1989/1989 +f 1988/1988 1890/1890 1788/1788 +f 1891/1891 1686/1686 1989/1989 +f 1786/1786 1891/1891 1990/1990 +f 1790/1790 1991/1991 1789/1789 +f 1892/1892 1789/1789 1992/1992 +f 1791/1791 1993/1993 1793/1793 +f 1796/1796 1994/1994 1791/1791 +f 1688/1688 1894/1894 1893/1893 +f 1793/1793 1993/1993 1894/1894 +f 1689/1689 1893/1893 1895/1895 +f 1896/1896 1995/1995 1794/1794 +f 1897/1897 1794/1794 1996/1996 +f 1898/1898 1690/1690 1897/1897 +f 1997/1997 1896/1896 1795/1795 +f 1998/1998 1795/1795 1895/1895 +f 1898/1898 1999/1999 1790/1790 +f 1797/1797 2000/2000 1796/1796 +f 2001/2001 1899/1899 1692/1692 +f 1899/1899 2000/2000 1797/1797 +f 1900/1900 2002/2002 1798/1798 +f 1901/1901 1903/1903 1799/1799 +f 1902/1902 1901/1901 1693/1693 +f 1798/1798 2002/2002 1902/1902 +f 1904/1904 1694/1694 1903/1903 +f 2003/2003 1800/1800 1904/1904 +f 1695/1695 1906/1906 1905/1905 +f 1906/1906 1800/1800 2004/2004 +f 1801/1801 2005/2005 1802/1802 +f 1905/1905 1906/1906 1801/1801 +f 1908/1908 1698/1698 1907/1907 +f 2006/2006 1907/1907 1802/1802 +f 1908/1908 1912/1912 1803/1803 +f 1910/1910 1909/1909 1699/1699 +f 2007/2007 1804/1804 1909/1909 +f 1804/1804 2007/2007 1911/1911 +f 2008/2008 1805/1805 1806/1806 +f 2009/2009 1910/1910 1805/1805 +f 1912/1912 1913/1913 1701/1701 +f 1913/1913 2010/2010 1806/1806 +f 1914/1914 1807/1807 2011/2011 +f 1914/1914 2001/2001 1692/1692 +f 1911/1911 2007/2007 1807/1807 +f 1703/1703 2012/2012 1811/1811 +f 2013/2013 1703/1703 1808/1808 +f 1809/1809 2014/2014 1915/1915 +f 2015/2015 1603/1603 1915/1915 +f 2016/2016 1809/1809 1916/1916 +f 1705/1705 1917/1917 2017/2017 +f 2017/2017 1918/1918 1705/1705 +f 1918/1918 2018/2018 1810/1810 +f 2019/2019 1916/1916 1810/1810 +f 2020/2020 1917/1917 1811/1811 +f 1744/1744 1919/1919 1954/1954 +f 2015/2015 1919/1919 1603/1603 +f 1708/1708 1926/1926 1812/1812 +f 1920/1920 1926/1926 1708/1708 +f 1816/1816 1921/1921 1812/1812 +f 1922/1922 1710/1710 1921/1921 +f 2021/2021 1808/1808 1813/1813 +f 1712/1712 1924/1924 1923/1923 +f 1923/1923 2021/2021 1813/1813 +f 1925/1925 1924/1924 1713/1713 +f 1926/1926 1925/1925 1815/1815 +f 1817/1817 1922/1922 1816/1816 +f 1926/1926 1816/1816 1812/1812 +f 1818/1818 1927/1927 2022/2022 +f 2023/2023 1927/1927 1717/1717 +f 1820/1820 1818/1818 2024/2024 +f 2025/2025 1717/1717 1832/1832 +f 1819/1819 1930/1930 1928/1928 +f 1820/1820 2024/2024 1929/1929 +f 1929/1929 2026/2026 1719/1719 +f 2026/2026 1930/1930 1719/1719 +f 1824/1824 1615/1615 1931/1931 +f 2027/2027 1931/1931 1821/1821 +f 2028/2028 1932/1932 1721/1721 +f 1932/1932 2029/2029 1821/1821 +f 2030/2030 1822/1822 1823/1823 +f 2030/2030 1933/1933 1822/1822 +f 2028/2028 1721/1721 1933/1933 +f 1823/1823 1731/1731 1941/1941 +f 2031/2031 1726/1726 1934/1934 +f 1934/1934 1824/1824 2032/2032 +f 2033/2033 1825/1825 1826/1826 +f 1826/1826 1935/1935 2034/2034 +f 1726/1726 2031/2031 1935/1935 +f 1727/1727 1937/1937 1936/1936 +f 1936/1936 2035/2035 1729/1729 +f 2036/2036 1937/1937 1827/1827 +f 1938/1938 1825/1825 2037/2037 +f 2037/2037 1827/1827 1938/1938 +f 2035/2035 1939/1939 1729/1729 +f 1939/1939 2038/2038 1828/1828 +f 1829/1829 1928/1928 1930/1930 +f 1829/1829 2039/2039 1940/1940 +f 1942/1942 1622/1622 1940/1940 +f 1941/1941 1830/1830 2040/2040 +f 1830/1830 1942/1942 2041/2041 +f 1944/1944 1943/1943 1732/1732 +f 1943/1943 1945/1945 1831/1831 +f 1944/1944 1828/1828 2038/2038 +f 1733/1733 2042/2042 1920/1920 +f 2042/2042 1733/1733 1945/1945 +f 2043/2043 1832/1832 1946/1946 +f 2044/2044 1946/1946 1735/1735 +f 1947/1947 1738/1738 1948/1948 +f 1947/1947 2044/2044 1735/1735 +f 2045/2045 1949/1949 1833/1833 +f 1949/1949 1947/1947 1834/1834 +f 1947/1947 1948/1948 1834/1834 +f 1845/1845 1839/1839 1739/1739 +f 1835/1835 1836/1836 2046/2046 +f 2047/2047 1950/1950 1835/1835 +f 1840/1840 2046/2046 1836/1836 +f 1837/1837 2047/2047 1951/1951 +f 2047/2047 1837/1837 1950/1950 +f 1952/1952 1846/1846 1741/1741 +f 1838/1838 2048/2048 1952/1952 +f 2048/2048 1838/1838 1951/1951 +f 1953/1953 2049/2049 1840/1840 +f 1953/1953 1839/1839 1845/1845 +f 1841/1841 1954/1954 2050/2050 +f 2051/2051 1955/1955 1841/1841 +f 2052/2052 1956/1956 1842/1842 +f 2053/2053 1842/1842 1843/1843 +f 1843/1843 1955/1955 2054/2054 +f 2055/2055 1845/1845 1746/1746 +f 1957/1957 1844/1844 2056/2056 +f 1746/1746 1957/1957 2055/2055 +f 1956/1956 2057/2057 1844/1844 +f 2058/2058 1874/1874 1846/1846 +f 1881/1881 1847/1847 1848/1848 +f 1847/1847 2059/2059 1958/1958 +f 1959/1959 1849/1849 2060/2060 +f 2061/2061 1852/1852 1851/1851 +f 1851/1851 1958/1958 2059/2059 +f 1960/1960 1961/1961 1753/1753 +f 2062/2062 1960/1960 1852/1852 +f 1961/1961 2060/2060 1849/1849 +f 1962/1962 1861/1861 1853/1853 +f 1854/1854 2063/2063 1962/1962 +f 2064/2064 1854/1854 1857/1857 +f 1866/1866 1963/1963 1855/1855 +f 1856/1856 1963/1963 2065/2065 +f 1759/1759 1964/1964 1965/1965 +f 2064/2064 1857/1857 1965/1965 +f 1966/1966 1760/1760 1967/1967 +f 1970/1970 1761/1761 1966/1966 +f 1858/1858 2066/2066 1967/1967 +f 1969/1969 1968/1968 1648/1648 +f 1858/1858 1968/1968 2067/2067 +f 1969/1969 1856/1856 2065/2065 +f 1970/1970 2068/2068 1859/1859 +f 1859/1859 2068/2068 1860/1860 +f 1964/1964 1860/1860 1965/1965 +f 1971/1971 1861/1861 2069/2069 +f 1862/1862 1864/1864 2070/2070 +f 2071/2071 1863/1863 1971/1971 +f 2071/2071 1864/1864 1863/1863 +f 2072/2072 1972/1972 1865/1865 +f 1865/1865 1959/1959 2073/2073 +f 1972/1972 2065/2065 1866/1866 +f 1867/1867 1769/1769 1976/1976 +f 1862/1862 2070/2070 1869/1869 +f 1975/1975 1771/1771 1974/1974 +f 1870/1870 1975/1975 2074/2074 +f 2074/2074 1871/1871 1870/1870 +f 1974/1974 1872/1872 2075/2075 +f 1872/1872 1976/1976 2076/2076 +f 1871/1871 1977/1977 1773/1773 +f 1900/1900 1873/1873 1977/1977 +f 1774/1774 1978/1978 1979/1979 +f 1874/1874 2058/2058 1978/1978 +f 1979/1979 2077/2077 1875/1875 +f 1875/1875 2078/2078 1779/1779 +f 2079/2079 1878/1878 1883/1883 +f 1880/1880 1879/1879 1878/1878 +f 1880/1880 2080/2080 1882/1882 +f 1882/1882 2081/2081 1981/1981 +f 2082/2082 1881/1881 1981/1981 +f 1883/1883 1982/1982 2079/2079 +f 1984/1984 1785/1785 1983/1983 +f 1984/1984 2045/2045 1833/1833 +f 2083/2083 1884/1884 1885/1885 +f 2084/2084 1983/1983 1884/1884 +f 1985/1985 2085/2085 1885/1885 +f 2086/2086 1985/1985 1886/1886 +f 1986/1986 1786/1786 2087/2087 +f 1886/1886 1986/1986 2088/2088 +f 1887/1887 1892/1892 1992/1992 +f 2089/2089 1987/1987 1887/1887 +f 2090/2090 1888/1888 1889/1889 +f 1888/1888 2091/2091 1988/1988 +f 1987/1987 2090/2090 1889/1889 +f 1890/1890 2092/2092 1989/1989 +f 1988/1988 2092/2092 1890/1890 +f 2093/2093 1891/1891 1989/1989 +f 2094/2094 1990/1990 1891/1891 +f 1990/1990 2087/2087 1786/1786 +f 2095/2095 1789/1789 1991/1991 +f 1991/1991 1790/1790 1999/1999 +f 2095/2095 1992/1992 1789/1789 +f 1791/1791 1994/1994 1993/1993 +f 2000/2000 1994/1994 1796/1796 +f 1894/1894 2096/2096 1893/1893 +f 2097/2097 1894/1894 1993/1993 +f 1893/1893 2098/2098 1895/1895 +f 1995/1995 1896/1896 2099/2099 +f 1995/1995 1996/1996 1794/1794 +f 2100/2100 1897/1897 1996/1996 +f 2100/2100 1898/1898 1897/1897 +f 2099/2099 1896/1896 1997/1997 +f 1795/1795 2101/2101 1997/1997 +f 1795/1795 1998/1998 2101/2101 +f 2098/2098 1998/1998 1895/1895 +f 1898/1898 2102/2102 1999/1999 +f 2103/2103 1899/1899 2001/2001 +f 2103/2103 2000/2000 1899/1899 +f 1900/1900 2104/2104 2002/2002 +f 1903/1903 1901/1901 1904/1904 +f 2105/2105 1901/1901 1902/1902 +f 2003/2003 1904/1904 1901/1901 +f 1800/1800 2003/2003 2004/2004 +f 1906/1906 2004/2004 2106/2106 +f 1801/1801 1906/1906 2005/2005 +f 1802/1802 2005/2005 2006/2006 +f 2107/2107 1908/1908 1907/1907 +f 1907/1907 2006/2006 2107/2107 +f 1908/1908 2108/2108 1912/1912 +f 2009/2009 1909/1909 1910/1910 +f 2009/2009 2007/2007 1909/1909 +f 1805/1805 2008/2008 2009/2009 +f 1806/1806 2010/2010 2008/2008 +f 2108/2108 1913/1913 1912/1912 +f 2010/2010 1913/1913 2109/2109 +f 1807/1807 2007/2007 2011/2011 +f 2110/2110 1914/1914 2011/2011 +f 1914/1914 2110/2110 2001/2001 +f 1703/1703 2013/2013 2012/2012 +f 2020/2020 1811/1811 2012/2012 +f 1808/1808 2021/2021 2013/2013 +f 1915/1915 2014/2014 2015/2015 +f 1809/1809 2111/2111 2014/2014 +f 2016/2016 2111/2111 1809/1809 +f 2112/2112 2016/2016 1916/1916 +f 2017/2017 1917/1917 2113/2113 +f 1918/1918 2017/2017 2114/2114 +f 2018/2018 1918/1918 2115/2115 +f 2018/2018 2019/2019 1810/1810 +f 2112/2112 1916/1916 2019/2019 +f 2020/2020 2113/2113 1917/1917 +f 2050/2050 1954/1954 1919/1919 +f 2050/2050 1919/1919 2015/2015 +f 2116/2116 1926/1926 1920/1920 +f 1921/1921 1816/1816 1922/1922 +f 1924/1924 2117/2117 1923/1923 +f 1923/1923 2118/2118 2021/2021 +f 2117/2117 1924/1924 1925/1925 +f 2117/2117 1925/1925 1926/1926 +f 1927/1927 2119/2119 2022/2022 +f 2022/2022 2120/2120 1818/1818 +f 1927/1927 2023/2023 2119/2119 +f 2025/2025 2023/2023 1717/1717 +f 1818/1818 2120/2120 2024/2024 +f 2025/2025 1832/1832 2043/2043 +f 2026/2026 1929/1929 2024/2024 +f 2039/2039 1930/1930 2026/2026 +f 1931/1931 2032/2032 1824/1824 +f 2032/2032 1931/1931 2027/2027 +f 2027/2027 1821/1821 2029/2029 +f 1932/1932 2028/2028 2121/2121 +f 1932/1932 2122/2122 2029/2029 +f 1823/1823 2123/2123 2030/2030 +f 1933/1933 2030/2030 2124/2124 +f 1933/1933 2125/2125 2028/2028 +f 1941/1941 2123/2123 1823/1823 +f 1934/1934 2032/2032 2031/2031 +f 1825/1825 2033/2033 2126/2126 +f 2034/2034 2033/2033 1826/1826 +f 2034/2034 1935/1935 2127/2127 +f 2128/2128 1935/1935 2031/2031 +f 1936/1936 1937/1937 2129/2129 +f 2035/2035 1936/1936 2130/2130 +f 1937/1937 2036/2036 2129/2129 +f 2037/2037 2036/2036 1827/1827 +f 2126/2126 2037/2037 1825/1825 +f 2131/2131 1939/1939 2035/2035 +f 2038/2038 1939/1939 2132/2132 +f 1930/1930 2039/2039 1829/1829 +f 1940/1940 2039/2039 2133/2133 +f 2134/2134 1942/1942 1940/1940 +f 1830/1830 2135/2135 2040/2040 +f 2136/2136 1941/1941 2040/2040 +f 2041/2041 1942/1942 2134/2134 +f 1830/1830 2041/2041 2137/2137 +f 1943/1943 1944/1944 2138/2138 +f 1943/1943 2139/2139 1945/1945 +f 1944/1944 2038/2038 2140/2140 +f 2042/2042 2141/2141 1920/1920 +f 1945/1945 2142/2142 2042/2042 +f 1949/1949 2043/2043 1946/1946 +f 1946/1946 2044/2044 1949/1949 +f 1949/1949 2044/2044 1947/1947 +f 1949/1949 2045/2045 2043/2043 +f 2046/2046 2143/2143 1835/1835 +f 1835/1835 2144/2144 2047/2047 +f 1840/1840 2049/2049 2046/2046 +f 2047/2047 2145/2145 1951/1951 +f 2058/2058 1846/1846 1952/1952 +f 1952/1952 2048/2048 2058/2058 +f 1951/1951 2145/2145 2048/2048 +f 1953/1953 2055/2055 2049/2049 +f 1845/1845 2055/2055 1953/1953 +f 1841/1841 2050/2050 2051/2051 +f 2054/2054 1955/1955 2051/2051 +f 1956/1956 2052/2052 2057/2057 +f 2146/2146 2052/2052 1842/1842 +f 2054/2054 2053/2053 1843/1843 +f 2147/2147 1842/1842 2053/2053 +f 2057/2057 2056/2056 1844/1844 +f 2056/2056 2148/2148 1957/1957 +f 2055/2055 1957/1957 2149/2149 +f 1847/1847 1881/1881 2059/2059 +f 1959/1959 2060/2060 2073/2073 +f 1851/1851 2150/2150 2061/2061 +f 2061/2061 2151/2151 1852/1852 +f 2152/2152 1851/1851 2059/2059 +f 2153/2153 1961/1961 1960/1960 +f 2154/2154 1960/1960 2062/2062 +f 2062/2062 1852/1852 2151/2151 +f 1961/1961 2155/2155 2060/2060 +f 2069/2069 1861/1861 1962/1962 +f 1854/1854 2064/2064 2063/2063 +f 2156/2156 1962/1962 2063/2063 +f 1866/1866 2065/2065 1963/1963 +f 1965/1965 2157/2157 2064/2064 +f 1967/1967 2158/2158 1966/1966 +f 1970/1970 1966/1966 2158/2158 +f 2159/2159 2066/2066 1858/1858 +f 1967/1967 2066/2066 2160/2160 +f 2161/2161 1968/1968 1969/1969 +f 2162/2162 2067/2067 1968/1968 +f 1858/1858 2067/2067 2159/2159 +f 2065/2065 2163/2163 1969/1969 +f 2164/2164 2068/2068 1970/1970 +f 2157/2157 1860/1860 2068/2068 +f 1860/1860 2157/2157 1965/1965 +f 1864/1864 2071/2071 2070/2070 +f 1972/1972 2072/2072 2163/2163 +f 2073/2073 2072/2072 1865/1865 +f 2163/2163 2065/2065 1972/1972 +f 1976/1976 1769/1769 2165/2165 +f 1974/1974 2166/2166 1975/1975 +f 1975/1975 2166/2166 2074/2074 +f 2167/2167 1871/1871 2074/2074 +f 1974/1974 2075/2075 2166/2166 +f 2076/2076 1976/1976 2165/2165 +f 2104/2104 1977/1977 1871/1871 +f 1977/1977 2104/2104 1900/1900 +f 1978/1978 2077/2077 1979/1979 +f 2168/2168 1978/1978 2058/2058 +f 2077/2077 2078/2078 1875/1875 +f 2079/2079 2169/2169 1878/1878 +f 1878/1878 2169/2169 1880/1880 +f 2080/2080 1880/1880 2169/2169 +f 1882/1882 2080/2080 2170/2170 +f 2082/2082 1981/1981 2081/2081 +f 2170/2170 2081/2081 1882/1882 +f 2082/2082 2059/2059 1881/1881 +f 1984/1984 1983/1983 2171/2171 +f 2045/2045 1984/1984 2172/2172 +f 2083/2083 2084/2084 1884/1884 +f 2173/2173 2083/2083 1885/1885 +f 1983/1983 2084/2084 2171/2171 +f 2174/2174 2085/2085 1985/1985 +f 1885/1885 2085/2085 2173/2173 +f 2086/2086 2175/2175 1985/1985 +f 2086/2086 1886/1886 2176/2176 +f 2177/2177 1986/1986 2087/2087 +f 1886/1886 2088/2088 2176/2176 +f 1986/1986 2177/2177 2088/2088 +f 1887/1887 1992/1992 2089/2089 +f 1987/1987 2089/2089 2178/2178 +f 1888/1888 2090/2090 2179/2179 +f 1888/1888 2179/2179 2091/2091 +f 2092/2092 1988/1988 2091/2091 +f 1987/1987 2180/2180 2090/2090 +f 2181/2181 1989/1989 2092/2092 +f 1891/1891 2093/2093 2094/2094 +f 2181/2181 2093/2093 1989/1989 +f 2182/2182 1990/1990 2094/2094 +f 2087/2087 1990/1990 2182/2182 +f 1991/1991 2183/2183 2095/2095 +f 1999/1999 2102/2102 1991/1991 +f 2184/2184 1992/1992 2095/2095 +f 2103/2103 1993/1993 1994/1994 +f 1994/1994 2000/2000 2103/2103 +f 2096/2096 2185/2185 1893/1893 +f 2186/2186 2096/2096 1894/1894 +f 2097/2097 2186/2186 1894/1894 +f 1993/1993 2187/2187 2097/2097 +f 1893/1893 2185/2185 2098/2098 +f 2188/2188 1995/1995 2099/2099 +f 2189/2189 1996/1996 1995/1995 +f 1996/1996 2190/2190 2100/2100 +f 2100/2100 2191/2191 1898/1898 +f 1997/1997 2192/2192 2099/2099 +f 2101/2101 2193/2193 1997/1997 +f 1998/1998 2098/2098 2101/2101 +f 2191/2191 2102/2102 1898/1898 +f 2103/2103 2001/2001 2194/2194 +f 2104/2104 2195/2195 2002/2002 +f 2196/2196 2105/2105 1902/1902 +f 2105/2105 2003/2003 1901/1901 +f 2004/2004 2003/2003 2106/2106 +f 2106/2106 2005/2005 1906/1906 +f 2005/2005 2107/2107 2006/2006 +f 2108/2108 1908/1908 2107/2107 +f 2007/2007 2009/2009 2011/2011 +f 2197/2197 2009/2009 2008/2008 +f 2198/2198 2008/2008 2010/2010 +f 2109/2109 1913/1913 2108/2108 +f 2199/2199 2010/2010 2109/2109 +f 2200/2200 2110/2110 2011/2011 +f 2001/2001 2110/2110 2201/2201 +f 2013/2013 2021/2021 2012/2012 +f 2020/2020 2012/2012 2202/2202 +f 2203/2203 2015/2015 2014/2014 +f 2203/2203 2014/2014 2111/2111 +f 2204/2204 2111/2111 2016/2016 +f 2016/2016 2112/2112 2205/2205 +f 2113/2113 2114/2114 2017/2017 +f 1918/1918 2114/2114 2206/2206 +f 1918/1918 2206/2206 2115/2115 +f 2115/2115 2207/2207 2018/2018 +f 2019/2019 2018/2018 2112/2112 +f 2208/2208 2113/2113 2020/2020 +f 2051/2051 2050/2050 2015/2015 +f 2116/2116 1920/1920 2209/2209 +f 2116/2116 2117/2117 1926/1926 +f 1923/1923 2117/2117 2118/2118 +f 2210/2210 2021/2021 2118/2118 +f 2211/2211 2022/2022 2119/2119 +f 2212/2212 2120/2120 2022/2022 +f 2119/2119 2023/2023 2213/2213 +f 2214/2214 2023/2023 2025/2025 +f 2120/2120 2212/2212 2024/2024 +f 2214/2214 2025/2025 2043/2043 +f 2024/2024 2212/2212 2026/2026 +f 2026/2026 2212/2212 2039/2039 +f 2027/2027 2215/2215 2032/2032 +f 2029/2029 2216/2216 2027/2027 +f 2121/2121 2028/2028 2217/2217 +f 2121/2121 2218/2218 1932/1932 +f 1932/1932 2218/2218 2122/2122 +f 2029/2029 2122/2122 2219/2219 +f 2030/2030 2123/2123 2220/2220 +f 2221/2221 1933/1933 2124/2124 +f 1933/1933 2221/2221 2125/2125 +f 2028/2028 2125/2125 2222/2222 +f 2136/2136 2123/2123 1941/1941 +f 2032/2032 2223/2223 2031/2031 +f 2033/2033 2224/2224 2126/2126 +f 2224/2224 2033/2033 2034/2034 +f 2224/2224 2034/2034 2127/2127 +f 2127/2127 1935/1935 2128/2128 +f 2225/2225 2128/2128 2031/2031 +f 2129/2129 2130/2130 1936/1936 +f 2131/2131 2035/2035 2130/2130 +f 2036/2036 2226/2226 2129/2129 +f 2037/2037 2226/2226 2036/2036 +f 2037/2037 2126/2126 2227/2227 +f 2131/2131 2132/2132 1939/1939 +f 2038/2038 2132/2132 2228/2228 +f 2039/2039 2229/2229 2133/2133 +f 2230/2230 1940/1940 2133/2133 +f 2231/2231 2134/2134 1940/1940 +f 2137/2137 2135/2135 1830/1830 +f 2232/2232 2041/2041 2134/2134 +f 2137/2137 2041/2041 2233/2233 +f 2138/2138 1944/1944 2140/2140 +f 2138/2138 2234/2234 1943/1943 +f 1945/1945 2139/2139 2142/2142 +f 1943/1943 2234/2234 2139/2139 +f 2038/2038 2235/2235 2140/2140 +f 2142/2142 2141/2141 2042/2042 +f 2141/2141 2236/2236 1920/1920 +f 2043/2043 2045/2045 2214/2214 +f 1835/1835 2143/2143 2144/2144 +f 2237/2237 2143/2143 2046/2046 +f 2145/2145 2047/2047 2144/2144 +f 2046/2046 2049/2049 2238/2238 +f 2168/2168 2058/2058 2048/2048 +f 2239/2239 2048/2048 2145/2145 +f 2055/2055 2240/2240 2049/2049 +f 2051/2051 2203/2203 2054/2054 +f 2241/2241 2057/2057 2052/2052 +f 2241/2241 2052/2052 2146/2146 +f 2146/2146 1842/1842 2147/2147 +f 2054/2054 2242/2242 2053/2053 +f 2053/2053 2243/2243 2147/2147 +f 2056/2056 2057/2057 2244/2244 +f 1957/1957 2148/2148 2149/2149 +f 2056/2056 2245/2245 2148/2148 +f 2246/2246 2055/2055 2149/2149 +f 2060/2060 2247/2247 2073/2073 +f 2248/2248 2150/2150 1851/1851 +f 2249/2249 2061/2061 2150/2150 +f 2250/2250 2151/2151 2061/2061 +f 2152/2152 2248/2248 1851/1851 +f 2152/2152 2059/2059 2082/2082 +f 2153/2153 2155/2155 1961/1961 +f 2251/2251 2153/2153 1960/1960 +f 1960/1960 2154/2154 2251/2251 +f 2062/2062 2151/2151 2154/2154 +f 2155/2155 2252/2252 2060/2060 +f 1962/1962 2156/2156 2069/2069 +f 2063/2063 2064/2064 2253/2253 +f 2063/2063 2253/2253 2156/2156 +f 2254/2254 2064/2064 2157/2157 +f 2158/2158 1967/1967 2160/2160 +f 1970/1970 2158/2158 2164/2164 +f 2066/2066 2159/2159 2255/2255 +f 2066/2066 2256/2256 2160/2160 +f 2161/2161 2257/2257 1968/1968 +f 1969/1969 2163/2163 2161/2161 +f 2162/2162 2258/2258 2067/2067 +f 2259/2259 2162/2162 1968/1968 +f 2159/2159 2067/2067 2258/2258 +f 2260/2260 2068/2068 2164/2164 +f 2157/2157 2068/2068 2260/2260 +f 2072/2072 2261/2261 2163/2163 +f 2261/2261 2072/2072 2073/2073 +f 2074/2074 2166/2166 2262/2262 +f 2167/2167 2104/2104 1871/1871 +f 2262/2262 2167/2167 2074/2074 +f 2166/2166 2075/2075 2263/2263 +f 2077/2077 1978/1978 2264/2264 +f 2265/2265 1978/1978 2168/2168 +f 2266/2266 2078/2078 2077/2077 +f 2267/2267 2080/2080 2169/2169 +f 2080/2080 2268/2268 2170/2170 +f 2082/2082 2081/2081 2152/2152 +f 2170/2170 2269/2269 2081/2081 +f 2171/2171 2172/2172 1984/1984 +f 2172/2172 2214/2214 2045/2045 +f 2270/2270 2084/2084 2083/2083 +f 2173/2173 2271/2271 2083/2083 +f 2171/2171 2084/2084 2270/2270 +f 2085/2085 2174/2174 2173/2173 +f 2175/2175 2174/2174 1985/1985 +f 2175/2175 2086/2086 2272/2272 +f 2176/2176 2272/2272 2086/2086 +f 2182/2182 2177/2177 2087/2087 +f 2176/2176 2088/2088 2177/2177 +f 2089/2089 1992/1992 2273/2273 +f 2178/2178 2274/2274 1987/1987 +f 2178/2178 2089/2089 2273/2273 +f 2180/2180 2179/2179 2090/2090 +f 2091/2091 2179/2179 2275/2275 +f 2091/2091 2276/2276 2092/2092 +f 2274/2274 2180/2180 1987/1987 +f 2092/2092 2276/2276 2181/2181 +f 2093/2093 2277/2277 2094/2094 +f 2278/2278 2093/2093 2181/2181 +f 2182/2182 2094/2094 2279/2279 +f 2102/2102 2183/2183 1991/1991 +f 2095/2095 2183/2183 2280/2280 +f 2280/2280 2184/2184 2095/2095 +f 2184/2184 2281/2281 1992/1992 +f 2187/2187 1993/1993 2103/2103 +f 2096/2096 2282/2282 2185/2185 +f 2096/2096 2186/2186 2282/2282 +f 2283/2283 2186/2186 2097/2097 +f 2187/2187 2283/2283 2097/2097 +f 2101/2101 2098/2098 2185/2185 +f 2188/2188 2189/2189 1995/1995 +f 2188/2188 2099/2099 2192/2192 +f 2284/2284 1996/1996 2189/2189 +f 2285/2285 2100/2100 2190/2190 +f 2190/2190 1996/1996 2284/2284 +f 2100/2100 2102/2102 2191/2191 +f 2193/2193 2192/2192 1997/1997 +f 2286/2286 2193/2193 2101/2101 +f 2201/2201 2194/2194 2001/2001 +f 2187/2187 2103/2103 2194/2194 +f 2104/2104 2167/2167 2195/2195 +f 2287/2287 2105/2105 2196/2196 +f 2105/2105 2288/2288 2003/2003 +f 2003/2003 2288/2288 2106/2106 +f 2005/2005 2106/2106 2107/2107 +f 2109/2109 2108/2108 2107/2107 +f 2009/2009 2197/2197 2011/2011 +f 2289/2289 2197/2197 2008/2008 +f 2198/2198 2289/2289 2008/2008 +f 2198/2198 2010/2010 2199/2199 +f 2200/2200 2290/2290 2110/2110 +f 2011/2011 2197/2197 2200/2200 +f 2201/2201 2110/2110 2291/2291 +f 2012/2012 2021/2021 2202/2202 +f 2292/2292 2020/2020 2202/2202 +f 2051/2051 2015/2015 2203/2203 +f 2111/2111 2293/2293 2203/2203 +f 2294/2294 2204/2204 2016/2016 +f 2204/2204 2293/2293 2111/2111 +f 2294/2294 2016/2016 2205/2205 +f 2205/2205 2112/2112 2295/2295 +f 2296/2296 2114/2114 2113/2113 +f 2206/2206 2114/2114 2297/2297 +f 2115/2115 2206/2206 2298/2298 +f 2207/2207 2299/2299 2018/2018 +f 2207/2207 2115/2115 2300/2300 +f 2112/2112 2018/2018 2299/2299 +f 2020/2020 2292/2292 2208/2208 +f 2113/2113 2208/2208 2296/2296 +f 2301/2301 2116/2116 2209/2209 +f 1920/1920 2236/2236 2209/2209 +f 2302/2302 2117/2117 2116/2116 +f 2117/2117 2302/2302 2118/2118 +f 2021/2021 2210/2210 2202/2202 +f 2210/2210 2118/2118 2303/2303 +f 2213/2213 2211/2211 2119/2119 +f 2022/2022 2211/2211 2212/2212 +f 2023/2023 2304/2304 2213/2213 +f 2023/2023 2214/2214 2304/2304 +f 2212/2212 2305/2305 2039/2039 +f 2306/2306 2215/2215 2027/2027 +f 2215/2215 2307/2307 2032/2032 +f 2216/2216 2029/2029 2308/2308 +f 2309/2309 2027/2027 2216/2216 +f 2217/2217 2028/2028 2222/2222 +f 2121/2121 2217/2217 2310/2310 +f 2310/2310 2218/2218 2121/2121 +f 2122/2122 2218/2218 2311/2311 +f 2219/2219 2122/2122 2311/2311 +f 2029/2029 2219/2219 2308/2308 +f 2220/2220 2123/2123 2136/2136 +f 2125/2125 2221/2221 2312/2312 +f 2125/2125 2312/2312 2222/2222 +f 2032/2032 2307/2307 2223/2223 +f 2223/2223 2225/2225 2031/2031 +f 2227/2227 2126/2126 2224/2224 +f 2313/2313 2224/2224 2127/2127 +f 2314/2314 2127/2127 2128/2128 +f 2128/2128 2225/2225 2314/2314 +f 2315/2315 2130/2130 2129/2129 +f 2130/2130 2316/2316 2131/2131 +f 2226/2226 2317/2317 2129/2129 +f 2226/2226 2037/2037 2318/2318 +f 2227/2227 2318/2318 2037/2037 +f 2132/2132 2131/2131 2319/2319 +f 2132/2132 2319/2319 2228/2228 +f 2228/2228 2235/2235 2038/2038 +f 2305/2305 2229/2229 2039/2039 +f 2133/2133 2229/2229 2320/2320 +f 1940/1940 2230/2230 2321/2321 +f 2230/2230 2133/2133 2320/2320 +f 2321/2321 2231/2231 1940/1940 +f 2134/2134 2231/2231 2232/2232 +f 2135/2135 2137/2137 2233/2233 +f 2041/2041 2232/2232 2233/2233 +f 2322/2322 2138/2138 2140/2140 +f 2322/2322 2234/2234 2138/2138 +f 2139/2139 2323/2323 2142/2142 +f 2324/2324 2139/2139 2234/2234 +f 2325/2325 2140/2140 2235/2235 +f 2323/2323 2141/2141 2142/2142 +f 2141/2141 2326/2326 2236/2236 +f 2144/2144 2143/2143 2327/2327 +f 2328/2328 2143/2143 2237/2237 +f 2329/2329 2237/2237 2046/2046 +f 2144/2144 2327/2327 2145/2145 +f 2238/2238 2049/2049 2330/2330 +f 2046/2046 2238/2238 2329/2329 +f 2239/2239 2168/2168 2048/2048 +f 2327/2327 2239/2239 2145/2145 +f 2049/2049 2240/2240 2330/2330 +f 2246/2246 2240/2240 2055/2055 +f 2203/2203 2331/2331 2054/2054 +f 2332/2332 2057/2057 2241/2241 +f 2241/2241 2146/2146 2333/2333 +f 2146/2146 2147/2147 2333/2333 +f 2331/2331 2242/2242 2054/2054 +f 2243/2243 2053/2053 2242/2242 +f 2147/2147 2243/2243 2334/2334 +f 2057/2057 2332/2332 2244/2244 +f 2335/2335 2056/2056 2244/2244 +f 2148/2148 2336/2336 2149/2149 +f 2245/2245 2056/2056 2335/2335 +f 2336/2336 2148/2148 2245/2245 +f 2246/2246 2149/2149 2337/2337 +f 2073/2073 2247/2247 2338/2338 +f 2247/2247 2060/2060 2252/2252 +f 2248/2248 2249/2249 2150/2150 +f 2061/2061 2249/2249 2339/2339 +f 2340/2340 2151/2151 2250/2250 +f 2339/2339 2250/2250 2061/2061 +f 2341/2341 2248/2248 2152/2152 +f 2155/2155 2153/2153 2342/2342 +f 2251/2251 2342/2342 2153/2153 +f 2154/2154 2342/2342 2251/2251 +f 2154/2154 2151/2151 2340/2340 +f 2155/2155 2343/2343 2252/2252 +f 2253/2253 2064/2064 2254/2254 +f 2254/2254 2157/2157 2260/2260 +f 2158/2158 2160/2160 2164/2164 +f 2255/2255 2159/2159 2344/2344 +f 2066/2066 2255/2255 2256/2256 +f 2256/2256 2345/2345 2160/2160 +f 2259/2259 1968/1968 2257/2257 +f 2257/2257 2161/2161 2346/2346 +f 2163/2163 2261/2261 2161/2161 +f 2258/2258 2162/2162 2344/2344 +f 2162/2162 2259/2259 2347/2347 +f 2159/2159 2258/2258 2344/2344 +f 2260/2260 2164/2164 2348/2348 +f 2073/2073 2338/2338 2261/2261 +f 2263/2263 2262/2262 2166/2166 +f 2262/2262 2349/2349 2167/2167 +f 2264/2264 1978/1978 2265/2265 +f 2264/2264 2266/2266 2077/2077 +f 2265/2265 2168/2168 2350/2350 +f 2266/2266 2351/2351 2078/2078 +f 2267/2267 2268/2268 2080/2080 +f 2170/2170 2268/2268 2352/2352 +f 2081/2081 2269/2269 2152/2152 +f 2353/2353 2269/2269 2170/2170 +f 2171/2171 2354/2354 2172/2172 +f 2214/2214 2172/2172 2304/2304 +f 2355/2355 2270/2270 2083/2083 +f 2356/2356 2271/2271 2173/2173 +f 2083/2083 2271/2271 2357/2357 +f 2171/2171 2270/2270 2358/2358 +f 2359/2359 2173/2173 2174/2174 +f 2174/2174 2175/2175 2359/2359 +f 2272/2272 2359/2359 2175/2175 +f 2360/2360 2272/2272 2176/2176 +f 2182/2182 2360/2360 2177/2177 +f 2176/2176 2177/2177 2360/2360 +f 2281/2281 2273/2273 1992/1992 +f 2274/2274 2178/2178 2361/2361 +f 2178/2178 2273/2273 2362/2362 +f 2363/2363 2179/2179 2180/2180 +f 2364/2364 2275/2275 2179/2179 +f 2275/2275 2365/2365 2091/2091 +f 2365/2365 2276/2276 2091/2091 +f 2274/2274 2366/2366 2180/2180 +f 2181/2181 2276/2276 2367/2367 +f 2093/2093 2278/2278 2277/2277 +f 2094/2094 2277/2277 2278/2278 +f 2278/2278 2181/2181 2368/2368 +f 2279/2279 2094/2094 2278/2278 +f 2369/2369 2183/2183 2102/2102 +f 2370/2370 2280/2280 2183/2183 +f 2281/2281 2184/2184 2280/2280 +f 2185/2185 2282/2282 2371/2371 +f 2283/2283 2282/2282 2186/2186 +f 2372/2372 2283/2283 2187/2187 +f 2101/2101 2185/2185 2286/2286 +f 2189/2189 2188/2188 2192/2192 +f 2373/2373 2284/2284 2189/2189 +f 2102/2102 2100/2100 2285/2285 +f 2190/2190 2374/2374 2285/2285 +f 2284/2284 2373/2373 2190/2190 +f 2193/2193 2375/2375 2192/2192 +f 2286/2286 2376/2376 2193/2193 +f 2194/2194 2201/2201 2372/2372 +f 2194/2194 2372/2372 2187/2187 +f 2167/2167 2377/2377 2195/2195 +f 2287/2287 2378/2378 2105/2105 +f 2378/2378 2288/2288 2105/2105 +f 2106/2106 2288/2288 2378/2378 +f 2107/2107 2106/2106 2379/2379 +f 2380/2380 2109/2109 2107/2107 +f 2289/2289 2290/2290 2197/2197 +f 2198/2198 2381/2381 2289/2289 +f 2381/2381 2198/2198 2199/2199 +f 2291/2291 2110/2110 2290/2290 +f 2290/2290 2200/2200 2197/2197 +f 2291/2291 2382/2382 2201/2201 +f 2383/2383 2292/2292 2202/2202 +f 2293/2293 2331/2331 2203/2203 +f 2294/2294 2384/2384 2204/2204 +f 2331/2331 2293/2293 2204/2204 +f 2205/2205 2385/2385 2294/2294 +f 2295/2295 2385/2385 2205/2205 +f 2299/2299 2295/2295 2112/2112 +f 2297/2297 2114/2114 2296/2296 +f 2386/2386 2206/2206 2297/2297 +f 2206/2206 2387/2387 2298/2298 +f 2300/2300 2115/2115 2298/2298 +f 2207/2207 2388/2388 2299/2299 +f 2207/2207 2300/2300 2388/2388 +f 2208/2208 2292/2292 2296/2296 +f 2301/2301 2389/2389 2116/2116 +f 2390/2390 2301/2301 2209/2209 +f 2236/2236 2391/2391 2209/2209 +f 2302/2302 2116/2116 2392/2392 +f 2302/2302 2303/2303 2118/2118 +f 2210/2210 2383/2383 2202/2202 +f 2383/2383 2210/2210 2303/2303 +f 2211/2211 2213/2213 2393/2393 +f 2212/2212 2211/2211 2394/2394 +f 2395/2395 2213/2213 2304/2304 +f 2305/2305 2212/2212 2396/2396 +f 2397/2397 2215/2215 2306/2306 +f 2306/2306 2027/2027 2309/2309 +f 2307/2307 2215/2215 2398/2398 +f 2399/2399 2216/2216 2308/2308 +f 2309/2309 2216/2216 2400/2400 +f 2217/2217 2222/2222 2401/2401 +f 2310/2310 2311/2311 2218/2218 +f 2219/2219 2311/2311 2402/2402 +f 2219/2219 2402/2402 2308/2308 +f 2401/2401 2222/2222 2312/2312 +f 2307/2307 2403/2403 2223/2223 +f 2223/2223 2403/2403 2225/2225 +f 2227/2227 2224/2224 2404/2404 +f 2224/2224 2313/2313 2404/2404 +f 2405/2405 2313/2313 2127/2127 +f 2405/2405 2127/2127 2314/2314 +f 2225/2225 2403/2403 2314/2314 +f 2317/2317 2315/2315 2129/2129 +f 2315/2315 2316/2316 2130/2130 +f 2319/2319 2131/2131 2316/2316 +f 2226/2226 2406/2406 2317/2317 +f 2226/2226 2318/2318 2406/2406 +f 2318/2318 2227/2227 2407/2407 +f 2319/2319 2408/2408 2228/2228 +f 2235/2235 2228/2228 2408/2408 +f 2229/2229 2305/2305 2409/2409 +f 2320/2320 2229/2229 2410/2410 +f 2230/2230 2411/2411 2321/2321 +f 2411/2411 2230/2230 2320/2320 +f 2321/2321 2411/2411 2231/2231 +f 2322/2322 2140/2140 2412/2412 +f 2322/2322 2413/2413 2234/2234 +f 2324/2324 2323/2323 2139/2139 +f 2324/2324 2234/2234 2413/2413 +f 2235/2235 2408/2408 2325/2325 +f 2140/2140 2325/2325 2412/2412 +f 2414/2414 2141/2141 2323/2323 +f 2326/2326 2141/2141 2415/2415 +f 2236/2236 2326/2326 2416/2416 +f 2143/2143 2417/2417 2327/2327 +f 2418/2418 2328/2328 2237/2237 +f 2328/2328 2417/2417 2143/2143 +f 2329/2329 2419/2419 2237/2237 +f 2420/2420 2238/2238 2330/2330 +f 2238/2238 2419/2419 2329/2329 +f 2168/2168 2239/2239 2350/2350 +f 2327/2327 2417/2417 2239/2239 +f 2330/2330 2240/2240 2421/2421 +f 2421/2421 2240/2240 2246/2246 +f 2241/2241 2422/2422 2332/2332 +f 2422/2422 2241/2241 2333/2333 +f 2333/2333 2147/2147 2423/2423 +f 2331/2331 2424/2424 2242/2242 +f 2243/2243 2242/2242 2425/2425 +f 2243/2243 2425/2425 2334/2334 +f 2147/2147 2334/2334 2423/2423 +f 2332/2332 2426/2426 2244/2244 +f 2335/2335 2244/2244 2427/2427 +f 2149/2149 2336/2336 2428/2428 +f 2335/2335 2429/2429 2245/2245 +f 2245/2245 2430/2430 2336/2336 +f 2149/2149 2431/2431 2337/2337 +f 2432/2432 2246/2246 2337/2337 +f 2261/2261 2338/2338 2247/2247 +f 2252/2252 2346/2346 2247/2247 +f 2433/2433 2249/2249 2248/2248 +f 2249/2249 2433/2433 2339/2339 +f 2340/2340 2250/2250 2434/2434 +f 2435/2435 2250/2250 2339/2339 +f 2341/2341 2436/2436 2248/2248 +f 2269/2269 2341/2341 2152/2152 +f 2437/2437 2155/2155 2342/2342 +f 2438/2438 2342/2342 2154/2154 +f 2340/2340 2438/2438 2154/2154 +f 2252/2252 2343/2343 2346/2346 +f 2437/2437 2343/2343 2155/2155 +f 2253/2253 2254/2254 2439/2439 +f 2260/2260 2348/2348 2254/2254 +f 2160/2160 2345/2345 2164/2164 +f 2344/2344 2440/2440 2255/2255 +f 2256/2256 2255/2255 2441/2441 +f 2442/2442 2259/2259 2257/2257 +f 2161/2161 2261/2261 2346/2346 +f 2257/2257 2346/2346 2343/2343 +f 2440/2440 2344/2344 2162/2162 +f 2347/2347 2440/2440 2162/2162 +f 2259/2259 2443/2443 2347/2347 +f 2348/2348 2164/2164 2444/2444 +f 2349/2349 2262/2262 2263/2263 +f 2167/2167 2349/2349 2445/2445 +f 2265/2265 2446/2446 2264/2264 +f 2266/2266 2264/2264 2351/2351 +f 2350/2350 2447/2447 2265/2265 +f 2448/2448 2078/2078 2351/2351 +f 2268/2268 2267/2267 2449/2449 +f 2170/2170 2352/2352 2353/2353 +f 2268/2268 2450/2450 2352/2352 +f 2269/2269 2353/2353 2451/2451 +f 2354/2354 2171/2171 2358/2358 +f 2395/2395 2172/2172 2354/2354 +f 2304/2304 2172/2172 2395/2395 +f 2270/2270 2355/2355 2452/2452 +f 2357/2357 2355/2355 2083/2083 +f 2453/2453 2356/2356 2173/2173 +f 2271/2271 2356/2356 2357/2357 +f 2358/2358 2270/2270 2452/2452 +f 2173/2173 2359/2359 2453/2453 +f 2454/2454 2273/2273 2281/2281 +f 2362/2362 2361/2361 2178/2178 +f 2361/2361 2455/2455 2274/2274 +f 2362/2362 2273/2273 2454/2454 +f 2179/2179 2363/2363 2456/2456 +f 2180/2180 2457/2457 2363/2363 +f 2275/2275 2364/2364 2458/2458 +f 2364/2364 2179/2179 2456/2456 +f 2458/2458 2365/2365 2275/2275 +f 2365/2365 2367/2367 2276/2276 +f 2455/2455 2366/2366 2274/2274 +f 2457/2457 2180/2180 2366/2366 +f 2368/2368 2181/2181 2367/2367 +f 2367/2367 2278/2278 2368/2368 +f 2278/2278 2367/2367 2279/2279 +f 2102/2102 2285/2285 2369/2369 +f 2183/2183 2369/2369 2370/2370 +f 2370/2370 2459/2459 2280/2280 +f 2460/2460 2281/2281 2280/2280 +f 2282/2282 2461/2461 2371/2371 +f 2286/2286 2185/2185 2371/2371 +f 2372/2372 2282/2282 2283/2283 +f 2375/2375 2189/2189 2192/2192 +f 2189/2189 2375/2375 2373/2373 +f 2190/2190 2462/2462 2374/2374 +f 2285/2285 2374/2374 2463/2463 +f 2373/2373 2462/2462 2190/2190 +f 2376/2376 2375/2375 2193/2193 +f 2376/2376 2286/2286 2464/2464 +f 2201/2201 2465/2465 2372/2372 +f 2445/2445 2377/2377 2167/2167 +f 2380/2380 2107/2107 2379/2379 +f 2290/2290 2289/2289 2381/2381 +f 2290/2290 2466/2466 2291/2291 +f 2201/2201 2382/2382 2465/2465 +f 2466/2466 2382/2382 2291/2291 +f 2467/2467 2292/2292 2383/2383 +f 2424/2424 2204/2204 2384/2384 +f 2468/2468 2384/2384 2294/2294 +f 2204/2204 2424/2424 2331/2331 +f 2294/2294 2385/2385 2468/2468 +f 2469/2469 2385/2385 2295/2295 +f 2299/2299 2470/2470 2295/2295 +f 2296/2296 2471/2471 2297/2297 +f 2206/2206 2386/2386 2472/2472 +f 2386/2386 2297/2297 2471/2471 +f 2298/2298 2387/2387 2300/2300 +f 2206/2206 2472/2472 2387/2387 +f 2299/2299 2388/2388 2473/2473 +f 2300/2300 2474/2474 2388/2388 +f 2292/2292 2467/2467 2296/2296 +f 2389/2389 2301/2301 2390/2390 +f 2475/2475 2116/2116 2389/2389 +f 2391/2391 2390/2390 2209/2209 +f 2391/2391 2236/2236 2476/2476 +f 2392/2392 2477/2477 2302/2302 +f 2116/2116 2478/2478 2392/2392 +f 2303/2303 2302/2302 2477/2477 +f 2383/2383 2303/2303 2479/2479 +f 2395/2395 2393/2393 2213/2213 +f 2394/2394 2211/2211 2393/2393 +f 2212/2212 2394/2394 2396/2396 +f 2305/2305 2396/2396 2480/2480 +f 2481/2481 2215/2215 2397/2397 +f 2397/2397 2306/2306 2309/2309 +f 2215/2215 2481/2481 2398/2398 +f 2307/2307 2398/2398 2482/2482 +f 2399/2399 2400/2400 2216/2216 +f 2308/2308 2402/2402 2399/2399 +f 2400/2400 2483/2483 2309/2309 +f 2307/2307 2484/2484 2403/2403 +f 2407/2407 2227/2227 2404/2404 +f 2404/2404 2313/2313 2485/2485 +f 2486/2486 2313/2313 2405/2405 +f 2314/2314 2487/2487 2405/2405 +f 2403/2403 2488/2488 2314/2314 +f 2315/2315 2317/2317 2489/2489 +f 2490/2490 2316/2316 2315/2315 +f 2319/2319 2316/2316 2491/2491 +f 2317/2317 2406/2406 2492/2492 +f 2406/2406 2318/2318 2492/2492 +f 2407/2407 2492/2492 2318/2318 +f 2493/2493 2408/2408 2319/2319 +f 2409/2409 2305/2305 2494/2494 +f 2495/2495 2229/2229 2409/2409 +f 2229/2229 2495/2495 2410/2410 +f 2411/2411 2320/2320 2410/2410 +f 2496/2496 2322/2322 2412/2412 +f 2322/2322 2497/2497 2413/2413 +f 2413/2413 2323/2323 2324/2324 +f 2325/2325 2408/2408 2493/2493 +f 2412/2412 2325/2325 2498/2498 +f 2414/2414 2323/2323 2413/2413 +f 2415/2415 2141/2141 2414/2414 +f 2499/2499 2326/2326 2415/2415 +f 2476/2476 2236/2236 2416/2416 +f 2416/2416 2326/2326 2500/2500 +f 2418/2418 2237/2237 2501/2501 +f 2417/2417 2328/2328 2418/2418 +f 2501/2501 2237/2237 2419/2419 +f 2419/2419 2238/2238 2420/2420 +f 2420/2420 2330/2330 2502/2502 +f 2239/2239 2503/2503 2350/2350 +f 2417/2417 2503/2503 2239/2239 +f 2502/2502 2330/2330 2421/2421 +f 2504/2504 2421/2421 2246/2246 +f 2505/2505 2332/2332 2422/2422 +f 2506/2506 2422/2422 2333/2333 +f 2333/2333 2423/2423 2507/2507 +f 2424/2424 2384/2384 2242/2242 +f 2242/2242 2384/2384 2425/2425 +f 2334/2334 2425/2425 2508/2508 +f 2334/2334 2509/2509 2423/2423 +f 2244/2244 2426/2426 2510/2510 +f 2332/2332 2510/2510 2426/2426 +f 2510/2510 2427/2427 2244/2244 +f 2427/2427 2429/2429 2335/2335 +f 2431/2431 2149/2149 2428/2428 +f 2428/2428 2336/2336 2511/2511 +f 2430/2430 2245/2245 2429/2429 +f 2512/2512 2336/2336 2430/2430 +f 2337/2337 2431/2431 2513/2513 +f 2337/2337 2514/2514 2432/2432 +f 2504/2504 2246/2246 2432/2432 +f 2247/2247 2346/2346 2261/2261 +f 2433/2433 2248/2248 2436/2436 +f 2436/2436 2339/2339 2433/2433 +f 2250/2250 2435/2435 2434/2434 +f 2434/2434 2515/2515 2340/2340 +f 2435/2435 2339/2339 2516/2516 +f 2517/2517 2436/2436 2341/2341 +f 2341/2341 2269/2269 2517/2517 +f 2342/2342 2518/2518 2437/2437 +f 2342/2342 2438/2438 2519/2519 +f 2438/2438 2340/2340 2515/2515 +f 2520/2520 2343/2343 2437/2437 +f 2439/2439 2254/2254 2521/2521 +f 2348/2348 2521/2521 2254/2254 +f 2444/2444 2164/2164 2345/2345 +f 2440/2440 2522/2522 2255/2255 +f 2522/2522 2441/2441 2255/2255 +f 2257/2257 2523/2523 2442/2442 +f 2524/2524 2259/2259 2442/2442 +f 2257/2257 2343/2343 2523/2523 +f 2347/2347 2525/2525 2440/2440 +f 2443/2443 2526/2526 2347/2347 +f 2524/2524 2443/2443 2259/2259 +f 2348/2348 2444/2444 2521/2521 +f 2446/2446 2527/2527 2264/2264 +f 2446/2446 2265/2265 2447/2447 +f 2264/2264 2527/2527 2351/2351 +f 2528/2528 2447/2447 2350/2350 +f 2351/2351 2529/2529 2448/2448 +f 2449/2449 2450/2450 2268/2268 +f 2353/2353 2352/2352 2530/2530 +f 2530/2530 2352/2352 2450/2450 +f 2531/2531 2451/2451 2353/2353 +f 2451/2451 2517/2517 2269/2269 +f 2395/2395 2354/2354 2358/2358 +f 2532/2532 2452/2452 2355/2355 +f 2532/2532 2355/2355 2357/2357 +f 2453/2453 2533/2533 2356/2356 +f 2356/2356 2534/2534 2357/2357 +f 2358/2358 2452/2452 2393/2393 +f 2359/2359 2533/2533 2453/2453 +f 2460/2460 2454/2454 2281/2281 +f 2535/2535 2361/2361 2362/2362 +f 2455/2455 2361/2361 2535/2535 +f 2536/2536 2362/2362 2454/2454 +f 2363/2363 2457/2457 2456/2456 +f 2458/2458 2364/2364 2537/2537 +f 2364/2364 2456/2456 2538/2538 +f 2539/2539 2365/2365 2458/2458 +f 2365/2365 2539/2539 2367/2367 +f 2366/2366 2455/2455 2540/2540 +f 2457/2457 2366/2366 2541/2541 +f 2367/2367 2542/2542 2279/2279 +f 2285/2285 2463/2463 2369/2369 +f 2369/2369 2463/2463 2370/2370 +f 2460/2460 2280/2280 2459/2459 +f 2543/2543 2459/2459 2370/2370 +f 2461/2461 2464/2464 2371/2371 +f 2282/2282 2465/2465 2461/2461 +f 2286/2286 2371/2371 2464/2464 +f 2465/2465 2282/2282 2372/2372 +f 2373/2373 2375/2375 2544/2544 +f 2462/2462 2545/2545 2374/2374 +f 2374/2374 2545/2545 2463/2463 +f 2462/2462 2373/2373 2544/2544 +f 2375/2375 2376/2376 2546/2546 +f 2464/2464 2547/2547 2376/2376 +f 2290/2290 2381/2381 2466/2466 +f 2479/2479 2467/2467 2383/2383 +f 2468/2468 2548/2548 2384/2384 +f 2468/2468 2385/2385 2549/2549 +f 2470/2470 2469/2469 2295/2295 +f 2469/2469 2549/2549 2385/2385 +f 2299/2299 2550/2550 2470/2470 +f 2296/2296 2467/2467 2471/2471 +f 2471/2471 2472/2472 2386/2386 +f 2551/2551 2300/2300 2387/2387 +f 2472/2472 2552/2552 2387/2387 +f 2550/2550 2299/2299 2473/2473 +f 2474/2474 2473/2473 2388/2388 +f 2553/2553 2474/2474 2300/2300 +f 2554/2554 2389/2389 2390/2390 +f 2475/2475 2478/2478 2116/2116 +f 2475/2475 2389/2389 2478/2478 +f 2391/2391 2554/2554 2390/2390 +f 2391/2391 2476/2476 2555/2555 +f 2392/2392 2556/2556 2477/2477 +f 2392/2392 2478/2478 2557/2557 +f 2303/2303 2477/2477 2558/2558 +f 2479/2479 2303/2303 2558/2558 +f 2358/2358 2393/2393 2395/2395 +f 2559/2559 2394/2394 2393/2393 +f 2394/2394 2560/2560 2396/2396 +f 2305/2305 2480/2480 2494/2494 +f 2480/2480 2396/2396 2560/2560 +f 2309/2309 2483/2483 2397/2397 +f 2482/2482 2398/2398 2481/2481 +f 2307/2307 2482/2482 2484/2484 +f 2484/2484 2488/2488 2403/2403 +f 2407/2407 2404/2404 2561/2561 +f 2404/2404 2485/2485 2562/2562 +f 2313/2313 2486/2486 2485/2485 +f 2486/2486 2405/2405 2487/2487 +f 2563/2563 2487/2487 2314/2314 +f 2314/2314 2488/2488 2563/2563 +f 2317/2317 2564/2564 2489/2489 +f 2565/2565 2315/2315 2489/2489 +f 2491/2491 2316/2316 2490/2490 +f 2565/2565 2490/2490 2315/2315 +f 2319/2319 2491/2491 2566/2566 +f 2317/2317 2492/2492 2564/2564 +f 2492/2492 2407/2407 2567/2567 +f 2568/2568 2493/2493 2319/2319 +f 2409/2409 2494/2494 2410/2410 +f 2495/2495 2409/2409 2410/2410 +f 2496/2496 2497/2497 2322/2322 +f 2569/2569 2496/2496 2412/2412 +f 2497/2497 2570/2570 2413/2413 +f 2571/2571 2325/2325 2493/2493 +f 2498/2498 2569/2569 2412/2412 +f 2325/2325 2572/2572 2498/2498 +f 2413/2413 2573/2573 2414/2414 +f 2415/2415 2414/2414 2573/2573 +f 2326/2326 2499/2499 2574/2574 +f 2415/2415 2573/2573 2499/2499 +f 2555/2555 2476/2476 2416/2416 +f 2574/2574 2500/2500 2326/2326 +f 2416/2416 2500/2500 2555/2555 +f 2418/2418 2501/2501 2575/2575 +f 2417/2417 2418/2418 2503/2503 +f 2419/2419 2576/2576 2501/2501 +f 2577/2577 2419/2419 2420/2420 +f 2578/2578 2420/2420 2502/2502 +f 2503/2503 2528/2528 2350/2350 +f 2421/2421 2504/2504 2502/2502 +f 2505/2505 2579/2579 2332/2332 +f 2422/2422 2580/2580 2505/2505 +f 2506/2506 2580/2580 2422/2422 +f 2507/2507 2506/2506 2333/2333 +f 2581/2581 2507/2507 2423/2423 +f 2384/2384 2548/2548 2425/2425 +f 2425/2425 2548/2548 2508/2508 +f 2508/2508 2582/2582 2334/2334 +f 2582/2582 2509/2509 2334/2334 +f 2423/2423 2509/2509 2581/2581 +f 2579/2579 2510/2510 2332/2332 +f 2427/2427 2510/2510 2579/2579 +f 2427/2427 2583/2583 2429/2429 +f 2428/2428 2584/2584 2431/2431 +f 2512/2512 2511/2511 2336/2336 +f 2428/2428 2511/2511 2585/2585 +f 2429/2429 2586/2586 2430/2430 +f 2587/2587 2512/2512 2430/2430 +f 2514/2514 2337/2337 2513/2513 +f 2584/2584 2513/2513 2431/2431 +f 2514/2514 2588/2588 2432/2432 +f 2432/2432 2588/2588 2504/2504 +f 2516/2516 2339/2339 2436/2436 +f 2435/2435 2589/2589 2434/2434 +f 2590/2590 2515/2515 2434/2434 +f 2516/2516 2591/2591 2435/2435 +f 2436/2436 2517/2517 2592/2592 +f 2342/2342 2519/2519 2518/2518 +f 2520/2520 2437/2437 2518/2518 +f 2438/2438 2593/2593 2519/2519 +f 2438/2438 2515/2515 2594/2594 +f 2523/2523 2343/2343 2520/2520 +f 2444/2444 2345/2345 2521/2521 +f 2440/2440 2595/2595 2522/2522 +f 2522/2522 2596/2596 2441/2441 +f 2442/2442 2523/2523 2597/2597 +f 2597/2597 2524/2524 2442/2442 +f 2595/2595 2440/2440 2525/2525 +f 2526/2526 2525/2525 2347/2347 +f 2443/2443 2598/2598 2526/2526 +f 2598/2598 2443/2443 2524/2524 +f 2527/2527 2446/2446 2599/2599 +f 2447/2447 2599/2599 2446/2446 +f 2351/2351 2527/2527 2529/2529 +f 2600/2600 2447/2447 2528/2528 +f 2450/2450 2449/2449 2601/2601 +f 2602/2602 2353/2353 2530/2530 +f 2450/2450 2603/2603 2530/2530 +f 2517/2517 2451/2451 2531/2531 +f 2604/2604 2531/2531 2353/2353 +f 2605/2605 2452/2452 2532/2532 +f 2533/2533 2532/2532 2357/2357 +f 2534/2534 2356/2356 2533/2533 +f 2534/2534 2533/2533 2357/2357 +f 2559/2559 2393/2393 2452/2452 +f 2606/2606 2454/2454 2460/2460 +f 2362/2362 2536/2536 2535/2535 +f 2535/2535 2607/2607 2455/2455 +f 2536/2536 2454/2454 2608/2608 +f 2538/2538 2456/2456 2457/2457 +f 2609/2609 2537/2537 2364/2364 +f 2539/2539 2458/2458 2537/2537 +f 2364/2364 2538/2538 2609/2609 +f 2610/2610 2367/2367 2539/2539 +f 2540/2540 2455/2455 2611/2611 +f 2366/2366 2540/2540 2541/2541 +f 2457/2457 2541/2541 2612/2612 +f 2367/2367 2610/2610 2542/2542 +f 2370/2370 2463/2463 2613/2613 +f 2614/2614 2460/2460 2459/2459 +f 2459/2459 2543/2543 2615/2615 +f 2613/2613 2543/2543 2370/2370 +f 2464/2464 2461/2461 2616/2616 +f 2375/2375 2617/2617 2544/2544 +f 2462/2462 2544/2544 2545/2545 +f 2463/2463 2545/2545 2613/2613 +f 2376/2376 2547/2547 2546/2546 +f 2375/2375 2546/2546 2618/2618 +f 2547/2547 2464/2464 2616/2616 +f 2467/2467 2479/2479 2619/2619 +f 2468/2468 2620/2620 2548/2548 +f 2549/2549 2621/2621 2468/2468 +f 2469/2469 2470/2470 2622/2622 +f 2622/2622 2549/2549 2469/2469 +f 2470/2470 2550/2550 2622/2622 +f 2619/2619 2471/2471 2467/2467 +f 2471/2471 2552/2552 2472/2472 +f 2552/2552 2551/2551 2387/2387 +f 2551/2551 2623/2623 2300/2300 +f 2550/2550 2473/2473 2624/2624 +f 2474/2474 2624/2624 2473/2473 +f 2623/2623 2553/2553 2300/2300 +f 2625/2625 2474/2474 2553/2553 +f 2554/2554 2626/2626 2389/2389 +f 2627/2627 2478/2478 2389/2389 +f 2628/2628 2554/2554 2391/2391 +f 2391/2391 2555/2555 2628/2628 +f 2556/2556 2558/2558 2477/2477 +f 2629/2629 2556/2556 2392/2392 +f 2557/2557 2478/2478 2627/2627 +f 2557/2557 2629/2629 2392/2392 +f 2619/2619 2479/2479 2558/2558 +f 2394/2394 2559/2559 2560/2560 +f 2480/2480 2560/2560 2494/2494 +f 2484/2484 2482/2482 2630/2630 +f 2484/2484 2563/2563 2488/2488 +f 2407/2407 2561/2561 2631/2631 +f 2562/2562 2561/2561 2404/2404 +f 2485/2485 2486/2486 2632/2632 +f 2632/2632 2486/2486 2487/2487 +f 2632/2632 2487/2487 2563/2563 +f 2489/2489 2564/2564 2633/2633 +f 2633/2633 2565/2565 2489/2489 +f 2565/2565 2491/2491 2490/2490 +f 2568/2568 2319/2319 2566/2566 +f 2566/2566 2491/2491 2634/2634 +f 2567/2567 2564/2564 2492/2492 +f 2631/2631 2567/2567 2407/2407 +f 2493/2493 2568/2568 2635/2635 +f 2497/2497 2496/2496 2636/2636 +f 2569/2569 2637/2637 2496/2496 +f 2413/2413 2570/2570 2573/2573 +f 2497/2497 2638/2638 2570/2570 +f 2571/2571 2493/2493 2639/2639 +f 2325/2325 2571/2571 2572/2572 +f 2640/2640 2569/2569 2498/2498 +f 2572/2572 2640/2640 2498/2498 +f 2499/2499 2641/2641 2574/2574 +f 2642/2642 2499/2499 2573/2573 +f 2574/2574 2643/2643 2500/2500 +f 2555/2555 2500/2500 2644/2644 +f 2575/2575 2501/2501 2645/2645 +f 2503/2503 2418/2418 2575/2575 +f 2501/2501 2576/2576 2645/2645 +f 2576/2576 2419/2419 2577/2577 +f 2420/2420 2578/2578 2577/2577 +f 2502/2502 2646/2646 2578/2578 +f 2503/2503 2647/2647 2528/2528 +f 2502/2502 2504/2504 2588/2588 +f 2579/2579 2505/2505 2583/2583 +f 2580/2580 2648/2648 2505/2505 +f 2580/2580 2506/2506 2649/2649 +f 2507/2507 2650/2650 2506/2506 +f 2507/2507 2581/2581 2651/2651 +f 2548/2548 2652/2652 2508/2508 +f 2653/2653 2582/2582 2508/2508 +f 2509/2509 2582/2582 2654/2654 +f 2509/2509 2651/2651 2581/2581 +f 2579/2579 2583/2583 2427/2427 +f 2586/2586 2429/2429 2583/2583 +f 2585/2585 2584/2584 2428/2428 +f 2511/2511 2512/2512 2655/2655 +f 2511/2511 2656/2656 2585/2585 +f 2586/2586 2657/2657 2430/2430 +f 2658/2658 2512/2512 2587/2587 +f 2430/2430 2657/2657 2587/2587 +f 2513/2513 2659/2659 2514/2514 +f 2660/2660 2513/2513 2584/2584 +f 2661/2661 2588/2588 2514/2514 +f 2592/2592 2516/2516 2436/2436 +f 2591/2591 2589/2589 2435/2435 +f 2662/2662 2434/2434 2589/2589 +f 2662/2662 2590/2590 2434/2434 +f 2515/2515 2590/2590 2594/2594 +f 2663/2663 2591/2591 2516/2516 +f 2531/2531 2592/2592 2517/2517 +f 2519/2519 2664/2664 2518/2518 +f 2518/2518 2664/2664 2520/2520 +f 2593/2593 2664/2664 2519/2519 +f 2438/2438 2594/2594 2593/2593 +f 2665/2665 2523/2523 2520/2520 +f 2522/2522 2595/2595 2666/2666 +f 2522/2522 2666/2666 2596/2596 +f 2441/2441 2596/2596 2667/2667 +f 2668/2668 2597/2597 2523/2523 +f 2597/2597 2598/2598 2524/2524 +f 2595/2595 2525/2525 2526/2526 +f 2669/2669 2526/2526 2598/2598 +f 2529/2529 2527/2527 2599/2599 +f 2599/2599 2447/2447 2600/2600 +f 2601/2601 2603/2603 2450/2450 +f 2353/2353 2602/2602 2604/2604 +f 2531/2531 2604/2604 2670/2670 +f 2671/2671 2452/2452 2605/2605 +f 2605/2605 2532/2532 2672/2672 +f 2559/2559 2452/2452 2671/2671 +f 2673/2673 2606/2606 2460/2460 +f 2454/2454 2606/2606 2674/2674 +f 2536/2536 2607/2607 2535/2535 +f 2611/2611 2455/2455 2607/2607 +f 2608/2608 2454/2454 2674/2674 +f 2675/2675 2536/2536 2608/2608 +f 2609/2609 2610/2610 2537/2537 +f 2539/2539 2537/2537 2610/2610 +f 2540/2540 2611/2611 2612/2612 +f 2612/2612 2541/2541 2540/2540 +f 2609/2609 2542/2542 2610/2610 +f 2460/2460 2614/2614 2673/2673 +f 2615/2615 2614/2614 2459/2459 +f 2676/2676 2615/2615 2543/2543 +f 2677/2677 2543/2543 2613/2613 +f 2617/2617 2678/2678 2544/2544 +f 2617/2617 2375/2375 2618/2618 +f 2544/2544 2678/2678 2545/2545 +f 2545/2545 2679/2679 2613/2613 +f 2618/2618 2546/2546 2547/2547 +f 2616/2616 2618/2618 2547/2547 +f 2468/2468 2621/2621 2620/2620 +f 2620/2620 2680/2680 2548/2548 +f 2621/2621 2549/2549 2681/2681 +f 2622/2622 2682/2682 2549/2549 +f 2624/2624 2622/2622 2550/2550 +f 2683/2683 2471/2471 2619/2619 +f 2552/2552 2471/2471 2683/2683 +f 2551/2551 2552/2552 2684/2684 +f 2685/2685 2623/2623 2551/2551 +f 2474/2474 2625/2625 2624/2624 +f 2623/2623 2686/2686 2553/2553 +f 2553/2553 2687/2687 2625/2625 +f 2626/2626 2554/2554 2628/2628 +f 2688/2688 2389/2389 2626/2626 +f 2627/2627 2389/2389 2688/2688 +f 2644/2644 2628/2628 2555/2555 +f 2683/2683 2558/2558 2556/2556 +f 2556/2556 2629/2629 2689/2689 +f 2627/2627 2690/2690 2557/2557 +f 2557/2557 2691/2691 2629/2629 +f 2683/2683 2619/2619 2558/2558 +f 2559/2559 2692/2692 2560/2560 +f 2484/2484 2630/2630 2693/2693 +f 2563/2563 2484/2484 2693/2693 +f 2562/2562 2631/2631 2561/2561 +f 2632/2632 2563/2563 2693/2693 +f 2564/2564 2567/2567 2633/2633 +f 2565/2565 2633/2633 2694/2694 +f 2491/2491 2565/2565 2634/2634 +f 2566/2566 2695/2695 2568/2568 +f 2566/2566 2634/2634 2695/2695 +f 2562/2562 2567/2567 2631/2631 +f 2696/2696 2635/2635 2568/2568 +f 2635/2635 2639/2639 2493/2493 +f 2636/2636 2697/2697 2497/2497 +f 2496/2496 2637/2637 2636/2636 +f 2637/2637 2569/2569 2698/2698 +f 2699/2699 2573/2573 2570/2570 +f 2638/2638 2700/2700 2570/2570 +f 2638/2638 2497/2497 2697/2697 +f 2571/2571 2639/2639 2701/2701 +f 2698/2698 2572/2572 2571/2571 +f 2569/2569 2640/2640 2698/2698 +f 2640/2640 2572/2572 2698/2698 +f 2641/2641 2499/2499 2642/2642 +f 2641/2641 2702/2702 2574/2574 +f 2573/2573 2703/2703 2642/2642 +f 2644/2644 2500/2500 2643/2643 +f 2643/2643 2574/2574 2702/2702 +f 2645/2645 2704/2704 2575/2575 +f 2575/2575 2647/2647 2503/2503 +f 2645/2645 2576/2576 2705/2705 +f 2706/2706 2576/2576 2577/2577 +f 2578/2578 2706/2706 2577/2577 +f 2707/2707 2646/2646 2502/2502 +f 2578/2578 2646/2646 2706/2706 +f 2708/2708 2528/2528 2647/2647 +f 2588/2588 2707/2707 2502/2502 +f 2583/2583 2505/2505 2709/2709 +f 2580/2580 2710/2710 2648/2648 +f 2648/2648 2709/2709 2505/2505 +f 2649/2649 2711/2711 2580/2580 +f 2712/2712 2649/2649 2506/2506 +f 2650/2650 2507/2507 2651/2651 +f 2506/2506 2650/2650 2712/2712 +f 2652/2652 2548/2548 2680/2680 +f 2652/2652 2653/2653 2508/2508 +f 2582/2582 2653/2653 2654/2654 +f 2654/2654 2713/2713 2509/2509 +f 2651/2651 2509/2509 2713/2713 +f 2709/2709 2586/2586 2583/2583 +f 2585/2585 2660/2660 2584/2584 +f 2512/2512 2714/2714 2655/2655 +f 2656/2656 2511/2511 2655/2655 +f 2656/2656 2715/2715 2585/2585 +f 2657/2657 2586/2586 2716/2716 +f 2587/2587 2717/2717 2658/2658 +f 2658/2658 2714/2714 2512/2512 +f 2657/2657 2717/2717 2587/2587 +f 2659/2659 2513/2513 2718/2718 +f 2659/2659 2661/2661 2514/2514 +f 2660/2660 2719/2719 2513/2513 +f 2661/2661 2707/2707 2588/2588 +f 2670/2670 2516/2516 2592/2592 +f 2663/2663 2589/2589 2591/2591 +f 2589/2589 2720/2720 2662/2662 +f 2721/2721 2590/2590 2662/2662 +f 2594/2594 2590/2590 2722/2722 +f 2516/2516 2670/2670 2663/2663 +f 2531/2531 2670/2670 2592/2592 +f 2664/2664 2723/2723 2520/2520 +f 2664/2664 2593/2593 2724/2724 +f 2594/2594 2725/2725 2593/2593 +f 2665/2665 2520/2520 2726/2726 +f 2665/2665 2727/2727 2523/2523 +f 2728/2728 2666/2666 2595/2595 +f 2666/2666 2729/2729 2596/2596 +f 2730/2730 2667/2667 2596/2596 +f 2727/2727 2668/2668 2523/2523 +f 2668/2668 2598/2598 2597/2597 +f 2526/2526 2728/2728 2595/2595 +f 2728/2728 2526/2526 2669/2669 +f 2731/2731 2669/2669 2598/2598 +f 2671/2671 2605/2605 2672/2672 +f 2692/2692 2559/2559 2671/2671 +f 2606/2606 2673/2673 2732/2732 +f 2606/2606 2733/2733 2674/2674 +f 2536/2536 2675/2675 2607/2607 +f 2734/2734 2611/2611 2607/2607 +f 2735/2735 2608/2608 2674/2674 +f 2675/2675 2608/2608 2735/2735 +f 2611/2611 2734/2734 2612/2612 +f 2736/2736 2673/2673 2614/2614 +f 2615/2615 2676/2676 2614/2614 +f 2676/2676 2543/2543 2677/2677 +f 2613/2613 2679/2679 2677/2677 +f 2678/2678 2617/2617 2737/2737 +f 2738/2738 2617/2617 2618/2618 +f 2678/2678 2739/2739 2545/2545 +f 2679/2679 2545/2545 2740/2740 +f 2618/2618 2616/2616 2738/2738 +f 2621/2621 2741/2741 2620/2620 +f 2680/2680 2620/2620 2742/2742 +f 2681/2681 2549/2549 2682/2682 +f 2743/2743 2621/2621 2681/2681 +f 2682/2682 2622/2622 2625/2625 +f 2625/2625 2622/2622 2624/2624 +f 2552/2552 2683/2683 2744/2744 +f 2745/2745 2551/2551 2684/2684 +f 2746/2746 2684/2684 2552/2552 +f 2685/2685 2551/2551 2747/2747 +f 2685/2685 2748/2748 2623/2623 +f 2686/2686 2687/2687 2553/2553 +f 2623/2623 2748/2748 2686/2686 +f 2749/2749 2625/2625 2687/2687 +f 2626/2626 2628/2628 2750/2750 +f 2626/2626 2751/2751 2688/2688 +f 2688/2688 2751/2751 2627/2627 +f 2750/2750 2628/2628 2644/2644 +f 2556/2556 2752/2752 2683/2683 +f 2691/2691 2689/2689 2629/2629 +f 2689/2689 2752/2752 2556/2556 +f 2690/2690 2691/2691 2557/2557 +f 2690/2690 2627/2627 2753/2753 +f 2672/2672 2560/2560 2692/2692 +f 2630/2630 2632/2632 2693/2693 +f 2567/2567 2754/2754 2633/2633 +f 2755/2755 2694/2694 2633/2633 +f 2694/2694 2634/2634 2565/2565 +f 2756/2756 2568/2568 2695/2695 +f 2757/2757 2695/2695 2634/2634 +f 2754/2754 2567/2567 2562/2562 +f 2696/2696 2758/2758 2635/2635 +f 2696/2696 2568/2568 2756/2756 +f 2639/2639 2635/2635 2759/2759 +f 2760/2760 2697/2697 2636/2636 +f 2636/2636 2637/2637 2761/2761 +f 2762/2762 2637/2637 2698/2698 +f 2703/2703 2573/2573 2699/2699 +f 2570/2570 2700/2700 2699/2699 +f 2638/2638 2763/2763 2700/2700 +f 2760/2760 2638/2638 2697/2697 +f 2701/2701 2639/2639 2764/2764 +f 2701/2701 2698/2698 2571/2571 +f 2765/2765 2641/2641 2642/2642 +f 2765/2765 2702/2702 2641/2641 +f 2642/2642 2703/2703 2766/2766 +f 2767/2767 2644/2644 2643/2643 +f 2702/2702 2768/2768 2643/2643 +f 2769/2769 2704/2704 2645/2645 +f 2704/2704 2708/2708 2575/2575 +f 2575/2575 2708/2708 2647/2647 +f 2706/2706 2705/2705 2576/2576 +f 2770/2770 2645/2645 2705/2705 +f 2771/2771 2646/2646 2707/2707 +f 2646/2646 2772/2772 2706/2706 +f 2710/2710 2580/2580 2773/2773 +f 2710/2710 2774/2774 2648/2648 +f 2648/2648 2774/2774 2709/2709 +f 2649/2649 2775/2775 2711/2711 +f 2711/2711 2776/2776 2580/2580 +f 2777/2777 2649/2649 2712/2712 +f 2778/2778 2650/2650 2651/2651 +f 2779/2779 2712/2712 2650/2650 +f 2652/2652 2680/2680 2780/2780 +f 2781/2781 2653/2653 2652/2652 +f 2653/2653 2782/2782 2654/2654 +f 2782/2782 2713/2713 2654/2654 +f 2783/2783 2651/2651 2713/2713 +f 2716/2716 2586/2586 2709/2709 +f 2585/2585 2784/2784 2660/2660 +f 2785/2785 2655/2655 2714/2714 +f 2656/2656 2655/2655 2786/2786 +f 2786/2786 2715/2715 2656/2656 +f 2715/2715 2784/2784 2585/2585 +f 2657/2657 2716/2716 2787/2787 +f 2788/2788 2658/2658 2717/2717 +f 2789/2789 2714/2714 2658/2658 +f 2717/2717 2657/2657 2790/2790 +f 2718/2718 2513/2513 2719/2719 +f 2791/2791 2719/2719 2660/2660 +f 2707/2707 2661/2661 2771/2771 +f 2662/2662 2720/2720 2792/2792 +f 2721/2721 2722/2722 2590/2590 +f 2721/2721 2662/2662 2792/2792 +f 2725/2725 2594/2594 2722/2722 +f 2723/2723 2726/2726 2520/2520 +f 2724/2724 2723/2723 2664/2664 +f 2724/2724 2593/2593 2725/2725 +f 2726/2726 2793/2793 2665/2665 +f 2665/2665 2793/2793 2727/2727 +f 2794/2794 2666/2666 2728/2728 +f 2666/2666 2794/2794 2729/2729 +f 2596/2596 2729/2729 2730/2730 +f 2668/2668 2727/2727 2731/2731 +f 2598/2598 2668/2668 2731/2731 +f 2794/2794 2728/2728 2669/2669 +f 2669/2669 2731/2731 2795/2795 +f 2692/2692 2671/2671 2672/2672 +f 2732/2732 2673/2673 2796/2796 +f 2606/2606 2732/2732 2733/2733 +f 2733/2733 2797/2797 2674/2674 +f 2798/2798 2607/2607 2675/2675 +f 2607/2607 2799/2799 2734/2734 +f 2800/2800 2735/2735 2674/2674 +f 2801/2801 2675/2675 2735/2735 +f 2612/2612 2734/2734 2802/2802 +f 2673/2673 2736/2736 2796/2796 +f 2736/2736 2614/2614 2796/2796 +f 2676/2676 2803/2803 2614/2614 +f 2804/2804 2676/2676 2677/2677 +f 2804/2804 2677/2677 2679/2679 +f 2678/2678 2737/2737 2739/2739 +f 2738/2738 2737/2737 2617/2617 +f 2740/2740 2545/2545 2739/2739 +f 2679/2679 2740/2740 2804/2804 +f 2805/2805 2741/2741 2621/2621 +f 2620/2620 2741/2741 2742/2742 +f 2680/2680 2742/2742 2806/2806 +f 2681/2681 2682/2682 2807/2807 +f 2808/2808 2743/2743 2681/2681 +f 2621/2621 2743/2743 2809/2809 +f 2682/2682 2625/2625 2749/2749 +f 2744/2744 2746/2746 2552/2552 +f 2752/2752 2744/2744 2683/2683 +f 2810/2810 2551/2551 2745/2745 +f 2745/2745 2684/2684 2811/2811 +f 2684/2684 2746/2746 2812/2812 +f 2747/2747 2551/2551 2810/2810 +f 2813/2813 2685/2685 2747/2747 +f 2685/2685 2814/2814 2748/2748 +f 2687/2687 2686/2686 2815/2815 +f 2748/2748 2816/2816 2686/2686 +f 2687/2687 2817/2817 2749/2749 +f 2751/2751 2626/2626 2750/2750 +f 2751/2751 2818/2818 2627/2627 +f 2750/2750 2644/2644 2767/2767 +f 2689/2689 2691/2691 2819/2819 +f 2820/2820 2752/2752 2689/2689 +f 2691/2691 2690/2690 2819/2819 +f 2819/2819 2690/2690 2753/2753 +f 2627/2627 2818/2818 2753/2753 +f 2633/2633 2754/2754 2755/2755 +f 2694/2694 2755/2755 2821/2821 +f 2694/2694 2757/2757 2634/2634 +f 2695/2695 2757/2757 2756/2756 +f 2822/2822 2754/2754 2562/2562 +f 2759/2759 2635/2635 2758/2758 +f 2758/2758 2696/2696 2756/2756 +f 2823/2823 2639/2639 2759/2759 +f 2761/2761 2760/2760 2636/2636 +f 2761/2761 2637/2637 2824/2824 +f 2762/2762 2824/2824 2637/2637 +f 2762/2762 2698/2698 2825/2825 +f 2703/2703 2699/2699 2826/2826 +f 2699/2699 2700/2700 2826/2826 +f 2827/2827 2700/2700 2763/2763 +f 2828/2828 2763/2763 2638/2638 +f 2760/2760 2829/2829 2638/2638 +f 2830/2830 2764/2764 2639/2639 +f 2701/2701 2764/2764 2831/2831 +f 2701/2701 2825/2825 2698/2698 +f 2765/2765 2642/2642 2832/2832 +f 2768/2768 2702/2702 2765/2765 +f 2833/2833 2766/2766 2703/2703 +f 2832/2832 2642/2642 2766/2766 +f 2767/2767 2643/2643 2834/2834 +f 2768/2768 2834/2834 2643/2643 +f 2769/2769 2835/2835 2704/2704 +f 2769/2769 2645/2645 2770/2770 +f 2705/2705 2706/2706 2836/2836 +f 2770/2770 2705/2705 2836/2836 +f 2772/2772 2646/2646 2771/2771 +f 2706/2706 2772/2772 2836/2836 +f 2580/2580 2776/2776 2773/2773 +f 2773/2773 2837/2837 2710/2710 +f 2774/2774 2710/2710 2838/2838 +f 2774/2774 2716/2716 2709/2709 +f 2839/2839 2775/2775 2649/2649 +f 2840/2840 2711/2711 2775/2775 +f 2711/2711 2840/2840 2776/2776 +f 2649/2649 2777/2777 2839/2839 +f 2777/2777 2712/2712 2841/2841 +f 2842/2842 2778/2778 2651/2651 +f 2778/2778 2779/2779 2650/2650 +f 2779/2779 2841/2841 2712/2712 +f 2652/2652 2780/2780 2781/2781 +f 2806/2806 2780/2780 2680/2680 +f 2781/2781 2843/2843 2653/2653 +f 2844/2844 2782/2782 2653/2653 +f 2713/2713 2782/2782 2845/2845 +f 2713/2713 2845/2845 2783/2783 +f 2783/2783 2846/2846 2651/2651 +f 2847/2847 2660/2660 2784/2784 +f 2785/2785 2786/2786 2655/2655 +f 2785/2785 2714/2714 2848/2848 +f 2715/2715 2786/2786 2849/2849 +f 2784/2784 2715/2715 2849/2849 +f 2787/2787 2716/2716 2850/2850 +f 2787/2787 2790/2790 2657/2657 +f 2788/2788 2717/2717 2851/2851 +f 2788/2788 2789/2789 2658/2658 +f 2714/2714 2789/2789 2852/2852 +f 2790/2790 2853/2853 2717/2717 +f 2719/2719 2854/2854 2718/2718 +f 2719/2719 2791/2791 2854/2854 +f 2660/2660 2847/2847 2791/2791 +f 2720/2720 2855/2855 2792/2792 +f 2721/2721 2856/2856 2722/2722 +f 2792/2792 2857/2857 2721/2721 +f 2725/2725 2722/2722 2858/2858 +f 2726/2726 2723/2723 2859/2859 +f 2860/2860 2723/2723 2724/2724 +f 2724/2724 2725/2725 2861/2861 +f 2793/2793 2726/2726 2862/2862 +f 2793/2793 2731/2731 2727/2727 +f 2669/2669 2863/2863 2794/2794 +f 2731/2731 2793/2793 2795/2795 +f 2795/2795 2864/2864 2669/2669 +f 2732/2732 2796/2796 2733/2733 +f 2865/2865 2797/2797 2733/2733 +f 2797/2797 2800/2800 2674/2674 +f 2675/2675 2801/2801 2798/2798 +f 2866/2866 2607/2607 2798/2798 +f 2866/2866 2799/2799 2607/2607 +f 2802/2802 2734/2734 2799/2799 +f 2800/2800 2801/2801 2735/2735 +f 2796/2796 2614/2614 2803/2803 +f 2803/2803 2676/2676 2867/2867 +f 2676/2676 2804/2804 2867/2867 +f 2737/2737 2868/2868 2739/2739 +f 2739/2739 2869/2869 2740/2740 +f 2804/2804 2740/2740 2870/2870 +f 2741/2741 2805/2805 2871/2871 +f 2809/2809 2805/2805 2621/2621 +f 2741/2741 2872/2872 2742/2742 +f 2806/2806 2742/2742 2873/2873 +f 2807/2807 2682/2682 2749/2749 +f 2681/2681 2807/2807 2808/2808 +f 2743/2743 2808/2808 2874/2874 +f 2743/2743 2875/2875 2809/2809 +f 2876/2876 2746/2746 2744/2744 +f 2744/2744 2752/2752 2876/2876 +f 2811/2811 2810/2810 2745/2745 +f 2811/2811 2684/2684 2877/2877 +f 2878/2878 2684/2684 2812/2812 +f 2876/2876 2812/2812 2746/2746 +f 2747/2747 2810/2810 2813/2813 +f 2813/2813 2879/2879 2685/2685 +f 2880/2880 2814/2814 2685/2685 +f 2748/2748 2814/2814 2816/2816 +f 2817/2817 2687/2687 2815/2815 +f 2815/2815 2686/2686 2816/2816 +f 2817/2817 2881/2881 2749/2749 +f 2750/2750 2882/2882 2751/2751 +f 2751/2751 2753/2753 2818/2818 +f 2750/2750 2767/2767 2883/2883 +f 2884/2884 2689/2689 2819/2819 +f 2885/2885 2752/2752 2820/2820 +f 2689/2689 2884/2884 2820/2820 +f 2886/2886 2819/2819 2753/2753 +f 2755/2755 2754/2754 2822/2822 +f 2822/2822 2821/2821 2755/2755 +f 2821/2821 2757/2757 2694/2694 +f 2759/2759 2758/2758 2823/2823 +f 2823/2823 2830/2830 2639/2639 +f 2760/2760 2761/2761 2887/2887 +f 2887/2887 2761/2761 2824/2824 +f 2824/2824 2762/2762 2888/2888 +f 2762/2762 2825/2825 2888/2888 +f 2703/2703 2826/2826 2889/2889 +f 2700/2700 2827/2827 2826/2826 +f 2827/2827 2763/2763 2890/2890 +f 2763/2763 2828/2828 2890/2890 +f 2638/2638 2829/2829 2828/2828 +f 2829/2829 2760/2760 2891/2891 +f 2892/2892 2764/2764 2830/2830 +f 2831/2831 2893/2893 2701/2701 +f 2894/2894 2831/2831 2764/2764 +f 2701/2701 2893/2893 2825/2825 +f 2832/2832 2895/2895 2765/2765 +f 2768/2768 2765/2765 2895/2895 +f 2833/2833 2832/2832 2766/2766 +f 2889/2889 2833/2833 2703/2703 +f 2896/2896 2767/2767 2834/2834 +f 2897/2897 2834/2834 2768/2768 +f 2769/2769 2898/2898 2835/2835 +f 2769/2769 2770/2770 2898/2898 +f 2898/2898 2770/2770 2836/2836 +f 2772/2772 2898/2898 2836/2836 +f 2776/2776 2837/2837 2773/2773 +f 2710/2710 2837/2837 2899/2899 +f 2838/2838 2710/2710 2899/2899 +f 2774/2774 2838/2838 2900/2900 +f 2901/2901 2716/2716 2774/2774 +f 2775/2775 2839/2839 2902/2902 +f 2840/2840 2775/2775 2902/2902 +f 2903/2903 2776/2776 2840/2840 +f 2839/2839 2777/2777 2904/2904 +f 2841/2841 2904/2904 2777/2777 +f 2651/2651 2846/2846 2842/2842 +f 2842/2842 2905/2905 2778/2778 +f 2841/2841 2779/2779 2778/2778 +f 2781/2781 2780/2780 2843/2843 +f 2780/2780 2806/2806 2906/2906 +f 2907/2907 2653/2653 2843/2843 +f 2907/2907 2844/2844 2653/2653 +f 2908/2908 2782/2782 2844/2844 +f 2908/2908 2845/2845 2782/2782 +f 2783/2783 2845/2845 2909/2909 +f 2783/2783 2910/2910 2846/2846 +f 2849/2849 2847/2847 2784/2784 +f 2911/2911 2786/2786 2785/2785 +f 2714/2714 2852/2852 2848/2848 +f 2848/2848 2912/2912 2785/2785 +f 2849/2849 2786/2786 2911/2911 +f 2716/2716 2901/2901 2850/2850 +f 2850/2850 2913/2913 2787/2787 +f 2787/2787 2914/2914 2790/2790 +f 2915/2915 2788/2788 2851/2851 +f 2853/2853 2851/2851 2717/2717 +f 2915/2915 2789/2789 2788/2788 +f 2789/2789 2916/2916 2852/2852 +f 2917/2917 2853/2853 2790/2790 +f 2854/2854 2791/2791 2918/2918 +f 2791/2791 2847/2847 2919/2919 +f 2920/2920 2792/2792 2855/2855 +f 2855/2855 2720/2720 2921/2921 +f 2857/2857 2856/2856 2721/2721 +f 2858/2858 2722/2722 2856/2856 +f 2857/2857 2792/2792 2922/2922 +f 2923/2923 2725/2725 2858/2858 +f 2723/2723 2860/2860 2859/2859 +f 2726/2726 2859/2859 2924/2924 +f 2860/2860 2724/2724 2925/2925 +f 2861/2861 2725/2725 2923/2923 +f 2925/2925 2724/2724 2861/2861 +f 2924/2924 2862/2862 2726/2726 +f 2793/2793 2862/2862 2795/2795 +f 2863/2863 2669/2669 2864/2864 +f 2863/2863 2926/2926 2794/2794 +f 2927/2927 2864/2864 2795/2795 +f 2733/2733 2796/2796 2865/2865 +f 2928/2928 2797/2797 2865/2865 +f 2797/2797 2929/2929 2800/2800 +f 2798/2798 2801/2801 2930/2930 +f 2931/2931 2866/2866 2798/2798 +f 2932/2932 2799/2799 2866/2866 +f 2800/2800 2930/2930 2801/2801 +f 2803/2803 2865/2865 2796/2796 +f 2933/2933 2803/2803 2867/2867 +f 2804/2804 2933/2933 2867/2867 +f 2737/2737 2934/2934 2868/2868 +f 2739/2739 2868/2868 2869/2869 +f 2869/2869 2870/2870 2740/2740 +f 2933/2933 2804/2804 2870/2870 +f 2872/2872 2741/2741 2871/2871 +f 2871/2871 2805/2805 2935/2935 +f 2936/2936 2805/2805 2809/2809 +f 2742/2742 2872/2872 2937/2937 +f 2938/2938 2873/2873 2742/2742 +f 2806/2806 2873/2873 2939/2939 +f 2940/2940 2807/2807 2749/2749 +f 2940/2940 2808/2808 2807/2807 +f 2874/2874 2808/2808 2941/2941 +f 2874/2874 2875/2875 2743/2743 +f 2942/2942 2809/2809 2875/2875 +f 2876/2876 2752/2752 2885/2885 +f 2811/2811 2943/2943 2810/2810 +f 2684/2684 2878/2878 2877/2877 +f 2943/2943 2811/2811 2877/2877 +f 2812/2812 2944/2944 2878/2878 +f 2812/2812 2876/2876 2945/2945 +f 2946/2946 2813/2813 2810/2810 +f 2685/2685 2879/2879 2880/2880 +f 2879/2879 2813/2813 2946/2946 +f 2816/2816 2814/2814 2880/2880 +f 2881/2881 2817/2817 2815/2815 +f 2816/2816 2947/2947 2815/2815 +f 2948/2948 2749/2749 2881/2881 +f 2882/2882 2753/2753 2751/2751 +f 2882/2882 2750/2750 2949/2949 +f 2767/2767 2950/2950 2883/2883 +f 2949/2949 2750/2750 2883/2883 +f 2886/2886 2884/2884 2819/2819 +f 2820/2820 2951/2951 2885/2885 +f 2884/2884 2951/2951 2820/2820 +f 2753/2753 2952/2952 2886/2886 +f 2758/2758 2830/2830 2823/2823 +f 2760/2760 2887/2887 2891/2891 +f 2888/2888 2887/2887 2824/2824 +f 2888/2888 2825/2825 2893/2893 +f 2889/2889 2826/2826 2953/2953 +f 2827/2827 2954/2954 2826/2826 +f 2955/2955 2827/2827 2890/2890 +f 2828/2828 2956/2956 2890/2890 +f 2828/2828 2829/2829 2957/2957 +f 2958/2958 2829/2829 2891/2891 +f 2894/2894 2764/2764 2892/2892 +f 2959/2959 2893/2893 2831/2831 +f 2959/2959 2831/2831 2894/2894 +f 2833/2833 2895/2895 2832/2832 +f 2768/2768 2895/2895 2897/2897 +f 2889/2889 2960/2960 2833/2833 +f 2834/2834 2897/2897 2896/2896 +f 2961/2961 2767/2767 2896/2896 +f 2837/2837 2776/2776 2962/2962 +f 2837/2837 2962/2962 2899/2899 +f 35994/38653 2838/2838 2899/2899 +f 35995/38654 35994/38653 2899/2899 +f 2900/2900 2901/2901 2774/2774 +f 2963/2963 2900/2900 2838/2838 +f 2839/2839 2964/2964 2902/2902 +f 2903/2903 2840/2840 2902/2902 +f 2776/2776 2903/2903 2962/2962 +f 2839/2839 2904/2904 2964/2964 +f 2904/2904 2841/2841 2965/2965 +f 2842/2842 2846/2846 2910/2910 +f 2842/2842 2966/2966 2905/2905 +f 2905/2905 2841/2841 2778/2778 +f 2967/2967 2843/2843 2780/2780 +f 2906/2906 2806/2806 2939/2939 +f 2968/2968 2780/2780 2906/2906 +f 2967/2967 2907/2907 2843/2843 +f 2844/2844 2907/2907 2969/2969 +f 35996/38655 2908/2908 2844/2844 +f 35997/38656 35996/38655 2844/2844 +f 35998/38657 2845/2845 2908/2908 +f 35999/38658 35998/38657 2908/2908 +f 36000/38659 2909/2909 2845/2845 +f 36001/38660 36000/38659 2845/2845 +f 2910/2910 2783/2783 2909/2909 +f 2849/2849 2919/2919 2847/2847 +f 2970/2970 2911/2911 2785/2785 +f 2852/2852 2971/2971 2848/2848 +f 2972/2972 2912/2912 2848/2848 +f 2912/2912 2973/2973 2785/2785 +f 2974/2974 2849/2849 2911/2911 +f 2901/2901 2975/2975 2850/2850 +f 2787/2787 2913/2913 2914/2914 +f 2976/2976 2913/2913 2850/2850 +f 2914/2914 2917/2917 2790/2790 +f 2915/2915 2851/2851 2977/2977 +f 2851/2851 2853/2853 2978/2978 +f 2789/2789 2915/2915 2979/2979 +f 2916/2916 2789/2789 2979/2979 +f 2980/2980 2852/2852 2916/2916 +f 2853/2853 2917/2917 2978/2978 +f 2854/2854 2918/2918 2981/2981 +f 2918/2918 2791/2791 2919/2919 +f 2920/2920 2922/2922 2792/2792 +f 2855/2855 2982/2982 2920/2920 +f 2921/2921 2983/2983 2855/2855 +f 2857/2857 2984/2984 2856/2856 +f 2856/2856 2985/2985 2858/2858 +f 2984/2984 2857/2857 2922/2922 +f 2986/2986 2923/2923 2858/2858 +f 2987/2987 2859/2859 2860/2860 +f 2924/2924 2859/2859 2988/2988 +f 2989/2989 2860/2860 2925/2925 +f 2861/2861 2923/2923 2990/2990 +f 2861/2861 2990/2990 2925/2925 +f 2924/2924 2927/2927 2862/2862 +f 2862/2862 2927/2927 2795/2795 +f 2864/2864 2926/2926 2863/2863 +f 2864/2864 2927/2927 2991/2991 +f 2797/2797 2928/2928 2929/2929 +f 2928/2928 2865/2865 2803/2803 +f 2800/2800 2929/2929 2930/2930 +f 2930/2930 2931/2931 2798/2798 +f 2866/2866 2931/2931 2932/2932 +f 2932/2932 2992/2992 2799/2799 +f 2928/2928 2803/2803 2933/2933 +f 2868/2868 2934/2934 2993/2993 +f 2934/2934 2737/2737 2994/2994 +f 2993/2993 2869/2869 2868/2868 +f 2870/2870 2869/2869 2933/2933 +f 2871/2871 2995/2995 2872/2872 +f 2805/2805 2936/2936 2935/2935 +f 2996/2996 2871/2871 2935/2935 +f 2809/2809 2997/2997 2936/2936 +f 2742/2742 2937/2937 2938/2938 +f 2995/2995 2937/2937 2872/2872 +f 2938/2938 2998/2998 2873/2873 +f 2998/2998 2939/2939 2873/2873 +f 2808/2808 2940/2940 2749/2749 +f 2948/2948 2941/2941 2808/2808 +f 2941/2941 2999/2999 2874/2874 +f 2875/2875 2874/2874 2999/2999 +f 3000/3000 2809/2809 2942/2942 +f 36002/38661 2942/2942 2875/2875 +f 36003/38662 36002/38661 2875/2875 +f 2885/2885 2945/2945 2876/2876 +f 2946/2946 2810/2810 2943/2943 +f 2877/2877 2878/2878 3001/3001 +f 3002/3002 2943/2943 2877/2877 +f 3003/3003 2944/2944 2812/2812 +f 2944/2944 3001/3001 2878/2878 +f 2945/2945 3003/3003 2812/2812 +f 2879/2879 3004/3004 2880/2880 +f 2879/2879 2946/2946 3005/3005 +f 2880/2880 3006/3006 2816/2816 +f 3007/3007 2881/2881 2815/2815 +f 2947/2947 2816/2816 3006/3006 +f 2815/2815 2947/2947 3007/3007 +f 2808/2808 2749/2749 2948/2948 +f 2948/2948 2881/2881 3008/3008 +f 2882/2882 2952/2952 2753/2753 +f 3009/3009 2882/2882 2949/2949 +f 2767/2767 2961/2961 2950/2950 +f 2950/2950 2949/2949 2883/2883 +f 2886/2886 3010/3010 2884/2884 +f 2885/2885 2951/2951 2945/2945 +f 2951/2951 2884/2884 3010/3010 +f 2952/2952 3011/3011 2886/2886 +f 2887/2887 3012/3012 2891/2891 +f 2888/2888 3012/3012 2887/2887 +f 2888/2888 2893/2893 3013/3013 +f 2826/2826 2954/2954 2953/2953 +f 2889/2889 2953/2953 3014/3014 +f 3015/3015 2954/2954 2827/2827 +f 3015/3015 2827/2827 2955/2955 +f 2955/2955 2890/2890 3016/3016 +f 2956/2956 2828/2828 3017/3017 +f 3016/3016 2890/2890 2956/2956 +f 2957/2957 3017/3017 2828/2828 +f 2957/2957 2829/2829 3018/3018 +f 2958/2958 2891/2891 3019/3019 +f 2829/2829 2958/2958 3020/3020 +f 2894/2894 2892/2892 3021/3021 +f 3013/3013 2893/2893 2959/2959 +f 2894/2894 3013/3013 2959/2959 +f 2960/2960 2895/2895 2833/2833 +f 2897/2897 2895/2895 3022/3022 +f 2889/2889 3023/3023 2960/2960 +f 2896/2896 2897/2897 3022/3022 +f 2896/2896 3024/3024 2961/2961 +f 35995/38663 2899/2899 2962/2962 +f 36004/38664 35995/38663 2962/2962 +f 2838/2838 35994/38665 36005/38666 +f 2975/2975 2901/2901 2900/2900 +f 2975/2975 2900/2900 2963/2963 +f 36006/38667 2963/2963 2838/2838 +f 36007/38668 36006/38667 2838/2838 +f 2964/2964 3025/3025 2902/2902 +f 3026/3026 2903/2903 2902/2902 +f 36008/38669 2962/2962 2903/2903 +f 36009/38670 36008/38669 2903/2903 +f 2964/2964 2904/2904 2965/2965 +f 2965/2965 2841/2841 3027/3027 +f 2910/2910 2966/2966 2842/2842 +f 36010/38671 2905/2905 2966/2966 +f 36011/38672 36010/38671 2966/2966 +f 2841/2841 2905/2905 3027/3027 +f 2967/2967 2780/2780 3028/3028 +f 2939/2939 2968/2968 2906/2906 +f 3029/3029 2780/2780 2968/2968 +f 3030/3030 2907/2907 2967/2967 +f 35997/38673 2844/2844 2969/2969 +f 36012/38674 35997/38673 2969/2969 +f 2969/2969 2907/2907 3030/3030 +f 2908/2908 35996/38675 36013/38676 +f 2908/2908 36013/38677 35999/38678 +f 2845/2845 35998/38679 36014/38680 +f 2845/2845 36014/38681 36001/38682 +f 36015/38683 2910/2910 2909/2909 +f 36000/38684 36015/38683 2909/2909 +f 3031/3031 2919/2919 2849/2849 +f 2911/2911 2970/2970 2974/2974 +f 2970/2970 2785/2785 2973/2973 +f 2852/2852 3032/3032 2971/2971 +f 2848/2848 2971/2971 2972/2972 +f 2972/2972 3033/3033 2912/2912 +f 3034/3034 2973/2973 2912/2912 +f 2974/2974 3031/3031 2849/2849 +f 2975/2975 2976/2976 2850/2850 +f 3035/3035 2914/2914 2913/2913 +f 2913/2913 2976/2976 3035/3035 +f 2917/2917 2914/2914 3036/3036 +f 2851/2851 3037/3037 2977/2977 +f 3038/3038 2915/2915 2977/2977 +f 3037/3037 2851/2851 2978/2978 +f 2915/2915 3039/3039 2979/2979 +f 36016/38685 2916/2916 2979/2979 +f 36017/38686 36016/38685 2979/2979 +f 2916/2916 3040/3040 2980/2980 +f 3032/3032 2852/2852 2980/2980 +f 2917/2917 3036/3036 2978/2978 +f 3041/3041 2981/2981 2918/2918 +f 3041/3041 2918/2918 2919/2919 +f 2982/2982 2922/2922 2920/2920 +f 2982/2982 2855/2855 3042/3042 +f 2983/2983 2921/2921 3043/3043 +f 2983/2983 3042/3042 2855/2855 +f 2984/2984 2985/2985 2856/2856 +f 2985/2985 2986/2986 2858/2858 +f 3044/3044 2984/2984 2922/2922 +f 2986/2986 3045/3045 2923/2923 +f 2987/2987 2860/2860 3046/3046 +f 2988/2988 2859/2859 2987/2987 +f 2927/2927 2924/2924 2988/2988 +f 2989/2989 3046/3046 2860/2860 +f 2990/2990 2989/2989 2925/2925 +f 2990/2990 2923/2923 3047/3047 +f 2864/2864 3048/3048 2926/2926 +f 2991/2991 2927/2927 3049/3049 +f 3050/3050 2864/2864 2991/2991 +f 2928/2928 3051/3051 2929/2929 +f 3052/3052 2930/2930 2929/2929 +f 2930/2930 3053/3053 2931/2931 +f 3053/3053 2932/2932 2931/2931 +f 2933/2933 3051/3051 2928/2928 +f 2934/2934 3054/3054 2993/2993 +f 3055/3055 2934/2934 2994/2994 +f 3054/3054 2869/2869 2993/2993 +f 2869/2869 3056/3056 2933/2933 +f 2871/2871 2996/2996 2995/2995 +f 2936/2936 2997/2997 2935/2935 +f 3057/3057 2996/2996 2935/2935 +f 3000/3000 2997/2997 2809/2809 +f 2937/2937 3058/3058 2938/2938 +f 2995/2995 3058/3058 2937/2937 +f 3058/3058 2998/2998 2938/2938 +f 3059/3059 2939/2939 2998/2998 +f 3060/3060 2941/2941 2948/2948 +f 36018/38687 2999/2999 2941/2941 +f 36019/38688 36018/38687 2941/2941 +f 36003/38689 2875/2875 2999/2999 +f 36020/38690 36003/38689 2999/2999 +f 36021/38691 3000/3000 2942/2942 +f 36022/38692 36021/38691 2942/2942 +f 2942/2942 36002/38693 36023/38694 +f 2943/2943 3061/3061 2946/2946 +f 3001/3001 3002/3002 2877/2877 +f 2943/2943 3002/3002 3062/3062 +f 3003/3003 3063/3063 2944/2944 +f 2944/2944 3063/3063 3001/3001 +f 3064/3064 3003/3003 2945/2945 +f 2880/2880 3004/3004 3065/3065 +f 3004/3004 2879/2879 3066/3066 +f 3066/3066 2879/2879 3005/3005 +f 2946/2946 3061/3061 3005/3005 +f 3065/3065 3006/3006 2880/2880 +f 3007/3007 3008/3008 2881/2881 +f 36024/38695 2947/2947 3006/3006 +f 36025/38696 36024/38695 3006/3006 +f 2947/2947 3067/3067 3007/3007 +f 3008/3008 3060/3060 2948/2948 +f 2952/2952 2882/2882 3009/3009 +f 3009/3009 2949/2949 3068/3068 +f 3068/3068 2950/2950 2961/2961 +f 2950/2950 3068/3068 2949/2949 +f 2886/2886 3069/3069 3010/3010 +f 2945/2945 2951/2951 3070/3070 +f 3070/3070 2951/2951 3010/3010 +f 3011/3011 2952/2952 3009/3009 +f 3069/3069 2886/2886 3011/3011 +f 3019/3019 2891/2891 3012/3012 +f 2888/2888 3071/3071 3012/3012 +f 3013/3013 3071/3071 2888/2888 +f 2953/2953 2954/2954 3072/3072 +f 2889/2889 3014/3014 3023/3023 +f 3014/3014 2953/2953 3073/3073 +f 3074/3074 2954/2954 3015/3015 +f 3075/3075 3015/3015 2955/2955 +f 3016/3016 3076/3076 2955/2955 +f 3077/3077 2956/2956 3017/3017 +f 3016/3016 2956/2956 3077/3077 +f 3017/3017 2957/2957 3078/3078 +f 2829/2829 3020/3020 3018/3018 +f 2957/2957 3018/3018 3079/3079 +f 3080/3080 2958/2958 3019/3019 +f 3080/3080 3020/3020 2958/2958 +f 2894/2894 3021/3021 3081/3081 +f 3071/3071 3013/3013 2894/2894 +f 2960/2960 3022/3022 2895/2895 +f 2960/2960 3023/3023 3022/3022 +f 2896/2896 3022/3022 3024/3024 +f 3082/3082 2961/2961 3024/3024 +f 2962/2962 36008/38697 36004/38698 +f 2838/2838 36005/38699 36007/38700 +f 2976/2976 2975/2975 2963/2963 +f 2963/2963 36006/38701 36026/38702 +f 36027/38703 3025/3025 2964/2964 +f 36028/38704 36027/38703 2964/2964 +f 3025/3025 3026/3026 2902/2902 +f 36029/38705 2903/2903 3026/3026 +f 36030/38706 36029/38705 3026/3026 +f 2903/2903 36029/38707 36009/38708 +f 3083/3083 2964/2964 2965/2965 +f 36031/38709 2965/2965 3027/3027 +f 36032/38710 36031/38709 3027/3027 +f 36033/38711 2966/2966 2910/2910 +f 36015/38712 36033/38711 2910/2910 +f 2905/2905 36010/38713 36034/38714 +f 2966/2966 36033/38715 36011/38716 +f 36035/38717 3027/3027 2905/2905 +f 36034/38718 36035/38717 2905/2905 +f 2780/2780 3029/3029 3028/3028 +f 36036/38719 2967/2967 3028/3028 +f 36037/38720 36036/38719 3028/3028 +f 2939/2939 3059/3059 2968/2968 +f 36038/38721 3029/3029 2968/2968 +f 36039/38722 36038/38721 2968/2968 +f 36040/38723 3030/3030 2967/2967 +f 36036/38724 36040/38723 2967/2967 +f 2969/2969 36041/38725 36012/38726 +f 36041/38727 2969/2969 3030/3030 +f 36042/38728 36041/38727 3030/3030 +f 3031/3031 3041/3041 2919/2919 +f 2970/2970 3084/3084 2974/2974 +f 3085/3085 2970/2970 2973/2973 +f 2972/2972 2971/2971 3032/3032 +f 3033/3033 3034/3034 2912/2912 +f 3033/3033 2972/2972 3086/3086 +f 3034/3034 3087/3087 2973/2973 +f 3088/3088 3031/3031 2974/2974 +f 3035/3035 3089/3089 2914/2914 +f 36043/38729 3035/3035 2976/2976 +f 36044/38730 36043/38729 2976/2976 +f 2914/2914 3090/3090 3036/3036 +f 2977/2977 3037/3037 3091/3091 +f 3038/3038 3039/3039 2915/2915 +f 36045/38731 3038/3038 2977/2977 +f 36046/38732 36045/38731 2977/2977 +f 3036/3036 3037/3037 2978/2978 +f 36047/38733 2979/2979 3039/3039 +f 36048/38734 36047/38733 3039/3039 +f 36049/38735 3040/3040 2916/2916 +f 36016/38736 36049/38735 2916/2916 +f 2979/2979 36050/38737 36017/38738 +f 3040/3040 3092/3092 2980/2980 +f 3092/3092 3032/3032 2980/2980 +f 2922/2922 2982/2982 3093/3093 +f 3093/3093 2982/2982 3042/3042 +f 3094/3094 2983/2983 3043/3043 +f 3094/3094 3042/3042 2983/2983 +f 2985/2985 2984/2984 3095/3095 +f 2985/2985 3096/3096 2986/2986 +f 2984/2984 3044/3044 3097/3097 +f 3044/3044 2922/2922 3093/3093 +f 3096/3096 3045/3045 2986/2986 +f 3047/3047 2923/2923 3045/3045 +f 3046/3046 2988/2988 2987/2987 +f 2988/2988 3049/3049 2927/2927 +f 2989/2989 3098/3098 3046/3046 +f 2990/2990 3099/3099 2989/2989 +f 3100/3100 2990/2990 3047/3047 +f 2864/2864 3050/3050 3048/3048 +f 2991/2991 3049/3049 3101/3101 +f 3050/3050 2991/2991 3102/3102 +f 3051/3051 3052/3052 2929/2929 +f 2930/2930 3052/3052 3103/3103 +f 3103/3103 3053/3053 2930/2930 +f 3104/3104 2932/2932 3053/3053 +f 3056/3056 3051/3051 2933/2933 +f 3054/3054 2934/2934 3055/3055 +f 3055/3055 2994/2994 3105/3105 +f 2869/2869 3054/3054 3056/3056 +f 36051/38739 2995/2995 2996/2996 +f 36052/38740 36051/38739 2996/2996 +f 2935/2935 2997/2997 3057/3057 +f 36053/38741 2996/2996 3057/3057 +f 36054/38742 36053/38741 3057/3057 +f 36055/38743 2997/2997 3000/3000 +f 36056/38744 36055/38743 3000/3000 +f 3106/3106 3058/3058 2995/2995 +f 36057/38745 2998/2998 3058/3058 +f 36058/38746 36057/38745 3058/3058 +f 36059/38747 3059/3059 2998/2998 +f 36060/38748 36059/38747 2998/2998 +f 36019/38749 2941/2941 3060/3060 +f 36061/38750 36019/38749 3060/3060 +f 2999/2999 36018/38751 36062/38752 +f 2999/2999 36062/38753 36020/38754 +f 3000/3000 36021/38755 36056/38756 +f 2942/2942 36023/38757 36022/38758 +f 3061/3061 2943/2943 3107/3107 +f 3001/3001 3108/3108 3002/3002 +f 3062/3062 3002/3002 3108/3108 +f 3107/3107 2943/2943 3062/3062 +f 3064/3064 3063/3063 3003/3003 +f 3001/3001 3063/3063 3109/3109 +f 3070/3070 3064/3064 2945/2945 +f 3065/3065 3004/3004 3066/3066 +f 36063/38759 3066/3066 3005/3005 +f 36064/38760 36063/38759 3005/3005 +f 3110/3110 3005/3005 3061/3061 +f 36065/38761 3006/3006 3065/3065 +f 36066/38762 36065/38761 3065/3065 +f 3067/3067 3008/3008 3007/3007 +f 36067/38763 3067/3067 2947/2947 +f 36024/38764 36067/38763 2947/2947 +f 3006/3006 36065/38765 36025/38766 +f 3008/3008 3067/3067 3060/3060 +f 3009/3009 3068/3068 3111/3111 +f 3082/3082 3068/3068 2961/2961 +f 3070/3070 3010/3010 3069/3069 +f 3111/3111 3011/3011 3009/3009 +f 3069/3069 3011/3011 3070/3070 +f 3012/3012 3112/3112 3019/3019 +f 3113/3113 3012/3012 3071/3071 +f 3072/3072 3114/3114 2953/2953 +f 3072/3072 2954/2954 3074/3074 +f 3115/3115 3023/3023 3014/3014 +f 3073/3073 3116/3116 3014/3014 +f 3114/3114 3073/3073 2953/2953 +f 3074/3074 3015/3015 3072/3072 +f 3075/3075 3117/3117 3015/3015 +f 3075/3075 2955/2955 3076/3076 +f 3076/3076 3016/3016 3118/3118 +f 3017/3017 3119/3119 3077/3077 +f 3016/3016 3077/3077 3120/3120 +f 3078/3078 2957/2957 3121/3121 +f 3017/3017 3078/3078 3119/3119 +f 3020/3020 3122/3122 3018/3018 +f 3018/3018 3123/3123 3079/3079 +f 3079/3079 3121/3121 2957/2957 +f 3112/3112 3080/3080 3019/3019 +f 3124/3124 3020/3020 3080/3080 +f 3071/3071 2894/2894 3081/3081 +f 3125/3125 3022/3022 3023/3023 +f 3125/3125 3024/3024 3022/3022 +f 3082/3082 3024/3024 3126/3126 +f 36068/38767 2976/2976 2963/2963 +f 36026/38768 36068/38767 2963/2963 +f 36028/38769 2964/2964 3083/3083 +f 36069/38770 36028/38769 3083/3083 +f 3025/3025 36027/38771 36070/38772 +f 36030/38773 3026/3026 3025/3025 +f 36071/38774 36030/38773 3025/3025 +f 36069/38775 3083/3083 2965/2965 +f 36072/38776 36069/38775 2965/2965 +f 3027/3027 36073/38777 36032/38778 +f 2965/2965 36031/38779 36074/38780 +f 3027/3027 36035/38781 36073/38782 +f 36075/38783 3028/3028 3029/3029 +f 36076/38784 36075/38783 3029/3029 +f 3028/3028 36077/38785 36037/38786 +f 36039/38787 2968/2968 3059/3059 +f 36078/38788 36039/38787 3059/3059 +f 3029/3029 36038/38789 36076/38790 +f 3030/3030 36040/38791 36042/38792 +f 3041/3041 3031/3031 3127/3127 +f 2970/2970 3128/3128 3084/3084 +f 3084/3084 3088/3088 2974/2974 +f 3129/3129 2970/2970 3085/3085 +f 2973/2973 3087/3087 3085/3085 +f 3130/3130 2972/2972 3032/3032 +f 3033/3033 3087/3087 3034/3034 +f 3131/3131 3033/3033 3086/3086 +f 3130/3130 3086/3086 2972/2972 +f 3127/3127 3031/3031 3088/3088 +f 36079/38793 3089/3089 3035/3035 +f 36080/38794 36079/38793 3035/3035 +f 3090/3090 2914/2914 3089/3089 +f 3035/3035 36043/38795 36081/38796 +f 2976/2976 36068/38797 36044/38798 +f 3036/3036 3090/3090 3091/3091 +f 36082/38799 2977/2977 3091/3091 +f 36083/38800 36082/38799 3091/3091 +f 3037/3037 3036/3036 3091/3091 +f 36084/38801 3039/3039 3038/3038 +f 36045/38802 36084/38801 3038/3038 +f 2977/2977 36085/38803 36046/38804 +f 2979/2979 36047/38805 36050/38806 +f 3039/3039 36086/38807 36048/38808 +f 3040/3040 36049/38809 36087/38810 +f 36088/38811 3092/3092 3040/3040 +f 36089/38812 36088/38811 3040/3040 +f 3032/3032 3092/3092 3130/3130 +f 3095/3095 2984/2984 3097/3097 +f 3096/3096 2985/2985 3095/3095 +f 3044/3044 3132/3132 3097/3097 +f 3093/3093 3132/3132 3044/3044 +f 3045/3045 3096/3096 3133/3133 +f 3100/3100 3047/3047 3045/3045 +f 3046/3046 3101/3101 2988/2988 +f 2988/2988 3101/3101 3049/3049 +f 3101/3101 3046/3046 3098/3098 +f 2989/2989 3099/3099 3098/3098 +f 3100/3100 3099/3099 2990/2990 +f 2991/2991 3101/3101 3134/3134 +f 3102/3102 2991/2991 3134/3134 +f 3056/3056 3052/3052 3051/3051 +f 3103/3103 3052/3052 3135/3135 +f 3103/3103 3104/3104 3053/3053 +f 2932/2932 3104/3104 3136/3136 +f 3054/3054 3055/3055 3137/3137 +f 3055/3055 3105/3105 3137/3137 +f 3056/3056 3054/3054 3137/3137 +f 2996/2996 36053/38813 36052/38814 +f 36090/38815 3106/3106 2995/2995 +f 36051/38816 36090/38815 2995/2995 +f 36091/38817 3057/3057 2997/2997 +f 36092/38818 36091/38817 2997/2997 +f 3057/3057 36091/38819 36054/38820 +f 2997/2997 36055/38821 36093/38822 +f 36058/38823 3058/3058 3106/3106 +f 36094/38824 36058/38823 3106/3106 +f 2998/2998 36057/38825 36060/38826 +f 3059/3059 36059/38827 36095/38828 +f 3060/3060 36096/38829 36061/38830 +f 3061/3061 3107/3107 3110/3110 +f 3109/3109 3108/3108 3001/3001 +f 3062/3062 3108/3108 3109/3109 +f 3107/3107 3062/3062 3138/3138 +f 3063/3063 3064/3064 3139/3139 +f 3063/3063 3140/3140 3109/3109 +f 3141/3141 3064/3064 3070/3070 +f 36097/38831 3065/3065 3066/3066 +f 36098/38832 36097/38831 3066/3066 +f 3066/3066 36063/38833 36098/38834 +f 3005/3005 36099/38835 36064/38836 +f 36099/38837 3005/3005 3110/3110 +f 36100/38838 36099/38837 3110/3110 +f 3065/3065 36101/38839 36066/38840 +f 3067/3067 36067/38841 36102/38842 +f 36103/38843 3060/3060 3067/3067 +f 36104/38844 36103/38843 3067/3067 +f 3111/3111 3068/3068 3142/3142 +f 3068/3068 3082/3082 3143/3143 +f 3011/3011 3111/3111 3144/3144 +f 3144/3144 3070/3070 3011/3011 +f 3112/3112 3012/3012 3113/3113 +f 3113/3113 3071/3071 3145/3145 +f 3146/3146 3114/3114 3072/3072 +f 3147/3147 3023/3023 3115/3115 +f 3014/3014 3148/3148 3115/3115 +f 3149/3149 3116/3116 3073/3073 +f 3116/3116 3148/3148 3014/3014 +f 3149/3149 3073/3073 3114/3114 +f 3072/3072 3015/3015 3117/3117 +f 3117/3117 3075/3075 3150/3150 +f 3075/3075 3076/3076 3151/3151 +f 3118/3118 3152/3152 3076/3076 +f 3120/3120 3118/3118 3016/3016 +f 3120/3120 3077/3077 3119/3119 +f 3078/3078 3121/3121 3153/3153 +f 3119/3119 3078/3078 3120/3120 +f 3122/3122 3020/3020 3154/3154 +f 3018/3018 3122/3122 3155/3155 +f 3079/3079 3123/3123 3156/3156 +f 3155/3155 3123/3123 3018/3018 +f 3157/3157 3121/3121 3079/3079 +f 3080/3080 3112/3112 3158/3158 +f 3154/3154 3020/3020 3124/3124 +f 3124/3124 3080/3080 3159/3159 +f 3071/3071 3081/3081 3160/3160 +f 3023/3023 3161/3161 3125/3125 +f 3024/3024 3125/3125 3161/3161 +f 3126/3126 3143/3143 3082/3082 +f 3162/3162 3126/3126 3024/3024 +f 3025/3025 36070/38845 36071/38846 +f 2965/2965 36074/38847 36072/38848 +f 3028/3028 36075/38849 36077/38850 +f 3059/3059 36095/38851 36078/38852 +f 3129/3129 3128/3128 2970/2970 +f 3084/3084 3128/3128 3163/3163 +f 3088/3088 3084/3084 3163/3163 +f 3129/3129 3085/3085 3164/3164 +f 3085/3085 3087/3087 3165/3165 +f 3166/3166 3087/3087 3033/3033 +f 3166/3166 3033/3033 3131/3131 +f 36105/38853 3131/3131 3086/3086 +f 36106/38854 36105/38853 3086/3086 +f 3092/3092 3086/3086 3130/3130 +f 3127/3127 3088/3088 3163/3163 +f 3089/3089 36079/38855 36107/38856 +f 3035/3035 36108/38857 36080/38858 +f 36109/38859 3090/3090 3089/3089 +f 36107/38860 36109/38859 3089/3089 +f 3035/3035 36081/38861 36108/38862 +f 36110/38863 3091/3091 3090/3090 +f 36109/38864 36110/38863 3090/3090 +f 2977/2977 36082/38865 36085/38866 +f 3091/3091 36110/38867 36083/38868 +f 3039/3039 36084/38869 36086/38870 +f 3040/3040 36087/38871 36089/38872 +f 3092/3092 36088/38873 36111/38874 +f 3096/3096 3095/3095 3097/3097 +f 3097/3097 3132/3132 3167/3167 +f 3167/3167 3133/3133 3096/3096 +f 3133/3133 3100/3100 3045/3045 +f 3098/3098 3168/3168 3101/3101 +f 3098/3098 3099/3099 3169/3169 +f 3099/3099 3100/3100 3170/3170 +f 3101/3101 3168/3168 3134/3134 +f 3052/3052 3056/3056 3171/3171 +f 3103/3103 3135/3135 3136/3136 +f 3135/3135 3052/3052 3171/3171 +f 3104/3104 3103/3103 3136/3136 +f 3137/3137 3105/3105 3172/3172 +f 3172/3172 3056/3056 3137/3137 +f 3106/3106 36090/38875 36112/38876 +f 2997/2997 36093/38877 36092/38878 +f 3106/3106 36112/38879 36094/38880 +f 3060/3060 36113/38881 36096/38882 +f 3138/3138 3110/3110 3107/3107 +f 3138/3138 3062/3062 3109/3109 +f 3139/3139 3064/3064 3141/3141 +f 3063/3063 3139/3139 3173/3173 +f 3173/3173 3140/3140 3063/3063 +f 3109/3109 3140/3140 3174/3174 +f 3070/3070 3144/3144 3141/3141 +f 3065/3065 36097/38883 36101/38884 +f 3110/3110 36114/38885 36100/38886 +f 3067/3067 36102/38887 36104/38888 +f 3060/3060 36103/38889 36113/38890 +f 3142/3142 3068/3068 3175/3175 +f 3176/3176 3111/3111 3142/3142 +f 3175/3175 3068/3068 3143/3143 +f 3144/3144 3111/3111 3177/3177 +f 3113/3113 3178/3178 3112/3112 +f 3178/3178 3113/3113 3145/3145 +f 3160/3160 3145/3145 3071/3071 +f 3114/3114 3146/3146 3149/3149 +f 3072/3072 3117/3117 3146/3146 +f 3179/3179 3147/3147 3115/3115 +f 3147/3147 3161/3161 3023/3023 +f 3180/3180 3115/3115 3148/3148 +f 3181/3181 3116/3116 3149/3149 +f 3116/3116 3180/3180 3148/3148 +f 3150/3150 3075/3075 3182/3182 +f 3183/3183 3117/3117 3150/3150 +f 3076/3076 3152/3152 3151/3151 +f 3151/3151 3184/3184 3075/3075 +f 3185/3185 3152/3152 3118/3118 +f 3118/3118 3120/3120 3186/3186 +f 3078/3078 3153/3153 3120/3120 +f 3187/3187 3153/3153 3121/3121 +f 3155/3155 3122/3122 3154/3154 +f 3155/3155 3156/3156 3123/3123 +f 3156/3156 3188/3188 3079/3079 +f 3188/3188 3157/3157 3079/3079 +f 3157/3157 3187/3187 3121/3121 +f 3189/3189 3158/3158 3112/3112 +f 3080/3080 3158/3158 3190/3190 +f 3154/3154 3124/3124 3191/3191 +f 3159/3159 3192/3192 3124/3124 +f 3080/3080 3190/3190 3159/3159 +f 3161/3161 3193/3193 3024/3024 +f 3143/3143 3126/3126 3194/3194 +f 3195/3195 3162/3162 3024/3024 +f 3196/3196 3126/3126 3162/3162 +f 3128/3128 3129/3129 3197/3197 +f 3128/3128 3197/3197 3163/3163 +f 3164/3164 3198/3198 3129/3129 +f 3085/3085 3199/3199 3164/3164 +f 3165/3165 3087/3087 3200/3200 +f 3199/3199 3085/3085 3165/3165 +f 3200/3200 3087/3087 3166/3166 +f 36115/38891 3166/3166 3131/3131 +f 36105/38892 36115/38891 3131/3131 +f 3086/3086 36116/38893 36106/38894 +f 36117/38895 3086/3086 3092/3092 +f 36111/38896 36117/38895 3092/3092 +f 3096/3096 3097/3097 3167/3167 +f 3132/3132 3201/3201 3167/3167 +f 3202/3202 3133/3133 3167/3167 +f 3170/3170 3100/3100 3133/3133 +f 3098/3098 3169/3169 3168/3168 +f 3169/3169 3099/3099 3170/3170 +f 3168/3168 3203/3203 3134/3134 +f 3056/3056 3172/3172 3171/3171 +f 36118/38897 3110/3110 3138/3138 +f 36119/38898 36118/38897 3138/3138 +f 3138/3138 3109/3109 3204/3204 +f 3205/3205 3139/3139 3141/3141 +f 3173/3173 3139/3139 3206/3206 +f 3207/3207 3140/3140 3173/3173 +f 3109/3109 3174/3174 3204/3204 +f 3140/3140 3207/3207 3174/3174 +f 3205/3205 3141/3141 3144/3144 +f 3110/3110 36118/38899 36114/38900 +f 3175/3175 3208/3208 3142/3142 +f 3111/3111 3176/3176 3177/3177 +f 3208/3208 3176/3176 3142/3142 +f 3143/3143 3209/3209 3175/3175 +f 3177/3177 3210/3210 3144/3144 +f 3112/3112 3178/3178 3211/3211 +f 3178/3178 3145/3145 3160/3160 +f 3212/3212 3149/3149 3146/3146 +f 3146/3146 3117/3117 3183/3183 +f 3115/3115 3180/3180 3179/3179 +f 3213/3213 3147/3147 3179/3179 +f 3147/3147 3214/3214 3161/3161 +f 3149/3149 3212/3212 3181/3181 +f 3116/3116 3181/3181 3180/3180 +f 3182/3182 3075/3075 3184/3184 +f 3215/3215 3150/3150 3182/3182 +f 3215/3215 3183/3183 3150/3150 +f 3152/3152 3184/3184 3151/3151 +f 3184/3184 3152/3152 3185/3185 +f 3185/3185 3118/3118 3186/3186 +f 3120/3120 3216/3216 3186/3186 +f 3153/3153 3216/3216 3120/3120 +f 3217/3217 3153/3153 3187/3187 +f 3154/3154 3218/3218 3155/3155 +f 3218/3218 3156/3156 3155/3155 +f 3219/3219 3188/3188 3156/3156 +f 3188/3188 3220/3220 3157/3157 +f 3220/3220 3187/3187 3157/3157 +f 3158/3158 3189/3189 3211/3211 +f 3189/3189 3112/3112 3211/3211 +f 3159/3159 3190/3190 3158/3158 +f 3191/3191 3124/3124 3221/3221 +f 3218/3218 3154/3154 3191/3191 +f 3222/3222 3124/3124 3192/3192 +f 3159/3159 3223/3223 3192/3192 +f 3024/3024 3193/3193 3195/3195 +f 3224/3224 3193/3193 3161/3161 +f 3194/3194 3209/3209 3143/3143 +f 3194/3194 3126/3126 3225/3225 +f 3162/3162 3195/3195 3226/3226 +f 3227/3227 3196/3196 3162/3162 +f 3126/3126 3196/3196 3228/3228 +f 3229/3229 3197/3197 3129/3129 +f 36120/38901 3198/3198 3164/3164 +f 36121/38902 36120/38901 3164/3164 +f 3229/3229 3129/3129 3198/3198 +f 36122/38903 3164/3164 3199/3199 +f 36123/38904 36122/38903 3199/3199 +f 36124/38905 3165/3165 3200/3200 +f 36125/38906 36124/38905 3200/3200 +f 36126/38907 3199/3199 3165/3165 +f 36124/38908 36126/38907 3165/3165 +f 36127/38909 3200/3200 3166/3166 +f 36128/38910 36127/38909 3166/3166 +f 3166/3166 36115/38911 36129/38912 +f 3086/3086 36117/38913 36116/38914 +f 3167/3167 3201/3201 3202/3202 +f 3170/3170 3133/3133 3202/3202 +f 3203/3203 3168/3168 3169/3169 +f 3169/3169 3170/3170 3202/3202 +f 36119/38915 3138/3138 3204/3204 +f 36130/38916 36119/38915 3204/3204 +f 3205/3205 3230/3230 3139/3139 +f 3139/3139 3231/3231 3206/3206 +f 3232/3232 3173/3173 3206/3206 +f 3233/3233 3207/3207 3173/3173 +f 36130/38917 3204/3204 3174/3174 +f 36131/38918 36130/38917 3174/3174 +f 36132/38919 3174/3174 3207/3207 +f 36133/38920 36132/38919 3207/3207 +f 3205/3205 3144/3144 3234/3234 +f 3208/3208 3175/3175 3235/3235 +f 3176/3176 3236/3236 3177/3177 +f 3237/3237 3176/3176 3208/3208 +f 3209/3209 3235/3235 3175/3175 +f 3144/3144 3210/3210 3234/3234 +f 3238/3238 3210/3210 3177/3177 +f 3211/3211 3178/3178 3239/3239 +f 3178/3178 3160/3160 3240/3240 +f 3212/3212 3146/3146 3183/3183 +f 3181/3181 3179/3179 3180/3180 +f 3214/3214 3147/3147 3213/3213 +f 3179/3179 3181/3181 3213/3213 +f 3214/3214 3241/3241 3161/3161 +f 3181/3181 3212/3212 3242/3242 +f 3184/3184 3243/3243 3182/3182 +f 3243/3243 3215/3215 3182/3182 +f 3183/3183 3215/3215 3244/3244 +f 3185/3185 3243/3243 3184/3184 +f 3243/3243 3185/3185 3186/3186 +f 3216/3216 3243/3243 3186/3186 +f 3153/3153 3217/3217 3216/3216 +f 3220/3220 3217/3217 3187/3187 +f 3156/3156 3218/3218 3219/3219 +f 3245/3245 3188/3188 3219/3219 +f 3188/3188 3245/3245 3220/3220 +f 3246/3246 3158/3158 3211/3211 +f 3158/3158 3247/3247 3159/3159 +f 3124/3124 3222/3222 3221/3221 +f 3221/3221 3218/3218 3191/3191 +f 3248/3248 3222/3222 3192/3192 +f 3248/3248 3192/3192 3223/3223 +f 3247/3247 3223/3223 3159/3159 +f 3193/3193 3224/3224 3195/3195 +f 3249/3249 3224/3224 3161/3161 +f 3209/3209 3194/3194 3250/3250 +f 3228/3228 3225/3225 3126/3126 +f 3251/3251 3194/3194 3225/3225 +f 3195/3195 3252/3252 3226/3226 +f 3227/3227 3162/3162 3226/3226 +f 36134/38921 3196/3196 3227/3227 +f 36135/38922 36134/38921 3227/3227 +f 3196/3196 3253/3253 3228/3228 +f 3197/3197 3229/3229 3254/3254 +f 3198/3198 36120/38923 36136/38924 +f 3164/3164 36122/38925 36121/38926 +f 3254/3254 3229/3229 3198/3198 +f 3199/3199 36137/38927 36123/38928 +f 3200/3200 36127/38929 36125/38930 +f 3199/3199 36126/38931 36138/38932 +f 3166/3166 36129/38933 36128/38934 +f 3255/3255 3202/3202 3201/3201 +f 3169/3169 3256/3256 3203/3203 +f 3255/3255 3169/3169 3202/3202 +f 3230/3230 3205/3205 3234/3234 +f 3231/3231 3139/3139 3230/3230 +f 3257/3257 3206/3206 3231/3231 +f 3233/3233 3173/3173 3232/3232 +f 3232/3232 3206/3206 3257/3257 +f 36133/38935 3207/3207 3233/3233 +f 36139/38936 36133/38935 3233/3233 +f 3174/3174 36140/38937 36131/38938 +f 3174/3174 36132/38939 36140/38940 +f 3235/3235 3237/3237 3208/3208 +f 3237/3237 3236/3236 3176/3176 +f 3236/3236 3238/3238 3177/3177 +f 3258/3258 3235/3235 3209/3209 +f 3210/3210 3259/3259 3234/3234 +f 3238/3238 3260/3260 3210/3210 +f 3239/3239 3178/3178 3261/3261 +f 3261/3261 3178/3178 3240/3240 +f 3183/3183 3262/3262 3212/3212 +f 3241/3241 3214/3214 3213/3213 +f 3213/3213 3181/3181 3263/3263 +f 3241/3241 3249/3249 3161/3161 +f 3181/3181 3242/3242 3263/3263 +f 3212/3212 3262/3262 3242/3242 +f 3215/3215 3243/3243 3264/3264 +f 3244/3244 3215/3215 3264/3264 +f 3183/3183 3244/3244 3262/3262 +f 3243/3243 3216/3216 3265/3265 +f 3216/3216 3217/3217 3265/3265 +f 3217/3217 3220/3220 3266/3266 +f 3219/3219 3218/3218 3267/3267 +f 3245/3245 3219/3219 3268/3268 +f 3220/3220 3245/3245 3268/3268 +f 3158/3158 3246/3246 3269/3269 +f 3269/3269 3247/3247 3158/3158 +f 3267/3267 3221/3221 3222/3222 +f 3221/3221 3267/3267 3218/3218 +f 3248/3248 3270/3270 3222/3222 +f 3271/3271 3223/3223 3247/3247 +f 3195/3195 3224/3224 3272/3272 +f 3249/3249 3241/3241 3224/3224 +f 3250/3250 3194/3194 3273/3273 +f 3258/3258 3209/3209 3250/3250 +f 3251/3251 3225/3225 3228/3228 +f 3253/3253 3194/3194 3251/3251 +f 3195/3195 3272/3272 3252/3252 +f 3226/3226 3252/3252 3227/3227 +f 36141/38941 3253/3253 3196/3196 +f 36134/38942 36141/38941 3196/3196 +f 3227/3227 36142/38943 36135/38944 +f 3227/3227 36143/38945 36142/38946 +f 3253/3253 3251/3251 3228/3228 +f 3274/3274 3197/3197 3254/3254 +f 36144/38947 3275/3275 3198/3198 +f 36136/38948 36144/38947 3198/3198 +f 3198/3198 3276/3276 3254/3254 +f 3199/3199 36138/38949 36137/38950 +f 3277/3277 3255/3255 3201/3201 +f 3256/3256 3169/3169 3255/3255 +f 3278/3278 3230/3230 3234/3234 +f 3279/3279 3231/3231 3230/3230 +f 3280/3280 3257/3257 3231/3231 +f 3232/3232 3281/3281 3233/3233 +f 3257/3257 3281/3281 3232/3232 +f 36139/38951 3233/3233 3282/3282 +f 36145/38952 36139/38951 3282/3282 +f 3237/3237 3235/3235 3283/3283 +f 3237/3237 3284/3284 3236/3236 +f 3236/3236 3285/3285 3238/3238 +f 3235/3235 3258/3258 3283/3283 +f 3286/3286 3259/3259 3210/3210 +f 3259/3259 3278/3278 3234/3234 +f 3260/3260 3238/3238 3285/3285 +f 3210/3210 3260/3260 3286/3286 +f 3287/3287 3241/3241 3213/3213 +f 3263/3263 3287/3287 3213/3213 +f 3242/3242 3288/3288 3263/3263 +f 3288/3288 3242/3242 3262/3262 +f 3243/3243 3289/3289 3264/3264 +f 3264/3264 3262/3262 3244/3244 +f 3289/3289 3243/3243 3265/3265 +f 3265/3265 3217/3217 3290/3290 +f 3220/3220 3268/3268 3266/3266 +f 3266/3266 3290/3290 3217/3217 +f 3219/3219 3267/3267 3268/3268 +f 3269/3269 3291/3291 3247/3247 +f 3222/3222 3292/3292 3267/3267 +f 3292/3292 3222/3222 3270/3270 +f 3247/3247 3291/3291 3271/3271 +f 3272/3272 3224/3224 3241/3241 +f 36146/38953 3250/3250 3273/3273 +f 36147/38954 36146/38953 3273/3273 +f 36148/38955 3273/3273 3194/3194 +f 36149/38956 36148/38955 3194/3194 +f 3258/3258 3250/3250 3293/3293 +f 36149/38957 3194/3194 3253/3253 +f 36150/38958 36149/38957 3253/3253 +f 3272/3272 3294/3294 3252/3252 +f 36151/38959 3227/3227 3252/3252 +f 36152/38960 36151/38959 3252/3252 +f 3253/3253 36141/38961 36150/38962 +f 3227/3227 36151/38963 36143/38964 +f 3276/3276 3274/3274 3254/3254 +f 3197/3197 3274/3274 3295/3295 +f 3275/3275 36144/38965 36153/38966 +f 3198/3198 3275/3275 3296/3296 +f 3276/3276 3198/3198 3297/3297 +f 3256/3256 3255/3255 3277/3277 +f 3278/3278 3279/3279 3230/3230 +f 3279/3279 3280/3280 3231/3231 +f 3298/3298 3257/3257 3280/3280 +f 3282/3282 3233/3233 3281/3281 +f 3257/3257 3282/3282 3281/3281 +f 3282/3282 36154/38967 36145/38968 +f 3283/3283 3299/3299 3237/3237 +f 3284/3284 3237/3237 3299/3299 +f 3284/3284 3285/3285 3236/3236 +f 3293/3293 3283/3283 3258/3258 +f 3300/3300 3259/3259 3286/3286 +f 3301/3301 3278/3278 3259/3259 +f 3260/3260 3285/3285 3286/3286 +f 3241/3241 3287/3287 3302/3302 +f 3287/3287 3263/3263 3303/3303 +f 3304/3304 3263/3263 3288/3288 +f 3262/3262 3264/3264 3288/3288 +f 36155/38969 3264/3264 3289/3289 +f 36156/38970 36155/38969 3289/3289 +f 3289/3289 36157/38971 36156/38972 +f 36158/38973 3289/3289 3265/3265 +f 36159/38974 36158/38973 3265/3265 +f 3265/3265 36160/38975 36159/38976 +f 35853/38371 3265/3265 3290/3290 +f 35854/38372 35853/38371 3290/3290 +f 36161/38977 3266/3266 3268/3268 +f 36162/38978 36161/38977 3268/3268 +f 35855/38373 3290/3290 3266/3266 +f 35856/38374 35855/38373 3266/3266 +f 36163/38979 3268/3268 3267/3267 +f 36164/38980 36163/38979 3267/3267 +f 36165/38981 3267/3267 3292/3292 +f 36166/38982 36165/38981 3292/3292 +f 36167/38983 3292/3292 3270/3270 +f 36168/38984 36167/38983 3270/3270 +f 3272/3272 3241/3241 3302/3302 +f 36169/38985 3293/3293 3250/3250 +f 36146/38986 36169/38985 3250/3250 +f 3273/3273 36170/38987 36147/38988 +f 3273/3273 36148/38989 36170/38990 +f 3294/3294 3272/3272 3302/3302 +f 36152/38991 3252/3252 3294/3294 +f 36171/38992 36152/38991 3294/3294 +f 3276/3276 3305/3305 3274/3274 +f 3305/3305 3295/3295 3274/3274 +f 36172/38993 3296/3296 3275/3275 +f 36153/38994 36172/38993 3275/3275 +f 3296/3296 3297/3297 3198/3198 +f 3279/3279 3278/3278 3301/3301 +f 3301/3301 3280/3280 3279/3279 +f 36173/38995 3257/3257 3298/3298 +f 36174/38996 36173/38995 3298/3298 +f 3280/3280 3301/3301 3298/3298 +f 36175/38997 3282/3282 3257/3257 +f 36173/38998 36175/38997 3257/3257 +f 3282/3282 36176/38999 36154/39000 +f 3299/3299 3283/3283 3293/3293 +f 3284/3284 3299/3299 3306/3306 +f 3285/3285 3284/3284 3307/3307 +f 3286/3286 3308/3308 3300/3300 +f 3259/3259 3300/3300 3301/3301 +f 3285/3285 3307/3307 3286/3286 +f 3303/3303 3302/3302 3287/3287 +f 3263/3263 3304/3304 3303/3303 +f 36177/39001 3304/3304 3288/3288 +f 36178/39002 36177/39001 3288/3288 +f 36178/39003 3288/3288 3264/3264 +f 36179/39004 36178/39003 3264/3264 +f 3289/3289 36158/39005 36157/39006 +f 3264/3264 36180/39007 36179/39008 +f 3264/3264 36155/39009 36180/39010 +f 36160/39011 3265/3265 35853/38375 +f 36181/39012 36160/39011 35853/38375 +f 3290/3290 35855/38376 35854/38377 +f 3266/3266 36161/39013 36182/39014 +f 3268/3268 36163/39015 36162/39016 +f 36183/39017 35856/38378 3266/3266 +f 36182/39018 36183/39017 3266/3266 +f 3267/3267 36165/39019 36164/39020 +f 3292/3292 36184/39021 36166/39022 +f 3292/3292 36167/39023 36184/39024 +f 3293/3293 36169/39025 36185/39026 +f 3294/3294 3302/3302 3309/3309 +f 3294/3294 36186/39027 36171/39028 +f 36186/39029 3294/3294 35857/38379 +f 36187/39030 36186/39029 35857/38379 +f 3296/3296 36172/39031 36188/39032 +f 36189/39033 3297/3297 3296/3296 +f 36188/39034 36189/39033 3296/3296 +f 36174/39035 3298/3298 3310/3310 +f 36190/39036 36174/39035 3310/3310 +f 3298/3298 3301/3301 3300/3300 +f 3282/3282 36175/39037 36176/39038 +f 3306/3306 3299/3299 3293/3293 +f 3311/3311 3284/3284 3306/3306 +f 3311/3311 3307/3307 3284/3284 +f 3307/3307 3308/3308 3286/3286 +f 3310/3310 3300/3300 3308/3308 +f 3302/3302 3303/3303 3309/3309 +f 3304/3304 3309/3309 3303/3303 +f 36191/39039 3312/3312 3304/3304 +f 36177/39040 36191/39039 3304/3304 +f 36192/39041 3306/3306 3293/3293 +f 36185/39042 36192/39041 3293/3293 +f 35858/38380 3294/3294 3309/3309 +f 35859/38381 35858/38380 3309/3309 +f 3294/3294 35858/38382 35857/38383 +f 3297/3297 36189/39043 36193/39044 +f 3310/3310 36194/39045 36190/39046 +f 3298/3298 3300/3300 3310/3310 +f 36195/39047 3311/3311 3306/3306 +f 36196/39048 36195/39047 3306/3306 +f 3306/3306 36197/39049 36196/39050 +f 3308/3308 3307/3307 3311/3311 +f 3310/3310 3308/3308 3311/3311 +f 3304/3304 3312/3312 3309/3309 +f 3312/3312 36191/39051 36198/39052 +f 3306/3306 36192/39053 36199/39054 +f 35859/38384 3309/3309 3312/3312 +f 35860/38385 35859/38384 3312/3312 +f 36194/39055 3310/3310 3311/3311 +f 36200/39056 36194/39055 3311/3311 +f 3311/3311 36201/39057 36200/39058 +f 3311/3311 36195/39059 36201/39060 +f 3306/3306 36202/39061 36197/39062 +f 36203/39063 35861/38386 3312/3312 +f 36198/39064 36203/39063 3312/3312 +f 3306/3306 36199/39065 36202/39066 +f 3312/3312 35861/38387 35860/38388 +f 3313/3313 3314/3314 3315/3315 +f 3316/3316 3314/3314 3313/3313 +f 3317/3317 3315/3315 3314/3314 +f 3315/3315 3318/3318 3313/3313 +f 3316/3316 3319/3319 3314/3314 +f 3316/3316 3313/3313 3320/3320 +f 3317/3317 3321/3321 3315/3315 +f 3314/3314 3322/3322 3317/3317 +f 3313/3313 3318/3318 3323/3323 +f 3318/3318 3315/3315 3324/3324 +f 3325/3325 3319/3319 3316/3316 +f 3326/3326 3314/3314 3319/3319 +f 3327/3327 3320/3320 3313/3313 +f 3320/3320 3325/3325 3316/3316 +f 3317/3317 3328/3328 3321/3321 +f 3324/3324 3315/3315 3321/3321 +f 3314/3314 3326/3326 3322/3322 +f 3322/3322 3328/3328 3317/3317 +f 3329/3329 3323/3323 3318/3318 +f 3327/3327 3313/3313 3323/3323 +f 3329/3329 3318/3318 3324/3324 +f 3326/3326 3319/3319 3325/3325 +f 3330/3330 3320/3320 3327/3327 +f 3325/3325 3320/3320 3331/3331 +f 3321/3321 3328/3328 3332/3332 +f 3321/3321 3333/3333 3324/3324 +f 3326/3326 3334/3334 3322/3322 +f 3322/3322 3334/3334 3328/3328 +f 3327/3327 3323/3323 3329/3329 +f 3324/3324 3335/3335 3329/3329 +f 3326/3326 3325/3325 3336/3336 +f 3331/3331 3320/3320 3330/3330 +f 3330/3330 3327/3327 3337/3337 +f 3338/3338 3325/3325 3331/3331 +f 3339/3339 3332/3332 3328/3328 +f 3332/3332 3340/3340 3321/3321 +f 3321/3321 3341/3341 3333/3333 +f 3324/3324 3333/3333 3342/3342 +f 3326/3326 3339/3339 3334/3334 +f 3328/3328 3334/3334 3339/3339 +f 3329/3329 3337/3337 3327/3327 +f 3343/3343 3335/3335 3324/3324 +f 3337/3337 3329/3329 3335/3335 +f 3336/3336 3344/3344 3326/3326 +f 3336/3336 3325/3325 3345/3345 +f 36576/39809 3331/3331 3330/3330 +f 36577/39810 36576/39809 3330/3330 +f 3337/3337 3346/3346 3330/3330 +f 36578/39811 3338/3338 3331/3331 +f 36576/39812 36578/39811 3331/3331 +f 3325/3325 3338/3338 3345/3345 +f 3347/3347 3332/3332 3339/3339 +f 3340/3340 3332/3332 3347/3347 +f 3340/3340 3341/3341 3321/3321 +f 3324/3324 3342/3342 3343/3343 +f 3342/3342 3333/3333 3348/3348 +f 3326/3326 3349/3349 3339/3339 +f 3350/3350 3335/3335 3343/3343 +f 3337/3337 3335/3335 3351/3351 +f 3352/3352 3326/3326 3344/3344 +f 3353/3353 3344/3344 3336/3336 +f 3345/3345 3353/3353 3336/3336 +f 3330/3330 36579/39813 36577/39814 +f 36579/39815 3330/3330 3346/3346 +f 36580/39816 36579/39815 3346/3346 +f 3346/3346 3337/3337 3354/3354 +f 36581/39817 3355/3355 3338/3338 +f 36578/39818 36581/39817 3338/3338 +f 3345/3345 3338/3338 3356/3356 +f 3347/3347 3339/3339 3349/3349 +f 3357/3357 3340/3340 3347/3347 +f 3341/3341 3340/3340 3358/3358 +f 3348/3348 3343/3343 3342/3342 +f 3352/3352 3349/3349 3326/3326 +f 3335/3335 3350/3350 3359/3359 +f 3350/3350 3343/3343 3348/3348 +f 3351/3351 3335/3335 3359/3359 +f 3354/3354 3337/3337 3351/3351 +f 3360/3360 3352/3352 3344/3344 +f 3344/3344 3353/3353 3361/3361 +f 3345/3345 3362/3362 3353/3353 +f 3346/3346 36582/39819 36580/39820 +f 36582/39821 3346/3346 3354/3354 +f 36583/39822 36582/39821 3354/3354 +f 3338/3338 3355/3355 3356/3356 +f 36584/39823 3363/3363 3355/3355 +f 36581/39824 36584/39823 3355/3355 +f 3364/3364 3345/3345 3356/3356 +f 3349/3349 3357/3357 3347/3347 +f 3358/3358 3340/3340 3357/3357 +f 3360/3360 3349/3349 3352/3352 +f 3359/3359 3350/3350 3365/3365 +f 3354/3354 3351/3351 3359/3359 +f 3344/3344 3361/3361 3360/3360 +f 3362/3362 3361/3361 3353/3353 +f 3364/3364 3362/3362 3345/3345 +f 3356/3356 3355/3355 3363/3363 +f 3363/3363 36584/39825 36585/39826 +f 3363/3363 3364/3364 3356/3356 +f 3366/3366 3357/3357 3349/3349 +f 3367/3367 3358/3358 3357/3357 +f 3349/3349 3360/3360 3366/3366 +f 3365/3365 3354/3354 3359/3359 +f 3361/3361 3368/3368 3360/3360 +f 3362/3362 3369/3369 3361/3361 +f 3362/3362 3364/3364 3370/3370 +f 3363/3363 36585/39827 36586/39828 +f 3363/3363 3370/3370 3364/3364 +f 3371/3371 3357/3357 3366/3366 +f 3367/3367 3372/3372 3358/3358 +f 3373/3373 3367/3367 3357/3357 +f 3368/3368 3366/3366 3360/3360 +f 3361/3361 3374/3374 3368/3368 +f 3362/3362 3375/3375 3369/3369 +f 3369/3369 3374/3374 3361/3361 +f 3375/3375 3362/3362 3370/3370 +f 36587/39829 3370/3370 3363/3363 +f 36586/39830 36587/39829 3363/3363 +f 3357/3357 3371/3371 3376/3376 +f 3366/3366 3377/3377 3371/3371 +f 3378/3378 3372/3372 3367/3367 +f 3379/3379 3367/3367 3373/3373 +f 3357/3357 3376/3376 3373/3373 +f 3366/3366 3368/3368 3380/3380 +f 3368/3368 3374/3374 3380/3380 +f 3369/3369 3375/3375 3381/3381 +f 3374/3374 3369/3369 3380/3380 +f 36588/39831 3375/3375 3370/3370 +f 36589/39832 36588/39831 3370/3370 +f 3370/3370 36587/39833 36589/39834 +f 3371/3371 3377/3377 3376/3376 +f 3366/3366 3382/3382 3377/3377 +f 3378/3378 3383/3383 3372/3372 +f 3367/3367 3379/3379 3378/3378 +f 3373/3373 3384/3384 3379/3379 +f 3376/3376 3384/3384 3373/3373 +f 3385/3385 3366/3366 3380/3380 +f 36590/39835 3381/3381 3375/3375 +f 36588/39836 36590/39835 3375/3375 +f 3381/3381 3386/3386 3369/3369 +f 3369/3369 3387/3387 3380/3380 +f 3376/3376 3377/3377 3388/3388 +f 3385/3385 3382/3382 3366/3366 +f 3377/3377 3382/3382 3389/3389 +f 3383/3383 3378/3378 3390/3390 +f 3378/3378 3379/3379 3390/3390 +f 3379/3379 3384/3384 3391/3391 +f 3392/3392 3384/3384 3376/3376 +f 3393/3393 3385/3385 3380/3380 +f 3381/3381 36590/39837 36591/39838 +f 3369/3369 3386/3386 3387/3387 +f 36592/39839 3386/3386 3381/3381 +f 36593/39840 36592/39839 3381/3381 +f 3387/3387 3394/3394 3380/3380 +f 3388/3388 3395/3395 3376/3376 +f 3388/3388 3377/3377 3389/3389 +f 3385/3385 3396/3396 3382/3382 +f 3389/3389 3382/3382 3396/3396 +f 3383/3383 3390/3390 3397/3397 +f 3390/3390 3379/3379 3398/3398 +f 3384/3384 3399/3399 3391/3391 +f 3379/3379 3391/3391 3398/3398 +f 3376/3376 3400/3400 3392/3392 +f 3384/3384 3392/3392 3399/3399 +f 3396/3396 3385/3385 3393/3393 +f 3380/3380 3394/3394 3393/3393 +f 3381/3381 36591/39841 36594/39842 +f 3401/3401 3387/3387 3386/3386 +f 3381/3381 36595/39843 36593/39844 +f 36596/39845 3402/3402 3386/3386 +f 36592/39846 36596/39845 3386/3386 +f 3394/3394 3387/3387 3401/3401 +f 3388/3388 3403/3403 3395/3395 +f 3395/3395 3404/3404 3376/3376 +f 3405/3405 3388/3388 3389/3389 +f 3396/3396 3393/3393 3389/3389 +f 3406/3406 3383/3383 3397/3397 +f 3407/3407 3397/3397 3390/3390 +f 3390/3390 3398/3398 3408/3408 +f 3399/3399 3409/3409 3391/3391 +f 3391/3391 3410/3410 3398/3398 +f 3376/3376 3404/3404 3400/3400 +f 3400/3400 3411/3411 3392/3392 +f 3399/3399 3392/3392 3412/3412 +f 3393/3393 3394/3394 3401/3401 +f 3381/3381 36594/39847 36595/39848 +f 3401/3401 3386/3386 3413/3413 +f 3402/3402 36596/39849 36597/39850 +f 3386/3386 3402/3402 3413/3413 +f 3388/3388 3414/3414 3403/3403 +f 3403/3403 3415/3415 3395/3395 +f 3416/3416 3404/3404 3395/3395 +f 3388/3388 3405/3405 3414/3414 +f 3417/3417 3405/3405 3389/3389 +f 3393/3393 3418/3418 3389/3389 +f 3407/3407 3406/3406 3397/3397 +f 3407/3407 3390/3390 3408/3408 +f 3398/3398 3410/3410 3408/3408 +f 3419/3419 3409/3409 3399/3399 +f 3391/3391 3409/3409 3410/3410 +f 3420/3420 3400/3400 3404/3404 +f 3411/3411 3412/3412 3392/3392 +f 3421/3421 3411/3411 3400/3400 +f 3412/3412 3419/3419 3399/3399 +f 3418/3418 3393/3393 3401/3401 +f 3401/3401 3413/3413 3418/3418 +f 3402/3402 36597/39851 36598/39852 +f 3422/3422 3413/3413 3402/3402 +f 3414/3414 3423/3423 3403/3403 +f 3415/3415 3403/3403 3423/3423 +f 3415/3415 3416/3416 3395/3395 +f 3404/3404 3416/3416 3420/3420 +f 3424/3424 3414/3414 3405/3405 +f 3425/3425 3405/3405 3417/3417 +f 3426/3426 3417/3417 3389/3389 +f 3418/3418 3426/3426 3389/3389 +f 3406/3406 3407/3407 3427/3427 +f 3428/3428 3407/3407 3408/3408 +f 3410/3410 3428/3428 3408/3408 +f 3409/3409 3419/3419 3429/3429 +f 3410/3410 3409/3409 3429/3429 +f 3420/3420 3430/3430 3400/3400 +f 3412/3412 3411/3411 3421/3421 +f 3421/3421 3400/3400 3430/3430 +f 3419/3419 3412/3412 3431/3431 +f 3418/3418 3413/3413 3432/3432 +f 36599/39853 3433/3433 3402/3402 +f 36598/39854 36599/39853 3402/3402 +f 3422/3422 3402/3402 3433/3433 +f 3432/3432 3413/3413 3422/3422 +f 3434/3434 3423/3423 3414/3414 +f 3415/3415 3423/3423 3435/3435 +f 3415/3415 3436/3436 3416/3416 +f 3436/3436 3420/3420 3416/3416 +f 3414/3414 3424/3424 3437/3437 +f 3425/3425 3424/3424 3405/3405 +f 3425/3425 3417/3417 3438/3438 +f 3417/3417 3426/3426 3439/3439 +f 3432/3432 3426/3426 3418/3418 +f 3428/3428 3427/3427 3407/3407 +f 3410/3410 3440/3440 3428/3428 +f 3441/3441 3429/3429 3419/3419 +f 3440/3440 3410/3410 3429/3429 +f 3436/3436 3430/3430 3420/3420 +f 3421/3421 3442/3442 3412/3412 +f 3430/3430 3443/3443 3421/3421 +f 3441/3441 3419/3419 3431/3431 +f 3431/3431 3412/3412 3442/3442 +f 3433/3433 36599/39855 36600/39856 +f 3433/3433 3444/3444 3422/3422 +f 3445/3445 3432/3432 3422/3422 +f 3434/3434 3414/3414 3446/3446 +f 3447/3447 3423/3423 3434/3434 +f 3415/3415 3435/3435 3448/3448 +f 3423/3423 3447/3447 3435/3435 +f 3436/3436 3415/3415 3449/3449 +f 3450/3450 3437/3437 3424/3424 +f 3437/3437 3446/3446 3414/3414 +f 3425/3425 3451/3451 3424/3424 +f 3438/3438 3417/3417 3439/3439 +f 3452/3452 3425/3425 3438/3438 +f 3432/3432 3439/3439 3426/3426 +f 3427/3427 3428/3428 3453/3453 +f 3440/3440 3453/3453 3428/3428 +f 3454/3454 3429/3429 3441/3441 +f 3440/3440 3429/3429 3454/3454 +f 3436/3436 3455/3455 3430/3430 +f 3421/3421 3456/3456 3442/3442 +f 3457/3457 3443/3443 3430/3430 +f 3443/3443 3456/3456 3421/3421 +f 3441/3441 3431/3431 3458/3458 +f 3431/3431 3442/3442 3456/3456 +f 36601/39857 3444/3444 3433/3433 +f 36600/39858 36601/39857 3433/3433 +f 3444/3444 36601/39859 36602/39860 +f 3422/3422 3444/3444 3459/3459 +f 3432/3432 3445/3445 3439/3439 +f 3459/3459 3445/3445 3422/3422 +f 3446/3446 3460/3460 3434/3434 +f 3461/3461 3447/3447 3434/3434 +f 3462/3462 3448/3448 3435/3435 +f 3415/3415 3448/3448 3449/3449 +f 3463/3463 3435/3435 3447/3447 +f 3449/3449 3464/3464 3436/3436 +f 3450/3450 3465/3465 3437/3437 +f 3424/3424 3466/3466 3450/3450 +f 3437/3437 3467/3467 3446/3446 +f 3425/3425 3452/3452 3451/3451 +f 3466/3466 3424/3424 3451/3451 +f 3439/3439 3445/3445 3438/3438 +f 3468/3468 3452/3452 3438/3438 +f 3427/3427 3453/3453 3469/3469 +f 3453/3453 3440/3440 3454/3454 +f 3441/3441 3470/3470 3454/3454 +f 3471/3471 3455/3455 3436/3436 +f 3457/3457 3430/3430 3455/3455 +f 3443/3443 3457/3457 3472/3472 +f 3456/3456 3443/3443 3472/3472 +f 3458/3458 3431/3431 3456/3456 +f 3441/3441 3458/3458 3473/3473 +f 3444/3444 36602/39861 36603/39862 +f 3444/3444 3474/3474 3459/3459 +f 3445/3445 3459/3459 3468/3468 +f 3460/3460 3446/3446 3467/3467 +f 3434/3434 3460/3460 3461/3461 +f 3461/3461 3463/3463 3447/3447 +f 3448/3448 3462/3462 3475/3475 +f 3435/3435 3476/3476 3462/3462 +f 3448/3448 3475/3475 3449/3449 +f 3463/3463 3477/3477 3435/3435 +f 3449/3449 3478/3478 3464/3464 +f 3436/3436 3464/3464 3471/3471 +f 3466/3466 3465/3465 3450/3450 +f 3467/3467 3437/3437 3465/3465 +f 3479/3479 3451/3451 3452/3452 +f 3479/3479 3466/3466 3451/3451 +f 3445/3445 3468/3468 3438/3438 +f 3468/3468 3459/3459 3452/3452 +f 3480/3480 3469/3469 3453/3453 +f 3453/3453 3454/3454 3480/3480 +f 3470/3470 3441/3441 3481/3481 +f 3454/3454 3470/3470 3480/3480 +f 3482/3482 3455/3455 3471/3471 +f 3457/3457 3455/3455 3482/3482 +f 3472/3472 3457/3457 3483/3483 +f 3456/3456 3472/3472 3473/3473 +f 3456/3456 3473/3473 3458/3458 +f 3441/3441 3473/3473 3481/3481 +f 36604/39863 3484/3484 3444/3444 +f 36603/39864 36604/39863 3444/3444 +f 3444/3444 3484/3484 3474/3474 +f 3474/3474 3452/3452 3459/3459 +f 3485/3485 3460/3460 3467/3467 +f 3486/3486 3461/3461 3460/3460 +f 3463/3463 3461/3461 3487/3487 +f 3488/3488 3475/3475 3462/3462 +f 3462/3462 3476/3476 3488/3488 +f 3435/3435 3477/3477 3476/3476 +f 3489/3489 3449/3449 3475/3475 +f 3487/3487 3477/3477 3463/3463 +f 3490/3490 3464/3464 3478/3478 +f 3449/3449 3489/3489 3478/3478 +f 3490/3490 3471/3471 3464/3464 +f 3466/3466 3479/3479 3465/3465 +f 3491/3491 3467/3467 3465/3465 +f 3474/3474 3479/3479 3452/3452 +f 3492/3492 3469/3469 3480/3480 +f 3481/3481 3493/3493 3470/3470 +f 3480/3480 3470/3470 3494/3494 +f 3482/3482 3471/3471 3495/3495 +f 3483/3483 3457/3457 3482/3482 +f 3483/3483 3473/3473 3472/3472 +f 3496/3496 3481/3481 3473/3473 +f 36605/39865 3497/3497 3484/3484 +f 36604/39866 36605/39865 3484/3484 +f 3484/3484 3498/3498 3474/3474 +f 3460/3460 3485/3485 3499/3499 +f 3491/3491 3485/3485 3467/3467 +f 3486/3486 3460/3460 3499/3499 +f 3461/3461 3486/3486 3500/3500 +f 3487/3487 3461/3461 3500/3500 +f 3475/3475 3488/3488 3501/3501 +f 3476/3476 3502/3502 3488/3488 +f 3503/3503 3476/3476 3477/3477 +f 3475/3475 3504/3504 3489/3489 +f 3505/3505 3477/3477 3487/3487 +f 3490/3490 3478/3478 3506/3506 +f 3489/3489 3506/3506 3478/3478 +f 3507/3507 3471/3471 3490/3490 +f 3465/3465 3479/3479 3491/3491 +f 3474/3474 3498/3498 3479/3479 +f 3469/3469 3492/3492 3508/3508 +f 3494/3494 3492/3492 3480/3480 +f 3509/3509 3493/3493 3481/3481 +f 3510/3510 3470/3470 3493/3493 +f 3494/3494 3470/3470 3511/3511 +f 3495/3495 3512/3512 3482/3482 +f 3507/3507 3495/3495 3471/3471 +f 3513/3513 3483/3483 3482/3482 +f 3473/3473 3483/3483 3496/3496 +f 3496/3496 3509/3509 3481/3481 +f 3497/3497 3514/3514 3484/3484 +f 3497/3497 36605/39867 36606/39868 +f 3498/3498 3484/3484 3514/3514 +f 3515/3515 3499/3499 3485/3485 +f 3485/3485 3491/3491 3479/3479 +f 3499/3499 3516/3516 3486/3486 +f 3517/3517 3500/3500 3486/3486 +f 3500/3500 3505/3505 3487/3487 +f 3475/3475 3501/3501 3518/3518 +f 3488/3488 3519/3519 3501/3501 +f 3520/3520 3502/3502 3476/3476 +f 3488/3488 3502/3502 3521/3521 +f 3522/3522 3476/3476 3503/3503 +f 3477/3477 3523/3523 3503/3503 +f 3475/3475 3518/3518 3504/3504 +f 3504/3504 3524/3524 3489/3489 +f 3477/3477 3505/3505 3523/3523 +f 3525/3525 3490/3490 3506/3506 +f 3526/3526 3506/3506 3489/3489 +f 3507/3507 3490/3490 3527/3527 +f 3498/3498 3485/3485 3479/3479 +f 3528/3528 3508/3508 3492/3492 +f 3494/3494 3529/3529 3492/3492 +f 3530/3530 3493/3493 3509/3509 +f 3511/3511 3470/3470 3510/3510 +f 3493/3493 3511/3511 3510/3510 +f 3529/3529 3494/3494 3511/3511 +f 3512/3512 3495/3495 3531/3531 +f 3512/3512 3532/3532 3482/3482 +f 3533/3533 3495/3495 3507/3507 +f 3532/3532 3513/3513 3482/3482 +f 3483/3483 3513/3513 3496/3496 +f 3509/3509 3496/3496 3513/3513 +f 3514/3514 3497/3497 3534/3534 +f 36607/39869 3535/3535 3497/3497 +f 36606/39870 36607/39869 3497/3497 +f 3514/3514 3515/3515 3498/3498 +f 3515/3515 3485/3485 3498/3498 +f 3499/3499 3515/3515 3516/3516 +f 3517/3517 3486/3486 3516/3516 +f 3500/3500 3517/3517 3536/3536 +f 3505/3505 3500/3500 3536/3536 +f 3537/3537 3518/3518 3501/3501 +f 3519/3519 3488/3488 3521/3521 +f 3538/3538 3501/3501 3519/3519 +f 3522/3522 3520/3520 3476/3476 +f 3520/3520 3539/3539 3502/3502 +f 3521/3521 3502/3502 3540/3540 +f 3541/3541 3522/3522 3503/3503 +f 3523/3523 3541/3541 3503/3503 +f 3542/3542 3504/3504 3518/3518 +f 3504/3504 3542/3542 3524/3524 +f 3524/3524 3526/3526 3489/3489 +f 3543/3543 3523/3523 3505/3505 +f 3490/3490 3525/3525 3527/3527 +f 3526/3526 3525/3525 3506/3506 +f 3527/3527 3544/3544 3507/3507 +f 3528/3528 3545/3545 3508/3508 +f 3529/3529 3528/3528 3492/3492 +f 3546/3546 3493/3493 3530/3530 +f 3513/3513 3530/3530 3509/3509 +f 3493/3493 3546/3546 3511/3511 +f 3529/3529 3511/3511 3546/3546 +f 3547/3547 3531/3531 3495/3495 +f 3531/3531 3548/3548 3512/3512 +f 3512/3512 3549/3549 3532/3532 +f 3550/3550 3533/3533 3507/3507 +f 3495/3495 3533/3533 3547/3547 +f 3513/3513 3532/3532 3551/3551 +f 3514/3514 3534/3534 3515/3515 +f 3497/3497 3552/3552 3534/3534 +f 3553/3553 3497/3497 3535/3535 +f 36608/39871 3554/3554 3535/3535 +f 36607/39872 36608/39871 3535/3535 +f 3516/3516 3515/3515 3534/3534 +f 3517/3517 3516/3516 3534/3534 +f 3552/3552 3536/3536 3517/3517 +f 3536/3536 3543/3543 3505/3505 +f 3501/3501 3538/3538 3537/3537 +f 3518/3518 3537/3537 3555/3555 +f 3519/3519 3521/3521 3556/3556 +f 3538/3538 3519/3519 3556/3556 +f 3520/3520 3522/3522 3557/3557 +f 3539/3539 3558/3558 3502/3502 +f 3539/3539 3520/3520 3559/3559 +f 3502/3502 3558/3558 3540/3540 +f 3521/3521 3540/3540 3560/3560 +f 3557/3557 3522/3522 3541/3541 +f 3541/3541 3523/3523 3561/3561 +f 3518/3518 3562/3562 3542/3542 +f 3524/3524 3542/3542 3563/3563 +f 3563/3563 3526/3526 3524/3524 +f 3523/3523 3543/3543 3564/3564 +f 3565/3565 3527/3527 3525/3525 +f 3525/3525 3526/3526 3566/3566 +f 3544/3544 3527/3527 3567/3567 +f 3544/3544 3550/3550 3507/3507 +f 3568/3568 3545/3545 3528/3528 +f 3508/3508 3545/3545 3569/3569 +f 3546/3546 3528/3528 3529/3529 +f 3530/3530 3551/3551 3546/3546 +f 3513/3513 3551/3551 3530/3530 +f 3531/3531 3547/3547 3548/3548 +f 3570/3570 3512/3512 3548/3548 +f 3549/3549 3512/3512 3570/3570 +f 3551/3551 3532/3532 3549/3549 +f 3550/3550 3571/3571 3533/3533 +f 3547/3547 3533/3533 3572/3572 +f 3552/3552 3517/3517 3534/3534 +f 3552/3552 3497/3497 3553/3553 +f 3535/3535 3573/3573 3553/3553 +f 3554/3554 36608/39873 36609/39874 +f 3573/3573 3535/3535 3554/3554 +f 3536/3536 3552/3552 3553/3553 +f 3543/3543 3536/3536 3574/3574 +f 3537/3537 3538/3538 3575/3575 +f 3537/3537 3576/3576 3555/3555 +f 3518/3518 3555/3555 3562/3562 +f 3556/3556 3521/3521 3577/3577 +f 3556/3556 3578/3578 3538/3538 +f 3520/3520 3557/3557 3579/3579 +f 3558/3558 3539/3539 3580/3580 +f 3559/3559 3520/3520 3579/3579 +f 3539/3539 3559/3559 3581/3581 +f 3582/3582 3540/3540 3558/3558 +f 3560/3560 3577/3577 3521/3521 +f 3560/3560 3540/3540 3583/3583 +f 3561/3561 3557/3557 3541/3541 +f 3564/3564 3561/3561 3523/3523 +f 3542/3542 3562/3562 3584/3584 +f 3584/3584 3563/3563 3542/3542 +f 3526/3526 3563/3563 3585/3585 +f 3543/3543 3586/3586 3564/3564 +f 3565/3565 3587/3587 3527/3527 +f 3566/3566 3565/3565 3525/3525 +f 3526/3526 3585/3585 3566/3566 +f 3588/3588 3544/3544 3567/3567 +f 3527/3527 3587/3587 3567/3567 +f 3550/3550 3544/3544 3589/3589 +f 3568/3568 3590/3590 3545/3545 +f 3528/3528 3551/3551 3568/3568 +f 3545/3545 3590/3590 3569/3569 +f 3546/3546 3551/3551 3528/3528 +f 3548/3548 3547/3547 3591/3591 +f 3548/3548 3591/3591 3570/3570 +f 3570/3570 3592/3592 3549/3549 +f 3568/3568 3551/3551 3549/3549 +f 3593/3593 3571/3571 3550/3550 +f 3571/3571 3594/3594 3533/3533 +f 3594/3594 3572/3572 3533/3533 +f 3547/3547 3572/3572 3595/3595 +f 3553/3553 3573/3573 3536/3536 +f 3554/3554 36609/39875 36610/39876 +f 3586/3586 3573/3573 3554/3554 +f 3536/3536 3573/3573 3574/3574 +f 3574/3574 3586/3586 3543/3543 +f 3576/3576 3537/3537 3575/3575 +f 3578/3578 3575/3575 3538/3538 +f 3576/3576 3596/3596 3555/3555 +f 3555/3555 3597/3597 3562/3562 +f 3577/3577 3598/3598 3556/3556 +f 3598/3598 3578/3578 3556/3556 +f 3557/3557 3561/3561 3579/3579 +f 3580/3580 3539/3539 3599/3599 +f 3558/3558 3580/3580 3600/3600 +f 3581/3581 3559/3559 3579/3579 +f 3599/3599 3539/3539 3581/3581 +f 3540/3540 3582/3582 3583/3583 +f 3582/3582 3558/3558 3601/3601 +f 3577/3577 3560/3560 3598/3598 +f 3583/3583 3598/3598 3560/3560 +f 3602/3602 3561/3561 3564/3564 +f 3584/3584 3562/3562 3603/3603 +f 3585/3585 3563/3563 3584/3584 +f 3564/3564 3586/3586 3602/3602 +f 3565/3565 3604/3604 3587/3587 +f 3605/3605 3565/3565 3566/3566 +f 3585/3585 3606/3606 3566/3566 +f 3588/3588 3607/3607 3544/3544 +f 3608/3608 3588/3588 3567/3567 +f 3587/3587 3609/3609 3567/3567 +f 3589/3589 3544/3544 3610/3610 +f 3593/3593 3550/3550 3589/3589 +f 3590/3590 3568/3568 3592/3592 +f 3590/3590 3611/3611 3569/3569 +f 3591/3591 3547/3547 3595/3595 +f 3612/3612 3570/3570 3591/3591 +f 3570/3570 3612/3612 3592/3592 +f 3568/3568 3549/3549 3592/3592 +f 3613/3613 3571/3571 3593/3593 +f 3571/3571 3613/3613 3594/3594 +f 3572/3572 3594/3594 3614/3614 +f 3595/3595 3572/3572 3615/3615 +f 36611/39877 3616/3616 3554/3554 +f 36612/39878 36611/39877 3554/3554 +f 3586/3586 3554/3554 3617/3617 +f 3573/3573 3586/3586 3574/3574 +f 3575/3575 3618/3618 3576/3576 +f 3575/3575 3578/3578 3619/3619 +f 3597/3597 3555/3555 3596/3596 +f 3596/3596 3576/3576 3620/3620 +f 3597/3597 3621/3621 3562/3562 +f 3598/3598 3622/3622 3578/3578 +f 3561/3561 3602/3602 3579/3579 +f 3580/3580 3599/3599 3616/3616 +f 3558/3558 3600/3600 3601/3601 +f 3616/3616 3600/3600 3580/3580 +f 3579/3579 3623/3623 3581/3581 +f 3599/3599 3581/3581 3624/3624 +f 3583/3583 3582/3582 3625/3625 +f 3601/3601 3626/3626 3582/3582 +f 3627/3627 3598/3598 3583/3583 +f 3628/3628 3603/3603 3562/3562 +f 3584/3584 3603/3603 3606/3606 +f 3585/3585 3584/3584 3606/3606 +f 3602/3602 3586/3586 3617/3617 +f 3604/3604 3565/3565 3605/3605 +f 3587/3587 3604/3604 3609/3609 +f 3606/3606 3605/3605 3566/3566 +f 3629/3629 3607/3607 3588/3588 +f 3610/3610 3544/3544 3607/3607 +f 3630/3630 3588/3588 3608/3608 +f 3609/3609 3608/3608 3567/3567 +f 3631/3631 3589/3589 3610/3610 +f 3632/3632 3593/3593 3589/3589 +f 3592/3592 3612/3612 3590/3590 +f 3611/3611 3590/3590 3633/3633 +f 3595/3595 3634/3634 3591/3591 +f 3634/3634 3612/3612 3591/3591 +f 3593/3593 3635/3635 3613/3613 +f 3636/3636 3594/3594 3613/3613 +f 3637/3637 3572/3572 3614/3614 +f 3638/3638 3614/3614 3594/3594 +f 3637/3637 3615/3615 3572/3572 +f 3615/3615 3639/3639 3595/3595 +f 3617/3617 3554/3554 3616/3616 +f 36613/39879 3640/3640 3616/3616 +f 36611/39880 36613/39879 3616/3616 +f 3641/3641 36614/39881 36615/39882 +f 3618/3618 3575/3575 3619/3619 +f 3576/3576 3618/3618 3620/3620 +f 3619/3619 3578/3578 3622/3622 +f 3642/3642 3597/3597 3596/3596 +f 3596/3596 3620/3620 3643/3643 +f 3597/3597 3642/3642 3621/3621 +f 3628/3628 3562/3562 3621/3621 +f 3598/3598 3627/3627 3622/3622 +f 3602/3602 3623/3623 3579/3579 +f 3616/3616 3599/3599 3624/3624 +f 3600/3600 3644/3644 3601/3601 +f 3616/3616 3644/3644 3600/3600 +f 3624/3624 3581/3581 3623/3623 +f 3582/3582 3626/3626 3625/3625 +f 3627/3627 3583/3583 3625/3625 +f 3645/3645 3626/3626 3601/3601 +f 3628/3628 3646/3646 3603/3603 +f 3606/3606 3603/3603 3646/3646 +f 3624/3624 3602/3602 3617/3617 +f 3605/3605 3647/3647 3604/3604 +f 3604/3604 3648/3648 3609/3609 +f 3605/3605 3606/3606 3647/3647 +f 3588/3588 3649/3649 3629/3629 +f 3607/3607 3629/3629 3650/3650 +f 3610/3610 3607/3607 3651/3651 +f 3652/3652 3588/3588 3630/3630 +f 3630/3630 3608/3608 3653/3653 +f 3608/3608 3609/3609 3648/3648 +f 3654/3654 3631/3631 3610/3610 +f 3631/3631 3632/3632 3589/3589 +f 3593/3593 3632/3632 3635/3635 +f 3612/3612 3633/3633 3590/3590 +f 3655/3655 3634/3634 3595/3595 +f 3633/3633 3612/3612 3634/3634 +f 3656/3656 3613/3613 3635/3635 +f 3613/3613 3656/3656 3636/3636 +f 3638/3638 3594/3594 3636/3636 +f 3657/3657 3637/3637 3614/3614 +f 3614/3614 3638/3638 3658/3658 +f 3659/3659 3615/3615 3637/3637 +f 3660/3660 3639/3639 3615/3615 +f 3639/3639 3655/3655 3595/3595 +f 3616/3616 3624/3624 3617/3617 +f 36614/39883 3641/3641 3640/3640 +f 36613/39884 36614/39883 3640/3640 +f 3640/3640 3644/3644 3616/3616 +f 36616/39885 3661/3661 3641/3641 +f 36615/39886 36616/39885 3641/3641 +f 3661/3661 36617/39887 36618/39888 +f 3619/3619 3662/3662 3618/3618 +f 3662/3662 3620/3620 3618/3618 +f 3619/3619 3622/3622 3663/3663 +f 3643/3643 3642/3642 3596/3596 +f 3664/3664 3643/3643 3620/3620 +f 3621/3621 3642/3642 3665/3665 +f 3628/3628 3621/3621 3666/3666 +f 3667/3667 3622/3622 3627/3627 +f 3623/3623 3602/3602 3624/3624 +f 3644/3644 3645/3645 3601/3601 +f 3626/3626 3661/3661 3625/3625 +f 3625/3625 3668/3668 3627/3627 +f 3645/3645 3641/3641 3626/3626 +f 3628/3628 3666/3666 3646/3646 +f 3606/3606 3646/3646 3669/3669 +f 3604/3604 3647/3647 3670/3670 +f 3648/3648 3604/3604 3670/3670 +f 3647/3647 3606/3606 3669/3669 +f 3649/3649 3588/3588 3652/3652 +f 3629/3629 3649/3649 3671/3671 +f 3651/3651 3607/3607 3650/3650 +f 3650/3650 3629/3629 3671/3671 +f 3651/3651 3654/3654 3610/3610 +f 3672/3672 3652/3652 3630/3630 +f 3648/3648 3653/3653 3608/3608 +f 3653/3653 3673/3673 3630/3630 +f 3654/3654 3674/3674 3631/3631 +f 3632/3632 3631/3631 3675/3675 +f 3676/3676 3635/3635 3632/3632 +f 3655/3655 3677/3677 3634/3634 +f 3633/3633 3634/3634 3677/3677 +f 3656/3656 3635/3635 3676/3676 +f 3656/3656 3658/3658 3636/3636 +f 3636/3636 3658/3658 3638/3638 +f 3637/3637 3657/3657 3678/3678 +f 3657/3657 3614/3614 3658/3658 +f 3659/3659 3660/3660 3615/3615 +f 3679/3679 3659/3659 3637/3637 +f 3680/3680 3639/3639 3660/3660 +f 3639/3639 3681/3681 3655/3655 +f 3645/3645 3640/3640 3641/3641 +f 3644/3644 3640/3640 3645/3645 +f 3641/3641 3661/3661 3626/3626 +f 3682/3682 36619/39889 36620/39890 +f 36621/39891 3683/3683 3661/3661 +f 36618/39892 36621/39891 3661/3661 +f 3684/3684 3662/3662 3619/3619 +f 3685/3685 3620/3620 3662/3662 +f 3663/3663 3684/3684 3619/3619 +f 3663/3663 3622/3622 3667/3667 +f 3643/3643 3686/3686 3642/3642 +f 3664/3664 3620/3620 3687/3687 +f 3688/3688 3643/3643 3664/3664 +f 3642/3642 3689/3689 3665/3665 +f 3690/3690 3621/3621 3665/3665 +f 3691/3691 3666/3666 3621/3621 +f 3627/3627 3668/3668 3667/3667 +f 3661/3661 3668/3668 3625/3625 +f 3646/3646 3666/3666 3692/3692 +f 3646/3646 3692/3692 3669/3669 +f 3670/3670 3647/3647 3669/3669 +f 3670/3670 3693/3693 3648/3648 +f 3649/3649 3652/3652 3694/3694 +f 3695/3695 3671/3671 3649/3649 +f 3650/3650 3696/3696 3651/3651 +f 3650/3650 3671/3671 3697/3697 +f 3651/3651 3696/3696 3654/3654 +f 3672/3672 3694/3694 3652/3652 +f 3672/3672 3630/3630 3673/3673 +f 3648/3648 3693/3693 3653/3653 +f 3673/3673 3653/3653 3698/3698 +f 3674/3674 3654/3654 3696/3696 +f 3631/3631 3674/3674 3675/3675 +f 3675/3675 3676/3676 3632/3632 +f 3655/3655 3699/3699 3677/3677 +f 3700/3700 3656/3656 3676/3676 +f 3656/3656 3701/3701 3658/3658 +f 3678/3678 3679/3679 3637/3637 +f 3678/3678 3657/3657 3702/3702 +f 3658/3658 3701/3701 3657/3657 +f 3660/3660 3659/3659 3703/3703 +f 3703/3703 3659/3659 3679/3679 +f 3704/3704 3639/3639 3680/3680 +f 3680/3680 3660/3660 3705/3705 +f 3681/3681 3639/3639 3706/3706 +f 3681/3681 3707/3707 3655/3655 +f 3682/3682 36620/39893 36622/39894 +f 36619/39895 3682/3682 3683/3683 +f 36621/39896 36619/39895 3683/3683 +f 3668/3668 3661/3661 3683/3683 +f 3684/3684 3708/3708 3662/3662 +f 3685/3685 3687/3687 3620/3620 +f 3708/3708 3685/3685 3662/3662 +f 3709/3709 3684/3684 3663/3663 +f 3710/3710 3663/3663 3667/3667 +f 3689/3689 3642/3642 3686/3686 +f 3711/3711 3686/3686 3643/3643 +f 3687/3687 3712/3712 3664/3664 +f 3664/3664 3713/3713 3688/3688 +f 3688/3688 3711/3711 3643/3643 +f 3665/3665 3689/3689 3714/3714 +f 3715/3715 3621/3621 3690/3690 +f 3665/3665 3716/3716 3690/3690 +f 3717/3717 3666/3666 3691/3691 +f 3691/3691 3621/3621 3718/3718 +f 3683/3683 3667/3667 3668/3668 +f 3692/3692 3666/3666 3719/3719 +f 3692/3692 3698/3698 3669/3669 +f 3669/3669 3698/3698 3670/3670 +f 3670/3670 3698/3698 3693/3693 +f 3694/3694 3695/3695 3649/3649 +f 3720/3720 3671/3671 3695/3695 +f 3697/3697 3696/3696 3650/3650 +f 3697/3697 3671/3671 3720/3720 +f 3672/3672 3721/3721 3694/3694 +f 3673/3673 3721/3721 3672/3672 +f 3698/3698 3653/3653 3693/3693 +f 3692/3692 3673/3673 3698/3698 +f 3674/3674 3696/3696 3722/3722 +f 3723/3723 3675/3675 3674/3674 +f 3700/3700 3676/3676 3675/3675 +f 3655/3655 3707/3707 3699/3699 +f 3699/3699 3724/3724 3677/3677 +f 3700/3700 3725/3725 3656/3656 +f 3656/3656 3726/3726 3701/3701 +f 3727/3727 3679/3679 3678/3678 +f 3702/3702 3728/3728 3678/3678 +f 3701/3701 3702/3702 3657/3657 +f 3703/3703 3705/3705 3660/3660 +f 3729/3729 3703/3703 3679/3679 +f 3639/3639 3704/3704 3706/3706 +f 3704/3704 3680/3680 3730/3730 +f 3680/3680 3705/3705 3731/3731 +f 3732/3732 3681/3681 3706/3706 +f 3681/3681 3732/3732 3707/3707 +f 3733/3733 36623/39897 36624/39898 +f 36625/39899 3709/3709 3682/3682 +f 36622/39900 36625/39899 3682/3682 +f 3682/3682 3710/3710 3683/3683 +f 3709/3709 3708/3708 3684/3684 +f 3734/3734 3687/3687 3685/3685 +f 3685/3685 3708/3708 3734/3734 +f 3663/3663 3710/3710 3709/3709 +f 3710/3710 3667/3667 3683/3683 +f 3735/3735 3689/3689 3686/3686 +f 3686/3686 3711/3711 3735/3735 +f 3736/3736 3712/3712 3687/3687 +f 3664/3664 3712/3712 3737/3737 +f 3713/3713 3664/3664 3737/3737 +f 3688/3688 3713/3713 3738/3738 +f 3711/3711 3688/3688 3738/3738 +f 3714/3714 3689/3689 3735/3735 +f 3714/3714 3716/3716 3665/3665 +f 3621/3621 3715/3715 3718/3718 +f 3715/3715 3690/3690 3739/3739 +f 3690/3690 3716/3716 3739/3739 +f 3717/3717 3719/3719 3666/3666 +f 3691/3691 3718/3718 3717/3717 +f 3740/3740 3692/3692 3719/3719 +f 3695/3695 3694/3694 3741/3741 +f 3720/3720 3695/3695 3742/3742 +f 3743/3743 3696/3696 3697/3697 +f 3720/3720 3743/3743 3697/3697 +f 3721/3721 3741/3741 3694/3694 +f 3721/3721 3673/3673 3744/3744 +f 3673/3673 3692/3692 3744/3744 +f 3745/3745 3722/3722 3696/3696 +f 3674/3674 3722/3722 3723/3723 +f 3746/3746 3675/3675 3723/3723 +f 3675/3675 3747/3747 3700/3700 +f 3699/3699 3707/3707 3724/3724 +f 3725/3725 3700/3700 3747/3747 +f 3726/3726 3656/3656 3725/3725 +f 3701/3701 3726/3726 3748/3748 +f 3727/3727 3729/3729 3679/3679 +f 3678/3678 3728/3728 3727/3727 +f 3749/3749 3728/3728 3702/3702 +f 3750/3750 3702/3702 3701/3701 +f 3751/3751 3705/3705 3703/3703 +f 3751/3751 3703/3703 3729/3729 +f 3704/3704 3730/3730 3706/3706 +f 3730/3730 3680/3680 3731/3731 +f 3705/3705 3752/3752 3731/3731 +f 3706/3706 3753/3753 3732/3732 +f 3724/3724 3707/3707 3732/3732 +f 3754/3754 36626/39901 36627/39902 +f 36628/39903 3755/3755 3733/3733 +f 36624/39904 36628/39903 3733/3733 +f 36623/39905 3733/3733 3709/3709 +f 36625/39906 36623/39905 3709/3709 +f 3709/3709 3710/3710 3682/3682 +f 3709/3709 3734/3734 3708/3708 +f 3687/3687 3734/3734 3756/3756 +f 3735/3735 3711/3711 3757/3757 +f 3712/3712 3736/3736 3737/3737 +f 3736/3736 3687/3687 3758/3758 +f 3759/3759 3713/3713 3737/3737 +f 3713/3713 3760/3760 3738/3738 +f 3760/3760 3711/3711 3738/3738 +f 3757/3757 3714/3714 3735/3735 +f 3761/3761 3716/3716 3714/3714 +f 3718/3718 3715/3715 3762/3762 +f 3739/3739 3763/3763 3715/3715 +f 3764/3764 3739/3739 3716/3716 +f 3719/3719 3717/3717 3765/3765 +f 3717/3717 3718/3718 3766/3766 +f 3692/3692 3740/3740 3744/3744 +f 3719/3719 3767/3767 3740/3740 +f 3768/3768 3695/3695 3741/3741 +f 3742/3742 3695/3695 3768/3768 +f 3742/3742 3769/3769 3720/3720 +f 3743/3743 3745/3745 3696/3696 +f 3770/3770 3743/3743 3720/3720 +f 3771/3771 3741/3741 3721/3721 +f 3772/3772 3721/3721 3744/3744 +f 3722/3722 3745/3745 3773/3773 +f 3773/3773 3723/3723 3722/3722 +f 3746/3746 3747/3747 3675/3675 +f 3774/3774 3746/3746 3723/3723 +f 3725/3725 3747/3747 3775/3775 +f 3775/3775 3726/3726 3725/3725 +f 3726/3726 3775/3775 3748/3748 +f 3776/3776 3701/3701 3748/3748 +f 3751/3751 3729/3729 3727/3727 +f 3728/3728 3749/3749 3727/3727 +f 3749/3749 3702/3702 3777/3777 +f 3702/3702 3750/3750 3777/3777 +f 3750/3750 3701/3701 3778/3778 +f 3751/3751 3752/3752 3705/3705 +f 3706/3706 3730/3730 3779/3779 +f 3731/3731 3780/3780 3730/3730 +f 3781/3781 3731/3731 3752/3752 +f 3779/3779 3753/3753 3706/3706 +f 3753/3753 3782/3782 3732/3732 +f 3732/3732 3782/3782 3724/3724 +f 36626/39907 3754/3754 3755/3755 +f 36628/39908 36626/39907 3755/3755 +f 36629/39909 3783/3783 3754/3754 +f 36627/39910 36629/39909 3754/3754 +f 3783/3783 36629/39911 36630/39912 +f 3784/3784 3733/3733 3755/3755 +f 3733/3733 3734/3734 3709/3709 +f 3784/3784 3756/3756 3734/3734 +f 3687/3687 3756/3756 3758/3758 +f 3760/3760 3757/3757 3711/3711 +f 3736/3736 3759/3759 3737/3737 +f 3758/3758 3785/3785 3736/3736 +f 3713/3713 3759/3759 3786/3786 +f 3787/3787 3760/3760 3713/3713 +f 3757/3757 3788/3788 3714/3714 +f 3716/3716 3761/3761 3789/3789 +f 3761/3761 3714/3714 3790/3790 +f 3762/3762 3791/3791 3718/3718 +f 3715/3715 3763/3763 3762/3762 +f 3792/3792 3763/3763 3739/3739 +f 3792/3792 3739/3739 3764/3764 +f 3716/3716 3789/3789 3764/3764 +f 3717/3717 3766/3766 3765/3765 +f 3793/3793 3719/3719 3765/3765 +f 3766/3766 3718/3718 3791/3791 +f 3744/3744 3740/3740 3794/3794 +f 3719/3719 3795/3795 3767/3767 +f 3740/3740 3767/3767 3796/3796 +f 3768/3768 3741/3741 3797/3797 +f 3742/3742 3768/3768 3798/3798 +f 3769/3769 3742/3742 3799/3799 +f 3720/3720 3769/3769 3800/3800 +f 3745/3745 3743/3743 3773/3773 +f 3800/3800 3770/3770 3720/3720 +f 3801/3801 3743/3743 3770/3770 +f 3771/3771 3797/3797 3741/3741 +f 3721/3721 3772/3772 3771/3771 +f 3802/3802 3772/3772 3744/3744 +f 3774/3774 3723/3723 3773/3773 +f 3774/3774 3747/3747 3746/3746 +f 3775/3775 3747/3747 3803/3803 +f 3775/3775 3804/3804 3748/3748 +f 3776/3776 3778/3778 3701/3701 +f 3805/3805 3776/3776 3748/3748 +f 3749/3749 3751/3751 3727/3727 +f 3777/3777 3781/3781 3749/3749 +f 3777/3777 3750/3750 3806/3806 +f 3750/3750 3778/3778 3806/3806 +f 3781/3781 3752/3752 3751/3751 +f 3779/3779 3730/3730 3807/3807 +f 3731/3731 3781/3781 3780/3780 +f 3780/3780 3808/3808 3730/3730 +f 3809/3809 3753/3753 3779/3779 +f 3753/3753 3810/3810 3782/3782 +f 3782/3782 3811/3811 3724/3724 +f 3812/3812 3755/3755 3754/3754 +f 3787/3787 3754/3754 3783/3783 +f 36631/39913 3813/3813 3783/3783 +f 36630/39914 36631/39913 3783/3783 +f 3734/3734 3733/3733 3784/3784 +f 3755/3755 3756/3756 3784/3784 +f 3756/3756 3755/3755 3758/3758 +f 3814/3814 3757/3757 3760/3760 +f 3759/3759 3736/3736 3785/3785 +f 3812/3812 3785/3785 3758/3758 +f 3786/3786 3759/3759 3785/3785 +f 3786/3786 3787/3787 3713/3713 +f 3787/3787 3815/3815 3760/3760 +f 3757/3757 3814/3814 3788/3788 +f 3790/3790 3714/3714 3788/3788 +f 3816/3816 3789/3789 3761/3761 +f 3761/3761 3790/3790 3817/3817 +f 3762/3762 3818/3818 3791/3791 +f 3763/3763 3819/3819 3762/3762 +f 3763/3763 3792/3792 3820/3820 +f 3792/3792 3764/3764 3816/3816 +f 3816/3816 3764/3764 3789/3789 +f 3766/3766 3821/3821 3765/3765 +f 3793/3793 3795/3795 3719/3719 +f 3822/3822 3793/3793 3765/3765 +f 3823/3823 3766/3766 3791/3791 +f 3796/3796 3794/3794 3740/3740 +f 3744/3744 3794/3794 3802/3802 +f 3795/3795 3824/3824 3767/3767 +f 3825/3825 3796/3796 3767/3767 +f 3826/3826 3768/3768 3797/3797 +f 3799/3799 3742/3742 3798/3798 +f 3768/3768 3826/3826 3798/3798 +f 3799/3799 3800/3800 3769/3769 +f 3773/3773 3743/3743 3801/3801 +f 3770/3770 3800/3800 3801/3801 +f 3771/3771 3827/3827 3797/3797 +f 3828/3828 3771/3771 3772/3772 +f 3772/3772 3802/3802 3828/3828 +f 3773/3773 3829/3829 3774/3774 +f 3747/3747 3774/3774 3829/3829 +f 3803/3803 3747/3747 3829/3829 +f 3803/3803 3830/3830 3775/3775 +f 3775/3775 3830/3830 3804/3804 +f 3748/3748 3804/3804 3805/3805 +f 3831/3831 3778/3778 3776/3776 +f 3776/3776 3805/3805 3832/3832 +f 3751/3751 3749/3749 3781/3781 +f 3781/3781 3777/3777 3780/3780 +f 3777/3777 3806/3806 3780/3780 +f 3778/3778 3808/3808 3806/3806 +f 3807/3807 3730/3730 3808/3808 +f 3807/3807 3809/3809 3779/3779 +f 3808/3808 3780/3780 3806/3806 +f 3753/3753 3809/3809 3810/3810 +f 3833/3833 3782/3782 3810/3810 +f 3782/3782 3834/3834 3811/3811 +f 3755/3755 3812/3812 3758/3758 +f 3812/3812 3754/3754 3786/3786 +f 3815/3815 3787/3787 3783/3783 +f 3754/3754 3787/3787 3786/3786 +f 3835/3835 36632/39915 36633/39916 +f 36634/39917 3836/3836 3813/3813 +f 36631/39918 36634/39917 3813/3813 +f 3813/3813 3815/3815 3783/3783 +f 3815/3815 3814/3814 3760/3760 +f 3812/3812 3786/3786 3785/3785 +f 3814/3814 3837/3837 3788/3788 +f 3788/3788 3838/3838 3790/3790 +f 3816/3816 3761/3761 3817/3817 +f 3817/3817 3790/3790 3838/3838 +f 3819/3819 3818/3818 3762/3762 +f 3791/3791 3818/3818 3839/3839 +f 3819/3819 3763/3763 3820/3820 +f 3820/3820 3792/3792 3840/3840 +f 3841/3841 3792/3792 3816/3816 +f 3766/3766 3842/3842 3821/3821 +f 3821/3821 3822/3822 3765/3765 +f 3793/3793 3843/3843 3795/3795 +f 3793/3793 3822/3822 3844/3844 +f 3766/3766 3823/3823 3842/3842 +f 3791/3791 3839/3839 3823/3823 +f 3794/3794 3796/3796 3845/3845 +f 3794/3794 3828/3828 3802/3802 +f 3846/3846 3824/3824 3795/3795 +f 3824/3824 3847/3847 3767/3767 +f 3796/3796 3825/3825 3845/3845 +f 3767/3767 3848/3848 3825/3825 +f 3849/3849 3826/3826 3797/3797 +f 3850/3850 3799/3799 3798/3798 +f 3826/3826 3849/3849 3798/3798 +f 3799/3799 3851/3851 3800/3800 +f 3801/3801 3851/3851 3773/3773 +f 3851/3851 3801/3801 3800/3800 +f 3771/3771 3828/3828 3827/3827 +f 3827/3827 3849/3849 3797/3797 +f 3851/3851 3829/3829 3773/3773 +f 3803/3803 3829/3829 3852/3852 +f 3853/3853 3830/3830 3803/3803 +f 3854/3854 3804/3804 3830/3830 +f 3805/3805 3804/3804 3855/3855 +f 3831/3831 3856/3856 3778/3778 +f 3776/3776 3832/3832 3831/3831 +f 3805/3805 3857/3857 3832/3832 +f 3808/3808 3778/3778 3858/3858 +f 3808/3808 3859/3859 3807/3807 +f 3860/3860 3809/3809 3807/3807 +f 3860/3860 3810/3810 3809/3809 +f 3782/3782 3833/3833 3834/3834 +f 3810/3810 3861/3861 3833/3833 +f 3862/3862 3811/3811 3834/3834 +f 3863/3863 36635/39919 36636/39920 +f 36637/39921 3864/3864 3835/3835 +f 36633/39922 36637/39921 3835/3835 +f 36632/39923 3835/3835 3836/3836 +f 36634/39924 36632/39923 3836/3836 +f 3813/3813 3836/3836 3865/3865 +f 3815/3815 3813/3813 3866/3866 +f 3866/3866 3814/3814 3815/3815 +f 3837/3837 3814/3814 3866/3866 +f 3867/3867 3788/3788 3837/3837 +f 3788/3788 3867/3867 3838/3838 +f 3868/3868 3816/3816 3817/3817 +f 3817/3817 3838/3838 3867/3867 +f 3818/3818 3819/3819 3869/3869 +f 3870/3870 3839/3839 3818/3818 +f 3871/3871 3819/3819 3820/3820 +f 3792/3792 3872/3872 3840/3840 +f 3840/3840 3871/3871 3820/3820 +f 3841/3841 3872/3872 3792/3792 +f 3816/3816 3873/3873 3841/3841 +f 3874/3874 3821/3821 3842/3842 +f 3874/3874 3822/3822 3821/3821 +f 3843/3843 3793/3793 3875/3875 +f 3843/3843 3876/3876 3795/3795 +f 3822/3822 3877/3877 3844/3844 +f 3878/3878 3793/3793 3844/3844 +f 3823/3823 3879/3879 3842/3842 +f 3880/3880 3823/3823 3839/3839 +f 3794/3794 3845/3845 3881/3881 +f 3882/3882 3828/3828 3794/3794 +f 3883/3883 3824/3824 3846/3846 +f 3884/3884 3846/3846 3795/3795 +f 3824/3824 3883/3883 3847/3847 +f 3847/3847 3885/3885 3767/3767 +f 3825/3825 3886/3886 3845/3845 +f 3767/3767 3885/3885 3848/3848 +f 3886/3886 3825/3825 3848/3848 +f 3850/3850 3887/3887 3799/3799 +f 3849/3849 3850/3850 3798/3798 +f 3887/3887 3851/3851 3799/3799 +f 3882/3882 3827/3827 3828/3828 +f 3888/3888 3849/3849 3827/3827 +f 3887/3887 3829/3829 3851/3851 +f 3887/3887 3852/3852 3829/3829 +f 3803/3803 3852/3852 3853/3853 +f 3830/3830 3853/3853 3889/3889 +f 3889/3889 3854/3854 3830/3830 +f 3804/3804 3854/3854 3855/3855 +f 3855/3855 3857/3857 3805/3805 +f 3890/3890 3856/3856 3831/3831 +f 3778/3778 3856/3856 3891/3891 +f 3831/3831 3832/3832 3890/3890 +f 3832/3832 3857/3857 3892/3892 +f 3778/3778 3891/3891 3858/3858 +f 3859/3859 3808/3808 3858/3858 +f 3859/3859 3860/3860 3807/3807 +f 3810/3810 3860/3860 3861/3861 +f 3893/3893 3834/3834 3833/3833 +f 3833/3833 3861/3861 3894/3894 +f 3893/3893 3862/3862 3834/3834 +f 36638/39925 3895/3895 3863/3863 +f 36636/39926 36638/39925 3863/3863 +f 36635/39927 3863/3863 3896/3896 +f 36639/39928 36635/39927 3896/3896 +f 3835/3835 3864/3864 3897/3897 +f 36639/39929 3896/3896 3864/3864 +f 36637/39930 36639/39929 3864/3864 +f 3835/3835 3897/3897 3836/3836 +f 3836/3836 3868/3868 3865/3865 +f 3865/3865 3866/3866 3813/3813 +f 3898/3898 3837/3837 3866/3866 +f 3899/3899 3867/3867 3837/3837 +f 3817/3817 3900/3900 3868/3868 +f 3816/3816 3868/3868 3901/3901 +f 3867/3867 3900/3900 3817/3817 +f 3869/3869 3902/3902 3818/3818 +f 3871/3871 3869/3869 3819/3819 +f 3870/3870 3880/3880 3839/3839 +f 3818/3818 3902/3902 3870/3870 +f 3903/3903 3840/3840 3872/3872 +f 3840/3840 3904/3904 3871/3871 +f 3873/3873 3872/3872 3841/3841 +f 3901/3901 3873/3873 3816/3816 +f 3905/3905 3874/3874 3842/3842 +f 3906/3906 3822/3822 3874/3874 +f 3875/3875 3793/3793 3907/3907 +f 3876/3876 3843/3843 3875/3875 +f 3884/3884 3795/3795 3876/3876 +f 3877/3877 3878/3878 3844/3844 +f 3822/3822 3906/3906 3877/3877 +f 3793/3793 3878/3878 3907/3907 +f 3879/3879 3823/3823 3880/3880 +f 3879/3879 3908/3908 3842/3842 +f 3881/3881 3845/3845 3909/3909 +f 3881/3881 3882/3882 3794/3794 +f 3846/3846 3910/3910 3883/3883 +f 3846/3846 3884/3884 3911/3911 +f 3883/3883 3912/3912 3847/3847 +f 3913/3913 3885/3885 3847/3847 +f 3909/3909 3845/3845 3886/3886 +f 3848/3848 3885/3885 3913/3913 +f 3848/3848 3914/3914 3886/3886 +f 3850/3850 3852/3852 3887/3887 +f 3915/3915 3850/3850 3849/3849 +f 3888/3888 3827/3827 3882/3882 +f 3915/3915 3849/3849 3888/3888 +f 3853/3853 3852/3852 3916/3916 +f 3917/3917 3889/3889 3853/3853 +f 3918/3918 3854/3854 3889/3889 +f 3855/3855 3854/3854 3918/3918 +f 3857/3857 3855/3855 3919/3919 +f 3856/3856 3890/3890 3891/3891 +f 3920/3920 3890/3890 3832/3832 +f 3857/3857 3919/3919 3892/3892 +f 3920/3920 3832/3832 3892/3892 +f 3921/3921 3858/3858 3891/3891 +f 3858/3858 3922/3922 3859/3859 +f 3923/3923 3860/3860 3859/3859 +f 3924/3924 3861/3861 3860/3860 +f 3893/3893 3833/3833 3894/3894 +f 3861/3861 3925/3925 3894/3894 +f 3893/3893 3926/3926 3862/3862 +f 3895/3895 36638/39931 36640/39932 +f 3927/3927 3863/3863 3895/3895 +f 3928/3928 3896/3896 3863/3863 +f 3929/3929 3897/3897 3864/3864 +f 3864/3864 3896/3896 3930/3930 +f 3897/3897 3868/3868 3836/3836 +f 3868/3868 3931/3931 3865/3865 +f 3898/3898 3866/3866 3865/3865 +f 3837/3837 3898/3898 3899/3899 +f 3867/3867 3899/3899 3900/3900 +f 3931/3931 3868/3868 3900/3900 +f 3868/3868 3897/3897 3901/3901 +f 3932/3932 3902/3902 3869/3869 +f 3933/3933 3869/3869 3871/3871 +f 3880/3880 3870/3870 3934/3934 +f 3935/3935 3870/3870 3902/3902 +f 3904/3904 3840/3840 3903/3903 +f 3872/3872 3929/3929 3903/3903 +f 3871/3871 3904/3904 3928/3928 +f 3872/3872 3873/3873 3929/3929 +f 3901/3901 3929/3929 3873/3873 +f 3908/3908 3905/3905 3842/3842 +f 3905/3905 3906/3906 3874/3874 +f 3907/3907 3876/3876 3875/3875 +f 3876/3876 3907/3907 3884/3884 +f 3877/3877 3936/3936 3878/3878 +f 3877/3877 3906/3906 3937/3937 +f 3936/3936 3907/3907 3878/3878 +f 3879/3879 3880/3880 3938/3938 +f 3908/3908 3879/3879 3939/3939 +f 3909/3909 3888/3888 3881/3881 +f 3881/3881 3888/3888 3882/3882 +f 3846/3846 3940/3940 3910/3910 +f 3883/3883 3910/3910 3941/3941 +f 3911/3911 3884/3884 3942/3942 +f 3911/3911 3943/3943 3846/3846 +f 3912/3912 3944/3944 3847/3847 +f 3912/3912 3883/3883 3941/3941 +f 3913/3913 3847/3847 3944/3944 +f 3886/3886 3945/3945 3909/3909 +f 3914/3914 3848/3848 3913/3913 +f 3945/3945 3886/3886 3914/3914 +f 3916/3916 3852/3852 3850/3850 +f 3946/3946 3850/3850 3915/3915 +f 3915/3915 3888/3888 3946/3946 +f 3916/3916 3947/3947 3853/3853 +f 3889/3889 3917/3917 3948/3948 +f 3853/3853 3947/3947 3917/3917 +f 3889/3889 3949/3949 3918/3918 +f 3950/3950 3855/3855 3918/3918 +f 3855/3855 3951/3951 3919/3919 +f 3891/3891 3890/3890 3921/3921 +f 3920/3920 3952/3952 3890/3890 +f 3951/3951 3892/3892 3919/3919 +f 3953/3953 3920/3920 3892/3892 +f 3922/3922 3858/3858 3921/3921 +f 3859/3859 3922/3922 3923/3923 +f 3860/3860 3923/3923 3924/3924 +f 3925/3925 3861/3861 3924/3924 +f 3954/3954 3893/3893 3894/3894 +f 3894/3894 3925/3925 3954/3954 +f 3926/3926 3893/3893 3955/3955 +f 3862/3862 3926/3926 3956/3956 +f 36641/39933 3957/3957 3895/3895 +f 36642/39934 36641/39933 3895/3895 +f 3863/3863 3927/3927 3928/3928 +f 3927/3927 3895/3895 3958/3958 +f 3930/3930 3896/3896 3928/3928 +f 3864/3864 3930/3930 3929/3929 +f 3897/3897 3929/3929 3901/3901 +f 3931/3931 3898/3898 3865/3865 +f 3898/3898 3931/3931 3899/3899 +f 3899/3899 3931/3931 3900/3900 +f 3902/3902 3932/3932 3959/3959 +f 3932/3932 3869/3869 3960/3960 +f 3869/3869 3933/3933 3960/3960 +f 3871/3871 3928/3928 3933/3933 +f 3880/3880 3934/3934 3938/3938 +f 3935/3935 3934/3934 3870/3870 +f 3959/3959 3935/3935 3902/3902 +f 3904/3904 3903/3903 3930/3930 +f 3903/3903 3929/3929 3930/3930 +f 3928/3928 3904/3904 3930/3930 +f 3905/3905 3908/3908 3961/3961 +f 3962/3962 3906/3906 3905/3905 +f 3884/3884 3907/3907 3942/3942 +f 3877/3877 3963/3963 3936/3936 +f 3962/3962 3937/3937 3906/3906 +f 3937/3937 3963/3963 3877/3877 +f 3942/3942 3907/3907 3936/3936 +f 3964/3964 3879/3879 3938/3938 +f 3961/3961 3908/3908 3939/3939 +f 3879/3879 3964/3964 3939/3939 +f 3946/3946 3888/3888 3909/3909 +f 3965/3965 3940/3940 3846/3846 +f 3940/3940 3966/3966 3910/3910 +f 3910/3910 3967/3967 3941/3941 +f 3968/3968 3911/3911 3942/3942 +f 3969/3969 3943/3943 3911/3911 +f 3943/3943 3970/3970 3846/3846 +f 3912/3912 3971/3971 3944/3944 +f 3941/3941 3971/3971 3912/3912 +f 3944/3944 3914/3914 3913/3913 +f 3972/3972 3909/3909 3945/3945 +f 3971/3971 3945/3945 3914/3914 +f 3850/3850 3973/3973 3916/3916 +f 3973/3973 3850/3850 3946/3946 +f 3947/3947 3916/3916 3974/3974 +f 3975/3975 3948/3948 3917/3917 +f 3976/3976 3889/3889 3948/3948 +f 3917/3917 3947/3947 3977/3977 +f 3976/3976 3949/3949 3889/3889 +f 3918/3918 3949/3949 3978/3978 +f 3918/3918 3978/3978 3950/3950 +f 3950/3950 3951/3951 3855/3855 +f 3890/3890 3979/3979 3921/3921 +f 3920/3920 3980/3980 3952/3952 +f 3890/3890 3952/3952 3979/3979 +f 3981/3981 3892/3892 3951/3951 +f 3980/3980 3920/3920 3953/3953 +f 3953/3953 3892/3892 3981/3981 +f 3921/3921 3923/3923 3922/3922 +f 3923/3923 3921/3921 3924/3924 +f 3924/3924 3979/3979 3925/3925 +f 3982/3982 3893/3893 3954/3954 +f 3925/3925 3983/3983 3954/3954 +f 3982/3982 3955/3955 3893/3893 +f 3926/3926 3955/3955 3984/3984 +f 3985/3985 3956/3956 3926/3926 +f 3862/3862 3956/3956 3986/3986 +f 3957/3957 36641/39935 36643/39936 +f 3895/3895 3957/3957 3958/3958 +f 3927/3927 3987/3987 3928/3928 +f 3958/3958 3987/3987 3927/3927 +f 3932/3932 3988/3988 3959/3959 +f 3958/3958 3932/3932 3960/3960 +f 3960/3960 3933/3933 3958/3958 +f 3933/3933 3928/3928 3987/3987 +f 3989/3989 3938/3938 3934/3934 +f 3990/3990 3934/3934 3935/3935 +f 3988/3988 3935/3935 3959/3959 +f 3962/3962 3905/3905 3961/3961 +f 3991/3991 3936/3936 3963/3963 +f 3962/3962 3992/3992 3937/3937 +f 3993/3993 3963/3963 3937/3937 +f 3994/3994 3942/3942 3936/3936 +f 3964/3964 3938/3938 3989/3989 +f 3995/3995 3961/3961 3939/3939 +f 3964/3964 3996/3996 3939/3939 +f 3972/3972 3946/3946 3909/3909 +f 3965/3965 3997/3997 3940/3940 +f 3970/3970 3965/3965 3846/3846 +f 3940/3940 3998/3998 3966/3966 +f 3967/3967 3910/3910 3966/3966 +f 3941/3941 3967/3967 3999/3999 +f 3911/3911 3968/3968 3969/3969 +f 3994/3994 3968/3968 3942/3942 +f 4000/4000 3943/3943 3969/3969 +f 3970/3970 3943/3943 4000/4000 +f 3971/3971 3914/3914 3944/3944 +f 4001/4001 3971/3971 3941/3941 +f 3972/3972 3945/3945 4002/4002 +f 3945/3945 3971/3971 4001/4001 +f 4003/4003 3916/3916 3973/3973 +f 4003/4003 3973/3973 3946/3946 +f 3974/3974 3916/3916 4004/4004 +f 3977/3977 3947/3947 3974/3974 +f 3977/3977 3975/3975 3917/3917 +f 4005/4005 3948/3948 3975/3975 +f 4006/4006 3976/3976 3948/3948 +f 3949/3949 3976/3976 4007/4007 +f 3949/3949 4007/4007 3978/3978 +f 4008/4008 3950/3950 3978/3978 +f 3951/3951 3950/3950 3981/3981 +f 3921/3921 3979/3979 3924/3924 +f 3980/3980 3979/3979 3952/3952 +f 4009/4009 3980/3980 3953/3953 +f 3981/3981 4010/4010 3953/3953 +f 3925/3925 3979/3979 3980/3980 +f 3982/3982 3954/3954 3983/3983 +f 3983/3983 3925/3925 4011/4011 +f 3955/3955 3982/3982 4012/4012 +f 3984/3984 3985/3985 3926/3926 +f 4013/4013 3984/3984 3955/3955 +f 3985/3985 4014/4014 3956/3956 +f 4015/4015 3986/3986 3956/3956 +f 36644/39937 4016/4016 3957/3957 +f 36645/39938 36644/39937 3957/3957 +f 3957/3957 3932/3932 3958/3958 +f 3987/3987 3958/3958 3933/3933 +f 3932/3932 4016/4016 3988/3988 +f 3934/3934 4017/4017 3989/3989 +f 3990/3990 4017/4017 3934/3934 +f 3990/3990 3935/3935 3988/3988 +f 3992/3992 3962/3962 3961/3961 +f 3994/3994 3936/3936 3991/3991 +f 3963/3963 3993/3993 3991/3991 +f 3993/3993 3937/3937 3992/3992 +f 3996/3996 3964/3964 3989/3989 +f 3939/3939 3996/3996 3995/3995 +f 3961/3961 3995/3995 4018/4018 +f 3972/3972 4003/4003 3946/3946 +f 4019/4019 3997/3997 3965/3965 +f 3940/3940 3997/3997 3998/3998 +f 3970/3970 4020/4020 3965/3965 +f 3966/3966 3998/3998 4021/4021 +f 3966/3966 3999/3999 3967/3967 +f 3999/3999 4001/4001 3941/3941 +f 4022/4022 3969/3969 3968/3968 +f 4022/4022 3968/3968 3994/3994 +f 4000/4000 3969/3969 4022/4022 +f 4000/4000 4020/4020 3970/3970 +f 4003/4003 3972/3972 4002/4002 +f 4002/4002 3945/3945 4001/4001 +f 4004/4004 3916/3916 4003/4003 +f 4004/4004 4023/4023 3974/3974 +f 3977/3977 3974/3974 4024/4024 +f 3977/3977 4025/4025 3975/3975 +f 4005/4005 4006/4006 3948/3948 +f 3975/3975 4026/4026 4005/4005 +f 3976/3976 4006/4006 4027/4027 +f 4007/4007 3976/3976 4028/4028 +f 3978/3978 4007/4007 4008/4008 +f 3950/3950 4008/4008 3981/3981 +f 4010/4010 4009/4009 3953/3953 +f 4011/4011 3980/3980 4009/4009 +f 3981/3981 4008/4008 4010/4010 +f 3925/3925 3980/3980 4011/4011 +f 4029/4029 3982/3982 3983/3983 +f 4011/4011 4030/4030 3983/3983 +f 3955/3955 4012/4012 4013/4013 +f 3982/3982 4031/4031 4012/4012 +f 3985/3985 3984/3984 4032/4032 +f 3984/3984 4013/4013 4032/4032 +f 4014/4014 3985/3985 4032/4032 +f 4033/4033 3956/3956 4014/4014 +f 4015/4015 3956/3956 4034/4034 +f 4035/4035 3986/3986 4015/4015 +f 3932/3932 3957/3957 4016/4016 +f 36646/39939 4036/4036 4016/4016 +f 36644/39940 36646/39939 4016/4016 +f 4037/4037 36647/39941 36648/39942 +f 4016/4016 4036/4036 3988/3988 +f 3989/3989 4017/4017 4038/4038 +f 4017/4017 3990/3990 4039/4039 +f 4036/4036 3990/3990 3988/3988 +f 4040/4040 3992/3992 3961/3961 +f 4022/4022 3994/3994 3991/3991 +f 3993/3993 4041/4041 3991/3991 +f 4042/4042 3993/3993 3992/3992 +f 4043/4043 3996/3996 3989/3989 +f 4044/4044 3995/3995 3996/3996 +f 3961/3961 4018/4018 4045/4045 +f 4018/4018 3995/3995 4046/4046 +f 3965/3965 4020/4020 4019/4019 +f 3997/3997 4019/4019 4047/4047 +f 4047/4047 3998/3998 3997/3997 +f 4021/4021 4048/4048 3966/3966 +f 3998/3998 4049/4049 4021/4021 +f 3966/3966 4048/4048 3999/3999 +f 4001/4001 3999/3999 4050/4050 +f 4051/4051 4000/4000 4022/4022 +f 4020/4020 4000/4000 4052/4052 +f 4003/4003 4002/4002 4050/4050 +f 4002/4002 4001/4001 4050/4050 +f 4003/4003 4050/4050 4004/4004 +f 4023/4023 4004/4004 4053/4053 +f 3974/3974 4023/4023 4054/4054 +f 4054/4054 4024/4024 3974/3974 +f 4024/4024 4055/4055 3977/3977 +f 3975/3975 4025/4025 4026/4026 +f 3977/3977 4055/4055 4025/4025 +f 4006/4006 4005/4005 4056/4056 +f 4026/4026 4057/4057 4005/4005 +f 4058/4058 4027/4027 4006/4006 +f 3976/3976 4027/4027 4028/4028 +f 4028/4028 4059/4059 4007/4007 +f 4059/4059 4008/4008 4007/4007 +f 4030/4030 4009/4009 4010/4010 +f 4030/4030 4011/4011 4009/4009 +f 4008/4008 4060/4060 4010/4010 +f 4029/4029 4031/4031 3982/3982 +f 3983/3983 4061/4061 4029/4029 +f 4062/4062 3983/3983 4030/4030 +f 4013/4013 4012/4012 4063/4063 +f 4012/4012 4031/4031 4064/4064 +f 4065/4065 4032/4032 4013/4013 +f 4066/4066 4014/4014 4032/4032 +f 4034/4034 3956/3956 4033/4033 +f 4066/4066 4033/4033 4014/4014 +f 4034/4034 4067/4067 4015/4015 +f 4068/4068 3986/3986 4035/4035 +f 4069/4069 4035/4035 4015/4015 +f 36647/39943 4037/4037 4036/4036 +f 36646/39944 36647/39943 4036/4036 +f 36649/39945 4070/4070 4037/4037 +f 36648/39946 36649/39945 4037/4037 +f 4070/4070 36649/39947 36650/39948 +f 4071/4071 3989/3989 4038/4038 +f 4017/4017 4039/4039 4038/4038 +f 4037/4037 4039/4039 3990/3990 +f 4036/4036 4037/4037 3990/3990 +f 4045/4045 4040/4040 3961/3961 +f 4040/4040 4072/4072 3992/3992 +f 3991/3991 4041/4041 4022/4022 +f 3993/3993 4073/4073 4041/4041 +f 3992/3992 4072/4072 4042/4042 +f 4073/4073 3993/3993 4042/4042 +f 3996/3996 4043/4043 4044/4044 +f 4071/4071 4043/4043 3989/3989 +f 3995/3995 4044/4044 4046/4046 +f 4074/4074 4045/4045 4018/4018 +f 4018/4018 4046/4046 4074/4074 +f 4020/4020 4075/4075 4019/4019 +f 4076/4076 4047/4047 4019/4019 +f 4077/4077 3998/3998 4047/4047 +f 4021/4021 4049/4049 4048/4048 +f 4078/4078 4049/4049 3998/3998 +f 4048/4048 4079/4079 3999/3999 +f 3999/3999 4079/4079 4050/4050 +f 4051/4051 4052/4052 4000/4000 +f 4080/4080 4051/4051 4022/4022 +f 4075/4075 4020/4020 4052/4052 +f 4081/4081 4004/4004 4050/4050 +f 4004/4004 4082/4082 4053/4053 +f 4053/4053 4083/4083 4023/4023 +f 4023/4023 4084/4084 4054/4054 +f 4054/4054 4085/4085 4024/4024 +f 4086/4086 4055/4055 4024/4024 +f 4026/4026 4025/4025 4087/4087 +f 4088/4088 4025/4025 4055/4055 +f 4056/4056 4005/4005 4089/4089 +f 4056/4056 4089/4089 4006/4006 +f 4005/4005 4057/4057 4089/4089 +f 4057/4057 4026/4026 4090/4090 +f 4091/4091 4027/4027 4058/4058 +f 4006/4006 4089/4089 4058/4058 +f 4028/4028 4027/4027 4091/4091 +f 4092/4092 4059/4059 4028/4028 +f 4059/4059 4060/4060 4008/4008 +f 4010/4010 4062/4062 4030/4030 +f 4060/4060 4093/4093 4010/4010 +f 4031/4031 4029/4029 4094/4094 +f 4029/4029 4061/4061 4095/4095 +f 3983/3983 4062/4062 4061/4061 +f 4013/4013 4063/4063 4065/4065 +f 4063/4063 4012/4012 4064/4064 +f 4064/4064 4031/4031 4096/4096 +f 4065/4065 4066/4066 4032/4032 +f 4033/4033 4097/4097 4034/4034 +f 4098/4098 4033/4033 4066/4066 +f 4067/4067 4034/4034 4097/4097 +f 4099/4099 4015/4015 4067/4067 +f 4035/4035 4100/4100 4068/4068 +f 4015/4015 4099/4099 4069/4069 +f 4035/4035 4069/4069 4101/4101 +f 4102/4102 4037/4037 4070/4070 +f 4103/4103 36651/39949 36652/39950 +f 36653/39951 4102/4102 4070/4070 +f 36650/39952 36653/39951 4070/4070 +f 4043/4043 4071/4071 4038/4038 +f 4038/4038 4039/4039 4102/4102 +f 4037/4037 4102/4102 4039/4039 +f 4045/4045 4072/4072 4040/4040 +f 4022/4022 4041/4041 4080/4080 +f 4041/4041 4073/4073 4104/4104 +f 4072/4072 4105/4105 4042/4042 +f 4073/4073 4042/4042 4105/4105 +f 4043/4043 4106/4106 4044/4044 +f 4044/4044 4107/4107 4046/4046 +f 4108/4108 4045/4045 4074/4074 +f 4109/4109 4074/4074 4046/4046 +f 4110/4110 4019/4019 4075/4075 +f 4047/4047 4076/4076 4111/4111 +f 4076/4076 4019/4019 4110/4110 +f 4077/4077 4047/4047 4111/4111 +f 4077/4077 4078/4078 3998/3998 +f 4081/4081 4048/4048 4049/4049 +f 4049/4049 4078/4078 4112/4112 +f 4079/4079 4048/4048 4081/4081 +f 4050/4050 4079/4079 4081/4081 +f 4113/4113 4052/4052 4051/4051 +f 4051/4051 4080/4080 4113/4113 +f 4052/4052 4113/4113 4075/4075 +f 4081/4081 4082/4082 4004/4004 +f 4053/4053 4082/4082 4114/4114 +f 4053/4053 4115/4115 4083/4083 +f 4083/4083 4116/4116 4023/4023 +f 4116/4116 4084/4084 4023/4023 +f 4085/4085 4054/4054 4084/4084 +f 4085/4085 4117/4117 4024/4024 +f 4055/4055 4086/4086 4088/4088 +f 4024/4024 4118/4118 4086/4086 +f 4088/4088 4087/4087 4025/4025 +f 4090/4090 4026/4026 4087/4087 +f 4057/4057 4119/4119 4089/4089 +f 4090/4090 4119/4119 4057/4057 +f 4091/4091 4058/4058 4093/4093 +f 4058/4058 4089/4089 4120/4120 +f 4092/4092 4028/4028 4091/4091 +f 4092/4092 4060/4060 4059/4059 +f 4093/4093 4062/4062 4010/4010 +f 4093/4093 4060/4060 4091/4091 +f 4094/4094 4029/4029 4095/4095 +f 4031/4031 4094/4094 4096/4096 +f 4121/4121 4095/4095 4061/4061 +f 4121/4121 4061/4061 4062/4062 +f 4063/4063 4122/4122 4065/4065 +f 4064/4064 4122/4122 4063/4063 +f 4064/4064 4096/4096 4123/4123 +f 4098/4098 4066/4066 4065/4065 +f 4033/4033 4124/4124 4097/4097 +f 4124/4124 4033/4033 4098/4098 +f 4125/4125 4067/4067 4097/4097 +f 4067/4067 4126/4126 4099/4099 +f 4100/4100 4035/4035 4127/4127 +f 4068/4068 4100/4100 4128/4128 +f 4099/4099 4129/4129 4069/4069 +f 4101/4101 4069/4069 4130/4130 +f 4035/4035 4101/4101 4127/4127 +f 36204/39067 36654/39953 36655/39954 +f 36204/39067 36655/39955 36656/39956 +f 36651/39957 4103/4103 4131/4131 +f 36657/39958 36651/39957 4131/4131 +f 4103/4103 36652/39959 36658/39960 +f 36659/39961 4132/4132 4102/4102 +f 36653/39962 36659/39961 4102/4102 +f 4133/4133 4043/4043 4038/4038 +f 4102/4102 4134/4134 4038/4038 +f 4135/4135 4072/4072 4045/4045 +f 4041/4041 4104/4104 4080/4080 +f 4136/4136 4104/4104 4073/4073 +f 4072/4072 4137/4137 4105/4105 +f 4073/4073 4105/4105 4136/4136 +f 4044/4044 4106/4106 4107/4107 +f 4106/4106 4043/4043 4138/4138 +f 4046/4046 4107/4107 4109/4109 +f 4045/4045 4108/4108 4139/4139 +f 4140/4140 4108/4108 4074/4074 +f 4140/4140 4074/4074 4109/4109 +f 4075/4075 4141/4141 4110/4110 +f 4076/4076 4142/4142 4111/4111 +f 4076/4076 4110/4110 4142/4142 +f 4143/4143 4077/4077 4111/4111 +f 4144/4144 4078/4078 4077/4077 +f 4049/4049 4145/4145 4081/4081 +f 4078/4078 4146/4146 4112/4112 +f 4049/4049 4112/4112 4145/4145 +f 4147/4147 4113/4113 4080/4080 +f 4113/4113 4147/4147 4075/4075 +f 4082/4082 4081/4081 4114/4114 +f 4148/4148 4053/4053 4114/4114 +f 4115/4115 4085/4085 4083/4083 +f 4053/4053 4149/4149 4115/4115 +f 4083/4083 4150/4150 4116/4116 +f 4116/4116 4150/4150 4084/4084 +f 4150/4150 4085/4085 4084/4084 +f 4151/4151 4117/4117 4085/4085 +f 4118/4118 4024/4024 4117/4117 +f 4152/4152 4088/4088 4086/4086 +f 4086/4086 4118/4118 4152/4152 +f 4088/4088 4152/4152 4087/4087 +f 4153/4153 4090/4090 4087/4087 +f 4120/4120 4089/4089 4119/4119 +f 4153/4153 4119/4119 4090/4090 +f 4093/4093 4058/4058 4154/4154 +f 4058/4058 4120/4120 4154/4154 +f 4060/4060 4092/4092 4091/4091 +f 4154/4154 4062/4062 4093/4093 +f 4155/4155 4094/4094 4095/4095 +f 4096/4096 4094/4094 4156/4156 +f 4121/4121 4157/4157 4095/4095 +f 4062/4062 4154/4154 4121/4121 +f 4122/4122 4158/4158 4065/4065 +f 4064/4064 4123/4123 4122/4122 +f 4159/4159 4123/4123 4096/4096 +f 4158/4158 4098/4098 4065/4065 +f 4097/4097 4124/4124 4125/4125 +f 4160/4160 4124/4124 4098/4098 +f 4161/4161 4067/4067 4125/4125 +f 4126/4126 4067/4067 4161/4161 +f 4129/4129 4099/4099 4126/4126 +f 4162/4162 4100/4100 4127/4127 +f 4128/4128 4163/4163 4068/4068 +f 4128/4128 4100/4100 4162/4162 +f 4069/4069 4129/4129 4130/4130 +f 4164/4164 4101/4101 4130/4130 +f 4101/4101 4164/4164 4127/4127 +f 36205/39068 36660/39963 36661/39964 +f 36662/39965 36206/39069 4103/4103 +f 36658/39966 36662/39965 4103/4103 +f 36654/39967 36204/39070 36206/39069 +f 36662/39968 36654/39967 36206/39069 +f 4131/4131 4103/4103 4165/4165 +f 36657/39969 4131/4131 4132/4132 +f 36659/39970 36657/39969 4132/4132 +f 4132/4132 4134/4134 4102/4102 +f 4133/4133 4166/4166 4043/4043 +f 4134/4134 4133/4133 4038/4038 +f 4167/4167 4072/4072 4135/4135 +f 4045/4045 4139/4139 4135/4135 +f 4080/4080 4104/4104 4168/4168 +f 4136/4136 4169/4169 4104/4104 +f 4137/4137 4072/4072 4167/4167 +f 4105/4105 4137/4137 4136/4136 +f 4107/4107 4106/4106 4170/4170 +f 4043/4043 4166/4166 4138/4138 +f 4106/4106 4138/4138 4170/4170 +f 4107/4107 4171/4171 4109/4109 +f 4108/4108 4172/4172 4139/4139 +f 4173/4173 4108/4108 4140/4140 +f 4174/4174 4140/4140 4109/4109 +f 4110/4110 4141/4141 4142/4142 +f 4141/4141 4075/4075 4147/4147 +f 4142/4142 4175/4175 4111/4111 +f 4143/4143 4144/4144 4077/4077 +f 4176/4176 4143/4143 4111/4111 +f 4146/4146 4078/4078 4144/4144 +f 4081/4081 4145/4145 4114/4114 +f 4177/4177 4112/4112 4146/4146 +f 4177/4177 4145/4145 4112/4112 +f 4147/4147 4080/4080 4168/4168 +f 4148/4148 4149/4149 4053/4053 +f 4148/4148 4114/4114 4145/4145 +f 4085/4085 4115/4115 4151/4151 +f 4083/4083 4085/4085 4150/4150 +f 4115/4115 4149/4149 4151/4151 +f 4151/4151 4178/4178 4117/4117 +f 4118/4118 4117/4117 4179/4179 +f 4180/4180 4152/4152 4118/4118 +f 4180/4180 4087/4087 4152/4152 +f 4180/4180 4153/4153 4087/4087 +f 4120/4120 4119/4119 4153/4153 +f 4181/4181 4154/4154 4120/4120 +f 4155/4155 4095/4095 4182/4182 +f 4094/4094 4155/4155 4183/4183 +f 4156/4156 4094/4094 4183/4183 +f 4184/4184 4096/4096 4156/4156 +f 4157/4157 4182/4182 4095/4095 +f 4157/4157 4121/4121 4185/4185 +f 4154/4154 4185/4185 4121/4121 +f 4122/4122 4186/4186 4158/4158 +f 4123/4123 4186/4186 4122/4122 +f 4187/4187 4123/4123 4159/4159 +f 4159/4159 4096/4096 4184/4184 +f 4160/4160 4098/4098 4158/4158 +f 4125/4125 4124/4124 4188/4188 +f 4160/4160 4188/4188 4124/4124 +f 4189/4189 4161/4161 4125/4125 +f 4190/4190 4126/4126 4161/4161 +f 4126/4126 4191/4191 4129/4129 +f 4162/4162 4127/4127 4192/4192 +f 4193/4193 4163/4163 4128/4128 +f 4194/4194 4128/4128 4162/4162 +f 4130/4130 4129/4129 4195/4195 +f 4196/4196 4164/4164 4130/4130 +f 4127/4127 4164/4164 4192/4192 +f 36663/39971 4197/4197 36205/39071 +f 36661/39972 36663/39971 36205/39071 +f 36207/39072 36205/39071 4197/4197 +f 36208/39073 4165/4165 4103/4103 +f 36206/39074 36208/39073 4103/4103 +f 4198/4198 36664/39973 36665/39974 +f 4199/4199 4131/4131 4165/4165 +f 4132/4132 4131/4131 4200/4200 +f 4134/4134 4132/4132 4133/4133 +f 4166/4166 4133/4133 4201/4201 +f 4202/4202 4167/4167 4135/4135 +f 4139/4139 4203/4203 4135/4135 +f 4104/4104 4169/4169 4168/4168 +f 4136/4136 4204/4204 4169/4169 +f 4205/4205 4137/4137 4167/4167 +f 4137/4137 4206/4206 4136/4136 +f 4107/4107 4170/4170 4207/4207 +f 4138/4138 4166/4166 4208/4208 +f 4208/4208 4170/4170 4138/4138 +f 4171/4171 4107/4107 4207/4207 +f 4171/4171 4209/4209 4109/4109 +f 4108/4108 4210/4210 4172/4172 +f 4139/4139 4172/4172 4211/4211 +f 4212/4212 4108/4108 4173/4173 +f 4140/4140 4213/4213 4173/4173 +f 4174/4174 4213/4213 4140/4140 +f 4214/4214 4174/4174 4109/4109 +f 4141/4141 4215/4215 4142/4142 +f 4168/4168 4141/4141 4147/4147 +f 4175/4175 4142/4142 4215/4215 +f 4175/4175 4176/4176 4111/4111 +f 4143/4143 4216/4216 4144/4144 +f 4143/4143 4176/4176 4216/4216 +f 4217/4217 4146/4146 4144/4144 +f 4177/4177 4146/4146 4218/4218 +f 4148/4148 4145/4145 4177/4177 +f 4148/4148 4219/4219 4149/4149 +f 4220/4220 4151/4151 4149/4149 +f 4151/4151 4220/4220 4178/4178 +f 4117/4117 4178/4178 4179/4179 +f 4179/4179 4180/4180 4118/4118 +f 4221/4221 4153/4153 4180/4180 +f 4153/4153 4222/4222 4120/4120 +f 4154/4154 4181/4181 4223/4223 +f 4224/4224 4181/4181 4120/4120 +f 4182/4182 4225/4225 4155/4155 +f 4183/4183 4155/4155 4225/4225 +f 4183/4183 4226/4226 4156/4156 +f 4156/4156 4226/4226 4184/4184 +f 4157/4157 4185/4185 4182/4182 +f 4154/4154 4223/4223 4185/4185 +f 4158/4158 4186/4186 4227/4227 +f 4123/4123 4228/4228 4186/4186 +f 4123/4123 4187/4187 4228/4228 +f 4187/4187 4159/4159 4229/4229 +f 4159/4159 4184/4184 4229/4229 +f 4230/4230 4160/4160 4158/4158 +f 4188/4188 4189/4189 4125/4125 +f 4230/4230 4188/4188 4160/4160 +f 4189/4189 4231/4231 4161/4161 +f 4161/4161 4232/4232 4190/4190 +f 4126/4126 4190/4190 4191/4191 +f 4191/4191 4233/4233 4129/4129 +f 4192/4192 4194/4194 4162/4162 +f 4128/4128 4194/4194 4193/4193 +f 4233/4233 4195/4195 4129/4129 +f 4196/4196 4130/4130 4195/4195 +f 4164/4164 4196/4196 4234/4234 +f 4194/4194 4192/4192 4164/4164 +f 36666/39975 4235/4235 4197/4197 +f 36663/39976 36666/39975 4197/4197 +f 36207/39075 4197/4197 4236/4236 +f 36209/39076 36207/39075 4236/4236 +f 36209/39077 4236/4236 4165/4165 +f 36208/39078 36209/39077 4165/4165 +f 36667/39977 4237/4237 4198/4198 +f 36665/39978 36667/39977 4198/4198 +f 36664/39979 4198/4198 4235/4235 +f 36666/39980 36664/39979 4235/4235 +f 4237/4237 36667/39981 36668/39982 +f 4199/4199 4238/4238 4131/4131 +f 4165/4165 4239/4239 4199/4199 +f 4240/4240 4200/4200 4131/4131 +f 4132/4132 4200/4200 4133/4133 +f 4201/4201 4208/4208 4166/4166 +f 4133/4133 4200/4200 4201/4201 +f 4135/4135 4241/4241 4202/4202 +f 4202/4202 4242/4242 4167/4167 +f 4203/4203 4243/4243 4135/4135 +f 4244/4244 4203/4203 4139/4139 +f 4168/4168 4169/4169 4245/4245 +f 4204/4204 4246/4246 4169/4169 +f 4204/4204 4136/4136 4206/4206 +f 4137/4137 4205/4205 4206/4206 +f 4167/4167 4242/4242 4205/4205 +f 4207/4207 4170/4170 4238/4238 +f 4170/4170 4208/4208 4240/4240 +f 4171/4171 4207/4207 4247/4247 +f 4109/4109 4209/4209 4214/4214 +f 4209/4209 4171/4171 4248/4248 +f 4108/4108 4212/4212 4210/4210 +f 4172/4172 4210/4210 4249/4249 +f 4211/4211 4172/4172 4249/4249 +f 4211/4211 4244/4244 4139/4139 +f 4173/4173 4213/4213 4212/4212 +f 4213/4213 4174/4174 4250/4250 +f 4250/4250 4174/4174 4214/4214 +f 4215/4215 4141/4141 4168/4168 +f 4245/4245 4175/4175 4215/4215 +f 4176/4176 4175/4175 4245/4245 +f 4216/4216 4251/4251 4144/4144 +f 4216/4216 4176/4176 4252/4252 +f 4146/4146 4217/4217 4253/4253 +f 4217/4217 4144/4144 4251/4251 +f 4253/4253 4218/4218 4146/4146 +f 4177/4177 4218/4218 4254/4254 +f 4148/4148 4177/4177 4254/4254 +f 4219/4219 4148/4148 4255/4255 +f 4219/4219 4256/4256 4149/4149 +f 4220/4220 4149/4149 4256/4256 +f 4257/4257 4178/4178 4220/4220 +f 4178/4178 4258/4258 4179/4179 +f 4221/4221 4180/4180 4179/4179 +f 4222/4222 4153/4153 4221/4221 +f 4259/4259 4120/4120 4222/4222 +f 4181/4181 4260/4260 4223/4223 +f 4181/4181 4224/4224 4261/4261 +f 4259/4259 4224/4224 4120/4120 +f 4182/4182 4260/4260 4225/4225 +f 4225/4225 4226/4226 4183/4183 +f 4226/4226 4262/4262 4184/4184 +f 4260/4260 4182/4182 4185/4185 +f 4260/4260 4185/4185 4223/4223 +f 4263/4263 4158/4158 4227/4227 +f 4228/4228 4227/4227 4186/4186 +f 4187/4187 4264/4264 4228/4228 +f 4229/4229 4265/4265 4187/4187 +f 4229/4229 4184/4184 4266/4266 +f 4263/4263 4230/4230 4158/4158 +f 4189/4189 4188/4188 4230/4230 +f 4263/4263 4231/4231 4189/4189 +f 4231/4231 4232/4232 4161/4161 +f 4190/4190 4232/4232 4191/4191 +f 4194/4194 4267/4267 4193/4193 +f 4195/4195 4233/4233 4268/4268 +f 4195/4195 4268/4268 4196/4196 +f 4234/4234 4196/4196 4269/4269 +f 4270/4270 4164/4164 4234/4234 +f 4194/4194 4164/4164 4270/4270 +f 4271/4271 4197/4197 4235/4235 +f 4236/4236 4197/4197 4271/4271 +f 4239/4239 4165/4165 4236/4236 +f 4198/4198 4237/4237 4272/4272 +f 4273/4273 4235/4235 4198/4198 +f 36669/39983 36210/39079 4237/4237 +f 36668/39984 36669/39983 4237/4237 +f 4238/4238 4199/4199 4247/4247 +f 4131/4131 4238/4238 4240/4240 +f 4274/4274 4199/4199 4239/4239 +f 4201/4201 4200/4200 4240/4240 +f 4201/4201 4240/4240 4208/4208 +f 4135/4135 4243/4243 4241/4241 +f 4202/4202 4241/4241 4242/4242 +f 4243/4243 4203/4203 4275/4275 +f 4244/4244 4276/4276 4203/4203 +f 4169/4169 4246/4246 4245/4245 +f 4245/4245 4215/4215 4168/4168 +f 4246/4246 4204/4204 4277/4277 +f 4204/4204 4206/4206 4278/4278 +f 4279/4279 4206/4206 4205/4205 +f 4280/4280 4205/4205 4242/4242 +f 4207/4207 4238/4238 4247/4247 +f 4170/4170 4240/4240 4238/4238 +f 4248/4248 4171/4171 4247/4247 +f 4281/4281 4214/4214 4209/4209 +f 4274/4274 4209/4209 4248/4248 +f 4210/4210 4212/4212 4249/4249 +f 4282/4282 4211/4211 4249/4249 +f 4244/4244 4211/4211 4283/4283 +f 4212/4212 4213/4213 4250/4250 +f 4214/4214 4284/4284 4250/4250 +f 4285/4285 4176/4176 4245/4245 +f 4251/4251 4216/4216 4286/4286 +f 4252/4252 4277/4277 4216/4216 +f 4176/4176 4285/4285 4252/4252 +f 4217/4217 4287/4287 4253/4253 +f 4287/4287 4217/4217 4251/4251 +f 4218/4218 4288/4288 4254/4254 +f 4254/4254 4255/4255 4148/4148 +f 4255/4255 4289/4289 4219/4219 +f 4289/4289 4256/4256 4219/4219 +f 4256/4256 4290/4290 4220/4220 +f 4290/4290 4257/4257 4220/4220 +f 4291/4291 4178/4178 4257/4257 +f 4179/4179 4258/4258 4292/4292 +f 4178/4178 4291/4291 4258/4258 +f 4179/4179 4292/4292 4221/4221 +f 4293/4293 4222/4222 4221/4221 +f 4259/4259 4222/4222 4294/4294 +f 4260/4260 4181/4181 4261/4261 +f 4261/4261 4224/4224 4295/4295 +f 4259/4259 4295/4295 4224/4224 +f 4225/4225 4260/4260 4296/4296 +f 4296/4296 4226/4226 4225/4225 +f 4184/4184 4262/4262 4297/4297 +f 4298/4298 4262/4262 4226/4226 +f 4299/4299 4263/4263 4227/4227 +f 4227/4227 4228/4228 4300/4300 +f 4264/4264 4187/4187 4301/4301 +f 4228/4228 4264/4264 4302/4302 +f 4187/4187 4265/4265 4301/4301 +f 4303/4303 4265/4265 4229/4229 +f 4229/4229 4266/4266 4303/4303 +f 4297/4297 4266/4266 4184/4184 +f 4189/4189 4230/4230 4263/4263 +f 4263/4263 4299/4299 4231/4231 +f 4270/4270 4267/4267 4194/4194 +f 4196/4196 4268/4268 4304/4304 +f 4269/4269 4196/4196 4304/4304 +f 4270/4270 4234/4234 4269/4269 +f 4235/4235 4305/4305 4271/4271 +f 4284/4284 4236/4236 4271/4271 +f 4284/4284 4239/4239 4236/4236 +f 36211/39080 4272/4272 4237/4237 +f 36212/39081 36211/39080 4237/4237 +f 4272/4272 4306/4306 4198/4198 +f 4235/4235 4273/4273 4305/4305 +f 4198/4198 4307/4307 4273/4273 +f 4237/4237 36210/39082 36212/39083 +f 4247/4247 4199/4199 4274/4274 +f 4281/4281 4274/4274 4239/4239 +f 4308/4308 4241/4241 4243/4243 +f 4242/4242 4241/4241 4309/4309 +f 4275/4275 4203/4203 4310/4310 +f 4275/4275 4311/4311 4243/4243 +f 4203/4203 4276/4276 4310/4310 +f 4276/4276 4244/4244 4283/4283 +f 4245/4245 4246/4246 4285/4285 +f 4277/4277 4204/4204 4278/4278 +f 4285/4285 4246/4246 4277/4277 +f 4278/4278 4206/4206 4312/4312 +f 4279/4279 4312/4312 4206/4206 +f 4205/4205 4313/4313 4279/4279 +f 4309/4309 4280/4280 4242/4242 +f 4280/4280 4313/4313 4205/4205 +f 4248/4248 4247/4247 4274/4274 +f 4239/4239 4214/4214 4281/4281 +f 4209/4209 4274/4274 4281/4281 +f 4212/4212 4314/4314 4249/4249 +f 4282/4282 4283/4283 4211/4211 +f 4282/4282 4249/4249 4314/4314 +f 4212/4212 4250/4250 4314/4314 +f 4239/4239 4284/4284 4214/4214 +f 4314/4314 4250/4250 4284/4284 +f 4216/4216 4315/4315 4286/4286 +f 4316/4316 4251/4251 4286/4286 +f 4285/4285 4277/4277 4252/4252 +f 4315/4315 4216/4216 4277/4277 +f 4253/4253 4287/4287 4317/4317 +f 4251/4251 4316/4316 4287/4287 +f 4288/4288 4318/4318 4254/4254 +f 4318/4318 4255/4255 4254/4254 +f 4318/4318 4289/4289 4255/4255 +f 4289/4289 4290/4290 4256/4256 +f 4257/4257 4290/4290 4319/4319 +f 4291/4291 4257/4257 4320/4320 +f 4292/4292 4258/4258 4321/4321 +f 4291/4291 4322/4322 4258/4258 +f 4221/4221 4292/4292 4321/4321 +f 4321/4321 4293/4293 4221/4221 +f 4293/4293 4323/4323 4222/4222 +f 4294/4294 4295/4295 4259/4259 +f 4324/4324 4294/4294 4222/4222 +f 4260/4260 4261/4261 4325/4325 +f 4295/4295 4325/4325 4261/4261 +f 4296/4296 4260/4260 4325/4325 +f 4226/4226 4296/4296 4326/4326 +f 4327/4327 4297/4297 4262/4262 +f 4298/4298 4327/4327 4262/4262 +f 4326/4326 4298/4298 4226/4226 +f 4299/4299 4227/4227 4300/4300 +f 4302/4302 4300/4300 4228/4228 +f 4328/4328 4264/4264 4301/4301 +f 4264/4264 4329/4329 4302/4302 +f 4301/4301 4265/4265 4328/4328 +f 4303/4303 4328/4328 4265/4265 +f 4266/4266 4328/4328 4303/4303 +f 4266/4266 4297/4297 4328/4328 +f 4269/4269 4267/4267 4270/4270 +f 4269/4269 4304/4304 4330/4330 +f 4305/4305 4284/4284 4271/4271 +f 36213/39084 4331/4331 4272/4272 +f 36211/39085 36213/39084 4272/4272 +f 4272/4272 4332/4332 4306/4306 +f 4306/4306 4307/4307 4198/4198 +f 4282/4282 4305/4305 4273/4273 +f 4273/4273 4307/4307 4282/4282 +f 4243/4243 4333/4333 4308/4308 +f 4334/4334 4241/4241 4308/4308 +f 4241/4241 4335/4335 4309/4309 +f 4336/4336 4275/4275 4310/4310 +f 4311/4311 4275/4275 4336/4336 +f 4243/4243 4311/4311 4333/4333 +f 4276/4276 4307/4307 4310/4310 +f 4276/4276 4283/4283 4307/4307 +f 4277/4277 4278/4278 4315/4315 +f 4312/4312 4337/4337 4278/4278 +f 4279/4279 4338/4338 4312/4312 +f 4339/4339 4279/4279 4313/4313 +f 4280/4280 4309/4309 4340/4340 +f 4313/4313 4280/4280 4341/4341 +f 4283/4283 4282/4282 4307/4307 +f 4305/4305 4282/4282 4314/4314 +f 4314/4314 4284/4284 4305/4305 +f 4315/4315 4342/4342 4286/4286 +f 4343/4343 4316/4316 4286/4286 +f 4253/4253 4317/4317 4344/4344 +f 4287/4287 4345/4345 4317/4317 +f 4345/4345 4287/4287 4316/4316 +f 4346/4346 4318/4318 4288/4288 +f 4347/4347 4289/4289 4318/4318 +f 4289/4289 4347/4347 4290/4290 +f 4290/4290 4348/4348 4319/4319 +f 4319/4319 4320/4320 4257/4257 +f 4320/4320 4349/4349 4291/4291 +f 4321/4321 4258/4258 4322/4322 +f 4291/4291 4350/4350 4322/4322 +f 4321/4321 4322/4322 4293/4293 +f 4323/4323 4324/4324 4222/4222 +f 4351/4351 4323/4323 4293/4293 +f 4294/4294 4352/4352 4295/4295 +f 4353/4353 4294/4294 4324/4324 +f 4295/4295 4352/4352 4325/4325 +f 4354/4354 4296/4296 4325/4325 +f 4326/4326 4296/4296 4355/4355 +f 4356/4356 4297/4297 4327/4327 +f 4357/4357 4327/4327 4298/4298 +f 4326/4326 4358/4358 4298/4298 +f 4300/4300 4302/4302 4359/4359 +f 4356/4356 4264/4264 4328/4328 +f 4360/4360 4329/4329 4264/4264 +f 4302/4302 4329/4329 4361/4361 +f 4328/4328 4297/4297 4356/4356 +f 4267/4267 4269/4269 4362/4362 +f 4330/4330 4362/4362 4269/4269 +f 36214/39086 4363/4363 4331/4331 +f 36213/39087 36214/39086 4331/4331 +f 4332/4332 4272/4272 4331/4331 +f 4364/4364 4306/4306 4332/4332 +f 4306/4306 4364/4364 4307/4307 +f 4363/4363 36214/39088 36215/39089 +f 4308/4308 4333/4333 4334/4334 +f 4365/4365 4241/4241 4334/4334 +f 4365/4365 4335/4335 4241/4241 +f 4309/4309 4335/4335 4340/4340 +f 4307/4307 4336/4336 4310/4310 +f 4364/4364 4311/4311 4336/4336 +f 4333/4333 4311/4311 4366/4366 +f 4315/4315 4278/4278 4337/4337 +f 4312/4312 4367/4367 4337/4337 +f 4312/4312 4338/4338 4367/4367 +f 4338/4338 4279/4279 4368/4368 +f 4368/4368 4279/4279 4339/4339 +f 4313/4313 4369/4369 4339/4339 +f 4280/4280 4340/4340 4341/4341 +f 4341/4341 4370/4370 4313/4313 +f 4337/4337 4342/4342 4315/4315 +f 4342/4342 4343/4343 4286/4286 +f 4371/4371 4316/4316 4343/4343 +f 4344/4344 4317/4317 4372/4372 +f 4345/4345 4373/4373 4317/4317 +f 4345/4345 4316/4316 4374/4374 +f 4346/4346 4347/4347 4318/4318 +f 4347/4347 4375/4375 4290/4290 +f 4290/4290 4375/4375 4348/4348 +f 4348/4348 4376/4376 4319/4319 +f 4349/4349 4320/4320 4319/4319 +f 4349/4349 4377/4377 4291/4291 +f 4291/4291 4377/4377 4350/4350 +f 4322/4322 4350/4350 4351/4351 +f 4322/4322 4351/4351 4293/4293 +f 4378/4378 4324/4324 4323/4323 +f 4323/4323 4351/4351 4378/4378 +f 4294/4294 4379/4379 4352/4352 +f 4379/4379 4294/4294 4353/4353 +f 4353/4353 4324/4324 4378/4378 +f 4325/4325 4352/4352 4354/4354 +f 4354/4354 4355/4355 4296/4296 +f 4326/4326 4355/4355 4380/4380 +f 4327/4327 4357/4357 4356/4356 +f 4381/4381 4357/4357 4298/4298 +f 4358/4358 4381/4381 4298/4298 +f 4358/4358 4326/4326 4382/4382 +f 4361/4361 4359/4359 4302/4302 +f 4383/4383 4300/4300 4359/4359 +f 4360/4360 4264/4264 4356/4356 +f 4329/4329 4360/4360 4356/4356 +f 4329/4329 4384/4384 4361/4361 +f 4330/4330 4267/4267 4362/4362 +f 4331/4331 4363/4363 4385/4385 +f 4331/4331 4385/4385 4332/4332 +f 4311/4311 4364/4364 4332/4332 +f 4307/4307 4364/4364 4336/4336 +f 4363/4363 36215/39090 36216/39091 +f 4386/4386 4334/4334 4333/4333 +f 4387/4387 4365/4365 4334/4334 +f 4365/4365 4388/4388 4335/4335 +f 4335/4335 4389/4389 4340/4340 +f 4366/4366 4311/4311 4332/4332 +f 4333/4333 4366/4366 4386/4386 +f 4367/4367 4342/4342 4337/4337 +f 4367/4367 4338/4338 4390/4390 +f 4368/4368 4391/4391 4338/4338 +f 4392/4392 4368/4368 4339/4339 +f 4313/4313 4393/4393 4369/4369 +f 4339/4339 4369/4369 4394/4394 +f 4395/4395 4341/4341 4340/4340 +f 4395/4395 4370/4370 4341/4341 +f 4393/4393 4313/4313 4370/4370 +f 4396/4396 4343/4343 4342/4342 +f 4397/4397 4316/4316 4371/4371 +f 4343/4343 4396/4396 4371/4371 +f 4373/4373 4372/4372 4317/4317 +f 4372/4372 4398/4398 4344/4344 +f 4373/4373 4345/4345 4374/4374 +f 4374/4374 4316/4316 4397/4397 +f 4375/4375 4347/4347 4346/4346 +f 4375/4375 4399/4399 4348/4348 +f 4348/4348 4399/4399 4376/4376 +f 4349/4349 4319/4319 4376/4376 +f 4377/4377 4349/4349 4400/4400 +f 4401/4401 4350/4350 4377/4377 +f 4350/4350 4401/4401 4351/4351 +f 4401/4401 4378/4378 4351/4351 +f 4379/4379 4402/4402 4352/4352 +f 4402/4402 4379/4379 4353/4353 +f 4353/4353 4378/4378 4402/4402 +f 4352/4352 4403/4403 4354/4354 +f 4355/4355 4354/4354 4403/4403 +f 4404/4404 4380/4380 4355/4355 +f 4326/4326 4380/4380 4382/4382 +f 4357/4357 4405/4405 4356/4356 +f 4406/4406 4357/4357 4381/4381 +f 4381/4381 4358/4358 4407/4407 +f 4408/4408 4358/4358 4382/4382 +f 4409/4409 4359/4359 4361/4361 +f 4383/4383 4359/4359 4409/4409 +f 4356/4356 4405/4405 4329/4329 +f 4329/4329 4405/4405 4384/4384 +f 4384/4384 4410/4410 4361/4361 +f 4411/4411 4385/4385 4363/4363 +f 4366/4366 4332/4332 4385/4385 +f 36217/39092 4411/4411 4363/4363 +f 36216/39093 36217/39092 4363/4363 +f 4386/4386 4412/4412 4334/4334 +f 4387/4387 4388/4388 4365/4365 +f 4413/4413 4387/4387 4334/4334 +f 4335/4335 4388/4388 4389/4389 +f 4340/4340 4389/4389 4395/4395 +f 4386/4386 4366/4366 4385/4385 +f 4390/4390 4342/4342 4367/4367 +f 4390/4390 4338/4338 4391/4391 +f 4368/4368 4414/4414 4391/4391 +f 4414/4414 4368/4368 4392/4392 +f 4415/4415 4392/4392 4339/4339 +f 4416/4416 4369/4369 4393/4393 +f 4416/4416 4394/4394 4369/4369 +f 4417/4417 4339/4339 4394/4394 +f 4393/4393 4370/4370 4395/4395 +f 4396/4396 4342/4342 4390/4390 +f 4397/4397 4371/4371 4418/4418 +f 4418/4418 4371/4371 4396/4396 +f 4373/4373 4419/4419 4372/4372 +f 4420/4420 4398/4398 4372/4372 +f 4419/4419 4373/4373 4374/4374 +f 4419/4419 4374/4374 4397/4397 +f 4399/4399 4375/4375 4421/4421 +f 4399/4399 4422/4422 4376/4376 +f 4400/4400 4349/4349 4376/4376 +f 4423/4423 4377/4377 4400/4400 +f 4377/4377 4424/4424 4401/4401 +f 4402/4402 4378/4378 4401/4401 +f 4403/4403 4352/4352 4402/4402 +f 4355/4355 4403/4403 4425/4425 +f 4355/4355 4425/4425 4404/4404 +f 4426/4426 4380/4380 4404/4404 +f 4382/4382 4380/4380 4427/4427 +f 4405/4405 4357/4357 4406/4406 +f 4381/4381 4428/4428 4406/4406 +f 4381/4381 4407/4407 4428/4428 +f 4407/4407 4358/4358 4429/4429 +f 4358/4358 4408/4408 4429/4429 +f 4382/4382 4430/4430 4408/4408 +f 4410/4410 4409/4409 4361/4361 +f 4383/4383 4409/4409 4431/4431 +f 4432/4432 4384/4384 4405/4405 +f 4433/4433 4410/4410 4384/4384 +f 4434/4434 4385/4385 4411/4411 +f 4435/4435 36218/39094 36219/39095 +f 36218/39096 4435/4435 4411/4411 +f 36217/39097 36218/39096 4411/4411 +f 4412/4412 4386/4386 4385/4385 +f 4334/4334 4412/4412 4413/4413 +f 4436/4436 4388/4388 4387/4387 +f 4413/4413 4437/4437 4387/4387 +f 4438/4438 4389/4389 4388/4388 +f 4389/4389 4438/4438 4395/4395 +f 4396/4396 4390/4390 4391/4391 +f 4391/4391 4414/4414 4439/4439 +f 4414/4414 4392/4392 4440/4440 +f 4441/4441 4392/4392 4415/4415 +f 4417/4417 4415/4415 4339/4339 +f 4416/4416 4393/4393 4442/4442 +f 4416/4416 4443/4443 4394/4394 +f 4417/4417 4394/4394 4444/4444 +f 4445/4445 4393/4393 4395/4395 +f 4419/4419 4397/4397 4418/4418 +f 4396/4396 4391/4391 4418/4418 +f 4419/4419 4446/4446 4372/4372 +f 4398/4398 4420/4420 4447/4447 +f 4420/4420 4372/4372 4448/4448 +f 4399/4399 4421/4421 4449/4449 +f 4400/4400 4376/4376 4422/4422 +f 4450/4450 4422/4422 4399/4399 +f 4423/4423 4424/4424 4377/4377 +f 4422/4422 4423/4423 4400/4400 +f 4424/4424 4451/4451 4401/4401 +f 4452/4452 4402/4402 4401/4401 +f 4402/4402 4452/4452 4403/4403 +f 4403/4403 4452/4452 4425/4425 +f 4453/4453 4404/4404 4425/4425 +f 4404/4404 4454/4454 4426/4426 +f 4426/4426 4427/4427 4380/4380 +f 4427/4427 4455/4455 4382/4382 +f 4432/4432 4405/4405 4406/4406 +f 4428/4428 4456/4456 4406/4406 +f 4407/4407 4457/4457 4428/4428 +f 4457/4457 4407/4407 4429/4429 +f 4429/4429 4408/4408 4458/4458 +f 4430/4430 4382/4382 4459/4459 +f 4430/4430 4458/4458 4408/4408 +f 4410/4410 4460/4460 4409/4409 +f 4431/4431 4409/4409 4460/4460 +f 4432/4432 4433/4433 4384/4384 +f 4433/4433 4461/4461 4410/4410 +f 4412/4412 4385/4385 4434/4434 +f 4434/4434 4411/4411 4435/4435 +f 36220/39098 4462/4462 4435/4435 +f 36219/39099 36220/39098 4435/4435 +f 4434/4434 4413/4413 4412/4412 +f 4387/4387 4437/4437 4436/4436 +f 4436/4436 4463/4463 4388/4388 +f 4434/4434 4437/4437 4413/4413 +f 4388/4388 4463/4463 4438/4438 +f 4395/4395 4438/4438 4464/4464 +f 4391/4391 4439/4439 4418/4418 +f 4414/4414 4465/4465 4439/4439 +f 4392/4392 4441/4441 4440/4440 +f 4466/4466 4414/4414 4440/4440 +f 4441/4441 4415/4415 4467/4467 +f 4417/4417 4467/4467 4415/4415 +f 4442/4442 4393/4393 4445/4445 +f 4468/4468 4416/4416 4442/4442 +f 4443/4443 4444/4444 4394/4394 +f 4443/4443 4416/4416 4468/4468 +f 4444/4444 4469/4469 4417/4417 +f 4395/4395 4470/4470 4445/4445 +f 4418/4418 4446/4446 4419/4419 +f 4372/4372 4446/4446 4448/4448 +f 4420/4420 4448/4448 4447/4447 +f 4471/4471 4398/4398 4447/4447 +f 4449/4449 4450/4450 4399/4399 +f 4450/4450 4423/4423 4422/4422 +f 4424/4424 4423/4423 4472/4472 +f 4424/4424 4472/4472 4451/4451 +f 4452/4452 4401/4401 4451/4451 +f 4452/4452 4451/4451 4425/4425 +f 4473/4473 4453/4453 4425/4425 +f 4453/4453 4454/4454 4404/4404 +f 4454/4454 4474/4474 4426/4426 +f 4474/4474 4427/4427 4426/4426 +f 4475/4475 4382/4382 4455/4455 +f 4427/4427 4476/4476 4455/4455 +f 4477/4477 4432/4432 4406/4406 +f 4456/4456 4428/4428 4478/4478 +f 4406/4406 4456/4456 4479/4479 +f 4457/4457 4478/4478 4428/4428 +f 4429/4429 4480/4480 4457/4457 +f 4480/4480 4429/4429 4458/4458 +f 4382/4382 4481/4481 4459/4459 +f 4482/4482 4430/4430 4459/4459 +f 4430/4430 4482/4482 4458/4458 +f 4483/4483 4460/4460 4410/4410 +f 4460/4460 4484/4484 4431/4431 +f 4485/4485 4433/4433 4432/4432 +f 4461/4461 4433/4433 4486/4486 +f 4461/4461 4487/4487 4410/4410 +f 4435/4435 4488/4488 4434/4434 +f 4435/4435 4462/4462 4489/4489 +f 4462/4462 36220/39100 36221/39101 +f 4436/4436 4437/4437 4434/4434 +f 4436/4436 4490/4490 4463/4463 +f 4438/4438 4463/4463 4491/4491 +f 4464/4464 4438/4438 4491/4491 +f 4464/4464 4470/4470 4395/4395 +f 4418/4418 4439/4439 4446/4446 +f 4465/4465 4446/4446 4439/4439 +f 4465/4465 4414/4414 4466/4466 +f 4492/4492 4440/4440 4441/4441 +f 4466/4466 4440/4440 4493/4493 +f 4441/4441 4467/4467 4494/4494 +f 4495/4495 4467/4467 4417/4417 +f 4445/4445 4496/4496 4442/4442 +f 4497/4497 4468/4468 4442/4442 +f 4498/4498 4444/4444 4443/4443 +f 4468/4468 4499/4499 4443/4443 +f 4417/4417 4469/4469 4500/4500 +f 4501/4501 4469/4469 4444/4444 +f 4445/4445 4470/4470 4502/4502 +f 4448/4448 4446/4446 4503/4503 +f 4447/4447 4448/4448 4504/4504 +f 4471/4471 4447/4447 4504/4504 +f 4449/4449 4505/4505 4450/4450 +f 4423/4423 4450/4450 4505/4505 +f 4472/4472 4423/4423 4505/4505 +f 4451/4451 4472/4472 4506/4506 +f 4473/4473 4425/4425 4451/4451 +f 4473/4473 4507/4507 4453/4453 +f 4453/4453 4508/4508 4454/4454 +f 4454/4454 4509/4509 4474/4474 +f 4474/4474 4510/4510 4427/4427 +f 4481/4481 4382/4382 4475/4475 +f 4481/4481 4475/4475 4455/4455 +f 4510/4510 4476/4476 4427/4427 +f 4476/4476 4481/4481 4455/4455 +f 4477/4477 4485/4485 4432/4432 +f 4479/4479 4477/4477 4406/4406 +f 4478/4478 4511/4511 4456/4456 +f 4456/4456 4511/4511 4479/4479 +f 4512/4512 4478/4478 4457/4457 +f 4457/4457 4480/4480 4513/4513 +f 4513/4513 4480/4480 4458/4458 +f 4481/4481 4514/4514 4459/4459 +f 4514/4514 4482/4482 4459/4459 +f 4515/4515 4458/4458 4482/4482 +f 4483/4483 4410/4410 4487/4487 +f 4516/4516 4460/4460 4483/4483 +f 4484/4484 4460/4460 4517/4517 +f 4518/4518 4433/4433 4485/4485 +f 4461/4461 4486/4486 4519/4519 +f 4433/4433 4518/4518 4486/4486 +f 4461/4461 4520/4520 4487/4487 +f 4521/4521 36222/39102 36223/39103 +f 4434/4434 4488/4488 4436/4436 +f 4489/4489 4488/4488 4435/4435 +f 4489/4489 4462/4462 4490/4490 +f 36224/39104 4522/4522 4462/4462 +f 36221/39105 36224/39104 4462/4462 +f 4522/4522 36224/39106 36225/39107 +f 4490/4490 4436/4436 4488/4488 +f 4491/4491 4463/4463 4490/4490 +f 4523/4523 4464/4464 4491/4491 +f 4464/4464 4523/4523 4470/4470 +f 4503/4503 4446/4446 4465/4465 +f 4503/4503 4465/4465 4466/4466 +f 4492/4492 4441/4441 4494/4494 +f 4493/4493 4440/4440 4492/4492 +f 4493/4493 4524/4524 4466/4466 +f 4494/4494 4467/4467 4525/4525 +f 4417/4417 4500/4500 4495/4495 +f 4467/4467 4495/4495 4526/4526 +f 4502/4502 4496/4496 4445/4445 +f 4496/4496 4527/4527 4442/4442 +f 4468/4468 4497/4497 4499/4499 +f 4497/4497 4442/4442 4527/4527 +f 4499/4499 4498/4498 4443/4443 +f 4498/4498 4501/4501 4444/4444 +f 4528/4528 4500/4500 4469/4469 +f 4501/4501 4529/4529 4469/4469 +f 4530/4530 4502/4502 4470/4470 +f 4503/4503 4524/4524 4448/4448 +f 4531/4531 4504/4504 4448/4448 +f 4471/4471 4504/4504 4532/4532 +f 4506/4506 4473/4473 4451/4451 +f 4506/4506 4507/4507 4473/4473 +f 4453/4453 4507/4507 4508/4508 +f 4508/4508 4509/4509 4454/4454 +f 4474/4474 4509/4509 4533/4533 +f 4474/4474 4533/4533 4510/4510 +f 4476/4476 4510/4510 4534/4534 +f 4481/4481 4476/4476 4514/4514 +f 4479/4479 4485/4485 4477/4477 +f 4511/4511 4478/4478 4535/4535 +f 4536/4536 4479/4479 4511/4511 +f 4537/4537 4512/4512 4457/4457 +f 4535/4535 4478/4478 4512/4512 +f 4457/4457 4513/4513 4538/4538 +f 4515/4515 4513/4513 4458/4458 +f 4514/4514 4539/4539 4482/4482 +f 4482/4482 4539/4539 4515/4515 +f 4540/4540 4483/4483 4487/4487 +f 4516/4516 4517/4517 4460/4460 +f 4540/4540 4516/4516 4483/4483 +f 4518/4518 4485/4485 4536/4536 +f 4518/4518 4519/4519 4486/4486 +f 4520/4520 4461/4461 4519/4519 +f 4487/4487 4520/4520 4540/4540 +f 36222/39108 4521/4521 4522/4522 +f 36225/39109 36222/39108 4522/4522 +f 4521/4521 36223/39110 36226/39111 +f 4490/4490 4488/4488 4489/4489 +f 4541/4541 4490/4490 4462/4462 +f 4462/4462 4522/4522 4541/4541 +f 4490/4490 4541/4541 4491/4491 +f 4491/4491 4541/4541 4523/4523 +f 4530/4530 4470/4470 4523/4523 +f 4524/4524 4503/4503 4466/4466 +f 4493/4493 4492/4492 4494/4494 +f 4542/4542 4524/4524 4493/4493 +f 4467/4467 4526/4526 4525/4525 +f 4525/4525 4542/4542 4494/4494 +f 4500/4500 4543/4543 4495/4495 +f 4544/4544 4526/4526 4495/4495 +f 4496/4496 4502/4502 4545/4545 +f 4527/4527 4496/4496 4545/4545 +f 4497/4497 4546/4546 4499/4499 +f 4527/4527 4545/4545 4497/4497 +f 4547/4547 4498/4498 4499/4499 +f 4548/4548 4501/4501 4498/4498 +f 4549/4549 4528/4528 4469/4469 +f 4528/4528 4550/4550 4500/4500 +f 4529/4529 4501/4501 4551/4551 +f 4529/4529 4549/4549 4469/4469 +f 4502/4502 4530/4530 4552/4552 +f 4531/4531 4448/4448 4524/4524 +f 4504/4504 4531/4531 4553/4553 +f 4553/4553 4532/4532 4504/4504 +f 4554/4554 4471/4471 4532/4532 +f 4509/4509 4508/4508 4555/4555 +f 4533/4533 4509/4509 4555/4555 +f 4533/4533 4556/4556 4510/4510 +f 4476/4476 4534/4534 4557/4557 +f 4510/4510 4556/4556 4534/4534 +f 4476/4476 4558/4558 4514/4514 +f 4536/4536 4485/4485 4479/4479 +f 4535/4535 4559/4559 4511/4511 +f 4511/4511 4560/4560 4536/4536 +f 4457/4457 4561/4561 4537/4537 +f 4537/4537 4562/4562 4512/4512 +f 4563/4563 4535/4535 4512/4512 +f 4513/4513 4564/4564 4538/4538 +f 4457/4457 4538/4538 4561/4561 +f 4565/4565 4513/4513 4515/4515 +f 4539/4539 4514/4514 4566/4566 +f 4539/4539 4565/4565 4515/4515 +f 4517/4517 4516/4516 4567/4567 +f 4516/4516 4540/4540 4568/4568 +f 4536/4536 4569/4569 4518/4518 +f 4518/4518 4569/4569 4519/4519 +f 4520/4520 4519/4519 4570/4570 +f 4570/4570 4540/4540 4520/4520 +f 4521/4521 4571/4571 4522/4522 +f 36227/39112 4571/4571 4521/4521 +f 36226/39113 36227/39112 4521/4521 +f 4541/4541 4522/4522 4571/4571 +f 4530/4530 4523/4523 4541/4541 +f 4542/4542 4493/4493 4494/4494 +f 4531/4531 4524/4524 4542/4542 +f 4572/4572 4525/4525 4526/4526 +f 4542/4542 4525/4525 4573/4573 +f 4543/4543 4500/4500 4550/4550 +f 4495/4495 4543/4543 4544/4544 +f 4526/4526 4544/4544 4572/4572 +f 4502/4502 4574/4574 4545/4545 +f 4497/4497 4575/4575 4546/4546 +f 4499/4499 4546/4546 4576/4576 +f 4545/4545 4575/4575 4497/4497 +f 4576/4576 4547/4547 4499/4499 +f 4498/4498 4547/4547 4577/4577 +f 4501/4501 4548/4548 4551/4551 +f 4548/4548 4498/4498 4577/4577 +f 4549/4549 4578/4578 4528/4528 +f 4528/4528 4579/4579 4550/4550 +f 4529/4529 4551/4551 4580/4580 +f 4581/4581 4549/4549 4529/4529 +f 4574/4574 4502/4502 4552/4552 +f 4530/4530 4571/4571 4552/4552 +f 4582/4582 4553/4553 4531/4531 +f 4583/4583 4532/4532 4553/4553 +f 4532/4532 4583/4583 4554/4554 +f 4555/4555 4508/4508 4584/4584 +f 4533/4533 4555/4555 4585/4585 +f 4533/4533 4585/4585 4556/4556 +f 4534/4534 4586/4586 4557/4557 +f 4476/4476 4557/4557 4558/4558 +f 4586/4586 4534/4534 4556/4556 +f 4587/4587 4514/4514 4558/4558 +f 4535/4535 4588/4588 4559/4559 +f 4559/4559 4560/4560 4511/4511 +f 4536/4536 4560/4560 4569/4569 +f 4562/4562 4537/4537 4561/4561 +f 4589/4589 4512/4512 4562/4562 +f 4512/4512 4589/4589 4563/4563 +f 4563/4563 4588/4588 4535/4535 +f 4564/4564 4513/4513 4590/4590 +f 4564/4564 4591/4591 4538/4538 +f 4591/4591 4561/4561 4538/4538 +f 4565/4565 4590/4590 4513/4513 +f 4587/4587 4566/4566 4514/4514 +f 4566/4566 4592/4592 4539/4539 +f 4539/4539 4592/4592 4565/4565 +f 4568/4568 4567/4567 4516/4516 +f 4540/4540 4593/4593 4568/4568 +f 4594/4594 4519/4519 4569/4569 +f 4570/4570 4519/4519 4594/4594 +f 4540/4540 4570/4570 4593/4593 +f 4595/4595 36228/39114 36229/39115 +f 36230/39116 4596/4596 4571/4571 +f 36227/39117 36230/39116 4571/4571 +f 4530/4530 4541/4541 4571/4571 +f 4597/4597 4531/4531 4542/4542 +f 4572/4572 4573/4573 4525/4525 +f 4597/4597 4542/4542 4573/4573 +f 4550/4550 4598/4598 4543/4543 +f 4543/4543 4599/4599 4544/4544 +f 4544/4544 4600/4600 4572/4572 +f 4574/4574 4601/4601 4545/4545 +f 4575/4575 4602/4602 4546/4546 +f 4603/4603 4576/4576 4546/4546 +f 4601/4601 4575/4575 4545/4545 +f 4547/4547 4576/4576 4604/4604 +f 4577/4577 4547/4547 4604/4604 +f 4605/4605 4551/4551 4548/4548 +f 4548/4548 4577/4577 4606/4606 +f 4578/4578 4549/4549 4607/4607 +f 4608/4608 4528/4528 4578/4578 +f 4579/4579 4598/4598 4550/4550 +f 4579/4579 4528/4528 4609/4609 +f 4551/4551 4605/4605 4580/4580 +f 4610/4610 4529/4529 4580/4580 +f 4529/4529 4610/4610 4581/4581 +f 4549/4549 4581/4581 4611/4611 +f 4612/4612 4574/4574 4552/4552 +f 4596/4596 4552/4552 4571/4571 +f 4613/4613 4582/4582 4531/4531 +f 4583/4583 4553/4553 4582/4582 +f 4614/4614 4554/4554 4583/4583 +f 4584/4584 4615/4615 4555/4555 +f 4585/4585 4555/4555 4616/4616 +f 4585/4585 4616/4616 4556/4556 +f 4557/4557 4586/4586 4587/4587 +f 4587/4587 4558/4558 4557/4557 +f 4556/4556 4616/4616 4586/4586 +f 4559/4559 4588/4588 4617/4617 +f 4559/4559 4618/4618 4560/4560 +f 4569/4569 4560/4560 4617/4617 +f 4561/4561 4619/4619 4562/4562 +f 4619/4619 4589/4589 4562/4562 +f 4563/4563 4589/4589 4620/4620 +f 4588/4588 4563/4563 4621/4621 +f 4564/4564 4590/4590 4622/4622 +f 4591/4591 4564/4564 4623/4623 +f 4591/4591 4619/4619 4561/4561 +f 4592/4592 4590/4590 4565/4565 +f 4624/4624 4566/4566 4587/4587 +f 4592/4592 4566/4566 4625/4625 +f 4568/4568 4626/4626 4567/4567 +f 4568/4568 4593/4593 4627/4627 +f 4617/4617 4594/4594 4569/4569 +f 4628/4628 4570/4570 4594/4594 +f 4570/4570 4628/4628 4593/4593 +f 4629/4629 36231/39118 36232/39119 +f 36231/39120 4629/4629 4595/4595 +f 36229/39121 36231/39120 4595/4595 +f 36228/39122 4595/4595 4596/4596 +f 36230/39123 36228/39122 4596/4596 +f 4597/4597 4613/4613 4531/4531 +f 4573/4573 4572/4572 4613/4613 +f 4573/4573 4613/4613 4597/4597 +f 4599/4599 4543/4543 4598/4598 +f 4544/4544 4599/4599 4600/4600 +f 4630/4630 4572/4572 4600/4600 +f 4601/4601 4574/4574 4631/4631 +f 4632/4632 4602/4602 4575/4575 +f 4602/4602 4603/4603 4546/4546 +f 4603/4603 4633/4633 4576/4576 +f 4601/4601 4631/4631 4575/4575 +f 4604/4604 4576/4576 4633/4633 +f 4634/4634 4577/4577 4604/4604 +f 4548/4548 4635/4635 4605/4605 +f 4635/4635 4548/4548 4606/4606 +f 4577/4577 4634/4634 4606/4606 +f 4607/4607 4549/4549 4636/4636 +f 4578/4578 4607/4607 4637/4637 +f 4608/4608 4578/4578 4637/4637 +f 4609/4609 4528/4528 4608/4608 +f 4598/4598 4579/4579 4638/4638 +f 4579/4579 4609/4609 4639/4639 +f 4605/4605 4640/4640 4580/4580 +f 4640/4640 4610/4610 4580/4580 +f 4610/4610 4641/4641 4581/4581 +f 4611/4611 4636/4636 4549/4549 +f 4581/4581 4642/4642 4611/4611 +f 4574/4574 4612/4612 4631/4631 +f 4612/4612 4552/4552 4596/4596 +f 4582/4582 4613/4613 4643/4643 +f 4582/4582 4644/4644 4583/4583 +f 4644/4644 4614/4614 4583/4583 +f 4555/4555 4615/4615 4645/4645 +f 4646/4646 4615/4615 4584/4584 +f 4645/4645 4616/4616 4555/4555 +f 4586/4586 4647/4647 4587/4587 +f 4586/4586 4616/4616 4648/4648 +f 4621/4621 4617/4617 4588/4588 +f 4617/4617 4618/4618 4559/4559 +f 4617/4617 4560/4560 4618/4618 +f 4620/4620 4589/4589 4619/4619 +f 4621/4621 4563/4563 4620/4620 +f 4622/4622 4590/4590 4592/4592 +f 4622/4622 4623/4623 4564/4564 +f 4591/4591 4623/4623 4619/4619 +f 4624/4624 4587/4587 4647/4647 +f 4624/4624 4649/4649 4566/4566 +f 4622/4622 4592/4592 4625/4625 +f 4625/4625 4566/4566 4650/4650 +f 4651/4651 4567/4567 4626/4626 +f 4652/4652 4626/4626 4568/4568 +f 4628/4628 4627/4627 4593/4593 +f 4652/4652 4568/4568 4627/4627 +f 4594/4594 4617/4617 4653/4653 +f 4594/4594 4654/4654 4628/4628 +f 36233/39124 4632/4632 4629/4629 +f 36232/39125 36233/39124 4629/4629 +f 4595/4595 4629/4629 4631/4631 +f 4595/4595 4612/4612 4596/4596 +f 4572/4572 4655/4655 4613/4613 +f 4600/4600 4599/4599 4598/4598 +f 4572/4572 4630/4630 4655/4655 +f 4630/4630 4600/4600 4656/4656 +f 4602/4602 4632/4632 4657/4657 +f 4575/4575 4629/4629 4632/4632 +f 4603/4603 4602/4602 4658/4658 +f 4633/4633 4603/4603 4658/4658 +f 4631/4631 4629/4629 4575/4575 +f 4604/4604 4633/4633 4659/4659 +f 4634/4634 4604/4604 4659/4659 +f 4606/4606 4605/4605 4635/4635 +f 4634/4634 4660/4660 4606/4606 +f 4607/4607 4636/4636 4661/4661 +f 4637/4637 4607/4607 4661/4661 +f 4662/4662 4608/4608 4637/4637 +f 4662/4662 4609/4609 4608/4608 +f 4639/4639 4638/4638 4579/4579 +f 4638/4638 4663/4663 4598/4598 +f 4609/4609 4662/4662 4639/4639 +f 4640/4640 4605/4605 4664/4664 +f 4665/4665 4610/4610 4640/4640 +f 4581/4581 4641/4641 4642/4642 +f 4665/4665 4641/4641 4610/4610 +f 4636/4636 4611/4611 4666/4666 +f 4611/4611 4642/4642 4667/4667 +f 4631/4631 4612/4612 4595/4595 +f 4613/4613 4655/4655 4643/4643 +f 4668/4668 4582/4582 4643/4643 +f 4644/4644 4582/4582 4668/4668 +f 4615/4615 4669/4669 4645/4645 +f 4646/4646 4670/4670 4615/4615 +f 4671/4671 4646/4646 4584/4584 +f 4616/4616 4645/4645 4672/4672 +f 4648/4648 4647/4647 4586/4586 +f 4616/4616 4672/4672 4648/4648 +f 4621/4621 4653/4653 4617/4617 +f 4623/4623 4620/4620 4619/4619 +f 4620/4620 4673/4673 4621/4621 +f 4623/4623 4622/4622 4673/4673 +f 4674/4674 4624/4624 4647/4647 +f 4650/4650 4566/4566 4649/4649 +f 4675/4675 4649/4649 4624/4624 +f 4622/4622 4625/4625 4673/4673 +f 4650/4650 4676/4676 4625/4625 +f 4651/4651 4677/4677 4567/4567 +f 4626/4626 4678/4678 4651/4651 +f 4678/4678 4626/4626 4652/4652 +f 4679/4679 4627/4627 4628/4628 +f 4627/4627 4680/4680 4652/4652 +f 4653/4653 4654/4654 4594/4594 +f 4628/4628 4654/4654 4679/4679 +f 36234/39126 4657/4657 4632/4632 +f 36233/39127 36234/39126 4632/4632 +f 4657/4657 36234/39128 36235/39129 +f 4598/4598 4656/4656 4600/4600 +f 4655/4655 4630/4630 4668/4668 +f 4602/4602 4657/4657 4681/4681 +f 4658/4658 4602/4602 4681/4681 +f 4659/4659 4633/4633 4658/4658 +f 4659/4659 4682/4682 4634/4634 +f 4606/4606 4660/4660 4605/4605 +f 4634/4634 4682/4682 4660/4660 +f 4666/4666 4661/4661 4636/4636 +f 4661/4661 4683/4683 4637/4637 +f 4637/4637 4684/4684 4662/4662 +f 4685/4685 4638/4638 4639/4639 +f 4686/4686 4663/4663 4638/4638 +f 4663/4663 4656/4656 4598/4598 +f 4687/4687 4639/4639 4662/4662 +f 36236/39130 4640/4640 4664/4664 +f 36237/39131 36236/39130 4664/4664 +f 36238/39132 4664/4664 4605/4605 +f 36239/39133 36238/39132 4605/4605 +f 4665/4665 4640/4640 4688/4688 +f 4665/4665 4642/4642 4641/4641 +f 4611/4611 4667/4667 4666/4666 +f 4688/4688 4667/4667 4642/4642 +f 4643/4643 4655/4655 4668/4668 +f 4689/4689 4645/4645 4669/4669 +f 4669/4669 4615/4615 4690/4690 +f 4690/4690 4615/4615 4670/4670 +f 4646/4646 4691/4691 4670/4670 +f 4691/4691 4646/4646 4671/4671 +f 4645/4645 4692/4692 4672/4672 +f 4647/4647 4648/4648 4693/4693 +f 4648/4648 4672/4672 4694/4694 +f 4621/4621 4654/4654 4653/4653 +f 4623/4623 4673/4673 4620/4620 +f 4621/4621 4673/4673 4695/4695 +f 4647/4647 4693/4693 4674/4674 +f 4674/4674 4675/4675 4624/4624 +f 4696/4696 4650/4650 4649/4649 +f 4696/4696 4649/4649 4675/4675 +f 4625/4625 4676/4676 4673/4673 +f 4676/4676 4650/4650 4697/4697 +f 4677/4677 4651/4651 4678/4678 +f 4677/4677 4698/4698 4567/4567 +f 4652/4652 4699/4699 4678/4678 +f 4680/4680 4627/4627 4679/4679 +f 4700/4700 4652/4652 4680/4680 +f 4654/4654 4701/4701 4679/4679 +f 36240/39134 4681/4681 4657/4657 +f 36235/39135 36240/39134 4657/4657 +f 4682/4682 36241/39136 36242/39137 +f 4682/4682 36242/39138 36243/39139 +f 4659/4659 4658/4658 4681/4681 +f 36241/39140 4682/4682 4659/4659 +f 36244/39141 36241/39140 4659/4659 +f 4702/4702 4605/4605 4660/4660 +f 4682/4682 4702/4702 4660/4660 +f 4666/4666 4703/4703 4661/4661 +f 4661/4661 4703/4703 4683/4683 +f 4683/4683 4684/4684 4637/4637 +f 4704/4704 4662/4662 4684/4684 +f 4705/4705 4638/4638 4685/4685 +f 4685/4685 4639/4639 4687/4687 +f 4705/4705 4686/4686 4638/4638 +f 4706/4706 4663/4663 4686/4686 +f 4687/4687 4662/4662 4704/4704 +f 4664/4664 36238/39142 36237/39143 +f 36245/39144 4688/4688 4640/4640 +f 36236/39145 36245/39144 4640/4640 +f 36239/39146 4605/4605 4702/4702 +f 36246/39147 36239/39146 4702/4702 +f 4642/4642 4665/4665 4688/4688 +f 36247/39148 4666/4666 4667/4667 +f 36248/39149 36247/39148 4667/4667 +f 36249/39150 4667/4667 4688/4688 +f 36250/39151 36249/39150 4688/4688 +f 4707/4707 4645/4645 4689/4689 +f 4669/4669 4690/4690 4689/4689 +f 4691/4691 4690/4690 4670/4670 +f 4692/4692 4645/4645 4708/4708 +f 4692/4692 4709/4709 4672/4672 +f 4710/4710 4693/4693 4648/4648 +f 4709/4709 4694/4694 4672/4672 +f 4694/4694 4711/4711 4648/4648 +f 4654/4654 4621/4621 4695/4695 +f 4676/4676 4695/4695 4673/4673 +f 4674/4674 4693/4693 4712/4712 +f 4712/4712 4675/4675 4674/4674 +f 4697/4697 4650/4650 4696/4696 +f 4712/4712 4696/4696 4675/4675 +f 4713/4713 4676/4676 4697/4697 +f 4678/4678 4714/4714 4677/4677 +f 4715/4715 4698/4698 4677/4677 +f 4678/4678 4699/4699 4716/4716 +f 4699/4699 4652/4652 4700/4700 +f 4717/4717 4680/4680 4679/4679 +f 4680/4680 4717/4717 4700/4700 +f 4701/4701 4718/4718 4679/4679 +f 4695/4695 4701/4701 4654/4654 +f 36244/39152 4659/4659 4681/4681 +f 36240/39153 36244/39152 4681/4681 +f 4702/4702 36251/39154 36246/39155 +f 36251/39156 4702/4702 4682/4682 +f 36243/39157 36251/39156 4682/4682 +f 36252/39158 4703/4703 4666/4666 +f 36247/39159 36252/39158 4666/4666 +f 4703/4703 4719/4719 4683/4683 +f 4683/4683 4719/4719 4684/4684 +f 4720/4720 4704/4704 4684/4684 +f 4685/4685 4721/4721 4705/4705 +f 4685/4685 4687/4687 4722/4722 +f 4706/4706 4686/4686 4705/4705 +f 4687/4687 4704/4704 4723/4723 +f 4688/4688 36245/39160 36250/39161 +f 4667/4667 36249/39162 36248/39163 +f 4724/4724 4645/4645 4707/4707 +f 4689/4689 4725/4725 4707/4707 +f 4689/4689 4690/4690 4725/4725 +f 4691/4691 4726/4726 4690/4690 +f 4724/4724 4708/4708 4645/4645 +f 4692/4692 4708/4708 4727/4727 +f 4728/4728 4709/4709 4692/4692 +f 4693/4693 4710/4710 4729/4729 +f 4711/4711 4710/4710 4648/4648 +f 4709/4709 4730/4730 4694/4694 +f 4711/4711 4694/4694 4731/4731 +f 4676/4676 4732/4732 4695/4695 +f 4712/4712 4693/4693 4729/4729 +f 4733/4733 4697/4697 4696/4696 +f 4733/4733 4696/4696 4712/4712 +f 4676/4676 4713/4713 4732/4732 +f 4713/4713 4697/4697 4734/4734 +f 4714/4714 4678/4678 4735/4735 +f 4714/4714 4715/4715 4677/4677 +f 4699/4699 4736/4736 4716/4716 +f 4678/4678 4716/4716 4737/4737 +f 4736/4736 4699/4699 4700/4700 +f 4718/4718 4717/4717 4679/4679 +f 4700/4700 4717/4717 4738/4738 +f 4701/4701 4739/4739 4718/4718 +f 4695/4695 4740/4740 4701/4701 +f 4703/4703 36252/39164 36253/39165 +f 36254/39166 4719/4719 4703/4703 +f 36253/39167 36254/39166 4703/4703 +f 36255/39168 4684/4684 4719/4719 +f 36256/39169 36255/39168 4719/4719 +f 36257/39170 4720/4720 4684/4684 +f 36255/39171 36257/39170 4684/4684 +f 4704/4704 4720/4720 4723/4723 +f 4741/4741 4705/4705 4721/4721 +f 4685/4685 4722/4722 4721/4721 +f 4722/4722 4687/4687 4742/4742 +f 4705/4705 4743/4743 4706/4706 +f 4742/4742 4687/4687 4723/4723 +f 4724/4724 4707/4707 4744/4744 +f 4725/4725 4745/4745 4707/4707 +f 4690/4690 4726/4726 4725/4725 +f 4746/4746 4726/4726 4691/4691 +f 4724/4724 4747/4747 4708/4708 +f 4728/4728 4692/4692 4727/4727 +f 4727/4727 4708/4708 4747/4747 +f 4709/4709 4728/4728 4748/4748 +f 4710/4710 4749/4749 4729/4729 +f 4710/4710 4711/4711 4750/4750 +f 4730/4730 4709/4709 4748/4748 +f 4751/4751 4694/4694 4730/4730 +f 4751/4751 4731/4731 4694/4694 +f 4731/4731 4750/4750 4711/4711 +f 4695/4695 4732/4732 4740/4740 +f 4752/4752 4712/4712 4729/4729 +f 4733/4733 4753/4753 4697/4697 +f 4754/4754 4733/4733 4712/4712 +f 4755/4755 4732/4732 4713/4713 +f 4734/4734 4755/4755 4713/4713 +f 4734/4734 4697/4697 4756/4756 +f 4735/4735 4678/4678 4737/4737 +f 4735/4735 4757/4757 4714/4714 +f 4757/4757 4715/4715 4714/4714 +f 4736/4736 4758/4758 4716/4716 +f 4716/4716 4759/4759 4737/4737 +f 4700/4700 4738/4738 4736/4736 +f 4718/4718 4738/4738 4717/4717 +f 4701/4701 4760/4760 4739/4739 +f 4739/4739 4761/4761 4718/4718 +f 4740/4740 4762/4762 4701/4701 +f 4719/4719 36254/39172 36258/39173 +f 4719/4719 36258/39174 36256/39175 +f 4720/4720 36257/39176 36259/39177 +f 4720/4720 4763/4763 4723/4723 +f 4741/4741 4764/4764 4705/4705 +f 4765/4765 4741/4741 4721/4721 +f 4766/4766 4721/4721 4722/4722 +f 4722/4722 4742/4742 4767/4767 +f 4743/4743 4705/4705 4764/4764 +f 4742/4742 4723/4723 4768/4768 +f 4707/4707 4745/4745 4744/4744 +f 4747/4747 4724/4724 4744/4744 +f 4769/4769 4745/4745 4725/4725 +f 4725/4725 4726/4726 4769/4769 +f 4770/4770 4746/4746 4691/4691 +f 4769/4769 4726/4726 4746/4746 +f 4747/4747 4728/4728 4727/4727 +f 4748/4748 4728/4728 4771/4771 +f 4749/4749 4710/4710 4772/4772 +f 4729/4729 4749/4749 4773/4773 +f 4710/4710 4750/4750 4772/4772 +f 4748/4748 4751/4751 4730/4730 +f 4774/4774 4731/4731 4751/4751 +f 4775/4775 4750/4750 4731/4731 +f 4732/4732 4776/4776 4740/4740 +f 4729/4729 4777/4777 4752/4752 +f 4752/4752 4754/4754 4712/4712 +f 4733/4733 4778/4778 4753/4753 +f 4779/4779 4697/4697 4753/4753 +f 4778/4778 4733/4733 4754/4754 +f 4780/4780 4732/4732 4755/4755 +f 4781/4781 4755/4755 4734/4734 +f 4756/4756 4697/4697 4779/4779 +f 4734/4734 4756/4756 4782/4782 +f 4737/4737 4783/4783 4735/4735 +f 4757/4757 4735/4735 4783/4783 +f 4758/4758 4736/4736 4784/4784 +f 4759/4759 4716/4716 4758/4758 +f 4785/4785 4737/4737 4759/4759 +f 4738/4738 4784/4784 4736/4736 +f 4761/4761 4738/4738 4718/4718 +f 4739/4739 4760/4760 4786/4786 +f 4701/4701 4787/4787 4760/4760 +f 4786/4786 4761/4761 4739/4739 +f 4701/4701 4762/4762 4787/4787 +f 4762/4762 4740/4740 4788/4788 +f 4720/4720 36259/39178 36260/39179 +f 4723/4723 4763/4763 4768/4768 +f 36261/39180 4763/4763 4720/4720 +f 36260/39181 36261/39180 4720/4720 +f 4764/4764 4741/4741 4789/4789 +f 4721/4721 4766/4766 4765/4765 +f 4741/4741 4765/4765 4790/4790 +f 4766/4766 4722/4722 4767/4767 +f 4768/4768 4767/4767 4742/4742 +f 4791/4791 4743/4743 4764/4764 +f 4745/4745 4792/4792 4744/4744 +f 4792/4792 4747/4747 4744/4744 +f 4793/4793 4745/4745 4769/4769 +f 4746/4746 4770/4770 4794/4794 +f 4769/4769 4746/4746 4795/4795 +f 4771/4771 4728/4728 4747/4747 +f 4771/4771 4796/4796 4748/4748 +f 4775/4775 4749/4749 4772/4772 +f 4797/4797 4773/4773 4749/4749 +f 4773/4773 4777/4777 4729/4729 +f 4772/4772 4750/4750 4775/4775 +f 4796/4796 4751/4751 4748/4748 +f 4774/4774 4775/4775 4731/4731 +f 4774/4774 4751/4751 4796/4796 +f 4776/4776 4788/4788 4740/4740 +f 4780/4780 4776/4776 4732/4732 +f 4752/4752 4777/4777 4798/4798 +f 4754/4754 4752/4752 4799/4799 +f 4800/4800 4753/4753 4778/4778 +f 4753/4753 4801/4801 4779/4779 +f 4754/4754 4802/4802 4778/4778 +f 4781/4781 4780/4780 4755/4755 +f 4781/4781 4734/4734 4803/4803 +f 4804/4804 4756/4756 4779/4779 +f 4782/4782 4756/4756 4804/4804 +f 4803/4803 4734/4734 4782/4782 +f 4805/4805 4783/4783 4737/4737 +f 4783/4783 4806/4806 4757/4757 +f 4784/4784 4807/4807 4758/4758 +f 4758/4758 4808/4808 4759/4759 +f 4737/4737 4785/4785 4809/4809 +f 4810/4810 4785/4785 4759/4759 +f 4784/4784 4738/4738 4761/4761 +f 4811/4811 4786/4786 4760/4760 +f 4811/4811 4760/4760 4787/4787 +f 4761/4761 4786/4786 4784/4784 +f 4787/4787 4762/4762 4788/4788 +f 36262/39182 4768/4768 4763/4763 +f 36263/39183 36262/39182 4763/4763 +f 4763/4763 36261/39184 36263/39185 +f 4741/4741 4812/4812 4789/4789 +f 4813/4813 4764/4764 4789/4789 +f 4765/4765 4766/4766 4814/4814 +f 4765/4765 4815/4815 4790/4790 +f 4741/4741 4790/4790 4812/4812 +f 4766/4766 4767/4767 4814/4814 +f 4816/4816 4767/4767 4768/4768 +f 4817/4817 4743/4743 4791/4791 +f 4764/4764 4813/4813 4791/4791 +f 4745/4745 4818/4818 4792/4792 +f 4771/4771 4747/4747 4792/4792 +f 4793/4793 4769/4769 4795/4795 +f 4818/4818 4745/4745 4793/4793 +f 4795/4795 4746/4746 4794/4794 +f 4819/4819 4794/4794 4770/4770 +f 4771/4771 4820/4820 4796/4796 +f 4749/4749 4775/4775 4821/4821 +f 4822/4822 4773/4773 4797/4797 +f 4749/4749 4821/4821 4797/4797 +f 4777/4777 4773/4773 4822/4822 +f 4775/4775 4774/4774 4796/4796 +f 4776/4776 4823/4823 4788/4788 +f 4780/4780 4823/4823 4776/4776 +f 4798/4798 4777/4777 4824/4824 +f 4798/4798 4799/4799 4752/4752 +f 4754/4754 4799/4799 4825/4825 +f 4753/4753 4800/4800 4826/4826 +f 4827/4827 4800/4800 4778/4778 +f 4801/4801 4753/4753 4826/4826 +f 4779/4779 4801/4801 4804/4804 +f 4754/4754 4825/4825 4802/4802 +f 4802/4802 4827/4827 4778/4778 +f 4781/4781 4828/4828 4780/4780 +f 4808/4808 4781/4781 4803/4803 +f 4782/4782 4804/4804 4829/4829 +f 4803/4803 4782/4782 4830/4830 +f 4805/4805 4737/4737 4809/4809 +f 4805/4805 4831/4831 4783/4783 +f 4783/4783 4831/4831 4806/4806 +f 4784/4784 4786/4786 4807/4807 +f 4758/4758 4807/4807 4832/4832 +f 4808/4808 4810/4810 4759/4759 +f 4808/4808 4758/4758 4828/4828 +f 4833/4833 4809/4809 4785/4785 +f 4785/4785 4810/4810 4834/4834 +f 4807/4807 4786/4786 4811/4811 +f 4787/4787 4835/4835 4811/4811 +f 4787/4787 4788/4788 4823/4823 +f 4768/4768 36262/39186 36264/39187 +f 4836/4836 4789/4789 4812/4812 +f 4813/4813 4789/4789 4837/4837 +f 4765/4765 4814/4814 4838/4838 +f 4815/4815 4765/4765 4838/4838 +f 4790/4790 4815/4815 4839/4839 +f 4840/4840 4812/4812 4790/4790 +f 4841/4841 4814/4814 4767/4767 +f 4767/4767 4816/4816 4841/4841 +f 36265/39188 4816/4816 4768/4768 +f 36266/39189 36265/39188 4768/4768 +f 4842/4842 4817/4817 4791/4791 +f 4813/4813 4843/4843 4791/4791 +f 4771/4771 4792/4792 4818/4818 +f 4795/4795 4844/4844 4793/4793 +f 4845/4845 4818/4818 4793/4793 +f 4819/4819 4795/4795 4794/4794 +f 4820/4820 4771/4771 4818/4818 +f 4846/4846 4796/4796 4820/4820 +f 4821/4821 4775/4775 4846/4846 +f 4822/4822 4797/4797 4847/4847 +f 4797/4797 4821/4821 4848/4848 +f 4777/4777 4822/4822 4824/4824 +f 4775/4775 4796/4796 4846/4846 +f 4823/4823 4780/4780 4828/4828 +f 4798/4798 4824/4824 4799/4799 +f 4825/4825 4799/4799 4849/4849 +f 4800/4800 4850/4850 4826/4826 +f 4827/4827 4851/4851 4800/4800 +f 4852/4852 4801/4801 4826/4826 +f 4801/4801 4853/4853 4804/4804 +f 4802/4802 4825/4825 4854/4854 +f 4802/4802 4855/4855 4827/4827 +f 4828/4828 4781/4781 4808/4808 +f 4810/4810 4808/4808 4803/4803 +f 4804/4804 4856/4856 4829/4829 +f 4782/4782 4829/4829 4830/4830 +f 4830/4830 4857/4857 4803/4803 +f 4809/4809 4831/4831 4805/4805 +f 4758/4758 4832/4832 4828/4828 +f 4811/4811 4832/4832 4807/4807 +f 4858/4858 4809/4809 4833/4833 +f 4785/4785 4859/4859 4833/4833 +f 4860/4860 4785/4785 4834/4834 +f 4834/4834 4810/4810 4861/4861 +f 4835/4835 4787/4787 4823/4823 +f 4835/4835 4828/4828 4811/4811 +f 4768/4768 36264/39190 36266/39191 +f 4789/4789 4836/4836 4862/4862 +f 4836/4836 4812/4812 4863/4863 +f 4862/4862 4837/4837 4789/4789 +f 4837/4837 4843/4843 4813/4813 +f 36267/39192 4838/4838 4814/4814 +f 36268/39193 36267/39192 4814/4814 +f 36269/39194 4815/4815 4838/4838 +f 36270/39195 36269/39194 4838/4838 +f 36271/39196 4839/4839 4815/4815 +f 36269/39197 36271/39196 4815/4815 +f 4839/4839 4840/4840 4790/4790 +f 4812/4812 4840/4840 4864/4864 +f 36268/39198 4814/4814 4841/4841 +f 36272/39199 36268/39198 4841/4841 +f 36273/39200 4841/4841 4816/4816 +f 36265/39201 36273/39200 4816/4816 +f 4843/4843 4842/4842 4791/4791 +f 4793/4793 4844/4844 4865/4865 +f 4819/4819 4844/4844 4795/4795 +f 4865/4865 4845/4845 4793/4793 +f 4845/4845 4820/4820 4818/4818 +f 4845/4845 4846/4846 4820/4820 +f 4866/4866 4821/4821 4846/4846 +f 4847/4847 4867/4867 4822/4822 +f 4868/4868 4847/4847 4797/4797 +f 4869/4869 4848/4848 4821/4821 +f 4868/4868 4797/4797 4848/4848 +f 4824/4824 4822/4822 4867/4867 +f 4828/4828 4835/4835 4823/4823 +f 4849/4849 4799/4799 4824/4824 +f 4849/4849 4870/4870 4825/4825 +f 4850/4850 4852/4852 4826/4826 +f 4851/4851 4850/4850 4800/4800 +f 4827/4827 4871/4871 4851/4851 +f 4801/4801 4852/4852 4872/4872 +f 4801/4801 4873/4873 4853/4853 +f 4856/4856 4804/4804 4853/4853 +f 4854/4854 4874/4874 4802/4802 +f 4870/4870 4854/4854 4825/4825 +f 4855/4855 4802/4802 4874/4874 +f 4827/4827 4855/4855 4871/4871 +f 4803/4803 4857/4857 4810/4810 +f 4856/4856 4875/4875 4829/4829 +f 4876/4876 4830/4830 4829/4829 +f 4861/4861 4857/4857 4830/4830 +f 4809/4809 4877/4877 4831/4831 +f 4811/4811 4828/4828 4832/4832 +f 4833/4833 4859/4859 4858/4858 +f 4809/4809 4858/4858 4877/4877 +f 4859/4859 4785/4785 4878/4878 +f 4878/4878 4785/4785 4860/4860 +f 4834/4834 4879/4879 4860/4860 +f 4861/4861 4810/4810 4857/4857 +f 4880/4880 4834/4834 4861/4861 +f 4862/4862 4836/4836 4881/4881 +f 4812/4812 4864/4864 4863/4863 +f 4836/4836 4863/4863 4881/4881 +f 4862/4862 4882/4882 4837/4837 +f 4883/4883 4843/4843 4837/4837 +f 4838/4838 36267/39202 36274/39203 +f 4838/4838 36274/39204 36270/39205 +f 4839/4839 36271/39206 36275/39207 +f 4839/4839 4884/4884 4840/4840 +f 4884/4884 4864/4864 4840/4840 +f 4841/4841 36273/39208 36272/39209 +f 4843/4843 4885/4885 4842/4842 +f 4865/4865 4844/4844 4886/4886 +f 4865/4865 4869/4869 4845/4845 +f 4866/4866 4846/4846 4845/4845 +f 4869/4869 4821/4821 4866/4866 +f 4847/4847 4887/4887 4867/4867 +f 4868/4868 4888/4888 4847/4847 +f 4869/4869 4889/4889 4848/4848 +f 4888/4888 4868/4868 4848/4848 +f 4867/4867 4887/4887 4824/4824 +f 4849/4849 4824/4824 4890/4890 +f 4870/4870 4849/4849 4890/4890 +f 4850/4850 4891/4891 4852/4852 +f 4850/4850 4851/4851 4892/4892 +f 4851/4851 4871/4871 4892/4892 +f 4852/4852 4891/4891 4872/4872 +f 4872/4872 4873/4873 4801/4801 +f 4853/4853 4873/4873 4893/4893 +f 4856/4856 4853/4853 4893/4893 +f 4894/4894 4874/4874 4854/4854 +f 4854/4854 4870/4870 4895/4895 +f 4896/4896 4855/4855 4874/4874 +f 4871/4871 4855/4855 4897/4897 +f 4875/4875 4856/4856 4893/4893 +f 4829/4829 4875/4875 4876/4876 +f 4898/4898 4830/4830 4876/4876 +f 4861/4861 4830/4830 4880/4880 +f 4899/4899 4858/4858 4859/4859 +f 4877/4877 4858/4858 4899/4899 +f 4878/4878 4900/4900 4859/4859 +f 4900/4900 4878/4878 4860/4860 +f 4879/4879 4901/4901 4860/4860 +f 4879/4879 4834/4834 4880/4880 +f 4881/4881 4902/4902 4862/4862 +f 4863/4863 4864/4864 4903/4903 +f 4881/4881 4863/4863 4903/4903 +f 4882/4882 4862/4862 4902/4902 +f 4904/4904 4837/4837 4882/4882 +f 4885/4885 4843/4843 4883/4883 +f 4883/4883 4837/4837 4905/4905 +f 4839/4839 36275/39210 36276/39211 +f 36277/39212 4884/4884 4839/4839 +f 36278/39213 36277/39212 4839/4839 +f 36279/39214 4864/4864 4884/4884 +f 36280/39215 36279/39214 4884/4884 +f 4885/4885 4906/4906 4842/4842 +f 4907/4907 4865/4865 4886/4886 +f 4889/4889 4869/4869 4865/4865 +f 4869/4869 4866/4866 4845/4845 +f 4887/4887 4847/4847 4908/4908 +f 4847/4847 4888/4888 4908/4908 +f 4848/4848 4889/4889 4888/4888 +f 4909/4909 4824/4824 4887/4887 +f 4890/4890 4824/4824 4909/4909 +f 4870/4870 4890/4890 4910/4910 +f 4891/4891 4850/4850 4911/4911 +f 4892/4892 4911/4911 4850/4850 +f 4912/4912 4892/4892 4871/4871 +f 4891/4891 4911/4911 4872/4872 +f 4873/4873 4872/4872 4893/4893 +f 4894/4894 4854/4854 4913/4913 +f 4896/4896 4874/4874 4894/4894 +f 4854/4854 4895/4895 4913/4913 +f 4895/4895 4870/4870 4910/4910 +f 4897/4897 4855/4855 4896/4896 +f 4871/4871 4897/4897 4914/4914 +f 4893/4893 4915/4915 4875/4875 +f 4875/4875 4916/4916 4876/4876 +f 4898/4898 4876/4876 4917/4917 +f 4830/4830 4898/4898 4880/4880 +f 4900/4900 4899/4899 4859/4859 +f 4918/4918 4877/4877 4899/4899 +f 4919/4919 4900/4900 4860/4860 +f 4879/4879 4920/4920 4901/4901 +f 4860/4860 4901/4901 4919/4919 +f 4898/4898 4879/4879 4880/4880 +f 4902/4902 4881/4881 4921/4921 +f 36281/39216 4903/4903 4864/4864 +f 36282/39217 36281/39216 4864/4864 +f 36283/39218 4881/4881 4903/4903 +f 36284/39219 36283/39218 4903/4903 +f 4882/4882 4902/4902 4922/4922 +f 4837/4837 4904/4904 4905/4905 +f 4882/4882 4923/4923 4904/4904 +f 4906/4906 4885/4885 4883/4883 +f 4905/4905 4924/4924 4883/4883 +f 4839/4839 36276/39220 36278/39221 +f 4884/4884 36277/39222 36280/39223 +f 4864/4864 36279/39224 36282/39225 +f 4925/4925 4842/4842 4906/4906 +f 4907/4907 4926/4926 4865/4865 +f 4927/4927 4907/4907 4886/4886 +f 4865/4865 4888/4888 4889/4889 +f 4909/4909 4887/4887 4908/4908 +f 4908/4908 4888/4888 4865/4865 +f 4865/4865 4890/4890 4909/4909 +f 4910/4910 4890/4890 4865/4865 +f 4911/4911 4892/4892 4928/4928 +f 4914/4914 4912/4912 4871/4871 +f 4928/4928 4892/4892 4912/4912 +f 4872/4872 4911/4911 4928/4928 +f 4872/4872 4928/4928 4893/4893 +f 4913/4913 4929/4929 4894/4894 +f 4894/4894 4930/4930 4896/4896 +f 4913/4913 4895/4895 4931/4931 +f 4910/4910 4931/4931 4895/4895 +f 4897/4897 4896/4896 4930/4930 +f 4932/4932 4914/4914 4897/4897 +f 4933/4933 4915/4915 4893/4893 +f 4875/4875 4915/4915 4934/4934 +f 4875/4875 4934/4934 4916/4916 +f 4935/4935 4876/4876 4916/4916 +f 4876/4876 4935/4935 4917/4917 +f 4898/4898 4917/4917 4936/4936 +f 4900/4900 4918/4918 4899/4899 +f 4937/4937 4900/4900 4919/4919 +f 4938/4938 4920/4920 4879/4879 +f 4901/4901 4920/4920 4939/4939 +f 4919/4919 4901/4901 4940/4940 +f 4879/4879 4898/4898 4938/4938 +f 4941/4941 4902/4902 4921/4921 +f 36285/39226 4921/4921 4881/4881 +f 36283/39227 36285/39226 4881/4881 +f 4903/4903 36281/39228 36284/39229 +f 4923/4923 4882/4882 4922/4922 +f 4902/4902 4941/4941 4922/4922 +f 4904/4904 4942/4942 4905/4905 +f 4923/4923 4943/4943 4904/4904 +f 4906/4906 4883/4883 4924/4924 +f 4924/4924 4905/4905 4944/4944 +f 4906/4906 4945/4945 4925/4925 +f 4910/4910 4865/4865 4926/4926 +f 4907/4907 4946/4946 4926/4926 +f 4927/4927 4947/4947 4907/4907 +f 4865/4865 4909/4909 4908/4908 +f 4912/4912 4914/4914 4948/4948 +f 4912/4912 4933/4933 4928/4928 +f 4928/4928 4933/4933 4893/4893 +f 4930/4930 4894/4894 4929/4929 +f 4929/4929 4913/4913 4949/4949 +f 4950/4950 4913/4913 4931/4931 +f 4926/4926 4931/4931 4910/4910 +f 4932/4932 4897/4897 4930/4930 +f 4932/4932 4951/4951 4914/4914 +f 4933/4933 4952/4952 4915/4915 +f 4953/4953 4934/4934 4915/4915 +f 4934/4934 4954/4954 4916/4916 +f 4935/4935 4916/4916 4955/4955 +f 4935/4935 4936/4936 4917/4917 +f 4956/4956 4898/4898 4936/4936 +f 4918/4918 4900/4900 4957/4957 +f 4900/4900 4937/4937 4957/4957 +f 4958/4958 4937/4937 4919/4919 +f 4938/4938 4959/4959 4920/4920 +f 4920/4920 4960/4960 4939/4939 +f 4939/4939 4940/4940 4901/4901 +f 4919/4919 4940/4940 4958/4958 +f 4938/4938 4898/4898 4959/4959 +f 36286/39230 4941/4941 4921/4921 +f 36287/39231 36286/39230 4921/4921 +f 4921/4921 36285/39232 36288/39233 +f 4961/4961 4923/4923 4922/4922 +f 4941/4941 4962/4962 4922/4922 +f 4943/4943 4942/4942 4904/4904 +f 4942/4942 4963/4963 4905/4905 +f 4923/4923 4961/4961 4943/4943 +f 4906/4906 4924/4924 4964/4964 +f 4924/4924 4944/4944 4965/4965 +f 4963/4963 4944/4944 4905/4905 +f 4945/4945 4906/4906 4964/4964 +f 4926/4926 4946/4946 4966/4966 +f 4967/4967 4946/4946 4907/4907 +f 4968/4968 4947/4947 4927/4927 +f 4969/4969 4907/4907 4947/4947 +f 4951/4951 4948/4948 4914/4914 +f 4933/4933 4912/4912 4948/4948 +f 4970/4970 4930/4930 4929/4929 +f 4949/4949 4971/4971 4929/4929 +f 4950/4950 4949/4949 4913/4913 +f 4931/4931 4972/4972 4950/4950 +f 4926/4926 4973/4973 4931/4931 +f 4930/4930 4970/4970 4932/4932 +f 4970/4970 4951/4951 4932/4932 +f 4974/4974 4952/4952 4933/4933 +f 4952/4952 4975/4975 4915/4915 +f 4976/4976 4934/4934 4953/4953 +f 4953/4953 4915/4915 4977/4977 +f 4934/4934 4978/4978 4954/4954 +f 4954/4954 4955/4955 4916/4916 +f 4935/4935 4955/4955 4936/4936 +f 4979/4979 4956/4956 4936/4936 +f 4898/4898 4956/4956 4959/4959 +f 4918/4918 4957/4957 4980/4980 +f 4937/4937 4981/4981 4957/4957 +f 4937/4937 4958/4958 4982/4982 +f 4920/4920 4959/4959 4960/4960 +f 4960/4960 4940/4940 4939/4939 +f 4960/4960 4958/4958 4940/4940 +f 36289/39234 4962/4962 4941/4941 +f 36286/39235 36289/39234 4941/4941 +f 4921/4921 36288/39236 36287/39237 +f 4983/4983 4961/4961 4922/4922 +f 4962/4962 4983/4983 4922/4922 +f 4942/4942 4943/4943 4984/4984 +f 4942/4942 4985/4985 4963/4963 +f 4943/4943 4961/4961 4984/4984 +f 4924/4924 4986/4986 4964/4964 +f 4987/4987 4924/4924 4965/4965 +f 4988/4988 4965/4965 4944/4944 +f 4944/4944 4963/4963 4988/4988 +f 4964/4964 4989/4989 4945/4945 +f 4990/4990 4966/4966 4946/4946 +f 4966/4966 4973/4973 4926/4926 +f 4991/4991 4946/4946 4967/4967 +f 4907/4907 4969/4969 4967/4967 +f 4992/4992 4947/4947 4968/4968 +f 4969/4969 4947/4947 4992/4992 +f 4951/4951 4993/4993 4948/4948 +f 4974/4974 4933/4933 4948/4948 +f 4971/4971 4970/4970 4929/4929 +f 4949/4949 4950/4950 4971/4971 +f 4973/4973 4972/4972 4931/4931 +f 4950/4950 4972/4972 4994/4994 +f 4970/4970 4995/4995 4951/4951 +f 4974/4974 4996/4996 4952/4952 +f 4997/4997 4915/4915 4975/4975 +f 4996/4996 4975/4975 4952/4952 +f 4976/4976 4953/4953 4998/4998 +f 4934/4934 4976/4976 4978/4978 +f 4997/4997 4977/4977 4915/4915 +f 4977/4977 4999/4999 4953/4953 +f 4978/4978 5000/5000 4954/4954 +f 4955/4955 4954/4954 5000/5000 +f 4955/4955 5000/5000 4936/4936 +f 4979/4979 4936/4936 5001/5001 +f 4956/4956 4979/4979 5002/5002 +f 4956/4956 5003/5003 4959/4959 +f 4980/4980 4957/4957 4981/4981 +f 4981/4981 4937/4937 5004/5004 +f 4958/4958 5003/5003 4982/4982 +f 4937/4937 4982/4982 5005/5005 +f 4958/4958 4960/4960 4959/4959 +f 4962/4962 36289/39238 36290/39239 +f 36291/39240 4961/4961 4983/4983 +f 36292/39241 36291/39240 4983/4983 +f 36293/39242 4983/4983 4962/4962 +f 36290/39243 36293/39242 4962/4962 +f 5006/5006 4942/4942 4984/4984 +f 4985/4985 4942/4942 5006/5006 +f 5007/5007 4963/4963 4985/4985 +f 36294/39244 4984/4984 4961/4961 +f 36295/39245 36294/39244 4961/4961 +f 4986/4986 4989/4989 4964/4964 +f 4924/4924 5008/5008 4986/4986 +f 5008/5008 4924/4924 4987/4987 +f 4987/4987 4965/4965 5009/5009 +f 5009/5009 4965/4965 4988/4988 +f 4988/4988 4963/4963 5010/5010 +f 4945/4945 4989/4989 5011/5011 +f 4966/4966 4990/4990 5012/5012 +f 4991/4991 4990/4990 4946/4946 +f 4973/4973 4966/4966 5012/5012 +f 5013/5013 4991/4991 4967/4967 +f 4969/4969 5013/5013 4967/4967 +f 5013/5013 4969/4969 4992/4992 +f 4995/4995 4993/4993 4951/4951 +f 4993/4993 4974/4974 4948/4948 +f 4971/4971 4995/4995 4970/4970 +f 4950/4950 5014/5014 4971/4971 +f 4973/4973 5015/5015 4972/4972 +f 4950/4950 4994/4994 5014/5014 +f 4972/4972 5016/5016 4994/4994 +f 4993/4993 4996/4996 4974/4974 +f 4975/4975 5017/5017 4997/4997 +f 4975/4975 4996/4996 5018/5018 +f 4998/4998 4953/4953 4999/4999 +f 5019/5019 4976/4976 4998/4998 +f 4976/4976 5020/5020 4978/4978 +f 4997/4997 5017/5017 4977/4977 +f 4977/4977 5021/5021 4999/4999 +f 4979/4979 5001/5001 5022/5022 +f 5003/5003 4956/4956 5002/5002 +f 5023/5023 5002/5002 4979/4979 +f 5003/5003 4958/4958 4959/4959 +f 4981/4981 5024/5024 4980/4980 +f 5025/5025 4981/4981 5004/5004 +f 5005/5005 5004/5004 4937/4937 +f 5003/5003 5026/5026 4982/4982 +f 5026/5026 5005/5005 4982/4982 +f 4983/4983 36293/39246 36292/39247 +f 4961/4961 36291/39248 36295/39249 +f 4984/4984 5027/5027 5006/5006 +f 5006/5006 5028/5028 4985/4985 +f 5010/5010 4963/4963 5007/5007 +f 4985/4985 5028/5028 5007/5007 +f 4984/4984 36294/39250 36296/39251 +f 5029/5029 4989/4989 4986/4986 +f 4986/4986 5008/5008 5030/5030 +f 5008/5008 4987/4987 5031/5031 +f 4987/4987 5009/5009 5032/5032 +f 5033/5033 5009/5009 4988/4988 +f 4988/4988 5010/5010 5034/5034 +f 4989/4989 5029/5029 5011/5011 +f 5012/5012 4990/4990 5035/5035 +f 4990/4990 4991/4991 5036/5036 +f 5012/5012 5037/5037 4973/4973 +f 4993/4993 4995/4995 4996/4996 +f 5014/5014 4995/4995 4971/4971 +f 4973/4973 5037/5037 5015/5015 +f 4972/4972 5015/5015 5038/5038 +f 4995/4995 5014/5014 4994/4994 +f 5039/5039 5016/5016 4972/4972 +f 4994/4994 5016/5016 5040/5040 +f 4975/4975 5018/5018 5017/5017 +f 5018/5018 4996/4996 4995/4995 +f 4998/4998 4999/4999 5041/5041 +f 5019/5019 5020/5020 4976/4976 +f 5042/5042 5019/5019 4998/4998 +f 5021/5021 4977/4977 5017/5017 +f 4999/4999 5021/5021 5043/5043 +f 5044/5044 5022/5022 5001/5001 +f 5022/5022 5023/5023 4979/4979 +f 5003/5003 5002/5002 5026/5026 +f 5045/5045 5002/5002 5023/5023 +f 5025/5025 5024/5024 4981/4981 +f 5004/5004 5005/5005 5025/5025 +f 5005/5005 5026/5026 5046/5046 +f 5027/5027 5028/5028 5006/5006 +f 36297/39252 5027/5027 4984/4984 +f 36296/39253 36297/39252 4984/4984 +f 36298/39254 5010/5010 5007/5007 +f 36299/39255 36298/39254 5007/5007 +f 36300/39256 5007/5007 5028/5028 +f 36301/39257 36300/39256 5028/5028 +f 5030/5030 5029/5029 4986/4986 +f 5031/5031 5030/5030 5008/5008 +f 5047/5047 5031/5031 4987/4987 +f 5032/5032 5009/5009 5048/5048 +f 5032/5032 5049/5049 4987/4987 +f 5048/5048 5009/5009 5033/5033 +f 4988/4988 5050/5050 5033/5033 +f 36302/39258 5034/5034 5010/5010 +f 36298/39259 36302/39258 5010/5010 +f 5034/5034 5050/5050 4988/4988 +f 5011/5011 5029/5029 5051/5051 +f 5035/5035 4990/4990 5052/5052 +f 5035/5035 5037/5037 5012/5012 +f 5053/5053 4990/4990 5036/5036 +f 5037/5037 5054/5054 5015/5015 +f 5055/5055 4972/4972 5038/5038 +f 5015/5015 5056/5056 5038/5038 +f 4994/4994 5057/5057 4995/4995 +f 5039/5039 4972/4972 5055/5055 +f 5016/5016 5039/5039 5058/5058 +f 5040/5040 5016/5016 5059/5059 +f 5040/5040 5057/5057 4994/4994 +f 5060/5060 5017/5017 5018/5018 +f 4995/4995 5057/5057 5018/5018 +f 5043/5043 5041/5041 4999/4999 +f 5041/5041 5042/5042 4998/4998 +f 5061/5061 5020/5020 5019/5019 +f 5062/5062 5019/5019 5042/5042 +f 5021/5021 5017/5017 5060/5060 +f 5021/5021 5060/5060 5043/5043 +f 5044/5044 5063/5063 5022/5022 +f 5022/5022 5064/5064 5023/5023 +f 5026/5026 5002/5002 5045/5045 +f 5045/5045 5023/5023 5064/5064 +f 5065/5065 5024/5024 5025/5025 +f 5005/5005 5066/5066 5025/5025 +f 5046/5046 5026/5026 5045/5045 +f 5005/5005 5046/5046 5066/5066 +f 36303/39260 5028/5028 5027/5027 +f 36304/39261 36303/39260 5027/5027 +f 5027/5027 36297/39262 36304/39263 +f 5007/5007 36300/39264 36299/39265 +f 5028/5028 36303/39266 36301/39267 +f 5051/5051 5029/5029 5030/5030 +f 5067/5067 5030/5030 5031/5031 +f 5031/5031 5047/5047 5068/5068 +f 5049/5049 5047/5047 4987/4987 +f 5032/5032 5048/5048 5069/5069 +f 5049/5049 5032/5032 5070/5070 +f 36305/39268 5048/5048 5033/5033 +f 36306/39269 36305/39268 5033/5033 +f 36307/39270 5033/5033 5050/5050 +f 36308/39271 36307/39270 5050/5050 +f 5034/5034 36302/39272 36309/39273 +f 36310/39274 5050/5050 5034/5034 +f 36311/39275 36310/39274 5034/5034 +f 5035/5035 5052/5052 5071/5071 +f 5053/5053 5052/5052 4990/4990 +f 5035/5035 5071/5071 5037/5037 +f 5072/5072 5053/5053 5036/5036 +f 5015/5015 5054/5054 5056/5056 +f 5054/5054 5037/5037 5073/5073 +f 5038/5038 5074/5074 5055/5055 +f 5056/5056 5074/5074 5038/5038 +f 5055/5055 5075/5075 5039/5039 +f 5039/5039 5076/5076 5058/5058 +f 5016/5016 5058/5058 5059/5059 +f 5059/5059 5018/5018 5040/5040 +f 5040/5040 5018/5018 5057/5057 +f 5018/5018 5058/5058 5060/5060 +f 5077/5077 5041/5041 5043/5043 +f 5041/5041 5078/5078 5042/5042 +f 5061/5061 5019/5019 5079/5079 +f 5080/5080 5019/5019 5062/5062 +f 5078/5078 5062/5062 5042/5042 +f 5060/5060 5077/5077 5043/5043 +f 5022/5022 5063/5063 5064/5064 +f 5044/5044 5081/5081 5063/5063 +f 5045/5045 5064/5064 5082/5082 +f 5083/5083 5024/5024 5065/5065 +f 5066/5066 5065/5065 5025/5025 +f 5046/5046 5045/5045 5066/5066 +f 5051/5051 5030/5030 5067/5067 +f 5084/5084 5067/5067 5031/5031 +f 5068/5068 5047/5047 5085/5085 +f 5031/5031 5068/5068 5084/5084 +f 5085/5085 5047/5047 5049/5049 +f 36312/39276 5069/5069 5048/5048 +f 36305/39277 36312/39276 5048/5048 +f 5070/5070 5032/5032 5069/5069 +f 36313/39278 5049/5049 5070/5070 +f 36314/39279 36313/39278 5070/5070 +f 5033/5033 36315/39280 36306/39281 +f 5050/5050 36316/39282 36308/39283 +f 5033/5033 36307/39284 36315/39285 +f 5034/5034 36309/39286 36317/39287 +f 5050/5050 36310/39288 36316/39289 +f 5071/5071 5052/5052 5086/5086 +f 5053/5053 5086/5086 5052/5052 +f 5037/5037 5071/5071 5073/5073 +f 5053/5053 5072/5072 5087/5087 +f 5088/5088 5056/5056 5054/5054 +f 5054/5054 5073/5073 5088/5088 +f 5074/5074 5075/5075 5055/5055 +f 5089/5089 5074/5074 5056/5056 +f 5039/5039 5075/5075 5090/5090 +f 5076/5076 5077/5077 5058/5058 +f 5076/5076 5039/5039 5091/5091 +f 5058/5058 5018/5018 5059/5059 +f 5060/5060 5058/5058 5077/5077 +f 5077/5077 5078/5078 5041/5041 +f 5019/5019 5080/5080 5079/5079 +f 5079/5079 5092/5092 5061/5061 +f 5062/5062 5093/5093 5080/5080 +f 5094/5094 5062/5062 5078/5078 +f 5082/5082 5064/5064 5063/5063 +f 5063/5063 5081/5081 5083/5083 +f 5045/5045 5082/5082 5066/5066 +f 5065/5065 5063/5063 5083/5083 +f 5082/5082 5065/5065 5066/5066 +f 5095/5095 5067/5067 5084/5084 +f 5085/5085 5096/5096 5068/5068 +f 5068/5068 5097/5097 5084/5084 +f 36318/39290 5085/5085 5049/5049 +f 36313/39291 36318/39290 5049/5049 +f 5069/5069 36312/39292 36319/39293 +f 36320/39294 5070/5070 5069/5069 +f 36319/39295 36320/39294 5069/5069 +f 5070/5070 36321/39296 36314/39297 +f 5071/5071 5086/5086 5098/5098 +f 5086/5086 5053/5053 5087/5087 +f 5098/5098 5073/5073 5071/5071 +f 5099/5099 5087/5087 5072/5072 +f 5088/5088 5100/5100 5056/5056 +f 5088/5088 5073/5073 5101/5101 +f 5075/5075 5074/5074 5102/5102 +f 5103/5103 5074/5074 5089/5089 +f 5089/5089 5056/5056 5100/5100 +f 5039/5039 5090/5090 5091/5091 +f 5075/5075 5104/5104 5090/5090 +f 5078/5078 5077/5077 5076/5076 +f 5091/5091 5094/5094 5076/5076 +f 5105/5105 5079/5079 5080/5080 +f 5092/5092 5079/5079 5106/5106 +f 5093/5093 5107/5107 5080/5080 +f 5062/5062 5094/5094 5093/5093 +f 5094/5094 5078/5078 5076/5076 +f 5063/5063 5065/5065 5082/5082 +f 5067/5067 5095/5095 5108/5108 +f 5095/5095 5084/5084 5097/5097 +f 5109/5109 5096/5096 5085/5085 +f 5097/5097 5068/5068 5096/5096 +f 36322/39298 5110/5110 5085/5085 +f 36318/39299 36322/39298 5085/5085 +f 5070/5070 36320/39300 36321/39301 +f 5086/5086 5087/5087 5098/5098 +f 5098/5098 5087/5087 5073/5073 +f 5087/5087 5099/5099 5111/5111 +f 5100/5100 5088/5088 5101/5101 +f 5112/5112 5101/5101 5073/5073 +f 5074/5074 5103/5103 5102/5102 +f 5102/5102 5113/5113 5075/5075 +f 5114/5114 5103/5103 5089/5089 +f 5114/5114 5089/5089 5100/5100 +f 5090/5090 5115/5115 5091/5091 +f 5075/5075 5116/5116 5104/5104 +f 5104/5104 5117/5117 5090/5090 +f 5094/5094 5091/5091 5118/5118 +f 5107/5107 5105/5105 5080/5080 +f 5105/5105 5106/5106 5079/5079 +f 5106/5106 5119/5119 5092/5092 +f 5120/5120 5107/5107 5093/5093 +f 5121/5121 5093/5093 5094/5094 +f 5108/5108 5095/5095 5122/5122 +f 5095/5095 5097/5097 5122/5122 +f 5096/5096 5109/5109 5123/5123 +f 5110/5110 5109/5109 5085/5085 +f 5097/5097 5096/5096 5124/5124 +f 5110/5110 36322/39302 36323/39303 +f 5111/5111 5073/5073 5087/5087 +f 5125/5125 5111/5111 5099/5099 +f 5100/5100 5101/5101 5126/5126 +f 5127/5127 5101/5101 5112/5112 +f 5112/5112 5073/5073 5111/5111 +f 5103/5103 5128/5128 5102/5102 +f 5113/5113 5116/5116 5075/5075 +f 5128/5128 5113/5113 5102/5102 +f 5129/5129 5103/5103 5114/5114 +f 5114/5114 5100/5100 5126/5126 +f 5117/5117 5115/5115 5090/5090 +f 5091/5091 5115/5115 5118/5118 +f 5104/5104 5116/5116 5130/5130 +f 5117/5117 5104/5104 5131/5131 +f 5118/5118 5121/5121 5094/5094 +f 5107/5107 5132/5132 5105/5105 +f 5105/5105 5132/5132 5106/5106 +f 5132/5132 5119/5119 5106/5106 +f 5092/5092 5119/5119 5133/5133 +f 5107/5107 5120/5120 5132/5132 +f 5093/5093 5121/5121 5120/5120 +f 5122/5122 5134/5134 5108/5108 +f 5124/5124 5122/5122 5097/5097 +f 5123/5123 5109/5109 5135/5135 +f 5124/5124 5096/5096 5123/5123 +f 5109/5109 5110/5110 5136/5136 +f 36324/39304 5136/5136 5110/5110 +f 36323/39305 36324/39304 5110/5110 +f 5137/5137 5111/5111 5125/5125 +f 5099/5099 5138/5138 5125/5125 +f 5126/5126 5101/5101 5127/5127 +f 5137/5137 5127/5127 5112/5112 +f 5111/5111 5137/5137 5112/5112 +f 5103/5103 5129/5129 5128/5128 +f 5139/5139 5116/5116 5113/5113 +f 5139/5139 5113/5113 5128/5128 +f 5126/5126 5129/5129 5114/5114 +f 5140/5140 5115/5115 5117/5117 +f 5141/5141 5118/5118 5115/5115 +f 5116/5116 5142/5142 5130/5130 +f 5131/5131 5104/5104 5130/5130 +f 5131/5131 5143/5143 5117/5117 +f 5144/5144 5121/5121 5118/5118 +f 5119/5119 5132/5132 5145/5145 +f 5119/5119 5146/5146 5133/5133 +f 5120/5120 5147/5147 5132/5132 +f 5148/5148 5120/5120 5121/5121 +f 5124/5124 5134/5134 5122/5122 +f 5134/5134 5149/5149 5108/5108 +f 5135/5135 5109/5109 5136/5136 +f 5150/5150 5123/5123 5135/5135 +f 5150/5150 5124/5124 5123/5123 +f 5136/5136 36324/39306 36325/39307 +f 5125/5125 5151/5151 5137/5137 +f 5152/5152 5125/5125 5138/5138 +f 5126/5126 5127/5127 5153/5153 +f 5137/5137 5153/5153 5127/5127 +f 5154/5154 5128/5128 5129/5129 +f 5142/5142 5116/5116 5139/5139 +f 5139/5139 5128/5128 5155/5155 +f 5156/5156 5129/5129 5126/5126 +f 5157/5157 5115/5115 5140/5140 +f 5117/5117 5143/5143 5140/5140 +f 5118/5118 5141/5141 5144/5144 +f 5157/5157 5141/5141 5115/5115 +f 5130/5130 5142/5142 5158/5158 +f 5131/5131 5130/5130 5159/5159 +f 5131/5131 5160/5160 5143/5143 +f 5148/5148 5121/5121 5144/5144 +f 5147/5147 5145/5145 5132/5132 +f 5119/5119 5145/5145 5161/5161 +f 5146/5146 5162/5162 5133/5133 +f 5146/5146 5119/5119 5163/5163 +f 5147/5147 5120/5120 5164/5164 +f 5165/5165 5120/5120 5148/5148 +f 5166/5166 5134/5134 5124/5124 +f 5134/5134 5167/5167 5149/5149 +f 36326/39308 5135/5135 5136/5136 +f 36327/39309 36326/39308 5136/5136 +f 5135/5135 5168/5168 5150/5150 +f 5166/5166 5124/5124 5150/5150 +f 5136/5136 36325/39310 36327/39311 +f 5152/5152 5151/5151 5125/5125 +f 5137/5137 5151/5151 5169/5169 +f 5170/5170 5152/5152 5138/5138 +f 5126/5126 5153/5153 5156/5156 +f 5169/5169 5153/5153 5137/5137 +f 5154/5154 5171/5171 5128/5128 +f 5172/5172 5154/5154 5129/5129 +f 5139/5139 5173/5173 5142/5142 +f 5174/5174 5139/5139 5155/5155 +f 5128/5128 5171/5171 5155/5155 +f 5156/5156 5175/5175 5129/5129 +f 5176/5176 5157/5157 5140/5140 +f 5140/5140 5143/5143 5176/5176 +f 5144/5144 5141/5141 5177/5177 +f 5157/5157 5178/5178 5141/5141 +f 5179/5179 5158/5158 5142/5142 +f 5158/5158 5159/5159 5130/5130 +f 5131/5131 5159/5159 5180/5180 +f 5180/5180 5160/5160 5131/5131 +f 5176/5176 5143/5143 5160/5160 +f 5181/5181 5148/5148 5144/5144 +f 5145/5145 5147/5147 5182/5182 +f 5161/5161 5145/5145 5183/5183 +f 5119/5119 5161/5161 5163/5163 +f 5133/5133 5162/5162 5184/5184 +f 5146/5146 5163/5163 5162/5162 +f 5185/5185 5147/5147 5164/5164 +f 5120/5120 5165/5165 5164/5164 +f 5165/5165 5148/5148 5186/5186 +f 5167/5167 5134/5134 5166/5166 +f 5135/5135 36326/39312 36328/39313 +f 36329/39314 5168/5168 5135/5135 +f 36328/39315 36329/39314 5135/5135 +f 5168/5168 5166/5166 5150/5150 +f 5151/5151 5152/5152 5187/5187 +f 5169/5169 5151/5151 5188/5188 +f 5170/5170 5187/5187 5152/5152 +f 5189/5189 5170/5170 5138/5138 +f 5156/5156 5153/5153 5190/5190 +f 5191/5191 5153/5153 5169/5169 +f 5154/5154 5192/5192 5171/5171 +f 5172/5172 5192/5192 5154/5154 +f 5129/5129 5175/5175 5172/5172 +f 5173/5173 5139/5139 5193/5193 +f 5173/5173 5194/5194 5142/5142 +f 5174/5174 5193/5193 5139/5139 +f 5195/5195 5174/5174 5155/5155 +f 5171/5171 5195/5195 5155/5155 +f 5175/5175 5156/5156 5196/5196 +f 5176/5176 5197/5197 5157/5157 +f 5177/5177 5198/5198 5144/5144 +f 5177/5177 5141/5141 5178/5178 +f 5157/5157 5199/5199 5178/5178 +f 5200/5200 5179/5179 5142/5142 +f 5159/5159 5158/5158 5179/5179 +f 5179/5179 5180/5180 5159/5159 +f 5160/5160 5180/5180 5201/5201 +f 5160/5160 5201/5201 5176/5176 +f 5148/5148 5181/5181 5202/5202 +f 5198/5198 5181/5181 5144/5144 +f 5185/5185 5182/5182 5147/5147 +f 5203/5203 5145/5145 5182/5182 +f 5145/5145 5203/5203 5183/5183 +f 5161/5161 5183/5183 5204/5204 +f 5163/5163 5161/5161 5204/5204 +f 5205/5205 5184/5184 5162/5162 +f 5184/5184 5206/5206 5133/5133 +f 5163/5163 5207/5207 5162/5162 +f 5208/5208 5185/5185 5164/5164 +f 5165/5165 5209/5209 5164/5164 +f 5186/5186 5148/5148 5210/5210 +f 5211/5211 5165/5165 5186/5186 +f 36330/39316 5167/5167 5166/5166 +f 36331/39317 36330/39316 5166/5166 +f 5168/5168 36329/39318 36332/39319 +f 36333/39320 5166/5166 5168/5168 +f 36332/39321 36333/39320 5168/5168 +f 5187/5187 5212/5212 5151/5151 +f 5151/5151 5213/5213 5188/5188 +f 5214/5214 5169/5169 5188/5188 +f 5170/5170 5215/5215 5187/5187 +f 5170/5170 5189/5189 5215/5215 +f 5190/5190 5153/5153 5216/5216 +f 5156/5156 5190/5190 5196/5196 +f 5191/5191 5217/5217 5153/5153 +f 5214/5214 5191/5191 5169/5169 +f 5218/5218 5171/5171 5192/5192 +f 5219/5219 5192/5192 5172/5172 +f 5172/5172 5175/5175 5220/5220 +f 5173/5173 5193/5193 5221/5221 +f 5194/5194 5222/5222 5142/5142 +f 5221/5221 5194/5194 5173/5173 +f 5193/5193 5174/5174 5195/5195 +f 5195/5195 5171/5171 5223/5223 +f 5196/5196 5220/5220 5175/5175 +f 5201/5201 5197/5197 5176/5176 +f 5197/5197 5224/5224 5157/5157 +f 5225/5225 5198/5198 5177/5177 +f 5178/5178 5225/5225 5177/5177 +f 5199/5199 5157/5157 5224/5224 +f 5224/5224 5178/5178 5199/5199 +f 5142/5142 5222/5222 5200/5200 +f 5179/5179 5200/5200 5222/5222 +f 5179/5179 5226/5226 5180/5180 +f 5201/5201 5180/5180 5227/5227 +f 5181/5181 5228/5228 5202/5202 +f 5148/5148 5202/5202 5210/5210 +f 5228/5228 5181/5181 5198/5198 +f 5185/5185 5229/5229 5182/5182 +f 5203/5203 5182/5182 5229/5229 +f 5203/5203 5230/5230 5183/5183 +f 5230/5230 5204/5204 5183/5183 +f 5163/5163 5204/5204 5207/5207 +f 5231/5231 5205/5205 5162/5162 +f 5205/5205 5232/5232 5184/5184 +f 5232/5232 5206/5206 5184/5184 +f 5162/5162 5207/5207 5231/5231 +f 5208/5208 5229/5229 5185/5185 +f 5164/5164 5233/5233 5208/5208 +f 5209/5209 5165/5165 5211/5211 +f 5164/5164 5209/5209 5233/5233 +f 5186/5186 5210/5210 5234/5234 +f 5211/5211 5186/5186 5235/5235 +f 5166/5166 36333/39322 36331/39323 +f 5167/5167 36330/39324 36334/39325 +f 5187/5187 5236/5236 5212/5212 +f 5213/5213 5151/5151 5212/5212 +f 5188/5188 5213/5213 5237/5237 +f 5214/5214 5188/5188 5237/5237 +f 5187/5187 5215/5215 5238/5238 +f 5153/5153 5217/5217 5216/5216 +f 5190/5190 5216/5216 5239/5239 +f 5196/5196 5190/5190 5240/5240 +f 5217/5217 5191/5191 5216/5216 +f 5241/5241 5191/5191 5214/5214 +f 5218/5218 5192/5192 5219/5219 +f 5223/5223 5171/5171 5218/5218 +f 5220/5220 5219/5219 5172/5172 +f 5221/5221 5193/5193 5195/5195 +f 5222/5222 5194/5194 5242/5242 +f 5221/5221 5243/5243 5194/5194 +f 5223/5223 5244/5244 5195/5195 +f 5245/5245 5220/5220 5196/5196 +f 5246/5246 5197/5197 5201/5201 +f 5246/5246 5224/5224 5197/5197 +f 5247/5247 5198/5198 5225/5225 +f 5225/5225 5178/5178 5248/5248 +f 5248/5248 5178/5178 5224/5224 +f 5179/5179 5222/5222 5226/5226 +f 5180/5180 5226/5226 5249/5249 +f 5250/5250 5227/5227 5180/5180 +f 5246/5246 5201/5201 5227/5227 +f 5210/5210 5202/5202 5228/5228 +f 5198/5198 5247/5247 5228/5228 +f 5251/5251 5203/5203 5229/5229 +f 5230/5230 5203/5203 5251/5251 +f 5204/5204 5230/5230 5252/5252 +f 5207/5207 5204/5204 5253/5253 +f 5254/5254 5205/5205 5231/5231 +f 5205/5205 5254/5254 5232/5232 +f 5231/5231 5207/5207 5255/5255 +f 5229/5229 5208/5208 5256/5256 +f 5233/5233 5257/5257 5208/5208 +f 5211/5211 5233/5233 5209/5209 +f 5234/5234 5210/5210 5258/5258 +f 5186/5186 5234/5234 5235/5235 +f 5211/5211 5235/5235 5234/5234 +f 5187/5187 5238/5238 5236/5236 +f 5259/5259 5212/5212 5236/5236 +f 5213/5213 5212/5212 5259/5259 +f 5237/5237 5213/5213 5260/5260 +f 5237/5237 5241/5241 5214/5214 +f 5239/5239 5261/5261 5190/5190 +f 5216/5216 5262/5262 5239/5239 +f 5240/5240 5190/5190 5261/5261 +f 5240/5240 5263/5263 5196/5196 +f 5264/5264 5216/5216 5191/5191 +f 5191/5191 5241/5241 5264/5264 +f 5219/5219 5265/5265 5218/5218 +f 5218/5218 5266/5266 5223/5223 +f 5267/5267 5219/5219 5220/5220 +f 5221/5221 5195/5195 5244/5244 +f 5194/5194 5268/5268 5242/5242 +f 5269/5269 5222/5222 5242/5242 +f 5243/5243 5221/5221 5244/5244 +f 5270/5270 5194/5194 5243/5243 +f 5244/5244 5223/5223 5266/5266 +f 5263/5263 5245/5245 5196/5196 +f 5245/5245 5267/5267 5220/5220 +f 5224/5224 5246/5246 5271/5271 +f 5225/5225 5272/5272 5247/5247 +f 5273/5273 5225/5225 5248/5248 +f 5248/5248 5224/5224 5271/5271 +f 5222/5222 5269/5269 5226/5226 +f 5249/5249 5226/5226 5274/5274 +f 5180/5180 5249/5249 5250/5250 +f 5227/5227 5250/5250 5275/5275 +f 5227/5227 5271/5271 5246/5246 +f 5210/5210 5228/5228 5258/5258 +f 5228/5228 5247/5247 5258/5258 +f 5229/5229 5256/5256 5251/5251 +f 5252/5252 5230/5230 5251/5251 +f 5253/5253 5204/5204 5252/5252 +f 5253/5253 5255/5255 5207/5207 +f 5254/5254 5231/5231 5276/5276 +f 5231/5231 5255/5255 5276/5276 +f 5208/5208 5277/5277 5256/5256 +f 5277/5277 5208/5208 5257/5257 +f 5257/5257 5233/5233 5211/5211 +f 5234/5234 5258/5258 5278/5278 +f 5211/5211 5234/5234 5257/5257 +f 5238/5238 5279/5279 5236/5236 +f 5236/5236 5279/5279 5259/5259 +f 5260/5260 5213/5213 5259/5259 +f 5237/5237 5260/5260 5280/5280 +f 5280/5280 5241/5241 5237/5237 +f 5240/5240 5261/5261 5239/5239 +f 5262/5262 5216/5216 5264/5264 +f 5262/5262 5281/5281 5239/5239 +f 5263/5263 5240/5240 5282/5282 +f 5241/5241 5281/5281 5264/5264 +f 5265/5265 5219/5219 5267/5267 +f 5265/5265 5266/5266 5218/5218 +f 5194/5194 5270/5270 5268/5268 +f 5242/5242 5268/5268 5283/5283 +f 5242/5242 5283/5283 5269/5269 +f 5243/5243 5244/5244 5266/5266 +f 5270/5270 5243/5243 5284/5284 +f 5282/5282 5245/5245 5263/5263 +f 5245/5245 5285/5285 5267/5267 +f 5258/5258 5247/5247 5272/5272 +f 5273/5273 5272/5272 5225/5225 +f 5248/5248 5271/5271 5273/5273 +f 5274/5274 5226/5226 5269/5269 +f 5250/5250 5249/5249 5274/5274 +f 5275/5275 5250/5250 5286/5286 +f 5227/5227 5275/5275 5287/5287 +f 5287/5287 5271/5271 5227/5227 +f 5288/5288 5251/5251 5256/5256 +f 5252/5252 5251/5251 5288/5288 +f 5289/5289 5253/5253 5252/5252 +f 5255/5255 5253/5253 5290/5290 +f 5291/5291 5254/5254 5276/5276 +f 5276/5276 5255/5255 5290/5290 +f 5256/5256 5277/5277 5288/5288 +f 5292/5292 5277/5277 5257/5257 +f 5278/5278 5257/5257 5234/5234 +f 5278/5278 5258/5258 5272/5272 +f 5293/5293 5279/5279 5238/5238 +f 5259/5259 5279/5279 5294/5294 +f 5295/5295 5260/5260 5259/5259 +f 5280/5280 5260/5260 5296/5296 +f 5241/5241 5280/5280 5296/5296 +f 5282/5282 5240/5240 5239/5239 +f 5281/5281 5262/5262 5264/5264 +f 5281/5281 5282/5282 5239/5239 +f 5297/5297 5281/5281 5241/5241 +f 5267/5267 5285/5285 5265/5265 +f 5266/5266 5265/5265 5298/5298 +f 5299/5299 5268/5268 5270/5270 +f 5268/5268 5299/5299 5283/5283 +f 5269/5269 5283/5283 5274/5274 +f 5243/5243 5266/5266 5298/5298 +f 5284/5284 5300/5300 5270/5270 +f 5284/5284 5243/5243 5301/5301 +f 5285/5285 5245/5245 5282/5282 +f 5272/5272 5273/5273 5302/5302 +f 5273/5273 5271/5271 5303/5303 +f 5274/5274 5304/5304 5250/5250 +f 5286/5286 5250/5250 5304/5304 +f 5286/5286 5305/5305 5275/5275 +f 5275/5275 5305/5305 5287/5287 +f 5287/5287 5303/5303 5271/5271 +f 5306/5306 5252/5252 5288/5288 +f 5290/5290 5253/5253 5289/5289 +f 5306/5306 5289/5289 5252/5252 +f 5290/5290 5291/5291 5276/5276 +f 5277/5277 5307/5307 5288/5288 +f 5277/5277 5292/5292 5308/5308 +f 5292/5292 5257/5257 5278/5278 +f 5278/5278 5272/5272 5309/5309 +f 5293/5293 5310/5310 5279/5279 +f 5259/5259 5294/5294 5295/5295 +f 5311/5311 5294/5294 5279/5279 +f 5260/5260 5295/5295 5296/5296 +f 5241/5241 5296/5296 5297/5297 +f 5281/5281 5312/5312 5282/5282 +f 5313/5313 5281/5281 5297/5297 +f 5265/5265 5285/5285 5314/5314 +f 5298/5298 5265/5265 5314/5314 +f 5299/5299 5270/5270 5300/5300 +f 5274/5274 5283/5283 5299/5299 +f 5301/5301 5243/5243 5298/5298 +f 5315/5315 5300/5300 5284/5284 +f 5301/5301 5316/5316 5284/5284 +f 5314/5314 5285/5285 5282/5282 +f 5317/5317 5272/5272 5302/5302 +f 5302/5302 5273/5273 5318/5318 +f 5273/5273 5303/5303 5318/5318 +f 5274/5274 5299/5299 5304/5304 +f 5286/5286 5304/5304 5299/5299 +f 5319/5319 5305/5305 5286/5286 +f 5287/5287 5305/5305 5303/5303 +f 5306/5306 5288/5288 5320/5320 +f 5290/5290 5289/5289 5321/5321 +f 5289/5289 5306/5306 5322/5322 +f 5321/5321 5291/5291 5290/5290 +f 5277/5277 5308/5308 5307/5307 +f 5320/5320 5288/5288 5307/5307 +f 5308/5308 5292/5292 5317/5317 +f 5292/5292 5278/5278 5309/5309 +f 5309/5309 5272/5272 5317/5317 +f 5310/5310 5293/5293 5323/5323 +f 5311/5311 5279/5279 5310/5310 +f 5324/5324 5295/5295 5294/5294 +f 5324/5324 5294/5294 5311/5311 +f 5296/5296 5295/5295 5325/5325 +f 5297/5297 5296/5296 5325/5325 +f 5312/5312 5281/5281 5313/5313 +f 5312/5312 5314/5314 5282/5282 +f 5326/5326 5313/5313 5297/5297 +f 5314/5314 5327/5327 5298/5298 +f 5300/5300 5286/5286 5299/5299 +f 5327/5327 5301/5301 5298/5298 +f 5316/5316 5315/5315 5284/5284 +f 5316/5316 5301/5301 5327/5327 +f 5328/5328 5317/5317 5302/5302 +f 5302/5302 5318/5318 5328/5328 +f 5318/5318 5303/5303 5329/5329 +f 5330/5330 5319/5319 5286/5286 +f 5305/5305 5319/5319 5331/5331 +f 5303/5303 5305/5305 5329/5329 +f 5322/5322 5306/5306 5320/5320 +f 5289/5289 5322/5322 5321/5321 +f 5332/5332 5307/5307 5308/5308 +f 5320/5320 5307/5307 5332/5332 +f 5317/5317 5292/5292 5309/5309 +f 5332/5332 5308/5308 5317/5317 +f 5311/5311 5310/5310 5333/5333 +f 5295/5295 5324/5324 5325/5325 +f 5311/5311 5333/5333 5324/5324 +f 5325/5325 5326/5326 5297/5297 +f 5313/5313 5326/5326 5312/5312 +f 5314/5314 5312/5312 5334/5334 +f 5335/5335 5327/5327 5314/5314 +f 5336/5336 5286/5286 5300/5300 +f 5327/5327 5337/5337 5316/5316 +f 5338/5338 5317/5317 5328/5328 +f 5328/5328 5318/5318 5331/5331 +f 5318/5318 5329/5329 5331/5331 +f 5331/5331 5319/5319 5330/5330 +f 5330/5330 5286/5286 5336/5336 +f 5305/5305 5331/5331 5329/5329 +f 5322/5322 5320/5320 5339/5339 +f 5321/5321 5322/5322 5340/5340 +f 5320/5320 5332/5332 5339/5339 +f 5317/5317 5338/5338 5332/5332 +f 5312/5312 5326/5326 5341/5341 +f 5335/5335 5314/5314 5334/5334 +f 5341/5341 5334/5334 5312/5312 +f 5337/5337 5327/5327 5335/5335 +f 5342/5342 5338/5338 5328/5328 +f 5331/5331 5342/5342 5328/5328 +f 5331/5331 5330/5330 5343/5343 +f 5336/5336 5344/5344 5330/5330 +f 5322/5322 5339/5339 5340/5340 +f 5332/5332 5345/5345 5339/5339 +f 5338/5338 5345/5345 5332/5332 +f 5335/5335 5334/5334 5346/5346 +f 5346/5346 5334/5334 5341/5341 +f 5337/5337 5335/5335 5346/5346 +f 5338/5338 5342/5342 5347/5347 +f 5343/5343 5342/5342 5331/5331 +f 5348/5348 5343/5343 5330/5330 +f 5330/5330 5344/5344 5348/5348 +f 5339/5339 5349/5349 5340/5340 +f 5345/5345 5349/5349 5339/5339 +f 5345/5345 5338/5338 5347/5347 +f 5347/5347 5342/5342 5350/5350 +f 5343/5343 5350/5350 5342/5342 +f 5348/5348 5351/5351 5343/5343 +f 5352/5352 5348/5348 5344/5344 +f 5345/5345 5347/5347 5353/5353 +f 5347/5347 5350/5350 5354/5354 +f 5350/5350 5343/5343 5354/5354 +f 5351/5351 5354/5354 5343/5343 +f 5355/5355 5351/5351 5348/5348 +f 5355/5355 5348/5348 5352/5352 +f 5347/5347 5354/5354 5353/5353 +f 5356/5356 5354/5354 5351/5351 +f 5356/5356 5351/5351 5355/5355 +f 5355/5355 5352/5352 5357/5357 +f 5354/5354 5356/5356 5353/5353 +f 5355/5355 5358/5358 5356/5356 +f 5357/5357 5358/5358 5355/5355 +f 5356/5356 5358/5358 5353/5353 +f 5359/5359 5360/5360 5361/5361 +f 5362/5362 5360/5360 5359/5359 +f 5363/5363 5361/5361 5360/5360 +f 5361/5361 5364/5364 5359/5359 +f 5365/5365 5362/5362 5359/5359 +f 5360/5360 5362/5362 5366/5366 +f 5367/5367 5361/5361 5363/5363 +f 5360/5360 5366/5366 5363/5363 +f 5365/5365 5359/5359 5364/5364 +f 5368/5368 5364/5364 5361/5361 +f 5365/5365 5369/5369 5362/5362 +f 5370/5370 5366/5366 5362/5362 +f 5363/5363 5371/5371 5367/5367 +f 5367/5367 5372/5372 5361/5361 +f 5373/5373 5363/5363 5366/5366 +f 5365/5365 5364/5364 5374/5374 +f 5375/5375 5364/5364 5368/5368 +f 5361/5361 5376/5376 5368/5368 +f 5377/5377 5369/5369 5365/5365 +f 5370/5370 5362/5362 5369/5369 +f 5370/5370 5378/5378 5366/5366 +f 5363/5363 5373/5373 5371/5371 +f 5371/5371 5379/5379 5367/5367 +f 5372/5372 5367/5367 5380/5380 +f 5361/5361 5372/5372 5381/5381 +f 5366/5366 5378/5378 5373/5373 +f 5364/5364 5375/5375 5374/5374 +f 5374/5374 5377/5377 5365/5365 +f 5382/5382 5376/5376 5361/5361 +f 5369/5369 5377/5377 5383/5383 +f 5370/5370 5369/5369 5384/5384 +f 5370/5370 5385/5385 5378/5378 +f 5373/5373 5386/5386 5371/5371 +f 5371/5371 5386/5386 5379/5379 +f 5367/5367 5379/5379 5380/5380 +f 5387/5387 5372/5372 5380/5380 +f 5387/5387 5381/5381 5372/5372 +f 5361/5361 5381/5381 5382/5382 +f 5373/5373 5378/5378 5388/5388 +f 5383/5383 5377/5377 5374/5374 +f 5376/5376 5382/5382 5389/5389 +f 5383/5383 5390/5390 5369/5369 +f 5369/5369 5390/5390 5384/5384 +f 5385/5385 5370/5370 5384/5384 +f 5378/5378 5385/5385 5391/5391 +f 5386/5386 5373/5373 5388/5388 +f 5386/5386 5392/5392 5379/5379 +f 5380/5380 5379/5379 5393/5393 +f 5380/5380 5394/5394 5387/5387 +f 5381/5381 5387/5387 5395/5395 +f 5381/5381 5396/5396 5382/5382 +f 5388/5388 5378/5378 5391/5391 +f 5397/5397 5383/5383 5374/5374 +f 5389/5389 5382/5382 5398/5398 +f 5390/5390 5383/5383 5399/5399 +f 5384/5384 5390/5390 5400/5400 +f 5384/5384 5401/5401 5385/5385 +f 5391/5391 5385/5385 5401/5401 +f 5402/5402 5386/5386 5388/5388 +f 5386/5386 5402/5402 5392/5392 +f 5403/5403 5379/5379 5392/5392 +f 5380/5380 5393/5393 5394/5394 +f 5379/5379 5403/5403 5393/5393 +f 5387/5387 5394/5394 5404/5404 +f 5387/5387 5404/5404 5395/5395 +f 5381/5381 5395/5395 5405/5405 +f 5382/5382 5396/5396 5398/5398 +f 5381/5381 5406/5406 5396/5396 +f 5401/5401 5388/5388 5391/5391 +f 5399/5399 5383/5383 5397/5397 +f 5407/5407 5397/5397 5374/5374 +f 5399/5399 5400/5400 5390/5390 +f 5384/5384 5400/5400 5408/5408 +f 5408/5408 5401/5401 5384/5384 +f 5401/5401 5402/5402 5388/5388 +f 5409/5409 5392/5392 5402/5402 +f 5410/5410 5403/5403 5392/5392 +f 5394/5394 5393/5393 5411/5411 +f 5412/5412 5393/5393 5403/5403 +f 5394/5394 5413/5413 5404/5404 +f 5414/5414 5395/5395 5404/5404 +f 5405/5405 5406/5406 5381/5381 +f 5405/5405 5395/5395 5415/5415 +f 5396/5396 5416/5416 5398/5398 +f 5396/5396 5406/5406 5416/5416 +f 5399/5399 5397/5397 5417/5417 +f 5374/5374 5418/5418 5407/5407 +f 5397/5397 5407/5407 5419/5419 +f 5408/5408 5400/5400 5399/5399 +f 5408/5408 5420/5420 5401/5401 +f 5402/5402 5401/5401 5420/5420 +f 5409/5409 5410/5410 5392/5392 +f 5402/5402 5421/5421 5409/5409 +f 5422/5422 5403/5403 5410/5410 +f 5394/5394 5411/5411 5423/5423 +f 5393/5393 5424/5424 5411/5411 +f 5393/5393 5412/5412 5424/5424 +f 5412/5412 5403/5403 5425/5425 +f 5413/5413 5394/5394 5423/5423 +f 5413/5413 5414/5414 5404/5404 +f 5395/5395 5414/5414 5426/5426 +f 5406/5406 5405/5405 5415/5415 +f 5415/5415 5395/5395 5427/5427 +f 5406/5406 5428/5428 5416/5416 +f 5417/5417 5397/5397 5419/5419 +f 5417/5417 5408/5408 5399/5399 +f 5418/5418 5374/5374 5429/5429 +f 5418/5418 5430/5430 5407/5407 +f 5430/5430 5419/5419 5407/5407 +f 5431/5431 5420/5420 5408/5408 +f 5420/5420 5432/5432 5402/5402 +f 5433/5433 5410/5410 5409/5409 +f 5402/5402 5432/5432 5421/5421 +f 5409/5409 5421/5421 5434/5434 +f 5422/5422 5425/5425 5403/5403 +f 5410/5410 5435/5435 5422/5422 +f 5411/5411 5436/5436 5423/5423 +f 5411/5411 5424/5424 5436/5436 +f 5424/5424 5412/5412 5425/5425 +f 5423/5423 5437/5437 5413/5413 +f 5437/5437 5414/5414 5413/5413 +f 5426/5426 5414/5414 5438/5438 +f 5395/5395 5426/5426 5427/5427 +f 5428/5428 5406/5406 5415/5415 +f 5439/5439 5415/5415 5427/5427 +f 5417/5417 5419/5419 5440/5440 +f 5417/5417 5431/5431 5408/5408 +f 5374/5374 5441/5441 5429/5429 +f 5442/5442 5418/5418 5429/5429 +f 5418/5418 5443/5443 5430/5430 +f 5444/5444 5419/5419 5430/5430 +f 5445/5445 5420/5420 5431/5431 +f 5445/5445 5432/5432 5420/5420 +f 5410/5410 5433/5433 5446/5446 +f 5433/5433 5409/5409 5447/5447 +f 5445/5445 5421/5421 5432/5432 +f 5421/5421 5448/5448 5434/5434 +f 5449/5449 5409/5409 5434/5434 +f 5422/5422 5450/5450 5425/5425 +f 5435/5435 5450/5450 5422/5422 +f 5410/5410 5446/5446 5435/5435 +f 5436/5436 5437/5437 5423/5423 +f 5436/5436 5424/5424 5451/5451 +f 5424/5424 5425/5425 5451/5451 +f 5437/5437 5438/5438 5414/5414 +f 5426/5426 5438/5438 5427/5427 +f 5439/5439 5428/5428 5415/5415 +f 5452/5452 5439/5439 5427/5427 +f 5419/5419 5444/5444 5440/5440 +f 5431/5431 5417/5417 5440/5440 +f 5429/5429 5441/5441 5453/5453 +f 5441/5441 5374/5374 5454/5454 +f 5429/5429 5455/5455 5442/5442 +f 5418/5418 5442/5442 5456/5456 +f 5443/5443 5457/5457 5430/5430 +f 5418/5418 5456/5456 5443/5443 +f 5444/5444 5430/5430 5458/5458 +f 5459/5459 5445/5445 5431/5431 +f 5433/5433 5460/5460 5446/5446 +f 5460/5460 5433/5433 5447/5447 +f 5409/5409 5461/5461 5447/5447 +f 5462/5462 5421/5421 5445/5445 +f 5448/5448 5421/5421 5462/5462 +f 5434/5434 5448/5448 5463/5463 +f 5449/5449 5464/5464 5409/5409 +f 5463/5463 5449/5449 5434/5434 +f 5425/5425 5450/5450 5465/5465 +f 5450/5450 5435/5435 5466/5466 +f 5446/5446 5467/5467 5435/5435 +f 5436/5436 5468/5468 5437/5437 +f 5451/5451 5468/5468 5436/5436 +f 5425/5425 5465/5465 5451/5451 +f 5468/5468 5438/5438 5437/5437 +f 5438/5438 5469/5469 5427/5427 +f 5427/5427 5469/5469 5452/5452 +f 5452/5452 5470/5470 5439/5439 +f 5440/5440 5444/5444 5471/5471 +f 5471/5471 5431/5431 5440/5440 +f 5441/5441 5472/5472 5453/5453 +f 5453/5453 5473/5473 5429/5429 +f 5454/5454 5472/5472 5441/5441 +f 5474/5474 5455/5455 5429/5429 +f 5475/5475 5442/5442 5455/5455 +f 5476/5476 5456/5456 5442/5442 +f 5457/5457 5477/5477 5430/5430 +f 5478/5478 5457/5457 5443/5443 +f 5456/5456 5479/5479 5443/5443 +f 5430/5430 5480/5480 5458/5458 +f 5458/5458 5459/5459 5444/5444 +f 5471/5471 5459/5459 5431/5431 +f 5458/5458 5445/5445 5459/5459 +f 5446/5446 5460/5460 5481/5481 +f 5482/5482 5460/5460 5447/5447 +f 5464/5464 5461/5461 5409/5409 +f 5461/5461 5483/5483 5447/5447 +f 5445/5445 5458/5458 5462/5462 +f 5462/5462 5484/5484 5448/5448 +f 5448/5448 5485/5485 5463/5463 +f 5464/5464 5449/5449 5486/5486 +f 5449/5449 5463/5463 5486/5486 +f 5487/5487 5465/5465 5450/5450 +f 5435/5435 5467/5467 5466/5466 +f 5450/5450 5466/5466 5487/5487 +f 5446/5446 5481/5481 5467/5467 +f 5465/5465 5468/5468 5451/5451 +f 5438/5438 5468/5468 5488/5488 +f 5469/5469 5438/5438 5489/5489 +f 5469/5469 5490/5490 5452/5452 +f 5470/5470 5452/5452 5491/5491 +f 5444/5444 5459/5459 5471/5471 +f 5472/5472 5492/5492 5453/5453 +f 5473/5473 5453/5453 5493/5493 +f 5473/5473 5494/5494 5429/5429 +f 5472/5472 5454/5454 5495/5495 +f 5474/5474 5496/5496 5455/5455 +f 5494/5494 5474/5474 5429/5429 +f 5497/5497 5442/5442 5475/5475 +f 5475/5475 5455/5455 5498/5498 +f 5476/5476 5442/5442 5497/5497 +f 5499/5499 5456/5456 5476/5476 +f 5500/5500 5430/5430 5477/5477 +f 5477/5477 5457/5457 5501/5501 +f 5502/5502 5457/5457 5478/5478 +f 5479/5479 5478/5478 5443/5443 +f 5499/5499 5479/5479 5456/5456 +f 5503/5503 5458/5458 5480/5480 +f 5480/5480 5430/5430 5500/5500 +f 5504/5504 5481/5481 5460/5460 +f 5505/5505 5482/5482 5447/5447 +f 5482/5482 5506/5506 5460/5460 +f 5461/5461 5464/5464 5507/5507 +f 5483/5483 5461/5461 5508/5508 +f 5447/5447 5483/5483 5509/5509 +f 5462/5462 5458/5458 5510/5510 +f 5510/5510 5484/5484 5462/5462 +f 5511/5511 5448/5448 5484/5484 +f 5485/5485 5448/5448 5511/5511 +f 5463/5463 5485/5485 5512/5512 +f 5486/5486 5513/5513 5464/5464 +f 5463/5463 5512/5512 5486/5486 +f 5465/5465 5487/5487 5514/5514 +f 5466/5466 5467/5467 5515/5515 +f 5487/5487 5466/5466 5516/5516 +f 5481/5481 5517/5517 5467/5467 +f 5468/5468 5465/5465 5488/5488 +f 5438/5438 5488/5488 5489/5489 +f 5469/5469 5489/5489 5490/5490 +f 5490/5490 5491/5491 5452/5452 +f 5492/5492 5472/5472 5495/5495 +f 5453/5453 5492/5492 5493/5493 +f 5493/5493 5518/5518 5473/5473 +f 5473/5473 5519/5519 5494/5494 +f 5454/5454 5520/5520 5495/5495 +f 5455/5455 5496/5496 5521/5521 +f 5494/5494 5496/5496 5474/5474 +f 5497/5497 5475/5475 5522/5522 +f 5475/5475 5498/5498 5523/5523 +f 5455/5455 5521/5521 5498/5498 +f 5499/5499 5476/5476 5497/5497 +f 5477/5477 5524/5524 5500/5500 +f 5501/5501 5502/5502 5477/5477 +f 5457/5457 5502/5502 5501/5501 +f 5502/5502 5478/5478 5525/5525 +f 5526/5526 5478/5478 5479/5479 +f 5479/5479 5499/5499 5526/5526 +f 5510/5510 5458/5458 5503/5503 +f 5503/5503 5480/5480 5527/5527 +f 5524/5524 5480/5480 5500/5500 +f 5517/5517 5481/5481 5504/5504 +f 5528/5528 5504/5504 5460/5460 +f 5505/5505 5529/5529 5482/5482 +f 5447/5447 5530/5530 5505/5505 +f 5482/5482 5529/5529 5506/5506 +f 5506/5506 5528/5528 5460/5460 +f 5464/5464 5513/5513 5507/5507 +f 5531/5531 5461/5461 5507/5507 +f 5508/5508 5532/5532 5483/5483 +f 5531/5531 5508/5508 5461/5461 +f 5533/5533 5509/5509 5483/5483 +f 5509/5509 5534/5534 5447/5447 +f 5484/5484 5510/5510 5535/5535 +f 5484/5484 5535/5535 5511/5511 +f 5485/5485 5511/5511 5536/5536 +f 5536/5536 5512/5512 5485/5485 +f 5537/5537 5513/5513 5486/5486 +f 5512/5512 5537/5537 5486/5486 +f 5487/5487 5516/5516 5514/5514 +f 5465/5465 5514/5514 5488/5488 +f 5515/5515 5467/5467 5538/5538 +f 5466/5466 5515/5515 5516/5516 +f 5467/5467 5517/5517 5538/5538 +f 5539/5539 5489/5489 5488/5488 +f 5490/5490 5489/5489 5540/5540 +f 5541/5541 5491/5491 5490/5490 +f 5492/5492 5495/5495 5542/5542 +f 5543/5543 5493/5493 5492/5492 +f 5518/5518 5493/5493 5543/5543 +f 5518/5518 5519/5519 5473/5473 +f 5519/5519 5544/5544 5494/5494 +f 5520/5520 5545/5545 5495/5495 +f 5496/5496 5546/5546 5521/5521 +f 5494/5494 5544/5544 5496/5496 +f 5522/5522 5475/5475 5523/5523 +f 5522/5522 5547/5547 5497/5497 +f 5498/5498 5548/5548 5523/5523 +f 5548/5548 5498/5498 5521/5521 +f 5547/5547 5499/5499 5497/5497 +f 5477/5477 5502/5502 5524/5524 +f 5502/5502 5525/5525 5524/5524 +f 5478/5478 5526/5526 5525/5525 +f 5499/5499 5547/5547 5526/5526 +f 5535/5535 5510/5510 5503/5503 +f 5549/5549 5527/5527 5480/5480 +f 5550/5550 5503/5503 5527/5527 +f 5549/5549 5480/5480 5524/5524 +f 5551/5551 5517/5517 5504/5504 +f 5552/5552 5504/5504 5528/5528 +f 5505/5505 5553/5553 5529/5529 +f 5447/5447 5534/5534 5530/5530 +f 5554/5554 5505/5505 5530/5530 +f 5555/5555 5506/5506 5529/5529 +f 5556/5556 5528/5528 5506/5506 +f 5513/5513 5557/5557 5507/5507 +f 5507/5507 5558/5558 5531/5531 +f 5483/5483 5532/5532 5533/5533 +f 5559/5559 5532/5532 5508/5508 +f 5508/5508 5531/5531 5559/5559 +f 5560/5560 5509/5509 5533/5533 +f 5561/5561 5534/5534 5509/5509 +f 5535/5535 5536/5536 5511/5511 +f 5562/5562 5512/5512 5536/5536 +f 5513/5513 5537/5537 5563/5563 +f 5564/5564 5537/5537 5512/5512 +f 5514/5514 5516/5516 5565/5565 +f 5488/5488 5514/5514 5539/5539 +f 5566/5566 5515/5515 5538/5538 +f 5516/5516 5515/5515 5567/5567 +f 5538/5538 5517/5517 5568/5568 +f 5539/5539 5569/5569 5489/5489 +f 5489/5489 5570/5570 5540/5540 +f 5540/5540 5541/5541 5490/5490 +f 5491/5491 5541/5541 5571/5571 +f 5572/5572 5542/5542 5495/5495 +f 5542/5542 5543/5543 5492/5492 +f 5543/5543 5519/5519 5518/5518 +f 5573/5573 5544/5544 5519/5519 +f 5495/5495 5545/5545 5572/5572 +f 5574/5574 5545/5545 5520/5520 +f 5496/5496 5575/5575 5546/5546 +f 5548/5548 5521/5521 5546/5546 +f 5496/5496 5544/5544 5575/5575 +f 5576/5576 5522/5522 5523/5523 +f 5547/5547 5522/5522 5577/5577 +f 5548/5548 5578/5578 5523/5523 +f 5579/5579 5524/5524 5525/5525 +f 5525/5525 5526/5526 5580/5580 +f 5526/5526 5547/5547 5580/5580 +f 5503/5503 5536/5536 5535/5535 +f 5549/5549 5581/5581 5527/5527 +f 5550/5550 5527/5527 5582/5582 +f 5536/5536 5503/5503 5550/5550 +f 5524/5524 5579/5579 5549/5549 +f 5504/5504 5552/5552 5551/5551 +f 5517/5517 5551/5551 5552/5552 +f 5583/5583 5552/5552 5528/5528 +f 5505/5505 5554/5554 5553/5553 +f 5529/5529 5553/5553 5584/5584 +f 5585/5585 5530/5530 5534/5534 +f 5554/5554 5530/5530 5585/5585 +f 5555/5555 5556/5556 5506/5506 +f 5584/5584 5555/5555 5529/5529 +f 5528/5528 5556/5556 5583/5583 +f 5557/5557 5513/5513 5563/5563 +f 5507/5507 5557/5557 5558/5558 +f 5531/5531 5558/5558 5559/5559 +f 5560/5560 5533/5533 5532/5532 +f 5586/5586 5532/5532 5559/5559 +f 5509/5509 5560/5560 5561/5561 +f 5534/5534 5561/5561 5587/5587 +f 5512/5512 5562/5562 5564/5564 +f 5588/5588 5562/5562 5536/5536 +f 5537/5537 5564/5564 5563/5563 +f 5565/5565 5516/5516 5567/5567 +f 5539/5539 5514/5514 5565/5565 +f 5566/5566 5538/5538 5589/5589 +f 5515/5515 5566/5566 5590/5590 +f 5590/5590 5567/5567 5515/5515 +f 5517/5517 5552/5552 5568/5568 +f 5568/5568 5589/5589 5538/5538 +f 5489/5489 5569/5569 5570/5570 +f 5569/5569 5539/5539 5591/5591 +f 5592/5592 5540/5540 5570/5570 +f 5540/5540 5592/5592 5541/5541 +f 5593/5593 5491/5491 5571/5571 +f 5594/5594 5571/5571 5541/5541 +f 5572/5572 5595/5595 5542/5542 +f 5595/5595 5543/5543 5542/5542 +f 5543/5543 5573/5573 5519/5519 +f 5573/5573 5596/5596 5544/5544 +f 5597/5597 5572/5572 5545/5545 +f 5597/5597 5545/5545 5574/5574 +f 5575/5575 5598/5598 5546/5546 +f 5546/5546 5598/5598 5548/5548 +f 5599/5599 5575/5575 5544/5544 +f 5523/5523 5578/5578 5576/5576 +f 5576/5576 5577/5577 5522/5522 +f 5547/5547 5577/5577 5580/5580 +f 5598/5598 5578/5578 5548/5548 +f 5600/5600 5579/5579 5525/5525 +f 5525/5525 5580/5580 5600/5600 +f 5527/5527 5581/5581 5582/5582 +f 5549/5549 5579/5579 5581/5581 +f 5582/5582 5588/5588 5550/5550 +f 5550/5550 5588/5588 5536/5536 +f 5583/5583 5568/5568 5552/5552 +f 5553/5553 5554/5554 5601/5601 +f 5553/5553 5602/5602 5584/5584 +f 5534/5534 5603/5603 5585/5585 +f 5604/5604 5554/5554 5585/5585 +f 5605/5605 5556/5556 5555/5555 +f 5605/5605 5555/5555 5584/5584 +f 5556/5556 5606/5606 5583/5583 +f 5557/5557 5563/5563 5607/5607 +f 5558/5558 5557/5557 5607/5607 +f 5559/5559 5558/5558 5608/5608 +f 5586/5586 5560/5560 5532/5532 +f 5586/5586 5559/5559 5609/5609 +f 5560/5560 5610/5610 5561/5561 +f 5587/5587 5561/5561 5611/5611 +f 5534/5534 5587/5587 5603/5603 +f 5612/5612 5564/5564 5562/5562 +f 5588/5588 5613/5613 5562/5562 +f 5563/5563 5564/5564 5607/5607 +f 5567/5567 5591/5591 5565/5565 +f 5591/5591 5539/5539 5565/5565 +f 5589/5589 5590/5590 5566/5566 +f 5590/5590 5591/5591 5567/5567 +f 5614/5614 5589/5589 5568/5568 +f 5569/5569 5615/5615 5570/5570 +f 5616/5616 5569/5569 5591/5591 +f 5570/5570 5615/5615 5592/5592 +f 5592/5592 5617/5617 5541/5541 +f 5594/5594 5593/5593 5571/5571 +f 5541/5541 5617/5617 5594/5594 +f 5595/5595 5572/5572 5618/5618 +f 5543/5543 5595/5595 5618/5618 +f 5619/5619 5573/5573 5543/5543 +f 5599/5599 5544/5544 5596/5596 +f 5620/5620 5596/5596 5573/5573 +f 5572/5572 5597/5597 5621/5621 +f 5621/5621 5597/5597 5574/5574 +f 5598/5598 5575/5575 5599/5599 +f 5578/5578 5622/5622 5576/5576 +f 5576/5576 5623/5623 5577/5577 +f 5580/5580 5577/5577 5600/5600 +f 5624/5624 5578/5578 5598/5598 +f 5625/5625 5579/5579 5600/5600 +f 5581/5581 5626/5626 5582/5582 +f 5626/5626 5581/5581 5579/5579 +f 5613/5613 5588/5588 5582/5582 +f 5627/5627 5568/5568 5583/5583 +f 5601/5601 5554/5554 5604/5604 +f 5553/5553 5601/5601 5628/5628 +f 5602/5602 5605/5605 5584/5584 +f 5553/5553 5628/5628 5602/5602 +f 5604/5604 5585/5585 5603/5603 +f 5556/5556 5605/5605 5606/5606 +f 5606/5606 5627/5627 5583/5583 +f 5607/5607 5608/5608 5558/5558 +f 5608/5608 5629/5629 5559/5559 +f 5610/5610 5560/5560 5586/5586 +f 5630/5630 5586/5586 5609/5609 +f 5609/5609 5559/5559 5629/5629 +f 5610/5610 5611/5611 5561/5561 +f 5587/5587 5611/5611 5631/5631 +f 5604/5604 5603/5603 5587/5587 +f 5564/5564 5612/5612 5607/5607 +f 5562/5562 5613/5613 5612/5612 +f 5590/5590 5589/5589 5616/5616 +f 5616/5616 5591/5591 5590/5590 +f 5589/5589 5614/5614 5632/5632 +f 5568/5568 5627/5627 5614/5614 +f 5569/5569 5616/5616 5615/5615 +f 5592/5592 5615/5615 5633/5633 +f 5592/5592 5634/5634 5617/5617 +f 5594/5594 5635/5635 5593/5593 +f 5636/5636 5594/5594 5617/5617 +f 5572/5572 5637/5637 5618/5618 +f 5619/5619 5543/5543 5618/5618 +f 5573/5573 5619/5619 5620/5620 +f 5599/5599 5596/5596 5638/5638 +f 5596/5596 5620/5620 5639/5639 +f 5640/5640 5572/5572 5621/5621 +f 5641/5641 5621/5621 5574/5574 +f 5599/5599 5642/5642 5598/5598 +f 5576/5576 5622/5622 5643/5643 +f 5622/5622 5578/5578 5644/5644 +f 5576/5576 5643/5643 5623/5623 +f 5645/5645 5577/5577 5623/5623 +f 5600/5600 5577/5577 5645/5645 +f 5578/5578 5624/5624 5644/5644 +f 5646/5646 5624/5624 5598/5598 +f 5625/5625 5626/5626 5579/5579 +f 5647/5647 5625/5625 5600/5600 +f 5648/5648 5582/5582 5626/5626 +f 5582/5582 5649/5649 5613/5613 +f 5650/5650 5601/5601 5604/5604 +f 5601/5601 5651/5651 5628/5628 +f 5652/5652 5605/5605 5602/5602 +f 5628/5628 5651/5651 5602/5602 +f 5605/5605 5653/5653 5606/5606 +f 5627/5627 5606/5606 5654/5654 +f 5655/5655 5608/5608 5607/5607 +f 5608/5608 5656/5656 5629/5629 +f 5586/5586 5657/5657 5610/5610 +f 5586/5586 5630/5630 5658/5658 +f 5659/5659 5630/5630 5609/5609 +f 5629/5629 5659/5659 5609/5609 +f 5611/5611 5610/5610 5657/5657 +f 5660/5660 5631/5631 5611/5611 +f 5650/5650 5587/5587 5631/5631 +f 5604/5604 5587/5587 5650/5650 +f 5612/5612 5655/5655 5607/5607 +f 5613/5613 5655/5655 5612/5612 +f 5589/5589 5632/5632 5616/5616 +f 5614/5614 5661/5661 5632/5632 +f 5661/5661 5614/5614 5627/5627 +f 5616/5616 5633/5633 5615/5615 +f 5634/5634 5592/5592 5633/5633 +f 5617/5617 5634/5634 5662/5662 +f 5594/5594 5636/5636 5635/5635 +f 5617/5617 5663/5663 5636/5636 +f 5637/5637 5572/5572 5664/5664 +f 5637/5637 5665/5665 5618/5618 +f 5665/5665 5619/5619 5618/5618 +f 5620/5620 5619/5619 5665/5665 +f 5599/5599 5638/5638 5666/5666 +f 5596/5596 5667/5667 5638/5638 +f 5596/5596 5639/5639 5668/5668 +f 5669/5669 5639/5639 5620/5620 +f 5640/5640 5670/5670 5572/5572 +f 5621/5621 5641/5641 5640/5640 +f 5642/5642 5646/5646 5598/5598 +f 5642/5642 5599/5599 5666/5666 +f 5671/5671 5643/5643 5622/5622 +f 5672/5672 5622/5622 5644/5644 +f 5673/5673 5623/5623 5643/5643 +f 5645/5645 5623/5623 5674/5674 +f 5647/5647 5600/5600 5645/5645 +f 5624/5624 5675/5675 5644/5644 +f 5676/5676 5624/5624 5646/5646 +f 5625/5625 5677/5677 5626/5626 +f 5647/5647 5678/5678 5625/5625 +f 5648/5648 5649/5649 5582/5582 +f 5648/5648 5626/5626 5679/5679 +f 5613/5613 5649/5649 5655/5655 +f 5680/5680 5601/5601 5650/5650 +f 5651/5651 5601/5601 5680/5680 +f 5602/5602 5681/5681 5652/5652 +f 5652/5652 5653/5653 5605/5605 +f 5682/5682 5602/5602 5651/5651 +f 5653/5653 5683/5683 5606/5606 +f 5661/5661 5627/5627 5654/5654 +f 5606/5606 5684/5684 5654/5654 +f 5608/5608 5655/5655 5656/5656 +f 5629/5629 5656/5656 5685/5685 +f 5686/5686 5657/5657 5586/5586 +f 5586/5586 5658/5658 5686/5686 +f 5658/5658 5630/5630 5687/5687 +f 5687/5687 5630/5630 5659/5659 +f 5629/5629 5688/5688 5659/5659 +f 5611/5611 5657/5657 5686/5686 +f 5660/5660 5611/5611 5686/5686 +f 5660/5660 5689/5689 5631/5631 +f 5631/5631 5690/5690 5650/5650 +f 5632/5632 5633/5633 5616/5616 +f 5654/5654 5632/5632 5661/5661 +f 5691/5691 5634/5634 5633/5633 +f 5662/5662 5634/5634 5692/5692 +f 5662/5662 5692/5692 5617/5617 +f 5636/5636 5693/5693 5635/5635 +f 5663/5663 5694/5694 5636/5636 +f 5617/5617 5692/5692 5663/5663 +f 5572/5572 5670/5670 5664/5664 +f 5695/5695 5637/5637 5664/5664 +f 5637/5637 5695/5695 5665/5665 +f 5665/5665 5669/5669 5620/5620 +f 5638/5638 5696/5696 5666/5666 +f 5667/5667 5596/5596 5668/5668 +f 5638/5638 5667/5667 5697/5697 +f 5668/5668 5639/5639 5698/5698 +f 5669/5669 5699/5699 5639/5639 +f 5640/5640 5700/5700 5670/5670 +f 5701/5701 5640/5640 5641/5641 +f 5646/5646 5642/5642 5702/5702 +f 5642/5642 5666/5666 5702/5702 +f 5671/5671 5703/5703 5643/5643 +f 5622/5622 5672/5672 5671/5671 +f 5675/5675 5672/5672 5644/5644 +f 5673/5673 5674/5674 5623/5623 +f 5673/5673 5643/5643 5703/5703 +f 5674/5674 5704/5704 5645/5645 +f 5705/5705 5647/5647 5645/5645 +f 5675/5675 5624/5624 5706/5706 +f 5676/5676 5646/5646 5707/5707 +f 5706/5706 5624/5624 5676/5676 +f 5626/5626 5677/5677 5679/5679 +f 5678/5678 5677/5677 5625/5625 +f 5708/5708 5678/5678 5647/5647 +f 5648/5648 5709/5709 5649/5649 +f 5710/5710 5648/5648 5679/5679 +f 5711/5711 5655/5655 5649/5649 +f 5650/5650 5690/5690 5680/5680 +f 5682/5682 5651/5651 5680/5680 +f 5602/5602 5682/5682 5681/5681 +f 5652/5652 5681/5681 5712/5712 +f 5652/5652 5713/5713 5653/5653 +f 5653/5653 5713/5713 5683/5683 +f 5684/5684 5606/5606 5683/5683 +f 5684/5684 5714/5714 5654/5654 +f 5656/5656 5655/5655 5711/5711 +f 5685/5685 5656/5656 5709/5709 +f 5685/5685 5688/5688 5629/5629 +f 5686/5686 5658/5658 5687/5687 +f 5688/5688 5687/5687 5659/5659 +f 5660/5660 5686/5686 5715/5715 +f 5689/5689 5660/5660 5716/5716 +f 5631/5631 5689/5689 5717/5717 +f 5717/5717 5690/5690 5631/5631 +f 5633/5633 5632/5632 5718/5718 +f 5654/5654 5714/5714 5632/5632 +f 5691/5691 5633/5633 5719/5719 +f 5691/5691 5720/5720 5634/5634 +f 5634/5634 5721/5721 5692/5692 +f 5693/5693 5636/5636 5722/5722 +f 5663/5663 5723/5723 5694/5694 +f 5636/5636 5694/5694 5722/5722 +f 5663/5663 5692/5692 5723/5723 +f 5670/5670 5724/5724 5664/5664 +f 5725/5725 5695/5695 5664/5664 +f 5665/5665 5695/5695 5726/5726 +f 5726/5726 5669/5669 5665/5665 +f 5702/5702 5666/5666 5696/5696 +f 5696/5696 5638/5638 5727/5727 +f 5728/5728 5667/5667 5668/5668 +f 5638/5638 5697/5697 5727/5727 +f 5729/5729 5697/5697 5667/5667 +f 5730/5730 5698/5698 5639/5639 +f 5668/5668 5698/5698 5728/5728 +f 5726/5726 5699/5699 5669/5669 +f 5639/5639 5699/5699 5730/5730 +f 5700/5700 5640/5640 5701/5701 +f 5670/5670 5700/5700 5731/5731 +f 5641/5641 5732/5732 5701/5701 +f 5733/5733 5646/5646 5702/5702 +f 5671/5671 5734/5734 5703/5703 +f 5735/5735 5671/5671 5672/5672 +f 5736/5736 5672/5672 5675/5675 +f 5674/5674 5673/5673 5737/5737 +f 5737/5737 5673/5673 5703/5703 +f 5704/5704 5674/5674 5738/5738 +f 5705/5705 5645/5645 5704/5704 +f 5647/5647 5705/5705 5739/5739 +f 5675/5675 5706/5706 5736/5736 +f 5646/5646 5733/5733 5707/5707 +f 5740/5740 5676/5676 5707/5707 +f 5676/5676 5740/5740 5706/5706 +f 5677/5677 5678/5678 5679/5679 +f 5708/5708 5647/5647 5739/5739 +f 5741/5741 5678/5678 5708/5708 +f 5711/5711 5649/5649 5709/5709 +f 5710/5710 5709/5709 5648/5648 +f 5679/5679 5742/5742 5710/5710 +f 5680/5680 5690/5690 5743/5743 +f 5744/5744 5682/5682 5680/5680 +f 5681/5681 5682/5682 5745/5745 +f 5681/5681 5745/5745 5712/5712 +f 5712/5712 5713/5713 5652/5652 +f 5683/5683 5713/5713 5684/5684 +f 5714/5714 5684/5684 5713/5713 +f 5656/5656 5711/5711 5709/5709 +f 5709/5709 5688/5688 5685/5685 +f 5686/5686 5687/5687 5715/5715 +f 5688/5688 5742/5742 5687/5687 +f 5715/5715 5716/5716 5660/5660 +f 5689/5689 5716/5716 5746/5746 +f 5747/5747 5717/5717 5689/5689 +f 5690/5690 5717/5717 5748/5748 +f 5633/5633 5718/5718 5719/5719 +f 5632/5632 5749/5749 5718/5718 +f 5632/5632 5714/5714 5750/5750 +f 5719/5719 5720/5720 5691/5691 +f 5751/5751 5634/5634 5720/5720 +f 5721/5721 5723/5723 5692/5692 +f 5721/5721 5634/5634 5751/5751 +f 5752/5752 5694/5694 5723/5723 +f 5722/5722 5694/5694 5753/5753 +f 5670/5670 5731/5731 5724/5724 +f 5664/5664 5724/5724 5725/5725 +f 5725/5725 5754/5754 5695/5695 +f 5695/5695 5755/5755 5726/5726 +f 5696/5696 5756/5756 5702/5702 +f 5757/5757 5696/5696 5727/5727 +f 5667/5667 5728/5728 5729/5729 +f 5758/5758 5727/5727 5697/5697 +f 5697/5697 5729/5729 5759/5759 +f 5760/5760 5698/5698 5730/5730 +f 5728/5728 5698/5698 5761/5761 +f 5762/5762 5699/5699 5726/5726 +f 5762/5762 5730/5730 5699/5699 +f 5763/5763 5700/5700 5701/5701 +f 5700/5700 5763/5763 5731/5731 +f 5732/5732 5764/5764 5701/5701 +f 5702/5702 5756/5756 5733/5733 +f 5734/5734 5671/5671 5765/5765 +f 5703/5703 5734/5734 5766/5766 +f 5671/5671 5735/5735 5765/5765 +f 5735/5735 5672/5672 5736/5736 +f 5674/5674 5737/5737 5767/5767 +f 5703/5703 5766/5766 5737/5737 +f 5768/5768 5738/5738 5674/5674 +f 5704/5704 5738/5738 5739/5739 +f 5705/5705 5704/5704 5739/5739 +f 5706/5706 5769/5769 5736/5736 +f 5733/5733 5770/5770 5707/5707 +f 5771/5771 5740/5740 5707/5707 +f 5769/5769 5706/5706 5740/5740 +f 5678/5678 5741/5741 5679/5679 +f 5708/5708 5739/5739 5772/5772 +f 5741/5741 5708/5708 5772/5772 +f 5710/5710 5688/5688 5709/5709 +f 5688/5688 5710/5710 5742/5742 +f 5773/5773 5742/5742 5679/5679 +f 5743/5743 5690/5690 5748/5748 +f 5743/5743 5744/5744 5680/5680 +f 5682/5682 5744/5744 5745/5745 +f 5714/5714 5712/5712 5745/5745 +f 5712/5712 5714/5714 5713/5713 +f 5742/5742 5715/5715 5687/5687 +f 5716/5716 5715/5715 5746/5746 +f 5774/5774 5689/5689 5746/5746 +f 5747/5747 5775/5775 5717/5717 +f 5776/5776 5747/5747 5689/5689 +f 5748/5748 5717/5717 5777/5777 +f 5778/5778 5719/5719 5718/5718 +f 5718/5718 5749/5749 5778/5778 +f 5749/5749 5632/5632 5779/5779 +f 5714/5714 5745/5745 5750/5750 +f 5779/5779 5632/5632 5750/5750 +f 5720/5720 5719/5719 5780/5780 +f 5720/5720 5781/5781 5751/5751 +f 5782/5782 5723/5723 5721/5721 +f 5783/5783 5721/5721 5751/5751 +f 5694/5694 5752/5752 5753/5753 +f 5723/5723 5784/5784 5752/5752 +f 5753/5753 5785/5785 5722/5722 +f 5786/5786 5724/5724 5731/5731 +f 5724/5724 5787/5787 5725/5725 +f 5787/5787 5754/5754 5725/5725 +f 5695/5695 5754/5754 5755/5755 +f 5726/5726 5755/5755 5788/5788 +f 5756/5756 5696/5696 5757/5757 +f 5757/5757 5727/5727 5758/5758 +f 5789/5789 5729/5729 5728/5728 +f 5758/5758 5697/5697 5759/5759 +f 5729/5729 5790/5790 5759/5759 +f 5761/5761 5698/5698 5760/5760 +f 5730/5730 5791/5791 5760/5760 +f 5761/5761 5789/5789 5728/5728 +f 5788/5788 5762/5762 5726/5726 +f 5730/5730 5762/5762 5791/5791 +f 5763/5763 5701/5701 5764/5764 +f 5792/5792 5731/5731 5763/5763 +f 5793/5793 5764/5764 5732/5732 +f 5756/5756 5794/5794 5733/5733 +f 5766/5766 5734/5734 5765/5765 +f 5765/5765 5735/5735 5795/5795 +f 5735/5735 5736/5736 5796/5796 +f 5737/5737 5766/5766 5767/5767 +f 5768/5768 5674/5674 5767/5767 +f 5772/5772 5738/5738 5768/5768 +f 5772/5772 5739/5739 5738/5738 +f 5769/5769 5796/5796 5736/5736 +f 5707/5707 5770/5770 5771/5771 +f 5770/5770 5733/5733 5794/5794 +f 5740/5740 5771/5771 5769/5769 +f 5797/5797 5679/5679 5741/5741 +f 5797/5797 5741/5741 5772/5772 +f 5773/5773 5679/5679 5797/5797 +f 5742/5742 5773/5773 5715/5715 +f 5743/5743 5748/5748 5798/5798 +f 5743/5743 5799/5799 5744/5744 +f 5745/5745 5744/5744 5750/5750 +f 5715/5715 5800/5800 5746/5746 +f 5801/5801 5689/5689 5774/5774 +f 5746/5746 5802/5802 5774/5774 +f 5717/5717 5775/5775 5777/5777 +f 5803/5803 5775/5775 5747/5747 +f 5689/5689 5801/5801 5776/5776 +f 5804/5804 5747/5747 5776/5776 +f 5805/5805 5748/5748 5777/5777 +f 5719/5719 5778/5778 5780/5780 +f 5806/5806 5778/5778 5749/5749 +f 5807/5807 5749/5749 5779/5779 +f 5808/5808 5779/5779 5750/5750 +f 5809/5809 5720/5720 5780/5780 +f 5809/5809 5781/5781 5720/5720 +f 5781/5781 5809/5809 5751/5751 +f 5723/5723 5782/5782 5784/5784 +f 5810/5810 5782/5782 5721/5721 +f 5751/5751 5809/5809 5783/5783 +f 5783/5783 5811/5811 5721/5721 +f 5752/5752 5812/5812 5753/5753 +f 5784/5784 5813/5813 5752/5752 +f 5722/5722 5785/5785 5814/5814 +f 5812/5812 5785/5785 5753/5753 +f 5787/5787 5724/5724 5786/5786 +f 5731/5731 5815/5815 5786/5786 +f 5816/5816 5754/5754 5787/5787 +f 5755/5755 5754/5754 5817/5817 +f 5817/5817 5788/5788 5755/5755 +f 5818/5818 5756/5756 5757/5757 +f 5819/5819 5757/5757 5758/5758 +f 5790/5790 5729/5729 5789/5789 +f 5758/5758 5759/5759 5820/5820 +f 5821/5821 5759/5759 5790/5790 +f 5822/5822 5761/5761 5760/5760 +f 5791/5791 5823/5823 5760/5760 +f 5824/5824 5789/5789 5761/5761 +f 5762/5762 5788/5788 5791/5791 +f 5763/5763 5764/5764 5825/5825 +f 5763/5763 5825/5825 5792/5792 +f 5815/5815 5731/5731 5792/5792 +f 5826/5826 5764/5764 5793/5793 +f 5756/5756 5827/5827 5794/5794 +f 5766/5766 5765/5765 5828/5828 +f 5795/5795 5735/5735 5796/5796 +f 5765/5765 5795/5795 5829/5829 +f 5766/5766 5828/5828 5767/5767 +f 5767/5767 5830/5830 5768/5768 +f 5830/5830 5772/5772 5768/5768 +f 5796/5796 5769/5769 5831/5831 +f 5771/5771 5770/5770 5832/5832 +f 5794/5794 5833/5833 5770/5770 +f 5769/5769 5771/5771 5831/5831 +f 5772/5772 5834/5834 5797/5797 +f 5835/5835 5773/5773 5797/5797 +f 5715/5715 5773/5773 5800/5800 +f 5798/5798 5799/5799 5743/5743 +f 5805/5805 5798/5798 5748/5748 +f 5836/5836 5744/5744 5799/5799 +f 5750/5750 5744/5744 5808/5808 +f 5746/5746 5800/5800 5802/5802 +f 5774/5774 5837/5837 5801/5801 +f 5774/5774 5802/5802 5838/5838 +f 5777/5777 5775/5775 5839/5839 +f 5840/5840 5803/5803 5747/5747 +f 5839/5839 5775/5775 5803/5803 +f 5776/5776 5801/5801 5837/5837 +f 5747/5747 5804/5804 5840/5840 +f 5776/5776 5841/5841 5804/5804 +f 5839/5839 5805/5805 5777/5777 +f 5780/5780 5778/5778 5842/5842 +f 5842/5842 5778/5778 5806/5806 +f 5806/5806 5749/5749 5843/5843 +f 5749/5749 5807/5807 5843/5843 +f 5779/5779 5844/5844 5807/5807 +f 5808/5808 5844/5844 5779/5779 +f 5809/5809 5780/5780 5842/5842 +f 5784/5784 5782/5782 5845/5845 +f 5846/5846 5782/5782 5810/5810 +f 5811/5811 5810/5810 5721/5721 +f 5783/5783 5809/5809 5847/5847 +f 5811/5811 5783/5783 5847/5847 +f 5752/5752 5813/5813 5812/5812 +f 5813/5813 5784/5784 5848/5848 +f 5849/5849 5814/5814 5785/5785 +f 5812/5812 5850/5850 5785/5785 +f 5786/5786 5815/5815 5787/5787 +f 5816/5816 5817/5817 5754/5754 +f 5851/5851 5816/5816 5787/5787 +f 5852/5852 5788/5788 5817/5817 +f 5853/5853 5818/5818 5757/5757 +f 5827/5827 5756/5756 5818/5818 +f 5820/5820 5819/5819 5758/5758 +f 5757/5757 5819/5819 5853/5853 +f 5790/5790 5789/5789 5854/5854 +f 5820/5820 5759/5759 5821/5821 +f 5821/5821 5790/5790 5855/5855 +f 5856/5856 5761/5761 5822/5822 +f 5822/5822 5760/5760 5857/5857 +f 5858/5858 5823/5823 5791/5791 +f 5857/5857 5760/5760 5823/5823 +f 5789/5789 5824/5824 5859/5859 +f 5824/5824 5761/5761 5856/5856 +f 5791/5791 5788/5788 5860/5860 +f 5826/5826 5825/5825 5764/5764 +f 5825/5825 5861/5861 5792/5792 +f 5792/5792 5851/5851 5815/5815 +f 5794/5794 5827/5827 5862/5862 +f 5829/5829 5828/5828 5765/5765 +f 5796/5796 5863/5863 5795/5795 +f 5795/5795 5863/5863 5829/5829 +f 5864/5864 5767/5767 5828/5828 +f 5767/5767 5865/5865 5830/5830 +f 5830/5830 5866/5866 5772/5772 +f 5867/5867 5796/5796 5831/5831 +f 5832/5832 5868/5868 5771/5771 +f 5770/5770 5833/5833 5832/5832 +f 5869/5869 5833/5833 5794/5794 +f 5771/5771 5868/5868 5831/5831 +f 5870/5870 5797/5797 5834/5834 +f 5871/5871 5834/5834 5772/5772 +f 5797/5797 5870/5870 5835/5835 +f 5872/5872 5773/5773 5835/5835 +f 5873/5873 5800/5800 5773/5773 +f 5799/5799 5798/5798 5874/5874 +f 5798/5798 5805/5805 5874/5874 +f 5836/5836 5799/5799 5875/5875 +f 5876/5876 5744/5744 5836/5836 +f 5876/5876 5808/5808 5744/5744 +f 5802/5802 5800/5800 5873/5873 +f 5877/5877 5837/5837 5774/5774 +f 5878/5878 5774/5774 5838/5838 +f 5838/5838 5802/5802 5879/5879 +f 5803/5803 5840/5840 5880/5880 +f 5881/5881 5839/5839 5803/5803 +f 5882/5882 5776/5776 5837/5837 +f 5804/5804 5883/5883 5840/5840 +f 5882/5882 5841/5841 5776/5776 +f 5841/5841 5883/5883 5804/5804 +f 5839/5839 5884/5884 5805/5805 +f 5806/5806 5885/5885 5842/5842 +f 5806/5806 5843/5843 5886/5886 +f 5807/5807 5887/5887 5843/5843 +f 5807/5807 5844/5844 5887/5887 +f 5844/5844 5808/5808 5888/5888 +f 5809/5809 5842/5842 5847/5847 +f 5845/5845 5782/5782 5889/5889 +f 5784/5784 5845/5845 5848/5848 +f 5810/5810 5890/5890 5846/5846 +f 5782/5782 5846/5846 5889/5889 +f 5811/5811 5890/5890 5810/5810 +f 5891/5891 5811/5811 5847/5847 +f 5813/5813 5892/5892 5812/5812 +f 5813/5813 5848/5848 5892/5892 +f 5893/5893 5814/5814 5849/5849 +f 5785/5785 5850/5850 5849/5849 +f 5850/5850 5812/5812 5894/5894 +f 5787/5787 5815/5815 5851/5851 +f 5816/5816 5852/5852 5817/5817 +f 5895/5895 5816/5816 5851/5851 +f 5860/5860 5788/5788 5852/5852 +f 5896/5896 5818/5818 5853/5853 +f 5897/5897 5827/5827 5818/5818 +f 5820/5820 5898/5898 5819/5819 +f 5853/5853 5819/5819 5899/5899 +f 5789/5789 5859/5859 5854/5854 +f 5900/5900 5790/5790 5854/5854 +f 5820/5820 5821/5821 5855/5855 +f 5790/5790 5901/5901 5855/5855 +f 5902/5902 5856/5856 5822/5822 +f 5822/5822 5857/5857 5902/5902 +f 5860/5860 5858/5858 5791/5791 +f 5903/5903 5823/5823 5858/5858 +f 5823/5823 5904/5904 5857/5857 +f 5856/5856 5859/5859 5824/5824 +f 5905/5905 5825/5825 5826/5826 +f 5861/5861 5825/5825 5906/5906 +f 5792/5792 5861/5861 5907/5907 +f 5851/5851 5792/5792 5907/5907 +f 5827/5827 5897/5897 5862/5862 +f 5869/5869 5794/5794 5862/5862 +f 5908/5908 5828/5828 5829/5829 +f 5863/5863 5796/5796 5867/5867 +f 5863/5863 5909/5909 5829/5829 +f 5864/5864 5865/5865 5767/5767 +f 5828/5828 5910/5910 5864/5864 +f 5865/5865 5911/5911 5830/5830 +f 5912/5912 5866/5866 5830/5830 +f 5866/5866 5913/5913 5772/5772 +f 5914/5914 5867/5867 5831/5831 +f 5832/5832 5915/5915 5868/5868 +f 5833/5833 5916/5916 5832/5832 +f 5833/5833 5869/5869 5917/5917 +f 5868/5868 5918/5918 5831/5831 +f 5919/5919 5870/5870 5834/5834 +f 5772/5772 5913/5913 5871/5871 +f 5834/5834 5871/5871 5920/5920 +f 5879/5879 5835/5835 5870/5870 +f 5872/5872 5835/5835 5879/5879 +f 5873/5873 5773/5773 5872/5872 +f 5921/5921 5799/5799 5874/5874 +f 5805/5805 5921/5921 5874/5874 +f 5799/5799 5921/5921 5875/5875 +f 5875/5875 5922/5922 5836/5836 +f 5922/5922 5876/5876 5836/5836 +f 5876/5876 5888/5888 5808/5808 +f 5873/5873 5872/5872 5802/5802 +f 5837/5837 5877/5877 5923/5923 +f 5877/5877 5774/5774 5878/5878 +f 5878/5878 5838/5838 5924/5924 +f 5802/5802 5872/5872 5879/5879 +f 5879/5879 5925/5925 5838/5838 +f 5926/5926 5880/5880 5840/5840 +f 5881/5881 5803/5803 5880/5880 +f 5881/5881 5884/5884 5839/5839 +f 5923/5923 5882/5882 5837/5837 +f 5840/5840 5883/5883 5927/5927 +f 5928/5928 5841/5841 5882/5882 +f 5883/5883 5841/5841 5928/5928 +f 5805/5805 5884/5884 5929/5929 +f 5885/5885 5806/5806 5886/5886 +f 5885/5885 5930/5930 5842/5842 +f 5886/5886 5843/5843 5887/5887 +f 5887/5887 5844/5844 5931/5931 +f 5888/5888 5931/5931 5844/5844 +f 5847/5847 5842/5842 5932/5932 +f 5933/5933 5845/5845 5889/5889 +f 5845/5845 5934/5934 5848/5848 +f 5846/5846 5890/5890 5889/5889 +f 5891/5891 5890/5890 5811/5811 +f 5891/5891 5847/5847 5932/5932 +f 5894/5894 5812/5812 5892/5892 +f 5848/5848 5935/5935 5892/5892 +f 5936/5936 5814/5814 5893/5893 +f 5937/5937 5893/5893 5849/5849 +f 5849/5849 5850/5850 5894/5894 +f 5938/5938 5852/5852 5816/5816 +f 5938/5938 5816/5816 5895/5895 +f 5895/5895 5851/5851 5907/5907 +f 5860/5860 5852/5852 5939/5939 +f 5853/5853 5899/5899 5896/5896 +f 5896/5896 5940/5940 5818/5818 +f 5940/5940 5897/5897 5818/5818 +f 5855/5855 5898/5898 5820/5820 +f 5819/5819 5898/5898 5941/5941 +f 5819/5819 5941/5941 5899/5899 +f 5859/5859 5942/5942 5854/5854 +f 5942/5942 5900/5900 5854/5854 +f 5901/5901 5790/5790 5900/5900 +f 5855/5855 5901/5901 5943/5943 +f 5944/5944 5856/5856 5902/5902 +f 5902/5902 5857/5857 5904/5904 +f 5858/5858 5860/5860 5939/5939 +f 5858/5858 5945/5945 5903/5903 +f 5946/5946 5823/5823 5903/5903 +f 5904/5904 5823/5823 5946/5946 +f 5856/5856 5947/5947 5859/5859 +f 5905/5905 5906/5906 5825/5825 +f 5948/5948 5861/5861 5906/5906 +f 5861/5861 5948/5948 5907/5907 +f 5862/5862 5897/5897 5949/5949 +f 5862/5862 5950/5950 5869/5869 +f 5829/5829 5909/5909 5908/5908 +f 5910/5910 5828/5828 5908/5908 +f 5867/5867 5909/5909 5863/5863 +f 5865/5865 5864/5864 5951/5951 +f 5910/5910 5952/5952 5864/5864 +f 5911/5911 5865/5865 5951/5951 +f 5911/5911 5953/5953 5830/5830 +f 5954/5954 5866/5866 5912/5912 +f 5830/5830 5953/5953 5912/5912 +f 5866/5866 5954/5954 5913/5913 +f 5914/5914 5909/5909 5867/5867 +f 5955/5955 5914/5914 5831/5831 +f 5868/5868 5915/5915 5956/5956 +f 5957/5957 5915/5915 5832/5832 +f 5833/5833 5917/5917 5916/5916 +f 5832/5832 5916/5916 5957/5957 +f 5869/5869 5958/5958 5917/5917 +f 5918/5918 5868/5868 5959/5959 +f 5831/5831 5918/5918 5955/5955 +f 5919/5919 5879/5879 5870/5870 +f 5960/5960 5919/5919 5834/5834 +f 5871/5871 5913/5913 5961/5961 +f 5962/5962 5920/5920 5871/5871 +f 5920/5920 5963/5963 5834/5834 +f 5921/5921 5805/5805 5964/5964 +f 5964/5964 5875/5875 5921/5921 +f 5965/5965 5922/5922 5875/5875 +f 5876/5876 5922/5922 5966/5966 +f 5876/5876 5967/5967 5888/5888 +f 5877/5877 5968/5968 5923/5923 +f 5969/5969 5877/5877 5878/5878 +f 5838/5838 5925/5925 5924/5924 +f 5878/5878 5924/5924 5970/5970 +f 5919/5919 5925/5925 5879/5879 +f 5926/5926 5840/5840 5971/5971 +f 5972/5972 5880/5880 5926/5926 +f 5881/5881 5880/5880 5973/5973 +f 5881/5881 5974/5974 5884/5884 +f 5923/5923 5975/5975 5882/5882 +f 5883/5883 5976/5976 5927/5927 +f 5927/5927 5977/5977 5840/5840 +f 5882/5882 5975/5975 5928/5928 +f 5976/5976 5883/5883 5928/5928 +f 5929/5929 5884/5884 5978/5978 +f 5805/5805 5929/5929 5964/5964 +f 5885/5885 5886/5886 5979/5979 +f 5930/5930 5885/5885 5979/5979 +f 5930/5930 5932/5932 5842/5842 +f 5887/5887 5980/5980 5886/5886 +f 5887/5887 5931/5931 5980/5980 +f 5931/5931 5888/5888 5981/5981 +f 5933/5933 5982/5982 5845/5845 +f 5933/5933 5889/5889 5983/5983 +f 5934/5934 5935/5935 5848/5848 +f 5934/5934 5845/5845 5984/5984 +f 5889/5889 5890/5890 5891/5891 +f 5985/5985 5891/5891 5932/5932 +f 5892/5892 5986/5986 5894/5894 +f 5935/5935 5987/5987 5892/5892 +f 5814/5814 5936/5936 5988/5988 +f 5893/5893 5989/5989 5936/5936 +f 5937/5937 5849/5849 5990/5990 +f 5989/5989 5893/5893 5937/5937 +f 5894/5894 5991/5991 5849/5849 +f 5852/5852 5938/5938 5939/5939 +f 5938/5938 5895/5895 5992/5992 +f 5907/5907 5993/5993 5895/5895 +f 5896/5896 5899/5899 5994/5994 +f 5940/5940 5896/5896 5994/5994 +f 5940/5940 5995/5995 5897/5897 +f 5941/5941 5898/5898 5855/5855 +f 5996/5996 5899/5899 5941/5941 +f 5859/5859 5997/5997 5942/5942 +f 5900/5900 5942/5942 5998/5998 +f 5998/5998 5901/5901 5900/5900 +f 5901/5901 5999/5999 5943/5943 +f 5943/5943 6000/6000 5855/5855 +f 5944/5944 5947/5947 5856/5856 +f 5902/5902 6001/6001 5944/5944 +f 5904/5904 6001/6001 5902/5902 +f 5945/5945 5858/5858 5939/5939 +f 5945/5945 5946/5946 5903/5903 +f 6002/6002 5904/5904 5946/5946 +f 5997/5997 5859/5859 5947/5947 +f 5948/5948 5906/5906 6003/6003 +f 5907/5907 5948/5948 6004/6004 +f 5995/5995 5949/5949 5897/5897 +f 5862/5862 5949/5949 5950/5950 +f 5869/5869 5950/5950 6005/6005 +f 5909/5909 6006/6006 5908/5908 +f 5908/5908 6007/6007 5910/5910 +f 5951/5951 5864/5864 6008/6008 +f 5952/5952 5910/5910 6007/6007 +f 5864/5864 5952/5952 6008/6008 +f 5911/5911 5951/5951 6008/6008 +f 5911/5911 6009/6009 5953/5953 +f 6010/6010 5954/5954 5912/5912 +f 5912/5912 5953/5953 6011/6011 +f 5913/5913 5954/5954 6012/6012 +f 5909/5909 5914/5914 6006/6006 +f 5914/5914 5955/5955 6006/6006 +f 5915/5915 6013/6013 5956/5956 +f 6014/6014 5868/5868 5956/5956 +f 5915/5915 5957/5957 6015/6015 +f 5917/5917 5958/5958 5916/5916 +f 6016/6016 5957/5957 5916/5916 +f 6005/6005 5958/5958 5869/5869 +f 5959/5959 5868/5868 6014/6014 +f 5959/5959 5955/5955 5918/5918 +f 5919/5919 5960/5960 5925/5925 +f 5834/5834 5963/5963 5960/5960 +f 5913/5913 6017/6017 5961/5961 +f 6018/6018 5871/5871 5961/5961 +f 6019/6019 5920/5920 5962/5962 +f 6020/6020 5962/5962 5871/5871 +f 5963/5963 5920/5920 6019/6019 +f 5964/5964 6021/6021 5875/5875 +f 5965/5965 5875/5875 6021/6021 +f 5922/5922 5965/5965 6022/6022 +f 5967/5967 5876/5876 5966/5966 +f 6023/6023 5966/5966 5922/5922 +f 5888/5888 5967/5967 5981/5981 +f 5877/5877 6024/6024 5968/5968 +f 5968/5968 6025/6025 5923/5923 +f 5969/5969 5878/5878 5970/5970 +f 5969/5969 6024/6024 5877/5877 +f 5924/5924 5925/5925 6026/6026 +f 6027/6027 5970/5970 5924/5924 +f 5971/5971 5840/5840 5977/5977 +f 5926/5926 5971/5971 6028/6028 +f 5972/5972 5973/5973 5880/5880 +f 6029/6029 5972/5972 5926/5926 +f 5973/5973 5974/5974 5881/5881 +f 5884/5884 5974/5974 5978/5978 +f 5923/5923 6025/6025 5975/5975 +f 5976/5976 6030/6030 5927/5927 +f 5927/5927 6030/6030 5977/5977 +f 5928/5928 5975/5975 6031/6031 +f 6031/6031 5976/5976 5928/5928 +f 5978/5978 6032/6032 5929/5929 +f 6033/6033 5964/5964 5929/5929 +f 5980/5980 5979/5979 5886/5886 +f 6034/6034 5930/5930 5979/5979 +f 5930/5930 5985/5985 5932/5932 +f 5931/5931 6035/6035 5980/5980 +f 5931/5931 5981/5981 6035/6035 +f 5982/5982 5984/5984 5845/5845 +f 6036/6036 5982/5982 5933/5933 +f 5983/5983 5889/5889 5891/5891 +f 5933/5933 5983/5983 6036/6036 +f 5935/5935 5934/5934 6037/6037 +f 5934/5934 5984/5984 6037/6037 +f 5985/5985 5983/5983 5891/5891 +f 5987/5987 5986/5986 5892/5892 +f 5991/5991 5894/5894 5986/5986 +f 5935/5935 6038/6038 5987/5987 +f 5988/5988 5936/5936 6039/6039 +f 5936/5936 5989/5989 6040/6040 +f 5991/5991 5990/5990 5849/5849 +f 5990/5990 6041/6041 5937/5937 +f 6041/6041 5989/5989 5937/5937 +f 5938/5938 6042/6042 5939/5939 +f 5895/5895 5993/5993 5992/5992 +f 5992/5992 6043/6043 5938/5938 +f 6044/6044 5993/5993 5907/5907 +f 5899/5899 5996/5996 5994/5994 +f 6045/6045 5940/5940 5994/5994 +f 6045/6045 5995/5995 5940/5940 +f 6000/6000 5941/5941 5855/5855 +f 5943/5943 5996/5996 5941/5941 +f 5997/5997 6046/6046 5942/5942 +f 5942/5942 6047/6047 5998/5998 +f 5901/5901 5998/5998 5999/5999 +f 5943/5943 5999/5999 6048/6048 +f 5943/5943 5941/5941 6000/6000 +f 5944/5944 6049/6049 5947/5947 +f 6001/6001 6049/6049 5944/5944 +f 6001/6001 5904/5904 6050/6050 +f 6042/6042 5945/5945 5939/5939 +f 5946/5946 5945/5945 6002/6002 +f 6050/6050 5904/5904 6002/6002 +f 6051/6051 5997/5997 5947/5947 +f 6044/6044 5948/5948 6003/6003 +f 6044/6044 6004/6004 5948/5948 +f 6004/6004 6044/6044 5907/5907 +f 5949/5949 5995/5995 6052/6052 +f 6005/6005 5950/5950 5949/5949 +f 6053/6053 5908/5908 6006/6006 +f 5908/5908 6053/6053 6007/6007 +f 5952/5952 6007/6007 6054/6054 +f 6008/6008 5952/5952 6055/6055 +f 6056/6056 5911/5911 6008/6008 +f 6057/6057 6009/6009 5911/5911 +f 6058/6058 5953/5953 6009/6009 +f 6012/6012 5954/5954 6010/6010 +f 6011/6011 6010/6010 5912/5912 +f 6058/6058 6011/6011 5953/5953 +f 6017/6017 5913/5913 6012/6012 +f 6006/6006 5955/5955 6059/6059 +f 6060/6060 6013/6013 5915/5915 +f 5956/5956 6013/6013 6060/6060 +f 6061/6061 6014/6014 5956/5956 +f 6015/6015 6060/6060 5915/5915 +f 6062/6062 6015/6015 5957/5957 +f 5958/5958 6063/6063 5916/5916 +f 6064/6064 5957/5957 6016/6016 +f 5916/5916 6063/6063 6016/6016 +f 6052/6052 5958/5958 6005/6005 +f 6014/6014 6065/6065 5959/5959 +f 6066/6066 5955/5955 5959/5959 +f 5925/5925 5960/5960 6026/6026 +f 5960/5960 5963/5963 6067/6067 +f 6017/6017 6018/6018 5961/5961 +f 5871/5871 6018/6018 6020/6020 +f 6068/6068 6019/6019 5962/5962 +f 5962/5962 6020/6020 6069/6069 +f 6070/6070 5963/5963 6019/6019 +f 5964/5964 6033/6033 6021/6021 +f 5965/5965 6021/6021 6022/6022 +f 6023/6023 5922/5922 6022/6022 +f 5967/5967 5966/5966 6071/6071 +f 6072/6072 5966/5966 6023/6023 +f 6073/6073 5981/5981 5967/5967 +f 6024/6024 6074/6074 5968/5968 +f 5969/5969 5970/5970 6075/6075 +f 6075/6075 6024/6024 5969/5969 +f 6076/6076 5924/5924 6026/6026 +f 5970/5970 6027/6027 6077/6077 +f 6027/6027 5924/5924 6076/6076 +f 5977/5977 6028/6028 5971/5971 +f 6028/6028 6078/6078 5926/5926 +f 5973/5973 5972/5972 6029/6029 +f 5926/5926 6078/6078 6029/6029 +f 5973/5973 5978/5978 5974/5974 +f 6079/6079 6030/6030 5976/5976 +f 6030/6030 6080/6080 5977/5977 +f 6031/6031 5975/5975 6081/6081 +f 6031/6031 6082/6082 5976/5976 +f 6032/6032 6033/6033 5929/5929 +f 6083/6083 6032/6032 5978/5978 +f 6034/6034 5979/5979 5980/5980 +f 6084/6084 5930/5930 6034/6034 +f 5930/5930 6084/6084 5985/5985 +f 5980/5980 6035/6035 6085/6085 +f 5981/5981 6073/6073 6035/6035 +f 6086/6086 5984/5984 5982/5982 +f 6087/6087 5982/5982 6036/6036 +f 6036/6036 5983/5983 5985/5985 +f 5935/5935 6037/6037 6088/6088 +f 6089/6089 6037/6037 5984/5984 +f 5986/5986 5987/5987 6090/6090 +f 6091/6091 5991/5991 5986/5986 +f 5987/5987 6038/6038 6092/6092 +f 5935/5935 6088/6088 6038/6038 +f 5936/5936 6093/6093 6039/6039 +f 5989/5989 6094/6094 6040/6040 +f 6040/6040 6093/6093 5936/5936 +f 5990/5990 5991/5991 6091/6091 +f 6095/6095 6041/6041 5990/5990 +f 5989/5989 6041/6041 6094/6094 +f 6096/6096 6042/6042 5938/5938 +f 5992/5992 5993/5993 6097/6097 +f 5992/5992 6098/6098 6043/6043 +f 6043/6043 6099/6099 5938/5938 +f 5993/5993 6044/6044 6100/6100 +f 5996/5996 6101/6101 5994/5994 +f 6101/6101 6045/6045 5994/5994 +f 6102/6102 5995/5995 6045/6045 +f 5996/5996 5943/5943 6101/6101 +f 5997/5997 6051/6051 6046/6046 +f 6046/6046 6047/6047 5942/5942 +f 6047/6047 5999/5999 5998/5998 +f 6103/6103 5943/5943 6048/6048 +f 5999/5999 6104/6104 6048/6048 +f 6051/6051 5947/5947 6049/6049 +f 6049/6049 6001/6001 6105/6105 +f 6105/6105 6001/6001 6050/6050 +f 5945/5945 6042/6042 6106/6106 +f 6002/6002 5945/5945 6107/6107 +f 6002/6002 6108/6108 6050/6050 +f 6003/6003 6109/6109 6044/6044 +f 6052/6052 6005/6005 5949/5949 +f 6110/6110 6052/6052 5995/5995 +f 6053/6053 6006/6006 6059/6059 +f 6053/6053 6111/6111 6007/6007 +f 6007/6007 6112/6112 6054/6054 +f 6054/6054 6055/6055 5952/5952 +f 6008/6008 6055/6055 6056/6056 +f 5911/5911 6056/6056 6113/6113 +f 6057/6057 6114/6114 6009/6009 +f 6057/6057 5911/5911 6113/6113 +f 6058/6058 6009/6009 6114/6114 +f 6012/6012 6010/6010 6115/6115 +f 6011/6011 6116/6116 6010/6010 +f 6117/6117 6011/6011 6058/6058 +f 6012/6012 6118/6118 6017/6017 +f 5955/5955 6066/6066 6059/6059 +f 6060/6060 6061/6061 5956/5956 +f 6061/6061 6119/6119 6014/6014 +f 6120/6120 6060/6060 6015/6015 +f 5957/5957 6064/6064 6062/6062 +f 6015/6015 6062/6062 6120/6120 +f 5958/5958 6016/6016 6063/6063 +f 6064/6064 6016/6016 6121/6121 +f 6052/6052 6121/6121 5958/5958 +f 6014/6014 6119/6119 6065/6065 +f 6066/6066 5959/5959 6065/6065 +f 6026/6026 5960/5960 6067/6067 +f 6067/6067 5963/5963 6070/6070 +f 6122/6122 6018/6018 6017/6017 +f 6122/6122 6020/6020 6018/6018 +f 6019/6019 6068/6068 6123/6123 +f 6069/6069 6068/6068 5962/5962 +f 6020/6020 6122/6122 6069/6069 +f 6070/6070 6019/6019 6124/6124 +f 6021/6021 6033/6033 6125/6125 +f 6021/6021 6126/6126 6022/6022 +f 6023/6023 6022/6022 6127/6127 +f 6128/6128 5967/5967 6071/6071 +f 6071/6071 5966/5966 6072/6072 +f 6129/6129 6072/6072 6023/6023 +f 5967/5967 6128/6128 6073/6073 +f 6074/6074 6024/6024 6075/6075 +f 5970/5970 6077/6077 6075/6075 +f 6026/6026 6067/6067 6076/6076 +f 6027/6027 6130/6130 6077/6077 +f 6076/6076 6067/6067 6027/6027 +f 6080/6080 6028/6028 5977/5977 +f 6080/6080 6078/6078 6028/6028 +f 5978/5978 5973/5973 6029/6029 +f 6078/6078 6131/6131 6029/6029 +f 6079/6079 6132/6132 6030/6030 +f 5976/5976 6133/6133 6079/6079 +f 6132/6132 6080/6080 6030/6030 +f 6134/6134 6031/6031 6081/6081 +f 6134/6134 6082/6082 6031/6031 +f 6082/6082 6133/6133 5976/5976 +f 6135/6135 6033/6033 6032/6032 +f 6032/6032 6083/6083 6136/6136 +f 6083/6083 5978/5978 6137/6137 +f 6138/6138 6034/6034 5980/5980 +f 6139/6139 6084/6084 6034/6034 +f 5985/5985 6084/6084 6140/6140 +f 5980/5980 6085/6085 6138/6138 +f 6073/6073 6085/6085 6035/6035 +f 6089/6089 5984/5984 6086/6086 +f 6087/6087 6086/6086 5982/5982 +f 6139/6139 6087/6087 6036/6036 +f 6140/6140 6036/6036 5985/5985 +f 6088/6088 6037/6037 6089/6089 +f 5987/5987 6092/6092 6090/6090 +f 5986/5986 6090/6090 6091/6091 +f 6092/6092 6038/6038 6141/6141 +f 6141/6141 6038/6038 6088/6088 +f 6093/6093 6142/6142 6039/6039 +f 6143/6143 6040/6040 6094/6094 +f 6093/6093 6040/6040 6143/6143 +f 6091/6091 6095/6095 5990/5990 +f 6095/6095 6144/6144 6041/6041 +f 6041/6041 6144/6144 6094/6094 +f 6096/6096 6106/6106 6042/6042 +f 6096/6096 5938/5938 6099/6099 +f 6097/6097 5993/5993 6100/6100 +f 5992/5992 6097/6097 6098/6098 +f 6098/6098 6145/6145 6043/6043 +f 6146/6146 6099/6099 6043/6043 +f 6147/6147 6100/6100 6044/6044 +f 6101/6101 6148/6148 6045/6045 +f 6045/6045 6148/6148 6102/6102 +f 6110/6110 5995/5995 6102/6102 +f 6103/6103 6101/6101 5943/5943 +f 6051/6051 6149/6149 6046/6046 +f 6047/6047 6046/6046 6150/6150 +f 5999/5999 6047/6047 6151/6151 +f 6103/6103 6048/6048 6152/6152 +f 6104/6104 5999/5999 6151/6151 +f 6152/6152 6048/6048 6104/6104 +f 6105/6105 6051/6051 6049/6049 +f 6108/6108 6105/6105 6050/6050 +f 5945/5945 6106/6106 6107/6107 +f 6153/6153 6002/6002 6107/6107 +f 6153/6153 6108/6108 6002/6002 +f 6109/6109 6154/6154 6044/6044 +f 6155/6155 6109/6109 6003/6003 +f 6052/6052 6110/6110 6156/6156 +f 6053/6053 6059/6059 6157/6157 +f 6053/6053 6158/6158 6111/6111 +f 6112/6112 6007/6007 6111/6111 +f 6054/6054 6112/6112 6159/6159 +f 6160/6160 6055/6055 6054/6054 +f 6056/6056 6055/6055 6161/6161 +f 6113/6113 6056/6056 6161/6161 +f 6114/6114 6057/6057 6162/6162 +f 6163/6163 6057/6057 6113/6113 +f 6114/6114 6164/6164 6058/6058 +f 6115/6115 6165/6165 6012/6012 +f 6010/6010 6166/6166 6115/6115 +f 6010/6010 6116/6116 6167/6167 +f 6117/6117 6116/6116 6011/6011 +f 6117/6117 6058/6058 6164/6164 +f 6118/6118 6012/6012 6165/6165 +f 6118/6118 6165/6165 6017/6017 +f 6059/6059 6066/6066 6168/6168 +f 6061/6061 6060/6060 6120/6120 +f 6169/6169 6119/6119 6061/6061 +f 6170/6170 6062/6062 6064/6064 +f 6062/6062 6171/6171 6120/6120 +f 6016/6016 5958/5958 6121/6121 +f 6064/6064 6121/6121 6170/6170 +f 6121/6121 6052/6052 6170/6170 +f 6119/6119 6169/6169 6065/6065 +f 6065/6065 6168/6168 6066/6066 +f 6130/6130 6067/6067 6070/6070 +f 6122/6122 6017/6017 6172/6172 +f 6173/6173 6123/6123 6068/6068 +f 6123/6123 6124/6124 6019/6019 +f 6068/6068 6069/6069 6174/6174 +f 6069/6069 6122/6122 6175/6175 +f 6124/6124 6176/6176 6070/6070 +f 6126/6126 6021/6021 6125/6125 +f 6033/6033 6135/6135 6125/6125 +f 6177/6177 6022/6022 6126/6126 +f 6127/6127 6129/6129 6023/6023 +f 6178/6178 6127/6127 6022/6022 +f 6128/6128 6071/6071 6179/6179 +f 6072/6072 6129/6129 6071/6071 +f 6073/6073 6128/6128 6180/6180 +f 6077/6077 6130/6130 6181/6181 +f 6027/6027 6067/6067 6130/6130 +f 6182/6182 6078/6078 6080/6080 +f 6029/6029 6137/6137 5978/5978 +f 6183/6183 6131/6131 6078/6078 +f 6131/6131 6137/6137 6029/6029 +f 6132/6132 6079/6079 6184/6184 +f 6185/6185 6079/6079 6133/6133 +f 6182/6182 6080/6080 6132/6132 +f 6081/6081 6186/6186 6134/6134 +f 6187/6187 6082/6082 6134/6134 +f 6133/6133 6082/6082 6188/6188 +f 6032/6032 6189/6189 6135/6135 +f 6083/6083 6137/6137 6136/6136 +f 6136/6136 6189/6189 6032/6032 +f 6138/6138 6180/6180 6034/6034 +f 6034/6034 6180/6180 6139/6139 +f 6084/6084 6139/6139 6140/6140 +f 6085/6085 6190/6190 6138/6138 +f 6085/6085 6073/6073 6190/6190 +f 6086/6086 6191/6191 6089/6089 +f 6087/6087 6192/6192 6086/6086 +f 6087/6087 6139/6139 6193/6193 +f 6140/6140 6139/6139 6036/6036 +f 6089/6089 6194/6194 6088/6088 +f 6090/6090 6092/6092 6195/6195 +f 6090/6090 6196/6196 6091/6091 +f 6197/6197 6092/6092 6141/6141 +f 6141/6141 6088/6088 6194/6194 +f 6142/6142 6093/6093 6198/6198 +f 6144/6144 6143/6143 6094/6094 +f 6093/6093 6143/6143 6198/6198 +f 6199/6199 6095/6095 6091/6091 +f 6095/6095 6200/6200 6144/6144 +f 6201/6201 6106/6106 6096/6096 +f 6099/6099 6202/6202 6096/6096 +f 6100/6100 6203/6203 6097/6097 +f 6098/6098 6097/6097 6204/6204 +f 6145/6145 6098/6098 6204/6204 +f 6205/6205 6043/6043 6145/6145 +f 6146/6146 6202/6202 6099/6099 +f 6206/6206 6146/6146 6043/6043 +f 6207/6207 6100/6100 6147/6147 +f 6044/6044 6154/6154 6147/6147 +f 6103/6103 6148/6148 6101/6101 +f 6208/6208 6102/6102 6148/6148 +f 6209/6209 6110/6110 6102/6102 +f 6149/6149 6051/6051 6105/6105 +f 6046/6046 6149/6149 6210/6210 +f 6151/6151 6047/6047 6150/6150 +f 6211/6211 6150/6150 6046/6046 +f 6152/6152 6148/6148 6103/6103 +f 6211/6211 6104/6104 6151/6151 +f 6104/6104 6212/6212 6152/6152 +f 6105/6105 6108/6108 6213/6213 +f 6106/6106 6201/6201 6107/6107 +f 6214/6214 6153/6153 6107/6107 +f 6108/6108 6153/6153 6214/6214 +f 6109/6109 6215/6215 6154/6154 +f 6109/6109 6155/6155 6216/6216 +f 6110/6110 6209/6209 6156/6156 +f 6170/6170 6052/6052 6156/6156 +f 6059/6059 6217/6217 6157/6157 +f 6158/6158 6053/6053 6157/6157 +f 6158/6158 6218/6218 6111/6111 +f 6218/6218 6112/6112 6111/6111 +f 6160/6160 6054/6054 6159/6159 +f 6112/6112 6219/6219 6159/6159 +f 6055/6055 6160/6160 6161/6161 +f 6163/6163 6113/6113 6161/6161 +f 6162/6162 6164/6164 6114/6114 +f 6162/6162 6057/6057 6220/6220 +f 6163/6163 6220/6220 6057/6057 +f 6115/6115 6221/6221 6165/6165 +f 6010/6010 6167/6167 6166/6166 +f 6115/6115 6166/6166 6222/6222 +f 6116/6116 6223/6223 6167/6167 +f 6224/6224 6116/6116 6117/6117 +f 6164/6164 6224/6224 6117/6117 +f 6017/6017 6165/6165 6172/6172 +f 6217/6217 6059/6059 6168/6168 +f 6225/6225 6061/6061 6120/6120 +f 6225/6225 6169/6169 6061/6061 +f 6171/6171 6062/6062 6170/6170 +f 6120/6120 6171/6171 6226/6226 +f 6065/6065 6169/6169 6227/6227 +f 6227/6227 6168/6168 6065/6065 +f 6228/6228 6130/6130 6070/6070 +f 6172/6172 6175/6175 6122/6122 +f 6173/6173 6229/6229 6123/6123 +f 6174/6174 6173/6173 6068/6068 +f 6123/6123 6229/6229 6124/6124 +f 6175/6175 6174/6174 6069/6069 +f 6230/6230 6176/6176 6124/6124 +f 6176/6176 6228/6228 6070/6070 +f 6125/6125 6231/6231 6126/6126 +f 6135/6135 6189/6189 6125/6125 +f 6231/6231 6177/6177 6126/6126 +f 6177/6177 6178/6178 6022/6022 +f 6127/6127 6232/6232 6129/6129 +f 6127/6127 6178/6178 6233/6233 +f 6071/6071 6234/6234 6179/6179 +f 6128/6128 6179/6179 6235/6235 +f 6234/6234 6071/6071 6129/6129 +f 6128/6128 6235/6235 6180/6180 +f 6180/6180 6190/6190 6073/6073 +f 6130/6130 6236/6236 6181/6181 +f 6078/6078 6182/6182 6183/6183 +f 6131/6131 6183/6183 6237/6237 +f 6137/6137 6131/6131 6238/6238 +f 6185/6185 6184/6184 6079/6079 +f 6184/6184 6182/6182 6132/6132 +f 6239/6239 6185/6185 6133/6133 +f 6240/6240 6186/6186 6081/6081 +f 6186/6186 6187/6187 6134/6134 +f 6187/6187 6188/6188 6082/6082 +f 6239/6239 6133/6133 6188/6188 +f 6136/6136 6137/6137 6241/6241 +f 6189/6189 6136/6136 6242/6242 +f 6190/6190 6180/6180 6138/6138 +f 6193/6193 6139/6139 6180/6180 +f 6086/6086 6243/6243 6191/6191 +f 6191/6191 6197/6197 6089/6089 +f 6244/6244 6192/6192 6087/6087 +f 6086/6086 6192/6192 6245/6245 +f 6244/6244 6087/6087 6193/6193 +f 6194/6194 6089/6089 6141/6141 +f 6195/6195 6092/6092 6197/6197 +f 6196/6196 6090/6090 6195/6195 +f 6199/6199 6091/6091 6196/6196 +f 6089/6089 6197/6197 6141/6141 +f 6142/6142 6198/6198 6246/6246 +f 6144/6144 6247/6247 6143/6143 +f 6198/6198 6143/6143 6248/6248 +f 6095/6095 6199/6199 6249/6249 +f 6200/6200 6095/6095 6249/6249 +f 6144/6144 6200/6200 6250/6250 +f 6201/6201 6096/6096 6202/6202 +f 6203/6203 6100/6100 6251/6251 +f 6204/6204 6097/6097 6203/6203 +f 6204/6204 6252/6252 6145/6145 +f 6206/6206 6043/6043 6205/6205 +f 6145/6145 6252/6252 6205/6205 +f 6146/6146 6253/6253 6202/6202 +f 6146/6146 6206/6206 6253/6253 +f 6100/6100 6207/6207 6251/6251 +f 6207/6207 6147/6147 6254/6254 +f 6254/6254 6147/6147 6154/6154 +f 6208/6208 6209/6209 6102/6102 +f 6148/6148 6255/6255 6208/6208 +f 6105/6105 6213/6213 6149/6149 +f 35862/38389 6210/6210 6149/6149 +f 35863/38390 35862/38389 6149/6149 +f 6210/6210 6211/6211 6046/6046 +f 6150/6150 6211/6211 6151/6151 +f 6152/6152 6255/6255 6148/6148 +f 35864/38391 6104/6104 6211/6211 +f 35865/38392 35864/38391 6211/6211 +f 35866/38393 6212/6212 6104/6104 +f 35864/38394 35866/38393 6104/6104 +f 35867/38395 6152/6152 6212/6212 +f 35868/38396 35867/38395 6212/6212 +f 6214/6214 6213/6213 6108/6108 +f 6201/6201 6214/6214 6107/6107 +f 6154/6154 6215/6215 6254/6254 +f 6216/6216 6215/6215 6109/6109 +f 6209/6209 6256/6256 6156/6156 +f 6257/6257 6170/6170 6156/6156 +f 6157/6157 6217/6217 6258/6258 +f 6259/6259 6158/6158 6157/6157 +f 6158/6158 6260/6260 6218/6218 +f 6218/6218 6261/6261 6112/6112 +f 6159/6159 6262/6262 6160/6160 +f 6219/6219 6112/6112 6263/6263 +f 6219/6219 6262/6262 6159/6159 +f 6160/6160 6264/6264 6161/6161 +f 6265/6265 6163/6163 6161/6161 +f 6164/6164 6162/6162 6266/6266 +f 6220/6220 6267/6267 6162/6162 +f 6265/6265 6220/6220 6163/6163 +f 6221/6221 6115/6115 6222/6222 +f 6221/6221 6172/6172 6165/6165 +f 6166/6166 6167/6167 6268/6268 +f 6166/6166 6269/6269 6222/6222 +f 6223/6223 6116/6116 6224/6224 +f 6167/6167 6223/6223 6268/6268 +f 6164/6164 6270/6270 6224/6224 +f 6168/6168 6258/6258 6217/6217 +f 6226/6226 6225/6225 6120/6120 +f 6225/6225 6271/6271 6169/6169 +f 6272/6272 6171/6171 6170/6170 +f 6272/6272 6226/6226 6171/6171 +f 6169/6169 6271/6271 6227/6227 +f 6227/6227 6273/6273 6168/6168 +f 6130/6130 6228/6228 6274/6274 +f 6172/6172 6275/6275 6175/6175 +f 6229/6229 6173/6173 6276/6276 +f 6173/6173 6174/6174 6275/6275 +f 6230/6230 6124/6124 6229/6229 +f 6275/6275 6174/6174 6175/6175 +f 6277/6277 6176/6176 6230/6230 +f 6228/6228 6176/6176 6278/6278 +f 6231/6231 6125/6125 6189/6189 +f 6231/6231 6178/6178 6177/6177 +f 6129/6129 6232/6232 6234/6234 +f 6233/6233 6232/6232 6127/6127 +f 6279/6279 6233/6233 6178/6178 +f 6280/6280 6179/6179 6234/6234 +f 6280/6280 6235/6235 6179/6179 +f 6235/6235 6193/6193 6180/6180 +f 6274/6274 6236/6236 6130/6130 +f 6182/6182 6281/6281 6183/6183 +f 6183/6183 6282/6282 6237/6237 +f 6131/6131 6237/6237 6283/6283 +f 6238/6238 6131/6131 6283/6283 +f 6238/6238 6284/6284 6137/6137 +f 6184/6184 6185/6185 6285/6285 +f 6182/6182 6184/6184 6285/6285 +f 6239/6239 6286/6286 6185/6185 +f 6287/6287 6186/6186 6240/6240 +f 6187/6187 6186/6186 6288/6288 +f 6289/6289 6188/6188 6187/6187 +f 6188/6188 6290/6290 6239/6239 +f 6284/6284 6241/6241 6137/6137 +f 6136/6136 6241/6241 6291/6291 +f 6189/6189 6242/6242 6292/6292 +f 6242/6242 6136/6136 6291/6291 +f 6086/6086 6293/6293 6243/6243 +f 6243/6243 6197/6197 6191/6191 +f 6192/6192 6244/6244 6294/6294 +f 6192/6192 6295/6295 6245/6245 +f 6296/6296 6086/6086 6245/6245 +f 6193/6193 6235/6235 6244/6244 +f 6195/6195 6197/6197 6297/6297 +f 6297/6297 6196/6196 6195/6195 +f 6196/6196 6298/6298 6199/6199 +f 6246/6246 6198/6198 6299/6299 +f 6247/6247 6144/6144 6250/6250 +f 6143/6143 6247/6247 6248/6248 +f 6198/6198 6248/6248 6299/6299 +f 6199/6199 6298/6298 6249/6249 +f 6249/6249 6300/6300 6200/6200 +f 6250/6250 6200/6200 6301/6301 +f 6202/6202 6253/6253 6201/6201 +f 6204/6204 6203/6203 6251/6251 +f 6302/6302 6252/6252 6204/6204 +f 6303/6303 6206/6206 6205/6205 +f 6252/6252 6303/6303 6205/6205 +f 6253/6253 6206/6206 6304/6304 +f 6207/6207 6302/6302 6251/6251 +f 6305/6305 6207/6207 6254/6254 +f 6256/6256 6209/6209 6208/6208 +f 6256/6256 6208/6208 6255/6255 +f 35869/38397 6149/6149 6213/6213 +f 35870/38398 35869/38397 6213/6213 +f 6149/6149 35869/38399 35863/38400 +f 6210/6210 35862/38401 35871/38402 +f 35865/38403 6211/6211 6210/6210 +f 35871/38404 35865/38403 6210/6210 +f 35872/38405 6255/6255 6152/6152 +f 35867/38406 35872/38405 6152/6152 +f 6212/6212 35866/38407 35873/38408 +f 6212/6212 35874/38409 35868/38410 +f 6306/6306 6213/6213 6214/6214 +f 6253/6253 6214/6214 6201/6201 +f 6254/6254 6215/6215 6307/6307 +f 6215/6215 6216/6216 6307/6307 +f 6256/6256 6257/6257 6156/6156 +f 6257/6257 6272/6272 6170/6170 +f 6258/6258 6308/6308 6157/6157 +f 6308/6308 6259/6259 6157/6157 +f 6259/6259 6260/6260 6158/6158 +f 6261/6261 6218/6218 6260/6260 +f 6112/6112 6261/6261 6309/6309 +f 6310/6310 6160/6160 6262/6262 +f 6263/6263 6311/6311 6219/6219 +f 6112/6112 6309/6309 6263/6263 +f 6262/6262 6219/6219 6312/6312 +f 6160/6160 6313/6313 6264/6264 +f 6161/6161 6264/6264 6265/6265 +f 6164/6164 6266/6266 6314/6314 +f 6266/6266 6162/6162 6315/6315 +f 6265/6265 6267/6267 6220/6220 +f 6315/6315 6162/6162 6267/6267 +f 6316/6316 6221/6221 6222/6222 +f 6172/6172 6221/6221 6275/6275 +f 6166/6166 6268/6268 6269/6269 +f 6269/6269 6317/6317 6222/6222 +f 6223/6223 6224/6224 6270/6270 +f 6318/6318 6268/6268 6223/6223 +f 6314/6314 6270/6270 6164/6164 +f 6258/6258 6168/6168 6319/6319 +f 6225/6225 6226/6226 6271/6271 +f 6272/6272 6320/6320 6226/6226 +f 6271/6271 6273/6273 6227/6227 +f 6319/6319 6168/6168 6273/6273 +f 6321/6321 6274/6274 6228/6228 +f 6322/6322 6276/6276 6173/6173 +f 6276/6276 6230/6230 6229/6229 +f 6173/6173 6275/6275 6322/6322 +f 6176/6176 6277/6277 6278/6278 +f 6276/6276 6277/6277 6230/6230 +f 6321/6321 6228/6228 6278/6278 +f 6323/6323 6231/6231 6189/6189 +f 6231/6231 6324/6324 6178/6178 +f 6234/6234 6232/6232 6325/6325 +f 6233/6233 6326/6326 6232/6232 +f 6326/6326 6233/6233 6279/6279 +f 6279/6279 6178/6178 6324/6324 +f 6234/6234 6325/6325 6280/6280 +f 6235/6235 6280/6280 6327/6327 +f 6274/6274 6328/6328 6236/6236 +f 6281/6281 6182/6182 6285/6285 +f 6183/6183 6281/6281 6329/6329 +f 6330/6330 6237/6237 6282/6282 +f 6282/6282 6183/6183 6329/6329 +f 6237/6237 6330/6330 6283/6283 +f 6283/6283 6284/6284 6238/6238 +f 6285/6285 6185/6185 6286/6286 +f 6239/6239 6331/6331 6286/6286 +f 6186/6186 6287/6287 6288/6288 +f 6332/6332 6287/6287 6240/6240 +f 6288/6288 6289/6289 6187/6187 +f 6188/6188 6289/6289 6333/6333 +f 6334/6334 6239/6239 6290/6290 +f 6290/6290 6188/6188 6333/6333 +f 6284/6284 6335/6335 6241/6241 +f 6241/6241 6335/6335 6291/6291 +f 6292/6292 6242/6242 6291/6291 +f 6336/6336 6189/6189 6292/6292 +f 6337/6337 6293/6293 6086/6086 +f 6293/6293 6338/6338 6243/6243 +f 6243/6243 6339/6339 6197/6197 +f 6294/6294 6244/6244 6235/6235 +f 6340/6340 6192/6192 6294/6294 +f 6340/6340 6295/6295 6192/6192 +f 6295/6295 6341/6341 6245/6245 +f 6086/6086 6296/6296 6342/6342 +f 6343/6343 6296/6296 6245/6245 +f 6197/6197 6339/6339 6297/6297 +f 6298/6298 6196/6196 6297/6297 +f 6247/6247 6250/6250 6344/6344 +f 6247/6247 6344/6344 6248/6248 +f 6248/6248 6345/6345 6299/6299 +f 6249/6249 6298/6298 6346/6346 +f 6249/6249 6346/6346 6300/6300 +f 6347/6347 6200/6200 6300/6300 +f 6348/6348 6250/6250 6301/6301 +f 6347/6347 6301/6301 6200/6200 +f 6302/6302 6204/6204 6251/6251 +f 6302/6302 6349/6349 6252/6252 +f 6206/6206 6303/6303 6304/6304 +f 6349/6349 6303/6303 6252/6252 +f 6214/6214 6253/6253 6304/6304 +f 6302/6302 6207/6207 6350/6350 +f 6350/6350 6207/6207 6305/6305 +f 6307/6307 6305/6305 6254/6254 +f 35875/38411 6256/6256 6255/6255 +f 35872/38412 35875/38411 6255/6255 +f 35870/38413 6213/6213 6306/6306 +f 35876/38414 35870/38413 6306/6306 +f 6212/6212 35873/38415 35874/38416 +f 6351/6351 6306/6306 6214/6214 +f 6257/6257 6256/6256 6352/6352 +f 6320/6320 6272/6272 6257/6257 +f 6353/6353 6308/6308 6258/6258 +f 6354/6354 6259/6259 6308/6308 +f 6355/6355 6260/6260 6259/6259 +f 6260/6260 6356/6356 6261/6261 +f 6261/6261 6357/6357 6309/6309 +f 6310/6310 6313/6313 6160/6160 +f 6312/6312 6310/6310 6262/6262 +f 6311/6311 6263/6263 6358/6358 +f 6219/6219 6311/6311 6312/6312 +f 6263/6263 6309/6309 6358/6358 +f 6313/6313 6359/6359 6264/6264 +f 6265/6265 6264/6264 6360/6360 +f 6315/6315 6314/6314 6266/6266 +f 6360/6360 6267/6267 6265/6265 +f 6315/6315 6267/6267 6361/6361 +f 6316/6316 6275/6275 6221/6221 +f 6362/6362 6316/6316 6222/6222 +f 6363/6363 6269/6269 6268/6268 +f 6317/6317 6269/6269 6362/6362 +f 6222/6222 6317/6317 6362/6362 +f 6318/6318 6223/6223 6270/6270 +f 6318/6318 6363/6363 6268/6268 +f 6314/6314 6318/6318 6270/6270 +f 6364/6364 6258/6258 6319/6319 +f 6226/6226 6320/6320 6271/6271 +f 6365/6365 6273/6273 6271/6271 +f 6273/6273 6365/6365 6319/6319 +f 6366/6366 6274/6274 6321/6321 +f 6322/6322 6367/6367 6276/6276 +f 6275/6275 6367/6367 6322/6322 +f 6277/6277 6368/6368 6278/6278 +f 6277/6277 6276/6276 6369/6369 +f 6370/6370 6321/6321 6278/6278 +f 6231/6231 6323/6323 6324/6324 +f 6323/6323 6189/6189 6336/6336 +f 6325/6325 6232/6232 6326/6326 +f 6279/6279 6371/6371 6326/6326 +f 6324/6324 6372/6372 6279/6279 +f 6325/6325 6327/6327 6280/6280 +f 6294/6294 6235/6235 6327/6327 +f 6328/6328 6274/6274 6366/6366 +f 6236/6236 6328/6328 6373/6373 +f 6285/6285 6374/6374 6281/6281 +f 6281/6281 6375/6375 6329/6329 +f 6376/6376 6330/6330 6282/6282 +f 6377/6377 6282/6282 6329/6329 +f 6330/6330 6378/6378 6283/6283 +f 6283/6283 6379/6379 6284/6284 +f 6286/6286 6374/6374 6285/6285 +f 6374/6374 6286/6286 6331/6331 +f 6334/6334 6331/6331 6239/6239 +f 6287/6287 6332/6332 6288/6288 +f 6240/6240 6380/6380 6332/6332 +f 6333/6333 6289/6289 6288/6288 +f 6381/6381 6334/6334 6290/6290 +f 6333/6333 6381/6381 6290/6290 +f 6284/6284 6382/6382 6335/6335 +f 6291/6291 6335/6335 6383/6383 +f 6291/6291 6336/6336 6292/6292 +f 6337/6337 6384/6384 6293/6293 +f 6086/6086 6342/6342 6337/6337 +f 6338/6338 6293/6293 6385/6385 +f 6243/6243 6338/6338 6386/6386 +f 6243/6243 6387/6387 6339/6339 +f 6340/6340 6294/6294 6327/6327 +f 6295/6295 6340/6340 6327/6327 +f 6341/6341 6343/6343 6245/6245 +f 6341/6341 6295/6295 6388/6388 +f 6296/6296 6389/6389 6342/6342 +f 6390/6390 6296/6296 6343/6343 +f 6339/6339 6391/6391 6297/6297 +f 6391/6391 6298/6298 6297/6297 +f 6348/6348 6344/6344 6250/6250 +f 6344/6344 6345/6345 6248/6248 +f 6299/6299 6345/6345 6392/6392 +f 6298/6298 6393/6393 6346/6346 +f 6394/6394 6300/6300 6346/6346 +f 6347/6347 6300/6300 6395/6395 +f 6301/6301 6396/6396 6348/6348 +f 6397/6397 6301/6301 6347/6347 +f 6350/6350 6349/6349 6302/6302 +f 6303/6303 6398/6398 6304/6304 +f 6349/6349 6398/6398 6303/6303 +f 6351/6351 6214/6214 6304/6304 +f 6399/6399 6350/6350 6305/6305 +f 6305/6305 6307/6307 6400/6400 +f 35877/38417 6352/6352 6256/6256 +f 35875/38418 35877/38417 6256/6256 +f 6306/6306 35878/38419 35876/38420 +f 6401/6401 6306/6306 6351/6351 +f 6402/6402 6257/6257 6352/6352 +f 6403/6403 6320/6320 6257/6257 +f 6364/6364 6308/6308 6353/6353 +f 6258/6258 6364/6364 6353/6353 +f 6259/6259 6354/6354 6404/6404 +f 6405/6405 6354/6354 6308/6308 +f 6355/6355 6356/6356 6260/6260 +f 6355/6355 6259/6259 6404/6404 +f 6406/6406 6261/6261 6356/6356 +f 6261/6261 6406/6406 6357/6357 +f 6309/6309 6357/6357 6358/6358 +f 6359/6359 6313/6313 6310/6310 +f 6407/6407 6310/6310 6312/6312 +f 6311/6311 6358/6358 6408/6408 +f 6311/6311 6408/6408 6312/6312 +f 6359/6359 6409/6409 6264/6264 +f 6360/6360 6264/6264 6409/6409 +f 6410/6410 6314/6314 6315/6315 +f 6267/6267 6360/6360 6361/6361 +f 6361/6361 6410/6410 6315/6315 +f 6275/6275 6316/6316 6411/6411 +f 6316/6316 6362/6362 6411/6411 +f 6363/6363 6412/6412 6269/6269 +f 6412/6412 6362/6362 6269/6269 +f 6413/6413 6363/6363 6318/6318 +f 6318/6318 6314/6314 6414/6414 +f 6319/6319 6415/6415 6364/6364 +f 6271/6271 6320/6320 6416/6416 +f 6416/6416 6365/6365 6271/6271 +f 6365/6365 6415/6415 6319/6319 +f 6366/6366 6321/6321 6417/6417 +f 6418/6418 6276/6276 6367/6367 +f 6367/6367 6275/6275 6411/6411 +f 6370/6370 6278/6278 6368/6368 +f 6277/6277 6369/6369 6368/6368 +f 6276/6276 6419/6419 6369/6369 +f 6321/6321 6370/6370 6417/6417 +f 6324/6324 6323/6323 6372/6372 +f 6372/6372 6323/6323 6336/6336 +f 6326/6326 6388/6388 6325/6325 +f 6326/6326 6371/6371 6420/6420 +f 6372/6372 6371/6371 6279/6279 +f 6388/6388 6327/6327 6325/6325 +f 6373/6373 6328/6328 6366/6366 +f 6374/6374 6421/6421 6281/6281 +f 6375/6375 6281/6281 6421/6421 +f 6422/6422 6329/6329 6375/6375 +f 6376/6376 6378/6378 6330/6330 +f 6376/6376 6282/6282 6377/6377 +f 6329/6329 6422/6422 6377/6377 +f 6379/6379 6283/6283 6378/6378 +f 6382/6382 6284/6284 6379/6379 +f 6374/6374 6331/6331 6423/6423 +f 6333/6333 6288/6288 6332/6332 +f 6424/6424 6332/6332 6380/6380 +f 6334/6334 6381/6381 6425/6425 +f 6333/6333 6425/6425 6381/6381 +f 6426/6426 6335/6335 6382/6382 +f 6426/6426 6383/6383 6335/6335 +f 6336/6336 6291/6291 6383/6383 +f 6384/6384 6427/6427 6293/6293 +f 6337/6337 6342/6342 6384/6384 +f 6293/6293 6428/6428 6385/6385 +f 6338/6338 6385/6385 6429/6429 +f 6386/6386 6338/6338 6430/6430 +f 6386/6386 6387/6387 6243/6243 +f 6339/6339 6387/6387 6431/6431 +f 6327/6327 6388/6388 6295/6295 +f 6343/6343 6341/6341 6432/6432 +f 6341/6341 6388/6388 6420/6420 +f 6342/6342 6389/6389 6433/6433 +f 6389/6389 6296/6296 6390/6390 +f 6343/6343 6432/6432 6390/6390 +f 6339/6339 6434/6434 6391/6391 +f 6435/6435 6298/6298 6391/6391 +f 6348/6348 6436/6436 6344/6344 +f 6344/6344 6436/6436 6345/6345 +f 6437/6437 6392/6392 6345/6345 +f 6392/6392 6438/6438 6299/6299 +f 6393/6393 6298/6298 6435/6435 +f 6346/6346 6393/6393 6439/6439 +f 6439/6439 6394/6394 6346/6346 +f 6395/6395 6300/6300 6394/6394 +f 6347/6347 6395/6395 6397/6397 +f 6440/6440 6396/6396 6301/6301 +f 6348/6348 6396/6396 6436/6436 +f 6440/6440 6301/6301 6397/6397 +f 6399/6399 6349/6349 6350/6350 +f 6398/6398 6351/6351 6304/6304 +f 6441/6441 6398/6398 6349/6349 +f 6399/6399 6305/6305 6400/6400 +f 6352/6352 35877/38421 35879/38422 +f 35878/38423 6306/6306 6401/6401 +f 35880/38424 35878/38423 6401/6401 +f 6401/6401 6351/6351 6398/6398 +f 6257/6257 6402/6402 6403/6403 +f 35881/38425 6402/6402 6352/6352 +f 35879/38426 35881/38425 6352/6352 +f 6403/6403 6416/6416 6320/6320 +f 6405/6405 6308/6308 6364/6364 +f 6404/6404 6354/6354 6405/6405 +f 6404/6404 6356/6356 6355/6355 +f 6406/6406 6356/6356 6442/6442 +f 6357/6357 6406/6406 6443/6443 +f 6444/6444 6358/6358 6357/6357 +f 6310/6310 6445/6445 6359/6359 +f 6445/6445 6310/6310 6407/6407 +f 6312/6312 6446/6446 6407/6407 +f 6408/6408 6358/6358 6447/6447 +f 6312/6312 6408/6408 6446/6446 +f 6359/6359 6448/6448 6409/6409 +f 6360/6360 6409/6409 6449/6449 +f 6410/6410 6414/6414 6314/6314 +f 6449/6449 6361/6361 6360/6360 +f 6361/6361 6414/6414 6410/6410 +f 6362/6362 6450/6450 6411/6411 +f 6412/6412 6363/6363 6451/6451 +f 6450/6450 6362/6362 6412/6412 +f 6452/6452 6363/6363 6413/6413 +f 6318/6318 6414/6414 6413/6413 +f 6453/6453 6364/6364 6415/6415 +f 6415/6415 6365/6365 6416/6416 +f 6417/6417 6454/6454 6366/6366 +f 6419/6419 6276/6276 6418/6418 +f 6411/6411 6418/6418 6367/6367 +f 6368/6368 6369/6369 6370/6370 +f 6419/6419 6455/6455 6369/6369 +f 6417/6417 6370/6370 6456/6456 +f 6336/6336 6457/6457 6372/6372 +f 6420/6420 6388/6388 6326/6326 +f 6371/6371 6432/6432 6420/6420 +f 6372/6372 6457/6457 6371/6371 +f 6421/6421 6374/6374 6423/6423 +f 6421/6421 6458/6458 6375/6375 +f 6422/6422 6375/6375 6458/6458 +f 6459/6459 6378/6378 6376/6376 +f 6376/6376 6377/6377 6460/6460 +f 6461/6461 6377/6377 6422/6422 +f 6462/6462 6379/6379 6378/6378 +f 6462/6462 6382/6382 6379/6379 +f 6333/6333 6332/6332 6425/6425 +f 6332/6332 6424/6424 6425/6425 +f 6380/6380 6463/6463 6424/6424 +f 6464/6464 6334/6334 6425/6425 +f 6426/6426 6382/6382 6465/6465 +f 6383/6383 6426/6426 6466/6466 +f 6336/6336 6383/6383 6467/6467 +f 6427/6427 6428/6428 6293/6293 +f 6468/6468 6427/6427 6384/6384 +f 6433/6433 6384/6384 6342/6342 +f 6428/6428 6469/6469 6385/6385 +f 6385/6385 6470/6470 6429/6429 +f 6338/6338 6429/6429 6471/6471 +f 6386/6386 6430/6430 6472/6472 +f 6430/6430 6338/6338 6473/6473 +f 6386/6386 6472/6472 6387/6387 +f 6387/6387 6472/6472 6431/6431 +f 6431/6431 6474/6474 6339/6339 +f 6420/6420 6432/6432 6341/6341 +f 6433/6433 6389/6389 6475/6475 +f 6457/6457 6389/6389 6390/6390 +f 6390/6390 6432/6432 6457/6457 +f 6339/6339 6474/6474 6434/6434 +f 6434/6434 6435/6435 6391/6391 +f 6345/6345 6436/6436 6437/6437 +f 6437/6437 6476/6476 6392/6392 +f 6438/6438 6392/6392 6476/6476 +f 6435/6435 6477/6477 6393/6393 +f 6439/6439 6393/6393 6478/6478 +f 6439/6439 6479/6479 6394/6394 +f 6395/6395 6394/6394 6480/6480 +f 6480/6480 6397/6397 6395/6395 +f 6481/6481 6396/6396 6440/6440 +f 6396/6396 6482/6482 6436/6436 +f 6440/6440 6397/6397 6480/6480 +f 6441/6441 6349/6349 6399/6399 +f 6441/6441 6483/6483 6398/6398 +f 6400/6400 6483/6483 6399/6399 +f 6398/6398 6483/6483 6401/6401 +f 6484/6484 6403/6403 6402/6402 +f 6402/6402 35881/38427 35882/38428 +f 6416/6416 6403/6403 6484/6484 +f 6364/6364 6453/6453 6405/6405 +f 6453/6453 6404/6404 6405/6405 +f 6404/6404 6442/6442 6356/6356 +f 6485/6485 6406/6406 6442/6442 +f 6444/6444 6357/6357 6443/6443 +f 6485/6485 6443/6443 6406/6406 +f 6486/6486 6358/6358 6444/6444 +f 6448/6448 6359/6359 6445/6445 +f 6487/6487 6445/6445 6407/6407 +f 6407/6407 6446/6446 6487/6487 +f 6486/6486 6447/6447 6358/6358 +f 6408/6408 6447/6447 6488/6488 +f 6446/6446 6408/6408 6488/6488 +f 6489/6489 6409/6409 6448/6448 +f 6489/6489 6449/6449 6409/6409 +f 6490/6490 6361/6361 6449/6449 +f 6491/6491 6414/6414 6361/6361 +f 6450/6450 6418/6418 6411/6411 +f 6363/6363 6452/6452 6451/6451 +f 6492/6492 6412/6412 6451/6451 +f 6412/6412 6492/6492 6450/6450 +f 6413/6413 6493/6493 6452/6452 +f 6494/6494 6413/6413 6414/6414 +f 6453/6453 6415/6415 6495/6495 +f 6415/6415 6416/6416 6495/6495 +f 6454/6454 6417/6417 6496/6496 +f 6455/6455 6419/6419 6418/6418 +f 6497/6497 6370/6370 6369/6369 +f 6455/6455 6497/6497 6369/6369 +f 6496/6496 6417/6417 6456/6456 +f 6497/6497 6456/6456 6370/6370 +f 6467/6467 6457/6457 6336/6336 +f 6457/6457 6432/6432 6371/6371 +f 6498/6498 6421/6421 6423/6423 +f 6458/6458 6421/6421 6499/6499 +f 6500/6500 6422/6422 6458/6458 +f 6459/6459 6376/6376 6501/6501 +f 6378/6378 6459/6459 6502/6502 +f 6460/6460 6377/6377 6503/6503 +f 6460/6460 6501/6501 6376/6376 +f 6461/6461 6422/6422 6504/6504 +f 6505/6505 6377/6377 6461/6461 +f 6502/6502 6462/6462 6378/6378 +f 6382/6382 6462/6462 6465/6465 +f 6424/6424 6506/6506 6425/6425 +f 6380/6380 6507/6507 6463/6463 +f 6463/6463 6506/6506 6424/6424 +f 6334/6334 6464/6464 6508/6508 +f 6509/6509 6464/6464 6425/6425 +f 6426/6426 6465/6465 6466/6466 +f 6466/6466 6510/6510 6383/6383 +f 6475/6475 6467/6467 6383/6383 +f 6428/6428 6427/6427 6511/6511 +f 6433/6433 6468/6468 6384/6384 +f 6468/6468 6512/6512 6427/6427 +f 6469/6469 6513/6513 6385/6385 +f 6511/6511 6469/6469 6428/6428 +f 6470/6470 6385/6385 6513/6513 +f 6429/6429 6470/6470 6514/6514 +f 6429/6429 6515/6515 6471/6471 +f 6338/6338 6471/6471 6473/6473 +f 6430/6430 6516/6516 6472/6472 +f 6430/6430 6473/6473 6517/6517 +f 6431/6431 6472/6472 6518/6518 +f 6474/6474 6431/6431 6519/6519 +f 6520/6520 6433/6433 6475/6475 +f 6389/6389 6467/6467 6475/6475 +f 6389/6389 6457/6457 6467/6467 +f 6474/6474 6435/6435 6434/6434 +f 6437/6437 6436/6436 6482/6482 +f 6521/6521 6476/6476 6437/6437 +f 6438/6438 6476/6476 6522/6522 +f 6477/6477 6435/6435 6474/6474 +f 6477/6477 6523/6523 6393/6393 +f 6478/6478 6393/6393 6523/6523 +f 6524/6524 6439/6439 6478/6478 +f 6439/6439 6525/6525 6479/6479 +f 6479/6479 6526/6526 6394/6394 +f 6480/6480 6394/6394 6526/6526 +f 6481/6481 6482/6482 6396/6396 +f 6480/6480 6481/6481 6440/6440 +f 6441/6441 6399/6399 6483/6483 +f 35883/38429 6484/6484 6402/6402 +f 35882/38430 35883/38429 6402/6402 +f 6484/6484 6495/6495 6416/6416 +f 6404/6404 6453/6453 6442/6442 +f 6442/6442 6495/6495 6485/6485 +f 6443/6443 6527/6527 6444/6444 +f 6443/6443 6485/6485 6528/6528 +f 6444/6444 6527/6527 6486/6486 +f 6529/6529 6448/6448 6445/6445 +f 6445/6445 6487/6487 6530/6530 +f 6446/6446 6488/6488 6487/6487 +f 6486/6486 6531/6531 6447/6447 +f 6488/6488 6447/6447 6532/6532 +f 6448/6448 6533/6533 6489/6489 +f 6489/6489 6534/6534 6449/6449 +f 6449/6449 6535/6535 6490/6490 +f 6361/6361 6490/6490 6491/6491 +f 6494/6494 6414/6414 6491/6491 +f 6450/6450 6536/6536 6418/6418 +f 6451/6451 6452/6452 6537/6537 +f 6451/6451 6537/6537 6492/6492 +f 6450/6450 6492/6492 6536/6536 +f 6538/6538 6452/6452 6493/6493 +f 6539/6539 6493/6493 6413/6413 +f 6494/6494 6539/6539 6413/6413 +f 6495/6495 6442/6442 6453/6453 +f 6496/6496 6540/6540 6454/6454 +f 6536/6536 6455/6455 6418/6418 +f 6541/6541 6497/6497 6455/6455 +f 6456/6456 6542/6542 6496/6496 +f 6542/6542 6456/6456 6497/6497 +f 6498/6498 6499/6499 6421/6421 +f 6508/6508 6498/6498 6423/6423 +f 6543/6543 6458/6458 6499/6499 +f 6504/6504 6422/6422 6500/6500 +f 6500/6500 6458/6458 6543/6543 +f 6503/6503 6459/6459 6501/6501 +f 6502/6502 6459/6459 6544/6544 +f 6545/6545 6503/6503 6377/6377 +f 6503/6503 6501/6501 6460/6460 +f 6504/6504 6546/6546 6461/6461 +f 6505/6505 6461/6461 6546/6546 +f 6505/6505 6547/6547 6377/6377 +f 6548/6548 6462/6462 6502/6502 +f 6462/6462 6548/6548 6465/6465 +f 6509/6509 6425/6425 6506/6506 +f 6549/6549 6507/6507 6380/6380 +f 6550/6550 6463/6463 6507/6507 +f 6506/6506 6463/6463 6509/6509 +f 6423/6423 6334/6334 6508/6508 +f 6464/6464 6551/6551 6508/6508 +f 6552/6552 6464/6464 6509/6509 +f 6465/6465 6553/6553 6466/6466 +f 6553/6553 6510/6510 6466/6466 +f 6510/6510 6475/6475 6383/6383 +f 6554/6554 6511/6511 6427/6427 +f 6433/6433 6520/6520 6468/6468 +f 6512/6512 6468/6468 6555/6555 +f 6512/6512 6556/6556 6427/6427 +f 6557/6557 6513/6513 6469/6469 +f 6469/6469 6511/6511 6557/6557 +f 6513/6513 6557/6557 6470/6470 +f 6514/6514 6470/6470 6557/6557 +f 6515/6515 6429/6429 6514/6514 +f 6515/6515 6558/6558 6471/6471 +f 6471/6471 6559/6559 6473/6473 +f 6560/6560 6516/6516 6430/6430 +f 6472/6472 6516/6516 6561/6561 +f 6560/6560 6430/6430 6517/6517 +f 6517/6517 6473/6473 6559/6559 +f 6561/6561 6518/6518 6472/6472 +f 6518/6518 6562/6562 6431/6431 +f 6519/6519 6477/6477 6474/6474 +f 6562/6562 6519/6519 6431/6431 +f 6520/6520 6475/6475 6555/6555 +f 6482/6482 6563/6563 6437/6437 +f 6521/6521 6564/6564 6476/6476 +f 6521/6521 6437/6437 6563/6563 +f 6522/6522 6476/6476 6564/6564 +f 6477/6477 6565/6565 6523/6523 +f 6523/6523 6566/6566 6478/6478 +f 6439/6439 6524/6524 6567/6567 +f 6524/6524 6478/6478 6568/6568 +f 6525/6525 6439/6439 6567/6567 +f 6525/6525 6569/6569 6479/6479 +f 6479/6479 6570/6570 6526/6526 +f 6571/6571 6480/6480 6526/6526 +f 6482/6482 6481/6481 6563/6563 +f 6572/6572 6481/6481 6480/6480 +f 35884/38431 6573/6573 6484/6484 +f 35883/38432 35884/38431 6484/6484 +f 6574/6574 35885/38433 35886/38434 +f 6495/6495 6484/6484 6573/6573 +f 6485/6485 6495/6495 6574/6574 +f 6527/6527 6443/6443 6528/6528 +f 6575/6575 6528/6528 6485/6485 +f 6486/6486 6527/6527 6576/6576 +f 6530/6530 6529/6529 6445/6445 +f 6529/6529 6577/6577 6448/6448 +f 6530/6530 6487/6487 6488/6488 +f 6486/6486 6576/6576 6531/6531 +f 6531/6531 6578/6578 6447/6447 +f 6488/6488 6532/6532 6530/6530 +f 6578/6578 6532/6532 6447/6447 +f 6448/6448 6577/6577 6533/6533 +f 6533/6533 6534/6534 6489/6489 +f 6534/6534 6535/6535 6449/6449 +f 6579/6579 6490/6490 6535/6535 +f 6490/6490 6579/6579 6491/6491 +f 6491/6491 6580/6580 6494/6494 +f 6538/6538 6537/6537 6452/6452 +f 6581/6581 6492/6492 6537/6537 +f 6582/6582 6536/6536 6492/6492 +f 6538/6538 6493/6493 6583/6583 +f 6583/6583 6493/6493 6539/6539 +f 6494/6494 6580/6580 6539/6539 +f 6584/6584 6454/6454 6540/6540 +f 6542/6542 6540/6540 6496/6496 +f 6585/6585 6455/6455 6536/6536 +f 6497/6497 6541/6541 6542/6542 +f 6455/6455 6585/6585 6541/6541 +f 6508/6508 6499/6499 6498/6498 +f 6543/6543 6499/6499 6586/6586 +f 6504/6504 6500/6500 6587/6587 +f 6543/6543 6587/6587 6500/6500 +f 6503/6503 6544/6544 6459/6459 +f 6544/6544 6588/6588 6502/6502 +f 6544/6544 6503/6503 6545/6545 +f 6377/6377 6547/6547 6545/6545 +f 6504/6504 6587/6587 6546/6546 +f 6589/6589 6505/6505 6546/6546 +f 6547/6547 6505/6505 6589/6589 +f 6502/6502 6588/6588 6548/6548 +f 6588/6588 6465/6465 6548/6548 +f 6590/6590 6507/6507 6549/6549 +f 6550/6550 6507/6507 6591/6591 +f 6550/6550 6592/6592 6463/6463 +f 6463/6463 6592/6592 6509/6509 +f 6551/6551 6499/6499 6508/6508 +f 6593/6593 6551/6551 6464/6464 +f 6552/6552 6593/6593 6464/6464 +f 6593/6593 6552/6552 6509/6509 +f 6465/6465 6594/6594 6553/6553 +f 6553/6553 6595/6595 6510/6510 +f 6475/6475 6510/6510 6555/6555 +f 6427/6427 6556/6556 6554/6554 +f 6511/6511 6554/6554 6596/6596 +f 6468/6468 6520/6520 6555/6555 +f 6512/6512 6555/6555 6595/6595 +f 6595/6595 6556/6556 6512/6512 +f 6511/6511 6597/6597 6557/6557 +f 6514/6514 6557/6557 6598/6598 +f 6514/6514 6598/6598 6515/6515 +f 6559/6559 6471/6471 6558/6558 +f 6558/6558 6515/6515 6599/6599 +f 6561/6561 6516/6516 6560/6560 +f 6600/6600 6560/6560 6517/6517 +f 6559/6559 6601/6601 6517/6517 +f 6518/6518 6561/6561 6602/6602 +f 6602/6602 6562/6562 6518/6518 +f 6519/6519 6603/6603 6477/6477 +f 6562/6562 6603/6603 6519/6519 +f 6564/6564 6521/6521 6604/6604 +f 6605/6605 6521/6521 6563/6563 +f 6565/6565 6477/6477 6603/6603 +f 6523/6523 6565/6565 6566/6566 +f 6606/6606 6478/6478 6566/6566 +f 6524/6524 6607/6607 6567/6567 +f 6606/6606 6568/6568 6478/6478 +f 6568/6568 6608/6608 6524/6524 +f 6567/6567 6569/6569 6525/6525 +f 6569/6569 6609/6609 6479/6479 +f 6479/6479 6609/6609 6570/6570 +f 6526/6526 6570/6570 6610/6610 +f 6480/6480 6571/6571 6572/6572 +f 6571/6571 6526/6526 6611/6611 +f 6481/6481 6612/6612 6563/6563 +f 6481/6481 6572/6572 6613/6613 +f 35885/38435 6574/6574 6573/6573 +f 35884/38436 35885/38435 6573/6573 +f 6574/6574 35886/38437 35887/38438 +f 6573/6573 6574/6574 6495/6495 +f 6574/6574 6575/6575 6485/6485 +f 6614/6614 6527/6527 6528/6528 +f 6575/6575 6614/6614 6528/6528 +f 6527/6527 6614/6614 6576/6576 +f 6615/6615 6529/6529 6530/6530 +f 6577/6577 6529/6529 6615/6615 +f 6531/6531 6576/6576 6616/6616 +f 6578/6578 6531/6531 6616/6616 +f 6532/6532 6615/6615 6530/6530 +f 6532/6532 6578/6578 6617/6617 +f 6618/6618 6533/6533 6577/6577 +f 6619/6619 6534/6534 6533/6533 +f 6534/6534 6620/6620 6535/6535 +f 6535/6535 6621/6621 6579/6579 +f 6579/6579 6622/6622 6491/6491 +f 6491/6491 6623/6623 6580/6580 +f 6537/6537 6538/6538 6624/6624 +f 6581/6581 6582/6582 6492/6492 +f 6537/6537 6625/6625 6581/6581 +f 6585/6585 6536/6536 6582/6582 +f 6626/6626 6538/6538 6583/6583 +f 6627/6627 6583/6583 6539/6539 +f 6539/6539 6580/6580 6627/6627 +f 6454/6454 6584/6584 6628/6628 +f 6540/6540 6629/6629 6584/6584 +f 6542/6542 6541/6541 6540/6540 +f 6585/6585 6630/6630 6541/6541 +f 6586/6586 6499/6499 6551/6551 +f 6587/6587 6543/6543 6586/6586 +f 6631/6631 6588/6588 6544/6544 +f 6545/6545 6632/6632 6544/6544 +f 6547/6547 6633/6633 6545/6545 +f 6546/6546 6587/6587 6634/6634 +f 6635/6635 6589/6589 6546/6546 +f 6589/6589 6636/6636 6547/6547 +f 6594/6594 6465/6465 6588/6588 +f 6590/6590 6637/6637 6507/6507 +f 6638/6638 6590/6590 6549/6549 +f 6637/6637 6591/6591 6507/6507 +f 6550/6550 6591/6591 6639/6639 +f 6639/6639 6592/6592 6550/6550 +f 6592/6592 6640/6640 6509/6509 +f 6586/6586 6551/6551 6593/6593 +f 6641/6641 6593/6593 6509/6509 +f 6553/6553 6594/6594 6642/6642 +f 6595/6595 6555/6555 6510/6510 +f 6553/6553 6642/6642 6595/6595 +f 6556/6556 6643/6643 6554/6554 +f 6554/6554 6644/6644 6596/6596 +f 6597/6597 6511/6511 6596/6596 +f 6643/6643 6556/6556 6595/6595 +f 6597/6597 6598/6598 6557/6557 +f 6598/6598 6599/6599 6515/6515 +f 6559/6559 6558/6558 6645/6645 +f 6558/6558 6599/6599 6646/6646 +f 6560/6560 6647/6647 6561/6561 +f 6647/6647 6560/6560 6600/6600 +f 6601/6601 6600/6600 6517/6517 +f 6601/6601 6559/6559 6645/6645 +f 6561/6561 6647/6647 6602/6602 +f 6602/6602 6603/6603 6562/6562 +f 6604/6604 6521/6521 6605/6605 +f 6605/6605 6563/6563 6612/6612 +f 6648/6648 6565/6565 6603/6603 +f 6649/6649 6566/6566 6565/6565 +f 6606/6606 6566/6566 6649/6649 +f 6567/6567 6607/6607 6650/6650 +f 6524/6524 6608/6608 6607/6607 +f 6568/6568 6606/6606 6651/6651 +f 6568/6568 6652/6652 6608/6608 +f 6567/6567 6653/6653 6569/6569 +f 6654/6654 6609/6609 6569/6569 +f 6570/6570 6609/6609 6655/6655 +f 6611/6611 6526/6526 6610/6610 +f 6610/6610 6570/6570 6655/6655 +f 6572/6572 6571/6571 6656/6656 +f 6571/6571 6611/6611 6657/6657 +f 6481/6481 6613/6613 6612/6612 +f 6572/6572 6658/6658 6613/6613 +f 35888/38439 6575/6575 6574/6574 +f 35887/38440 35888/38439 6574/6574 +f 35889/38441 6614/6614 6575/6575 +f 35888/38442 35889/38441 6575/6575 +f 35890/38443 6576/6576 6614/6614 +f 35889/38444 35890/38443 6614/6614 +f 6577/6577 6615/6615 6659/6659 +f 6576/6576 6660/6660 6616/6616 +f 6616/6616 6661/6661 6578/6578 +f 6615/6615 6532/6532 6659/6659 +f 6661/6661 6617/6617 6578/6578 +f 6532/6532 6617/6617 6659/6659 +f 6533/6533 6618/6618 6619/6619 +f 6662/6662 6618/6618 6577/6577 +f 6663/6663 6534/6534 6619/6619 +f 6620/6620 6621/6621 6535/6535 +f 6534/6534 6663/6663 6620/6620 +f 6579/6579 6621/6621 6664/6664 +f 6491/6491 6622/6622 6623/6623 +f 6579/6579 6665/6665 6622/6622 +f 6580/6580 6623/6623 6627/6627 +f 6538/6538 6666/6666 6624/6624 +f 6625/6625 6537/6537 6624/6624 +f 6667/6667 6582/6582 6581/6581 +f 6581/6581 6625/6625 6668/6668 +f 6582/6582 6667/6667 6585/6585 +f 6538/6538 6626/6626 6666/6666 +f 6669/6669 6626/6626 6583/6583 +f 6583/6583 6627/6627 6670/6670 +f 6671/6671 6628/6628 6584/6584 +f 6629/6629 6672/6672 6584/6584 +f 6673/6673 6629/6629 6540/6540 +f 6673/6673 6540/6540 6541/6541 +f 6630/6630 6585/6585 6674/6674 +f 6541/6541 6630/6630 6673/6673 +f 6586/6586 6675/6675 6587/6587 +f 6631/6631 6594/6594 6588/6588 +f 6632/6632 6631/6631 6544/6544 +f 6632/6632 6545/6545 6633/6633 +f 6547/6547 6636/6636 6633/6633 +f 6546/6546 6634/6634 6676/6676 +f 6587/6587 6677/6677 6634/6634 +f 6676/6676 6589/6589 6635/6635 +f 6546/6546 6676/6676 6635/6635 +f 6589/6589 6678/6678 6636/6636 +f 6590/6590 6679/6679 6637/6637 +f 6590/6590 6638/6638 6679/6679 +f 6680/6680 6638/6638 6549/6549 +f 6681/6681 6591/6591 6637/6637 +f 6682/6682 6639/6639 6591/6591 +f 6592/6592 6639/6639 6683/6683 +f 6683/6683 6640/6640 6592/6592 +f 6640/6640 6641/6641 6509/6509 +f 6593/6593 6675/6675 6586/6586 +f 6641/6641 6675/6675 6593/6593 +f 6642/6642 6594/6594 6631/6631 +f 6642/6642 6643/6643 6595/6595 +f 6644/6644 6554/6554 6643/6643 +f 6644/6644 6684/6684 6596/6596 +f 6684/6684 6597/6597 6596/6596 +f 6685/6685 6598/6598 6597/6597 +f 6686/6686 6599/6599 6598/6598 +f 6645/6645 6558/6558 6646/6646 +f 6646/6646 6599/6599 6687/6687 +f 6688/6688 6647/6647 6600/6600 +f 6689/6689 6600/6600 6601/6601 +f 6690/6690 6601/6601 6645/6645 +f 6647/6647 6691/6691 6602/6602 +f 6602/6602 6691/6691 6603/6603 +f 6604/6604 6605/6605 6692/6692 +f 6612/6612 6692/6692 6605/6605 +f 6693/6693 6648/6648 6603/6603 +f 6648/6648 6649/6649 6565/6565 +f 6649/6649 6651/6651 6606/6606 +f 6650/6650 6607/6607 6608/6608 +f 6567/6567 6650/6650 6694/6694 +f 6651/6651 6652/6652 6568/6568 +f 6608/6608 6652/6652 6695/6695 +f 6569/6569 6653/6653 6696/6696 +f 6694/6694 6653/6653 6567/6567 +f 6697/6697 6609/6609 6654/6654 +f 6654/6654 6569/6569 6696/6696 +f 6609/6609 6697/6697 6655/6655 +f 6610/6610 6698/6698 6611/6611 +f 6655/6655 6698/6698 6610/6610 +f 6656/6656 6571/6571 6699/6699 +f 6572/6572 6656/6656 6658/6658 +f 6611/6611 6700/6700 6657/6657 +f 6701/6701 6571/6571 6657/6657 +f 6612/6612 6613/6613 6702/6702 +f 6658/6658 6703/6703 6613/6613 +f 6576/6576 35890/38445 35891/38446 +f 6659/6659 6662/6662 6577/6577 +f 35892/38447 6660/6660 6576/6576 +f 35891/38448 35892/38447 6576/6576 +f 6660/6660 6661/6661 6616/6616 +f 6661/6661 6704/6704 6617/6617 +f 6659/6659 6617/6617 6662/6662 +f 6618/6618 6662/6662 6619/6619 +f 6619/6619 6705/6705 6663/6663 +f 6620/6620 6705/6705 6621/6621 +f 6705/6705 6620/6620 6663/6663 +f 6621/6621 6706/6706 6664/6664 +f 6665/6665 6579/6579 6664/6664 +f 6707/6707 6623/6623 6622/6622 +f 6665/6665 6708/6708 6622/6622 +f 6623/6623 6709/6709 6627/6627 +f 6666/6666 6710/6710 6624/6624 +f 6625/6625 6624/6624 6711/6711 +f 6581/6581 6668/6668 6667/6667 +f 6712/6712 6668/6668 6625/6625 +f 6667/6667 6674/6674 6585/6585 +f 6666/6666 6626/6626 6713/6713 +f 6626/6626 6669/6669 6714/6714 +f 6670/6670 6669/6669 6583/6583 +f 6715/6715 6670/6670 6627/6627 +f 6671/6671 6716/6716 6628/6628 +f 6584/6584 6672/6672 6671/6671 +f 6717/6717 6672/6672 6629/6629 +f 6717/6717 6629/6629 6673/6673 +f 6718/6718 6630/6630 6674/6674 +f 6719/6719 6673/6673 6630/6630 +f 6587/6587 6675/6675 6677/6677 +f 6632/6632 6720/6720 6631/6631 +f 6633/6633 6721/6721 6632/6632 +f 6636/6636 6722/6722 6633/6633 +f 6723/6723 6676/6676 6634/6634 +f 6723/6723 6634/6634 6677/6677 +f 6676/6676 6724/6724 6589/6589 +f 6678/6678 6589/6589 6725/6725 +f 6726/6726 6636/6636 6678/6678 +f 6637/6637 6679/6679 6727/6727 +f 6638/6638 6680/6680 6679/6679 +f 6680/6680 6549/6549 6728/6728 +f 6682/6682 6591/6591 6681/6681 +f 6637/6637 6729/6729 6681/6681 +f 6682/6682 6730/6730 6639/6639 +f 6730/6730 6683/6683 6639/6639 +f 6731/6731 6640/6640 6683/6683 +f 6732/6732 6641/6641 6640/6640 +f 6675/6675 6641/6641 6677/6677 +f 6733/6733 6642/6642 6631/6631 +f 6642/6642 6734/6734 6643/6643 +f 6643/6643 6735/6735 6644/6644 +f 6736/6736 6684/6684 6644/6644 +f 6597/6597 6684/6684 6685/6685 +f 6737/6737 6598/6598 6685/6685 +f 6686/6686 6738/6738 6599/6599 +f 6737/6737 6686/6686 6598/6598 +f 6646/6646 6687/6687 6645/6645 +f 6739/6739 6687/6687 6599/6599 +f 6688/6688 6740/6740 6647/6647 +f 6600/6600 6689/6689 6688/6688 +f 6689/6689 6601/6601 6690/6690 +f 6645/6645 6687/6687 6690/6690 +f 6647/6647 6740/6740 6691/6691 +f 6693/6693 6603/6603 6691/6691 +f 6692/6692 6612/6612 6741/6741 +f 6693/6693 6742/6742 6648/6648 +f 6649/6649 6648/6648 6743/6743 +f 6651/6651 6649/6649 6743/6743 +f 6650/6650 6608/6608 6695/6695 +f 6650/6650 6744/6744 6694/6694 +f 6652/6652 6651/6651 6745/6745 +f 6745/6745 6695/6695 6652/6652 +f 6696/6696 6653/6653 6744/6744 +f 6694/6694 6744/6744 6653/6653 +f 6746/6746 6697/6697 6654/6654 +f 6747/6747 6654/6654 6696/6696 +f 6748/6748 6655/6655 6697/6697 +f 6700/6700 6611/6611 6698/6698 +f 6655/6655 6748/6748 6698/6698 +f 6699/6699 6658/6658 6656/6656 +f 6571/6571 6701/6701 6699/6699 +f 6703/6703 6702/6702 6613/6613 +f 6741/6741 6612/6612 6702/6702 +f 6703/6703 6658/6658 6699/6699 +f 6660/6660 35892/38449 35893/38450 +f 6749/6749 6661/6661 6660/6660 +f 6750/6750 6704/6704 6661/6661 +f 6617/6617 6704/6704 6751/6751 +f 6752/6752 6662/6662 6617/6617 +f 6753/6753 6619/6619 6662/6662 +f 6705/6705 6619/6619 6753/6753 +f 6621/6621 6705/6705 6753/6753 +f 6753/6753 6706/6706 6621/6621 +f 6706/6706 6754/6754 6664/6664 +f 6708/6708 6665/6665 6664/6664 +f 6709/6709 6623/6623 6707/6707 +f 6755/6755 6707/6707 6622/6622 +f 6708/6708 6755/6755 6622/6622 +f 6709/6709 6756/6756 6627/6627 +f 6666/6666 6713/6713 6710/6710 +f 6711/6711 6624/6624 6710/6710 +f 6712/6712 6625/6625 6711/6711 +f 6667/6667 6668/6668 6757/6757 +f 6758/6758 6668/6668 6712/6712 +f 6759/6759 6674/6674 6667/6667 +f 6626/6626 6714/6714 6713/6713 +f 6714/6714 6669/6669 6760/6760 +f 6670/6670 6761/6761 6669/6669 +f 6715/6715 6761/6761 6670/6670 +f 6627/6627 6756/6756 6715/6715 +f 6671/6671 6762/6762 6716/6716 +f 6671/6671 6672/6672 6762/6762 +f 6717/6717 6763/6763 6672/6672 +f 6719/6719 6717/6717 6673/6673 +f 6718/6718 6764/6764 6630/6630 +f 6759/6759 6718/6718 6674/6674 +f 6719/6719 6630/6630 6764/6764 +f 6720/6720 6632/6632 6721/6721 +f 6631/6631 6720/6720 6765/6765 +f 6721/6721 6633/6633 6766/6766 +f 6722/6722 6636/6636 6726/6726 +f 6633/6633 6722/6722 6766/6766 +f 6676/6676 6723/6723 6767/6767 +f 6677/6677 6768/6768 6723/6723 +f 6676/6676 6769/6769 6724/6724 +f 6589/6589 6724/6724 6725/6725 +f 6770/6770 6678/6678 6725/6725 +f 6726/6726 6678/6678 6771/6771 +f 6772/6772 6727/6727 6679/6679 +f 6729/6729 6637/6637 6727/6727 +f 6773/6773 6679/6679 6680/6680 +f 6680/6680 6728/6728 6774/6774 +f 6775/6775 6682/6682 6681/6681 +f 6729/6729 6776/6776 6681/6681 +f 6682/6682 6683/6683 6730/6730 +f 6640/6640 6731/6731 6732/6732 +f 6777/6777 6731/6731 6683/6683 +f 6732/6732 6778/6778 6641/6641 +f 6778/6778 6677/6677 6641/6641 +f 6734/6734 6642/6642 6733/6733 +f 6733/6733 6631/6631 6765/6765 +f 6734/6734 6779/6779 6643/6643 +f 6735/6735 6643/6643 6779/6779 +f 6735/6735 6780/6780 6644/6644 +f 6684/6684 6736/6736 6781/6781 +f 6782/6782 6736/6736 6644/6644 +f 6685/6685 6684/6684 6737/6737 +f 6738/6738 6686/6686 6737/6737 +f 6599/6599 6738/6738 6739/6739 +f 6687/6687 6739/6739 6783/6783 +f 6693/6693 6740/6740 6688/6688 +f 6688/6688 6689/6689 6693/6693 +f 6689/6689 6690/6690 6784/6784 +f 6687/6687 6784/6784 6690/6690 +f 6691/6691 6740/6740 6693/6693 +f 6785/6785 6692/6692 6741/6741 +f 6742/6742 6693/6693 6784/6784 +f 6648/6648 6742/6742 6786/6786 +f 6787/6787 6743/6743 6648/6648 +f 6787/6787 6651/6651 6743/6743 +f 6788/6788 6650/6650 6695/6695 +f 6650/6650 6789/6789 6744/6744 +f 6745/6745 6651/6651 6787/6787 +f 6790/6790 6695/6695 6745/6745 +f 6744/6744 6747/6747 6696/6696 +f 6746/6746 6791/6791 6697/6697 +f 6654/6654 6792/6792 6746/6746 +f 6747/6747 6792/6792 6654/6654 +f 6791/6791 6748/6748 6697/6697 +f 6698/6698 6793/6793 6700/6700 +f 6698/6698 6748/6748 6794/6794 +f 6701/6701 6795/6795 6699/6699 +f 6796/6796 6702/6702 6703/6703 +f 6741/6741 6702/6702 6796/6796 +f 6699/6699 6797/6797 6703/6703 +f 6704/6704 35894/38451 35895/38452 +f 35896/38453 6749/6749 6660/6660 +f 35893/38454 35896/38453 6660/6660 +f 6661/6661 6749/6749 6750/6750 +f 35894/38455 6704/6704 6750/6750 +f 35897/38456 35894/38455 6750/6750 +f 6751/6751 6704/6704 6798/6798 +f 6752/6752 6617/6617 6751/6751 +f 6706/6706 6662/6662 6752/6752 +f 6662/6662 6706/6706 6753/6753 +f 6754/6754 6799/6799 6664/6664 +f 6754/6754 6706/6706 6752/6752 +f 6664/6664 6800/6800 6708/6708 +f 6755/6755 6709/6709 6707/6707 +f 6800/6800 6755/6755 6708/6708 +f 6756/6756 6709/6709 6801/6801 +f 6710/6710 6713/6713 6802/6802 +f 6710/6710 6803/6803 6711/6711 +f 6803/6803 6712/6712 6711/6711 +f 6759/6759 6667/6667 6757/6757 +f 6758/6758 6757/6757 6668/6668 +f 6712/6712 6804/6804 6758/6758 +f 6805/6805 6713/6713 6714/6714 +f 6760/6760 6669/6669 6761/6761 +f 6806/6806 6714/6714 6760/6760 +f 6715/6715 6807/6807 6761/6761 +f 6715/6715 6756/6756 6801/6801 +f 6762/6762 6808/6808 6716/6716 +f 6809/6809 6762/6762 6672/6672 +f 6763/6763 6717/6717 6810/6810 +f 6763/6763 6809/6809 6672/6672 +f 6717/6717 6719/6719 6811/6811 +f 6812/6812 6764/6764 6718/6718 +f 6718/6718 6759/6759 6813/6813 +f 6719/6719 6764/6764 6814/6814 +f 6815/6815 6720/6720 6721/6721 +f 6765/6765 6720/6720 6816/6816 +f 6721/6721 6766/6766 6817/6817 +f 6722/6722 6726/6726 6766/6766 +f 6767/6767 6723/6723 6818/6818 +f 6676/6676 6767/6767 6769/6769 +f 6818/6818 6723/6723 6768/6768 +f 6768/6768 6677/6677 6778/6778 +f 6724/6724 6769/6769 6819/6819 +f 6724/6724 6820/6820 6725/6725 +f 6770/6770 6771/6771 6678/6678 +f 6770/6770 6725/6725 6820/6820 +f 6726/6726 6771/6771 6821/6821 +f 6679/6679 6773/6773 6772/6772 +f 6729/6729 6727/6727 6772/6772 +f 6680/6680 6822/6822 6773/6773 +f 6808/6808 6774/6774 6728/6728 +f 6822/6822 6680/6680 6774/6774 +f 6776/6776 6775/6775 6681/6681 +f 6775/6775 6777/6777 6682/6682 +f 6776/6776 6729/6729 6772/6772 +f 6682/6682 6777/6777 6683/6683 +f 6732/6732 6731/6731 6777/6777 +f 6778/6778 6732/6732 6777/6777 +f 6823/6823 6734/6734 6733/6733 +f 6765/6765 6824/6824 6733/6733 +f 6779/6779 6734/6734 6823/6823 +f 6779/6779 6780/6780 6735/6735 +f 6782/6782 6644/6644 6780/6780 +f 6736/6736 6825/6825 6781/6781 +f 6781/6781 6737/6737 6684/6684 +f 6782/6782 6825/6825 6736/6736 +f 6738/6738 6737/6737 6826/6826 +f 6827/6827 6739/6739 6738/6738 +f 6687/6687 6783/6783 6828/6828 +f 6783/6783 6739/6739 6827/6827 +f 6693/6693 6689/6689 6784/6784 +f 6687/6687 6828/6828 6784/6784 +f 6829/6829 6692/6692 6785/6785 +f 6741/6741 6796/6796 6785/6785 +f 6784/6784 6830/6830 6742/6742 +f 6786/6786 6742/6742 6831/6831 +f 6786/6786 6787/6787 6648/6648 +f 6788/6788 6789/6789 6650/6650 +f 6695/6695 6832/6832 6788/6788 +f 6833/6833 6744/6744 6789/6789 +f 6745/6745 6787/6787 6834/6834 +f 6835/6835 6695/6695 6790/6790 +f 6836/6836 6790/6790 6745/6745 +f 6744/6744 6833/6833 6747/6747 +f 6837/6837 6791/6791 6746/6746 +f 6746/6746 6792/6792 6838/6838 +f 6833/6833 6792/6792 6747/6747 +f 6839/6839 6748/6748 6791/6791 +f 6701/6701 6700/6700 6793/6793 +f 6794/6794 6793/6793 6698/6698 +f 6794/6794 6748/6748 6840/6840 +f 6701/6701 6793/6793 6795/6795 +f 6795/6795 6841/6841 6699/6699 +f 6842/6842 6796/6796 6703/6703 +f 6841/6841 6797/6797 6699/6699 +f 6703/6703 6797/6797 6843/6843 +f 6704/6704 35895/38457 35898/38458 +f 35897/38459 6750/6750 6749/6749 +f 35896/38460 35897/38459 6749/6749 +f 6798/6798 6844/6844 6751/6751 +f 35899/38461 6798/6798 6704/6704 +f 35900/38462 35899/38461 6704/6704 +f 6752/6752 6751/6751 6844/6844 +f 6799/6799 6754/6754 6845/6845 +f 6664/6664 6799/6799 6800/6800 +f 6844/6844 6754/6754 6752/6752 +f 6709/6709 6755/6755 6846/6846 +f 6755/6755 6800/6800 6846/6846 +f 6846/6846 6801/6801 6709/6709 +f 6713/6713 6805/6805 6802/6802 +f 6802/6802 6803/6803 6710/6710 +f 6803/6803 6804/6804 6712/6712 +f 6757/6757 6813/6813 6759/6759 +f 6847/6847 6757/6757 6758/6758 +f 6847/6847 6758/6758 6804/6804 +f 6848/6848 6805/6805 6714/6714 +f 6760/6760 6761/6761 6849/6849 +f 6850/6850 6714/6714 6806/6806 +f 6851/6851 6806/6806 6760/6760 +f 6852/6852 6761/6761 6807/6807 +f 6807/6807 6715/6715 6853/6853 +f 6854/6854 6715/6715 6801/6801 +f 6762/6762 6774/6774 6808/6808 +f 6762/6762 6809/6809 6855/6855 +f 6810/6810 6856/6856 6763/6763 +f 6810/6810 6717/6717 6857/6857 +f 6856/6856 6809/6809 6763/6763 +f 6858/6858 6811/6811 6719/6719 +f 6717/6717 6811/6811 6857/6857 +f 6859/6859 6812/6812 6718/6718 +f 6814/6814 6764/6764 6812/6812 +f 6718/6718 6813/6813 6859/6859 +f 6814/6814 6858/6858 6719/6719 +f 6720/6720 6815/6815 6860/6860 +f 6721/6721 6861/6861 6815/6815 +f 6862/6862 6816/6816 6720/6720 +f 6816/6816 6824/6824 6765/6765 +f 6817/6817 6766/6766 6821/6821 +f 6817/6817 6863/6863 6721/6721 +f 6821/6821 6766/6766 6726/6726 +f 6767/6767 6818/6818 6864/6864 +f 6767/6767 6865/6865 6769/6769 +f 6768/6768 6866/6866 6818/6818 +f 6866/6866 6768/6768 6778/6778 +f 6820/6820 6724/6724 6819/6819 +f 6819/6819 6769/6769 6867/6867 +f 6868/6868 6771/6771 6770/6770 +f 6770/6770 6820/6820 6869/6869 +f 6771/6771 6868/6868 6821/6821 +f 6870/6870 6772/6772 6773/6773 +f 6773/6773 6822/6822 6871/6871 +f 6774/6774 6871/6871 6822/6822 +f 6776/6776 6872/6872 6775/6775 +f 6778/6778 6777/6777 6775/6775 +f 6776/6776 6772/6772 6873/6873 +f 6874/6874 6823/6823 6733/6733 +f 6824/6824 6875/6875 6733/6733 +f 6823/6823 6876/6876 6779/6779 +f 6780/6780 6779/6779 6877/6877 +f 6780/6780 6878/6878 6782/6782 +f 6781/6781 6825/6825 6879/6879 +f 6826/6826 6737/6737 6781/6781 +f 6825/6825 6782/6782 6878/6878 +f 6827/6827 6738/6738 6826/6826 +f 6880/6880 6828/6828 6783/6783 +f 6827/6827 6881/6881 6783/6783 +f 6828/6828 6830/6830 6784/6784 +f 6882/6882 6829/6829 6785/6785 +f 6785/6785 6796/6796 6883/6883 +f 6831/6831 6742/6742 6830/6830 +f 6786/6786 6831/6831 6884/6884 +f 6786/6786 6885/6885 6787/6787 +f 6789/6789 6788/6788 6832/6832 +f 6832/6832 6695/6695 6835/6835 +f 6832/6832 6833/6833 6789/6789 +f 6885/6885 6834/6834 6787/6787 +f 6834/6834 6836/6836 6745/6745 +f 6790/6790 6832/6832 6835/6835 +f 6832/6832 6790/6790 6836/6836 +f 6838/6838 6837/6837 6746/6746 +f 6791/6791 6837/6837 6839/6839 +f 6833/6833 6838/6838 6792/6792 +f 6840/6840 6748/6748 6839/6839 +f 6793/6793 6794/6794 6840/6840 +f 6886/6886 6795/6795 6793/6793 +f 6795/6795 6887/6887 6841/6841 +f 6703/6703 6843/6843 6842/6842 +f 6796/6796 6842/6842 6883/6883 +f 6841/6841 6888/6888 6797/6797 +f 6843/6843 6797/6797 6889/6889 +f 6704/6704 35898/38463 35900/38464 +f 6844/6844 6798/6798 6890/6890 +f 35901/38465 6891/6891 6798/6798 +f 35899/38466 35901/38465 6798/6798 +f 6845/6845 6892/6892 6799/6799 +f 6845/6845 6754/6754 6844/6844 +f 6892/6892 6800/6800 6799/6799 +f 6846/6846 6800/6800 6893/6893 +f 6846/6846 6893/6893 6801/6801 +f 6802/6802 6805/6805 6894/6894 +f 6894/6894 6803/6803 6802/6802 +f 6804/6804 6803/6803 6895/6895 +f 6757/6757 6847/6847 6813/6813 +f 6804/6804 6895/6895 6847/6847 +f 6714/6714 6850/6850 6848/6848 +f 6805/6805 6848/6848 6896/6896 +f 6849/6849 6761/6761 6852/6852 +f 6851/6851 6760/6760 6849/6849 +f 6897/6897 6850/6850 6806/6806 +f 6806/6806 6851/6851 6898/6898 +f 6899/6899 6852/6852 6807/6807 +f 6715/6715 6900/6900 6853/6853 +f 6853/6853 6901/6901 6807/6807 +f 6893/6893 6854/6854 6801/6801 +f 6900/6900 6715/6715 6854/6854 +f 6762/6762 6902/6902 6774/6774 +f 6902/6902 6762/6762 6855/6855 +f 6809/6809 6903/6903 6855/6855 +f 6857/6857 6856/6856 6810/6810 +f 6903/6903 6809/6809 6856/6856 +f 6904/6904 6811/6811 6858/6858 +f 6811/6811 6905/6905 6857/6857 +f 6812/6812 6859/6859 6906/6906 +f 6812/6812 6858/6858 6814/6814 +f 6907/6907 6859/6859 6813/6813 +f 6815/6815 6861/6861 6860/6860 +f 6860/6860 6908/6908 6720/6720 +f 6721/6721 6863/6863 6861/6861 +f 6862/6862 6909/6909 6816/6816 +f 6908/6908 6862/6862 6720/6720 +f 6875/6875 6824/6824 6816/6816 +f 6817/6817 6821/6821 6910/6910 +f 6911/6911 6863/6863 6817/6817 +f 6866/6866 6864/6864 6818/6818 +f 6767/6767 6864/6864 6865/6865 +f 6867/6867 6769/6769 6865/6865 +f 6872/6872 6866/6866 6778/6778 +f 6867/6867 6820/6820 6819/6819 +f 6770/6770 6869/6869 6868/6868 +f 6820/6820 6912/6912 6869/6869 +f 6868/6868 6869/6869 6821/6821 +f 6913/6913 6870/6870 6773/6773 +f 6870/6870 6873/6873 6772/6772 +f 6773/6773 6871/6871 6913/6913 +f 6902/6902 6871/6871 6774/6774 +f 6775/6775 6872/6872 6778/6778 +f 6872/6872 6776/6776 6914/6914 +f 6776/6776 6873/6873 6915/6915 +f 6874/6874 6916/6916 6823/6823 +f 6733/6733 6917/6917 6874/6874 +f 6917/6917 6733/6733 6875/6875 +f 6876/6876 6877/6877 6779/6779 +f 6823/6823 6916/6916 6876/6876 +f 6878/6878 6780/6780 6877/6877 +f 6825/6825 6918/6918 6879/6879 +f 6879/6879 6919/6919 6781/6781 +f 6920/6920 6826/6826 6781/6781 +f 6921/6921 6825/6825 6878/6878 +f 6826/6826 6881/6881 6827/6827 +f 6783/6783 6881/6881 6880/6880 +f 6880/6880 6922/6922 6828/6828 +f 6830/6830 6828/6828 6922/6922 +f 6785/6785 6883/6883 6882/6882 +f 6829/6829 6882/6882 6923/6923 +f 6922/6922 6831/6831 6830/6830 +f 6884/6884 6831/6831 6924/6924 +f 6885/6885 6786/6786 6884/6884 +f 6832/6832 6838/6838 6833/6833 +f 6885/6885 6925/6925 6834/6834 +f 6834/6834 6926/6926 6836/6836 +f 6832/6832 6836/6836 6927/6927 +f 6837/6837 6838/6838 6928/6928 +f 6929/6929 6839/6839 6837/6837 +f 6839/6839 6930/6930 6840/6840 +f 6886/6886 6793/6793 6840/6840 +f 6795/6795 6886/6886 6887/6887 +f 6841/6841 6887/6887 6931/6931 +f 6843/6843 6932/6932 6842/6842 +f 6883/6883 6842/6842 6932/6932 +f 6797/6797 6888/6888 6933/6933 +f 6888/6888 6841/6841 6931/6931 +f 6889/6889 6797/6797 6933/6933 +f 6889/6889 6932/6932 6843/6843 +f 6891/6891 6890/6890 6798/6798 +f 6844/6844 6890/6890 6845/6845 +f 6891/6891 35901/38467 35902/38468 +f 6934/6934 6892/6892 6845/6845 +f 6892/6892 6935/6935 6800/6800 +f 6935/6935 6893/6893 6800/6800 +f 6896/6896 6894/6894 6805/6805 +f 6803/6803 6894/6894 6895/6895 +f 6907/6907 6813/6813 6847/6847 +f 6936/6936 6847/6847 6895/6895 +f 6937/6937 6848/6848 6850/6850 +f 6938/6938 6896/6896 6848/6848 +f 6852/6852 6939/6939 6849/6849 +f 6939/6939 6851/6851 6849/6849 +f 6937/6937 6850/6850 6897/6897 +f 6806/6806 6898/6898 6897/6897 +f 6898/6898 6851/6851 6940/6940 +f 6941/6941 6852/6852 6899/6899 +f 6807/6807 6942/6942 6899/6899 +f 6853/6853 6900/6900 6901/6901 +f 6807/6807 6901/6901 6942/6942 +f 6893/6893 6943/6943 6854/6854 +f 6943/6943 6900/6900 6854/6854 +f 6902/6902 6855/6855 6944/6944 +f 6903/6903 6945/6945 6855/6855 +f 6857/6857 6905/6905 6856/6856 +f 6856/6856 6946/6946 6903/6903 +f 6904/6904 6947/6947 6811/6811 +f 6812/6812 6904/6904 6858/6858 +f 6905/6905 6811/6811 6948/6948 +f 6812/6812 6906/6906 6904/6904 +f 6907/6907 6906/6906 6859/6859 +f 6861/6861 6949/6949 6860/6860 +f 6908/6908 6860/6860 6949/6949 +f 6861/6861 6863/6863 6950/6950 +f 6909/6909 6862/6862 6951/6951 +f 6952/6952 6816/6816 6909/6909 +f 6908/6908 6949/6949 6862/6862 +f 6953/6953 6875/6875 6816/6816 +f 6910/6910 6911/6911 6817/6817 +f 6910/6910 6821/6821 6912/6912 +f 6954/6954 6863/6863 6911/6911 +f 6866/6866 6955/6955 6864/6864 +f 6864/6864 6956/6956 6865/6865 +f 6867/6867 6865/6865 6957/6957 +f 6872/6872 6955/6955 6866/6866 +f 6867/6867 6912/6912 6820/6820 +f 6869/6869 6912/6912 6821/6821 +f 6870/6870 6913/6913 6958/6958 +f 6870/6870 6958/6958 6873/6873 +f 6913/6913 6871/6871 6959/6959 +f 6871/6871 6902/6902 6959/6959 +f 6960/6960 6872/6872 6914/6914 +f 6914/6914 6776/6776 6915/6915 +f 6958/6958 6915/6915 6873/6873 +f 6917/6917 6916/6916 6874/6874 +f 6875/6875 6961/6961 6917/6917 +f 6877/6877 6876/6876 6962/6962 +f 6916/6916 6963/6963 6876/6876 +f 6921/6921 6878/6878 6877/6877 +f 6964/6964 6918/6918 6825/6825 +f 6879/6879 6918/6918 6965/6965 +f 6919/6919 6879/6879 6966/6966 +f 6920/6920 6781/6781 6919/6919 +f 6920/6920 6881/6881 6826/6826 +f 6921/6921 6964/6964 6825/6825 +f 6881/6881 6919/6919 6880/6880 +f 6967/6967 6922/6922 6880/6880 +f 6882/6882 6883/6883 6968/6968 +f 6969/6969 6923/6923 6882/6882 +f 6967/6967 6831/6831 6922/6922 +f 6831/6831 6967/6967 6924/6924 +f 6924/6924 6970/6970 6884/6884 +f 6971/6971 6885/6885 6884/6884 +f 6838/6838 6832/6832 6927/6927 +f 6925/6925 6885/6885 6972/6972 +f 6926/6926 6834/6834 6925/6925 +f 6973/6973 6836/6836 6926/6926 +f 6836/6836 6973/6973 6927/6927 +f 6928/6928 6838/6838 6974/6974 +f 6837/6837 6928/6928 6929/6929 +f 6930/6930 6839/6839 6929/6929 +f 6930/6930 6975/6975 6840/6840 +f 6975/6975 6886/6886 6840/6840 +f 6975/6975 6887/6887 6886/6886 +f 6931/6931 6887/6887 6976/6976 +f 6932/6932 6977/6977 6883/6883 +f 6933/6933 6888/6888 6978/6978 +f 6979/6979 6888/6888 6931/6931 +f 6933/6933 6932/6932 6889/6889 +f 35903/38469 6890/6890 6891/6891 +f 35904/38470 35903/38469 6891/6891 +f 6845/6845 6890/6890 6934/6934 +f 6891/6891 35902/38471 35904/38472 +f 6892/6892 6934/6934 6935/6935 +f 6980/6980 6893/6893 6935/6935 +f 6981/6981 6894/6894 6896/6896 +f 6894/6894 6981/6981 6895/6895 +f 6847/6847 6936/6936 6907/6907 +f 6936/6936 6895/6895 6982/6982 +f 6983/6983 6848/6848 6937/6937 +f 6896/6896 6938/6938 6984/6984 +f 6983/6983 6938/6938 6848/6848 +f 6939/6939 6852/6852 6985/6985 +f 6851/6851 6939/6939 6940/6940 +f 6937/6937 6897/6897 6986/6986 +f 6987/6987 6897/6897 6898/6898 +f 6940/6940 6988/6988 6898/6898 +f 6985/6985 6852/6852 6941/6941 +f 6899/6899 6942/6942 6941/6941 +f 6989/6989 6901/6901 6900/6900 +f 6901/6901 6989/6989 6942/6942 +f 6893/6893 6980/6980 6943/6943 +f 6943/6943 6989/6989 6900/6900 +f 6855/6855 6990/6990 6944/6944 +f 6944/6944 6959/6959 6902/6902 +f 6945/6945 6990/6990 6855/6855 +f 6991/6991 6945/6945 6903/6903 +f 6905/6905 6992/6992 6856/6856 +f 6903/6903 6946/6946 6991/6991 +f 6856/6856 6992/6992 6946/6946 +f 6947/6947 6948/6948 6811/6811 +f 6947/6947 6904/6904 6993/6993 +f 6994/6994 6905/6905 6948/6948 +f 6995/6995 6904/6904 6906/6906 +f 6906/6906 6907/6907 6995/6995 +f 6950/6950 6949/6949 6861/6861 +f 6863/6863 6996/6996 6950/6950 +f 6949/6949 6951/6951 6862/6862 +f 6997/6997 6909/6909 6951/6951 +f 6998/6998 6952/6952 6909/6909 +f 6816/6816 6952/6952 6953/6953 +f 6999/6999 6875/6875 6953/6953 +f 6911/6911 6910/6910 7000/7000 +f 6912/6912 7001/7001 6910/6910 +f 6996/6996 6863/6863 6954/6954 +f 6911/6911 7002/7002 6954/6954 +f 7003/7003 6864/6864 6955/6955 +f 6956/6956 6864/6864 7003/7003 +f 6956/6956 7004/7004 6865/6865 +f 6957/6957 7005/7005 6867/6867 +f 6957/6957 6865/6865 7004/7004 +f 6872/6872 7006/7006 6955/6955 +f 6912/6912 6867/6867 7001/7001 +f 6959/6959 6958/6958 6913/6913 +f 6872/6872 6960/6960 7006/7006 +f 7007/7007 6960/6960 6914/6914 +f 6914/6914 6915/6915 7007/7007 +f 7008/7008 6915/6915 6958/6958 +f 6917/6917 7009/7009 6916/6916 +f 7010/7010 6917/6917 6961/6961 +f 6875/6875 7011/7011 6961/6961 +f 6921/6921 6877/6877 6962/6962 +f 6962/6962 6876/6876 6963/6963 +f 6916/6916 7012/7012 6963/6963 +f 6965/6965 6918/6918 6964/6964 +f 6966/6966 6879/6879 6965/6965 +f 7013/7013 6919/6919 6966/6966 +f 6881/6881 6920/6920 6919/6919 +f 6964/6964 6921/6921 7014/7014 +f 6919/6919 7013/7013 6880/6880 +f 6880/6880 7013/7013 6967/6967 +f 6883/6883 6977/6977 6968/6968 +f 6882/6882 6968/6968 6969/6969 +f 7015/7015 6924/6924 6967/6967 +f 6884/6884 6970/6970 7016/7016 +f 6970/6970 6924/6924 7017/7017 +f 6972/6972 6885/6885 6971/6971 +f 6884/6884 7016/7016 6971/6971 +f 7018/7018 6838/6838 6927/6927 +f 7019/7019 6925/6925 6972/6972 +f 6926/6926 6925/6925 7020/7020 +f 6926/6926 7020/7020 6973/6973 +f 6973/6973 7018/7018 6927/6927 +f 6838/6838 7021/7021 6974/6974 +f 6974/6974 7022/7022 6928/6928 +f 6928/6928 7022/7022 6929/6929 +f 6930/6930 6929/6929 7023/7023 +f 6930/6930 6976/6976 6975/6975 +f 6976/6976 6887/6887 6975/6975 +f 6976/6976 7024/7024 6931/6931 +f 6977/6977 6932/6932 6933/6933 +f 6979/6979 6978/6978 6888/6888 +f 6978/6978 7025/7025 6933/6933 +f 6979/6979 6931/6931 7026/7026 +f 35905/38473 7027/7027 6890/6890 +f 35903/38474 35905/38473 6890/6890 +f 6890/6890 7027/7027 6934/6934 +f 7028/7028 6935/6935 6934/6934 +f 7028/7028 6980/6980 6935/6935 +f 7029/7029 6981/6981 6896/6896 +f 6981/6981 6982/6982 6895/6895 +f 6983/6983 6937/6937 7030/7030 +f 7029/7029 6896/6896 6984/6984 +f 7031/7031 6984/6984 6938/6938 +f 6938/6938 6983/6983 7031/7031 +f 6985/6985 6988/6988 6939/6939 +f 6940/6940 6939/6939 6988/6988 +f 6986/6986 6897/6897 6987/6987 +f 6937/6937 6986/6986 7030/7030 +f 6988/6988 6987/6987 6898/6898 +f 7032/7032 6985/6985 6941/6941 +f 6942/6942 7033/7033 6941/6941 +f 6942/6942 6989/6989 7033/7033 +f 6980/6980 7034/7034 6943/6943 +f 7033/7033 6989/6989 6943/6943 +f 6990/6990 7035/7035 6944/6944 +f 6959/6959 6944/6944 7035/7035 +f 7036/7036 6990/6990 6945/6945 +f 6991/6991 7036/7036 6945/6945 +f 6905/6905 6994/6994 6992/6992 +f 7037/7037 6991/6991 6946/6946 +f 6992/6992 7038/7038 6946/6946 +f 6948/6948 6947/6947 6994/6994 +f 6995/6995 6993/6993 6904/6904 +f 6994/6994 6947/6947 6993/6993 +f 6995/6995 6907/6907 7039/7039 +f 6996/6996 6949/6949 6950/6950 +f 7040/7040 6951/6951 6949/6949 +f 6951/6951 7040/7040 6997/6997 +f 6998/6998 6909/6909 6997/6997 +f 6998/6998 7041/7041 6952/6952 +f 6953/6953 6952/6952 7042/7042 +f 7043/7043 6999/6999 6953/6953 +f 6875/6875 6999/6999 7044/7044 +f 6910/6910 7001/7001 7000/7000 +f 7045/7045 6911/6911 7000/7000 +f 6996/6996 6954/6954 7040/7040 +f 6954/6954 7002/7002 7046/7046 +f 7002/7002 6911/6911 7045/7045 +f 6955/6955 7047/7047 7003/7003 +f 7048/7048 6956/6956 7003/7003 +f 6956/6956 7048/7048 7004/7004 +f 7049/7049 6867/6867 7005/7005 +f 7050/7050 7005/7005 6957/6957 +f 6957/6957 7004/7004 7051/7051 +f 7047/7047 6955/6955 7006/7006 +f 6867/6867 7049/7049 7001/7001 +f 6958/6958 6959/6959 7008/7008 +f 6960/6960 7052/7052 7006/7006 +f 7007/7007 7052/7052 6960/6960 +f 7007/7007 6915/6915 7053/7053 +f 7008/7008 7054/7054 6915/6915 +f 7009/7009 6917/6917 7010/7010 +f 7012/7012 6916/6916 7009/7009 +f 7055/7055 7010/7010 6961/6961 +f 6961/6961 7011/7011 7055/7055 +f 6875/6875 7044/7044 7011/7011 +f 6962/6962 7014/7014 6921/6921 +f 6962/6962 6963/6963 7056/7056 +f 6963/6963 7012/7012 7057/7057 +f 6964/6964 7058/7058 6965/6965 +f 6966/6966 6965/6965 7059/7059 +f 7060/7060 7013/7013 6966/6966 +f 7058/7058 6964/6964 7014/7014 +f 6967/6967 7013/7013 7015/7015 +f 7025/7025 6968/6968 6977/6977 +f 6969/6969 6968/6968 7061/7061 +f 7015/7015 7062/7062 6924/6924 +f 7063/7063 7016/7016 6970/6970 +f 7017/7017 7063/7063 6970/6970 +f 7064/7064 7017/7017 6924/6924 +f 6972/6972 6971/6971 7016/7016 +f 6838/6838 7018/7018 7065/7065 +f 7066/7066 6925/6925 7019/7019 +f 7019/7019 6972/6972 7067/7067 +f 7066/7066 7020/7020 6925/6925 +f 6973/6973 7020/7020 7018/7018 +f 7021/7021 6838/6838 7068/7068 +f 6974/6974 7021/7021 7069/7069 +f 7022/7022 6974/6974 7023/7023 +f 6929/6929 7022/7022 7023/7023 +f 6976/6976 6930/6930 7023/7023 +f 7024/7024 7070/7070 6931/6931 +f 7024/7024 6976/6976 7023/7023 +f 6933/6933 7025/7025 6977/6977 +f 6979/6979 7071/7071 6978/6978 +f 7025/7025 6978/6978 7072/7072 +f 6931/6931 7070/7070 7026/7026 +f 7026/7026 7073/7073 6979/6979 +f 35906/38475 7074/7074 7027/7027 +f 35905/38476 35906/38475 7027/7027 +f 6934/6934 7027/7027 7028/7028 +f 6980/6980 7028/7028 7034/7034 +f 6981/6981 7029/7029 6982/6982 +f 7030/7030 7075/7075 6983/6983 +f 7076/7076 7029/7029 6984/6984 +f 7077/7077 6984/6984 7031/7031 +f 7031/7031 6983/6983 7075/7075 +f 6988/6988 6985/6985 7078/7078 +f 6986/6986 6987/6987 7079/7079 +f 7030/7030 6986/6986 7079/7079 +f 6987/6987 6988/6988 7080/7080 +f 7032/7032 7081/7081 6985/6985 +f 7082/7082 7032/7032 6941/6941 +f 7033/7033 7082/7082 6941/6941 +f 6943/6943 7034/7034 7033/7033 +f 7083/7083 7035/7035 6990/6990 +f 6959/6959 7035/7035 7084/7084 +f 7083/7083 6990/6990 7036/7036 +f 7085/7085 7036/7036 6991/6991 +f 6992/6992 6994/6994 7038/7038 +f 7085/7085 6991/6991 7037/7037 +f 7037/7037 6946/6946 7085/7085 +f 7038/7038 7085/7085 6946/6946 +f 6993/6993 6995/6995 7039/7039 +f 6993/6993 7086/7086 6994/6994 +f 6949/6949 6996/6996 7040/7040 +f 6997/6997 7040/7040 7087/7087 +f 6997/6997 7087/7087 6998/6998 +f 7041/7041 7042/7042 6952/6952 +f 6998/6998 7088/7088 7041/7041 +f 7089/7089 6953/6953 7042/7042 +f 7043/7043 7090/7090 6999/6999 +f 7043/7043 6953/6953 7091/7091 +f 6999/6999 7090/7090 7044/7044 +f 7001/7001 7049/7049 7000/7000 +f 7092/7092 7045/7045 7000/7000 +f 7040/7040 6954/6954 7046/7046 +f 7093/7093 7046/7046 7002/7002 +f 7094/7094 7002/7002 7045/7045 +f 7048/7048 7003/7003 7047/7047 +f 7095/7095 7004/7004 7048/7048 +f 7005/7005 7092/7092 7049/7049 +f 7050/7050 7096/7096 7005/7005 +f 7097/7097 7050/7050 6957/6957 +f 7098/7098 6957/6957 7051/7051 +f 7099/7099 7051/7051 7004/7004 +f 7047/7047 7006/7006 7100/7100 +f 7008/7008 6959/6959 7084/7084 +f 7052/7052 7100/7100 7006/7006 +f 7052/7052 7007/7007 7053/7053 +f 6915/6915 7054/7054 7053/7053 +f 7054/7054 7008/7008 7101/7101 +f 7009/7009 7010/7010 7012/7012 +f 7102/7102 7010/7010 7055/7055 +f 7103/7103 7055/7055 7011/7011 +f 7044/7044 7104/7104 7011/7011 +f 7105/7105 7014/7014 6962/6962 +f 7105/7105 6962/6962 7056/7056 +f 6963/6963 7057/7057 7056/7056 +f 7010/7010 7057/7057 7012/7012 +f 7106/7106 6965/6965 7058/7058 +f 7107/7107 6966/6966 7059/7059 +f 7059/7059 6965/6965 7106/7106 +f 7108/7108 7060/7060 6966/6966 +f 7060/7060 7015/7015 7013/7013 +f 7014/7014 7109/7109 7058/7058 +f 7061/7061 6968/6968 7025/7025 +f 7061/7061 7110/7110 6969/6969 +f 7064/7064 6924/6924 7062/7062 +f 7015/7015 7060/7060 7062/7062 +f 7063/7063 7111/7111 7016/7016 +f 7112/7112 7063/7063 7017/7017 +f 7064/7064 7113/7113 7017/7017 +f 6972/6972 7016/7016 7111/7111 +f 7065/7065 7018/7018 7114/7114 +f 6838/6838 7065/7065 7115/7115 +f 7019/7019 7116/7116 7066/7066 +f 7067/7067 6972/6972 7111/7111 +f 7019/7019 7067/7067 7117/7117 +f 7066/7066 7118/7118 7020/7020 +f 7118/7118 7018/7018 7020/7020 +f 6838/6838 7115/7115 7068/7068 +f 7021/7021 7068/7068 7119/7119 +f 7120/7120 7069/7069 7021/7021 +f 7069/7069 7121/7121 6974/6974 +f 6974/6974 7024/7024 7023/7023 +f 7070/7070 7024/7024 7121/7121 +f 7071/7071 7122/7122 6978/6978 +f 6979/6979 7073/7073 7071/7071 +f 7072/7072 6978/6978 7123/7123 +f 7061/7061 7025/7025 7072/7072 +f 7069/7069 7026/7026 7070/7070 +f 7073/7073 7026/7026 7069/7069 +f 7027/7027 7074/7074 7034/7034 +f 35907/38477 7124/7124 7074/7074 +f 35906/38478 35907/38477 7074/7074 +f 7034/7034 7028/7028 7027/7027 +f 7124/7124 35907/38479 35908/38480 +f 7029/7029 7125/7125 6982/6982 +f 7079/7079 7075/7075 7030/7030 +f 7029/7029 7076/7076 7125/7125 +f 7077/7077 7076/7076 6984/6984 +f 7031/7031 7126/7126 7077/7077 +f 7031/7031 7075/7075 7127/7127 +f 7078/7078 6985/6985 7081/7081 +f 7080/7080 6988/6988 7078/7078 +f 7128/7128 7079/7079 6987/6987 +f 6987/6987 7080/7080 7128/7128 +f 7129/7129 7081/7081 7032/7032 +f 7082/7082 7129/7129 7032/7032 +f 7033/7033 7074/7074 7082/7082 +f 7034/7034 7074/7074 7033/7033 +f 7130/7130 7035/7035 7083/7083 +f 7130/7130 7084/7084 7035/7035 +f 7036/7036 7131/7131 7083/7083 +f 7132/7132 7036/7036 7085/7085 +f 7086/7086 7038/7038 6994/6994 +f 7038/7038 7086/7086 7085/7085 +f 6993/6993 7039/7039 7133/7133 +f 7133/7133 7086/7086 6993/6993 +f 7087/7087 7040/7040 7134/7134 +f 7088/7088 6998/6998 7087/7087 +f 7042/7042 7041/7041 7135/7135 +f 7041/7041 7088/7088 7136/7136 +f 6953/6953 7089/7089 7091/7091 +f 7089/7089 7042/7042 7135/7135 +f 7137/7137 7090/7090 7043/7043 +f 7137/7137 7043/7043 7091/7091 +f 7044/7044 7090/7090 7138/7138 +f 7049/7049 7092/7092 7000/7000 +f 7092/7092 7139/7139 7045/7045 +f 7134/7134 7040/7040 7046/7046 +f 7093/7093 7134/7134 7046/7046 +f 7093/7093 7002/7002 7140/7140 +f 7094/7094 7140/7140 7002/7002 +f 7139/7139 7094/7094 7045/7045 +f 7141/7141 7048/7048 7047/7047 +f 7004/7004 7095/7095 7142/7142 +f 7095/7095 7048/7048 7143/7143 +f 7096/7096 7092/7092 7005/7005 +f 7144/7144 7096/7096 7050/7050 +f 7097/7097 7145/7145 7050/7050 +f 7098/7098 7097/7097 6957/6957 +f 7051/7051 7146/7146 7098/7098 +f 7051/7051 7099/7099 7147/7147 +f 7004/7004 7148/7148 7099/7099 +f 7100/7100 7141/7141 7047/7047 +f 7084/7084 7149/7149 7008/7008 +f 7150/7150 7100/7100 7052/7052 +f 7053/7053 7151/7151 7052/7052 +f 7053/7053 7054/7054 7151/7151 +f 7101/7101 7008/7008 7149/7149 +f 7101/7101 7152/7152 7054/7054 +f 7153/7153 7102/7102 7055/7055 +f 7057/7057 7010/7010 7102/7102 +f 7055/7055 7103/7103 7153/7153 +f 7011/7011 7104/7104 7103/7103 +f 7044/7044 7154/7154 7104/7104 +f 7105/7105 7109/7109 7014/7014 +f 7056/7056 7155/7155 7105/7105 +f 7056/7056 7057/7057 7156/7156 +f 7058/7058 7157/7157 7106/7106 +f 7107/7107 7108/7108 6966/6966 +f 7059/7059 7158/7158 7107/7107 +f 7106/7106 7158/7158 7059/7059 +f 7060/7060 7108/7108 7064/7064 +f 7109/7109 7159/7159 7058/7058 +f 7061/7061 7072/7072 7110/7110 +f 7064/7064 7062/7062 7060/7060 +f 7111/7111 7063/7063 7160/7160 +f 7112/7112 7160/7160 7063/7063 +f 7113/7113 7112/7112 7017/7017 +f 7064/7064 7161/7161 7113/7113 +f 7018/7018 7162/7162 7114/7114 +f 7114/7114 7163/7163 7065/7065 +f 7065/7065 7163/7163 7115/7115 +f 7164/7164 7066/7066 7116/7116 +f 7019/7019 7117/7117 7116/7116 +f 7111/7111 7160/7160 7067/7067 +f 7165/7165 7117/7117 7067/7067 +f 7118/7118 7066/7066 7164/7164 +f 7118/7118 7166/7166 7018/7018 +f 7115/7115 7167/7167 7068/7068 +f 7168/7168 7021/7021 7119/7119 +f 7068/7068 7169/7169 7119/7119 +f 7069/7069 7120/7120 7073/7073 +f 7120/7120 7021/7021 7168/7168 +f 7070/7070 7121/7121 7069/7069 +f 6974/6974 7121/7121 7024/7024 +f 7123/7123 6978/6978 7122/7122 +f 7122/7122 7071/7071 7170/7170 +f 7073/7073 7171/7171 7071/7071 +f 7124/7124 35908/38481 35909/38482 +f 7124/7124 35909/38483 35910/38484 +f 7124/7124 7082/7082 7074/7074 +f 7172/7172 6982/6982 7125/7125 +f 7075/7075 7079/7079 7173/7173 +f 7076/7076 7174/7174 7125/7125 +f 7175/7175 7076/7076 7077/7077 +f 7175/7175 7077/7077 7126/7126 +f 7126/7126 7031/7031 7176/7176 +f 7075/7075 7173/7173 7127/7127 +f 7176/7176 7031/7031 7127/7127 +f 7081/7081 7177/7177 7078/7078 +f 7078/7078 7177/7177 7080/7080 +f 7178/7178 7079/7079 7128/7128 +f 7080/7080 7179/7179 7128/7128 +f 7129/7129 7177/7177 7081/7081 +f 7082/7082 7180/7180 7129/7129 +f 7131/7131 7130/7130 7083/7083 +f 7084/7084 7130/7130 7181/7181 +f 7131/7131 7036/7036 7132/7132 +f 7085/7085 7086/7086 7132/7132 +f 7087/7087 7134/7134 7182/7182 +f 7087/7087 7183/7183 7088/7088 +f 7184/7184 7135/7135 7041/7041 +f 7185/7185 7041/7041 7136/7136 +f 7136/7136 7088/7088 7183/7183 +f 7089/7089 7186/7186 7091/7091 +f 7187/7187 7089/7089 7135/7135 +f 7090/7090 7137/7137 7138/7138 +f 7188/7188 7137/7137 7091/7091 +f 7138/7138 7154/7154 7044/7044 +f 7096/7096 7139/7139 7092/7092 +f 7093/7093 7182/7182 7134/7134 +f 7140/7140 7189/7189 7093/7093 +f 7140/7140 7094/7094 7190/7190 +f 7190/7190 7094/7094 7139/7139 +f 7143/7143 7048/7048 7141/7141 +f 7191/7191 7142/7142 7095/7095 +f 7004/7004 7142/7142 7148/7148 +f 7095/7095 7143/7143 7192/7192 +f 7144/7144 7139/7139 7096/7096 +f 7144/7144 7050/7050 7145/7145 +f 7193/7193 7145/7145 7097/7097 +f 7097/7097 7098/7098 7193/7193 +f 7146/7146 7051/7051 7194/7194 +f 7195/7195 7098/7098 7146/7146 +f 7148/7148 7147/7147 7099/7099 +f 7051/7051 7147/7147 7196/7196 +f 7141/7141 7100/7100 7197/7197 +f 7181/7181 7149/7149 7084/7084 +f 7197/7197 7100/7100 7150/7150 +f 7198/7198 7150/7150 7052/7052 +f 7198/7198 7052/7052 7151/7151 +f 7152/7152 7151/7151 7054/7054 +f 7101/7101 7149/7149 7199/7199 +f 7152/7152 7101/7101 7200/7200 +f 7153/7153 7156/7156 7102/7102 +f 7156/7156 7057/7057 7102/7102 +f 7103/7103 7201/7201 7153/7153 +f 7104/7104 7202/7202 7103/7103 +f 7104/7104 7154/7154 7203/7203 +f 7105/7105 7155/7155 7109/7109 +f 7056/7056 7204/7204 7155/7155 +f 7156/7156 7205/7205 7056/7056 +f 7159/7159 7157/7157 7058/7058 +f 7157/7157 7206/7206 7106/7106 +f 7107/7107 7207/7207 7108/7108 +f 7158/7158 7208/7208 7107/7107 +f 7106/7106 7206/7206 7158/7158 +f 7209/7209 7064/7064 7108/7108 +f 7109/7109 7204/7204 7159/7159 +f 7160/7160 7112/7112 7210/7210 +f 7112/7112 7113/7113 7211/7211 +f 7064/7064 7209/7209 7161/7161 +f 7113/7113 7161/7161 7212/7212 +f 7162/7162 7018/7018 7166/7166 +f 7114/7114 7162/7162 7163/7163 +f 7163/7163 7167/7167 7115/7115 +f 7213/7213 7164/7164 7116/7116 +f 7214/7214 7116/7116 7117/7117 +f 7160/7160 7165/7165 7067/7067 +f 7117/7117 7165/7165 7214/7214 +f 7164/7164 7215/7215 7118/7118 +f 7118/7118 7216/7216 7166/7166 +f 7068/7068 7167/7167 7217/7217 +f 7218/7218 7168/7168 7119/7119 +f 7169/7169 7219/7219 7119/7119 +f 7068/7068 7217/7217 7169/7169 +f 7073/7073 7120/7120 7171/7171 +f 7168/7168 7171/7171 7120/7120 +f 7122/7122 7220/7220 7123/7123 +f 7071/7071 7221/7221 7170/7170 +f 7122/7122 7170/7170 7220/7220 +f 7071/7071 7171/7171 7221/7221 +f 7124/7124 35910/38485 35911/38486 +f 7124/7124 7180/7180 7082/7082 +f 7222/7222 7172/7172 7125/7125 +f 7223/7223 7173/7173 7079/7079 +f 7175/7175 7174/7174 7076/7076 +f 7125/7125 7174/7174 7224/7224 +f 7175/7175 7126/7126 7225/7225 +f 7176/7176 7226/7226 7126/7126 +f 7173/7173 7223/7223 7127/7127 +f 7227/7227 7176/7176 7127/7127 +f 7080/7080 7177/7177 7179/7179 +f 7178/7178 7223/7223 7079/7079 +f 7128/7128 7179/7179 7178/7178 +f 7228/7228 7177/7177 7129/7129 +f 7129/7129 7180/7180 7228/7228 +f 7181/7181 7130/7130 7131/7131 +f 7131/7131 7132/7132 7229/7229 +f 7182/7182 7183/7183 7087/7087 +f 7187/7187 7135/7135 7184/7184 +f 7184/7184 7041/7041 7185/7185 +f 7136/7136 7230/7230 7185/7185 +f 7183/7183 7231/7231 7136/7136 +f 7186/7186 7089/7089 7232/7232 +f 7186/7186 7233/7233 7091/7091 +f 7232/7232 7089/7089 7187/7187 +f 7137/7137 7188/7188 7138/7138 +f 7233/7233 7188/7188 7091/7091 +f 7188/7188 7154/7154 7138/7138 +f 7234/7234 7182/7182 7093/7093 +f 7190/7190 7189/7189 7140/7140 +f 7093/7093 7189/7189 7235/7235 +f 7190/7190 7139/7139 7236/7236 +f 7237/7237 7143/7143 7141/7141 +f 7142/7142 7191/7191 7148/7148 +f 7238/7238 7191/7191 7095/7095 +f 7095/7095 7192/7192 7238/7238 +f 7143/7143 7237/7237 7192/7192 +f 7144/7144 7236/7236 7139/7139 +f 7144/7144 7145/7145 7239/7239 +f 7239/7239 7145/7145 7193/7193 +f 7098/7098 7195/7195 7193/7193 +f 7194/7194 7051/7051 7196/7196 +f 7240/7240 7146/7146 7194/7194 +f 7146/7146 7241/7241 7195/7195 +f 7191/7191 7147/7147 7148/7148 +f 7147/7147 7242/7242 7196/7196 +f 7197/7197 7237/7237 7141/7141 +f 7149/7149 7181/7181 7243/7243 +f 7244/7244 7197/7197 7150/7150 +f 7245/7245 7150/7150 7198/7198 +f 7198/7198 7151/7151 7246/7246 +f 7152/7152 7247/7247 7151/7151 +f 7199/7199 7200/7200 7101/7101 +f 7199/7199 7149/7149 7248/7248 +f 7249/7249 7152/7152 7200/7200 +f 7156/7156 7153/7153 7250/7250 +f 7201/7201 7103/7103 7251/7251 +f 7201/7201 7252/7252 7153/7153 +f 7103/7103 7202/7202 7253/7253 +f 7104/7104 7254/7254 7202/7202 +f 7203/7203 7254/7254 7104/7104 +f 7154/7154 7255/7255 7203/7203 +f 7204/7204 7109/7109 7155/7155 +f 7204/7204 7056/7056 7205/7205 +f 7156/7156 7250/7250 7205/7205 +f 7256/7256 7157/7157 7159/7159 +f 7157/7157 7158/7158 7206/7206 +f 7257/7257 7108/7108 7207/7207 +f 7207/7207 7107/7107 7208/7208 +f 7258/7258 7208/7208 7158/7158 +f 7209/7209 7108/7108 7257/7257 +f 7204/7204 7256/7256 7159/7159 +f 7112/7112 7259/7259 7210/7210 +f 7165/7165 7160/7160 7210/7210 +f 7211/7211 7113/7113 7260/7260 +f 7112/7112 7211/7211 7259/7259 +f 7261/7261 7161/7161 7209/7209 +f 7261/7261 7212/7212 7161/7161 +f 7212/7212 7260/7260 7113/7113 +f 7162/7162 7166/7166 7262/7262 +f 7162/7162 7263/7263 7163/7163 +f 7264/7264 7167/7167 7163/7163 +f 7265/7265 7164/7164 7213/7213 +f 7116/7116 7214/7214 7213/7213 +f 7165/7165 7266/7266 7214/7214 +f 7265/7265 7215/7215 7164/7164 +f 7118/7118 7215/7215 7216/7216 +f 7216/7216 7267/7267 7166/7166 +f 7268/7268 7217/7217 7167/7167 +f 7168/7168 7218/7218 7269/7269 +f 7270/7270 7218/7218 7119/7119 +f 7219/7219 7169/7169 7271/7271 +f 7219/7219 7272/7272 7119/7119 +f 7273/7273 7169/7169 7217/7217 +f 7168/7168 7269/7269 7171/7171 +f 7274/7274 7170/7170 7221/7221 +f 7170/7170 7275/7275 7220/7220 +f 7171/7171 7269/7269 7221/7221 +f 35912/38487 7180/7180 7124/7124 +f 35911/38488 35912/38487 7124/7124 +f 7125/7125 7224/7224 7222/7222 +f 7174/7174 7175/7175 7276/7276 +f 7224/7224 7174/7174 7277/7277 +f 7225/7225 7126/7126 7226/7226 +f 7225/7225 7278/7278 7175/7175 +f 7227/7227 7226/7226 7176/7176 +f 7223/7223 7227/7227 7127/7127 +f 7179/7179 7177/7177 7279/7279 +f 7280/7280 7223/7223 7178/7178 +f 7280/7280 7178/7178 7179/7179 +f 7279/7279 7177/7177 7228/7228 +f 7180/7180 7281/7281 7228/7228 +f 7131/7131 7229/7229 7181/7181 +f 7282/7282 7229/7229 7132/7132 +f 7182/7182 7231/7231 7183/7183 +f 7184/7184 7283/7283 7187/7187 +f 7185/7185 7284/7284 7184/7184 +f 7230/7230 7284/7284 7185/7185 +f 7231/7231 7230/7230 7136/7136 +f 7233/7233 7186/7186 7232/7232 +f 7285/7285 7232/7232 7187/7187 +f 7255/7255 7188/7188 7233/7233 +f 7255/7255 7154/7154 7188/7188 +f 7235/7235 7234/7234 7093/7093 +f 7231/7231 7182/7182 7234/7234 +f 7236/7236 7189/7189 7190/7190 +f 7286/7286 7235/7235 7189/7189 +f 7191/7191 7238/7238 7242/7242 +f 7192/7192 7287/7287 7238/7238 +f 7237/7237 7288/7288 7192/7192 +f 7144/7144 7239/7239 7236/7236 +f 7239/7239 7193/7193 7289/7289 +f 7290/7290 7193/7193 7195/7195 +f 7240/7240 7194/7194 7196/7196 +f 7241/7241 7146/7146 7240/7240 +f 7195/7195 7241/7241 7291/7291 +f 7191/7191 7242/7242 7147/7147 +f 7292/7292 7196/7196 7242/7242 +f 7237/7237 7197/7197 7293/7293 +f 7243/7243 7181/7181 7294/7294 +f 7243/7243 7295/7295 7149/7149 +f 7293/7293 7197/7197 7244/7244 +f 7244/7244 7150/7150 7245/7245 +f 7245/7245 7198/7198 7246/7246 +f 7151/7151 7247/7247 7246/7246 +f 7296/7296 7247/7247 7152/7152 +f 7297/7297 7200/7200 7199/7199 +f 7295/7295 7248/7248 7149/7149 +f 7248/7248 7298/7298 7199/7199 +f 7200/7200 7297/7297 7249/7249 +f 7296/7296 7152/7152 7249/7249 +f 7252/7252 7250/7250 7153/7153 +f 7251/7251 7103/7103 7299/7299 +f 7201/7201 7251/7251 7252/7252 +f 7300/7300 7253/7253 7202/7202 +f 7299/7299 7103/7103 7253/7253 +f 7301/7301 7202/7202 7254/7254 +f 7203/7203 7302/7302 7254/7254 +f 7255/7255 7285/7285 7203/7203 +f 7204/7204 7205/7205 7256/7256 +f 7205/7205 7250/7250 7303/7303 +f 7157/7157 7256/7256 7304/7304 +f 7158/7158 7157/7157 7258/7258 +f 7207/7207 7305/7305 7257/7257 +f 7208/7208 7306/7306 7207/7207 +f 7258/7258 7307/7307 7208/7208 +f 7257/7257 7261/7261 7209/7209 +f 7259/7259 7266/7266 7210/7210 +f 7266/7266 7165/7165 7210/7210 +f 7211/7211 7260/7260 7259/7259 +f 7261/7261 7308/7308 7212/7212 +f 7212/7212 7308/7308 7260/7260 +f 7263/7263 7162/7162 7262/7262 +f 7267/7267 7262/7262 7166/7166 +f 7163/7163 7263/7263 7309/7309 +f 7264/7264 7268/7268 7167/7167 +f 7309/7309 7264/7264 7163/7163 +f 7213/7213 7310/7310 7265/7265 +f 7214/7214 7266/7266 7213/7213 +f 7265/7265 7311/7311 7215/7215 +f 7216/7216 7215/7215 7312/7312 +f 7216/7216 7312/7312 7267/7267 +f 7273/7273 7217/7217 7268/7268 +f 7313/7313 7269/7269 7218/7218 +f 7314/7314 7218/7218 7270/7270 +f 7315/7315 7270/7270 7119/7119 +f 7316/7316 7271/7271 7169/7169 +f 7271/7271 7272/7272 7219/7219 +f 7272/7272 7317/7317 7119/7119 +f 7316/7316 7169/7169 7273/7273 +f 7275/7275 7170/7170 7274/7274 +f 7274/7274 7221/7221 7314/7314 +f 7275/7275 7318/7318 7220/7220 +f 7269/7269 7313/7313 7221/7221 +f 7180/7180 35912/38489 35913/38490 +f 7319/7319 7222/7222 7224/7224 +f 7278/7278 7276/7276 7175/7175 +f 7174/7174 7276/7276 7277/7277 +f 7277/7277 7320/7320 7224/7224 +f 7226/7226 7321/7321 7225/7225 +f 7321/7321 7278/7278 7225/7225 +f 7322/7322 7226/7226 7227/7227 +f 7223/7223 7280/7280 7227/7227 +f 7279/7279 7281/7281 7179/7179 +f 7323/7323 7280/7280 7179/7179 +f 7281/7281 7279/7279 7228/7228 +f 7324/7324 7281/7281 7180/7180 +f 7229/7229 7325/7325 7181/7181 +f 7282/7282 7326/7326 7229/7229 +f 7132/7132 7327/7327 7282/7282 +f 7187/7187 7283/7283 7328/7328 +f 7283/7283 7184/7184 7284/7284 +f 7230/7230 7329/7329 7284/7284 +f 7330/7330 7230/7230 7231/7231 +f 7232/7232 7331/7331 7233/7233 +f 7232/7232 7285/7285 7331/7331 +f 7187/7187 7328/7328 7285/7285 +f 7233/7233 7331/7331 7255/7255 +f 7235/7235 7332/7332 7234/7234 +f 7231/7231 7234/7234 7333/7333 +f 7236/7236 7334/7334 7189/7189 +f 7335/7335 7235/7235 7286/7286 +f 7286/7286 7189/7189 7334/7334 +f 7238/7238 7336/7336 7242/7242 +f 7287/7287 7192/7192 7288/7288 +f 7238/7238 7287/7287 7337/7337 +f 7288/7288 7237/7237 7293/7293 +f 7239/7239 7289/7289 7236/7236 +f 7193/7193 7290/7290 7289/7289 +f 7195/7195 7338/7338 7290/7290 +f 7240/7240 7196/7196 7292/7292 +f 7339/7339 7241/7241 7240/7240 +f 7291/7291 7338/7338 7195/7195 +f 7340/7340 7291/7291 7241/7241 +f 7242/7242 7341/7341 7292/7292 +f 7243/7243 7294/7294 7342/7342 +f 7325/7325 7294/7294 7181/7181 +f 7295/7295 7243/7243 7343/7343 +f 7244/7244 7344/7344 7293/7293 +f 7244/7244 7245/7245 7344/7344 +f 7246/7246 7345/7345 7245/7245 +f 7246/7246 7247/7247 7345/7345 +f 7296/7296 7346/7346 7247/7247 +f 7347/7347 7297/7297 7199/7199 +f 7348/7348 7248/7248 7295/7295 +f 7298/7298 7248/7248 7343/7343 +f 7298/7298 7347/7347 7199/7199 +f 7349/7349 7249/7249 7297/7297 +f 7350/7350 7296/7296 7249/7249 +f 7252/7252 7351/7351 7250/7250 +f 7251/7251 7299/7299 7352/7352 +f 7252/7252 7251/7251 7351/7351 +f 7202/7202 7301/7301 7300/7300 +f 7300/7300 7353/7353 7253/7253 +f 7352/7352 7299/7299 7253/7253 +f 7354/7354 7301/7301 7254/7254 +f 7355/7355 7302/7302 7203/7203 +f 7254/7254 7302/7302 7354/7354 +f 7285/7285 7356/7356 7203/7203 +f 7331/7331 7285/7285 7255/7255 +f 7205/7205 7357/7357 7256/7256 +f 7303/7303 7250/7250 7358/7358 +f 7357/7357 7205/7205 7303/7303 +f 7359/7359 7157/7157 7304/7304 +f 7304/7304 7256/7256 7357/7357 +f 7258/7258 7157/7157 7307/7307 +f 7305/7305 7207/7207 7306/7306 +f 7305/7305 7360/7360 7257/7257 +f 7361/7361 7306/7306 7208/7208 +f 7307/7307 7362/7362 7208/7208 +f 7360/7360 7261/7261 7257/7257 +f 7266/7266 7259/7259 7363/7363 +f 7364/7364 7259/7259 7260/7260 +f 7308/7308 7261/7261 7365/7365 +f 7366/7366 7260/7260 7308/7308 +f 7309/7309 7263/7263 7262/7262 +f 7262/7262 7267/7267 7367/7367 +f 7264/7264 7368/7368 7268/7268 +f 7264/7264 7309/7309 7368/7368 +f 7213/7213 7266/7266 7310/7310 +f 7369/7369 7265/7265 7310/7310 +f 7311/7311 7265/7265 7369/7369 +f 7370/7370 7215/7215 7311/7311 +f 7312/7312 7215/7215 7371/7371 +f 7312/7312 7367/7367 7267/7267 +f 7372/7372 7273/7273 7268/7268 +f 7218/7218 7314/7314 7313/7313 +f 7373/7373 7314/7314 7270/7270 +f 7315/7315 7119/7119 7374/7374 +f 7315/7315 7375/7375 7270/7270 +f 7376/7376 7271/7271 7316/7316 +f 7271/7271 7377/7377 7272/7272 +f 7272/7272 7378/7378 7317/7317 +f 7374/7374 7119/7119 7317/7317 +f 7372/7372 7316/7316 7273/7273 +f 7275/7275 7274/7274 7318/7318 +f 7274/7274 7314/7314 7373/7373 +f 7313/7313 7314/7314 7221/7221 +f 35914/38491 7324/7324 7180/7180 +f 35913/38492 35914/38491 7180/7180 +f 7379/7379 7222/7222 7319/7319 +f 7319/7319 7224/7224 7380/7380 +f 7381/7381 7276/7276 7278/7278 +f 7382/7382 7277/7277 7276/7276 +f 7224/7224 7320/7320 7380/7380 +f 7320/7320 7277/7277 7382/7382 +f 7226/7226 7322/7322 7321/7321 +f 7278/7278 7321/7321 7381/7381 +f 7322/7322 7227/7227 7280/7280 +f 7179/7179 7281/7281 7323/7323 +f 7323/7323 7383/7383 7280/7280 +f 7281/7281 7324/7324 7384/7384 +f 7325/7325 7229/7229 7326/7326 +f 7282/7282 7385/7385 7326/7326 +f 7282/7282 7327/7327 7386/7386 +f 7387/7387 7328/7328 7283/7283 +f 7388/7388 7283/7283 7284/7284 +f 7389/7389 7329/7329 7230/7230 +f 7388/7388 7284/7284 7329/7329 +f 7330/7330 7389/7389 7230/7230 +f 7333/7333 7330/7330 7231/7231 +f 7390/7390 7285/7285 7328/7328 +f 7335/7335 7332/7332 7235/7235 +f 7234/7234 7332/7332 7333/7333 +f 7236/7236 7289/7289 7334/7334 +f 7286/7286 7338/7338 7335/7335 +f 7334/7334 7391/7391 7286/7286 +f 7336/7336 7238/7238 7337/7337 +f 7336/7336 7392/7392 7242/7242 +f 7288/7288 7393/7393 7287/7287 +f 7337/7337 7287/7287 7394/7394 +f 7293/7293 7393/7393 7288/7288 +f 7289/7289 7290/7290 7391/7391 +f 7338/7338 7391/7391 7290/7290 +f 7292/7292 7339/7339 7240/7240 +f 7241/7241 7339/7339 7395/7395 +f 7291/7291 7396/7396 7338/7338 +f 7340/7340 7241/7241 7395/7395 +f 7397/7397 7291/7291 7340/7340 +f 7292/7292 7341/7341 7392/7392 +f 7242/7242 7392/7392 7341/7341 +f 7294/7294 7325/7325 7342/7342 +f 7342/7342 7398/7398 7243/7243 +f 7399/7399 7343/7343 7243/7243 +f 7295/7295 7343/7343 7348/7348 +f 7344/7344 7393/7393 7293/7293 +f 7344/7344 7245/7245 7400/7400 +f 7345/7345 7401/7401 7245/7245 +f 7346/7346 7345/7345 7247/7247 +f 7296/7296 7402/7402 7346/7346 +f 7349/7349 7297/7297 7347/7347 +f 7248/7248 7348/7348 7343/7343 +f 7343/7343 7399/7399 7298/7298 +f 7347/7347 7298/7298 7399/7399 +f 7249/7249 7349/7349 7403/7403 +f 7350/7350 7402/7402 7296/7296 +f 7403/7403 7350/7350 7249/7249 +f 7404/7404 7250/7250 7351/7351 +f 7405/7405 7251/7251 7352/7352 +f 7251/7251 7406/7406 7351/7351 +f 7300/7300 7301/7301 7407/7407 +f 7353/7353 7300/7300 7408/7408 +f 7353/7353 7409/7409 7253/7253 +f 7253/7253 7409/7409 7352/7352 +f 7354/7354 7410/7410 7301/7301 +f 7411/7411 7302/7302 7355/7355 +f 7355/7355 7203/7203 7356/7356 +f 7302/7302 7412/7412 7354/7354 +f 7356/7356 7285/7285 7390/7390 +f 7358/7358 7413/7413 7303/7303 +f 7250/7250 7404/7404 7358/7358 +f 7303/7303 7414/7414 7357/7357 +f 7359/7359 7307/7307 7157/7157 +f 7414/7414 7359/7359 7304/7304 +f 7414/7414 7304/7304 7357/7357 +f 7306/7306 7415/7415 7305/7305 +f 7360/7360 7305/7305 7416/7416 +f 7417/7417 7361/7361 7208/7208 +f 7418/7418 7306/7306 7361/7361 +f 7307/7307 7359/7359 7362/7362 +f 7208/7208 7362/7362 7417/7417 +f 7419/7419 7261/7261 7360/7360 +f 7363/7363 7259/7259 7364/7364 +f 7266/7266 7363/7363 7310/7310 +f 7366/7366 7364/7364 7260/7260 +f 7419/7419 7365/7365 7261/7261 +f 7308/7308 7365/7365 7420/7420 +f 7308/7308 7421/7421 7366/7366 +f 7368/7368 7309/7309 7262/7262 +f 7262/7262 7367/7367 7368/7368 +f 7368/7368 7372/7372 7268/7268 +f 7422/7422 7369/7369 7310/7310 +f 7423/7423 7311/7311 7369/7369 +f 7311/7311 7424/7424 7370/7370 +f 7371/7371 7215/7215 7370/7370 +f 7312/7312 7371/7371 7425/7425 +f 7312/7312 7425/7425 7367/7367 +f 7375/7375 7373/7373 7270/7270 +f 7426/7426 7315/7315 7374/7374 +f 7315/7315 7427/7427 7375/7375 +f 7271/7271 7376/7376 7428/7428 +f 7376/7376 7316/7316 7372/7372 +f 7377/7377 7271/7271 7429/7429 +f 7272/7272 7377/7377 7378/7378 +f 7317/7317 7378/7378 7430/7430 +f 7431/7431 7374/7374 7317/7317 +f 7274/7274 7432/7432 7318/7318 +f 7274/7274 7373/7373 7433/7433 +f 7434/7434 35915/38493 35916/38494 +f 35915/38495 7434/7434 7324/7324 +f 35914/38496 35915/38495 7324/7324 +f 7319/7319 7435/7435 7379/7379 +f 7380/7380 7436/7436 7319/7319 +f 7276/7276 7381/7381 7437/7437 +f 7437/7437 7382/7382 7276/7276 +f 7320/7320 7438/7438 7380/7380 +f 7320/7320 7382/7382 7439/7439 +f 7440/7440 7321/7321 7322/7322 +f 7440/7440 7381/7381 7321/7321 +f 7280/7280 7383/7383 7322/7322 +f 7384/7384 7323/7323 7281/7281 +f 7323/7323 7384/7384 7383/7383 +f 7324/7324 7434/7434 7384/7384 +f 7441/7441 7325/7325 7326/7326 +f 7385/7385 7282/7282 7386/7386 +f 7385/7385 7441/7441 7326/7326 +f 7327/7327 7442/7442 7386/7386 +f 7387/7387 7283/7283 7443/7443 +f 7390/7390 7328/7328 7387/7387 +f 7283/7283 7388/7388 7443/7443 +f 7329/7329 7389/7389 7444/7444 +f 7329/7329 7445/7445 7388/7388 +f 7389/7389 7330/7330 7446/7446 +f 7330/7330 7333/7333 7446/7446 +f 7447/7447 7332/7332 7335/7335 +f 7446/7446 7333/7333 7332/7332 +f 7391/7391 7334/7334 7289/7289 +f 7391/7391 7338/7338 7286/7286 +f 7338/7338 7396/7396 7335/7335 +f 7448/7448 7336/7336 7337/7337 +f 7336/7336 7449/7449 7392/7392 +f 7450/7450 7287/7287 7393/7393 +f 7394/7394 7451/7451 7337/7337 +f 7394/7394 7287/7287 7450/7450 +f 7452/7452 7339/7339 7292/7292 +f 7453/7453 7395/7395 7339/7339 +f 7396/7396 7291/7291 7397/7397 +f 7454/7454 7340/7340 7395/7395 +f 7455/7455 7397/7397 7340/7340 +f 7452/7452 7292/7292 7392/7392 +f 7342/7342 7325/7325 7441/7441 +f 7243/7243 7398/7398 7399/7399 +f 7456/7456 7398/7398 7342/7342 +f 7393/7393 7344/7344 7400/7400 +f 7245/7245 7401/7401 7400/7400 +f 7345/7345 7457/7457 7401/7401 +f 7458/7458 7345/7345 7346/7346 +f 7346/7346 7402/7402 7459/7459 +f 7347/7347 7399/7399 7349/7349 +f 7403/7403 7349/7349 7460/7460 +f 7350/7350 7461/7461 7402/7402 +f 7460/7460 7350/7350 7403/7403 +f 7404/7404 7351/7351 7406/7406 +f 7352/7352 7462/7462 7405/7405 +f 7251/7251 7405/7405 7406/7406 +f 7300/7300 7407/7407 7463/7463 +f 7407/7407 7301/7301 7464/7464 +f 7353/7353 7408/7408 7465/7465 +f 7463/7463 7408/7408 7300/7300 +f 7409/7409 7353/7353 7466/7466 +f 7352/7352 7409/7409 7462/7462 +f 7410/7410 7464/7464 7301/7301 +f 7412/7412 7410/7410 7354/7354 +f 7411/7411 7412/7412 7302/7302 +f 7355/7355 7467/7467 7411/7411 +f 7467/7467 7355/7355 7356/7356 +f 7468/7468 7356/7356 7390/7390 +f 7404/7404 7413/7413 7358/7358 +f 7303/7303 7413/7413 7414/7414 +f 7414/7414 7413/7413 7359/7359 +f 7305/7305 7415/7415 7416/7416 +f 7415/7415 7306/7306 7469/7469 +f 7416/7416 7419/7419 7360/7360 +f 7417/7417 7470/7470 7361/7361 +f 7361/7361 7470/7470 7418/7418 +f 7306/7306 7418/7418 7471/7471 +f 7472/7472 7362/7362 7359/7359 +f 7470/7470 7417/7417 7362/7362 +f 7363/7363 7364/7364 7473/7473 +f 7363/7363 7422/7422 7310/7310 +f 7474/7474 7364/7364 7366/7366 +f 7419/7419 7475/7475 7365/7365 +f 7365/7365 7476/7476 7420/7420 +f 7477/7477 7308/7308 7420/7420 +f 7477/7477 7421/7421 7308/7308 +f 7474/7474 7366/7366 7421/7421 +f 7367/7367 7478/7478 7368/7368 +f 7368/7368 7479/7479 7372/7372 +f 7480/7480 7369/7369 7422/7422 +f 7311/7311 7423/7423 7424/7424 +f 7369/7369 7481/7481 7423/7423 +f 7424/7424 7482/7482 7370/7370 +f 7370/7370 7482/7482 7371/7371 +f 7371/7371 7483/7483 7425/7425 +f 7367/7367 7425/7425 7484/7484 +f 7373/7373 7375/7375 7433/7433 +f 7315/7315 7426/7426 7485/7485 +f 7486/7486 7426/7426 7374/7374 +f 7375/7375 7427/7427 7487/7487 +f 7271/7271 7428/7428 7429/7429 +f 7428/7428 7376/7376 7488/7488 +f 7479/7479 7376/7376 7372/7372 +f 7377/7377 7429/7429 7489/7489 +f 7377/7377 7490/7490 7378/7378 +f 7430/7430 7378/7378 7491/7491 +f 7430/7430 7431/7431 7317/7317 +f 7374/7374 7431/7431 7492/7492 +f 7433/7433 7432/7432 7274/7274 +f 7493/7493 7318/7318 7432/7432 +f 7494/7494 35917/38497 35918/38498 +f 35919/38499 7495/7495 7434/7434 +f 35916/38500 35919/38499 7434/7434 +f 7319/7319 7436/7436 7435/7435 +f 7379/7379 7435/7435 7496/7496 +f 7497/7497 7436/7436 7380/7380 +f 7381/7381 7440/7440 7437/7437 +f 7382/7382 7437/7437 7439/7439 +f 7439/7439 7438/7438 7320/7320 +f 7438/7438 7497/7497 7380/7380 +f 7498/7498 7440/7440 7322/7322 +f 7383/7383 7498/7498 7322/7322 +f 7384/7384 7495/7495 7383/7383 +f 7384/7384 7434/7434 7495/7495 +f 7499/7499 7385/7385 7386/7386 +f 7385/7385 7499/7499 7441/7441 +f 7442/7442 7499/7499 7386/7386 +f 7500/7500 7442/7442 7327/7327 +f 7501/7501 7387/7387 7443/7443 +f 7387/7387 7501/7501 7390/7390 +f 7502/7502 7443/7443 7388/7388 +f 7446/7446 7444/7444 7389/7389 +f 7329/7329 7444/7444 7503/7503 +f 7502/7502 7388/7388 7445/7445 +f 7504/7504 7445/7445 7329/7329 +f 7447/7447 7505/7505 7332/7332 +f 7447/7447 7335/7335 7396/7396 +f 7332/7332 7506/7506 7446/7446 +f 7448/7448 7449/7449 7336/7336 +f 7337/7337 7507/7507 7448/7448 +f 7392/7392 7449/7449 7508/7508 +f 7450/7450 7393/7393 7400/7400 +f 7337/7337 7451/7451 7507/7507 +f 7451/7451 7394/7394 7509/7509 +f 7394/7394 7450/7450 7400/7400 +f 7452/7452 7453/7453 7339/7339 +f 7453/7453 7510/7510 7395/7395 +f 7396/7396 7397/7397 7511/7511 +f 7395/7395 7510/7510 7454/7454 +f 7454/7454 7512/7512 7340/7340 +f 7397/7397 7455/7455 7513/7513 +f 7340/7340 7514/7514 7455/7455 +f 7515/7515 7452/7452 7392/7392 +f 7342/7342 7441/7441 7456/7456 +f 7349/7349 7399/7399 7398/7398 +f 7516/7516 7398/7398 7456/7456 +f 7401/7401 7394/7394 7400/7400 +f 7345/7345 7458/7458 7457/7457 +f 7457/7457 7517/7517 7401/7401 +f 7459/7459 7458/7458 7346/7346 +f 7402/7402 7461/7461 7459/7459 +f 7349/7349 7516/7516 7460/7460 +f 7461/7461 7350/7350 7518/7518 +f 7518/7518 7350/7350 7460/7460 +f 7406/7406 7472/7472 7404/7404 +f 7519/7519 7405/7405 7462/7462 +f 7405/7405 7520/7520 7406/7406 +f 7521/7521 7463/7463 7407/7407 +f 7464/7464 7522/7522 7407/7407 +f 7465/7465 7408/7408 7523/7523 +f 7353/7353 7465/7465 7524/7524 +f 7521/7521 7408/7408 7463/7463 +f 7466/7466 7353/7353 7471/7471 +f 7462/7462 7409/7409 7466/7466 +f 7464/7464 7410/7410 7525/7525 +f 7410/7410 7412/7412 7526/7526 +f 7527/7527 7412/7412 7411/7411 +f 7411/7411 7467/7467 7528/7528 +f 7467/7467 7356/7356 7468/7468 +f 7529/7529 7468/7468 7390/7390 +f 7404/7404 7472/7472 7413/7413 +f 7413/7413 7472/7472 7359/7359 +f 7416/7416 7415/7415 7419/7419 +f 7469/7469 7530/7530 7415/7415 +f 7306/7306 7471/7471 7469/7469 +f 7531/7531 7418/7418 7470/7470 +f 7531/7531 7471/7471 7418/7418 +f 7472/7472 7520/7520 7362/7362 +f 7520/7520 7470/7470 7362/7362 +f 7532/7532 7473/7473 7364/7364 +f 7363/7363 7473/7473 7422/7422 +f 7364/7364 7474/7474 7533/7533 +f 7475/7475 7419/7419 7534/7534 +f 7535/7535 7365/7365 7475/7475 +f 7365/7365 7535/7535 7476/7476 +f 7476/7476 7536/7536 7420/7420 +f 7420/7420 7537/7537 7477/7477 +f 7477/7477 7474/7474 7421/7421 +f 7484/7484 7478/7478 7367/7367 +f 7368/7368 7478/7478 7479/7479 +f 7480/7480 7481/7481 7369/7369 +f 7422/7422 7538/7538 7480/7480 +f 7424/7424 7423/7423 7539/7539 +f 7481/7481 7540/7540 7423/7423 +f 7482/7482 7424/7424 7541/7541 +f 7482/7482 7483/7483 7371/7371 +f 7483/7483 7542/7542 7425/7425 +f 7484/7484 7425/7425 7543/7543 +f 7375/7375 7544/7544 7433/7433 +f 7426/7426 7545/7545 7485/7485 +f 7546/7546 7315/7315 7485/7485 +f 7486/7486 7374/7374 7492/7492 +f 7426/7426 7486/7486 7545/7545 +f 7493/7493 7487/7487 7427/7427 +f 7375/7375 7487/7487 7544/7544 +f 7547/7547 7429/7429 7428/7428 +f 7376/7376 7548/7548 7488/7488 +f 7428/7428 7488/7488 7547/7547 +f 7548/7548 7376/7376 7479/7479 +f 7490/7490 7377/7377 7489/7489 +f 7429/7429 7549/7549 7489/7489 +f 7550/7550 7378/7378 7490/7490 +f 7550/7550 7491/7491 7378/7378 +f 7430/7430 7491/7491 7431/7431 +f 7551/7551 7492/7492 7431/7431 +f 7433/7433 7544/7544 7432/7432 +f 7487/7487 7493/7493 7432/7432 +f 7494/7494 35918/38501 35920/38502 +f 35917/38503 7494/7494 7495/7495 +f 35919/38504 35917/38503 7495/7495 +f 7436/7436 7552/7552 7435/7435 +f 7435/7435 7553/7553 7496/7496 +f 7379/7379 7496/7496 7554/7554 +f 7436/7436 7497/7497 7555/7555 +f 7437/7437 7440/7440 7556/7556 +f 7556/7556 7439/7439 7437/7437 +f 7557/7557 7438/7438 7439/7439 +f 7497/7497 7438/7438 7557/7557 +f 7556/7556 7440/7440 7498/7498 +f 7498/7498 7383/7383 7495/7495 +f 7499/7499 7558/7558 7441/7441 +f 7442/7442 7559/7559 7499/7499 +f 7442/7442 7500/7500 7560/7560 +f 7561/7561 7501/7501 7443/7443 +f 7501/7501 7529/7529 7390/7390 +f 7502/7502 7561/7561 7443/7443 +f 7446/7446 7506/7506 7444/7444 +f 7503/7503 7444/7444 7506/7506 +f 7503/7503 7562/7562 7329/7329 +f 7502/7502 7445/7445 7504/7504 +f 7329/7329 7562/7562 7504/7504 +f 7505/7505 7447/7447 7563/7563 +f 7506/7506 7332/7332 7505/7505 +f 7396/7396 7564/7564 7447/7447 +f 7507/7507 7449/7449 7448/7448 +f 7449/7449 7565/7565 7508/7508 +f 7515/7515 7392/7392 7508/7508 +f 7507/7507 7451/7451 7566/7566 +f 7509/7509 7567/7567 7451/7451 +f 7509/7509 7394/7394 7401/7401 +f 7452/7452 7515/7515 7453/7453 +f 7453/7453 7568/7568 7510/7510 +f 7511/7511 7569/7569 7396/7396 +f 7513/7513 7511/7511 7397/7397 +f 7454/7454 7510/7510 7568/7568 +f 7512/7512 7514/7514 7340/7340 +f 7454/7454 7570/7570 7512/7512 +f 7571/7571 7513/7513 7455/7455 +f 7572/7572 7455/7455 7514/7514 +f 7558/7558 7456/7456 7441/7441 +f 7516/7516 7349/7349 7398/7398 +f 7573/7573 7516/7516 7456/7456 +f 7458/7458 7574/7574 7457/7457 +f 7517/7517 7457/7457 7575/7575 +f 7401/7401 7517/7517 7509/7509 +f 7574/7574 7458/7458 7459/7459 +f 7461/7461 7576/7576 7459/7459 +f 7460/7460 7516/7516 7518/7518 +f 7461/7461 7518/7518 7577/7577 +f 7520/7520 7472/7472 7406/7406 +f 7519/7519 7520/7520 7405/7405 +f 7462/7462 7531/7531 7519/7519 +f 7522/7522 7521/7521 7407/7407 +f 7522/7522 7464/7464 7578/7578 +f 7521/7521 7523/7523 7408/7408 +f 7523/7523 7579/7579 7465/7465 +f 7524/7524 7471/7471 7353/7353 +f 7524/7524 7465/7465 7580/7580 +f 7466/7466 7471/7471 7531/7531 +f 7531/7531 7462/7462 7466/7466 +f 7464/7464 7525/7525 7578/7578 +f 7525/7525 7410/7410 7526/7526 +f 7527/7527 7526/7526 7412/7412 +f 7527/7527 7411/7411 7528/7528 +f 7467/7467 7581/7581 7528/7528 +f 7467/7467 7468/7468 7582/7582 +f 7583/7583 7468/7468 7529/7529 +f 7584/7584 7419/7419 7415/7415 +f 7415/7415 7530/7530 7580/7580 +f 7471/7471 7530/7530 7469/7469 +f 7531/7531 7470/7470 7520/7520 +f 7473/7473 7532/7532 7538/7538 +f 7585/7585 7532/7532 7364/7364 +f 7538/7538 7422/7422 7473/7473 +f 7474/7474 7477/7477 7533/7533 +f 7364/7364 7533/7533 7585/7585 +f 7534/7534 7419/7419 7584/7584 +f 7586/7586 7475/7475 7534/7534 +f 7475/7475 7587/7587 7535/7535 +f 7587/7587 7476/7476 7535/7535 +f 7476/7476 7587/7587 7536/7536 +f 7588/7588 7420/7420 7536/7536 +f 7588/7588 7537/7537 7420/7420 +f 7477/7477 7537/7537 7533/7533 +f 7478/7478 7484/7484 7479/7479 +f 7480/7480 7540/7540 7481/7481 +f 7480/7480 7538/7538 7589/7589 +f 7539/7539 7423/7423 7540/7540 +f 7541/7541 7424/7424 7539/7539 +f 7590/7590 7482/7482 7541/7541 +f 7590/7590 7483/7483 7482/7482 +f 7542/7542 7483/7483 7591/7591 +f 7542/7542 7543/7543 7425/7425 +f 7543/7543 7592/7592 7484/7484 +f 7545/7545 7593/7593 7485/7485 +f 7315/7315 7546/7546 7594/7594 +f 7485/7485 7593/7593 7546/7546 +f 7595/7595 7486/7486 7492/7492 +f 7486/7486 7596/7596 7545/7545 +f 7544/7544 7487/7487 7432/7432 +f 7547/7547 7549/7549 7429/7429 +f 7488/7488 7548/7548 7597/7597 +f 7547/7547 7488/7488 7598/7598 +f 7479/7479 7484/7484 7548/7548 +f 7490/7490 7489/7489 7599/7599 +f 7489/7489 7549/7549 7599/7599 +f 7599/7599 7550/7550 7490/7490 +f 7551/7551 7491/7491 7550/7550 +f 7431/7431 7491/7491 7551/7551 +f 7600/7600 7492/7492 7551/7551 +f 7494/7494 35920/38505 35921/38506 +f 7601/7601 7495/7495 7494/7494 +f 7552/7552 7436/7436 7555/7555 +f 7435/7435 7552/7552 7553/7553 +f 7602/7602 7496/7496 7553/7553 +f 7554/7554 7496/7496 7602/7602 +f 7555/7555 7497/7497 7603/7603 +f 7604/7604 7439/7439 7556/7556 +f 7439/7439 7604/7604 7557/7557 +f 7603/7603 7497/7497 7557/7557 +f 7498/7498 7604/7604 7556/7556 +f 7495/7495 7601/7601 7498/7498 +f 7499/7499 7559/7559 7558/7558 +f 7605/7605 7559/7559 7442/7442 +f 7606/7606 7560/7560 7500/7500 +f 7442/7442 7560/7560 7605/7605 +f 7561/7561 7607/7607 7501/7501 +f 7501/7501 7608/7608 7529/7529 +f 7609/7609 7561/7561 7502/7502 +f 7503/7503 7506/7506 7610/7610 +f 7611/7611 7562/7562 7503/7503 +f 7609/7609 7502/7502 7504/7504 +f 7609/7609 7504/7504 7562/7562 +f 7505/7505 7563/7563 7612/7612 +f 7564/7564 7563/7563 7447/7447 +f 7506/7506 7505/7505 7612/7612 +f 7569/7569 7564/7564 7396/7396 +f 7566/7566 7449/7449 7507/7507 +f 7566/7566 7565/7565 7449/7449 +f 7565/7565 7613/7613 7508/7508 +f 7515/7515 7508/7508 7613/7613 +f 7451/7451 7614/7614 7566/7566 +f 7614/7614 7451/7451 7567/7567 +f 7575/7575 7567/7567 7509/7509 +f 7615/7615 7453/7453 7515/7515 +f 7568/7568 7453/7453 7616/7616 +f 7569/7569 7511/7511 7617/7617 +f 7511/7511 7513/7513 7617/7617 +f 7568/7568 7618/7618 7454/7454 +f 7619/7619 7514/7514 7512/7512 +f 7454/7454 7620/7620 7570/7570 +f 7619/7619 7512/7512 7570/7570 +f 7621/7621 7513/7513 7571/7571 +f 7455/7455 7622/7622 7571/7571 +f 7572/7572 7622/7622 7455/7455 +f 7572/7572 7514/7514 7623/7623 +f 7624/7624 7456/7456 7558/7558 +f 7625/7625 7573/7573 7456/7456 +f 7573/7573 7518/7518 7516/7516 +f 7457/7457 7574/7574 7575/7575 +f 7509/7509 7517/7517 7575/7575 +f 7459/7459 7626/7626 7574/7574 +f 7576/7576 7461/7461 7627/7627 +f 7576/7576 7628/7628 7459/7459 +f 7577/7577 7518/7518 7573/7573 +f 7577/7577 7627/7627 7461/7461 +f 7531/7531 7520/7520 7519/7519 +f 7629/7629 7521/7521 7522/7522 +f 7522/7522 7578/7578 7630/7630 +f 7521/7521 7629/7629 7523/7523 +f 7523/7523 7631/7631 7579/7579 +f 7579/7579 7580/7580 7465/7465 +f 7530/7530 7471/7471 7524/7524 +f 7530/7530 7524/7524 7580/7580 +f 7525/7525 7632/7632 7578/7578 +f 7526/7526 7633/7633 7525/7525 +f 7526/7526 7527/7527 7634/7634 +f 7634/7634 7527/7527 7528/7528 +f 7467/7467 7635/7635 7581/7581 +f 7528/7528 7581/7581 7636/7636 +f 7637/7637 7582/7582 7468/7468 +f 7582/7582 7635/7635 7467/7467 +f 7637/7637 7468/7468 7583/7583 +f 7608/7608 7583/7583 7529/7529 +f 7415/7415 7580/7580 7584/7584 +f 7538/7538 7532/7532 7638/7638 +f 7585/7585 7639/7639 7532/7532 +f 7585/7585 7533/7533 7640/7640 +f 7534/7534 7584/7584 7579/7579 +f 7641/7641 7475/7475 7586/7586 +f 7579/7579 7586/7586 7534/7534 +f 7475/7475 7641/7641 7587/7587 +f 7536/7536 7587/7587 7642/7642 +f 7536/7536 7643/7643 7588/7588 +f 7588/7588 7644/7644 7537/7537 +f 7533/7533 7537/7537 7644/7644 +f 7540/7540 7480/7480 7589/7589 +f 7589/7589 7538/7538 7638/7638 +f 7645/7645 7539/7539 7540/7540 +f 7646/7646 7541/7541 7539/7539 +f 7590/7590 7541/7541 7647/7647 +f 7591/7591 7483/7483 7590/7590 +f 7648/7648 7542/7542 7591/7591 +f 7542/7542 7649/7649 7543/7543 +f 7592/7592 7543/7543 7650/7650 +f 7484/7484 7592/7592 7597/7597 +f 7545/7545 7651/7651 7593/7593 +f 7546/7546 7652/7652 7594/7594 +f 7315/7315 7594/7594 7653/7653 +f 7654/7654 7546/7546 7593/7593 +f 7486/7486 7595/7595 7596/7596 +f 7595/7595 7492/7492 7600/7600 +f 7651/7651 7545/7545 7596/7596 +f 7547/7547 7655/7655 7549/7549 +f 7597/7597 7548/7548 7484/7484 +f 7597/7597 7598/7598 7488/7488 +f 7547/7547 7598/7598 7656/7656 +f 7549/7549 7657/7657 7599/7599 +f 7658/7658 7550/7550 7599/7599 +f 7551/7551 7550/7550 7659/7659 +f 7659/7659 7600/7600 7551/7551 +f 35922/38507 7660/7660 7494/7494 +f 35921/38508 35922/38507 7494/7494 +f 7494/7494 7660/7660 7601/7601 +f 7603/7603 7552/7552 7555/7555 +f 7661/7661 7553/7553 7552/7552 +f 7602/7602 7553/7553 7662/7662 +f 7557/7557 7604/7604 7663/7663 +f 7603/7603 7557/7557 7664/7664 +f 7601/7601 7604/7604 7498/7498 +f 7665/7665 7558/7558 7559/7559 +f 7560/7560 7559/7559 7605/7605 +f 7560/7560 7606/7606 7666/7666 +f 7609/7609 7607/7607 7561/7561 +f 7501/7501 7607/7607 7608/7608 +f 7667/7667 7610/7610 7506/7506 +f 7503/7503 7610/7610 7668/7668 +f 7611/7611 7503/7503 7668/7668 +f 7669/7669 7562/7562 7611/7611 +f 7609/7609 7562/7562 7669/7669 +f 7612/7612 7563/7563 7670/7670 +f 7569/7569 7563/7563 7564/7564 +f 7612/7612 7671/7671 7506/7506 +f 7565/7565 7566/7566 7672/7672 +f 7672/7672 7613/7613 7565/7565 +f 7615/7615 7515/7515 7613/7613 +f 7566/7566 7614/7614 7673/7673 +f 7614/7614 7567/7567 7673/7673 +f 7626/7626 7567/7567 7575/7575 +f 7615/7615 7616/7616 7453/7453 +f 7674/7674 7568/7568 7616/7616 +f 7617/7617 7675/7675 7569/7569 +f 7513/7513 7676/7676 7617/7617 +f 7568/7568 7677/7677 7618/7618 +f 7620/7620 7454/7454 7618/7618 +f 7514/7514 7619/7619 7678/7678 +f 7620/7620 7679/7679 7570/7570 +f 7680/7680 7619/7619 7570/7570 +f 7621/7621 7676/7676 7513/7513 +f 7681/7681 7621/7621 7571/7571 +f 7622/7622 7682/7682 7571/7571 +f 7682/7682 7622/7622 7572/7572 +f 7623/7623 7514/7514 7678/7678 +f 7572/7572 7623/7623 7683/7683 +f 7624/7624 7625/7625 7456/7456 +f 7624/7624 7558/7558 7625/7625 +f 7625/7625 7577/7577 7573/7573 +f 7575/7575 7574/7574 7626/7626 +f 7459/7459 7684/7684 7626/7626 +f 7685/7685 7576/7576 7627/7627 +f 7628/7628 7576/7576 7686/7686 +f 7459/7459 7628/7628 7684/7684 +f 7687/7687 7627/7627 7577/7577 +f 7629/7629 7522/7522 7688/7688 +f 7630/7630 7578/7578 7689/7689 +f 7690/7690 7522/7522 7630/7630 +f 7629/7629 7631/7631 7523/7523 +f 7631/7631 7586/7586 7579/7579 +f 7580/7580 7579/7579 7584/7584 +f 7632/7632 7525/7525 7691/7691 +f 7578/7578 7632/7632 7689/7689 +f 7634/7634 7633/7633 7526/7526 +f 7691/7691 7525/7525 7633/7633 +f 7636/7636 7634/7634 7528/7528 +f 7636/7636 7581/7581 7635/7635 +f 7582/7582 7637/7637 7692/7692 +f 7635/7635 7582/7582 7693/7693 +f 7637/7637 7583/7583 7694/7694 +f 7608/7608 7695/7695 7583/7583 +f 7638/7638 7532/7532 7639/7639 +f 7639/7639 7585/7585 7640/7640 +f 7644/7644 7640/7640 7533/7533 +f 7586/7586 7696/7696 7641/7641 +f 7641/7641 7642/7642 7587/7587 +f 7536/7536 7642/7642 7697/7697 +f 7643/7643 7536/7536 7697/7697 +f 7643/7643 7698/7698 7588/7588 +f 7644/7644 7588/7588 7699/7699 +f 7645/7645 7540/7540 7589/7589 +f 7589/7589 7638/7638 7700/7700 +f 7701/7701 7539/7539 7645/7645 +f 7646/7646 7647/7647 7541/7541 +f 7539/7539 7701/7701 7646/7646 +f 7590/7590 7647/7647 7702/7702 +f 7591/7591 7590/7590 7703/7703 +f 7703/7703 7648/7648 7591/7591 +f 7648/7648 7704/7704 7542/7542 +f 7650/7650 7543/7543 7649/7649 +f 7542/7542 7704/7704 7649/7649 +f 7592/7592 7650/7650 7705/7705 +f 7597/7597 7592/7592 7705/7705 +f 7651/7651 7706/7706 7593/7593 +f 7546/7546 7654/7654 7652/7652 +f 7707/7707 7594/7594 7652/7652 +f 7594/7594 7708/7708 7653/7653 +f 7709/7709 7315/7315 7653/7653 +f 7654/7654 7593/7593 7706/7706 +f 7596/7596 7595/7595 7600/7600 +f 7710/7710 7651/7651 7596/7596 +f 7656/7656 7655/7655 7547/7547 +f 7711/7711 7549/7549 7655/7655 +f 7597/7597 7705/7705 7598/7598 +f 7656/7656 7598/7598 7712/7712 +f 7599/7599 7657/7657 7713/7713 +f 7549/7549 7711/7711 7657/7657 +f 7599/7599 7713/7713 7658/7658 +f 7659/7659 7550/7550 7658/7658 +f 7600/7600 7659/7659 7714/7714 +f 35923/38509 7715/7715 7660/7660 +f 35922/38510 35923/38509 7660/7660 +f 7716/7716 7601/7601 7660/7660 +f 7717/7717 35924/38511 35925/38512 +f 7718/7718 7552/7552 7603/7603 +f 7552/7552 7718/7718 7661/7661 +f 7661/7661 7662/7662 7553/7553 +f 7664/7664 7557/7557 7663/7663 +f 7604/7604 7601/7601 7663/7663 +f 7718/7718 7603/7603 7664/7664 +f 7665/7665 7559/7559 7719/7719 +f 7665/7665 7625/7625 7558/7558 +f 7559/7559 7560/7560 7720/7720 +f 7606/7606 7721/7721 7666/7666 +f 7720/7720 7560/7560 7666/7666 +f 7607/7607 7609/7609 7669/7669 +f 7722/7722 7608/7608 7607/7607 +f 7667/7667 7723/7723 7610/7610 +f 7667/7667 7506/7506 7671/7671 +f 7668/7668 7610/7610 7724/7724 +f 7725/7725 7611/7611 7668/7668 +f 7611/7611 7725/7725 7669/7669 +f 7670/7670 7563/7563 7569/7569 +f 7670/7670 7726/7726 7612/7612 +f 7671/7671 7612/7612 7726/7726 +f 7566/7566 7673/7673 7672/7672 +f 7672/7672 7727/7727 7613/7613 +f 7613/7613 7727/7727 7615/7615 +f 7673/7673 7567/7567 7728/7728 +f 7626/7626 7728/7728 7567/7567 +f 7727/7727 7616/7616 7615/7615 +f 7568/7568 7674/7674 7677/7677 +f 7616/7616 7729/7729 7674/7674 +f 7730/7730 7675/7675 7617/7617 +f 7726/7726 7569/7569 7675/7675 +f 7621/7621 7617/7617 7676/7676 +f 7618/7618 7677/7677 7731/7731 +f 7679/7679 7620/7620 7618/7618 +f 7678/7678 7619/7619 7680/7680 +f 7570/7570 7679/7679 7732/7732 +f 7570/7570 7732/7732 7680/7680 +f 7733/7733 7621/7621 7681/7681 +f 7571/7571 7734/7734 7681/7681 +f 7571/7571 7682/7682 7734/7734 +f 7682/7682 7572/7572 7683/7683 +f 7623/7623 7678/7678 7735/7735 +f 7736/7736 7683/7683 7623/7623 +f 7577/7577 7625/7625 7665/7665 +f 7626/7626 7684/7684 7728/7728 +f 7737/7737 7685/7685 7627/7627 +f 7576/7576 7685/7685 7686/7686 +f 7738/7738 7628/7628 7686/7686 +f 7738/7738 7684/7684 7628/7628 +f 7687/7687 7737/7737 7627/7627 +f 7577/7577 7739/7739 7687/7687 +f 7740/7740 7629/7629 7688/7688 +f 7522/7522 7690/7690 7688/7688 +f 7741/7741 7630/7630 7689/7689 +f 7690/7690 7630/7630 7742/7742 +f 7631/7631 7629/7629 7740/7740 +f 7586/7586 7631/7631 7696/7696 +f 7691/7691 7743/7743 7632/7632 +f 7632/7632 7744/7744 7689/7689 +f 7745/7745 7633/7633 7634/7634 +f 7691/7691 7633/7633 7746/7746 +f 7745/7745 7634/7634 7636/7636 +f 7747/7747 7636/7636 7635/7635 +f 7748/7748 7582/7582 7692/7692 +f 7749/7749 7692/7692 7637/7637 +f 7693/7693 7582/7582 7748/7748 +f 7693/7693 7750/7750 7635/7635 +f 7695/7695 7694/7694 7583/7583 +f 7749/7749 7637/7637 7694/7694 +f 7695/7695 7608/7608 7751/7751 +f 7752/7752 7638/7638 7639/7639 +f 7753/7753 7639/7639 7640/7640 +f 7644/7644 7753/7753 7640/7640 +f 7696/7696 7754/7754 7641/7641 +f 7641/7641 7754/7754 7642/7642 +f 7754/7754 7697/7697 7642/7642 +f 7643/7643 7697/7697 7698/7698 +f 7755/7755 7588/7588 7698/7698 +f 7756/7756 7644/7644 7699/7699 +f 7588/7588 7757/7757 7699/7699 +f 7700/7700 7645/7645 7589/7589 +f 7700/7700 7638/7638 7752/7752 +f 7645/7645 7758/7758 7701/7701 +f 7701/7701 7647/7647 7646/7646 +f 7647/7647 7759/7759 7702/7702 +f 7702/7702 7760/7760 7590/7590 +f 7590/7590 7761/7761 7703/7703 +f 7762/7762 7648/7648 7703/7703 +f 7763/7763 7704/7704 7648/7648 +f 7764/7764 7650/7650 7649/7649 +f 7704/7704 7764/7764 7649/7649 +f 7705/7705 7650/7650 7765/7765 +f 7766/7766 7706/7706 7651/7651 +f 7707/7707 7652/7652 7654/7654 +f 7708/7708 7594/7594 7707/7707 +f 7653/7653 7708/7708 7767/7767 +f 7653/7653 7767/7767 7709/7709 +f 7706/7706 7768/7768 7654/7654 +f 7710/7710 7596/7596 7600/7600 +f 7651/7651 7710/7710 7769/7769 +f 7712/7712 7655/7655 7656/7656 +f 7711/7711 7655/7655 7770/7770 +f 7705/7705 7771/7771 7598/7598 +f 7598/7598 7771/7771 7712/7712 +f 7713/7713 7657/7657 7711/7711 +f 7713/7713 7772/7772 7658/7658 +f 7658/7658 7773/7773 7659/7659 +f 7659/7659 7773/7773 7714/7714 +f 7714/7714 7710/7710 7600/7600 +f 35926/38513 7774/7774 7715/7715 +f 35923/38514 35926/38513 7715/7715 +f 7715/7715 7716/7716 7660/7660 +f 7601/7601 7716/7716 7663/7663 +f 35927/38515 7775/7775 7717/7717 +f 35925/38516 35927/38515 7717/7717 +f 35924/38517 7717/7717 7774/7774 +f 35926/38518 35924/38517 7774/7774 +f 7661/7661 7718/7718 7776/7776 +f 7777/7777 7662/7662 7661/7661 +f 7663/7663 7716/7716 7664/7664 +f 7778/7778 7718/7718 7664/7664 +f 7719/7719 7739/7739 7665/7665 +f 7720/7720 7719/7719 7559/7559 +f 7779/7779 7721/7721 7606/7606 +f 7780/7780 7666/7666 7721/7721 +f 7781/7781 7720/7720 7666/7666 +f 7607/7607 7669/7669 7722/7722 +f 7722/7722 7751/7751 7608/7608 +f 7723/7723 7724/7724 7610/7610 +f 7723/7723 7667/7667 7782/7782 +f 7671/7671 7783/7783 7667/7667 +f 7668/7668 7724/7724 7725/7725 +f 7669/7669 7725/7725 7722/7722 +f 7726/7726 7670/7670 7569/7569 +f 7726/7726 7783/7783 7671/7671 +f 7673/7673 7784/7784 7672/7672 +f 7727/7727 7672/7672 7785/7785 +f 7728/7728 7784/7784 7673/7673 +f 7729/7729 7616/7616 7727/7727 +f 7786/7786 7677/7677 7674/7674 +f 7787/7787 7674/7674 7729/7729 +f 7733/7733 7730/7730 7617/7617 +f 7730/7730 7788/7788 7675/7675 +f 7675/7675 7789/7789 7726/7726 +f 7621/7621 7733/7733 7617/7617 +f 7731/7731 7677/7677 7786/7786 +f 7731/7731 7679/7679 7618/7618 +f 7735/7735 7678/7678 7680/7680 +f 7790/7790 7732/7732 7679/7679 +f 7680/7680 7732/7732 7791/7791 +f 7792/7792 7733/7733 7681/7681 +f 7736/7736 7623/7623 7735/7735 +f 7793/7793 7683/7683 7736/7736 +f 7739/7739 7577/7577 7665/7665 +f 7728/7728 7684/7684 7794/7794 +f 7685/7685 7737/7737 7795/7795 +f 7686/7686 7685/7685 7796/7796 +f 7686/7686 7797/7797 7738/7738 +f 7798/7798 7684/7684 7738/7738 +f 7799/7799 7737/7737 7687/7687 +f 7687/7687 7739/7739 7800/7800 +f 7740/7740 7688/7688 7801/7801 +f 7742/7742 7688/7688 7690/7690 +f 7802/7802 7741/7741 7689/7689 +f 7742/7742 7630/7630 7741/7741 +f 7740/7740 7803/7803 7631/7631 +f 7696/7696 7631/7631 7803/7803 +f 7743/7743 7691/7691 7746/7746 +f 7744/7744 7632/7632 7743/7743 +f 7802/7802 7689/7689 7744/7744 +f 7746/7746 7633/7633 7745/7745 +f 7745/7745 7636/7636 7747/7747 +f 7750/7750 7747/7747 7635/7635 +f 7748/7748 7692/7692 7804/7804 +f 7692/7692 7749/7749 7805/7805 +f 7693/7693 7748/7748 7750/7750 +f 7694/7694 7695/7695 7751/7751 +f 7806/7806 7749/7749 7694/7694 +f 7807/7807 7752/7752 7639/7639 +f 7753/7753 7756/7756 7639/7639 +f 7756/7756 7753/7753 7644/7644 +f 7696/7696 7803/7803 7754/7754 +f 7697/7697 7754/7754 7803/7803 +f 7698/7698 7697/7697 7803/7803 +f 7698/7698 7808/7808 7755/7755 +f 7757/7757 7588/7588 7755/7755 +f 7699/7699 7807/7807 7756/7756 +f 7699/7699 7757/7757 7807/7807 +f 7700/7700 7758/7758 7645/7645 +f 7809/7809 7700/7700 7752/7752 +f 7758/7758 7810/7810 7701/7701 +f 7647/7647 7701/7701 7810/7810 +f 7810/7810 7759/7759 7647/7647 +f 7702/7702 7759/7759 7811/7811 +f 7702/7702 7812/7812 7760/7760 +f 7590/7590 7760/7760 7813/7813 +f 7813/7813 7761/7761 7590/7590 +f 7814/7814 7703/7703 7761/7761 +f 7815/7815 7648/7648 7762/7762 +f 7762/7762 7703/7703 7816/7816 +f 7817/7817 7704/7704 7763/7763 +f 7763/7763 7648/7648 7815/7815 +f 7764/7764 7817/7817 7650/7650 +f 7704/7704 7817/7817 7764/7764 +f 7705/7705 7765/7765 7771/7771 +f 7765/7765 7650/7650 7818/7818 +f 7769/7769 7766/7766 7651/7651 +f 7819/7819 7706/7706 7766/7766 +f 7768/7768 7707/7707 7654/7654 +f 7708/7708 7707/7707 7768/7768 +f 7768/7768 7767/7767 7708/7708 +f 7820/7820 7709/7709 7767/7767 +f 7819/7819 7768/7768 7706/7706 +f 7710/7710 7821/7821 7769/7769 +f 7655/7655 7712/7712 7770/7770 +f 7822/7822 7711/7711 7770/7770 +f 7823/7823 7712/7712 7771/7771 +f 7713/7713 7711/7711 7772/7772 +f 7772/7772 7773/7773 7658/7658 +f 7714/7714 7773/7773 7824/7824 +f 7710/7710 7714/7714 7825/7825 +f 7774/7774 7778/7778 7715/7715 +f 7715/7715 7664/7664 7716/7716 +f 7826/7826 7717/7717 7775/7775 +f 7827/7827 7774/7774 7717/7717 +f 7661/7661 7776/7776 7777/7777 +f 7828/7828 7776/7776 7718/7718 +f 7829/7829 7662/7662 7777/7777 +f 7715/7715 7778/7778 7664/7664 +f 7828/7828 7718/7718 7778/7778 +f 7719/7719 7830/7830 7739/7739 +f 7781/7781 7719/7719 7720/7720 +f 7721/7721 7779/7779 7831/7831 +f 7780/7780 7721/7721 7831/7831 +f 7666/7666 7780/7780 7832/7832 +f 7781/7781 7666/7666 7832/7832 +f 7806/7806 7751/7751 7722/7722 +f 7723/7723 7833/7833 7724/7724 +f 7782/7782 7667/7667 7783/7783 +f 7723/7723 7782/7782 7834/7834 +f 7725/7725 7724/7724 7835/7835 +f 7725/7725 7836/7836 7722/7722 +f 7726/7726 7789/7789 7783/7783 +f 7784/7784 7785/7785 7672/7672 +f 7729/7729 7727/7727 7785/7785 +f 7794/7794 7784/7784 7728/7728 +f 7787/7787 7729/7729 7837/7837 +f 7838/7838 7730/7730 7733/7733 +f 7788/7788 7789/7789 7675/7675 +f 7730/7730 7838/7838 7788/7788 +f 7731/7731 7839/7839 7679/7679 +f 7680/7680 7791/7791 7735/7735 +f 7732/7732 7790/7790 7791/7791 +f 7679/7679 7839/7839 7790/7790 +f 7733/7733 7792/7792 7838/7838 +f 7735/7735 7790/7790 7736/7736 +f 7683/7683 7793/7793 7840/7840 +f 7736/7736 7790/7790 7793/7793 +f 7794/7794 7684/7684 7798/7798 +f 7737/7737 7841/7841 7795/7795 +f 7796/7796 7685/7685 7795/7795 +f 7842/7842 7686/7686 7796/7796 +f 7686/7686 7842/7842 7797/7797 +f 7843/7843 7799/7799 7687/7687 +f 7737/7737 7799/7799 7841/7841 +f 7830/7830 7800/7800 7739/7739 +f 7800/7800 7843/7843 7687/7687 +f 7844/7844 7740/7740 7801/7801 +f 7801/7801 7688/7688 7742/7742 +f 7741/7741 7802/7802 7845/7845 +f 7741/7741 7845/7845 7742/7742 +f 7803/7803 7740/7740 7844/7844 +f 7846/7846 7743/7743 7746/7746 +f 7743/7743 7847/7847 7744/7744 +f 7744/7744 7848/7848 7802/7802 +f 7746/7746 7745/7745 7846/7846 +f 7846/7846 7745/7745 7747/7747 +f 7747/7747 7750/7750 7849/7849 +f 7804/7804 7692/7692 7850/7850 +f 7804/7804 7851/7851 7748/7748 +f 7749/7749 7852/7852 7805/7805 +f 7850/7850 7692/7692 7805/7805 +f 7750/7750 7748/7748 7853/7853 +f 7694/7694 7751/7751 7806/7806 +f 7749/7749 7806/7806 7852/7852 +f 7807/7807 7639/7639 7756/7756 +f 7752/7752 7807/7807 7809/7809 +f 7803/7803 7854/7854 7698/7698 +f 7698/7698 7854/7854 7808/7808 +f 7755/7755 7808/7808 7855/7855 +f 7856/7856 7757/7757 7755/7755 +f 7807/7807 7757/7757 7809/7809 +f 7700/7700 7857/7857 7758/7758 +f 7809/7809 7858/7858 7700/7700 +f 7758/7758 7759/7759 7810/7810 +f 7857/7857 7811/7811 7759/7759 +f 7702/7702 7811/7811 7812/7812 +f 7812/7812 7859/7859 7760/7760 +f 7760/7760 7860/7860 7813/7813 +f 7861/7861 7761/7761 7813/7813 +f 7761/7761 7861/7861 7814/7814 +f 7703/7703 7814/7814 7816/7816 +f 7815/7815 7762/7762 7862/7862 +f 7863/7863 7762/7762 7816/7816 +f 7763/7763 7864/7864 7817/7817 +f 7763/7763 7815/7815 7865/7865 +f 7650/7650 7817/7817 7818/7818 +f 7765/7765 7866/7866 7771/7771 +f 7818/7818 7867/7867 7765/7765 +f 7868/7868 7766/7766 7769/7769 +f 7766/7766 7869/7869 7819/7819 +f 7768/7768 7870/7870 7767/7767 +f 7709/7709 7820/7820 7871/7871 +f 7872/7872 7820/7820 7767/7767 +f 7873/7873 7768/7768 7819/7819 +f 7769/7769 7821/7821 7868/7868 +f 7821/7821 7710/7710 7825/7825 +f 7712/7712 7823/7823 7770/7770 +f 7772/7772 7711/7711 7822/7822 +f 7822/7822 7770/7770 7823/7823 +f 7823/7823 7771/7771 7866/7866 +f 7824/7824 7773/7773 7772/7772 +f 7874/7874 7714/7714 7824/7824 +f 7714/7714 7874/7874 7825/7825 +f 7778/7778 7774/7774 7828/7828 +f 7875/7875 7826/7826 7775/7775 +f 7717/7717 7826/7826 7827/7827 +f 7827/7827 7828/7828 7774/7774 +f 7828/7828 7777/7777 7776/7776 +f 7829/7829 7777/7777 7876/7876 +f 7877/7877 7662/7662 7829/7829 +f 7719/7719 7781/7781 7830/7830 +f 7831/7831 7878/7878 7780/7780 +f 7780/7780 7879/7879 7832/7832 +f 7781/7781 7832/7832 7880/7880 +f 7722/7722 7881/7881 7806/7806 +f 7834/7834 7833/7833 7723/7723 +f 7724/7724 7833/7833 7882/7882 +f 7783/7783 7883/7883 7782/7782 +f 7782/7782 7884/7884 7834/7834 +f 7724/7724 7882/7882 7835/7835 +f 7835/7835 7885/7885 7725/7725 +f 7722/7722 7836/7836 7881/7881 +f 7886/7886 7836/7836 7725/7725 +f 7789/7789 7883/7883 7783/7783 +f 7794/7794 7785/7785 7784/7784 +f 7887/7887 7729/7729 7785/7785 +f 7887/7887 7837/7837 7729/7729 +f 7837/7837 7888/7888 7787/7787 +f 7789/7789 7788/7788 7883/7883 +f 7788/7788 7838/7838 7889/7889 +f 7791/7791 7790/7790 7735/7735 +f 7890/7890 7790/7790 7839/7839 +f 7838/7838 7792/7792 7891/7891 +f 7890/7890 7840/7840 7793/7793 +f 7793/7793 7790/7790 7890/7890 +f 7892/7892 7794/7794 7798/7798 +f 7893/7893 7795/7795 7841/7841 +f 7796/7796 7795/7795 7842/7842 +f 7843/7843 7894/7894 7799/7799 +f 7895/7895 7841/7841 7799/7799 +f 7800/7800 7830/7830 7880/7880 +f 7843/7843 7800/7800 7894/7894 +f 7801/7801 7896/7896 7844/7844 +f 7896/7896 7801/7801 7742/7742 +f 7845/7845 7802/7802 7897/7897 +f 7896/7896 7742/7742 7845/7845 +f 7844/7844 7854/7854 7803/7803 +f 7846/7846 7898/7898 7743/7743 +f 7847/7847 7743/7743 7898/7898 +f 7847/7847 7848/7848 7744/7744 +f 7897/7897 7802/7802 7848/7848 +f 7849/7849 7846/7846 7747/7747 +f 7750/7750 7899/7899 7849/7849 +f 7900/7900 7804/7804 7850/7850 +f 7851/7851 7804/7804 7900/7900 +f 7851/7851 7853/7853 7748/7748 +f 7805/7805 7852/7852 7901/7901 +f 7805/7805 7902/7902 7850/7850 +f 7750/7750 7853/7853 7903/7903 +f 7852/7852 7806/7806 7881/7881 +f 7808/7808 7854/7854 7904/7904 +f 7855/7855 7808/7808 7905/7905 +f 7855/7855 7906/7906 7755/7755 +f 7755/7755 7906/7906 7856/7856 +f 7809/7809 7757/7757 7856/7856 +f 7758/7758 7857/7857 7759/7759 +f 7811/7811 7857/7857 7700/7700 +f 7907/7907 7858/7858 7809/7809 +f 7858/7858 7811/7811 7700/7700 +f 7812/7812 7811/7811 7908/7908 +f 7859/7859 7812/7812 7908/7908 +f 7860/7860 7760/7760 7859/7859 +f 7909/7909 7813/7813 7860/7860 +f 7910/7910 7861/7861 7813/7813 +f 7911/7911 7814/7814 7861/7861 +f 7816/7816 7814/7814 7911/7911 +f 7865/7865 7815/7815 7862/7862 +f 7762/7762 7863/7863 7862/7862 +f 7863/7863 7816/7816 7912/7912 +f 7864/7864 7913/7913 7817/7817 +f 7864/7864 7763/7763 7865/7865 +f 7914/7914 7818/7818 7817/7817 +f 7866/7866 7765/7765 7915/7915 +f 7916/7916 7765/7765 7867/7867 +f 7867/7867 7818/7818 7914/7914 +f 7868/7868 7917/7917 7766/7766 +f 7869/7869 7766/7766 7917/7917 +f 7819/7819 7869/7869 7918/7918 +f 7767/7767 7870/7870 7872/7872 +f 7870/7870 7768/7768 7919/7919 +f 7820/7820 7872/7872 7871/7871 +f 7919/7919 7768/7768 7873/7873 +f 7819/7819 7918/7918 7873/7873 +f 7868/7868 7821/7821 7920/7920 +f 7921/7921 7821/7821 7825/7825 +f 7772/7772 7822/7822 7922/7922 +f 7923/7923 7822/7822 7823/7823 +f 7924/7924 7823/7823 7866/7866 +f 7824/7824 7772/7772 7922/7922 +f 7874/7874 7824/7824 7922/7922 +f 7874/7874 7925/7925 7825/7825 +f 7926/7926 7826/7826 7875/7875 +f 7927/7927 7875/7875 7775/7775 +f 7826/7826 7926/7926 7827/7827 +f 7777/7777 7828/7828 7827/7827 +f 7876/7876 7777/7777 7827/7827 +f 7876/7876 7877/7877 7829/7829 +f 7830/7830 7781/7781 7880/7880 +f 7780/7780 7878/7878 7879/7879 +f 7832/7832 7879/7879 7928/7928 +f 7928/7928 7880/7880 7832/7832 +f 7833/7833 7834/7834 7929/7929 +f 7833/7833 7930/7930 7882/7882 +f 7884/7884 7782/7782 7883/7883 +f 7929/7929 7834/7834 7884/7884 +f 7882/7882 7885/7885 7835/7835 +f 7885/7885 7886/7886 7725/7725 +f 7881/7881 7836/7836 7886/7886 +f 7892/7892 7785/7785 7794/7794 +f 7892/7892 7887/7887 7785/7785 +f 7887/7887 7931/7931 7837/7837 +f 7888/7888 7837/7837 7931/7931 +f 7788/7788 7932/7932 7883/7883 +f 7889/7889 7838/7838 7933/7933 +f 7932/7932 7788/7788 7889/7889 +f 7839/7839 7934/7934 7890/7890 +f 7792/7792 7935/7935 7891/7891 +f 7838/7838 7891/7891 7933/7933 +f 7840/7840 7890/7890 7936/7936 +f 7937/7937 7795/7795 7893/7893 +f 7841/7841 7938/7938 7893/7893 +f 7937/7937 7842/7842 7795/7795 +f 7799/7799 7894/7894 7939/7939 +f 7940/7940 7841/7841 7895/7895 +f 7895/7895 7799/7799 7939/7939 +f 7880/7880 7928/7928 7800/7800 +f 7800/7800 7928/7928 7894/7894 +f 7941/7941 7844/7844 7896/7896 +f 7942/7942 7845/7845 7897/7897 +f 7896/7896 7845/7845 7943/7943 +f 7844/7844 7941/7941 7854/7854 +f 7846/7846 7899/7899 7898/7898 +f 7847/7847 7898/7898 7944/7944 +f 7848/7848 7847/7847 7945/7945 +f 7945/7945 7897/7897 7848/7848 +f 7849/7849 7899/7899 7846/7846 +f 7750/7750 7946/7946 7899/7899 +f 7947/7947 7900/7900 7850/7850 +f 7851/7851 7900/7900 7948/7948 +f 7853/7853 7851/7851 7949/7949 +f 7852/7852 7950/7950 7901/7901 +f 7901/7901 7902/7902 7805/7805 +f 7850/7850 7902/7902 7947/7947 +f 7903/7903 7853/7853 7949/7949 +f 7951/7951 7750/7750 7903/7903 +f 7881/7881 7886/7886 7852/7852 +f 7904/7904 7905/7905 7808/7808 +f 7941/7941 7904/7904 7854/7854 +f 7952/7952 7855/7855 7905/7905 +f 7856/7856 7906/7906 7855/7855 +f 7907/7907 7809/7809 7856/7856 +f 7907/7907 7953/7953 7858/7858 +f 7811/7811 7858/7858 7954/7954 +f 7908/7908 7811/7811 7954/7954 +f 7908/7908 7955/7955 7859/7859 +f 7859/7859 7956/7956 7860/7860 +f 7910/7910 7813/7813 7909/7909 +f 7860/7860 7957/7957 7909/7909 +f 7861/7861 7910/7910 7958/7958 +f 7959/7959 7911/7911 7861/7861 +f 7960/7960 7816/7816 7911/7911 +f 7865/7865 7862/7862 7961/7961 +f 7961/7961 7862/7862 7863/7863 +f 7816/7816 7960/7960 7912/7912 +f 7962/7962 7863/7863 7912/7912 +f 7817/7817 7913/7913 7914/7914 +f 7913/7913 7864/7864 7963/7963 +f 7961/7961 7864/7864 7865/7865 +f 7964/7964 7866/7866 7915/7915 +f 7765/7765 7965/7965 7915/7915 +f 7916/7916 7867/7867 7966/7966 +f 7965/7965 7765/7765 7916/7916 +f 7914/7914 7966/7966 7867/7867 +f 7868/7868 7967/7967 7917/7917 +f 7917/7917 7968/7968 7869/7869 +f 7869/7869 7969/7969 7918/7918 +f 7919/7919 7872/7872 7870/7870 +f 7919/7919 7873/7873 7970/7970 +f 7918/7918 7971/7971 7873/7873 +f 7821/7821 7921/7921 7920/7920 +f 7967/7967 7868/7868 7920/7920 +f 7925/7925 7921/7921 7825/7825 +f 7922/7922 7822/7822 7923/7923 +f 7823/7823 7972/7972 7923/7923 +f 7823/7823 7924/7924 7972/7972 +f 7866/7866 7964/7964 7924/7924 +f 7922/7922 7923/7923 7874/7874 +f 7925/7925 7874/7874 7923/7923 +f 7926/7926 7875/7875 7973/7973 +f 7927/7927 7974/7974 7875/7875 +f 7927/7927 7775/7775 7975/7975 +f 7827/7827 7926/7926 7876/7876 +f 7976/7976 7877/7877 7876/7876 +f 7879/7879 7878/7878 7977/7977 +f 7879/7879 7977/7977 7928/7928 +f 7978/7978 7833/7833 7929/7929 +f 7930/7930 7833/7833 7978/7978 +f 7930/7930 7979/7979 7882/7882 +f 7884/7884 7883/7883 7932/7932 +f 7884/7884 7980/7980 7929/7929 +f 7981/7981 7885/7885 7882/7882 +f 7886/7886 7885/7885 7950/7950 +f 7887/7887 7892/7892 7931/7931 +f 7931/7931 7982/7982 7888/7888 +f 7933/7933 7978/7978 7889/7889 +f 7932/7932 7889/7889 7980/7980 +f 7934/7934 7936/7936 7890/7890 +f 7935/7935 7983/7983 7891/7891 +f 7891/7891 7983/7983 7933/7933 +f 7840/7840 7936/7936 7984/7984 +f 7940/7940 7938/7938 7841/7841 +f 7928/7928 7939/7939 7894/7894 +f 7895/7895 7985/7985 7940/7940 +f 7985/7985 7895/7895 7939/7939 +f 7896/7896 7986/7986 7941/7941 +f 7987/7987 7942/7942 7897/7897 +f 7942/7942 7988/7988 7845/7845 +f 7988/7988 7943/7943 7845/7845 +f 7943/7943 7986/7986 7896/7896 +f 7899/7899 7946/7946 7898/7898 +f 7989/7989 7847/7847 7944/7944 +f 7944/7944 7898/7898 7989/7989 +f 7847/7847 7990/7990 7945/7945 +f 7945/7945 7987/7987 7897/7897 +f 7951/7951 7946/7946 7750/7750 +f 7900/7900 7947/7947 7991/7991 +f 7900/7900 7992/7992 7948/7948 +f 7948/7948 7949/7949 7851/7851 +f 7901/7901 7950/7950 7981/7981 +f 7950/7950 7852/7852 7886/7886 +f 7993/7993 7902/7902 7901/7901 +f 7947/7947 7902/7902 7991/7991 +f 7903/7903 7949/7949 7994/7994 +f 7903/7903 7995/7995 7951/7951 +f 7904/7904 7996/7996 7905/7905 +f 7904/7904 7941/7941 7986/7986 +f 7855/7855 7952/7952 7997/7997 +f 7952/7952 7905/7905 7996/7996 +f 7855/7855 7907/7907 7856/7856 +f 7998/7998 7953/7953 7907/7907 +f 7858/7858 7953/7953 7954/7954 +f 7954/7954 7955/7955 7908/7908 +f 7956/7956 7859/7859 7955/7955 +f 7860/7860 7956/7956 7957/7957 +f 7999/7999 7910/7910 7909/7909 +f 7909/7909 7957/7957 7999/7999 +f 7910/7910 7999/7999 7958/7958 +f 7861/7861 7958/7958 7959/7959 +f 7911/7911 7959/7959 8000/8000 +f 7911/7911 8001/8001 7960/7960 +f 7863/7863 7962/7962 7961/7961 +f 7960/7960 8002/8002 7912/7912 +f 7912/7912 8003/8003 7962/7962 +f 8004/8004 7914/7914 7913/7913 +f 8005/8005 7963/7963 7864/7864 +f 8005/8005 7913/7913 7963/7963 +f 7961/7961 8005/8005 7864/7864 +f 7965/7965 7964/7964 7915/7915 +f 7966/7966 8006/8006 7916/7916 +f 7965/7965 7916/7916 8007/8007 +f 7966/7966 7914/7914 8004/8004 +f 7917/7917 7967/7967 8008/8008 +f 8009/8009 7968/7968 7917/7917 +f 7869/7869 7968/7968 8010/8010 +f 7869/7869 8010/8010 7969/7969 +f 8011/8011 7918/7918 7969/7969 +f 7872/7872 7919/7919 8012/8012 +f 8013/8013 7970/7970 7873/7873 +f 7919/7919 7970/7970 8014/8014 +f 7918/7918 8011/8011 7971/7971 +f 7971/7971 8015/8015 7873/7873 +f 7921/7921 8016/8016 7920/7920 +f 8008/8008 7967/7967 7920/7920 +f 7925/7925 8017/8017 7921/7921 +f 7923/7923 7972/7972 7925/7925 +f 7924/7924 8018/8018 7972/7972 +f 8019/8019 7924/7924 7964/7964 +f 7973/7973 7875/7875 7974/7974 +f 7976/7976 7926/7926 7973/7973 +f 8020/8020 7974/7974 7927/7927 +f 8021/8021 7975/7975 7775/7775 +f 7975/7975 8022/8022 7927/7927 +f 7926/7926 7976/7976 7876/7876 +f 7877/7877 7976/7976 8023/8023 +f 7977/7977 7878/7878 8024/8024 +f 8025/8025 7928/7928 7977/7977 +f 7978/7978 7929/7929 7980/7980 +f 8026/8026 7930/7930 7978/7978 +f 8027/8027 7979/7979 7930/7930 +f 7979/7979 7981/7981 7882/7882 +f 7884/7884 7932/7932 7980/7980 +f 7981/7981 7950/7950 7885/7885 +f 7931/7931 7892/7892 7982/7982 +f 7889/7889 7978/7978 7980/7980 +f 7933/7933 8028/8028 7978/7978 +f 7934/7934 8029/8029 7936/7936 +f 8030/8030 7983/7983 7935/7935 +f 8031/8031 7933/7933 7983/7983 +f 7936/7936 8032/8032 7984/7984 +f 7984/7984 8033/8033 7840/7840 +f 7939/7939 7928/7928 8025/8025 +f 7939/7939 8025/8025 7985/7985 +f 7942/7942 7987/7987 8034/8034 +f 7988/7988 7942/7942 8035/8035 +f 7988/7988 8036/8036 7943/7943 +f 7996/7996 7986/7986 7943/7943 +f 7898/7898 7946/7946 7989/7989 +f 7847/7847 7989/7989 7990/7990 +f 7945/7945 7990/7990 7987/7987 +f 8037/8037 7946/7946 7951/7951 +f 7900/7900 7991/7991 8038/8038 +f 8038/8038 7992/7992 7900/7900 +f 7948/7948 7992/7992 8039/8039 +f 7994/7994 7949/7949 7948/7948 +f 7901/7901 7981/7981 8040/8040 +f 8040/8040 7993/7993 7901/7901 +f 7993/7993 7991/7991 7902/7902 +f 8041/8041 7903/7903 7994/7994 +f 7903/7903 8042/8042 7995/7995 +f 7995/7995 8043/8043 7951/7951 +f 7986/7986 7996/7996 7904/7904 +f 7997/7997 7998/7998 7855/7855 +f 7996/7996 7997/7997 7952/7952 +f 7907/7907 7855/7855 7998/7998 +f 8044/8044 7953/7953 7998/7998 +f 7953/7953 8045/8045 7954/7954 +f 8045/8045 7955/7955 7954/7954 +f 7956/7956 7955/7955 8046/8046 +f 7956/7956 8047/8047 7957/7957 +f 7999/7999 7957/7957 8047/8047 +f 7999/7999 8048/8048 7958/7958 +f 8048/8048 7959/7959 7958/7958 +f 8049/8049 7911/7911 8000/8000 +f 8000/8000 7959/7959 8050/8050 +f 8002/8002 7960/7960 8001/8001 +f 7911/7911 8051/8051 8001/8001 +f 8005/8005 7961/7961 7962/7962 +f 7912/7912 8002/8002 8052/8052 +f 8003/8003 7912/7912 8053/8053 +f 7962/7962 8003/8003 8005/8005 +f 8004/8004 7913/7913 8005/8005 +f 7964/7964 7965/7965 8019/8019 +f 8007/8007 7916/7916 8006/8006 +f 8054/8054 8006/8006 7966/7966 +f 8007/8007 8055/8055 7965/7965 +f 7966/7966 8004/8004 8054/8054 +f 8009/8009 7917/7917 8008/8008 +f 8009/8009 8056/8056 7968/7968 +f 8010/8010 7968/7968 8057/8057 +f 8058/8058 7969/7969 8010/8010 +f 7969/7969 8058/8058 8011/8011 +f 7919/7919 8014/8014 8012/8012 +f 8013/8013 8014/8014 7970/7970 +f 7873/7873 8015/8015 8013/8013 +f 8059/8059 7971/7971 8011/8011 +f 8015/8015 7971/7971 8059/8059 +f 7920/7920 8016/8016 8008/8008 +f 8016/8016 7921/7921 8060/8060 +f 8061/8061 7921/7921 8017/8017 +f 7972/7972 8017/8017 7925/7925 +f 8062/8062 7972/7972 8018/8018 +f 7924/7924 8063/8063 8018/8018 +f 8063/8063 7924/7924 8019/8019 +f 7974/7974 7976/7976 7973/7973 +f 8020/8020 8064/8064 7974/7974 +f 7927/7927 8022/8022 8020/8020 +f 7975/7975 8021/8021 8065/8065 +f 7975/7975 8066/8066 8022/8022 +f 7976/7976 8067/8067 8023/8023 +f 7977/7977 8024/8024 8068/8068 +f 7977/7977 8068/8068 8025/8025 +f 8069/8069 7930/7930 8026/8026 +f 8070/8070 8026/8026 7978/7978 +f 8071/8071 7979/7979 8027/8027 +f 8072/8072 8027/8027 7930/7930 +f 8073/8073 7981/7981 7979/7979 +f 8028/8028 7933/7933 8074/8074 +f 8070/8070 7978/7978 8028/8028 +f 8075/8075 8029/8029 7934/7934 +f 7936/7936 8029/8029 8032/8032 +f 7983/7983 8030/8030 8076/8076 +f 8074/8074 7933/7933 8031/8031 +f 8031/8031 7983/7983 8076/8076 +f 8032/8032 8077/8077 7984/7984 +f 7984/7984 8078/8078 8033/8033 +f 7985/7985 8025/8025 8068/8068 +f 7987/7987 8079/8079 8034/8034 +f 7942/7942 8034/8034 8035/8035 +f 7988/7988 8035/8035 8036/8036 +f 8036/8036 7996/7996 7943/7943 +f 7946/7946 8037/8037 7989/7989 +f 7989/7989 8037/8037 7990/7990 +f 7990/7990 7951/7951 7987/7987 +f 7951/7951 7990/7990 8037/8037 +f 8080/8080 8038/8038 7991/7991 +f 8038/8038 8081/8081 7992/7992 +f 8082/8082 8039/8039 7992/7992 +f 8039/8039 7994/7994 7948/7948 +f 8073/8073 8040/8040 7981/7981 +f 7993/7993 8040/8040 8083/8083 +f 7993/7993 8083/8083 7991/7991 +f 7994/7994 8084/8084 8041/8041 +f 8042/8042 7903/7903 8041/8041 +f 7995/7995 8042/8042 8085/8085 +f 7995/7995 8085/8085 8043/8043 +f 8079/8079 7951/7951 8043/8043 +f 7997/7997 8086/8086 7998/7998 +f 8036/8036 7997/7997 7996/7996 +f 8045/8045 8044/8044 7998/7998 +f 7953/7953 8044/8044 8045/8045 +f 8046/8046 7955/7955 8045/8045 +f 7956/7956 8046/8046 8087/8087 +f 7956/7956 8087/8087 8047/8047 +f 7999/7999 8047/8047 8048/8048 +f 8048/8048 8087/8087 7959/7959 +f 8049/8049 8051/8051 7911/7911 +f 8088/8088 8049/8049 8000/8000 +f 8089/8089 8050/8050 7959/7959 +f 8090/8090 8000/8000 8050/8050 +f 8001/8001 8091/8091 8002/8002 +f 8001/8001 8051/8051 8092/8092 +f 7912/7912 8052/8052 8093/8093 +f 8094/8094 8052/8052 8002/8002 +f 8053/8053 7912/7912 8093/8093 +f 8095/8095 8003/8003 8053/8053 +f 8004/8004 8005/8005 8003/8003 +f 7965/7965 8096/8096 8019/8019 +f 8006/8006 8055/8055 8007/8007 +f 8097/8097 8006/8006 8054/8054 +f 7965/7965 8055/8055 8096/8096 +f 8004/8004 8098/8098 8054/8054 +f 8009/8009 8008/8008 8099/8099 +f 8056/8056 8009/8009 8100/8100 +f 7968/7968 8056/8056 8057/8057 +f 8010/8010 8057/8057 8101/8101 +f 8058/8058 8010/8010 8101/8101 +f 8011/8011 8058/8058 8102/8102 +f 8014/8014 8013/8013 8103/8103 +f 8013/8013 8015/8015 8104/8104 +f 8102/8102 8059/8059 8011/8011 +f 8059/8059 8105/8105 8015/8015 +f 8008/8008 8016/8016 8106/8106 +f 7921/7921 8061/8061 8060/8060 +f 8016/8016 8060/8060 8106/8106 +f 8107/8107 8061/8061 8017/8017 +f 8062/8062 8017/8017 7972/7972 +f 8018/8018 8108/8108 8062/8062 +f 8108/8108 8018/8018 8063/8063 +f 8096/8096 8063/8063 8019/8019 +f 8109/8109 7976/7976 7974/7974 +f 7974/7974 8064/8064 8109/8109 +f 8020/8020 8022/8022 8064/8064 +f 8110/8110 8065/8065 8021/8021 +f 7975/7975 8065/8065 8111/8111 +f 8111/8111 8066/8066 7975/7975 +f 8112/8112 8022/8022 8066/8066 +f 8067/8067 7976/7976 8109/8109 +f 8023/8023 8067/8067 8113/8113 +f 8026/8026 8070/8070 8069/8069 +f 8072/8072 7930/7930 8069/8069 +f 8073/8073 7979/7979 8071/8071 +f 8027/8027 8114/8114 8071/8071 +f 8027/8027 8072/8072 8114/8114 +f 8074/8074 8070/8070 8028/8028 +f 8030/8030 8115/8115 8076/8076 +f 8074/8074 8031/8031 8076/8076 +f 7984/7984 8077/8077 8078/8078 +f 7951/7951 8079/8079 7987/7987 +f 8035/8035 8034/8034 8079/8079 +f 8036/8036 8035/8035 8116/8116 +f 8083/8083 8080/8080 7991/7991 +f 8038/8038 8080/8080 8081/8081 +f 8081/8081 8117/8117 7992/7992 +f 8118/8118 8039/8039 8082/8082 +f 7992/7992 8117/8117 8082/8082 +f 8118/8118 7994/7994 8039/8039 +f 8040/8040 8073/8073 8119/8119 +f 8119/8119 8083/8083 8040/8040 +f 7994/7994 8118/8118 8084/8084 +f 8120/8120 8041/8041 8084/8084 +f 8041/8041 8121/8121 8042/8042 +f 8085/8085 8042/8042 8122/8122 +f 8043/8043 8085/8085 8123/8123 +f 8043/8043 8123/8123 8079/8079 +f 8086/8086 8124/8124 7998/7998 +f 7997/7997 8125/8125 8086/8086 +f 8125/8125 7997/7997 8036/8036 +f 8045/8045 7998/7998 8124/8124 +f 8045/8045 8126/8126 8046/8046 +f 8087/8087 8046/8046 8127/8127 +f 8047/8047 8087/8087 8048/8048 +f 7959/7959 8087/8087 8128/8128 +f 8049/8049 8129/8129 8051/8051 +f 8049/8049 8088/8088 8130/8130 +f 8090/8090 8088/8088 8000/8000 +f 8128/8128 8089/8089 7959/7959 +f 8090/8090 8050/8050 8089/8089 +f 8091/8091 8001/8001 8092/8092 +f 8091/8091 8094/8094 8002/8002 +f 8092/8092 8051/8051 8131/8131 +f 8093/8093 8052/8052 8132/8132 +f 8094/8094 8133/8133 8052/8052 +f 8132/8132 8053/8053 8093/8093 +f 8003/8003 8095/8095 8004/8004 +f 8134/8134 8095/8095 8053/8053 +f 8055/8055 8006/8006 8135/8135 +f 8135/8135 8006/8006 8097/8097 +f 8054/8054 8136/8136 8097/8097 +f 8096/8096 8055/8055 8137/8137 +f 8095/8095 8098/8098 8004/8004 +f 8098/8098 8138/8138 8054/8054 +f 8008/8008 8139/8139 8099/8099 +f 8099/8099 8100/8100 8009/8009 +f 8100/8100 8140/8140 8056/8056 +f 8140/8140 8057/8057 8056/8056 +f 8057/8057 8141/8141 8101/8101 +f 8101/8101 8142/8142 8058/8058 +f 8102/8102 8058/8058 8143/8143 +f 8013/8013 8104/8104 8103/8103 +f 8144/8144 8014/8014 8103/8103 +f 8105/8105 8104/8104 8015/8015 +f 8059/8059 8102/8102 8145/8145 +f 8146/8146 8105/8105 8059/8059 +f 8106/8106 8139/8139 8008/8008 +f 8147/8147 8060/8060 8061/8061 +f 8148/8148 8106/8106 8060/8060 +f 8149/8149 8061/8061 8107/8107 +f 8150/8150 8107/8107 8017/8017 +f 8017/8017 8062/8062 8150/8150 +f 8108/8108 8150/8150 8062/8062 +f 8108/8108 8063/8063 8151/8151 +f 8096/8096 8152/8152 8063/8063 +f 8153/8153 8109/8109 8064/8064 +f 8064/8064 8022/8022 8153/8153 +f 8110/8110 8154/8154 8065/8065 +f 8021/8021 8155/8155 8110/8110 +f 8111/8111 8065/8065 8156/8156 +f 8066/8066 8111/8111 8157/8157 +f 8022/8022 8112/8112 8153/8153 +f 8158/8158 8112/8112 8066/8066 +f 8109/8109 8159/8159 8067/8067 +f 8159/8159 8113/8113 8067/8067 +f 8069/8069 8070/8070 8160/8160 +f 8069/8069 8161/8161 8072/8072 +f 8162/8162 8073/8073 8071/8071 +f 8071/8071 8114/8114 8162/8162 +f 8072/8072 8163/8163 8114/8114 +f 8070/8070 8074/8074 8160/8160 +f 8164/8164 8115/8115 8030/8030 +f 8076/8076 8115/8115 8165/8165 +f 8076/8076 8166/8166 8074/8074 +f 8123/8123 8035/8035 8079/8079 +f 8125/8125 8036/8036 8116/8116 +f 8116/8116 8035/8035 8167/8167 +f 8080/8080 8083/8083 8168/8168 +f 8080/8080 8168/8168 8081/8081 +f 8169/8169 8117/8117 8081/8081 +f 8118/8118 8082/8082 8170/8170 +f 8082/8082 8117/8117 8171/8171 +f 8119/8119 8073/8073 8162/8162 +f 8172/8172 8083/8083 8119/8119 +f 8170/8170 8084/8084 8118/8118 +f 8041/8041 8120/8120 8173/8173 +f 8120/8120 8084/8084 8170/8170 +f 8174/8174 8121/8121 8041/8041 +f 8175/8175 8042/8042 8121/8121 +f 8175/8175 8122/8122 8042/8042 +f 8122/8122 8176/8176 8085/8085 +f 8123/8123 8085/8085 8177/8177 +f 8178/8178 8124/8124 8086/8086 +f 8179/8179 8086/8086 8125/8125 +f 8045/8045 8124/8124 8126/8126 +f 8126/8126 8180/8180 8046/8046 +f 8127/8127 8046/8046 8180/8180 +f 8127/8127 8128/8128 8087/8087 +f 8129/8129 8049/8049 8130/8130 +f 8130/8130 8051/8051 8129/8129 +f 8088/8088 8181/8181 8130/8130 +f 8088/8088 8090/8090 8182/8182 +f 8089/8089 8128/8128 8183/8183 +f 8089/8089 8184/8184 8090/8090 +f 8094/8094 8091/8091 8092/8092 +f 8131/8131 8051/8051 8185/8185 +f 8131/8131 8186/8186 8092/8092 +f 8132/8132 8052/8052 8133/8133 +f 8133/8133 8094/8094 8186/8186 +f 8187/8187 8053/8053 8132/8132 +f 8187/8187 8134/8134 8053/8053 +f 8134/8134 8188/8188 8095/8095 +f 8055/8055 8135/8135 8189/8189 +f 8135/8135 8097/8097 8190/8190 +f 8136/8136 8190/8190 8097/8097 +f 8054/8054 8138/8138 8136/8136 +f 8189/8189 8137/8137 8055/8055 +f 8137/8137 8191/8191 8096/8096 +f 8095/8095 8192/8192 8098/8098 +f 8098/8098 8192/8192 8138/8138 +f 8139/8139 8193/8193 8099/8099 +f 8100/8100 8099/8099 8194/8194 +f 8100/8100 8195/8195 8140/8140 +f 8196/8196 8057/8057 8140/8140 +f 8141/8141 8057/8057 8197/8197 +f 8141/8141 8142/8142 8101/8101 +f 8142/8142 8143/8143 8058/8058 +f 8198/8198 8102/8102 8143/8143 +f 8199/8199 8103/8103 8104/8104 +f 8200/8200 8144/8144 8103/8103 +f 8201/8201 8104/8104 8105/8105 +f 8102/8102 8198/8198 8145/8145 +f 8059/8059 8145/8145 8146/8146 +f 8201/8201 8105/8105 8146/8146 +f 8202/8202 8139/8139 8106/8106 +f 8147/8147 8061/8061 8203/8203 +f 8148/8148 8060/8060 8147/8147 +f 8106/8106 8148/8148 8204/8204 +f 8061/8061 8149/8149 8203/8203 +f 8205/8205 8149/8149 8107/8107 +f 8205/8205 8107/8107 8150/8150 +f 8108/8108 8206/8206 8150/8150 +f 8063/8063 8152/8152 8151/8151 +f 8108/8108 8151/8151 8207/8207 +f 8152/8152 8096/8096 8191/8191 +f 8159/8159 8109/8109 8153/8153 +f 8110/8110 8208/8208 8154/8154 +f 8156/8156 8065/8065 8154/8154 +f 8155/8155 8208/8208 8110/8110 +f 8111/8111 8156/8156 8209/8209 +f 8157/8157 8210/8210 8066/8066 +f 8111/8111 8210/8210 8157/8157 +f 8158/8158 8153/8153 8112/8112 +f 8066/8066 8210/8210 8158/8158 +f 8161/8161 8069/8069 8160/8160 +f 8072/8072 8161/8161 8211/8211 +f 8162/8162 8114/8114 8163/8163 +f 8072/8072 8212/8212 8163/8163 +f 8160/8160 8074/8074 8166/8166 +f 8115/8115 8164/8164 8213/8213 +f 8214/8214 8076/8076 8165/8165 +f 8165/8165 8115/8115 8215/8215 +f 8076/8076 8214/8214 8166/8166 +f 8123/8123 8216/8216 8035/8035 +f 8217/8217 8125/8125 8116/8116 +f 8216/8216 8167/8167 8035/8035 +f 8167/8167 8218/8218 8116/8116 +f 8172/8172 8168/8168 8083/8083 +f 8219/8219 8081/8081 8168/8168 +f 8220/8220 8117/8117 8169/8169 +f 8081/8081 8219/8219 8169/8169 +f 8082/8082 8171/8171 8170/8170 +f 8221/8221 8171/8171 8117/8117 +f 8222/8222 8119/8119 8162/8162 +f 8223/8223 8172/8172 8119/8119 +f 8173/8173 8120/8120 8224/8224 +f 8173/8173 8225/8225 8041/8041 +f 8170/8170 8226/8226 8120/8120 +f 8174/8174 8227/8227 8121/8121 +f 8174/8174 8041/8041 8225/8225 +f 8121/8121 8227/8227 8175/8175 +f 8176/8176 8122/8122 8175/8175 +f 8176/8176 8177/8177 8085/8085 +f 8123/8123 8177/8177 8216/8216 +f 8086/8086 8179/8179 8178/8178 +f 8228/8228 8124/8124 8178/8178 +f 8179/8179 8125/8125 8217/8217 +f 8126/8126 8124/8124 8229/8229 +f 8126/8126 8229/8229 8180/8180 +f 8180/8180 8230/8230 8127/8127 +f 8128/8128 8127/8127 8230/8230 +f 8130/8130 8185/8185 8051/8051 +f 8181/8181 8088/8088 8182/8182 +f 8181/8181 8231/8231 8130/8130 +f 8182/8182 8090/8090 8232/8232 +f 8183/8183 8233/8233 8089/8089 +f 8183/8183 8128/8128 8234/8234 +f 8090/8090 8184/8184 8232/8232 +f 8235/8235 8184/8184 8089/8089 +f 8092/8092 8186/8186 8094/8094 +f 8231/8231 8131/8131 8185/8185 +f 8131/8131 8236/8236 8186/8186 +f 8133/8133 8187/8187 8132/8132 +f 8237/8237 8133/8133 8186/8186 +f 8238/8238 8134/8134 8187/8187 +f 8188/8188 8134/8134 8239/8239 +f 8192/8192 8095/8095 8188/8188 +f 8189/8189 8135/8135 8240/8240 +f 8190/8190 8240/8240 8135/8135 +f 8190/8190 8136/8136 8241/8241 +f 8241/8241 8136/8136 8138/8138 +f 8242/8242 8137/8137 8189/8189 +f 8242/8242 8191/8191 8137/8137 +f 8138/8138 8192/8192 8243/8243 +f 8139/8139 8244/8244 8193/8193 +f 8193/8193 8194/8194 8099/8099 +f 8194/8194 8195/8195 8100/8100 +f 8195/8195 8245/8245 8140/8140 +f 8196/8196 8197/8197 8057/8057 +f 8246/8246 8196/8196 8140/8140 +f 8197/8197 8247/8247 8141/8141 +f 8141/8141 8143/8143 8142/8142 +f 8247/8247 8198/8198 8143/8143 +f 8103/8103 8199/8199 8200/8200 +f 8199/8199 8104/8104 8201/8201 +f 8144/8144 8200/8200 8248/8248 +f 8198/8198 8247/8247 8145/8145 +f 8145/8145 8249/8249 8146/8146 +f 8201/8201 8146/8146 8249/8249 +f 8244/8244 8139/8139 8202/8202 +f 8204/8204 8202/8202 8106/8106 +f 8203/8203 8148/8148 8147/8147 +f 8204/8204 8148/8148 8250/8250 +f 8251/8251 8203/8203 8149/8149 +f 8205/8205 8252/8252 8149/8149 +f 8206/8206 8205/8205 8150/8150 +f 8108/8108 8207/8207 8206/8206 +f 8152/8152 8253/8253 8151/8151 +f 8207/8207 8151/8151 8254/8254 +f 8152/8152 8191/8191 8253/8253 +f 8153/8153 8255/8255 8159/8159 +f 8256/8256 8154/8154 8208/8208 +f 8256/8256 8156/8156 8154/8154 +f 8156/8156 8257/8257 8209/8209 +f 8210/8210 8111/8111 8209/8209 +f 8153/8153 8158/8158 8255/8255 +f 8258/8258 8158/8158 8210/8210 +f 8160/8160 8166/8166 8161/8161 +f 8161/8161 8259/8259 8211/8211 +f 8260/8260 8072/8072 8211/8211 +f 8261/8261 8162/8162 8163/8163 +f 8212/8212 8072/8072 8260/8260 +f 8212/8212 8262/8262 8163/8163 +f 8213/8213 8164/8164 8263/8263 +f 8213/8213 8215/8215 8115/8115 +f 8214/8214 8165/8165 8264/8264 +f 8165/8165 8215/8215 8265/8265 +f 8266/8266 8166/8166 8214/8214 +f 8218/8218 8217/8217 8116/8116 +f 8167/8167 8216/8216 8267/8267 +f 8218/8218 8167/8167 8268/8268 +f 8172/8172 8269/8269 8168/8168 +f 8269/8269 8219/8219 8168/8168 +f 8220/8220 8169/8169 8219/8219 +f 8221/8221 8117/8117 8220/8220 +f 8171/8171 8270/8270 8170/8170 +f 8171/8171 8221/8221 8270/8270 +f 8222/8222 8223/8223 8119/8119 +f 8222/8222 8162/8162 8261/8261 +f 8269/8269 8172/8172 8223/8223 +f 8226/8226 8224/8224 8120/8120 +f 8173/8173 8224/8224 8271/8271 +f 8272/8272 8225/8225 8173/8173 +f 8226/8226 8170/8170 8273/8273 +f 8174/8174 8274/8274 8227/8227 +f 8275/8275 8174/8174 8225/8225 +f 8227/8227 8276/8276 8175/8175 +f 8276/8276 8176/8176 8175/8175 +f 8277/8277 8177/8177 8176/8176 +f 8177/8177 8267/8267 8216/8216 +f 8179/8179 8278/8278 8178/8178 +f 8279/8279 8228/8228 8178/8178 +f 8229/8229 8124/8124 8228/8228 +f 8280/8280 8179/8179 8217/8217 +f 8281/8281 8180/8180 8229/8229 +f 8230/8230 8180/8180 8282/8282 +f 8234/8234 8128/8128 8230/8230 +f 8231/8231 8185/8185 8130/8130 +f 8283/8283 8181/8181 8182/8182 +f 8284/8284 8231/8231 8181/8181 +f 8182/8182 8232/8232 8283/8283 +f 8233/8233 8235/8235 8089/8089 +f 8233/8233 8183/8183 8285/8285 +f 8234/8234 8285/8285 8183/8183 +f 8232/8232 8184/8184 8286/8286 +f 8235/8235 8286/8286 8184/8184 +f 8131/8131 8231/8231 8236/8236 +f 8186/8186 8236/8236 8287/8287 +f 8187/8187 8133/8133 8237/8237 +f 8186/8186 8288/8288 8237/8237 +f 8239/8239 8134/8134 8238/8238 +f 8187/8187 8289/8289 8238/8238 +f 8188/8188 8239/8239 8192/8192 +f 8189/8189 8240/8240 8290/8290 +f 8291/8291 8240/8240 8190/8190 +f 8190/8190 8241/8241 8292/8292 +f 8293/8293 8241/8241 8138/8138 +f 8290/8290 8242/8242 8189/8189 +f 8294/8294 8191/8191 8242/8242 +f 8243/8243 8192/8192 8239/8239 +f 8293/8293 8138/8138 8243/8243 +f 8244/8244 8295/8295 8193/8193 +f 8295/8295 8194/8194 8193/8193 +f 8195/8195 8194/8194 8296/8296 +f 8140/8140 8245/8245 8246/8246 +f 8196/8196 8246/8246 8197/8197 +f 8247/8247 8197/8197 8246/8246 +f 8141/8141 8247/8247 8143/8143 +f 8199/8199 8297/8297 8200/8200 +f 8199/8199 8201/8201 8298/8298 +f 8299/8299 8144/8144 8248/8248 +f 8200/8200 8300/8300 8248/8248 +f 8145/8145 8247/8247 8301/8301 +f 8249/8249 8145/8145 8301/8301 +f 8201/8201 8249/8249 8298/8298 +f 8302/8302 8244/8244 8202/8202 +f 8302/8302 8202/8202 8204/8204 +f 8250/8250 8148/8148 8203/8203 +f 8250/8250 8303/8303 8204/8204 +f 8203/8203 8251/8251 8250/8250 +f 8149/8149 8252/8252 8251/8251 +f 8304/8304 8252/8252 8205/8205 +f 8206/8206 8304/8304 8205/8205 +f 8207/8207 8305/8305 8206/8206 +f 8306/8306 8151/8151 8253/8253 +f 8151/8151 8306/8306 8254/8254 +f 8207/8207 8254/8254 8307/8307 +f 8191/8191 8294/8294 8253/8253 +f 8308/8308 8156/8156 8256/8256 +f 8257/8257 8156/8156 8308/8308 +f 8257/8257 8309/8309 8209/8209 +f 8258/8258 8210/8210 8209/8209 +f 8310/8310 8255/8255 8158/8158 +f 8158/8158 8258/8258 8310/8310 +f 8166/8166 8266/8266 8161/8161 +f 8259/8259 8161/8161 8311/8311 +f 8259/8259 8260/8260 8211/8211 +f 8163/8163 8262/8262 8261/8261 +f 8260/8260 8262/8262 8212/8212 +f 8312/8312 8213/8213 8263/8263 +f 8213/8213 8313/8313 8215/8215 +f 8264/8264 8165/8165 8314/8314 +f 8214/8214 8264/8264 8266/8266 +f 8315/8315 8265/8265 8215/8215 +f 8314/8314 8165/8165 8265/8265 +f 8218/8218 8316/8316 8217/8217 +f 8267/8267 8317/8317 8167/8167 +f 8218/8218 8268/8268 8318/8318 +f 8317/8317 8268/8268 8167/8167 +f 8269/8269 8319/8319 8219/8219 +f 8219/8219 8320/8320 8220/8220 +f 8220/8220 8321/8321 8221/8221 +f 8270/8270 8273/8273 8170/8170 +f 8221/8221 8321/8321 8270/8270 +f 8222/8222 8322/8322 8223/8223 +f 8222/8222 8261/8261 8322/8322 +f 8269/8269 8223/8223 8319/8319 +f 8226/8226 8323/8323 8224/8224 +f 8224/8224 8324/8324 8271/8271 +f 8271/8271 8325/8325 8173/8173 +f 8225/8225 8272/8272 8275/8275 +f 8272/8272 8173/8173 8326/8326 +f 8323/8323 8226/8226 8273/8273 +f 8227/8227 8274/8274 8327/8327 +f 8274/8274 8174/8174 8275/8275 +f 8227/8227 8328/8328 8276/8276 +f 8176/8176 8276/8276 8277/8277 +f 8277/8277 8267/8267 8177/8177 +f 8279/8279 8178/8178 8278/8278 +f 8278/8278 8179/8179 8329/8329 +f 8228/8228 8279/8279 8330/8330 +f 8229/8229 8228/8228 8281/8281 +f 8280/8280 8331/8331 8179/8179 +f 8217/8217 8316/8316 8280/8280 +f 8180/8180 8281/8281 8332/8332 +f 8332/8332 8282/8282 8180/8180 +f 8333/8333 8230/8230 8282/8282 +f 8234/8234 8230/8230 8334/8334 +f 8181/8181 8283/8283 8335/8335 +f 8284/8284 8336/8336 8231/8231 +f 8284/8284 8181/8181 8335/8335 +f 8283/8283 8232/8232 8286/8286 +f 8233/8233 8337/8337 8235/8235 +f 8338/8338 8233/8233 8285/8285 +f 8339/8339 8285/8285 8234/8234 +f 8286/8286 8235/8235 8340/8340 +f 8336/8336 8236/8236 8231/8231 +f 8236/8236 8341/8341 8287/8287 +f 8287/8287 8288/8288 8186/8186 +f 8289/8289 8187/8187 8237/8237 +f 8288/8288 8342/8342 8237/8237 +f 8343/8343 8239/8239 8238/8238 +f 8289/8289 8344/8344 8238/8238 +f 8240/8240 8291/8291 8290/8290 +f 8291/8291 8190/8190 8345/8345 +f 8345/8345 8190/8190 8292/8292 +f 8293/8293 8292/8292 8241/8241 +f 8294/8294 8242/8242 8290/8290 +f 8243/8243 8239/8239 8343/8343 +f 8346/8346 8293/8293 8243/8243 +f 8244/8244 8302/8302 8295/8295 +f 8296/8296 8194/8194 8295/8295 +f 8246/8246 8245/8245 8347/8347 +f 8246/8246 8301/8301 8247/8247 +f 8297/8297 8199/8199 8298/8298 +f 8300/8300 8200/8200 8297/8297 +f 8300/8300 8299/8299 8248/8248 +f 8348/8348 8249/8249 8301/8301 +f 8298/8298 8249/8249 8348/8348 +f 8349/8349 8302/8302 8204/8204 +f 8251/8251 8303/8303 8250/8250 +f 8303/8303 8349/8349 8204/8204 +f 8251/8251 8252/8252 8350/8350 +f 8252/8252 8304/8304 8350/8350 +f 8305/8305 8304/8304 8206/8206 +f 8307/8307 8305/8305 8207/8207 +f 8351/8351 8306/8306 8253/8253 +f 8306/8306 8352/8352 8254/8254 +f 8353/8353 8307/8307 8254/8254 +f 8351/8351 8253/8253 8294/8294 +f 8309/8309 8354/8354 8209/8209 +f 8354/8354 8258/8258 8209/8209 +f 8355/8355 8255/8255 8310/8310 +f 8310/8310 8258/8258 8354/8354 +f 8266/8266 8311/8311 8161/8161 +f 8356/8356 8259/8259 8311/8311 +f 8259/8259 8357/8357 8260/8260 +f 8262/8262 8358/8358 8261/8261 +f 8260/8260 8359/8359 8262/8262 +f 8213/8213 8312/8312 8313/8313 +f 8313/8313 8315/8315 8215/8215 +f 8360/8360 8264/8264 8314/8314 +f 8266/8266 8264/8264 8356/8356 +f 8314/8314 8265/8265 8315/8315 +f 8316/8316 8218/8218 8361/8361 +f 8362/8362 8317/8317 8267/8267 +f 8318/8318 8363/8363 8218/8218 +f 8268/8268 8364/8364 8318/8318 +f 8317/8317 8364/8364 8268/8268 +f 8219/8219 8319/8319 8365/8365 +f 8219/8219 8365/8365 8320/8320 +f 8320/8320 8321/8321 8220/8220 +f 8273/8273 8270/8270 8321/8321 +f 8319/8319 8223/8223 8322/8322 +f 8322/8322 8261/8261 8366/8366 +f 8323/8323 8324/8324 8224/8224 +f 8367/8367 8271/8271 8324/8324 +f 8325/8325 8326/8326 8173/8173 +f 8325/8325 8271/8271 8367/8367 +f 8272/8272 8368/8368 8275/8275 +f 8369/8369 8272/8272 8326/8326 +f 8323/8323 8273/8273 8321/8321 +f 8327/8327 8274/8274 8275/8275 +f 8327/8327 8370/8370 8227/8227 +f 8328/8328 8277/8277 8276/8276 +f 8371/8371 8328/8328 8227/8227 +f 8267/8267 8277/8277 8362/8362 +f 8279/8279 8278/8278 8372/8372 +f 8278/8278 8329/8329 8373/8373 +f 8179/8179 8331/8331 8329/8329 +f 8374/8374 8228/8228 8330/8330 +f 8279/8279 8375/8375 8330/8330 +f 8281/8281 8228/8228 8374/8374 +f 8280/8280 8376/8376 8331/8331 +f 8316/8316 8376/8376 8280/8280 +f 8281/8281 8374/8374 8332/8332 +f 8377/8377 8282/8282 8332/8332 +f 8230/8230 8333/8333 8339/8339 +f 8282/8282 8378/8378 8333/8333 +f 8230/8230 8339/8339 8334/8334 +f 8334/8334 8339/8339 8234/8234 +f 8335/8335 8283/8283 8340/8340 +f 8335/8335 8336/8336 8284/8284 +f 8340/8340 8283/8283 8286/8286 +f 8338/8338 8337/8337 8233/8233 +f 8337/8337 8379/8379 8235/8235 +f 8338/8338 8285/8285 8380/8380 +f 8339/8339 8381/8381 8285/8285 +f 8379/8379 8340/8340 8235/8235 +f 8236/8236 8336/8336 8341/8341 +f 8341/8341 8382/8382 8287/8287 +f 8383/8383 8288/8288 8287/8287 +f 8384/8384 8289/8289 8237/8237 +f 8288/8288 8385/8385 8342/8342 +f 8237/8237 8342/8342 8384/8384 +f 8386/8386 8343/8343 8238/8238 +f 8344/8344 8386/8386 8238/8238 +f 8289/8289 8384/8384 8344/8344 +f 8290/8290 8291/8291 8387/8387 +f 8388/8388 8291/8291 8345/8345 +f 8345/8345 8292/8292 8389/8389 +f 8389/8389 8292/8292 8293/8293 +f 8294/8294 8290/8290 8387/8387 +f 8346/8346 8243/8243 8343/8343 +f 8389/8389 8293/8293 8346/8346 +f 8296/8296 8295/8295 8302/8302 +f 8301/8301 8246/8246 8347/8347 +f 8390/8390 8297/8297 8298/8298 +f 8297/8297 8390/8390 8300/8300 +f 8299/8299 8300/8300 8391/8391 +f 8348/8348 8301/8301 8392/8392 +f 8348/8348 8390/8390 8298/8298 +f 8349/8349 8393/8393 8302/8302 +f 8303/8303 8251/8251 8350/8350 +f 8393/8393 8349/8349 8303/8303 +f 8350/8350 8304/8304 8394/8394 +f 8394/8394 8304/8304 8305/8305 +f 8305/8305 8307/8307 8395/8395 +f 8396/8396 8306/8306 8351/8351 +f 8352/8352 8306/8306 8396/8396 +f 8353/8353 8254/8254 8352/8352 +f 8388/8388 8351/8351 8294/8294 +f 8354/8354 8309/8309 8355/8355 +f 8310/8310 8354/8354 8355/8355 +f 8356/8356 8311/8311 8266/8266 +f 8397/8397 8259/8259 8356/8356 +f 8397/8397 8357/8357 8259/8259 +f 8398/8398 8260/8260 8357/8357 +f 8366/8366 8261/8261 8358/8358 +f 8359/8359 8358/8358 8262/8262 +f 8260/8260 8398/8398 8359/8359 +f 8313/8313 8312/8312 8399/8399 +f 8315/8315 8313/8313 8400/8400 +f 8314/8314 8401/8401 8360/8360 +f 8360/8360 8402/8402 8264/8264 +f 8264/8264 8402/8402 8356/8356 +f 8314/8314 8315/8315 8403/8403 +f 8218/8218 8363/8363 8361/8361 +f 8404/8404 8316/8316 8361/8361 +f 8362/8362 8405/8405 8317/8317 +f 8363/8363 8318/8318 8406/8406 +f 8318/8318 8364/8364 8407/8407 +f 8408/8408 8364/8364 8317/8317 +f 8409/8409 8365/8365 8319/8319 +f 8365/8365 8410/8410 8320/8320 +f 8321/8321 8320/8320 8411/8411 +f 8319/8319 8322/8322 8412/8412 +f 8412/8412 8322/8322 8366/8366 +f 8411/8411 8324/8324 8323/8323 +f 8324/8324 8413/8413 8367/8367 +f 8326/8326 8325/8325 8414/8414 +f 8415/8415 8325/8325 8367/8367 +f 8368/8368 8272/8272 8369/8369 +f 8275/8275 8368/8368 8416/8416 +f 8326/8326 8414/8414 8369/8369 +f 8323/8323 8321/8321 8411/8411 +f 8327/8327 8275/8275 8416/8416 +f 8327/8327 8417/8417 8370/8370 +f 8371/8371 8227/8227 8370/8370 +f 8277/8277 8328/8328 8362/8362 +f 8418/8418 8328/8328 8371/8371 +f 8373/8373 8372/8372 8278/8278 +f 8375/8375 8279/8279 8372/8372 +f 8329/8329 8419/8419 8373/8373 +f 8329/8329 8331/8331 8376/8376 +f 8420/8420 8374/8374 8330/8330 +f 8330/8330 8375/8375 8421/8421 +f 8316/8316 8404/8404 8376/8376 +f 8374/8374 8422/8422 8332/8332 +f 8282/8282 8377/8377 8423/8423 +f 8332/8332 8423/8423 8377/8377 +f 8339/8339 8333/8333 8424/8424 +f 8333/8333 8378/8378 8424/8424 +f 8425/8425 8378/8378 8282/8282 +f 8340/8340 8426/8426 8335/8335 +f 8335/8335 8427/8427 8336/8336 +f 8379/8379 8337/8337 8338/8338 +f 8285/8285 8428/8428 8380/8380 +f 8380/8380 8429/8429 8338/8338 +f 8339/8339 8424/8424 8381/8381 +f 8285/8285 8381/8381 8428/8428 +f 8340/8340 8379/8379 8430/8430 +f 8341/8341 8336/8336 8427/8427 +f 8341/8341 8427/8427 8382/8382 +f 8287/8287 8382/8382 8383/8383 +f 8385/8385 8288/8288 8383/8383 +f 8342/8342 8385/8385 8431/8431 +f 8342/8342 8432/8432 8384/8384 +f 8433/8433 8343/8343 8386/8386 +f 8386/8386 8344/8344 8434/8434 +f 8344/8344 8384/8384 8432/8432 +f 8387/8387 8291/8291 8388/8388 +f 8345/8345 8389/8389 8388/8388 +f 8388/8388 8294/8294 8387/8387 +f 8343/8343 8433/8433 8346/8346 +f 8435/8435 8389/8389 8346/8346 +f 8347/8347 8392/8392 8301/8301 +f 8300/8300 8390/8390 8436/8436 +f 8391/8391 8300/8300 8437/8437 +f 8438/8438 8348/8348 8392/8392 +f 8438/8438 8390/8390 8348/8348 +f 8393/8393 8303/8303 8350/8350 +f 8395/8395 8394/8394 8305/8305 +f 8352/8352 8396/8396 8353/8353 +f 8439/8439 8397/8397 8356/8356 +f 8397/8397 8398/8398 8357/8357 +f 8440/8440 8366/8366 8358/8358 +f 8359/8359 8441/8441 8358/8358 +f 8359/8359 8398/8398 8442/8442 +f 8399/8399 8312/8312 8443/8443 +f 8313/8313 8399/8399 8443/8443 +f 8403/8403 8315/8315 8400/8400 +f 8400/8400 8313/8313 8443/8443 +f 8314/8314 8403/8403 8401/8401 +f 8360/8360 8401/8401 8444/8444 +f 8360/8360 8445/8445 8402/8402 +f 8402/8402 8439/8439 8356/8356 +f 8361/8361 8363/8363 8446/8446 +f 8404/8404 8361/8361 8446/8446 +f 8408/8408 8405/8405 8362/8362 +f 8405/8405 8408/8408 8317/8317 +f 8406/8406 8318/8318 8407/8407 +f 8363/8363 8406/8406 8447/8447 +f 8364/8364 8448/8448 8407/8407 +f 8448/8448 8364/8364 8408/8408 +f 8365/8365 8409/8409 8410/8410 +f 8449/8449 8409/8409 8319/8319 +f 8410/8410 8450/8450 8320/8320 +f 8411/8411 8320/8320 8450/8450 +f 8412/8412 8449/8449 8319/8319 +f 8412/8412 8366/8366 8451/8451 +f 8411/8411 8450/8450 8324/8324 +f 8452/8452 8367/8367 8413/8413 +f 8324/8324 8450/8450 8413/8413 +f 8415/8415 8414/8414 8325/8325 +f 8453/8453 8415/8415 8367/8367 +f 8368/8368 8369/8369 8454/8454 +f 8368/8368 8455/8455 8416/8416 +f 8369/8369 8414/8414 8456/8456 +f 8416/8416 8457/8457 8327/8327 +f 8327/8327 8458/8458 8417/8417 +f 8370/8370 8417/8417 8459/8459 +f 8371/8371 8370/8370 8460/8460 +f 8362/8362 8328/8328 8418/8418 +f 8371/8371 8460/8460 8418/8418 +f 8461/8461 8372/8372 8373/8373 +f 8375/8375 8372/8372 8462/8462 +f 8419/8419 8463/8463 8373/8373 +f 8464/8464 8419/8419 8329/8329 +f 8376/8376 8464/8464 8329/8329 +f 8465/8465 8420/8420 8330/8330 +f 8374/8374 8420/8420 8466/8466 +f 8421/8421 8467/8467 8330/8330 +f 8375/8375 8468/8468 8421/8421 +f 8469/8469 8376/8376 8404/8404 +f 8470/8470 8422/8422 8374/8374 +f 8422/8422 8423/8423 8332/8332 +f 8425/8425 8282/8282 8423/8423 +f 8378/8378 8425/8425 8424/8424 +f 8426/8426 8471/8471 8335/8335 +f 8426/8426 8340/8340 8472/8472 +f 8335/8335 8471/8471 8427/8427 +f 8338/8338 8429/8429 8379/8379 +f 8428/8428 8473/8473 8380/8380 +f 8474/8474 8429/8429 8380/8380 +f 8381/8381 8424/8424 8475/8475 +f 8428/8428 8381/8381 8475/8475 +f 8430/8430 8472/8472 8340/8340 +f 8429/8429 8430/8430 8379/8379 +f 8382/8382 8427/8427 8383/8383 +f 8385/8385 8383/8383 8431/8431 +f 8431/8431 8476/8476 8342/8342 +f 8342/8342 8476/8476 8432/8432 +f 8434/8434 8433/8433 8386/8386 +f 8432/8432 8434/8434 8344/8344 +f 8477/8477 8388/8388 8389/8389 +f 8346/8346 8433/8433 8435/8435 +f 8435/8435 8477/8477 8389/8389 +f 8478/8478 8392/8392 8347/8347 +f 8390/8390 8438/8438 8436/8436 +f 8300/8300 8436/8436 8437/8437 +f 8391/8391 8437/8437 8479/8479 +f 8392/8392 8478/8478 8438/8438 +f 8439/8439 8480/8480 8397/8397 +f 8397/8397 8481/8481 8398/8398 +f 8358/8358 8441/8441 8440/8440 +f 8366/8366 8440/8440 8482/8482 +f 8441/8441 8359/8359 8442/8442 +f 8442/8442 8398/8398 8483/8483 +f 8444/8444 8445/8445 8360/8360 +f 8402/8402 8445/8445 8484/8484 +f 8484/8484 8439/8439 8402/8402 +f 8363/8363 8447/8447 8446/8446 +f 8485/8485 8404/8404 8446/8446 +f 8486/8486 8408/8408 8362/8362 +f 8407/8407 8487/8487 8406/8406 +f 8447/8447 8406/8406 8487/8487 +f 8448/8448 8488/8488 8407/8407 +f 8489/8489 8448/8448 8408/8408 +f 8409/8409 8490/8490 8410/8410 +f 8449/8449 8490/8490 8409/8409 +f 8490/8490 8450/8450 8410/8410 +f 8449/8449 8412/8412 8451/8451 +f 8491/8491 8451/8451 8366/8366 +f 8452/8452 8492/8492 8367/8367 +f 8413/8413 8490/8490 8452/8452 +f 8490/8490 8413/8413 8450/8450 +f 8415/8415 8456/8456 8414/8414 +f 8493/8493 8415/8415 8453/8453 +f 8492/8492 8453/8453 8367/8367 +f 8455/8455 8368/8368 8454/8454 +f 8454/8454 8369/8369 8456/8456 +f 8455/8455 8494/8494 8416/8416 +f 8458/8458 8327/8327 8457/8457 +f 8457/8457 8416/8416 8494/8494 +f 8417/8417 8458/8458 8495/8495 +f 8496/8496 8459/8459 8417/8417 +f 8370/8370 8459/8459 8497/8497 +f 8460/8460 8370/8370 8498/8498 +f 8418/8418 8486/8486 8362/8362 +f 8460/8460 8499/8499 8418/8418 +f 8462/8462 8372/8372 8461/8461 +f 8463/8463 8461/8461 8373/8373 +f 8462/8462 8500/8500 8375/8375 +f 8463/8463 8419/8419 8501/8501 +f 8464/8464 8502/8502 8419/8419 +f 8376/8376 8503/8503 8464/8464 +f 8420/8420 8465/8465 8466/8466 +f 8330/8330 8467/8467 8465/8465 +f 8470/8470 8374/8374 8466/8466 +f 8468/8468 8467/8467 8421/8421 +f 8375/8375 8504/8504 8468/8468 +f 8505/8505 8376/8376 8469/8469 +f 8404/8404 8485/8485 8469/8469 +f 8470/8470 8506/8506 8422/8422 +f 8507/8507 8423/8423 8422/8422 +f 8507/8507 8425/8425 8423/8423 +f 8424/8424 8425/8425 8508/8508 +f 8471/8471 8426/8426 8509/8509 +f 8472/8472 8509/8509 8426/8426 +f 8510/8510 8427/8427 8471/8471 +f 8475/8475 8473/8473 8428/8428 +f 8473/8473 8511/8511 8380/8380 +f 8474/8474 8512/8512 8429/8429 +f 8380/8380 8511/8511 8474/8474 +f 8508/8508 8475/8475 8424/8424 +f 8472/8472 8430/8430 8513/8513 +f 8430/8430 8429/8429 8514/8514 +f 8510/8510 8383/8383 8427/8427 +f 8383/8383 8515/8515 8431/8431 +f 8431/8431 8516/8516 8476/8476 +f 8517/8517 8432/8432 8476/8476 +f 8434/8434 8518/8518 8433/8433 +f 8434/8434 8432/8432 8518/8518 +f 8433/8433 8518/8518 8435/8435 +f 8435/8435 8517/8517 8477/8477 +f 8479/8479 8437/8437 8436/8436 +f 8439/8439 8519/8519 8480/8480 +f 8397/8397 8480/8480 8481/8481 +f 8483/8483 8398/8398 8481/8481 +f 8440/8440 8441/8441 8520/8520 +f 8482/8482 8440/8440 8521/8521 +f 8522/8522 8366/8366 8482/8482 +f 8520/8520 8441/8441 8442/8442 +f 8520/8520 8442/8442 8483/8483 +f 8523/8523 8484/8484 8445/8445 +f 8484/8484 8523/8523 8439/8439 +f 8446/8446 8447/8447 8524/8524 +f 8525/8525 8485/8485 8446/8446 +f 8408/8408 8486/8486 8526/8526 +f 8407/8407 8527/8527 8487/8487 +f 8447/8447 8487/8487 8528/8528 +f 8488/8488 8448/8448 8529/8529 +f 8488/8488 8527/8527 8407/8407 +f 8489/8489 8530/8530 8448/8448 +f 8526/8526 8489/8489 8408/8408 +f 8531/8531 8490/8490 8449/8449 +f 8451/8451 8531/8531 8449/8449 +f 8491/8491 8532/8532 8451/8451 +f 8491/8491 8366/8366 8533/8533 +f 8534/8534 8492/8492 8452/8452 +f 8490/8490 8531/8531 8452/8452 +f 8415/8415 8493/8493 8456/8456 +f 8535/8535 8453/8453 8492/8492 +f 8455/8455 8454/8454 8536/8536 +f 8537/8537 8454/8454 8456/8456 +f 8494/8494 8455/8455 8538/8538 +f 8457/8457 8539/8539 8458/8458 +f 8540/8540 8457/8457 8494/8494 +f 8495/8495 8458/8458 8541/8541 +f 8496/8496 8417/8417 8495/8495 +f 8496/8496 8542/8542 8459/8459 +f 8497/8497 8459/8459 8542/8542 +f 8370/8370 8497/8497 8498/8498 +f 8460/8460 8498/8498 8543/8543 +f 8418/8418 8499/8499 8486/8486 +f 8499/8499 8460/8460 8543/8543 +f 8544/8544 8462/8462 8461/8461 +f 8461/8461 8463/8463 8545/8545 +f 8544/8544 8500/8500 8462/8462 +f 8375/8375 8500/8500 8504/8504 +f 8545/8545 8463/8463 8501/8501 +f 8419/8419 8502/8502 8501/8501 +f 8502/8502 8464/8464 8503/8503 +f 8376/8376 8505/8505 8503/8503 +f 8465/8465 8546/8546 8466/8466 +f 8467/8467 8468/8468 8465/8465 +f 8466/8466 8546/8546 8470/8470 +f 8504/8504 8547/8547 8468/8468 +f 8485/8485 8505/8505 8469/8469 +f 8422/8422 8506/8506 8507/8507 +f 8506/8506 8470/8470 8546/8546 +f 8507/8507 8508/8508 8425/8425 +f 8509/8509 8510/8510 8471/8471 +f 8509/8509 8472/8472 8513/8513 +f 8473/8473 8475/8475 8548/8548 +f 8548/8548 8511/8511 8473/8473 +f 8429/8429 8512/8512 8549/8549 +f 8474/8474 8550/8550 8512/8512 +f 8551/8551 8474/8474 8511/8511 +f 8552/8552 8475/8475 8508/8508 +f 8430/8430 8514/8514 8513/8513 +f 8514/8514 8429/8429 8549/8549 +f 8515/8515 8383/8383 8510/8510 +f 8516/8516 8431/8431 8515/8515 +f 8516/8516 8553/8553 8476/8476 +f 8518/8518 8432/8432 8517/8517 +f 8476/8476 8553/8553 8517/8517 +f 8517/8517 8435/8435 8518/8518 +f 8439/8439 8523/8523 8519/8519 +f 8481/8481 8480/8480 8554/8554 +f 8481/8481 8554/8554 8483/8483 +f 8520/8520 8521/8521 8440/8440 +f 8555/8555 8482/8482 8521/8521 +f 8556/8556 8522/8522 8482/8482 +f 8522/8522 8533/8533 8366/8366 +f 8483/8483 8557/8557 8520/8520 +f 8528/8528 8524/8524 8447/8447 +f 8524/8524 8525/8525 8446/8446 +f 8525/8525 8558/8558 8485/8485 +f 8526/8526 8486/8486 8559/8559 +f 8487/8487 8527/8527 8560/8560 +f 8487/8487 8561/8561 8528/8528 +f 8529/8529 8448/8448 8530/8530 +f 8562/8562 8488/8488 8529/8529 +f 8527/8527 8488/8488 8563/8563 +f 8564/8564 8530/8530 8489/8489 +f 8565/8565 8489/8489 8526/8526 +f 8531/8531 8451/8451 8532/8532 +f 8566/8566 8532/8532 8491/8491 +f 8491/8491 8533/8533 8567/8567 +f 8452/8452 8568/8568 8534/8534 +f 8534/8534 8569/8569 8492/8492 +f 8531/8531 8570/8570 8452/8452 +f 8569/8569 8535/8535 8492/8492 +f 8536/8536 8571/8571 8455/8455 +f 8536/8536 8454/8454 8572/8572 +f 8454/8454 8537/8537 8573/8573 +f 8538/8538 8574/8574 8494/8494 +f 8538/8538 8455/8455 8571/8571 +f 8541/8541 8458/8458 8539/8539 +f 8540/8540 8539/8539 8457/8457 +f 8575/8575 8540/8540 8494/8494 +f 8495/8495 8541/8541 8576/8576 +f 8576/8576 8496/8496 8495/8495 +f 8496/8496 8577/8577 8542/8542 +f 8497/8497 8542/8542 8578/8578 +f 8498/8498 8497/8497 8578/8578 +f 8498/8498 8578/8578 8543/8543 +f 8499/8499 8559/8559 8486/8486 +f 8543/8543 8579/8579 8499/8499 +f 8544/8544 8461/8461 8580/8580 +f 8545/8545 8581/8581 8461/8461 +f 8582/8582 8500/8500 8544/8544 +f 8500/8500 8582/8582 8504/8504 +f 8545/8545 8501/8501 8583/8583 +f 8583/8583 8501/8501 8502/8502 +f 8584/8584 8502/8502 8503/8503 +f 8505/8505 8585/8585 8503/8503 +f 8546/8546 8465/8465 8586/8586 +f 8468/8468 8587/8587 8465/8465 +f 8504/8504 8588/8588 8547/8547 +f 8468/8468 8547/8547 8589/8589 +f 8590/8590 8505/8505 8485/8485 +f 8506/8506 8591/8591 8507/8507 +f 8546/8546 8592/8592 8506/8506 +f 8593/8593 8508/8508 8507/8507 +f 8594/8594 8510/8510 8509/8509 +f 8594/8594 8509/8509 8513/8513 +f 8552/8552 8548/8548 8475/8475 +f 8551/8551 8511/8511 8548/8548 +f 8512/8512 8594/8594 8549/8549 +f 8474/8474 8551/8551 8550/8550 +f 8550/8550 8594/8594 8512/8512 +f 8593/8593 8552/8552 8508/8508 +f 8514/8514 8549/8549 8513/8513 +f 8595/8595 8515/8515 8510/8510 +f 8516/8516 8515/8515 8596/8596 +f 8516/8516 8597/8597 8553/8553 +f 8520/8520 8555/8555 8521/8521 +f 8598/8598 8482/8482 8555/8555 +f 8556/8556 8599/8599 8522/8522 +f 8598/8598 8556/8556 8482/8482 +f 8600/8600 8533/8533 8522/8522 +f 8520/8520 8557/8557 8555/8555 +f 8524/8524 8528/8528 8601/8601 +f 8524/8524 8602/8602 8525/8525 +f 8603/8603 8558/8558 8525/8525 +f 8485/8485 8558/8558 8590/8590 +f 8559/8559 8604/8604 8526/8526 +f 8560/8560 8527/8527 8605/8605 +f 8560/8560 8561/8561 8487/8487 +f 8606/8606 8528/8528 8561/8561 +f 8607/8607 8529/8529 8530/8530 +f 8529/8529 8607/8607 8562/8562 +f 8488/8488 8562/8562 8563/8563 +f 8608/8608 8527/8527 8563/8563 +f 8564/8564 8609/8609 8530/8530 +f 8565/8565 8564/8564 8489/8489 +f 8526/8526 8604/8604 8565/8565 +f 8570/8570 8531/8531 8532/8532 +f 8610/8610 8566/8566 8491/8491 +f 8532/8532 8566/8566 8570/8570 +f 8533/8533 8600/8600 8567/8567 +f 8567/8567 8610/8610 8491/8491 +f 8452/8452 8570/8570 8568/8568 +f 8568/8568 8611/8611 8534/8534 +f 8611/8611 8569/8569 8534/8534 +f 8569/8569 8611/8611 8535/8535 +f 8536/8536 8612/8612 8571/8571 +f 8536/8536 8572/8572 8613/8613 +f 8454/8454 8573/8573 8572/8572 +f 8614/8614 8573/8573 8537/8537 +f 8538/8538 8615/8615 8574/8574 +f 8574/8574 8575/8575 8494/8494 +f 8538/8538 8571/8571 8616/8616 +f 8539/8539 8540/8540 8541/8541 +f 8617/8617 8540/8540 8575/8575 +f 8541/8541 8618/8618 8576/8576 +f 8577/8577 8496/8496 8576/8576 +f 8577/8577 8619/8619 8542/8542 +f 8578/8578 8542/8542 8620/8620 +f 8621/8621 8543/8543 8578/8578 +f 8579/8579 8559/8559 8499/8499 +f 8621/8621 8579/8579 8543/8543 +f 8461/8461 8622/8622 8580/8580 +f 8580/8580 8582/8582 8544/8544 +f 8545/8545 8623/8623 8581/8581 +f 8581/8581 8622/8622 8461/8461 +f 8588/8588 8504/8504 8582/8582 +f 8623/8623 8545/8545 8583/8583 +f 8583/8583 8502/8502 8624/8624 +f 8624/8624 8502/8502 8584/8584 +f 8503/8503 8585/8585 8584/8584 +f 8585/8585 8505/8505 8625/8625 +f 8587/8587 8586/8586 8465/8465 +f 8586/8586 8592/8592 8546/8546 +f 8468/8468 8589/8589 8587/8587 +f 8589/8589 8547/8547 8588/8588 +f 8590/8590 8625/8625 8505/8505 +f 8591/8591 8506/8506 8626/8626 +f 8591/8591 8593/8593 8507/8507 +f 8586/8586 8506/8506 8592/8592 +f 8510/8510 8594/8594 8595/8595 +f 8549/8549 8594/8594 8513/8513 +f 8627/8627 8548/8548 8552/8552 +f 8628/8628 8551/8551 8548/8548 +f 8550/8550 8551/8551 8629/8629 +f 8550/8550 8595/8595 8594/8594 +f 8552/8552 8593/8593 8630/8630 +f 8631/8631 8515/8515 8595/8595 +f 8516/8516 8596/8596 8597/8597 +f 8596/8596 8515/8515 8632/8632 +f 8598/8598 8555/8555 8633/8633 +f 8556/8556 8633/8633 8599/8599 +f 8522/8522 8599/8599 8634/8634 +f 8633/8633 8556/8556 8598/8598 +f 8634/8634 8600/8600 8522/8522 +f 8633/8633 8555/8555 8557/8557 +f 8602/8602 8524/8524 8601/8601 +f 8606/8606 8601/8601 8528/8528 +f 8602/8602 8603/8603 8525/8525 +f 8635/8635 8558/8558 8603/8603 +f 8558/8558 8635/8635 8590/8590 +f 8559/8559 8636/8636 8604/8604 +f 8527/8527 8637/8637 8605/8605 +f 8605/8605 8638/8638 8560/8560 +f 8639/8639 8561/8561 8560/8560 +f 8606/8606 8561/8561 8640/8640 +f 8641/8641 8607/8607 8530/8530 +f 8607/8607 8642/8642 8562/8562 +f 8562/8562 8608/8608 8563/8563 +f 8527/8527 8608/8608 8637/8637 +f 8609/8609 8641/8641 8530/8530 +f 8609/8609 8564/8564 8643/8643 +f 8564/8564 8565/8565 8644/8644 +f 8644/8644 8565/8565 8604/8604 +f 8566/8566 8610/8610 8568/8568 +f 8566/8566 8568/8568 8570/8570 +f 8611/8611 8568/8568 8645/8645 +f 8535/8535 8611/8611 8646/8646 +f 8612/8612 8536/8536 8613/8613 +f 8612/8612 8616/8616 8571/8571 +f 8647/8647 8613/8613 8572/8572 +f 8572/8572 8573/8573 8648/8648 +f 8648/8648 8573/8573 8614/8614 +f 8538/8538 8616/8616 8615/8615 +f 8574/8574 8615/8615 8575/8575 +f 8541/8541 8540/8540 8617/8617 +f 8617/8617 8575/8575 8649/8649 +f 8576/8576 8618/8618 8577/8577 +f 8618/8618 8541/8541 8617/8617 +f 8619/8619 8577/8577 8650/8650 +f 8619/8619 8651/8651 8542/8542 +f 8651/8651 8620/8620 8542/8542 +f 8652/8652 8578/8578 8620/8620 +f 8652/8652 8621/8621 8578/8578 +f 8636/8636 8559/8559 8579/8579 +f 8579/8579 8621/8621 8653/8653 +f 8622/8622 8582/8582 8580/8580 +f 8581/8581 8623/8623 8654/8654 +f 8654/8654 8622/8622 8581/8581 +f 8588/8588 8582/8582 8622/8622 +f 8655/8655 8623/8623 8583/8583 +f 8583/8583 8624/8624 8655/8655 +f 8624/8624 8584/8584 8656/8656 +f 8584/8584 8585/8585 8590/8590 +f 8585/8585 8625/8625 8590/8590 +f 8657/8657 8586/8586 8587/8587 +f 8658/8658 8587/8587 8589/8589 +f 8654/8654 8589/8589 8588/8588 +f 8506/8506 8659/8659 8626/8626 +f 8660/8660 8591/8591 8626/8626 +f 8591/8591 8630/8630 8593/8593 +f 8506/8506 8586/8586 8659/8659 +f 8661/8661 8627/8627 8552/8552 +f 8627/8627 8628/8628 8548/8548 +f 8627/8627 8551/8551 8628/8628 +f 8629/8629 8662/8662 8550/8550 +f 8551/8551 8627/8627 8629/8629 +f 8550/8550 8662/8662 8595/8595 +f 8661/8661 8552/8552 8630/8630 +f 8595/8595 8663/8663 8631/8631 +f 8515/8515 8631/8631 8632/8632 +f 8596/8596 8664/8664 8597/8597 +f 8665/8665 8596/8596 8632/8632 +f 8599/8599 8633/8633 8634/8634 +f 8602/8602 8601/8601 8606/8606 +f 8603/8603 8602/8602 8635/8635 +f 8590/8590 8635/8635 8656/8656 +f 8636/8636 8644/8644 8604/8604 +f 8605/8605 8637/8637 8666/8666 +f 8639/8639 8560/8560 8638/8638 +f 8638/8638 8605/8605 8639/8639 +f 8640/8640 8561/8561 8639/8639 +f 8667/8667 8606/8606 8640/8640 +f 8668/8668 8607/8607 8641/8641 +f 8642/8642 8669/8669 8562/8562 +f 8642/8642 8607/8607 8668/8668 +f 8670/8670 8608/8608 8562/8562 +f 8637/8637 8608/8608 8671/8671 +f 8641/8641 8609/8609 8668/8668 +f 8609/8609 8643/8643 8672/8672 +f 8643/8643 8564/8564 8644/8644 +f 8645/8645 8568/8568 8610/8610 +f 8645/8645 8646/8646 8611/8611 +f 8612/8612 8613/8613 8647/8647 +f 8616/8616 8612/8612 8673/8673 +f 8647/8647 8572/8572 8674/8674 +f 8572/8572 8648/8648 8674/8674 +f 8648/8648 8614/8614 8674/8674 +f 8615/8615 8616/8616 8649/8649 +f 8649/8649 8575/8575 8615/8615 +f 8618/8618 8650/8650 8577/8577 +f 8650/8650 8618/8618 8617/8617 +f 8619/8619 8650/8650 8675/8675 +f 8651/8651 8619/8619 8675/8675 +f 8620/8620 8651/8651 8652/8652 +f 8621/8621 8652/8652 8676/8676 +f 8579/8579 8677/8677 8636/8636 +f 8653/8653 8621/8621 8676/8676 +f 8653/8653 8677/8677 8579/8579 +f 8623/8623 8678/8678 8654/8654 +f 8588/8588 8622/8622 8654/8654 +f 8655/8655 8679/8679 8623/8623 +f 8624/8624 8680/8680 8655/8655 +f 8590/8590 8656/8656 8584/8584 +f 8656/8656 8680/8680 8624/8624 +f 8657/8657 8681/8681 8586/8586 +f 8658/8658 8657/8657 8587/8587 +f 8589/8589 8682/8682 8658/8658 +f 8682/8682 8589/8589 8654/8654 +f 8659/8659 8683/8683 8626/8626 +f 8681/8681 8660/8660 8626/8626 +f 8660/8660 8630/8630 8591/8591 +f 8683/8683 8659/8659 8586/8586 +f 8684/8684 8627/8627 8661/8661 +f 8629/8629 8685/8685 8662/8662 +f 8627/8627 8684/8684 8629/8629 +f 8595/8595 8662/8662 8663/8663 +f 8660/8660 8661/8661 8630/8630 +f 8663/8663 8686/8686 8631/8631 +f 8632/8632 8631/8631 8686/8686 +f 8664/8664 8596/8596 8665/8665 +f 8597/8597 8664/8664 8687/8687 +f 8688/8688 8665/8665 8632/8632 +f 8689/8689 8602/8602 8606/8606 +f 8602/8602 8689/8689 8635/8635 +f 8656/8656 8635/8635 8680/8680 +f 8644/8644 8636/8636 8690/8690 +f 8637/8637 8671/8671 8666/8666 +f 8605/8605 8666/8666 8639/8639 +f 8639/8639 8671/8671 8640/8640 +f 8667/8667 8689/8689 8606/8606 +f 8671/8671 8667/8667 8640/8640 +f 8562/8562 8669/8669 8670/8670 +f 8669/8669 8642/8642 8691/8691 +f 8642/8642 8668/8668 8692/8692 +f 8693/8693 8608/8608 8670/8670 +f 8693/8693 8671/8671 8608/8608 +f 8668/8668 8609/8609 8672/8672 +f 8643/8643 8694/8694 8672/8672 +f 8695/8695 8643/8643 8644/8644 +f 8647/8647 8673/8673 8612/8612 +f 8673/8673 8696/8696 8616/8616 +f 8697/8697 8647/8647 8674/8674 +f 8674/8674 8614/8614 8698/8698 +f 8616/8616 8699/8699 8649/8649 +f 8700/8700 8676/8676 8652/8652 +f 8690/8690 8636/8636 8677/8677 +f 8676/8676 8677/8677 8653/8653 +f 8679/8679 8678/8678 8623/8623 +f 8678/8678 8701/8701 8654/8654 +f 8679/8679 8655/8655 8680/8680 +f 8683/8683 8586/8586 8681/8681 +f 8657/8657 8658/8658 8681/8681 +f 8702/8702 8658/8658 8682/8682 +f 8701/8701 8682/8682 8654/8654 +f 8683/8683 8681/8681 8626/8626 +f 8660/8660 8681/8681 8684/8684 +f 8684/8684 8661/8661 8660/8660 +f 8685/8685 8629/8629 8703/8703 +f 8704/8704 8662/8662 8685/8685 +f 8629/8629 8684/8684 8705/8705 +f 8704/8704 8663/8663 8662/8662 +f 8663/8663 8706/8706 8686/8686 +f 8632/8632 8686/8686 8688/8688 +f 8665/8665 8707/8707 8664/8664 +f 8707/8707 8687/8687 8664/8664 +f 8665/8665 8688/8688 8708/8708 +f 8689/8689 8709/8709 8635/8635 +f 8680/8680 8635/8635 8709/8709 +f 8710/8710 8644/8644 8690/8690 +f 8666/8666 8671/8671 8639/8639 +f 8689/8689 8667/8667 8711/8711 +f 8712/8712 8667/8667 8671/8671 +f 8669/8669 8691/8691 8670/8670 +f 8691/8691 8642/8642 8713/8713 +f 8668/8668 8672/8672 8692/8692 +f 8713/8713 8642/8642 8692/8692 +f 8693/8693 8670/8670 8714/8714 +f 8671/8671 8693/8693 8712/8712 +f 8694/8694 8715/8715 8672/8672 +f 8695/8695 8694/8694 8643/8643 +f 8644/8644 8710/8710 8695/8695 +f 8673/8673 8647/8647 8697/8697 +f 8696/8696 8673/8673 8697/8697 +f 8616/8616 8696/8696 8699/8699 +f 8698/8698 8697/8697 8674/8674 +f 8676/8676 8700/8700 8710/8710 +f 8677/8677 8710/8710 8690/8690 +f 8710/8710 8677/8677 8676/8676 +f 8679/8679 8716/8716 8678/8678 +f 8716/8716 8679/8679 8680/8680 +f 8681/8681 8658/8658 8702/8702 +f 8717/8717 8702/8702 8682/8682 +f 8701/8701 8718/8718 8682/8682 +f 8702/8702 8684/8684 8681/8681 +f 8703/8703 8629/8629 8705/8705 +f 8702/8702 8705/8705 8684/8684 +f 8706/8706 8663/8663 8704/8704 +f 8686/8686 8706/8706 8719/8719 +f 8686/8686 8719/8719 8688/8688 +f 8708/8708 8707/8707 8665/8665 +f 8707/8707 8720/8720 8687/8687 +f 8721/8721 8708/8708 8688/8688 +f 8709/8709 8689/8689 8711/8711 +f 8680/8680 8709/8709 8722/8722 +f 8667/8667 8712/8712 8711/8711 +f 8714/8714 8670/8670 8691/8691 +f 8723/8723 8691/8691 8713/8713 +f 8672/8672 8713/8713 8692/8692 +f 8693/8693 8714/8714 8724/8724 +f 8712/8712 8693/8693 8724/8724 +f 8715/8715 8694/8694 8725/8725 +f 8672/8672 8715/8715 8713/8713 +f 8694/8694 8695/8695 8725/8725 +f 8710/8710 8725/8725 8695/8695 +f 8726/8726 8696/8696 8697/8697 +f 8697/8697 8698/8698 8727/8727 +f 8725/8725 8710/8710 8700/8700 +f 8722/8722 8716/8716 8680/8680 +f 8705/8705 8702/8702 8717/8717 +f 8717/8717 8682/8682 8718/8718 +f 8705/8705 8717/8717 8703/8703 +f 8721/8721 8688/8688 8719/8719 +f 8720/8720 8707/8707 8708/8708 +f 8708/8708 8721/8721 8720/8720 +f 8722/8722 8709/8709 8711/8711 +f 8711/8711 8712/8712 8724/8724 +f 8728/8728 8714/8714 8691/8691 +f 8713/8713 8715/8715 8723/8723 +f 8728/8728 8691/8691 8723/8723 +f 8714/8714 8728/8728 8724/8724 +f 8726/8726 8697/8697 8727/8727 +f 8729/8729 8727/8727 8698/8698 +f 8717/8717 8718/8718 8730/8730 +f 8703/8703 8717/8717 8730/8730 +f 8721/8721 8719/8719 8720/8720 +f 8711/8711 8724/8724 8722/8722 +f 8731/8731 8732/8732 8733/8733 +f 8734/8734 8732/8732 8731/8731 +f 8735/8735 8733/8733 8732/8732 +f 8733/8733 8736/8736 8731/8731 +f 8732/8732 8734/8734 8737/8737 +f 8738/8738 8734/8734 8731/8731 +f 8733/8733 8735/8735 8739/8739 +f 8732/8732 8737/8737 8735/8735 +f 8736/8736 8738/8738 8731/8731 +f 8736/8736 8733/8733 8740/8740 +f 8737/8737 8734/8734 8741/8741 +f 8742/8742 8734/8734 8738/8738 +f 8739/8739 8735/8735 8743/8743 +f 8739/8739 8740/8740 8733/8733 +f 8737/8737 8744/8744 8735/8735 +f 8745/8745 8738/8738 8736/8736 +f 8746/8746 8736/8736 8740/8740 +f 8741/8741 8734/8734 8742/8742 +f 8737/8737 8741/8741 8747/8747 +f 8742/8742 8738/8738 8748/8748 +f 8743/8743 8735/8735 8749/8749 +f 8750/8750 8739/8739 8743/8743 +f 8740/8740 8739/8739 8751/8751 +f 8737/8737 8752/8752 8744/8744 +f 8744/8744 8753/8753 8735/8735 +f 8736/8736 8754/8754 8745/8745 +f 8755/8755 8738/8738 8745/8745 +f 8751/8751 8746/8746 8740/8740 +f 8756/8756 8736/8736 8746/8746 +f 8741/8741 8742/8742 8748/8748 +f 8747/8747 8741/8741 8748/8748 +f 8737/8737 8747/8747 8757/8757 +f 8748/8748 8738/8738 8755/8755 +f 8749/8749 8735/8735 8753/8753 +f 8749/8749 8758/8758 8743/8743 +f 8751/8751 8739/8739 8750/8750 +f 8758/8758 8750/8750 8743/8743 +f 8752/8752 8759/8759 8744/8744 +f 8752/8752 8737/8737 8757/8757 +f 8760/8760 8753/8753 8744/8744 +f 8754/8754 8736/8736 8756/8756 +f 8761/8761 8745/8745 8754/8754 +f 8762/8762 8755/8755 8745/8745 +f 8746/8746 8751/8751 8763/8763 +f 8764/8764 8756/8756 8746/8746 +f 8748/8748 8765/8765 8747/8747 +f 8757/8757 8747/8747 8766/8766 +f 8755/8755 8762/8762 8748/8748 +f 8753/8753 8767/8767 8749/8749 +f 8767/8767 8758/8758 8749/8749 +f 8750/8750 8768/8768 8751/8751 +f 8758/8758 8769/8769 8750/8750 +f 8770/8770 8759/8759 8752/8752 +f 8759/8759 8771/8771 8744/8744 +f 8772/8772 8752/8752 8757/8757 +f 8760/8760 8767/8767 8753/8753 +f 8771/8771 8760/8760 8744/8744 +f 8756/8756 8773/8773 8754/8754 +f 8754/8754 8773/8773 8761/8761 +f 8745/8745 8761/8761 8774/8774 +f 8774/8774 8762/8762 8745/8745 +f 8763/8763 8775/8775 8746/8746 +f 8751/8751 8776/8776 8763/8763 +f 8773/8773 8756/8756 8764/8764 +f 8775/8775 8764/8764 8746/8746 +f 8766/8766 8747/8747 8765/8765 +f 8762/8762 8765/8765 8748/8748 +f 8757/8757 8766/8766 8777/8777 +f 8758/8758 8767/8767 8778/8778 +f 8779/8779 8768/8768 8750/8750 +f 8768/8768 8776/8776 8751/8751 +f 8758/8758 8780/8780 8769/8769 +f 8779/8779 8750/8750 8769/8769 +f 8752/8752 8772/8772 8770/8770 +f 8770/8770 8781/8781 8759/8759 +f 8782/8782 8771/8771 8759/8759 +f 8783/8783 8772/8772 8757/8757 +f 8767/8767 8760/8760 8784/8784 +f 8785/8785 8760/8760 8771/8771 +f 8786/8786 8761/8761 8773/8773 +f 8786/8786 8774/8774 8761/8761 +f 8787/8787 8762/8762 8774/8774 +f 8763/8763 8788/8788 8775/8775 +f 8776/8776 8789/8789 8763/8763 +f 8773/8773 8764/8764 8786/8786 +f 8790/8790 8764/8764 8775/8775 +f 8791/8791 8766/8766 8765/8765 +f 8762/8762 8787/8787 8765/8765 +f 8783/8783 8757/8757 8777/8777 +f 8766/8766 8791/8791 8777/8777 +f 8792/8792 8778/8778 8767/8767 +f 8758/8758 8778/8778 8780/8780 +f 8776/8776 8768/8768 8779/8779 +f 8780/8780 8793/8793 8769/8769 +f 8794/8794 8779/8779 8769/8769 +f 8770/8770 8772/8772 8795/8795 +f 8782/8782 8759/8759 8781/8781 +f 8796/8796 8781/8781 8770/8770 +f 8782/8782 8797/8797 8771/8771 +f 8772/8772 8783/8783 8795/8795 +f 8784/8784 8760/8760 8798/8798 +f 8784/8784 8792/8792 8767/8767 +f 8760/8760 8785/8785 8798/8798 +f 8771/8771 8799/8799 8785/8785 +f 8800/8800 8774/8774 8786/8786 +f 8801/8801 8787/8787 8774/8774 +f 8788/8788 8802/8802 8775/8775 +f 8763/8763 8789/8789 8788/8788 +f 8803/8803 8789/8789 8776/8776 +f 8804/8804 8786/8786 8764/8764 +f 8790/8790 8804/8804 8764/8764 +f 8802/8802 8790/8790 8775/8775 +f 8765/8765 8805/8805 8791/8791 +f 8765/8765 8787/8787 8806/8806 +f 8783/8783 8777/8777 8807/8807 +f 8808/8808 8777/8777 8791/8791 +f 8792/8792 8780/8780 8778/8778 +f 8776/8776 8779/8779 8809/8809 +f 8780/8780 8810/8810 8793/8793 +f 8794/8794 8769/8769 8793/8793 +f 8809/8809 8779/8779 8794/8794 +f 8795/8795 8796/8796 8770/8770 +f 8781/8781 8811/8811 8782/8782 +f 8796/8796 8812/8812 8781/8781 +f 8771/8771 8797/8797 8813/8813 +f 8797/8797 8782/8782 8811/8811 +f 8795/8795 8783/8783 8796/8796 +f 8798/8798 8792/8792 8784/8784 +f 8798/8798 8785/8785 8814/8814 +f 8785/8785 8799/8799 8814/8814 +f 8771/8771 8813/8813 8799/8799 +f 8800/8800 8801/8801 8774/8774 +f 8786/8786 8815/8815 8800/8800 +f 8787/8787 8801/8801 8816/8816 +f 8788/8788 8817/8817 8802/8802 +f 8818/8818 8788/8788 8789/8789 +f 8803/8803 8819/8819 8789/8789 +f 8776/8776 8820/8820 8803/8803 +f 8815/8815 8786/8786 8804/8804 +f 8790/8790 8821/8821 8804/8804 +f 8822/8822 8790/8790 8802/8802 +f 8765/8765 8806/8806 8805/8805 +f 8791/8791 8805/8805 8823/8823 +f 8806/8806 8787/8787 8816/8816 +f 8777/8777 8808/8808 8807/8807 +f 8824/8824 8783/8783 8807/8807 +f 8791/8791 8823/8823 8808/8808 +f 8780/8780 8792/8792 8825/8825 +f 8809/8809 8826/8826 8776/8776 +f 8810/8810 8780/8780 8827/8827 +f 8810/8810 8828/8828 8793/8793 +f 8793/8793 8829/8829 8794/8794 +f 8794/8794 8829/8829 8809/8809 +f 8830/8830 8811/8811 8781/8781 +f 8824/8824 8812/8812 8796/8796 +f 8781/8781 8812/8812 8830/8830 +f 8813/8813 8797/8797 8831/8831 +f 8811/8811 8831/8831 8797/8797 +f 8783/8783 8824/8824 8796/8796 +f 8798/8798 8832/8832 8792/8792 +f 8798/8798 8814/8814 8832/8832 +f 8799/8799 8833/8833 8814/8814 +f 8799/8799 8813/8813 8834/8834 +f 8801/8801 8800/8800 8835/8835 +f 8815/8815 8836/8836 8800/8800 +f 8801/8801 8835/8835 8816/8816 +f 8817/8817 8837/8837 8802/8802 +f 8788/8788 8818/8818 8817/8817 +f 8818/8818 8789/8789 8838/8838 +f 8819/8819 8803/8803 8839/8839 +f 8838/8838 8789/8789 8819/8819 +f 8776/8776 8826/8826 8820/8820 +f 8840/8840 8803/8803 8820/8820 +f 8815/8815 8804/8804 8841/8841 +f 8790/8790 8822/8822 8821/8821 +f 8804/8804 8821/8821 8841/8841 +f 8822/8822 8802/8802 8837/8837 +f 8806/8806 8842/8842 8805/8805 +f 8823/8823 8805/8805 8843/8843 +f 8806/8806 8816/8816 8844/8844 +f 8807/8807 8808/8808 8845/8845 +f 8846/8846 8824/8824 8807/8807 +f 8808/8808 8823/8823 8845/8845 +f 8780/8780 8825/8825 8827/8827 +f 8832/8832 8825/8825 8792/8792 +f 8829/8829 8826/8826 8809/8809 +f 8847/8847 8810/8810 8827/8827 +f 8828/8828 8810/8810 8848/8848 +f 8793/8793 8828/8828 8849/8849 +f 8793/8793 8849/8849 8829/8829 +f 8830/8830 8850/8850 8811/8811 +f 8824/8824 8851/8851 8812/8812 +f 8852/8852 8830/8830 8812/8812 +f 8834/8834 8813/8813 8831/8831 +f 8831/8831 8811/8811 8853/8853 +f 8814/8814 8854/8854 8832/8832 +f 8833/8833 8799/8799 8855/8855 +f 8814/8814 8833/8833 8854/8854 +f 8856/8856 8799/8799 8834/8834 +f 8836/8836 8835/8835 8800/8800 +f 8815/8815 8857/8857 8836/8836 +f 8844/8844 8816/8816 8835/8835 +f 8837/8837 8817/8817 8858/8858 +f 8817/8817 8818/8818 8859/8859 +f 8838/8838 8860/8860 8818/8818 +f 8803/8803 8840/8840 8839/8839 +f 8861/8861 8819/8819 8839/8839 +f 8819/8819 8862/8862 8838/8838 +f 8820/8820 8826/8826 8840/8840 +f 8863/8863 8815/8815 8841/8841 +f 8864/8864 8821/8821 8822/8822 +f 8821/8821 8864/8864 8841/8841 +f 8858/8858 8822/8822 8837/8837 +f 8844/8844 8842/8842 8806/8806 +f 8805/8805 8842/8842 8843/8843 +f 8865/8865 8823/8823 8843/8843 +f 8866/8866 8807/8807 8845/8845 +f 8846/8846 8851/8851 8824/8824 +f 8866/8866 8846/8846 8807/8807 +f 8867/8867 8845/8845 8823/8823 +f 8868/8868 8827/8827 8825/8825 +f 8869/8869 8825/8825 8832/8832 +f 8870/8870 8826/8826 8829/8829 +f 8847/8847 8827/8827 8868/8868 +f 8847/8847 8848/8848 8810/8810 +f 8828/8828 8848/8848 8849/8849 +f 8849/8849 8871/8871 8829/8829 +f 8872/8872 8850/8850 8830/8830 +f 8850/8850 8853/8853 8811/8811 +f 8873/8873 8812/8812 8851/8851 +f 8852/8852 8874/8874 8830/8830 +f 8875/8875 8852/8852 8812/8812 +f 8876/8876 8834/8834 8831/8831 +f 8853/8853 8876/8876 8831/8831 +f 8877/8877 8832/8832 8854/8854 +f 8855/8855 8799/8799 8856/8856 +f 8855/8855 8878/8878 8833/8833 +f 8833/8833 8879/8879 8854/8854 +f 8834/8834 8880/8880 8856/8856 +f 8881/8881 8835/8835 8836/8836 +f 8857/8857 8881/8881 8836/8836 +f 8882/8882 8857/8857 8815/8815 +f 8835/8835 8883/8883 8844/8844 +f 8858/8858 8817/8817 8859/8859 +f 8859/8859 8818/8818 8860/8860 +f 8860/8860 8838/8838 8862/8862 +f 8840/8840 8884/8884 8839/8839 +f 8861/8861 8839/8839 8885/8885 +f 8862/8862 8819/8819 8861/8861 +f 8840/8840 8826/8826 8870/8870 +f 8815/8815 8863/8863 8886/8886 +f 8863/8863 8841/8841 8887/8887 +f 8864/8864 8822/8822 8888/8888 +f 8864/8864 8889/8889 8841/8841 +f 8890/8890 8822/8822 8858/8858 +f 8842/8842 8844/8844 8891/8891 +f 8891/8891 8843/8843 8842/8842 +f 8865/8865 8867/8867 8823/8823 +f 8865/8865 8843/8843 8892/8892 +f 8867/8867 8866/8866 8845/8845 +f 8851/8851 8846/8846 8893/8893 +f 8894/8894 8846/8846 8866/8866 +f 8825/8825 8869/8869 8868/8868 +f 8877/8877 8869/8869 8832/8832 +f 8829/8829 8895/8895 8870/8870 +f 8847/8847 8868/8868 8896/8896 +f 8848/8848 8847/8847 8897/8897 +f 8849/8849 8848/8848 8871/8871 +f 8871/8871 8895/8895 8829/8829 +f 8850/8850 8872/8872 8853/8853 +f 8830/8830 8874/8874 8872/8872 +f 8875/8875 8812/8812 8873/8873 +f 8873/8873 8851/8851 8898/8898 +f 8874/8874 8852/8852 8899/8899 +f 8900/8900 8852/8852 8875/8875 +f 8901/8901 8834/8834 8876/8876 +f 8902/8902 8876/8876 8853/8853 +f 8854/8854 8903/8903 8877/8877 +f 8904/8904 8855/8855 8856/8856 +f 8833/8833 8878/8878 8879/8879 +f 8878/8878 8855/8855 8904/8904 +f 8879/8879 8903/8903 8854/8854 +f 8834/8834 8901/8901 8880/8880 +f 8856/8856 8880/8880 8904/8904 +f 8883/8883 8835/8835 8881/8881 +f 8905/8905 8881/8881 8857/8857 +f 8882/8882 8906/8906 8857/8857 +f 8815/8815 8886/8886 8882/8882 +f 8844/8844 8883/8883 8891/8891 +f 8858/8858 8859/8859 8907/8907 +f 8860/8860 8908/8908 8859/8859 +f 8909/8909 8860/8860 8862/8862 +f 8910/8910 8884/8884 8840/8840 +f 8885/8885 8839/8839 8884/8884 +f 8861/8861 8885/8885 8911/8911 +f 8862/8862 8861/8861 8912/8912 +f 8840/8840 8870/8870 8910/8910 +f 8913/8913 8886/8886 8863/8863 +f 8887/8887 8913/8913 8863/8863 +f 8887/8887 8841/8841 8889/8889 +f 8822/8822 8890/8890 8888/8888 +f 8864/8864 8888/8888 8914/8914 +f 8864/8864 8914/8914 8889/8889 +f 8890/8890 8858/8858 8907/8907 +f 8891/8891 8915/8915 8843/8843 +f 8916/8916 8867/8867 8865/8865 +f 8892/8892 8843/8843 8915/8915 +f 8917/8917 8865/8865 8892/8892 +f 8918/8918 8866/8866 8867/8867 +f 8893/8893 8846/8846 8894/8894 +f 8851/8851 8893/8893 8898/8898 +f 8894/8894 8866/8866 8919/8919 +f 8869/8869 8920/8920 8868/8868 +f 8869/8869 8877/8877 8921/8921 +f 8870/8870 8895/8895 8922/8922 +f 8868/8868 8923/8923 8896/8896 +f 8896/8896 8924/8924 8847/8847 +f 8847/8847 8925/8925 8897/8897 +f 8897/8897 8926/8926 8848/8848 +f 8871/8871 8848/8848 8927/8927 +f 8928/8928 8895/8895 8871/8871 +f 8872/8872 8929/8929 8853/8853 +f 8874/8874 8930/8930 8872/8872 +f 8900/8900 8875/8875 8873/8873 +f 8931/8931 8873/8873 8898/8898 +f 8899/8899 8932/8932 8874/8874 +f 8900/8900 8899/8899 8852/8852 +f 8901/8901 8876/8876 8933/8933 +f 8933/8933 8876/8876 8902/8902 +f 8853/8853 8929/8929 8902/8902 +f 8903/8903 8934/8934 8877/8877 +f 8879/8879 8878/8878 8903/8903 +f 8878/8878 8904/8904 8935/8935 +f 8880/8880 8901/8901 8936/8936 +f 8904/8904 8880/8880 8935/8935 +f 8905/8905 8883/8883 8881/8881 +f 8857/8857 8906/8906 8905/8905 +f 8882/8882 8937/8937 8906/8906 +f 8886/8886 8938/8938 8882/8882 +f 8891/8891 8883/8883 8939/8939 +f 8859/8859 8940/8940 8907/8907 +f 8941/8941 8908/8908 8860/8860 +f 8940/8940 8859/8859 8908/8908 +f 8942/8942 8909/8909 8862/8862 +f 8860/8860 8909/8909 8943/8943 +f 8944/8944 8884/8884 8910/8910 +f 8945/8945 8885/8885 8884/8884 +f 8912/8912 8861/8861 8911/8911 +f 8885/8885 8946/8946 8911/8911 +f 8912/8912 8942/8942 8862/8862 +f 8870/8870 8922/8922 8910/8910 +f 8913/8913 8947/8947 8886/8886 +f 8948/8948 8913/8913 8887/8887 +f 8949/8949 8887/8887 8889/8889 +f 8907/8907 8888/8888 8890/8890 +f 8914/8914 8888/8888 8950/8950 +f 8914/8914 8949/8949 8889/8889 +f 8951/8951 8915/8915 8891/8891 +f 8916/8916 8918/8918 8867/8867 +f 8916/8916 8865/8865 8917/8917 +f 8952/8952 8892/8892 8915/8915 +f 8953/8953 8917/8917 8892/8892 +f 8918/8918 8919/8919 8866/8866 +f 8954/8954 8893/8893 8894/8894 +f 8893/8893 8954/8954 8898/8898 +f 8919/8919 8918/8918 8894/8894 +f 8920/8920 8869/8869 8955/8955 +f 8920/8920 8923/8923 8868/8868 +f 8869/8869 8921/8921 8955/8955 +f 8956/8956 8921/8921 8877/8877 +f 8928/8928 8922/8922 8895/8895 +f 8923/8923 8957/8957 8896/8896 +f 8896/8896 8957/8957 8924/8924 +f 8847/8847 8924/8924 8925/8925 +f 8897/8897 8925/8925 8958/8958 +f 8926/8926 8927/8927 8848/8848 +f 8926/8926 8897/8897 8958/8958 +f 8927/8927 8959/8959 8871/8871 +f 8960/8960 8928/8928 8871/8871 +f 8961/8961 8929/8929 8872/8872 +f 8962/8962 8930/8930 8874/8874 +f 8930/8930 8961/8961 8872/8872 +f 8963/8963 8900/8900 8873/8873 +f 8873/8873 8931/8931 8964/8964 +f 8898/8898 8965/8965 8931/8931 +f 8932/8932 8899/8899 8966/8966 +f 8874/8874 8932/8932 8967/8967 +f 8899/8899 8900/8900 8968/8968 +f 8969/8969 8901/8901 8933/8933 +f 8902/8902 8970/8970 8933/8933 +f 8902/8902 8929/8929 8971/8971 +f 8934/8934 8903/8903 8972/8972 +f 8877/8877 8934/8934 8973/8973 +f 8903/8903 8878/8878 8935/8935 +f 8936/8936 8901/8901 8974/8974 +f 8880/8880 8936/8936 8975/8975 +f 8880/8880 8975/8975 8935/8935 +f 8976/8976 8883/8883 8905/8905 +f 8906/8906 8976/8976 8905/8905 +f 8906/8906 8937/8937 8977/8977 +f 8937/8937 8882/8882 8938/8938 +f 8937/8937 8938/8938 8886/8886 +f 8939/8939 8883/8883 8976/8976 +f 8891/8891 8939/8939 8978/8978 +f 8979/8979 8907/8907 8940/8940 +f 8980/8980 8908/8908 8941/8941 +f 8860/8860 8943/8943 8941/8941 +f 8908/8908 8981/8981 8940/8940 +f 8943/8943 8909/8909 8942/8942 +f 8884/8884 8944/8944 8982/8982 +f 8910/8910 8983/8983 8944/8944 +f 8945/8945 8946/8946 8885/8885 +f 8884/8884 8982/8982 8945/8945 +f 8984/8984 8912/8912 8911/8911 +f 8946/8946 8984/8984 8911/8911 +f 8942/8942 8912/8912 8985/8985 +f 8922/8922 8986/8986 8910/8910 +f 8987/8987 8947/8947 8913/8913 +f 8988/8988 8886/8886 8947/8947 +f 8913/8913 8948/8948 8987/8987 +f 8989/8989 8948/8948 8887/8887 +f 8990/8990 8887/8887 8949/8949 +f 8907/8907 8979/8979 8888/8888 +f 8979/8979 8950/8950 8888/8888 +f 8991/8991 8914/8914 8950/8950 +f 8949/8949 8914/8914 8991/8991 +f 8951/8951 8891/8891 8992/8992 +f 8951/8951 8993/8993 8915/8915 +f 8916/8916 8954/8954 8918/8918 +f 8917/8917 8954/8954 8916/8916 +f 8953/8953 8892/8892 8952/8952 +f 8994/8994 8952/8952 8915/8915 +f 8917/8917 8953/8953 8995/8995 +f 8918/8918 8954/8954 8894/8894 +f 8917/8917 8898/8898 8954/8954 +f 8920/8920 8955/8955 8996/8996 +f 8997/8997 8923/8923 8920/8920 +f 8955/8955 8921/8921 8998/8998 +f 8998/8998 8921/8921 8956/8956 +f 8877/8877 8973/8973 8956/8956 +f 8922/8922 8928/8928 8960/8960 +f 8957/8957 8923/8923 8999/8999 +f 8957/8957 9000/9000 8924/8924 +f 8924/8924 9000/9000 8925/8925 +f 8958/8958 8925/8925 9001/9001 +f 8926/8926 9002/9002 8927/8927 +f 8926/8926 8958/8958 9003/9003 +f 8871/8871 8959/8959 8960/8960 +f 8927/8927 9004/9004 8959/8959 +f 8971/8971 8929/8929 8961/8961 +f 8967/8967 8962/8962 8874/8874 +f 8930/8930 8962/8962 9005/9005 +f 8961/8961 8930/8930 9006/9006 +f 8963/8963 8968/8968 8900/8900 +f 8963/8963 8873/8873 9007/9007 +f 8931/8931 9008/9008 8964/8964 +f 9007/9007 8873/8873 8964/8964 +f 8898/8898 9009/9009 8965/8965 +f 8931/8931 8965/8965 9008/9008 +f 8899/8899 8968/8968 8966/8966 +f 8966/8966 9010/9010 8932/8932 +f 8932/8932 9011/9011 8967/8967 +f 8970/8970 8969/8969 8933/8933 +f 8901/8901 8969/8969 8974/8974 +f 8971/8971 8970/8970 8902/8902 +f 8972/8972 8903/8903 8935/8935 +f 8972/8972 9012/9012 8934/8934 +f 9012/9012 8973/8973 8934/8934 +f 8936/8936 8974/8974 9013/9013 +f 8975/8975 8936/8936 9014/9014 +f 8975/8975 8972/8972 8935/8935 +f 8976/8976 8906/8906 8977/8977 +f 9015/9015 8977/8977 8937/8937 +f 8886/8886 8988/8988 8937/8937 +f 8976/8976 8977/8977 8939/8939 +f 8891/8891 8978/8978 8992/8992 +f 9016/9016 8978/8978 8939/8939 +f 9017/9017 8979/8979 8940/8940 +f 8980/8980 8981/8981 8908/8908 +f 8980/8980 8941/8941 9018/9018 +f 8943/8943 8985/8985 8941/8941 +f 9019/9019 8940/8940 8981/8981 +f 8943/8943 8942/8942 8985/8985 +f 8944/8944 9020/9020 8982/8982 +f 8983/8983 9020/9020 8944/8944 +f 8910/8910 8986/8986 8983/8983 +f 9021/9021 8946/8946 8945/8945 +f 8982/8982 9022/9022 8945/8945 +f 8912/8912 8984/8984 9023/9023 +f 8946/8946 9024/9024 8984/8984 +f 8912/8912 9023/9023 8985/8985 +f 8922/8922 9025/9025 8986/8986 +f 8947/8947 8987/8987 9026/9026 +f 9027/9027 8988/8988 8947/8947 +f 8987/8987 8948/8948 9028/9028 +f 8989/8989 9029/9029 8948/8948 +f 8990/8990 8989/8989 8887/8887 +f 8949/8949 9030/9030 8990/8990 +f 8979/8979 9031/9031 8950/8950 +f 8950/8950 9031/9031 8991/8991 +f 8949/8949 8991/8991 9030/9030 +f 8992/8992 9032/9032 8951/8951 +f 8993/8993 8994/8994 8915/8915 +f 9033/9033 8993/8993 8951/8951 +f 8952/8952 9034/9034 8953/8953 +f 8952/8952 8994/8994 9035/9035 +f 8953/8953 9034/9034 8995/8995 +f 8917/8917 8995/8995 8898/8898 +f 8955/8955 9036/9036 8996/8996 +f 8996/8996 8997/8997 8920/8920 +f 8923/8923 8997/8997 8999/8999 +f 8998/8998 9037/9037 8955/8955 +f 9038/9038 8998/8998 8956/8956 +f 8956/8956 8973/8973 9039/9039 +f 8960/8960 9040/9040 8922/8922 +f 9000/9000 8957/8957 8999/8999 +f 9001/9001 8925/8925 9000/9000 +f 9041/9041 8958/8958 9001/9001 +f 9002/9002 8926/8926 9042/9042 +f 8927/8927 9002/9002 9004/9004 +f 8958/8958 9041/9041 9003/9003 +f 9042/9042 8926/8926 9003/9003 +f 8960/8960 8959/8959 9043/9043 +f 9044/9044 8959/8959 9004/9004 +f 9006/9006 8971/8971 8961/8961 +f 9005/9005 8962/8962 8967/8967 +f 9045/9045 8930/8930 9005/9005 +f 8930/8930 9045/9045 9006/9006 +f 8966/8966 8968/8968 8963/8963 +f 9046/9046 8963/8963 9007/9007 +f 9008/9008 9047/9047 8964/8964 +f 9048/9048 9007/9007 8964/8964 +f 9009/9009 8898/8898 8995/8995 +f 9009/9009 9049/9049 8965/8965 +f 9008/9008 8965/8965 9049/9049 +f 8966/8966 9050/9050 9010/9010 +f 8932/8932 9010/9010 9011/9011 +f 9051/9051 8967/8967 9011/9011 +f 8969/8969 8970/8970 9052/9052 +f 8969/8969 9052/9052 8974/8974 +f 8970/8970 8971/8971 9053/9053 +f 8972/8972 9054/9054 9012/9012 +f 9012/9012 9055/9055 8973/8973 +f 8974/8974 9056/9056 9013/9013 +f 8936/8936 9013/9013 9057/9057 +f 8975/8975 9014/9014 8972/8972 +f 8936/8936 9057/9057 9014/9014 +f 8977/8977 9015/9015 9016/9016 +f 8988/8988 9015/9015 8937/8937 +f 9016/9016 8939/8939 8977/8977 +f 8978/8978 9058/9058 8992/8992 +f 9016/9016 9059/9059 8978/8978 +f 9017/9017 9031/9031 8979/8979 +f 9060/9060 9017/9017 8940/8940 +f 8981/8981 8980/8980 9018/9018 +f 9018/9018 8941/8941 9061/9061 +f 8941/8941 8985/8985 9061/9061 +f 8981/8981 9018/9018 9019/9019 +f 8940/8940 9019/9019 9062/9062 +f 9020/9020 9063/9063 8982/8982 +f 8983/8983 9063/9063 9020/9020 +f 9064/9064 8983/8983 8986/8986 +f 8946/8946 9021/9021 9065/9065 +f 9021/9021 8945/8945 9022/9022 +f 9063/9063 9022/9022 8982/8982 +f 9023/9023 8984/8984 9066/9066 +f 8984/8984 9024/9024 9066/9066 +f 9024/9024 8946/8946 9065/9065 +f 8985/8985 9023/9023 9067/9067 +f 9025/9025 8922/8922 9040/9040 +f 8986/8986 9025/9025 9068/9068 +f 8987/8987 9069/9069 9026/9026 +f 9026/9026 9027/9027 8947/8947 +f 9015/9015 8988/8988 9027/9027 +f 8948/8948 9070/9070 9028/9028 +f 9069/9069 8987/8987 9028/9028 +f 9029/9029 8989/8989 9071/9071 +f 9072/9072 8948/8948 9029/9029 +f 9073/9073 8989/8989 8990/8990 +f 8990/8990 9030/9030 9074/9074 +f 8991/8991 9031/9031 9075/9075 +f 8991/8991 9076/9076 9030/9030 +f 8992/8992 9077/9077 9032/9032 +f 8951/8951 9032/9032 9033/9033 +f 9035/9035 8994/8994 8993/8993 +f 8993/8993 9033/9033 9035/9035 +f 9078/9078 9034/9034 8952/8952 +f 9078/9078 8952/8952 9035/9035 +f 9079/9079 8995/8995 9034/9034 +f 9037/9037 9036/9036 8955/8955 +f 9036/9036 9080/9080 8996/8996 +f 9081/9081 8997/8997 8996/8996 +f 9082/9082 8999/8999 8997/8997 +f 9083/9083 9037/9037 8998/8998 +f 9083/9083 8998/8998 9038/9038 +f 8956/8956 9039/9039 9038/9038 +f 9039/9039 8973/8973 9055/9055 +f 9040/9040 8960/8960 9084/9084 +f 8999/8999 9085/9085 9000/9000 +f 9086/9086 9001/9001 9000/9000 +f 9001/9001 9087/9087 9041/9041 +f 9088/9088 9002/9002 9042/9042 +f 9004/9004 9002/9002 9089/9089 +f 9041/9041 9090/9090 9003/9003 +f 9091/9091 9042/9042 9003/9003 +f 9084/9084 8960/8960 9043/9043 +f 9043/9043 8959/8959 9044/9044 +f 9004/9004 9089/9089 9044/9044 +f 8971/8971 9006/9006 9092/9092 +f 9051/9051 9005/9005 8967/8967 +f 9093/9093 9045/9045 9005/9005 +f 9045/9045 9092/9092 9006/9006 +f 8966/8966 8963/8963 9094/9094 +f 9046/9046 9095/9095 8963/8963 +f 9007/9007 9048/9048 9046/9046 +f 9096/9096 9047/9047 9008/9008 +f 8964/8964 9047/9047 9048/9048 +f 8995/8995 9079/9079 9009/9009 +f 9009/9009 9079/9079 9049/9049 +f 9097/9097 9008/9008 9049/9049 +f 8966/8966 9094/9094 9050/9050 +f 9010/9010 9050/9050 9098/9098 +f 9010/9010 9099/9099 9011/9011 +f 9011/9011 9100/9100 9051/9051 +f 9053/9053 9052/9052 8970/8970 +f 9052/9052 9056/9056 8974/8974 +f 9092/9092 9053/9053 8971/8971 +f 9012/9012 9054/9054 9055/9055 +f 9054/9054 8972/8972 9014/9014 +f 9013/9013 9056/9056 9101/9101 +f 9057/9057 9013/9013 9101/9101 +f 9057/9057 9102/9102 9014/9014 +f 9016/9016 9015/9015 9059/9059 +f 9058/9058 8978/8978 9059/9059 +f 9077/9077 8992/8992 9058/9058 +f 9103/9103 9031/9031 9017/9017 +f 9103/9103 9017/9017 9060/9060 +f 9060/9060 8940/8940 9104/9104 +f 9018/9018 9061/9061 9105/9105 +f 8985/8985 9106/9106 9061/9061 +f 9018/9018 9105/9105 9019/9019 +f 8940/8940 9062/9062 9104/9104 +f 9107/9107 9062/9062 9019/9019 +f 9063/9063 8983/8983 9108/9108 +f 9109/9109 9064/9064 8986/8986 +f 8983/8983 9064/9064 9108/9108 +f 9021/9021 9110/9110 9065/9065 +f 9021/9021 9022/9022 9111/9111 +f 9063/9063 9112/9112 9022/9022 +f 9023/9023 9066/9066 9113/9113 +f 9024/9024 9114/9114 9066/9066 +f 9065/9065 9114/9114 9024/9024 +f 9067/9067 9115/9115 8985/8985 +f 9023/9023 9116/9116 9067/9067 +f 9040/9040 9117/9117 9025/9025 +f 9068/9068 9025/9025 9118/9118 +f 9068/9068 9109/9109 8986/8986 +f 9026/9026 9069/9069 9119/9119 +f 9027/9027 9026/9026 9120/9120 +f 9121/9121 9015/9015 9027/9027 +f 9122/9122 9070/9070 8948/8948 +f 9070/9070 9123/9123 9028/9028 +f 9124/9124 9069/9069 9028/9028 +f 8989/8989 9125/9125 9071/9071 +f 9126/9126 9029/9029 9071/9071 +f 8948/8948 9072/9072 9122/9122 +f 9029/9029 9127/9127 9072/9072 +f 9073/9073 8990/8990 9074/9074 +f 8989/8989 9073/9073 9125/9125 +f 9076/9076 9074/9074 9030/9030 +f 9075/9075 9076/9076 8991/8991 +f 9075/9075 9031/9031 9103/9103 +f 9032/9032 9077/9077 9128/9128 +f 9129/9129 9033/9033 9032/9032 +f 9130/9130 9035/9035 9033/9033 +f 9034/9034 9078/9078 9131/9131 +f 9035/9035 9132/9132 9078/9078 +f 9133/9133 9079/9079 9034/9034 +f 9037/9037 9134/9134 9036/9036 +f 9080/9080 9036/9036 9134/9134 +f 8996/8996 9080/9080 9081/9081 +f 9081/9081 9082/9082 8997/8997 +f 8999/8999 9082/9082 9135/9135 +f 9037/9037 9083/9083 9136/9136 +f 9038/9038 9137/9137 9083/9083 +f 9138/9138 9038/9038 9039/9039 +f 9039/9039 9055/9055 9138/9138 +f 9040/9040 9084/9084 9139/9139 +f 8999/8999 9135/9135 9085/9085 +f 9085/9085 9086/9086 9000/9000 +f 9087/9087 9001/9001 9086/9086 +f 9041/9041 9087/9087 9140/9140 +f 9141/9141 9088/9088 9042/9042 +f 9089/9089 9002/9002 9088/9088 +f 9140/9140 9090/9090 9041/9041 +f 9003/9003 9090/9090 9091/9091 +f 9142/9142 9042/9042 9091/9091 +f 9043/9043 9143/9143 9084/9084 +f 9044/9044 9144/9144 9043/9043 +f 9089/9089 9144/9144 9044/9044 +f 9051/9051 9145/9145 9005/9005 +f 9005/9005 9145/9145 9093/9093 +f 9146/9146 9045/9045 9093/9093 +f 9146/9146 9092/9092 9045/9045 +f 9095/9095 9094/9094 8963/8963 +f 9095/9095 9046/9046 9147/9147 +f 9048/9048 9148/9148 9046/9046 +f 9096/9096 9149/9149 9047/9047 +f 9008/9008 9097/9097 9096/9096 +f 9148/9148 9048/9048 9047/9047 +f 9049/9049 9079/9079 9150/9150 +f 9049/9049 9151/9151 9097/9097 +f 9050/9050 9094/9094 9152/9152 +f 9098/9098 9050/9050 9153/9153 +f 9098/9098 9099/9099 9010/9010 +f 9011/9011 9099/9099 9100/9100 +f 9154/9154 9051/9051 9100/9100 +f 9155/9155 9052/9052 9053/9053 +f 9052/9052 9156/9156 9056/9056 +f 9092/9092 9157/9157 9053/9053 +f 9055/9055 9054/9054 9158/9158 +f 9014/9014 9102/9102 9054/9054 +f 9156/9156 9101/9101 9056/9056 +f 9057/9057 9101/9101 9102/9102 +f 9121/9121 9059/9059 9015/9015 +f 9058/9058 9059/9059 9159/9159 +f 9058/9058 9160/9160 9077/9077 +f 9060/9060 9161/9161 9103/9103 +f 9060/9060 9104/9104 9162/9162 +f 9106/9106 9105/9105 9061/9061 +f 8985/8985 9163/9163 9106/9106 +f 9019/9019 9105/9105 9164/9164 +f 9165/9165 9104/9104 9062/9062 +f 9107/9107 9165/9165 9062/9062 +f 9166/9166 9107/9107 9019/9019 +f 9108/9108 9112/9112 9063/9063 +f 9167/9167 9064/9064 9109/9109 +f 9108/9108 9064/9064 9168/9168 +f 9021/9021 9111/9111 9110/9110 +f 9169/9169 9065/9065 9110/9110 +f 9111/9111 9022/9022 9169/9169 +f 9022/9022 9112/9112 9169/9169 +f 9170/9170 9023/9023 9113/9113 +f 9113/9113 9066/9066 9114/9114 +f 9171/9171 9114/9114 9065/9065 +f 9172/9172 9115/9115 9067/9067 +f 9115/9115 9163/9163 8985/8985 +f 9173/9173 9116/9116 9023/9023 +f 9174/9174 9067/9067 9116/9116 +f 9117/9117 9040/9040 9139/9139 +f 9175/9175 9025/9025 9117/9117 +f 9025/9025 9175/9175 9118/9118 +f 9176/9176 9068/9068 9118/9118 +f 9068/9068 9176/9176 9109/9109 +f 9069/9069 9177/9177 9119/9119 +f 9120/9120 9026/9026 9119/9119 +f 9121/9121 9027/9027 9120/9120 +f 9178/9178 9070/9070 9122/9122 +f 9070/9070 9178/9178 9123/9123 +f 9123/9123 9124/9124 9028/9028 +f 9069/9069 9124/9124 9177/9177 +f 9071/9071 9125/9125 9179/9179 +f 9180/9180 9126/9126 9071/9071 +f 9126/9126 9127/9127 9029/9029 +f 9072/9072 9181/9181 9122/9122 +f 9182/9182 9072/9072 9127/9127 +f 9074/9074 9161/9161 9073/9073 +f 9125/9125 9073/9073 9161/9161 +f 9074/9074 9076/9076 9103/9103 +f 9076/9076 9075/9075 9103/9103 +f 9129/9129 9032/9032 9128/9128 +f 9183/9183 9128/9128 9077/9077 +f 9033/9033 9129/9129 9130/9130 +f 9035/9035 9130/9130 9132/9132 +f 9184/9184 9034/9034 9131/9131 +f 9131/9131 9078/9078 9132/9132 +f 9133/9133 9185/9185 9079/9079 +f 9133/9133 9034/9034 9184/9184 +f 9134/9134 9037/9037 9136/9136 +f 9080/9080 9134/9134 9186/9186 +f 9081/9081 9080/9080 9186/9186 +f 9082/9082 9081/9081 9187/9187 +f 9082/9082 9188/9188 9135/9135 +f 9189/9189 9136/9136 9083/9083 +f 9138/9138 9137/9137 9038/9038 +f 9190/9190 9083/9083 9137/9137 +f 9138/9138 9055/9055 9191/9191 +f 9084/9084 9192/9192 9139/9139 +f 9193/9193 9085/9085 9135/9135 +f 9085/9085 9194/9194 9086/9086 +f 9087/9087 9086/9086 9195/9195 +f 9196/9196 9140/9140 9087/9087 +f 9088/9088 9141/9141 9197/9197 +f 9042/9042 9142/9142 9141/9141 +f 9198/9198 9089/9089 9088/9088 +f 9090/9090 9140/9140 9199/9199 +f 9200/9200 9091/9091 9090/9090 +f 9091/9091 9200/9200 9142/9142 +f 9043/9043 9144/9144 9143/9143 +f 9143/9143 9192/9192 9084/9084 +f 9198/9198 9144/9144 9089/9089 +f 9145/9145 9051/9051 9154/9154 +f 9145/9145 9201/9201 9093/9093 +f 9202/9202 9146/9146 9093/9093 +f 9157/9157 9092/9092 9146/9146 +f 9203/9203 9094/9094 9095/9095 +f 9204/9204 9147/9147 9046/9046 +f 9205/9205 9095/9095 9147/9147 +f 9148/9148 9204/9204 9046/9046 +f 9148/9148 9047/9047 9149/9149 +f 9149/9149 9096/9096 9206/9206 +f 9097/9097 9206/9206 9096/9096 +f 9150/9150 9079/9079 9185/9185 +f 9049/9049 9150/9150 9151/9151 +f 9207/9207 9097/9097 9151/9151 +f 9094/9094 9208/9208 9152/9152 +f 9153/9153 9050/9050 9152/9152 +f 9153/9153 9099/9099 9098/9098 +f 9209/9209 9100/9100 9099/9099 +f 9100/9100 9210/9210 9154/9154 +f 9052/9052 9155/9155 9211/9211 +f 9212/9212 9155/9155 9053/9053 +f 9211/9211 9156/9156 9052/9052 +f 9157/9157 9212/9212 9053/9053 +f 9054/9054 9213/9213 9158/9158 +f 9214/9214 9055/9055 9158/9158 +f 9054/9054 9102/9102 9213/9213 +f 9101/9101 9156/9156 9215/9215 +f 9102/9102 9101/9101 9215/9215 +f 9059/9059 9121/9121 9159/9159 +f 9160/9160 9058/9058 9159/9159 +f 9160/9160 9216/9216 9077/9077 +f 9161/9161 9060/9060 9162/9162 +f 9161/9161 9074/9074 9103/9103 +f 9162/9162 9104/9104 9217/9217 +f 9106/9106 9218/9218 9105/9105 +f 9218/9218 9106/9106 9163/9163 +f 9105/9105 9219/9219 9164/9164 +f 9164/9164 9166/9166 9019/9019 +f 9165/9165 9220/9220 9104/9104 +f 9221/9221 9165/9165 9107/9107 +f 9107/9107 9166/9166 9222/9222 +f 9223/9223 9112/9112 9108/9108 +f 9109/9109 9224/9224 9167/9167 +f 9064/9064 9167/9167 9225/9225 +f 9168/9168 9064/9064 9226/9226 +f 9168/9168 9223/9223 9108/9108 +f 9110/9110 9111/9111 9169/9169 +f 9169/9169 9227/9227 9065/9065 +f 9112/9112 9228/9228 9169/9169 +f 9170/9170 9113/9113 9229/9229 +f 9173/9173 9023/9023 9170/9170 +f 9171/9171 9113/9113 9114/9114 +f 9065/9065 9227/9227 9171/9171 +f 9115/9115 9172/9172 9230/9230 +f 9067/9067 9231/9231 9172/9172 +f 9115/9115 9218/9218 9163/9163 +f 9116/9116 9173/9173 9232/9232 +f 9174/9174 9233/9233 9067/9067 +f 9116/9116 9232/9232 9174/9174 +f 9139/9139 9234/9234 9117/9117 +f 9175/9175 9117/9117 9235/9235 +f 9118/9118 9175/9175 9236/9236 +f 9236/9236 9176/9176 9118/9118 +f 9109/9109 9176/9176 9224/9224 +f 9177/9177 9237/9237 9119/9119 +f 9237/9237 9120/9120 9119/9119 +f 9121/9121 9120/9120 9238/9238 +f 9122/9122 9239/9239 9178/9178 +f 9178/9178 9240/9240 9123/9123 +f 9123/9123 9241/9241 9124/9124 +f 9124/9124 9242/9242 9177/9177 +f 9125/9125 9162/9162 9179/9179 +f 9071/9071 9179/9179 9243/9243 +f 9243/9243 9180/9180 9071/9071 +f 9244/9244 9126/9126 9180/9180 +f 9127/9127 9126/9126 9245/9245 +f 9181/9181 9072/9072 9182/9182 +f 9181/9181 9239/9239 9122/9122 +f 9127/9127 9245/9245 9182/9182 +f 9125/9125 9161/9161 9162/9162 +f 9128/9128 9246/9246 9129/9129 +f 9246/9246 9128/9128 9183/9183 +f 9183/9183 9077/9077 9247/9247 +f 9130/9130 9129/9129 9248/9248 +f 9248/9248 9132/9132 9130/9130 +f 9131/9131 9249/9249 9184/9184 +f 9131/9131 9132/9132 9183/9183 +f 9185/9185 9133/9133 9250/9250 +f 9184/9184 9250/9250 9133/9133 +f 9251/9251 9134/9134 9136/9136 +f 9252/9252 9186/9186 9134/9134 +f 9186/9186 9253/9253 9081/9081 +f 9187/9187 9081/9081 9253/9253 +f 9188/9188 9082/9082 9187/9187 +f 9188/9188 9254/9254 9135/9135 +f 9083/9083 9190/9190 9189/9189 +f 9255/9255 9136/9136 9189/9189 +f 9137/9137 9138/9138 9256/9256 +f 9190/9190 9137/9137 9256/9256 +f 9256/9256 9138/9138 9191/9191 +f 9214/9214 9191/9191 9055/9055 +f 9257/9257 9139/9139 9192/9192 +f 9193/9193 9258/9258 9085/9085 +f 9193/9193 9135/9135 9254/9254 +f 9194/9194 9085/9085 9258/9258 +f 9086/9086 9194/9194 9195/9195 +f 9196/9196 9087/9087 9195/9195 +f 9140/9140 9196/9196 9259/9259 +f 9141/9141 9260/9260 9197/9197 +f 9088/9088 9197/9197 9198/9198 +f 9142/9142 9261/9261 9141/9141 +f 9140/9140 9259/9259 9199/9199 +f 9090/9090 9199/9199 9262/9262 +f 9262/9262 9200/9200 9090/9090 +f 9142/9142 9200/9200 9261/9261 +f 9144/9144 9192/9192 9143/9143 +f 9198/9198 9263/9263 9144/9144 +f 9201/9201 9145/9145 9154/9154 +f 9201/9201 9264/9264 9093/9093 +f 9265/9265 9146/9146 9202/9202 +f 9093/9093 9266/9266 9202/9202 +f 9157/9157 9146/9146 9265/9265 +f 9095/9095 9205/9205 9203/9203 +f 9094/9094 9203/9203 9267/9267 +f 9147/9147 9204/9204 9268/9268 +f 9205/9205 9147/9147 9268/9268 +f 9269/9269 9204/9204 9148/9148 +f 9148/9148 9149/9149 9269/9269 +f 9149/9149 9206/9206 9270/9270 +f 9271/9271 9206/9206 9097/9097 +f 9272/9272 9150/9150 9185/9185 +f 9151/9151 9150/9150 9273/9273 +f 9097/9097 9207/9207 9271/9271 +f 9274/9274 9207/9207 9151/9151 +f 9208/9208 9275/9275 9152/9152 +f 9267/9267 9208/9208 9094/9094 +f 9276/9276 9153/9153 9152/9152 +f 9153/9153 9276/9276 9099/9099 +f 9100/9100 9209/9209 9210/9210 +f 9099/9099 9277/9277 9209/9209 +f 9154/9154 9210/9210 9201/9201 +f 9155/9155 9278/9278 9211/9211 +f 9155/9155 9212/9212 9279/9279 +f 9215/9215 9156/9156 9211/9211 +f 9212/9212 9157/9157 9280/9280 +f 9213/9213 9281/9281 9158/9158 +f 9158/9158 9281/9281 9214/9214 +f 9282/9282 9213/9213 9102/9102 +f 9215/9215 9283/9283 9102/9102 +f 9159/9159 9121/9121 9284/9284 +f 9160/9160 9159/9159 9285/9285 +f 9160/9160 9286/9286 9216/9216 +f 9077/9077 9216/9216 9247/9247 +f 9217/9217 9104/9104 9287/9287 +f 9217/9217 9179/9179 9162/9162 +f 9218/9218 9219/9219 9105/9105 +f 9164/9164 9219/9219 9288/9288 +f 9289/9289 9166/9166 9164/9164 +f 9220/9220 9165/9165 9290/9290 +f 9220/9220 9287/9287 9104/9104 +f 9107/9107 9222/9222 9221/9221 +f 9291/9291 9165/9165 9221/9221 +f 9166/9166 9289/9289 9222/9222 +f 9228/9228 9112/9112 9223/9223 +f 9167/9167 9224/9224 9292/9292 +f 9225/9225 9226/9226 9064/9064 +f 9167/9167 9292/9292 9225/9225 +f 9226/9226 9293/9293 9168/9168 +f 9168/9168 9294/9294 9223/9223 +f 9169/9169 9228/9228 9227/9227 +f 9229/9229 9113/9113 9295/9295 +f 9170/9170 9229/9229 9296/9296 +f 9173/9173 9170/9170 9296/9296 +f 9113/9113 9171/9171 9295/9295 +f 9297/9297 9171/9171 9227/9227 +f 9230/9230 9172/9172 9298/9298 +f 9288/9288 9115/9115 9230/9230 +f 9233/9233 9231/9231 9067/9067 +f 9231/9231 9299/9299 9172/9172 +f 9219/9219 9218/9218 9115/9115 +f 9232/9232 9173/9173 9300/9300 +f 9174/9174 9301/9301 9233/9233 +f 9232/9232 9301/9301 9174/9174 +f 9234/9234 9139/9139 9257/9257 +f 9117/9117 9234/9234 9302/9302 +f 9303/9303 9235/9235 9117/9117 +f 9236/9236 9175/9175 9235/9235 +f 9176/9176 9236/9236 9304/9304 +f 9305/9305 9224/9224 9176/9176 +f 9306/9306 9237/9237 9177/9177 +f 9237/9237 9238/9238 9120/9120 +f 9284/9284 9121/9121 9238/9238 +f 9178/9178 9239/9239 9307/9307 +f 9240/9240 9178/9178 9307/9307 +f 9240/9240 9241/9241 9123/9123 +f 9242/9242 9124/9124 9241/9241 +f 9177/9177 9242/9242 9306/9306 +f 9243/9243 9179/9179 9217/9217 +f 9243/9243 9308/9308 9180/9180 +f 9126/9126 9244/9244 9245/9245 +f 9180/9180 9308/9308 9244/9244 +f 9309/9309 9181/9181 9182/9182 +f 9239/9239 9181/9181 9309/9309 +f 9245/9245 9310/9310 9182/9182 +f 9248/9248 9129/9129 9246/9246 +f 9132/9132 9246/9246 9183/9183 +f 9247/9247 9131/9131 9183/9183 +f 9132/9132 9248/9248 9246/9246 +f 9247/9247 9249/9249 9131/9131 +f 9250/9250 9184/9184 9249/9249 +f 9311/9311 9185/9185 9250/9250 +f 9255/9255 9251/9251 9136/9136 +f 9251/9251 9252/9252 9134/9134 +f 9186/9186 9252/9252 9253/9253 +f 9187/9187 9253/9253 9312/9312 +f 9312/9312 9188/9188 9187/9187 +f 9254/9254 9188/9188 9312/9312 +f 9189/9189 9190/9190 9313/9313 +f 9314/9314 9255/9255 9189/9189 +f 9256/9256 9315/9315 9190/9190 +f 9316/9316 9256/9256 9191/9191 +f 9191/9191 9214/9214 9316/9316 +f 9263/9263 9257/9257 9192/9192 +f 9193/9193 9317/9317 9258/9258 +f 9193/9193 9254/9254 9317/9317 +f 9318/9318 9194/9194 9258/9258 +f 9194/9194 9319/9319 9195/9195 +f 9259/9259 9196/9196 9195/9195 +f 9197/9197 9260/9260 9320/9320 +f 9260/9260 9141/9141 9261/9261 +f 9197/9197 9321/9321 9198/9198 +f 9199/9199 9259/9259 9322/9322 +f 9262/9262 9199/9199 9322/9322 +f 9200/9200 9262/9262 9323/9323 +f 9261/9261 9200/9200 9324/9324 +f 9263/9263 9192/9192 9144/9144 +f 9198/9198 9325/9325 9263/9263 +f 9326/9326 9264/9264 9201/9201 +f 9093/9093 9264/9264 9327/9327 +f 9328/9328 9265/9265 9202/9202 +f 9266/9266 9329/9329 9202/9202 +f 9093/9093 9327/9327 9266/9266 +f 9328/9328 9157/9157 9265/9265 +f 9203/9203 9205/9205 9330/9330 +f 9267/9267 9203/9203 9330/9330 +f 9331/9331 9268/9268 9204/9204 +f 9268/9268 9332/9332 9205/9205 +f 9204/9204 9269/9269 9331/9331 +f 9149/9149 9333/9333 9269/9269 +f 9206/9206 9271/9271 9270/9270 +f 9333/9333 9149/9149 9270/9270 +f 9272/9272 9273/9273 9150/9150 +f 9185/9185 9311/9311 9272/9272 +f 9273/9273 9334/9334 9151/9151 +f 9271/9271 9207/9207 9274/9274 +f 9334/9334 9274/9274 9151/9151 +f 9275/9275 9208/9208 9335/9335 +f 9275/9275 9336/9336 9152/9152 +f 9337/9337 9208/9208 9267/9267 +f 9338/9338 9276/9276 9152/9152 +f 9276/9276 9277/9277 9099/9099 +f 9210/9210 9209/9209 9339/9339 +f 9209/9209 9277/9277 9340/9340 +f 9210/9210 9341/9341 9201/9201 +f 9155/9155 9279/9279 9278/9278 +f 9278/9278 9342/9342 9211/9211 +f 9280/9280 9279/9279 9212/9212 +f 9283/9283 9215/9215 9211/9211 +f 9328/9328 9280/9280 9157/9157 +f 9213/9213 9343/9343 9281/9281 +f 9344/9344 9214/9214 9281/9281 +f 9282/9282 9345/9345 9213/9213 +f 9282/9282 9102/9102 9283/9283 +f 9159/9159 9284/9284 9346/9346 +f 9160/9160 9285/9285 9347/9347 +f 9159/9159 9348/9348 9285/9285 +f 9160/9160 9347/9347 9286/9286 +f 9286/9286 9247/9247 9216/9216 +f 9243/9243 9217/9217 9287/9287 +f 9115/9115 9288/9288 9219/9219 +f 9164/9164 9288/9288 9289/9289 +f 9290/9290 9165/9165 9349/9349 +f 9220/9220 9290/9290 9350/9350 +f 9351/9351 9287/9287 9220/9220 +f 9221/9221 9222/9222 9291/9291 +f 9349/9349 9165/9165 9291/9291 +f 9222/9222 9289/9289 9352/9352 +f 9353/9353 9228/9228 9223/9223 +f 9292/9292 9224/9224 9354/9354 +f 9225/9225 9355/9355 9226/9226 +f 9356/9356 9225/9225 9292/9292 +f 9355/9355 9293/9293 9226/9226 +f 9168/9168 9293/9293 9357/9357 +f 9168/9168 9357/9357 9294/9294 +f 9223/9223 9294/9294 9358/9358 +f 9353/9353 9227/9227 9228/9228 +f 9359/9359 9229/9229 9295/9295 +f 9229/9229 9360/9360 9296/9296 +f 9296/9296 9300/9300 9173/9173 +f 9295/9295 9171/9171 9297/9297 +f 9361/9361 9297/9297 9227/9227 +f 9298/9298 9172/9172 9299/9299 +f 9352/9352 9230/9230 9298/9298 +f 9289/9289 9288/9288 9230/9230 +f 9233/9233 9362/9362 9231/9231 +f 9231/9231 9363/9363 9299/9299 +f 9300/9300 9301/9301 9232/9232 +f 9362/9362 9233/9233 9301/9301 +f 9364/9364 9234/9234 9257/9257 +f 9364/9364 9302/9302 9234/9234 +f 9117/9117 9302/9302 9303/9303 +f 9235/9235 9303/9303 9236/9236 +f 9236/9236 9303/9303 9304/9304 +f 9176/9176 9304/9304 9305/9305 +f 9365/9365 9224/9224 9305/9305 +f 9306/9306 9346/9346 9237/9237 +f 9346/9346 9238/9238 9237/9237 +f 9284/9284 9238/9238 9346/9346 +f 9366/9366 9307/9307 9239/9239 +f 9241/9241 9240/9240 9307/9307 +f 9241/9241 9367/9367 9242/9242 +f 9368/9368 9306/9306 9242/9242 +f 9308/9308 9243/9243 9287/9287 +f 9244/9244 9369/9369 9245/9245 +f 9369/9369 9244/9244 9308/9308 +f 9370/9370 9309/9309 9182/9182 +f 9309/9309 9371/9371 9239/9239 +f 9372/9372 9310/9310 9245/9245 +f 9182/9182 9310/9310 9370/9370 +f 9373/9373 9249/9249 9247/9247 +f 9374/9374 9250/9250 9249/9249 +f 9311/9311 9250/9250 9375/9375 +f 9376/9376 9251/9251 9255/9255 +f 9251/9251 9377/9377 9252/9252 +f 9252/9252 9377/9377 9253/9253 +f 9312/9312 9253/9253 9378/9378 +f 9378/9378 9254/9254 9312/9312 +f 9315/9315 9313/9313 9190/9190 +f 9313/9313 9314/9314 9189/9189 +f 9379/9379 9255/9255 9314/9314 +f 9315/9315 9256/9256 9313/9313 +f 9316/9316 9313/9313 9256/9256 +f 9344/9344 9316/9316 9214/9214 +f 9257/9257 9263/9263 9364/9364 +f 9380/9380 9258/9258 9317/9317 +f 9254/9254 9378/9378 9317/9317 +f 9318/9318 9381/9381 9194/9194 +f 9380/9380 9318/9318 9258/9258 +f 9319/9319 9194/9194 9381/9381 +f 9319/9319 9259/9259 9195/9195 +f 9320/9320 9260/9260 9382/9382 +f 9321/9321 9197/9197 9320/9320 +f 9261/9261 9324/9324 9260/9260 +f 9325/9325 9198/9198 9321/9321 +f 9259/9259 9319/9319 9322/9322 +f 9322/9322 9383/9383 9262/9262 +f 9383/9383 9323/9323 9262/9262 +f 9324/9324 9200/9200 9323/9323 +f 9263/9263 9325/9325 9384/9384 +f 9385/9385 9264/9264 9326/9326 +f 9326/9326 9201/9201 9386/9386 +f 9385/9385 9327/9327 9264/9264 +f 9202/9202 9329/9329 9328/9328 +f 9266/9266 9387/9387 9329/9329 +f 9327/9327 9388/9388 9266/9266 +f 9330/9330 9205/9205 9332/9332 +f 9337/9337 9267/9267 9330/9330 +f 9268/9268 9331/9331 9389/9389 +f 9390/9390 9332/9332 9268/9268 +f 9269/9269 9391/9391 9331/9331 +f 9333/9333 9391/9391 9269/9269 +f 9270/9270 9271/9271 9392/9392 +f 9270/9270 9393/9393 9333/9333 +f 9273/9273 9272/9272 9394/9394 +f 9311/9311 9395/9395 9272/9272 +f 9334/9334 9273/9273 9396/9396 +f 9274/9274 9397/9397 9271/9271 +f 9397/9397 9274/9274 9334/9334 +f 9398/9398 9275/9275 9335/9335 +f 9335/9335 9208/9208 9337/9337 +f 9399/9399 9336/9336 9275/9275 +f 9336/9336 9338/9338 9152/9152 +f 9400/9400 9276/9276 9338/9338 +f 9400/9400 9277/9277 9276/9276 +f 9341/9341 9210/9210 9339/9339 +f 9340/9340 9339/9339 9209/9209 +f 9277/9277 9401/9401 9340/9340 +f 9341/9341 9386/9386 9201/9201 +f 9278/9278 9279/9279 9402/9402 +f 9278/9278 9403/9403 9342/9342 +f 9342/9342 9283/9283 9211/9211 +f 9404/9404 9279/9279 9280/9280 +f 9405/9405 9280/9280 9328/9328 +f 9406/9406 9281/9281 9343/9343 +f 9343/9343 9213/9213 9345/9345 +f 9407/9407 9344/9344 9281/9281 +f 9345/9345 9282/9282 9408/9408 +f 9283/9283 9408/9408 9282/9282 +f 9346/9346 9348/9348 9159/9159 +f 9285/9285 9409/9409 9347/9347 +f 9285/9285 9348/9348 9410/9410 +f 9347/9347 9411/9411 9286/9286 +f 9247/9247 9286/9286 9412/9412 +f 9413/9413 9290/9290 9349/9349 +f 9350/9350 9351/9351 9220/9220 +f 9350/9350 9290/9290 9414/9414 +f 9287/9287 9351/9351 9308/9308 +f 9222/9222 9415/9415 9291/9291 +f 9291/9291 9416/9416 9349/9349 +f 9230/9230 9352/9352 9289/9289 +f 9222/9222 9352/9352 9417/9417 +f 9358/9358 9353/9353 9223/9223 +f 9224/9224 9365/9365 9354/9354 +f 9354/9354 9418/9418 9292/9292 +f 9356/9356 9355/9355 9225/9225 +f 9292/9292 9419/9419 9356/9356 +f 9355/9355 9420/9420 9293/9293 +f 9293/9293 9421/9421 9357/9357 +f 9421/9421 9294/9294 9357/9357 +f 9422/9422 9358/9358 9294/9294 +f 9227/9227 9353/9353 9361/9361 +f 9423/9423 9229/9229 9359/9359 +f 9424/9424 9359/9359 9295/9295 +f 9360/9360 9229/9229 9423/9423 +f 9300/9300 9296/9296 9360/9360 +f 9297/9297 9424/9424 9295/9295 +f 9361/9361 9425/9425 9297/9297 +f 9298/9298 9299/9299 9426/9426 +f 9352/9352 9298/9298 9417/9417 +f 9362/9362 9427/9427 9231/9231 +f 9299/9299 9363/9363 9428/9428 +f 9363/9363 9231/9231 9427/9427 +f 9300/9300 9429/9429 9301/9301 +f 9429/9429 9362/9362 9301/9301 +f 9430/9430 9302/9302 9364/9364 +f 9303/9303 9302/9302 9431/9431 +f 9432/9432 9304/9304 9303/9303 +f 9304/9304 9432/9432 9305/9305 +f 9305/9305 9354/9354 9365/9365 +f 9346/9346 9306/9306 9410/9410 +f 9371/9371 9366/9366 9239/9239 +f 9366/9366 9367/9367 9307/9307 +f 9241/9241 9307/9307 9367/9367 +f 9242/9242 9367/9367 9433/9433 +f 9410/9410 9306/9306 9368/9368 +f 9242/9242 9433/9433 9368/9368 +f 9434/9434 9245/9245 9369/9369 +f 9369/9369 9308/9308 9435/9435 +f 9309/9309 9370/9370 9436/9436 +f 9436/9436 9371/9371 9309/9309 +f 9310/9310 9372/9372 9437/9437 +f 9438/9438 9372/9372 9245/9245 +f 9370/9370 9310/9310 9439/9439 +f 9373/9373 9247/9247 9412/9412 +f 9374/9374 9249/9249 9373/9373 +f 9374/9374 9375/9375 9250/9250 +f 9311/9311 9375/9375 9440/9440 +f 9376/9376 9377/9377 9251/9251 +f 9376/9376 9255/9255 9379/9379 +f 9377/9377 9441/9441 9253/9253 +f 9441/9441 9378/9378 9253/9253 +f 9314/9314 9313/9313 9442/9442 +f 9379/9379 9314/9314 9443/9443 +f 9407/9407 9313/9313 9316/9316 +f 9407/9407 9316/9316 9344/9344 +f 9364/9364 9263/9263 9384/9384 +f 9444/9444 9380/9380 9317/9317 +f 9317/9317 9378/9378 9444/9444 +f 9381/9381 9318/9318 9445/9445 +f 9380/9380 9446/9446 9318/9318 +f 9381/9381 9447/9447 9319/9319 +f 9260/9260 9324/9324 9382/9382 +f 9448/9448 9320/9320 9382/9382 +f 9321/9321 9320/9320 9325/9325 +f 9319/9319 9383/9383 9322/9322 +f 9323/9323 9383/9383 9449/9449 +f 9323/9323 9450/9450 9324/9324 +f 9325/9325 9320/9320 9384/9384 +f 9326/9326 9451/9451 9385/9385 +f 9386/9386 9452/9452 9326/9326 +f 9385/9385 9453/9453 9327/9327 +f 9405/9405 9328/9328 9329/9329 +f 9329/9329 9387/9387 9405/9405 +f 9387/9387 9266/9266 9454/9454 +f 9453/9453 9388/9388 9327/9327 +f 9388/9388 9454/9454 9266/9266 +f 9332/9332 9337/9337 9330/9330 +f 9455/9455 9389/9389 9331/9331 +f 9268/9268 9389/9389 9456/9456 +f 9390/9390 9457/9457 9332/9332 +f 9456/9456 9390/9390 9268/9268 +f 9391/9391 9458/9458 9331/9331 +f 9333/9333 9393/9393 9391/9391 +f 9392/9392 9271/9271 9397/9397 +f 9392/9392 9393/9393 9270/9270 +f 9394/9394 9396/9396 9273/9273 +f 9394/9394 9272/9272 9395/9395 +f 9395/9395 9311/9311 9459/9459 +f 9334/9334 9396/9396 9397/9397 +f 9275/9275 9398/9398 9399/9399 +f 9398/9398 9335/9335 9337/9337 +f 9399/9399 9338/9338 9336/9336 +f 9400/9400 9338/9338 9460/9460 +f 9277/9277 9400/9400 9401/9401 +f 9341/9341 9339/9339 9461/9461 +f 9340/9340 9462/9462 9339/9339 +f 9401/9401 9462/9462 9340/9340 +f 9341/9341 9463/9463 9386/9386 +f 9278/9278 9402/9402 9464/9464 +f 9279/9279 9465/9465 9402/9402 +f 9403/9403 9278/9278 9464/9464 +f 9466/9466 9342/9342 9403/9403 +f 9283/9283 9342/9342 9408/9408 +f 9467/9467 9279/9279 9404/9404 +f 9404/9404 9280/9280 9405/9405 +f 9407/9407 9281/9281 9406/9406 +f 9345/9345 9406/9406 9343/9343 +f 9468/9468 9345/9345 9408/9408 +f 9410/9410 9348/9348 9346/9346 +f 9469/9469 9347/9347 9409/9409 +f 9409/9409 9285/9285 9470/9470 +f 9285/9285 9410/9410 9368/9368 +f 9471/9471 9286/9286 9411/9411 +f 9411/9411 9347/9347 9469/9469 +f 9286/9286 9471/9471 9412/9412 +f 9413/9413 9414/9414 9290/9290 +f 9413/9413 9349/9349 9472/9472 +f 9473/9473 9351/9351 9350/9350 +f 9473/9473 9350/9350 9414/9414 +f 9435/9435 9308/9308 9351/9351 +f 9415/9415 9474/9474 9291/9291 +f 9415/9415 9222/9222 9417/9417 +f 9349/9349 9416/9416 9475/9475 +f 9291/9291 9474/9474 9416/9416 +f 9358/9358 9476/9476 9353/9353 +f 9477/9477 9418/9418 9354/9354 +f 9478/9478 9292/9292 9418/9418 +f 9356/9356 9419/9419 9355/9355 +f 9419/9419 9292/9292 9478/9478 +f 9355/9355 9479/9479 9420/9420 +f 9420/9420 9480/9480 9293/9293 +f 9293/9293 9480/9480 9421/9421 +f 9294/9294 9421/9421 9481/9481 +f 9476/9476 9358/9358 9422/9422 +f 9481/9481 9422/9422 9294/9294 +f 9425/9425 9361/9361 9353/9353 +f 9359/9359 9482/9482 9423/9423 +f 9483/9483 9359/9359 9424/9424 +f 9423/9423 9482/9482 9360/9360 +f 9484/9484 9300/9300 9360/9360 +f 9424/9424 9297/9297 9485/9485 +f 9485/9485 9297/9297 9425/9425 +f 9426/9426 9486/9486 9298/9298 +f 9426/9426 9299/9299 9487/9487 +f 9417/9417 9298/9298 9486/9486 +f 9427/9427 9362/9362 9488/9488 +f 9489/9489 9428/9428 9363/9363 +f 9487/9487 9299/9299 9428/9428 +f 9427/9427 9489/9489 9363/9363 +f 9490/9490 9429/9429 9300/9300 +f 9488/9488 9362/9362 9429/9429 +f 9430/9430 9491/9491 9302/9302 +f 9364/9364 9492/9492 9430/9430 +f 9491/9491 9431/9431 9302/9302 +f 9431/9431 9493/9493 9303/9303 +f 9493/9493 9432/9432 9303/9303 +f 9305/9305 9432/9432 9477/9477 +f 9477/9477 9354/9354 9305/9305 +f 9366/9366 9371/9371 9494/9494 +f 9367/9367 9366/9366 9495/9495 +f 9433/9433 9367/9367 9495/9495 +f 9368/9368 9433/9433 9285/9285 +f 9438/9438 9245/9245 9434/9434 +f 9434/9434 9369/9369 9496/9496 +f 9435/9435 9497/9497 9369/9369 +f 9436/9436 9370/9370 9439/9439 +f 9494/9494 9371/9371 9436/9436 +f 9372/9372 9498/9498 9437/9437 +f 9439/9439 9310/9310 9437/9437 +f 9372/9372 9438/9438 9498/9498 +f 9412/9412 9499/9499 9373/9373 +f 9500/9500 9374/9374 9373/9373 +f 9501/9501 9375/9375 9374/9374 +f 9375/9375 9501/9501 9440/9440 +f 9311/9311 9440/9440 9459/9459 +f 9376/9376 9441/9441 9377/9377 +f 9443/9443 9376/9376 9379/9379 +f 9378/9378 9441/9441 9444/9444 +f 9442/9442 9313/9313 9407/9407 +f 9314/9314 9442/9442 9502/9502 +f 9502/9502 9443/9443 9314/9314 +f 9384/9384 9492/9492 9364/9364 +f 9503/9503 9380/9380 9444/9444 +f 9504/9504 9381/9381 9445/9445 +f 9318/9318 9505/9505 9445/9445 +f 9446/9446 9380/9380 9503/9503 +f 9446/9446 9505/9505 9318/9318 +f 9504/9504 9447/9447 9381/9381 +f 9319/9319 9447/9447 9383/9383 +f 9382/9382 9324/9324 9506/9506 +f 9320/9320 9448/9448 9492/9492 +f 9506/9506 9448/9448 9382/9382 +f 9507/9507 9323/9323 9449/9449 +f 9383/9383 9447/9447 9449/9449 +f 9323/9323 9508/9508 9450/9450 +f 9324/9324 9450/9450 9509/9509 +f 9320/9320 9492/9492 9384/9384 +f 9451/9451 9453/9453 9385/9385 +f 9326/9326 9452/9452 9451/9451 +f 9510/9510 9452/9452 9386/9386 +f 9511/9511 9405/9405 9387/9387 +f 9512/9512 9387/9387 9454/9454 +f 9513/9513 9388/9388 9453/9453 +f 9388/9388 9513/9513 9454/9454 +f 9514/9514 9337/9337 9332/9332 +f 9515/9515 9389/9389 9455/9455 +f 9458/9458 9455/9455 9331/9331 +f 9456/9456 9389/9389 9515/9515 +f 9457/9457 9390/9390 9516/9516 +f 9457/9457 9514/9514 9332/9332 +f 9456/9456 9517/9517 9390/9390 +f 9518/9518 9458/9458 9391/9391 +f 9393/9393 9518/9518 9391/9391 +f 9392/9392 9397/9397 9519/9519 +f 9393/9393 9392/9392 9520/9520 +f 9521/9521 9396/9396 9394/9394 +f 9521/9521 9394/9394 9395/9395 +f 9522/9522 9395/9395 9459/9459 +f 9396/9396 9519/9519 9397/9397 +f 9398/9398 9523/9523 9399/9399 +f 9398/9398 9337/9337 9524/9524 +f 9399/9399 9460/9460 9338/9338 +f 9400/9400 9460/9460 9401/9401 +f 9461/9461 9339/9339 9525/9525 +f 9463/9463 9341/9341 9461/9461 +f 9462/9462 9525/9525 9339/9339 +f 9401/9401 9526/9526 9462/9462 +f 9527/9527 9386/9386 9463/9463 +f 9528/9528 9464/9464 9402/9402 +f 9279/9279 9529/9529 9465/9465 +f 9402/9402 9465/9465 9528/9528 +f 9530/9530 9403/9403 9464/9464 +f 9408/9408 9342/9342 9466/9466 +f 9531/9531 9466/9466 9403/9403 +f 9404/9404 9532/9532 9467/9467 +f 9529/9529 9279/9279 9467/9467 +f 9405/9405 9511/9511 9404/9404 +f 9533/9533 9407/9407 9406/9406 +f 9468/9468 9406/9406 9345/9345 +f 9408/9408 9534/9534 9468/9468 +f 9409/9409 9535/9535 9469/9469 +f 9470/9470 9495/9495 9409/9409 +f 9285/9285 9433/9433 9470/9470 +f 9471/9471 9411/9411 9536/9536 +f 9411/9411 9469/9469 9537/9537 +f 9471/9471 9538/9538 9412/9412 +f 9414/9414 9413/9413 9539/9539 +f 9540/9540 9413/9413 9472/9472 +f 9472/9472 9349/9349 9541/9541 +f 9351/9351 9473/9473 9435/9435 +f 9473/9473 9414/9414 9542/9542 +f 9474/9474 9415/9415 9543/9543 +f 9415/9415 9417/9417 9486/9486 +f 9475/9475 9416/9416 9474/9474 +f 9475/9475 9541/9541 9349/9349 +f 9353/9353 9476/9476 9425/9425 +f 9418/9418 9477/9477 9544/9544 +f 9418/9418 9544/9544 9478/9478 +f 9479/9479 9355/9355 9419/9419 +f 9478/9478 9479/9479 9419/9419 +f 9545/9545 9420/9420 9479/9479 +f 9480/9480 9420/9420 9545/9545 +f 9421/9421 9480/9480 9546/9546 +f 9481/9481 9421/9421 9546/9546 +f 9476/9476 9422/9422 9547/9547 +f 9547/9547 9422/9422 9481/9481 +f 9359/9359 9483/9483 9482/9482 +f 9424/9424 9548/9548 9483/9483 +f 9360/9360 9482/9482 9549/9549 +f 9484/9484 9360/9360 9549/9549 +f 9484/9484 9490/9490 9300/9300 +f 9548/9548 9424/9424 9485/9485 +f 9485/9485 9425/9425 9550/9550 +f 9426/9426 9551/9551 9486/9486 +f 9552/9552 9426/9426 9487/9487 +f 9553/9553 9427/9427 9488/9488 +f 9428/9428 9489/9489 9554/9554 +f 9428/9428 9554/9554 9487/9487 +f 9489/9489 9427/9427 9555/9555 +f 9490/9490 9556/9556 9429/9429 +f 9556/9556 9488/9488 9429/9429 +f 9491/9491 9430/9430 9557/9557 +f 9492/9492 9557/9557 9430/9430 +f 9558/9558 9431/9431 9491/9491 +f 9493/9493 9431/9431 9558/9558 +f 9559/9559 9432/9432 9493/9493 +f 9560/9560 9477/9477 9432/9432 +f 9495/9495 9366/9366 9494/9494 +f 9495/9495 9470/9470 9433/9433 +f 9561/9561 9438/9438 9434/9434 +f 9497/9497 9496/9496 9369/9369 +f 9496/9496 9562/9562 9434/9434 +f 9435/9435 9473/9473 9497/9497 +f 9494/9494 9436/9436 9439/9439 +f 9498/9498 9563/9563 9437/9437 +f 9437/9437 9564/9564 9439/9439 +f 9498/9498 9438/9438 9565/9565 +f 9499/9499 9412/9412 9566/9566 +f 9499/9499 9500/9500 9373/9373 +f 9374/9374 9500/9500 9567/9567 +f 9501/9501 9374/9374 9567/9567 +f 9440/9440 9501/9501 9568/9568 +f 9459/9459 9440/9440 9522/9522 +f 9441/9441 9376/9376 9569/9569 +f 9376/9376 9443/9443 9569/9569 +f 9441/9441 9570/9570 9444/9444 +f 9533/9533 9442/9442 9407/9407 +f 9502/9502 9442/9442 9533/9533 +f 9571/9571 9443/9443 9502/9502 +f 9444/9444 9570/9570 9503/9503 +f 9445/9445 9572/9572 9504/9504 +f 9445/9445 9505/9505 9573/9573 +f 9503/9503 9574/9574 9446/9446 +f 9505/9505 9446/9446 9574/9574 +f 9447/9447 9504/9504 9575/9575 +f 9448/9448 9506/9506 9324/9324 +f 9576/9576 9492/9492 9448/9448 +f 9323/9323 9507/9507 9508/9508 +f 9449/9449 9447/9447 9507/9507 +f 9577/9577 9450/9450 9508/9508 +f 9450/9450 9577/9577 9509/9509 +f 9509/9509 9448/9448 9324/9324 +f 9513/9513 9453/9453 9451/9451 +f 9451/9451 9452/9452 9578/9578 +f 9510/9510 9386/9386 9527/9527 +f 9579/9579 9452/9452 9510/9510 +f 9511/9511 9387/9387 9580/9580 +f 9387/9387 9512/9512 9580/9580 +f 9581/9581 9512/9512 9454/9454 +f 9581/9581 9454/9454 9513/9513 +f 9337/9337 9514/9514 9524/9524 +f 9582/9582 9515/9515 9455/9455 +f 9455/9455 9458/9458 9583/9583 +f 9515/9515 9584/9584 9456/9456 +f 9516/9516 9585/9585 9457/9457 +f 9516/9516 9390/9390 9586/9586 +f 9457/9457 9585/9585 9514/9514 +f 9390/9390 9517/9517 9586/9586 +f 9587/9587 9517/9517 9456/9456 +f 9583/9583 9458/9458 9518/9518 +f 9588/9588 9518/9518 9393/9393 +f 9520/9520 9392/9392 9519/9519 +f 9588/9588 9393/9393 9520/9520 +f 9396/9396 9521/9521 9519/9519 +f 9395/9395 9522/9522 9521/9521 +f 9398/9398 9524/9524 9523/9523 +f 9399/9399 9523/9523 9526/9526 +f 9526/9526 9460/9460 9399/9399 +f 9460/9460 9526/9526 9401/9401 +f 9461/9461 9525/9525 9589/9589 +f 9590/9590 9463/9463 9461/9461 +f 9591/9591 9525/9525 9462/9462 +f 9526/9526 9592/9592 9462/9462 +f 9527/9527 9463/9463 9593/9593 +f 9594/9594 9464/9464 9528/9528 +f 9465/9465 9529/9529 9595/9595 +f 9528/9528 9465/9465 9596/9596 +f 9597/9597 9403/9403 9530/9530 +f 9598/9598 9530/9530 9464/9464 +f 9534/9534 9408/9408 9466/9466 +f 9403/9403 9597/9597 9531/9531 +f 9531/9531 9599/9599 9466/9466 +f 9532/9532 9404/9404 9511/9511 +f 9467/9467 9532/9532 9595/9595 +f 9595/9595 9529/9529 9467/9467 +f 9406/9406 9600/9600 9533/9533 +f 9468/9468 9601/9601 9406/9406 +f 9468/9468 9534/9534 9602/9602 +f 9535/9535 9409/9409 9603/9603 +f 9469/9469 9535/9535 9537/9537 +f 9604/9604 9409/9409 9495/9495 +f 9536/9536 9411/9411 9537/9537 +f 9605/9605 9471/9471 9536/9536 +f 9471/9471 9605/9605 9538/9538 +f 9412/9412 9538/9538 9566/9566 +f 9540/9540 9539/9539 9413/9413 +f 9539/9539 9542/9542 9414/9414 +f 9606/9606 9540/9540 9472/9472 +f 9541/9541 9606/9606 9472/9472 +f 9542/9542 9607/9607 9473/9473 +f 9551/9551 9543/9543 9415/9415 +f 9474/9474 9543/9543 9475/9475 +f 9415/9415 9486/9486 9551/9551 +f 9541/9541 9475/9475 9608/9608 +f 9476/9476 9609/9609 9425/9425 +f 9477/9477 9610/9610 9544/9544 +f 9544/9544 9611/9611 9478/9478 +f 9478/9478 9611/9611 9479/9479 +f 9479/9479 9612/9612 9545/9545 +f 9480/9480 9545/9545 9613/9613 +f 9546/9546 9480/9480 9613/9613 +f 9546/9546 9614/9614 9481/9481 +f 9547/9547 9615/9615 9476/9476 +f 9481/9481 9616/9616 9547/9547 +f 9483/9483 9617/9617 9482/9482 +f 9483/9483 9548/9548 9617/9617 +f 9549/9549 9482/9482 9618/9618 +f 9619/9619 9484/9484 9549/9549 +f 9490/9490 9484/9484 9620/9620 +f 9621/9621 9548/9548 9485/9485 +f 9609/9609 9550/9550 9425/9425 +f 9621/9621 9485/9485 9550/9550 +f 9551/9551 9426/9426 9552/9552 +f 9487/9487 9554/9554 9552/9552 +f 9553/9553 9555/9555 9427/9427 +f 9553/9553 9488/9488 9622/9622 +f 9623/9623 9554/9554 9489/9489 +f 9489/9489 9555/9555 9624/9624 +f 9490/9490 9625/9625 9556/9556 +f 9622/9622 9488/9488 9556/9556 +f 9491/9491 9557/9557 9558/9558 +f 9557/9557 9492/9492 9576/9576 +f 9559/9559 9493/9493 9558/9558 +f 9560/9560 9432/9432 9559/9559 +f 9626/9626 9477/9477 9560/9560 +f 9495/9495 9494/9494 9604/9604 +f 9561/9561 9627/9627 9438/9438 +f 9434/9434 9628/9628 9561/9561 +f 9497/9497 9607/9607 9496/9496 +f 9496/9496 9629/9629 9562/9562 +f 9562/9562 9628/9628 9434/9434 +f 9473/9473 9607/9607 9497/9497 +f 9564/9564 9494/9494 9439/9439 +f 9565/9565 9563/9563 9498/9498 +f 9563/9563 9564/9564 9437/9437 +f 9438/9438 9627/9627 9565/9565 +f 9566/9566 9630/9630 9499/9499 +f 9500/9500 9499/9499 9630/9630 +f 9567/9567 9500/9500 9631/9631 +f 9567/9567 9632/9632 9501/9501 +f 9632/9632 9568/9568 9501/9501 +f 9568/9568 9633/9633 9440/9440 +f 9633/9633 9522/9522 9440/9440 +f 9570/9570 9441/9441 9569/9569 +f 9443/9443 9570/9570 9569/9569 +f 9502/9502 9533/9533 9634/9634 +f 9502/9502 9635/9635 9571/9571 +f 9636/9636 9443/9443 9571/9571 +f 9503/9503 9570/9570 9636/9636 +f 9637/9637 9504/9504 9572/9572 +f 9573/9573 9572/9572 9445/9445 +f 9573/9573 9505/9505 9638/9638 +f 9503/9503 9639/9639 9574/9574 +f 9640/9640 9505/9505 9574/9574 +f 9575/9575 9504/9504 9637/9637 +f 9576/9576 9448/9448 9641/9641 +f 9642/9642 9508/9508 9507/9507 +f 9508/9508 9643/9643 9577/9577 +f 9577/9577 9448/9448 9509/9509 +f 9578/9578 9513/9513 9451/9451 +f 9644/9644 9578/9578 9452/9452 +f 9510/9510 9527/9527 9593/9593 +f 9579/9579 9510/9510 9645/9645 +f 9579/9579 9646/9646 9452/9452 +f 9511/9511 9580/9580 9532/9532 +f 9512/9512 9647/9647 9580/9580 +f 9581/9581 9647/9647 9512/9512 +f 9513/9513 9644/9644 9581/9581 +f 9648/9648 9524/9524 9514/9514 +f 9649/9649 9515/9515 9582/9582 +f 9583/9583 9582/9582 9455/9455 +f 9649/9649 9584/9584 9515/9515 +f 9584/9584 9587/9587 9456/9456 +f 9650/9650 9585/9585 9516/9516 +f 9586/9586 9651/9651 9516/9516 +f 9585/9585 9648/9648 9514/9514 +f 9517/9517 9652/9652 9586/9586 +f 9652/9652 9517/9517 9587/9587 +f 9653/9653 9583/9583 9518/9518 +f 9518/9518 9588/9588 9653/9653 +f 9519/9519 9521/9521 9520/9520 +f 9654/9654 9588/9588 9520/9520 +f 9522/9522 9655/9655 9521/9521 +f 9648/9648 9523/9523 9524/9524 +f 9526/9526 9523/9523 9592/9592 +f 9589/9589 9525/9525 9591/9591 +f 9589/9589 9590/9590 9461/9461 +f 9593/9593 9463/9463 9590/9590 +f 9462/9462 9592/9592 9591/9591 +f 9656/9656 9594/9594 9528/9528 +f 9464/9464 9594/9594 9598/9598 +f 9596/9596 9465/9465 9595/9595 +f 9657/9657 9528/9528 9596/9596 +f 9658/9658 9597/9597 9530/9530 +f 9530/9530 9598/9598 9658/9658 +f 9599/9599 9534/9534 9466/9466 +f 9597/9597 9659/9659 9531/9531 +f 9659/9659 9599/9599 9531/9531 +f 9595/9595 9532/9532 9660/9660 +f 9406/9406 9601/9601 9600/9600 +f 9600/9600 9634/9634 9533/9533 +f 9601/9601 9468/9468 9602/9602 +f 9602/9602 9534/9534 9661/9661 +f 9604/9604 9603/9603 9409/9409 +f 9662/9662 9535/9535 9603/9603 +f 9537/9537 9535/9535 9663/9663 +f 9663/9663 9536/9536 9537/9537 +f 9536/9536 9664/9664 9605/9605 +f 9538/9538 9605/9605 9665/9665 +f 9566/9566 9538/9538 9666/9666 +f 9539/9539 9540/9540 9667/9667 +f 9668/9668 9542/9542 9539/9539 +f 9669/9669 9540/9540 9606/9606 +f 9606/9606 9541/9541 9670/9670 +f 9671/9671 9607/9607 9542/9542 +f 9475/9475 9543/9543 9551/9551 +f 9672/9672 9608/9608 9475/9475 +f 9608/9608 9673/9673 9541/9541 +f 9615/9615 9609/9609 9476/9476 +f 9626/9626 9610/9610 9477/9477 +f 9544/9544 9610/9610 9674/9674 +f 9611/9611 9544/9544 9674/9674 +f 9611/9611 9675/9675 9479/9479 +f 9479/9479 9675/9675 9612/9612 +f 9545/9545 9612/9612 9613/9613 +f 9676/9676 9546/9546 9613/9613 +f 9614/9614 9546/9546 9677/9677 +f 9481/9481 9614/9614 9616/9616 +f 9678/9678 9615/9615 9547/9547 +f 9616/9616 9679/9679 9547/9547 +f 9482/9482 9617/9617 9618/9618 +f 9548/9548 9680/9680 9617/9617 +f 9619/9619 9549/9549 9618/9618 +f 9620/9620 9484/9484 9619/9619 +f 9490/9490 9620/9620 9625/9625 +f 9548/9548 9621/9621 9681/9681 +f 9682/9682 9550/9550 9609/9609 +f 9682/9682 9621/9621 9550/9550 +f 9672/9672 9551/9551 9552/9552 +f 9552/9552 9554/9554 9683/9683 +f 9624/9624 9555/9555 9553/9553 +f 9553/9553 9622/9622 9624/9624 +f 9554/9554 9623/9623 9684/9684 +f 9623/9623 9489/9489 9624/9624 +f 9625/9625 9622/9622 9556/9556 +f 9557/9557 9576/9576 9558/9558 +f 9558/9558 9576/9576 9559/9559 +f 9559/9559 9626/9626 9560/9560 +f 9604/9604 9494/9494 9564/9564 +f 9685/9685 9627/9627 9561/9561 +f 9561/9561 9628/9628 9686/9686 +f 9607/9607 9629/9629 9496/9496 +f 9671/9671 9562/9562 9629/9629 +f 9628/9628 9562/9562 9687/9687 +f 9563/9563 9565/9565 9688/9688 +f 9564/9564 9563/9563 9689/9689 +f 9565/9565 9627/9627 9688/9688 +f 9690/9690 9630/9630 9566/9566 +f 9630/9630 9631/9631 9500/9500 +f 9691/9691 9567/9567 9631/9631 +f 9691/9691 9632/9632 9567/9567 +f 9692/9692 9568/9568 9632/9632 +f 9522/9522 9633/9633 9568/9568 +f 9570/9570 9443/9443 9636/9636 +f 9634/9634 9693/9693 9502/9502 +f 9502/9502 9693/9693 9635/9635 +f 9694/9694 9571/9571 9635/9635 +f 9571/9571 9695/9695 9636/9636 +f 9636/9636 9696/9696 9503/9503 +f 9572/9572 9697/9697 9637/9637 +f 9572/9572 9573/9573 9698/9698 +f 9699/9699 9573/9573 9638/9638 +f 9638/9638 9505/9505 9640/9640 +f 9696/9696 9639/9639 9503/9503 +f 9700/9700 9574/9574 9639/9639 +f 9640/9640 9574/9574 9701/9701 +f 9575/9575 9637/9637 9507/9507 +f 9641/9641 9448/9448 9702/9702 +f 9559/9559 9576/9576 9641/9641 +f 9507/9507 9697/9697 9642/9642 +f 9642/9642 9643/9643 9508/9508 +f 9703/9703 9577/9577 9643/9643 +f 9448/9448 9577/9577 9703/9703 +f 9578/9578 9644/9644 9513/9513 +f 9646/9646 9644/9644 9452/9452 +f 9704/9704 9510/9510 9593/9593 +f 9645/9645 9510/9510 9705/9705 +f 9706/9706 9579/9579 9645/9645 +f 9646/9646 9579/9579 9707/9707 +f 9708/9708 9532/9532 9580/9580 +f 9647/9647 9709/9709 9580/9580 +f 9581/9581 9644/9644 9647/9647 +f 9649/9649 9582/9582 9710/9710 +f 9711/9711 9582/9582 9583/9583 +f 9712/9712 9584/9584 9649/9649 +f 9713/9713 9587/9587 9584/9584 +f 9714/9714 9585/9585 9650/9650 +f 9715/9715 9650/9650 9516/9516 +f 9651/9651 9586/9586 9652/9652 +f 9516/9516 9651/9651 9715/9715 +f 9648/9648 9585/9585 9716/9716 +f 9717/9717 9652/9652 9587/9587 +f 9653/9653 9711/9711 9583/9583 +f 9653/9653 9588/9588 9711/9711 +f 9521/9521 9655/9655 9520/9520 +f 9520/9520 9655/9655 9654/9654 +f 9711/9711 9588/9588 9654/9654 +f 9655/9655 9522/9522 9718/9718 +f 9719/9719 9523/9523 9648/9648 +f 9720/9720 9592/9592 9523/9523 +f 9721/9721 9589/9589 9591/9591 +f 9590/9590 9589/9589 9722/9722 +f 9723/9723 9593/9593 9590/9590 +f 9592/9592 9720/9720 9591/9591 +f 9656/9656 9528/9528 9657/9657 +f 9594/9594 9656/9656 9724/9724 +f 9594/9594 9725/9725 9598/9598 +f 9595/9595 9660/9660 9596/9596 +f 9657/9657 9596/9596 9726/9726 +f 9659/9659 9597/9597 9658/9658 +f 9725/9725 9658/9658 9598/9598 +f 9661/9661 9534/9534 9599/9599 +f 9599/9599 9659/9659 9727/9727 +f 9532/9532 9708/9708 9660/9660 +f 9601/9601 9728/9728 9600/9600 +f 9729/9729 9634/9634 9600/9600 +f 9601/9601 9602/9602 9728/9728 +f 9730/9730 9602/9602 9661/9661 +f 9662/9662 9603/9603 9604/9604 +f 9662/9662 9731/9731 9535/9535 +f 9663/9663 9535/9535 9732/9732 +f 9536/9536 9663/9663 9733/9733 +f 9536/9536 9733/9733 9664/9664 +f 9734/9734 9605/9605 9664/9664 +f 9665/9665 9666/9666 9538/9538 +f 9734/9734 9665/9665 9605/9605 +f 9666/9666 9690/9690 9566/9566 +f 9667/9667 9735/9735 9539/9539 +f 9540/9540 9669/9669 9667/9667 +f 9735/9735 9668/9668 9539/9539 +f 9542/9542 9668/9668 9671/9671 +f 9606/9606 9736/9736 9669/9669 +f 9606/9606 9670/9670 9736/9736 +f 9673/9673 9670/9670 9541/9541 +f 9629/9629 9607/9607 9671/9671 +f 9475/9475 9551/9551 9672/9672 +f 9737/9737 9608/9608 9672/9672 +f 9608/9608 9737/9737 9673/9673 +f 9678/9678 9609/9609 9615/9615 +f 9626/9626 9559/9559 9610/9610 +f 9738/9738 9674/9674 9610/9610 +f 9611/9611 9674/9674 9738/9738 +f 9675/9675 9611/9611 9739/9739 +f 9740/9740 9612/9612 9675/9675 +f 9612/9612 9676/9676 9613/9613 +f 9546/9546 9676/9676 9741/9741 +f 9614/9614 9677/9677 9742/9742 +f 9677/9677 9546/9546 9741/9741 +f 9616/9616 9614/9614 9742/9742 +f 9547/9547 9743/9743 9678/9678 +f 9616/9616 9744/9744 9679/9679 +f 9679/9679 9745/9745 9547/9547 +f 9617/9617 9746/9746 9618/9618 +f 9548/9548 9747/9747 9680/9680 +f 9617/9617 9680/9680 9748/9748 +f 9619/9619 9618/9618 9749/9749 +f 9619/9619 9750/9750 9620/9620 +f 9625/9625 9620/9620 9750/9750 +f 9747/9747 9548/9548 9681/9681 +f 9681/9681 9621/9621 9751/9751 +f 9752/9752 9682/9682 9609/9609 +f 9751/9751 9621/9621 9682/9682 +f 9753/9753 9672/9672 9552/9552 +f 9683/9683 9554/9554 9684/9684 +f 9683/9683 9753/9753 9552/9552 +f 9624/9624 9622/9622 9754/9754 +f 9623/9623 9755/9755 9684/9684 +f 9756/9756 9623/9623 9624/9624 +f 9622/9622 9625/9625 9754/9754 +f 9564/9564 9662/9662 9604/9604 +f 9627/9627 9685/9685 9688/9688 +f 9686/9686 9685/9685 9561/9561 +f 9686/9686 9628/9628 9757/9757 +f 9687/9687 9562/9562 9671/9671 +f 9628/9628 9687/9687 9758/9758 +f 9759/9759 9563/9563 9688/9688 +f 9689/9689 9563/9563 9759/9759 +f 9662/9662 9564/9564 9689/9689 +f 9690/9690 9760/9760 9630/9630 +f 9761/9761 9631/9631 9630/9630 +f 9762/9762 9691/9691 9631/9631 +f 9691/9691 9692/9692 9632/9632 +f 9718/9718 9568/9568 9692/9692 +f 9522/9522 9568/9568 9718/9718 +f 9729/9729 9693/9693 9634/9634 +f 9693/9693 9729/9729 9635/9635 +f 9694/9694 9695/9695 9571/9571 +f 9635/9635 9763/9763 9694/9694 +f 9695/9695 9764/9764 9636/9636 +f 9765/9765 9696/9696 9636/9636 +f 9766/9766 9697/9697 9572/9572 +f 9637/9637 9697/9697 9507/9507 +f 9698/9698 9573/9573 9699/9699 +f 9766/9766 9572/9572 9698/9698 +f 9699/9699 9638/9638 9640/9640 +f 9639/9639 9696/9696 9765/9765 +f 9700/9700 9767/9767 9574/9574 +f 9639/9639 9768/9768 9700/9700 +f 9769/9769 9701/9701 9574/9574 +f 9640/9640 9701/9701 9699/9699 +f 9702/9702 9448/9448 9703/9703 +f 9770/9770 9641/9641 9702/9702 +f 9610/9610 9559/9559 9641/9641 +f 9642/9642 9697/9697 9771/9771 +f 9642/9642 9771/9771 9643/9643 +f 9643/9643 9772/9772 9703/9703 +f 9646/9646 9709/9709 9644/9644 +f 9593/9593 9723/9723 9704/9704 +f 9510/9510 9704/9704 9705/9705 +f 9645/9645 9705/9705 9773/9773 +f 9706/9706 9707/9707 9579/9579 +f 9773/9773 9706/9706 9645/9645 +f 9707/9707 9774/9774 9646/9646 +f 9775/9775 9708/9708 9580/9580 +f 9709/9709 9647/9647 9644/9644 +f 9709/9709 9775/9775 9580/9580 +f 9776/9776 9710/9710 9582/9582 +f 9777/9777 9649/9649 9710/9710 +f 9582/9582 9711/9711 9776/9776 +f 9778/9778 9584/9584 9712/9712 +f 9712/9712 9649/9649 9777/9777 +f 9587/9587 9713/9713 9717/9717 +f 9713/9713 9584/9584 9778/9778 +f 9650/9650 9779/9779 9714/9714 +f 9714/9714 9716/9716 9585/9585 +f 9715/9715 9780/9780 9650/9650 +f 9781/9781 9651/9651 9652/9652 +f 9782/9782 9715/9715 9651/9651 +f 9716/9716 9719/9719 9648/9648 +f 9783/9783 9652/9652 9717/9717 +f 9784/9784 9654/9654 9655/9655 +f 9776/9776 9711/9711 9654/9654 +f 9718/9718 9785/9785 9655/9655 +f 9719/9719 9720/9720 9523/9523 +f 9786/9786 9721/9721 9591/9591 +f 9721/9721 9787/9787 9589/9589 +f 9787/9787 9722/9722 9589/9589 +f 9590/9590 9722/9722 9788/9788 +f 9723/9723 9590/9590 9788/9788 +f 9591/9591 9720/9720 9786/9786 +f 9789/9789 9656/9656 9657/9657 +f 9790/9790 9724/9724 9656/9656 +f 9724/9724 9791/9791 9594/9594 +f 9791/9791 9725/9725 9594/9594 +f 9660/9660 9792/9792 9596/9596 +f 9596/9596 9792/9792 9726/9726 +f 9789/9789 9657/9657 9726/9726 +f 9658/9658 9793/9793 9659/9659 +f 9725/9725 9794/9794 9658/9658 +f 9661/9661 9599/9599 9795/9795 +f 9796/9796 9727/9727 9659/9659 +f 9599/9599 9727/9727 9795/9795 +f 9708/9708 9792/9792 9660/9660 +f 9728/9728 9729/9729 9600/9600 +f 9797/9797 9728/9728 9602/9602 +f 9730/9730 9798/9798 9602/9602 +f 9799/9799 9730/9730 9661/9661 +f 9731/9731 9662/9662 9689/9689 +f 9732/9732 9535/9535 9731/9731 +f 9800/9800 9663/9663 9732/9732 +f 9663/9663 9800/9800 9733/9733 +f 9734/9734 9664/9664 9733/9733 +f 9801/9801 9666/9666 9665/9665 +f 9802/9802 9665/9665 9734/9734 +f 9690/9690 9666/9666 9801/9801 +f 9735/9735 9667/9667 9803/9803 +f 9669/9669 9804/9804 9667/9667 +f 9735/9735 9805/9805 9668/9668 +f 9668/9668 9806/9806 9671/9671 +f 9669/9669 9736/9736 9804/9804 +f 9670/9670 9807/9807 9736/9736 +f 9670/9670 9673/9673 9808/9808 +f 9809/9809 9737/9737 9672/9672 +f 9673/9673 9737/9737 9810/9810 +f 9609/9609 9678/9678 9752/9752 +f 9610/9610 9770/9770 9738/9738 +f 9739/9739 9611/9611 9738/9738 +f 9675/9675 9739/9739 9740/9740 +f 9612/9612 9740/9740 9811/9811 +f 9812/9812 9676/9676 9612/9612 +f 9676/9676 9812/9812 9741/9741 +f 9677/9677 9813/9813 9742/9742 +f 9812/9812 9677/9677 9741/9741 +f 9744/9744 9616/9616 9742/9742 +f 9745/9745 9743/9743 9547/9547 +f 9743/9743 9752/9752 9678/9678 +f 9744/9744 9814/9814 9679/9679 +f 9745/9745 9679/9679 9815/9815 +f 9748/9748 9746/9746 9617/9617 +f 9618/9618 9746/9746 9749/9749 +f 9816/9816 9680/9680 9747/9747 +f 9680/9680 9816/9816 9748/9748 +f 9749/9749 9750/9750 9619/9619 +f 9750/9750 9817/9817 9625/9625 +f 9747/9747 9681/9681 9818/9818 +f 9751/9751 9819/9819 9681/9681 +f 9682/9682 9752/9752 9820/9820 +f 9751/9751 9682/9682 9821/9821 +f 9672/9672 9753/9753 9809/9809 +f 9822/9822 9683/9683 9684/9684 +f 9753/9753 9683/9683 9822/9822 +f 9624/9624 9754/9754 9823/9823 +f 9824/9824 9684/9684 9755/9755 +f 9756/9756 9755/9755 9623/9623 +f 9756/9756 9624/9624 9823/9823 +f 9754/9754 9625/9625 9817/9817 +f 9685/9685 9825/9825 9688/9688 +f 9685/9685 9686/9686 9826/9826 +f 9826/9826 9686/9686 9757/9757 +f 9628/9628 9827/9827 9757/9757 +f 9687/9687 9671/9671 9828/9828 +f 9827/9827 9628/9628 9758/9758 +f 9758/9758 9687/9687 9829/9829 +f 9688/9688 9825/9825 9759/9759 +f 9689/9689 9759/9759 9731/9731 +f 9830/9830 9760/9760 9690/9690 +f 9630/9630 9760/9760 9761/9761 +f 9761/9761 9762/9762 9631/9631 +f 9691/9691 9762/9762 9831/9831 +f 9691/9691 9831/9831 9692/9692 +f 9692/9692 9832/9832 9718/9718 +f 9729/9729 9833/9833 9635/9635 +f 9834/9834 9695/9695 9694/9694 +f 9635/9635 9835/9835 9763/9763 +f 9763/9763 9836/9836 9694/9694 +f 9636/9636 9764/9764 9765/9765 +f 9837/9837 9764/9764 9695/9695 +f 9771/9771 9697/9697 9766/9766 +f 9699/9699 9838/9838 9698/9698 +f 9766/9766 9698/9698 9838/9838 +f 9764/9764 9639/9639 9765/9765 +f 9769/9769 9574/9574 9767/9767 +f 9767/9767 9700/9700 9768/9768 +f 9768/9768 9639/9639 9764/9764 +f 9701/9701 9769/9769 9839/9839 +f 9840/9840 9699/9699 9701/9701 +f 9841/9841 9702/9702 9703/9703 +f 9610/9610 9641/9641 9770/9770 +f 9770/9770 9702/9702 9842/9842 +f 9643/9643 9771/9771 9772/9772 +f 9772/9772 9843/9843 9703/9703 +f 9844/9844 9709/9709 9646/9646 +f 9845/9845 9704/9704 9723/9723 +f 9704/9704 9845/9845 9705/9705 +f 9846/9846 9773/9773 9705/9705 +f 9707/9707 9706/9706 9847/9847 +f 9706/9706 9773/9773 9848/9848 +f 9774/9774 9707/9707 9847/9847 +f 9774/9774 9844/9844 9646/9646 +f 9775/9775 9849/9849 9708/9708 +f 9775/9775 9709/9709 9844/9844 +f 9776/9776 9850/9850 9710/9710 +f 9851/9851 9777/9777 9710/9710 +f 9852/9852 9778/9778 9712/9712 +f 9777/9777 9853/9853 9712/9712 +f 9717/9717 9713/9713 9854/9854 +f 9713/9713 9778/9778 9854/9854 +f 9650/9650 9855/9855 9779/9779 +f 9779/9779 9856/9856 9714/9714 +f 9856/9856 9716/9716 9714/9714 +f 9780/9780 9715/9715 9782/9782 +f 9780/9780 9855/9855 9650/9650 +f 9781/9781 9782/9782 9651/9651 +f 9781/9781 9652/9652 9783/9783 +f 9857/9857 9719/9719 9716/9716 +f 9717/9717 9854/9854 9783/9783 +f 9776/9776 9654/9654 9784/9784 +f 9785/9785 9784/9784 9655/9655 +f 9718/9718 9832/9832 9785/9785 +f 9720/9720 9719/9719 9858/9858 +f 9786/9786 9859/9859 9721/9721 +f 9787/9787 9721/9721 9860/9860 +f 9722/9722 9787/9787 9861/9861 +f 9861/9861 9788/9788 9722/9722 +f 9788/9788 9845/9845 9723/9723 +f 9720/9720 9862/9862 9786/9786 +f 9789/9789 9790/9790 9656/9656 +f 9863/9863 9724/9724 9790/9790 +f 9791/9791 9724/9724 9863/9863 +f 9725/9725 9791/9791 9794/9794 +f 9792/9792 9864/9864 9726/9726 +f 9726/9726 9864/9864 9789/9789 +f 9865/9865 9793/9793 9658/9658 +f 9796/9796 9659/9659 9793/9793 +f 9794/9794 9865/9865 9658/9658 +f 9795/9795 9799/9799 9661/9661 +f 9796/9796 9866/9866 9727/9727 +f 9867/9867 9795/9795 9727/9727 +f 9792/9792 9708/9708 9849/9849 +f 9728/9728 9833/9833 9729/9729 +f 9602/9602 9798/9798 9797/9797 +f 9833/9833 9728/9728 9797/9797 +f 9798/9798 9730/9730 9868/9868 +f 9869/9869 9730/9730 9799/9799 +f 9731/9731 9870/9870 9732/9732 +f 9870/9870 9800/9800 9732/9732 +f 9733/9733 9800/9800 9871/9871 +f 9733/9733 9802/9802 9734/9734 +f 9665/9665 9872/9872 9801/9801 +f 9802/9802 9873/9873 9665/9665 +f 9874/9874 9690/9690 9801/9801 +f 9805/9805 9735/9735 9803/9803 +f 9803/9803 9667/9667 9875/9875 +f 9667/9667 9804/9804 9876/9876 +f 9805/9805 9806/9806 9668/9668 +f 9671/9671 9806/9806 9828/9828 +f 9804/9804 9736/9736 9877/9877 +f 9808/9808 9807/9807 9670/9670 +f 9736/9736 9807/9807 9878/9878 +f 9808/9808 9673/9673 9810/9810 +f 9737/9737 9809/9809 9810/9810 +f 9738/9738 9770/9770 9879/9879 +f 9880/9880 9739/9739 9738/9738 +f 9739/9739 9880/9880 9740/9740 +f 9811/9811 9881/9881 9612/9612 +f 9880/9880 9811/9811 9740/9740 +f 9881/9881 9812/9812 9612/9612 +f 9813/9813 9677/9677 9812/9812 +f 9742/9742 9813/9813 9882/9882 +f 9882/9882 9744/9744 9742/9742 +f 9743/9743 9745/9745 9883/9883 +f 9752/9752 9743/9743 9884/9884 +f 9744/9744 9882/9882 9814/9814 +f 9679/9679 9814/9814 9885/9885 +f 9815/9815 9886/9886 9745/9745 +f 9815/9815 9679/9679 9887/9887 +f 9748/9748 9888/9888 9746/9746 +f 9888/9888 9749/9749 9746/9746 +f 9889/9889 9816/9816 9747/9747 +f 9816/9816 9890/9890 9748/9748 +f 9750/9750 9749/9749 9891/9891 +f 9817/9817 9750/9750 9891/9891 +f 9681/9681 9819/9819 9818/9818 +f 9818/9818 9889/9889 9747/9747 +f 9819/9819 9751/9751 9821/9821 +f 9752/9752 9884/9884 9820/9820 +f 9821/9821 9682/9682 9820/9820 +f 9892/9892 9809/9809 9753/9753 +f 9684/9684 9893/9893 9822/9822 +f 9753/9753 9822/9822 9892/9892 +f 9823/9823 9754/9754 9817/9817 +f 9684/9684 9824/9824 9894/9894 +f 9824/9824 9755/9755 9895/9895 +f 9756/9756 9895/9895 9755/9755 +f 9756/9756 9823/9823 9896/9896 +f 9685/9685 9897/9897 9825/9825 +f 9897/9897 9685/9685 9826/9826 +f 9826/9826 9757/9757 9898/9898 +f 9899/9899 9757/9757 9827/9827 +f 9829/9829 9687/9687 9828/9828 +f 9758/9758 9899/9899 9827/9827 +f 9829/9829 9900/9900 9758/9758 +f 9825/9825 9901/9901 9759/9759 +f 9870/9870 9731/9731 9759/9759 +f 9902/9902 9760/9760 9830/9830 +f 9903/9903 9830/9830 9690/9690 +f 9760/9760 9902/9902 9761/9761 +f 9902/9902 9762/9762 9761/9761 +f 9904/9904 9831/9831 9762/9762 +f 9831/9831 9905/9905 9692/9692 +f 9832/9832 9692/9692 9906/9906 +f 9833/9833 9835/9835 9635/9635 +f 9695/9695 9834/9834 9907/9907 +f 9694/9694 9836/9836 9834/9834 +f 9835/9835 9908/9908 9763/9763 +f 9909/9909 9836/9836 9763/9763 +f 9695/9695 9907/9907 9837/9837 +f 9768/9768 9764/9764 9837/9837 +f 9910/9910 9771/9771 9766/9766 +f 9838/9838 9699/9699 9911/9911 +f 9766/9766 9838/9838 9910/9910 +f 9767/9767 9912/9912 9769/9769 +f 9768/9768 9912/9912 9767/9767 +f 9701/9701 9839/9839 9840/9840 +f 9769/9769 9913/9913 9839/9839 +f 9914/9914 9699/9699 9840/9840 +f 9843/9843 9841/9841 9703/9703 +f 9702/9702 9841/9841 9915/9915 +f 9842/9842 9702/9702 9915/9915 +f 9770/9770 9842/9842 9879/9879 +f 9772/9772 9771/9771 9910/9910 +f 9772/9772 9910/9910 9843/9843 +f 9845/9845 9916/9916 9705/9705 +f 9846/9846 9848/9848 9773/9773 +f 9705/9705 9916/9916 9846/9846 +f 9917/9917 9847/9847 9706/9706 +f 9918/9918 9706/9706 9848/9848 +f 9919/9919 9774/9774 9847/9847 +f 9844/9844 9774/9774 9920/9920 +f 9921/9921 9849/9849 9775/9775 +f 9844/9844 9921/9921 9775/9775 +f 9922/9922 9850/9850 9776/9776 +f 9710/9710 9850/9850 9851/9851 +f 9777/9777 9851/9851 9923/9923 +f 9778/9778 9852/9852 9924/9924 +f 9925/9925 9852/9852 9712/9712 +f 9926/9926 9853/9853 9777/9777 +f 9853/9853 9925/9925 9712/9712 +f 9924/9924 9854/9854 9778/9778 +f 9927/9927 9779/9779 9855/9855 +f 9928/9928 9856/9856 9779/9779 +f 9716/9716 9856/9856 9857/9857 +f 9782/9782 9929/9929 9780/9780 +f 9930/9930 9855/9855 9780/9780 +f 9931/9931 9782/9782 9781/9781 +f 9783/9783 9932/9932 9781/9781 +f 9719/9719 9857/9857 9858/9858 +f 9783/9783 9854/9854 9924/9924 +f 9784/9784 9922/9922 9776/9776 +f 9933/9933 9784/9784 9785/9785 +f 9933/9933 9785/9785 9832/9832 +f 9934/9934 9720/9720 9858/9858 +f 9935/9935 9859/9859 9786/9786 +f 9721/9721 9859/9859 9860/9860 +f 9861/9861 9787/9787 9860/9860 +f 9936/9936 9788/9788 9861/9861 +f 9788/9788 9937/9937 9845/9845 +f 9786/9786 9862/9862 9935/9935 +f 9720/9720 9934/9934 9862/9862 +f 9790/9790 9789/9789 9938/9938 +f 9790/9790 9939/9939 9863/9863 +f 9940/9940 9791/9791 9863/9863 +f 9791/9791 9940/9940 9794/9794 +f 9849/9849 9864/9864 9792/9792 +f 9864/9864 9941/9941 9789/9789 +f 9942/9942 9793/9793 9865/9865 +f 9796/9796 9793/9793 9943/9943 +f 9865/9865 9794/9794 9942/9942 +f 9944/9944 9799/9799 9795/9795 +f 9866/9866 9945/9945 9727/9727 +f 9866/9866 9796/9796 9946/9946 +f 9867/9867 9944/9944 9795/9795 +f 9947/9947 9867/9867 9727/9727 +f 9798/9798 9948/9948 9797/9797 +f 9797/9797 9835/9835 9833/9833 +f 9798/9798 9868/9868 9948/9948 +f 9730/9730 9869/9869 9868/9868 +f 9944/9944 9869/9869 9799/9799 +f 9800/9800 9870/9870 9871/9871 +f 9871/9871 9949/9949 9733/9733 +f 9802/9802 9733/9733 9950/9950 +f 9872/9872 9665/9665 9951/9951 +f 9801/9801 9872/9872 9874/9874 +f 9873/9873 9802/9802 9950/9950 +f 9873/9873 9951/9951 9665/9665 +f 9874/9874 9903/9903 9690/9690 +f 9952/9952 9805/9805 9803/9803 +f 9876/9876 9875/9875 9667/9667 +f 9875/9875 9953/9953 9803/9803 +f 9877/9877 9876/9876 9804/9804 +f 9806/9806 9805/9805 9954/9954 +f 9828/9828 9806/9806 9954/9954 +f 9736/9736 9955/9955 9877/9877 +f 9807/9807 9808/9808 9956/9956 +f 9878/9878 9807/9807 9956/9956 +f 9955/9955 9736/9736 9878/9878 +f 9957/9957 9808/9808 9810/9810 +f 9810/9810 9809/9809 9958/9958 +f 9959/9959 9738/9738 9879/9879 +f 9738/9738 9960/9960 9880/9880 +f 9881/9881 9811/9811 9961/9961 +f 9811/9811 9880/9880 9961/9961 +f 9812/9812 9881/9881 9813/9813 +f 9882/9882 9813/9813 9962/9962 +f 9883/9883 9884/9884 9743/9743 +f 9883/9883 9745/9745 9963/9963 +f 9964/9964 9814/9814 9882/9882 +f 9885/9885 9964/9964 9679/9679 +f 9885/9885 9814/9814 9964/9964 +f 9965/9965 9886/9886 9815/9815 +f 9745/9745 9886/9886 9966/9966 +f 9964/9964 9887/9887 9679/9679 +f 9815/9815 9887/9887 9967/9967 +f 9888/9888 9748/9748 9968/9968 +f 9891/9891 9749/9749 9888/9888 +f 9816/9816 9889/9889 9969/9969 +f 9748/9748 9890/9890 9968/9968 +f 9890/9890 9816/9816 9970/9970 +f 9891/9891 9823/9823 9817/9817 +f 9818/9818 9819/9819 9971/9971 +f 9971/9971 9889/9889 9818/9818 +f 9819/9819 9821/9821 9883/9883 +f 9820/9820 9884/9884 9883/9883 +f 9821/9821 9820/9820 9883/9883 +f 9892/9892 9972/9972 9809/9809 +f 9822/9822 9893/9893 9973/9973 +f 9684/9684 9974/9974 9893/9893 +f 9822/9822 9973/9973 9892/9892 +f 9894/9894 9974/9974 9684/9684 +f 9824/9824 9975/9975 9894/9894 +f 9976/9976 9824/9824 9895/9895 +f 9895/9895 9756/9756 9896/9896 +f 9896/9896 9823/9823 9891/9891 +f 9897/9897 9977/9977 9825/9825 +f 9826/9826 9978/9978 9897/9897 +f 9898/9898 9757/9757 9979/9979 +f 9978/9978 9826/9826 9898/9898 +f 9757/9757 9899/9899 9979/9979 +f 9828/9828 9954/9954 9829/9829 +f 9758/9758 9980/9980 9899/9899 +f 9980/9980 9758/9758 9900/9900 +f 9829/9829 9981/9981 9900/9900 +f 9870/9870 9759/9759 9901/9901 +f 9825/9825 9977/9977 9901/9901 +f 9830/9830 9982/9982 9902/9902 +f 9983/9983 9830/9830 9903/9903 +f 9762/9762 9902/9902 9904/9904 +f 9904/9904 9905/9905 9831/9831 +f 9906/9906 9692/9692 9905/9905 +f 9832/9832 9906/9906 9984/9984 +f 9985/9985 9907/9907 9834/9834 +f 9836/9836 9985/9985 9834/9834 +f 9908/9908 9909/9909 9763/9763 +f 9908/9908 9835/9835 9948/9948 +f 9986/9986 9836/9836 9909/9909 +f 9987/9987 9837/9837 9907/9907 +f 9987/9987 9768/9768 9837/9837 +f 9838/9838 9911/9911 9988/9988 +f 9911/9911 9699/9699 9914/9914 +f 9910/9910 9838/9838 9989/9989 +f 9769/9769 9912/9912 9913/9913 +f 9912/9912 9768/9768 9987/9987 +f 9840/9840 9839/9839 9990/9990 +f 9839/9839 9913/9913 9990/9990 +f 9840/9840 9991/9991 9914/9914 +f 9843/9843 9992/9992 9841/9841 +f 9841/9841 9993/9993 9915/9915 +f 9879/9879 9842/9842 9915/9915 +f 9910/9910 9989/9989 9843/9843 +f 9937/9937 9916/9916 9845/9845 +f 9994/9994 9848/9848 9846/9846 +f 9916/9916 9995/9995 9846/9846 +f 9996/9996 9847/9847 9917/9917 +f 9706/9706 9918/9918 9917/9917 +f 9918/9918 9848/9848 9994/9994 +f 9997/9997 9919/9919 9847/9847 +f 9774/9774 9919/9919 9998/9998 +f 9774/9774 9998/9998 9920/9920 +f 9999/9999 9844/9844 9920/9920 +f 9921/9921 9864/9864 9849/9849 +f 9921/9921 9844/9844 9999/9999 +f 9850/9850 9922/9922 10000/10000 +f 10000/10000 9851/9851 9850/9850 +f 9851/9851 10001/10001 9923/9923 +f 10002/10002 9777/9777 9923/9923 +f 9924/9924 9852/9852 10003/10003 +f 9777/9777 10002/10002 9926/9926 +f 10004/10004 9853/9853 9926/9926 +f 9925/9925 9853/9853 10004/10004 +f 9779/9779 9927/9927 9928/9928 +f 9855/9855 9930/9930 9927/9927 +f 9856/9856 9928/9928 10005/10005 +f 9856/9856 10005/10005 9857/9857 +f 9931/9931 9929/9929 9782/9782 +f 9780/9780 9929/9929 10006/10006 +f 9930/9930 9780/9780 10006/10006 +f 9781/9781 9932/9932 9931/9931 +f 9932/9932 9783/9783 10007/10007 +f 9857/9857 10008/10008 9858/9858 +f 10007/10007 9783/9783 9924/9924 +f 9922/9922 9784/9784 10000/10000 +f 9784/9784 9933/9933 10000/10000 +f 9933/9933 9832/9832 9984/9984 +f 9858/9858 10008/10008 9934/9934 +f 9859/9859 9935/9935 10009/10009 +f 9859/9859 10010/10010 9860/9860 +f 9860/9860 10011/10011 9861/9861 +f 9788/9788 9936/9936 9937/9937 +f 9936/9936 9861/9861 10011/10011 +f 10009/10009 9935/9935 9862/9862 +f 10012/10012 9862/9862 9934/9934 +f 9938/9938 9789/9789 10013/10013 +f 10013/10013 9790/9790 9938/9938 +f 9790/9790 10013/10013 9939/9939 +f 9939/9939 10014/10014 9863/9863 +f 10014/10014 9940/9940 9863/9863 +f 9794/9794 9940/9940 9942/9942 +f 9941/9941 10015/10015 9789/9789 +f 9864/9864 9921/9921 9941/9941 +f 9942/9942 9943/9943 9793/9793 +f 9946/9946 9796/9796 9943/9943 +f 9945/9945 9947/9947 9727/9727 +f 9945/9945 9866/9866 10016/10016 +f 9866/9866 9946/9946 10017/10017 +f 9867/9867 10018/10018 9944/9944 +f 9947/9947 10019/10019 9867/9867 +f 9797/9797 9948/9948 9835/9835 +f 9868/9868 10020/10020 9948/9948 +f 10021/10021 9868/9868 9869/9869 +f 9944/9944 10022/10022 9869/9869 +f 10023/10023 9871/9871 9870/9870 +f 10024/10024 9949/9949 9871/9871 +f 9950/9950 9733/9733 9949/9949 +f 9872/9872 9951/9951 9874/9874 +f 9873/9873 9950/9950 10025/10025 +f 10025/10025 9951/9951 9873/9873 +f 10026/10026 9903/9903 9874/9874 +f 9952/9952 9803/9803 9953/9953 +f 10027/10027 9805/9805 9952/9952 +f 9875/9875 9876/9876 9953/9953 +f 9877/9877 10028/10028 9876/9876 +f 10027/10027 9954/9954 9805/9805 +f 9877/9877 9955/9955 10028/10028 +f 10029/10029 9956/9956 9808/9808 +f 10030/10030 9878/9878 9956/9956 +f 9955/9955 9878/9878 10030/10030 +f 9810/9810 9958/9958 9957/9957 +f 9957/9957 10029/10029 9808/9808 +f 9809/9809 9972/9972 9958/9958 +f 9738/9738 9959/9959 9960/9960 +f 9879/9879 9915/9915 9959/9959 +f 9961/9961 9880/9880 9960/9960 +f 9961/9961 10031/10031 9881/9881 +f 9962/9962 9813/9813 9881/9881 +f 9882/9882 9962/9962 9887/9887 +f 9963/9963 10032/10032 9883/9883 +f 9966/9966 9963/9963 9745/9745 +f 9887/9887 9964/9964 9882/9882 +f 10033/10033 9965/9965 9815/9815 +f 10034/10034 9886/9886 9965/9965 +f 10035/10035 9966/9966 9886/9886 +f 9887/9887 9962/9962 9967/9967 +f 9815/9815 9967/9967 10033/10033 +f 9888/9888 9968/9968 10036/10036 +f 9888/9888 10037/10037 9891/9891 +f 10032/10032 9969/9969 9889/9889 +f 10038/10038 9816/9816 9969/9969 +f 9968/9968 9890/9890 10039/10039 +f 9970/9970 10039/10039 9890/9890 +f 9970/9970 9816/9816 10038/10038 +f 10032/10032 9971/9971 9819/9819 +f 9971/9971 10032/10032 9889/9889 +f 9883/9883 10032/10032 9819/9819 +f 9892/9892 10040/10040 9972/9972 +f 9973/9973 9893/9893 10041/10041 +f 9974/9974 10041/10041 9893/9893 +f 9892/9892 9973/9973 10040/10040 +f 9894/9894 10042/10042 9974/9974 +f 9975/9975 9824/9824 10043/10043 +f 9975/9975 10044/10044 9894/9894 +f 9824/9824 9976/9976 10045/10045 +f 9976/9976 9895/9895 10046/10046 +f 9895/9895 9896/9896 10046/10046 +f 9891/9891 10047/10047 9896/9896 +f 9977/9977 9897/9897 10048/10048 +f 10049/10049 9897/9897 9978/9978 +f 9979/9979 9978/9978 9898/9898 +f 9979/9979 9899/9899 10050/10050 +f 9981/9981 9829/9829 9954/9954 +f 10051/10051 9899/9899 9980/9980 +f 9980/9980 9900/9900 10052/10052 +f 9900/9900 9981/9981 10053/10053 +f 9870/9870 9901/9901 10023/10023 +f 9977/9977 10054/10054 9901/9901 +f 9902/9902 9982/9982 9904/9904 +f 9830/9830 10055/10055 9982/9982 +f 9903/9903 10026/10026 9983/9983 +f 9983/9983 10055/10055 9830/9830 +f 10056/10056 9905/9905 9904/9904 +f 9906/9906 9905/9905 10057/10057 +f 9906/9906 10058/10058 9984/9984 +f 10059/10059 9907/9907 9985/9985 +f 9985/9985 9836/9836 10060/10060 +f 9909/9909 9908/9908 9986/9986 +f 10020/10020 9908/9908 9948/9948 +f 10060/10060 9836/9836 9986/9986 +f 9987/9987 9907/9907 10061/10061 +f 9988/9988 9911/9911 9991/9991 +f 9989/9989 9838/9838 9988/9988 +f 9914/9914 9991/9991 9911/9911 +f 9912/9912 10062/10062 9913/9913 +f 10063/10063 9912/9912 9987/9987 +f 9990/9990 9991/9991 9840/9840 +f 10064/10064 9990/9990 9913/9913 +f 9992/9992 9843/9843 10065/10065 +f 9841/9841 9992/9992 10066/10066 +f 10067/10067 9915/9915 9993/9993 +f 9993/9993 9841/9841 10068/10068 +f 9843/9843 9989/9989 10065/10065 +f 10069/10069 9916/9916 9937/9937 +f 10070/10070 9994/9994 9846/9846 +f 10071/10071 9995/9995 9916/9916 +f 10070/10070 9846/9846 9995/9995 +f 9847/9847 9996/9996 9997/9997 +f 9918/9918 9996/9996 9917/9917 +f 9994/9994 10072/10072 9918/9918 +f 9919/9919 9997/9997 10073/10073 +f 10074/10074 9998/9998 9919/9919 +f 9998/9998 10075/10075 9920/9920 +f 9920/9920 10075/10075 9999/9999 +f 9921/9921 9999/9999 9941/9941 +f 10001/10001 9851/9851 10000/10000 +f 10001/10001 10076/10076 9923/9923 +f 10077/10077 10002/10002 9923/9923 +f 10003/10003 10007/10007 9924/9924 +f 10078/10078 9926/9926 10002/10002 +f 9926/9926 10078/10078 10004/10004 +f 10079/10079 9925/9925 10004/10004 +f 10080/10080 9928/9928 9927/9927 +f 10081/10081 10005/10005 9928/9928 +f 9857/9857 10005/10005 10008/10008 +f 9931/9931 10082/10082 9929/9929 +f 10006/10006 9929/9929 10083/10083 +f 9931/9931 9932/9932 10082/10082 +f 10000/10000 9933/9933 10084/10084 +f 10084/10084 9933/9933 9984/9984 +f 10008/10008 10085/10085 9934/9934 +f 9859/9859 10009/10009 10086/10086 +f 10011/10011 9860/9860 10010/10010 +f 10087/10087 10010/10010 9859/9859 +f 10069/10069 9937/9937 9936/9936 +f 10088/10088 9936/9936 10011/10011 +f 10012/10012 10009/10009 9862/9862 +f 9934/9934 10085/10085 10012/10012 +f 10013/10013 9789/9789 10015/10015 +f 10089/10089 9939/9939 10013/10013 +f 10014/10014 9939/9939 10090/10090 +f 10014/10014 10091/10091 9940/9940 +f 9940/9940 10092/10092 9942/9942 +f 9941/9941 10093/10093 10015/10015 +f 10092/10092 9943/9943 9942/9942 +f 9946/9946 9943/9943 10094/10094 +f 9945/9945 10016/10016 9947/9947 +f 9866/9866 10017/10017 10016/10016 +f 10017/10017 9946/9946 10095/10095 +f 9944/9944 10018/10018 10022/10022 +f 10019/10019 10018/10018 9867/9867 +f 10096/10096 10019/10019 9947/9947 +f 10020/10020 9868/9868 10097/10097 +f 10021/10021 10098/10098 9868/9868 +f 10022/10022 10021/10021 9869/9869 +f 10023/10023 10099/10099 9871/9871 +f 10100/10100 9949/9949 10024/10024 +f 10024/10024 9871/9871 10099/10099 +f 10101/10101 9950/9950 9949/9949 +f 9951/9951 10026/10026 9874/9874 +f 10025/10025 9950/9950 10101/10101 +f 10102/10102 9951/9951 10025/10025 +f 9953/9953 10103/10103 9952/9952 +f 9981/9981 10027/10027 9952/9952 +f 9876/9876 10104/10104 9953/9953 +f 10028/10028 10104/10104 9876/9876 +f 9954/9954 10027/10027 9981/9981 +f 10028/10028 9955/9955 10105/10105 +f 10106/10106 9956/9956 10029/10029 +f 10030/10030 9956/9956 10107/10107 +f 10030/10030 10105/10105 9955/9955 +f 9958/9958 10108/10108 9957/9957 +f 10029/10029 9957/9957 10108/10108 +f 10109/10109 9958/9958 9972/9972 +f 9960/9960 9959/9959 10110/10110 +f 9959/9959 9915/9915 10111/10111 +f 10112/10112 9961/9961 9960/9960 +f 10031/10031 9962/9962 9881/9881 +f 10031/10031 9961/9961 10112/10112 +f 10113/10113 10032/10032 9963/9963 +f 9966/9966 10114/10114 9963/9963 +f 10115/10115 9965/9965 10033/10033 +f 10116/10116 9886/9886 10034/10034 +f 9965/9965 10117/10117 10034/10034 +f 9966/9966 10035/10035 10118/10118 +f 9886/9886 10116/10116 10035/10035 +f 9967/9967 9962/9962 10031/10031 +f 10119/10119 10033/10033 9967/9967 +f 10037/10037 9888/9888 10036/10036 +f 9968/9968 10120/10120 10036/10036 +f 9891/9891 10037/10037 10047/10047 +f 9969/9969 10032/10032 10121/10121 +f 10121/10121 10038/10038 9969/9969 +f 9968/9968 10039/10039 10120/10120 +f 9970/9970 10122/10122 10039/10039 +f 10121/10121 9970/9970 10038/10038 +f 10040/10040 10123/10123 9972/9972 +f 9973/9973 10041/10041 10124/10124 +f 10125/10125 10041/10041 9974/9974 +f 10126/10126 10040/10040 9973/9973 +f 10044/10044 10042/10042 9894/9894 +f 9974/9974 10042/10042 10125/10125 +f 10043/10043 9824/9824 10045/10045 +f 9975/9975 10043/10043 10127/10127 +f 10127/10127 10044/10044 9975/9975 +f 10045/10045 9976/9976 10128/10128 +f 9976/9976 10046/10046 10129/10129 +f 10047/10047 10046/10046 9896/9896 +f 10130/10130 9977/9977 10048/10048 +f 10049/10049 10048/10048 9897/9897 +f 9978/9978 10131/10131 10049/10049 +f 9978/9978 9979/9979 10131/10131 +f 10050/10050 10132/10132 9979/9979 +f 9899/9899 10051/10051 10050/10050 +f 10051/10051 9980/9980 10052/10052 +f 9900/9900 10053/10053 10052/10052 +f 9952/9952 10053/10053 9981/9981 +f 10023/10023 9901/9901 10054/10054 +f 10130/10130 10054/10054 9977/9977 +f 9982/9982 10133/10133 9904/9904 +f 9982/9982 10055/10055 10133/10133 +f 10134/10134 9983/9983 10026/10026 +f 10135/10135 10055/10055 9983/9983 +f 9904/9904 10133/10133 10056/10056 +f 10136/10136 9905/9905 10056/10056 +f 9905/9905 10137/10137 10057/10057 +f 10058/10058 9906/9906 10057/10057 +f 10058/10058 10138/10138 9984/9984 +f 10139/10139 9907/9907 10059/10059 +f 10140/10140 10059/10059 9985/9985 +f 10060/10060 10140/10140 9985/9985 +f 9986/9986 9908/9908 10020/10020 +f 10141/10141 10060/10060 9986/9986 +f 9907/9907 10139/10139 10061/10061 +f 9987/9987 10061/10061 10142/10142 +f 9988/9988 9991/9991 10143/10143 +f 10144/10144 9989/9989 9988/9988 +f 10062/10062 9912/9912 10063/10063 +f 10064/10064 9913/9913 10062/10062 +f 9987/9987 10145/10145 10063/10063 +f 10146/10146 9991/9991 9990/9990 +f 10147/10147 9990/9990 10064/10064 +f 10148/10148 9992/9992 10065/10065 +f 9992/9992 10149/10149 10066/10066 +f 10068/10068 9841/9841 10066/10066 +f 10150/10150 9915/9915 10067/10067 +f 9993/9993 10151/10151 10067/10067 +f 9993/9993 10068/10068 10152/10152 +f 9989/9989 10153/10153 10065/10065 +f 10069/10069 10154/10154 9916/9916 +f 9994/9994 10070/10070 10155/10155 +f 9995/9995 10071/10071 10156/10156 +f 10157/10157 10071/10071 9916/9916 +f 10158/10158 10070/10070 9995/9995 +f 9997/9997 9996/9996 10159/10159 +f 9996/9996 9918/9918 10072/10072 +f 9994/9994 10160/10160 10072/10072 +f 10161/10161 9919/9919 10073/10073 +f 9997/9997 10159/10159 10073/10073 +f 9919/9919 10162/10162 10074/10074 +f 10163/10163 9998/9998 10074/10074 +f 10075/10075 9998/9998 10164/10164 +f 10075/10075 10165/10165 9999/9999 +f 10165/10165 9941/9941 9999/9999 +f 10084/10084 10001/10001 10000/10000 +f 10166/10166 10076/10076 10001/10001 +f 10076/10076 10077/10077 9923/9923 +f 10077/10077 10078/10078 10002/10002 +f 10078/10078 10079/10079 10004/10004 +f 10081/10081 9928/9928 10080/10080 +f 10167/10167 10080/10080 9927/9927 +f 10085/10085 10005/10005 10081/10081 +f 10085/10085 10008/10008 10005/10005 +f 10083/10083 9929/9929 10082/10082 +f 10082/10082 9932/9932 10083/10083 +f 10084/10084 9984/9984 10138/10138 +f 10087/10087 9859/9859 10086/10086 +f 10086/10086 10009/10009 10080/10080 +f 10010/10010 10087/10087 10011/10011 +f 9936/9936 10168/10168 10069/10069 +f 9936/9936 10088/10088 10168/10168 +f 10169/10169 10088/10088 10011/10011 +f 10012/10012 10080/10080 10009/10009 +f 10081/10081 10012/10012 10085/10085 +f 10089/10089 10013/10013 10015/10015 +f 10089/10089 10170/10170 9939/9939 +f 10090/10090 9939/9939 10170/10170 +f 10014/10014 10090/10090 10091/10091 +f 10171/10171 9940/9940 10091/10091 +f 9940/9940 10171/10171 10092/10092 +f 9941/9941 10165/10165 10093/10093 +f 10093/10093 10172/10172 10015/10015 +f 10094/10094 9943/9943 10092/10092 +f 10094/10094 10095/10095 9946/9946 +f 10173/10173 9947/9947 10016/10016 +f 10017/10017 10174/10174 10016/10016 +f 10095/10095 10174/10174 10017/10017 +f 10018/10018 10021/10021 10022/10022 +f 10096/10096 10018/10018 10019/10019 +f 9947/9947 10173/10173 10096/10096 +f 10097/10097 10175/10175 10020/10020 +f 10098/10098 10097/10097 9868/9868 +f 10176/10176 10098/10098 10021/10021 +f 10023/10023 10177/10177 10099/10099 +f 10100/10100 10024/10024 10099/10099 +f 10101/10101 9949/9949 10100/10100 +f 10026/10026 9951/9951 10102/10102 +f 10025/10025 10101/10101 10178/10178 +f 10025/10025 10179/10179 10102/10102 +f 10103/10103 9953/9953 10104/10104 +f 10103/10103 10053/10053 9952/9952 +f 10104/10104 10028/10028 10180/10180 +f 10028/10028 10105/10105 10180/10180 +f 10106/10106 10029/10029 10181/10181 +f 10182/10182 9956/9956 10106/10106 +f 10107/10107 9956/9956 10182/10182 +f 10030/10030 10107/10107 10183/10183 +f 10183/10183 10105/10105 10030/10030 +f 9958/9958 10184/10184 10108/10108 +f 10029/10029 10108/10108 10181/10181 +f 10184/10184 9958/9958 10109/10109 +f 10123/10123 10109/10109 9972/9972 +f 10110/10110 10185/10185 9960/9960 +f 10186/10186 10110/10110 9959/9959 +f 10111/10111 10187/10187 9959/9959 +f 10111/10111 9915/9915 10188/10188 +f 10189/10189 10112/10112 9960/9960 +f 10031/10031 10112/10112 10190/10190 +f 10121/10121 10032/10032 10113/10113 +f 9963/9963 10114/10114 10113/10113 +f 10118/10118 10114/10114 9966/9966 +f 10115/10115 10033/10033 10119/10119 +f 9965/9965 10115/10115 10117/10117 +f 10116/10116 10034/10034 10191/10191 +f 10191/10191 10034/10034 10117/10117 +f 10118/10118 10035/10035 10192/10192 +f 10193/10193 10035/10035 10116/10116 +f 10190/10190 9967/9967 10031/10031 +f 10190/10190 10119/10119 9967/9967 +f 10194/10194 10037/10037 10036/10036 +f 10120/10120 10194/10194 10036/10036 +f 10194/10194 10047/10047 10037/10037 +f 10195/10195 10120/10120 10039/10039 +f 10196/10196 10122/10122 9970/9970 +f 10195/10195 10039/10039 10122/10122 +f 9970/9970 10121/10121 10197/10197 +f 10198/10198 10123/10123 10040/10040 +f 10124/10124 10041/10041 10125/10125 +f 10124/10124 10126/10126 9973/9973 +f 10126/10126 10198/10198 10040/10040 +f 10042/10042 10044/10044 10199/10199 +f 10125/10125 10042/10042 10200/10200 +f 10128/10128 10043/10043 10045/10045 +f 10043/10043 10201/10201 10127/10127 +f 10127/10127 10202/10202 10044/10044 +f 10128/10128 9976/9976 10129/10129 +f 10129/10129 10046/10046 10203/10203 +f 10194/10194 10046/10046 10047/10047 +f 10204/10204 10130/10130 10048/10048 +f 10049/10049 10205/10205 10048/10048 +f 10049/10049 10131/10131 10206/10206 +f 9979/9979 10132/10132 10131/10131 +f 10207/10207 10132/10132 10050/10050 +f 10208/10208 10050/10050 10051/10051 +f 10051/10051 10052/10052 10209/10209 +f 10053/10053 10210/10210 10052/10052 +f 10211/10211 10023/10023 10054/10054 +f 10054/10054 10130/10130 10212/10212 +f 10133/10133 10055/10055 10213/10213 +f 9983/9983 10134/10134 10214/10214 +f 10134/10134 10026/10026 10102/10102 +f 10215/10215 10055/10055 10135/10135 +f 9983/9983 10214/10214 10135/10135 +f 10216/10216 10056/10056 10133/10133 +f 10136/10136 10137/10137 9905/9905 +f 10216/10216 10136/10136 10056/10056 +f 10217/10217 10057/10057 10137/10137 +f 10057/10057 10218/10218 10058/10058 +f 10058/10058 10218/10218 10138/10138 +f 10219/10219 10139/10139 10059/10059 +f 10140/10140 10220/10220 10059/10059 +f 10140/10140 10060/10060 10141/10141 +f 10141/10141 9986/9986 10020/10020 +f 10139/10139 10221/10221 10061/10061 +f 10061/10061 10221/10221 10142/10142 +f 9987/9987 10142/10142 10145/10145 +f 10146/10146 10143/10143 9991/9991 +f 10222/10222 9988/9988 10143/10143 +f 10153/10153 9989/9989 10144/10144 +f 10144/10144 9988/9988 10222/10222 +f 10063/10063 10223/10223 10062/10062 +f 10064/10064 10062/10062 10224/10224 +f 10223/10223 10063/10063 10145/10145 +f 9990/9990 10147/10147 10146/10146 +f 10147/10147 10064/10064 10225/10225 +f 10226/10226 10148/10148 10065/10065 +f 9992/9992 10148/10148 10149/10149 +f 10066/10066 10149/10149 10227/10227 +f 10228/10228 10068/10068 10066/10066 +f 10150/10150 10188/10188 9915/9915 +f 10150/10150 10067/10067 10229/10229 +f 10151/10151 10230/10230 10067/10067 +f 9993/9993 10231/10231 10151/10151 +f 10232/10232 9993/9993 10152/10152 +f 10228/10228 10152/10152 10068/10068 +f 10065/10065 10153/10153 10226/10226 +f 10154/10154 10069/10069 10233/10233 +f 10154/10154 10234/10234 9916/9916 +f 10155/10155 10160/10160 9994/9994 +f 10158/10158 10155/10155 10070/10070 +f 10156/10156 10071/10071 10235/10235 +f 9995/9995 10156/10156 10158/10158 +f 10071/10071 10157/10157 10236/10236 +f 9916/9916 10234/10234 10157/10157 +f 9996/9996 10237/10237 10159/10159 +f 10072/10072 10237/10237 9996/9996 +f 10238/10238 10072/10072 10160/10160 +f 10162/10162 9919/9919 10161/10161 +f 10073/10073 10239/10239 10161/10161 +f 10159/10159 10240/10240 10073/10073 +f 10241/10241 10074/10074 10162/10162 +f 10163/10163 10074/10074 10242/10242 +f 10243/10243 9998/9998 10163/10163 +f 10164/10164 10165/10165 10075/10075 +f 9998/9998 10243/10243 10164/10164 +f 10001/10001 10084/10084 10166/10166 +f 10166/10166 10244/10244 10076/10076 +f 10076/10076 10245/10245 10077/10077 +f 10077/10077 10246/10246 10078/10078 +f 10079/10079 10078/10078 10247/10247 +f 10012/10012 10081/10081 10080/10080 +f 10167/10167 10086/10086 10080/10080 +f 10084/10084 10138/10138 10166/10166 +f 10087/10087 10086/10086 10169/10169 +f 10087/10087 10169/10169 10011/10011 +f 10233/10233 10069/10069 10168/10168 +f 10172/10172 10089/10089 10015/10015 +f 10089/10089 10172/10172 10170/10170 +f 10090/10090 10170/10170 10248/10248 +f 10090/10090 10248/10248 10091/10091 +f 10091/10091 10249/10249 10171/10171 +f 10250/10250 10092/10092 10171/10171 +f 10165/10165 10164/10164 10093/10093 +f 10251/10251 10172/10172 10093/10093 +f 10092/10092 10252/10252 10094/10094 +f 10094/10094 10253/10253 10095/10095 +f 10173/10173 10016/10016 10254/10254 +f 10255/10255 10016/10016 10174/10174 +f 10256/10256 10174/10174 10095/10095 +f 10096/10096 10021/10021 10018/10018 +f 10173/10173 10254/10254 10096/10096 +f 10257/10257 10175/10175 10097/10097 +f 10020/10020 10175/10175 10141/10141 +f 10097/10097 10098/10098 10258/10258 +f 10259/10259 10098/10098 10176/10176 +f 10176/10176 10021/10021 10096/10096 +f 10177/10177 10023/10023 10211/10211 +f 10177/10177 10260/10260 10099/10099 +f 10261/10261 10100/10100 10099/10099 +f 10100/10100 10178/10178 10101/10101 +f 10025/10025 10178/10178 10179/10179 +f 10179/10179 10134/10134 10102/10102 +f 10103/10103 10104/10104 10262/10262 +f 10103/10103 10262/10262 10053/10053 +f 10104/10104 10180/10180 10263/10263 +f 10105/10105 10264/10264 10180/10180 +f 10181/10181 10265/10265 10106/10106 +f 10182/10182 10106/10106 10265/10265 +f 10182/10182 10266/10266 10107/10107 +f 10267/10267 10183/10183 10107/10107 +f 10264/10264 10105/10105 10183/10183 +f 10184/10184 10268/10268 10108/10108 +f 10108/10108 10268/10268 10181/10181 +f 10269/10269 10184/10184 10109/10109 +f 10269/10269 10109/10109 10123/10123 +f 10185/10185 10110/10110 10270/10270 +f 9960/9960 10185/10185 10271/10271 +f 10110/10110 10186/10186 10272/10272 +f 9959/9959 10273/10273 10186/10186 +f 10187/10187 10111/10111 10274/10274 +f 9959/9959 10187/10187 10275/10275 +f 10188/10188 10276/10276 10111/10111 +f 10277/10277 10112/10112 10189/10189 +f 9960/9960 10278/10278 10189/10189 +f 10277/10277 10190/10190 10112/10112 +f 10113/10113 10279/10279 10121/10121 +f 10279/10279 10113/10113 10114/10114 +f 10280/10280 10114/10114 10118/10118 +f 10281/10281 10115/10115 10119/10119 +f 10115/10115 10282/10282 10117/10117 +f 10116/10116 10191/10191 10193/10193 +f 10117/10117 10283/10283 10191/10191 +f 10192/10192 10284/10284 10118/10118 +f 10035/10035 10285/10285 10192/10192 +f 10285/10285 10035/10035 10193/10193 +f 10190/10190 10286/10286 10119/10119 +f 10287/10287 10194/10194 10120/10120 +f 10288/10288 10120/10120 10195/10195 +f 10196/10196 9970/9970 10197/10197 +f 10196/10196 10289/10289 10122/10122 +f 10289/10289 10195/10195 10122/10122 +f 10197/10197 10121/10121 10279/10279 +f 10123/10123 10198/10198 10269/10269 +f 10125/10125 10290/10290 10124/10124 +f 10290/10290 10126/10126 10124/10124 +f 10126/10126 10291/10291 10198/10198 +f 10199/10199 10200/10200 10042/10042 +f 10292/10292 10199/10199 10044/10044 +f 10290/10290 10125/10125 10200/10200 +f 10128/10128 10293/10293 10043/10043 +f 10201/10201 10043/10043 10294/10294 +f 10201/10201 10202/10202 10127/10127 +f 10044/10044 10202/10202 10292/10292 +f 10295/10295 10128/10128 10129/10129 +f 10194/10194 10203/10203 10046/10046 +f 10203/10203 10295/10295 10129/10129 +f 10130/10130 10204/10204 10212/10212 +f 10204/10204 10048/10048 10205/10205 +f 10205/10205 10049/10049 10206/10206 +f 10296/10296 10206/10206 10131/10131 +f 10296/10296 10131/10131 10132/10132 +f 10132/10132 10207/10207 10297/10297 +f 10207/10207 10050/10050 10298/10298 +f 10050/10050 10208/10208 10298/10298 +f 10299/10299 10208/10208 10051/10051 +f 10052/10052 10300/10300 10209/10209 +f 10209/10209 10299/10299 10051/10051 +f 10053/10053 10262/10262 10210/10210 +f 10300/10300 10052/10052 10210/10210 +f 10212/10212 10211/10211 10054/10054 +f 10133/10133 10213/10213 10216/10216 +f 10213/10213 10055/10055 10215/10215 +f 10214/10214 10134/10134 10179/10179 +f 10301/10301 10215/10215 10135/10135 +f 10214/10214 10302/10302 10135/10135 +f 10303/10303 10137/10137 10136/10136 +f 10216/10216 10304/10304 10136/10136 +f 10305/10305 10057/10057 10217/10217 +f 10137/10137 10303/10303 10217/10217 +f 10305/10305 10218/10218 10057/10057 +f 10138/10138 10218/10218 10306/10306 +f 10307/10307 10139/10139 10219/10219 +f 10059/10059 10220/10220 10219/10219 +f 10258/10258 10220/10220 10140/10140 +f 10141/10141 10257/10257 10140/10140 +f 10139/10139 10307/10307 10221/10221 +f 10142/10142 10221/10221 10308/10308 +f 10309/10309 10145/10145 10142/10142 +f 10310/10310 10143/10143 10146/10146 +f 10143/10143 10311/10311 10222/10222 +f 10312/10312 10153/10153 10144/10144 +f 10144/10144 10222/10222 10312/10312 +f 10223/10223 10224/10224 10062/10062 +f 10225/10225 10064/10064 10224/10224 +f 10223/10223 10145/10145 10309/10309 +f 10147/10147 10225/10225 10146/10146 +f 10226/10226 10313/10313 10148/10148 +f 10149/10149 10148/10148 10314/10314 +f 10227/10227 10149/10149 10314/10314 +f 10066/10066 10227/10227 10228/10228 +f 10188/10188 10150/10150 10315/10315 +f 10316/10316 10150/10150 10229/10229 +f 10229/10229 10067/10067 10230/10230 +f 10230/10230 10151/10151 10317/10317 +f 10231/10231 9993/9993 10232/10232 +f 10151/10151 10231/10231 10318/10318 +f 10232/10232 10152/10152 10319/10319 +f 10319/10319 10152/10152 10228/10228 +f 10226/10226 10153/10153 10320/10320 +f 10233/10233 10321/10321 10154/10154 +f 10154/10154 10322/10322 10234/10234 +f 10160/10160 10155/10155 10323/10323 +f 10155/10155 10158/10158 10323/10323 +f 10071/10071 10236/10236 10235/10235 +f 10324/10324 10156/10156 10235/10235 +f 10156/10156 10325/10325 10158/10158 +f 10235/10235 10236/10236 10157/10157 +f 10326/10326 10157/10157 10234/10234 +f 10327/10327 10159/10159 10237/10237 +f 10072/10072 10328/10328 10237/10237 +f 10329/10329 10072/10072 10238/10238 +f 10160/10160 10330/10330 10238/10238 +f 10162/10162 10161/10161 10331/10331 +f 10161/10161 10239/10239 10332/10332 +f 10240/10240 10239/10239 10073/10073 +f 10159/10159 10327/10327 10240/10240 +f 10162/10162 10333/10333 10241/10241 +f 10334/10334 10074/10074 10241/10241 +f 10242/10242 10074/10074 10334/10334 +f 10335/10335 10163/10163 10242/10242 +f 10163/10163 10336/10336 10243/10243 +f 10337/10337 10164/10164 10243/10243 +f 10338/10338 10076/10076 10244/10244 +f 10166/10166 10138/10138 10244/10244 +f 10076/10076 10338/10338 10245/10245 +f 10245/10245 10246/10246 10077/10077 +f 10339/10339 10078/10078 10246/10246 +f 10078/10078 10339/10339 10247/10247 +f 10233/10233 10168/10168 10340/10340 +f 10341/10341 10170/10170 10172/10172 +f 10342/10342 10248/10248 10170/10170 +f 10248/10248 10249/10249 10091/10091 +f 10249/10249 10343/10343 10171/10171 +f 10092/10092 10250/10250 10252/10252 +f 10171/10171 10344/10344 10250/10250 +f 10093/10093 10164/10164 10251/10251 +f 10251/10251 10345/10345 10172/10172 +f 10094/10094 10252/10252 10346/10346 +f 10253/10253 10094/10094 10346/10346 +f 10095/10095 10253/10253 10256/10256 +f 10347/10347 10254/10254 10016/10016 +f 10174/10174 10348/10348 10255/10255 +f 10347/10347 10016/10016 10255/10255 +f 10174/10174 10256/10256 10349/10349 +f 10254/10254 10176/10176 10096/10096 +f 10141/10141 10175/10175 10257/10257 +f 10257/10257 10097/10097 10258/10258 +f 10350/10350 10258/10258 10098/10098 +f 10098/10098 10259/10259 10350/10350 +f 10176/10176 10351/10351 10259/10259 +f 10177/10177 10211/10211 10352/10352 +f 10177/10177 10352/10352 10260/10260 +f 10260/10260 10261/10261 10099/10099 +f 10353/10353 10100/10100 10261/10261 +f 10178/10178 10100/10100 10354/10354 +f 10178/10178 10355/10355 10179/10179 +f 10263/10263 10262/10262 10104/10104 +f 10263/10263 10180/10180 10356/10356 +f 10180/10180 10264/10264 10356/10356 +f 10357/10357 10265/10265 10181/10181 +f 10182/10182 10265/10265 10358/10358 +f 10182/10182 10358/10358 10266/10266 +f 10267/10267 10107/10107 10266/10266 +f 10359/10359 10183/10183 10267/10267 +f 10183/10183 10360/10360 10264/10264 +f 10361/10361 10268/10268 10184/10184 +f 10268/10268 10362/10362 10181/10181 +f 10184/10184 10269/10269 10363/10363 +f 10270/10270 10110/10110 10364/10364 +f 10270/10270 10365/10365 10185/10185 +f 10365/10365 10271/10271 10185/10185 +f 10271/10271 10366/10366 9960/9960 +f 10272/10272 10367/10367 10110/10110 +f 10186/10186 10273/10273 10272/10272 +f 10275/10275 10273/10273 9959/9959 +f 10274/10274 10111/10111 10368/10368 +f 10368/10368 10187/10187 10274/10274 +f 10187/10187 10273/10273 10275/10275 +f 10188/10188 10369/10369 10276/10276 +f 10111/10111 10276/10276 10370/10370 +f 10189/10189 10371/10371 10277/10277 +f 9960/9960 10366/10366 10278/10278 +f 10278/10278 10371/10371 10189/10189 +f 10190/10190 10277/10277 10371/10371 +f 10279/10279 10114/10114 10372/10372 +f 10280/10280 10373/10373 10114/10114 +f 10118/10118 10284/10284 10280/10280 +f 10282/10282 10115/10115 10281/10281 +f 10281/10281 10119/10119 10374/10374 +f 10282/10282 10283/10283 10117/10117 +f 10191/10191 10285/10285 10193/10193 +f 10375/10375 10191/10191 10283/10283 +f 10376/10376 10284/10284 10192/10192 +f 10285/10285 10377/10377 10192/10192 +f 10190/10190 10371/10371 10286/10286 +f 10119/10119 10286/10286 10374/10374 +f 10287/10287 10203/10203 10194/10194 +f 10120/10120 10288/10288 10287/10287 +f 10195/10195 10378/10378 10288/10288 +f 10197/10197 10289/10289 10196/10196 +f 10195/10195 10289/10289 10378/10378 +f 10279/10279 10372/10372 10197/10197 +f 10198/10198 10291/10291 10269/10269 +f 10126/10126 10290/10290 10291/10291 +f 10379/10379 10200/10200 10199/10199 +f 10380/10380 10199/10199 10292/10292 +f 10379/10379 10290/10290 10200/10200 +f 10293/10293 10381/10381 10043/10043 +f 10293/10293 10128/10128 10295/10295 +f 10382/10382 10294/10294 10043/10043 +f 10294/10294 10383/10383 10201/10201 +f 10201/10201 10292/10292 10202/10202 +f 10384/10384 10295/10295 10203/10203 +f 10212/10212 10204/10204 10385/10385 +f 10205/10205 10385/10385 10204/10204 +f 10386/10386 10205/10205 10206/10206 +f 10387/10387 10206/10206 10296/10296 +f 10132/10132 10388/10388 10296/10296 +f 10207/10207 10389/10389 10297/10297 +f 10297/10297 10390/10390 10132/10132 +f 10391/10391 10207/10207 10298/10298 +f 10208/10208 10299/10299 10298/10298 +f 10392/10392 10209/10209 10300/10300 +f 10299/10299 10209/10209 10393/10393 +f 10210/10210 10262/10262 10394/10394 +f 10394/10394 10300/10300 10210/10210 +f 10212/10212 10385/10385 10211/10211 +f 10213/10213 10304/10304 10216/10216 +f 10215/10215 10395/10395 10213/10213 +f 10214/10214 10179/10179 10302/10302 +f 10396/10396 10215/10215 10301/10301 +f 10135/10135 10302/10302 10301/10301 +f 10136/10136 10397/10397 10303/10303 +f 10397/10397 10136/10136 10304/10304 +f 10217/10217 10398/10398 10305/10305 +f 10217/10217 10303/10303 10399/10399 +f 10305/10305 10306/10306 10218/10218 +f 10244/10244 10138/10138 10306/10306 +f 10219/10219 10400/10400 10307/10307 +f 10350/10350 10219/10219 10220/10220 +f 10257/10257 10258/10258 10140/10140 +f 10258/10258 10350/10350 10220/10220 +f 10307/10307 10401/10401 10221/10221 +f 10221/10221 10401/10401 10308/10308 +f 10402/10402 10142/10142 10308/10308 +f 10403/10403 10309/10309 10142/10142 +f 10143/10143 10310/10310 10311/10311 +f 10404/10404 10310/10310 10146/10146 +f 10311/10311 10312/10312 10222/10222 +f 10320/10320 10153/10153 10312/10312 +f 10223/10223 10405/10405 10224/10224 +f 10224/10224 10405/10405 10225/10225 +f 10406/10406 10223/10223 10309/10309 +f 10146/10146 10225/10225 10407/10407 +f 10320/10320 10313/10313 10226/10226 +f 10148/10148 10313/10313 10408/10408 +f 10148/10148 10409/10409 10314/10314 +f 10314/10314 10410/10410 10227/10227 +f 10411/10411 10228/10228 10227/10227 +f 10369/10369 10188/10188 10315/10315 +f 10316/10316 10315/10315 10150/10150 +f 10229/10229 10412/10412 10316/10316 +f 10230/10230 10413/10413 10229/10229 +f 10413/10413 10230/10230 10317/10317 +f 10151/10151 10318/10318 10317/10317 +f 10318/10318 10231/10231 10232/10232 +f 10319/10319 10414/10414 10232/10232 +f 10228/10228 10415/10415 10319/10319 +f 10321/10321 10233/10233 10416/10416 +f 10154/10154 10321/10321 10417/10417 +f 10322/10322 10154/10154 10417/10417 +f 10234/10234 10322/10322 10326/10326 +f 10323/10323 10418/10418 10160/10160 +f 10158/10158 10419/10419 10323/10323 +f 10156/10156 10324/10324 10420/10420 +f 10324/10324 10235/10235 10421/10421 +f 10419/10419 10158/10158 10325/10325 +f 10325/10325 10156/10156 10420/10420 +f 10157/10157 10422/10422 10235/10235 +f 10157/10157 10326/10326 10422/10422 +f 10237/10237 10423/10423 10327/10327 +f 10328/10328 10072/10072 10329/10329 +f 10328/10328 10424/10424 10237/10237 +f 10329/10329 10238/10238 10425/10425 +f 10238/10238 10330/10330 10425/10425 +f 10330/10330 10160/10160 10426/10426 +f 10333/10333 10162/10162 10331/10331 +f 10331/10331 10161/10161 10427/10427 +f 10428/10428 10332/10332 10239/10239 +f 10332/10332 10427/10427 10161/10161 +f 10239/10239 10240/10240 10428/10428 +f 10423/10423 10240/10240 10327/10327 +f 10241/10241 10333/10333 10429/10429 +f 10242/10242 10334/10334 10241/10241 +f 10335/10335 10242/10242 10430/10430 +f 10431/10431 10163/10163 10335/10335 +f 10336/10336 10337/10337 10243/10243 +f 10163/10163 10432/10432 10336/10336 +f 10164/10164 10337/10337 10251/10251 +f 10338/10338 10244/10244 10433/10433 +f 10434/10434 10245/10245 10338/10338 +f 10246/10246 10245/10245 10434/10434 +f 10339/10339 10246/10246 10435/10435 +f 10416/10416 10233/10233 10340/10340 +f 10170/10170 10341/10341 10436/10436 +f 10172/10172 10345/10345 10341/10341 +f 10342/10342 10437/10437 10248/10248 +f 10170/10170 10436/10436 10342/10342 +f 10438/10438 10249/10249 10248/10248 +f 10343/10343 10344/10344 10171/10171 +f 10439/10439 10343/10343 10249/10249 +f 10344/10344 10252/10252 10250/10250 +f 10337/10337 10345/10345 10251/10251 +f 10346/10346 10252/10252 10440/10440 +f 10253/10253 10346/10346 10441/10441 +f 10253/10253 10349/10349 10256/10256 +f 10347/10347 10442/10442 10254/10254 +f 10348/10348 10174/10174 10349/10349 +f 10348/10348 10443/10443 10255/10255 +f 10255/10255 10443/10443 10347/10347 +f 10176/10176 10254/10254 10351/10351 +f 10350/10350 10259/10259 10219/10219 +f 10259/10259 10351/10351 10400/10400 +f 10352/10352 10211/10211 10385/10385 +f 10260/10260 10352/10352 10386/10386 +f 10261/10261 10260/10260 10444/10444 +f 10100/10100 10353/10353 10354/10354 +f 10444/10444 10353/10353 10261/10261 +f 10355/10355 10178/10178 10354/10354 +f 10179/10179 10355/10355 10445/10445 +f 10262/10262 10263/10263 10394/10394 +f 10263/10263 10356/10356 10446/10446 +f 10356/10356 10264/10264 10447/10447 +f 10357/10357 10448/10448 10265/10265 +f 10181/10181 10362/10362 10357/10357 +f 10265/10265 10448/10448 10358/10358 +f 10358/10358 10449/10449 10266/10266 +f 10267/10267 10266/10266 10450/10450 +f 10267/10267 10451/10451 10359/10359 +f 10183/10183 10359/10359 10360/10360 +f 10264/10264 10360/10360 10452/10452 +f 10268/10268 10361/10361 10362/10362 +f 10361/10361 10184/10184 10363/10363 +f 10363/10363 10269/10269 10291/10291 +f 10364/10364 10110/10110 10367/10367 +f 10364/10364 10453/10453 10270/10270 +f 10270/10270 10454/10454 10365/10365 +f 10365/10365 10455/10455 10271/10271 +f 10456/10456 10366/10366 10271/10271 +f 10457/10457 10367/10367 10272/10272 +f 10458/10458 10272/10272 10273/10273 +f 10368/10368 10111/10111 10370/10370 +f 10368/10368 10459/10459 10187/10187 +f 10273/10273 10187/10187 10460/10460 +f 10276/10276 10369/10369 10461/10461 +f 10276/10276 10461/10461 10370/10370 +f 10278/10278 10366/10366 10462/10462 +f 10286/10286 10371/10371 10278/10278 +f 10372/10372 10114/10114 10373/10373 +f 10463/10463 10373/10373 10280/10280 +f 10284/10284 10376/10376 10280/10280 +f 10464/10464 10282/10282 10281/10281 +f 10281/10281 10374/10374 10465/10465 +f 10283/10283 10282/10282 10464/10464 +f 10191/10191 10375/10375 10285/10285 +f 10283/10283 10464/10464 10375/10375 +f 10377/10377 10376/10376 10192/10192 +f 10285/10285 10466/10466 10377/10377 +f 10286/10286 10467/10467 10374/10374 +f 10468/10468 10203/10203 10287/10287 +f 10288/10288 10468/10468 10287/10287 +f 10288/10288 10378/10378 10469/10469 +f 10289/10289 10197/10197 10372/10372 +f 10378/10378 10289/10289 10469/10469 +f 10379/10379 10291/10291 10290/10290 +f 10470/10470 10379/10379 10199/10199 +f 10380/10380 10470/10470 10199/10199 +f 10292/10292 10471/10471 10380/10380 +f 10472/10472 10381/10381 10293/10293 +f 10381/10381 10382/10382 10043/10043 +f 10293/10293 10295/10295 10384/10384 +f 10382/10382 10473/10473 10294/10294 +f 10383/10383 10294/10294 10474/10474 +f 10201/10201 10383/10383 10471/10471 +f 10292/10292 10201/10201 10471/10471 +f 10475/10475 10384/10384 10203/10203 +f 10205/10205 10386/10386 10385/10385 +f 10387/10387 10386/10386 10206/10206 +f 10388/10388 10387/10387 10296/10296 +f 10132/10132 10390/10390 10388/10388 +f 10476/10476 10389/10389 10207/10207 +f 10477/10477 10297/10297 10389/10389 +f 10478/10478 10390/10390 10297/10297 +f 10207/10207 10391/10391 10476/10476 +f 10391/10391 10298/10298 10299/10299 +f 10392/10392 10300/10300 10479/10479 +f 10480/10480 10209/10209 10392/10392 +f 10393/10393 10481/10481 10299/10299 +f 10209/10209 10480/10480 10393/10393 +f 10479/10479 10300/10300 10394/10394 +f 10213/10213 10397/10397 10304/10304 +f 10395/10395 10215/10215 10396/10396 +f 10213/10213 10395/10395 10397/10397 +f 10302/10302 10179/10179 10482/10482 +f 10301/10301 10483/10483 10396/10396 +f 10302/10302 10484/10484 10301/10301 +f 10303/10303 10397/10397 10485/10485 +f 10305/10305 10398/10398 10486/10486 +f 10217/10217 10399/10399 10398/10398 +f 10399/10399 10303/10303 10487/10487 +f 10306/10306 10305/10305 10488/10488 +f 10306/10306 10433/10433 10244/10244 +f 10259/10259 10400/10400 10219/10219 +f 10400/10400 10489/10489 10307/10307 +f 10307/10307 10489/10489 10401/10401 +f 10308/10308 10401/10401 10490/10490 +f 10402/10402 10308/10308 10491/10491 +f 10402/10402 10403/10403 10142/10142 +f 10403/10403 10492/10492 10309/10309 +f 10310/10310 10493/10493 10311/10311 +f 10404/10404 10494/10494 10310/10310 +f 10407/10407 10404/10404 10146/10146 +f 10493/10493 10312/10312 10311/10311 +f 10493/10493 10320/10320 10312/10312 +f 10405/10405 10223/10223 10495/10495 +f 10225/10225 10405/10405 10496/10496 +f 10492/10492 10406/10406 10309/10309 +f 10495/10495 10223/10223 10406/10406 +f 10225/10225 10497/10497 10407/10407 +f 10498/10498 10313/10313 10320/10320 +f 10148/10148 10408/10408 10409/10409 +f 10408/10408 10313/10313 10498/10498 +f 10314/10314 10409/10409 10499/10499 +f 10410/10410 10314/10314 10500/10500 +f 10227/10227 10410/10410 10411/10411 +f 10411/10411 10415/10415 10228/10228 +f 10501/10501 10369/10369 10315/10315 +f 10315/10315 10316/10316 10502/10502 +f 10503/10503 10316/10316 10412/10412 +f 10413/10413 10412/10412 10229/10229 +f 10317/10317 10504/10504 10413/10413 +f 10317/10317 10318/10318 10414/10414 +f 10232/10232 10414/10414 10318/10318 +f 10319/10319 10505/10505 10414/10414 +f 10415/10415 10505/10505 10319/10319 +f 10506/10506 10321/10321 10416/10416 +f 10417/10417 10321/10321 10506/10506 +f 10326/10326 10322/10322 10417/10417 +f 10419/10419 10418/10418 10323/10323 +f 10426/10426 10160/10160 10418/10418 +f 10421/10421 10420/10420 10324/10324 +f 10235/10235 10507/10507 10421/10421 +f 10325/10325 10508/10508 10419/10419 +f 10508/10508 10325/10325 10420/10420 +f 10507/10507 10235/10235 10422/10422 +f 10422/10422 10326/10326 10509/10509 +f 10510/10510 10423/10423 10237/10237 +f 10511/10511 10328/10328 10329/10329 +f 10424/10424 10328/10328 10512/10512 +f 10237/10237 10424/10424 10510/10510 +f 10425/10425 10511/10511 10329/10329 +f 10330/10330 10513/10513 10425/10425 +f 10330/10330 10426/10426 10514/10514 +f 10515/10515 10333/10333 10331/10331 +f 10331/10331 10427/10427 10515/10515 +f 10516/10516 10332/10332 10428/10428 +f 10427/10427 10332/10332 10516/10516 +f 10428/10428 10240/10240 10423/10423 +f 10517/10517 10429/10429 10333/10333 +f 10518/10518 10241/10241 10429/10429 +f 10241/10241 10519/10519 10242/10242 +f 10242/10242 10519/10519 10430/10430 +f 10335/10335 10430/10430 10431/10431 +f 10432/10432 10163/10163 10431/10431 +f 10336/10336 10345/10345 10337/10337 +f 10520/10520 10336/10336 10432/10432 +f 10433/10433 10521/10521 10338/10338 +f 10434/10434 10338/10338 10522/10522 +f 10434/10434 10435/10435 10246/10246 +f 10523/10523 10339/10339 10435/10435 +f 10341/10341 10524/10524 10436/10436 +f 10341/10341 10345/10345 10524/10524 +f 10248/10248 10437/10437 10438/10438 +f 10342/10342 10525/10525 10437/10437 +f 10436/10436 10526/10526 10342/10342 +f 10249/10249 10438/10438 10439/10439 +f 10344/10344 10343/10343 10527/10527 +f 10343/10343 10439/10439 10528/10528 +f 10440/10440 10252/10252 10344/10344 +f 10441/10441 10346/10346 10440/10440 +f 10253/10253 10441/10441 10529/10529 +f 10529/10529 10349/10349 10253/10253 +f 10530/10530 10442/10442 10347/10347 +f 10254/10254 10442/10442 10351/10351 +f 10531/10531 10348/10348 10349/10349 +f 10443/10443 10348/10348 10532/10532 +f 10530/10530 10347/10347 10443/10443 +f 10351/10351 10533/10533 10400/10400 +f 10386/10386 10352/10352 10385/10385 +f 10386/10386 10444/10444 10260/10260 +f 10353/10353 10534/10534 10354/10354 +f 10353/10353 10444/10444 10535/10535 +f 10354/10354 10534/10534 10355/10355 +f 10482/10482 10179/10179 10445/10445 +f 10536/10536 10445/10445 10355/10355 +f 10537/10537 10394/10394 10263/10263 +f 10356/10356 10538/10538 10446/10446 +f 10539/10539 10263/10263 10446/10446 +f 10538/10538 10356/10356 10447/10447 +f 10447/10447 10264/10264 10452/10452 +f 10357/10357 10540/10540 10448/10448 +f 10357/10357 10362/10362 10540/10540 +f 10541/10541 10358/10358 10448/10448 +f 10541/10541 10449/10449 10358/10358 +f 10449/10449 10542/10542 10266/10266 +f 10450/10450 10266/10266 10542/10542 +f 10450/10450 10543/10543 10267/10267 +f 10543/10543 10451/10451 10267/10267 +f 10359/10359 10451/10451 10544/10544 +f 10545/10545 10360/10360 10359/10359 +f 10545/10545 10452/10452 10360/10360 +f 10362/10362 10361/10361 10546/10546 +f 10363/10363 10547/10547 10361/10361 +f 10291/10291 10547/10547 10363/10363 +f 10548/10548 10364/10364 10367/10367 +f 10548/10548 10453/10453 10364/10364 +f 10453/10453 10454/10454 10270/10270 +f 10549/10549 10365/10365 10454/10454 +f 10455/10455 10365/10365 10549/10549 +f 10550/10550 10271/10271 10455/10455 +f 10271/10271 10551/10551 10456/10456 +f 10552/10552 10366/10366 10456/10456 +f 10553/10553 10367/10367 10457/10457 +f 10272/10272 10554/10554 10457/10457 +f 10555/10555 10272/10272 10458/10458 +f 10273/10273 10460/10460 10458/10458 +f 10368/10368 10370/10370 10556/10556 +f 10459/10459 10368/10368 10556/10556 +f 10557/10557 10187/10187 10459/10459 +f 10460/10460 10187/10187 10557/10557 +f 10461/10461 10369/10369 10501/10501 +f 10461/10461 10558/10558 10370/10370 +f 10278/10278 10462/10462 10559/10559 +f 10560/10560 10462/10462 10366/10366 +f 10286/10286 10278/10278 10561/10561 +f 10373/10373 10562/10562 10372/10372 +f 10463/10463 10280/10280 10563/10563 +f 10463/10463 10564/10564 10373/10373 +f 10563/10563 10280/10280 10376/10376 +f 10464/10464 10281/10281 10465/10465 +f 10374/10374 10467/10467 10465/10465 +f 10565/10565 10285/10285 10375/10375 +f 10464/10464 10465/10465 10375/10375 +f 10377/10377 10566/10566 10376/10376 +f 10567/10567 10377/10377 10466/10466 +f 10466/10466 10285/10285 10565/10565 +f 10286/10286 10561/10561 10467/10467 +f 10468/10468 10475/10475 10203/10203 +f 10469/10469 10468/10468 10288/10288 +f 10289/10289 10372/10372 10568/10568 +f 10289/10289 10568/10568 10469/10469 +f 10547/10547 10291/10291 10379/10379 +f 10569/10569 10379/10379 10470/10470 +f 10570/10570 10470/10470 10380/10380 +f 10380/10380 10471/10471 10570/10570 +f 10381/10381 10472/10472 10382/10382 +f 10293/10293 10384/10384 10472/10472 +f 10472/10472 10473/10473 10382/10382 +f 10294/10294 10473/10473 10474/10474 +f 10383/10383 10474/10474 10571/10571 +f 10572/10572 10471/10471 10383/10383 +f 10573/10573 10384/10384 10475/10475 +f 10535/10535 10386/10386 10387/10387 +f 10535/10535 10387/10387 10388/10388 +f 10574/10574 10388/10388 10390/10390 +f 10389/10389 10476/10476 10575/10575 +f 10297/10297 10477/10477 10478/10478 +f 10575/10575 10477/10477 10389/10389 +f 10390/10390 10478/10478 10574/10574 +f 10476/10476 10391/10391 10481/10481 +f 10391/10391 10299/10299 10481/10481 +f 10392/10392 10479/10479 10576/10576 +f 10392/10392 10576/10576 10480/10480 +f 10577/10577 10481/10481 10393/10393 +f 10480/10480 10578/10578 10393/10393 +f 10479/10479 10394/10394 10537/10537 +f 10485/10485 10395/10395 10396/10396 +f 10395/10395 10485/10485 10397/10397 +f 10482/10482 10579/10579 10302/10302 +f 10580/10580 10483/10483 10301/10301 +f 10483/10483 10581/10581 10396/10396 +f 10580/10580 10301/10301 10484/10484 +f 10484/10484 10302/10302 10582/10582 +f 10485/10485 10487/10487 10303/10303 +f 10398/10398 10583/10583 10486/10486 +f 10486/10486 10488/10488 10305/10305 +f 10398/10398 10399/10399 10584/10584 +f 10399/10399 10487/10487 10585/10585 +f 10433/10433 10306/10306 10488/10488 +f 10400/10400 10586/10586 10489/10489 +f 10587/10587 10401/10401 10489/10489 +f 10587/10587 10490/10490 10401/10401 +f 10491/10491 10308/10308 10490/10490 +f 10588/10588 10402/10402 10491/10491 +f 10403/10403 10402/10402 10589/10589 +f 10403/10403 10589/10589 10492/10492 +f 10493/10493 10310/10310 10590/10590 +f 10404/10404 10591/10591 10494/10494 +f 10494/10494 10592/10592 10310/10310 +f 10407/10407 10593/10593 10404/10404 +f 10493/10493 10498/10498 10320/10320 +f 10594/10594 10405/10405 10495/10495 +f 10496/10496 10497/10497 10225/10225 +f 10595/10595 10496/10496 10405/10405 +f 10406/10406 10492/10492 10495/10495 +f 10596/10596 10407/10407 10497/10497 +f 10408/10408 10597/10597 10409/10409 +f 10590/10590 10408/10408 10498/10498 +f 10598/10598 10499/10499 10409/10409 +f 10500/10500 10314/10314 10499/10499 +f 10500/10500 10411/10411 10410/10410 +f 10415/10415 10411/10411 10599/10599 +f 10315/10315 10502/10502 10501/10501 +f 10503/10503 10502/10502 10316/10316 +f 10503/10503 10412/10412 10600/10600 +f 10601/10601 10412/10412 10413/10413 +f 10602/10602 10504/10504 10317/10317 +f 10504/10504 10601/10601 10413/10413 +f 10505/10505 10317/10317 10414/10414 +f 10415/10415 10603/10603 10505/10505 +f 10416/10416 10604/10604 10506/10506 +f 10506/10506 10605/10605 10417/10417 +f 10417/10417 10606/10606 10326/10326 +f 10426/10426 10418/10418 10514/10514 +f 10607/10607 10420/10420 10421/10421 +f 10421/10421 10507/10507 10509/10509 +f 10509/10509 10507/10507 10422/10422 +f 10326/10326 10606/10606 10509/10509 +f 10510/10510 10608/10608 10423/10423 +f 10328/10328 10511/10511 10512/10512 +f 10424/10424 10512/10512 10609/10609 +f 10608/10608 10510/10510 10424/10424 +f 10511/10511 10425/10425 10610/10610 +f 10513/10513 10330/10330 10514/10514 +f 10610/10610 10425/10425 10513/10513 +f 10333/10333 10515/10515 10611/10611 +f 10515/10515 10427/10427 10612/10612 +f 10516/10516 10428/10428 10613/10613 +f 10516/10516 10612/10612 10427/10427 +f 10428/10428 10423/10423 10614/10614 +f 10429/10429 10517/10517 10615/10615 +f 10616/10616 10517/10517 10333/10333 +f 10518/10518 10617/10617 10241/10241 +f 10429/10429 10615/10615 10518/10518 +f 10241/10241 10617/10617 10519/10519 +f 10519/10519 10618/10618 10430/10430 +f 10619/10619 10431/10431 10430/10430 +f 10431/10431 10520/10520 10432/10432 +f 10524/10524 10345/10345 10336/10336 +f 10336/10336 10520/10520 10524/10524 +f 10521/10521 10433/10433 10620/10620 +f 10521/10521 10522/10522 10338/10338 +f 10522/10522 10435/10435 10434/10434 +f 10435/10435 10621/10621 10523/10523 +f 10622/10622 10436/10436 10524/10524 +f 10438/10438 10437/10437 10623/10623 +f 10525/10525 10624/10624 10437/10437 +f 10526/10526 10525/10525 10342/10342 +f 10436/10436 10625/10625 10526/10526 +f 10438/10438 10623/10623 10439/10439 +f 10528/10528 10527/10527 10343/10343 +f 10626/10626 10344/10344 10527/10527 +f 10528/10528 10439/10439 10627/10627 +f 10344/10344 10628/10628 10440/10440 +f 10629/10629 10441/10441 10440/10440 +f 10441/10441 10630/10630 10529/10529 +f 10529/10529 10531/10531 10349/10349 +f 10442/10442 10530/10530 10631/10631 +f 10632/10632 10351/10351 10442/10442 +f 10348/10348 10531/10531 10633/10633 +f 10348/10348 10634/10634 10532/10532 +f 10635/10635 10443/10443 10532/10532 +f 10530/10530 10443/10443 10635/10635 +f 10533/10533 10351/10351 10632/10632 +f 10533/10533 10586/10586 10400/10400 +f 10444/10444 10386/10386 10535/10535 +f 10535/10535 10534/10534 10353/10353 +f 10534/10534 10536/10536 10355/10355 +f 10445/10445 10636/10636 10482/10482 +f 10637/10637 10445/10445 10536/10536 +f 10537/10537 10263/10263 10539/10539 +f 10446/10446 10538/10538 10539/10539 +f 10638/10638 10538/10538 10447/10447 +f 10452/10452 10639/10639 10447/10447 +f 10448/10448 10540/10540 10640/10640 +f 10540/10540 10362/10362 10641/10641 +f 10448/10448 10640/10640 10541/10541 +f 10642/10642 10449/10449 10541/10541 +f 10449/10449 10642/10642 10542/10542 +f 10542/10542 10643/10643 10450/10450 +f 10450/10450 10644/10644 10543/10543 +f 10644/10644 10451/10451 10543/10543 +f 10544/10544 10451/10451 10645/10645 +f 10544/10544 10639/10639 10359/10359 +f 10639/10639 10545/10545 10359/10359 +f 10639/10639 10452/10452 10545/10545 +f 10546/10546 10361/10361 10646/10646 +f 10641/10641 10362/10362 10546/10546 +f 10646/10646 10361/10361 10547/10547 +f 10367/10367 10553/10553 10548/10548 +f 10647/10647 10453/10453 10548/10548 +f 10454/10454 10453/10453 10648/10648 +f 10648/10648 10549/10549 10454/10454 +f 10549/10549 10649/10649 10455/10455 +f 10550/10550 10455/10455 10649/10649 +f 10551/10551 10271/10271 10550/10550 +f 10456/10456 10551/10551 10552/10552 +f 10366/10366 10552/10552 10560/10560 +f 10457/10457 10650/10650 10553/10553 +f 10554/10554 10651/10651 10457/10457 +f 10272/10272 10555/10555 10554/10554 +f 10458/10458 10652/10652 10555/10555 +f 10458/10458 10460/10460 10653/10653 +f 10556/10556 10370/10370 10558/10558 +f 10459/10459 10556/10556 10557/10557 +f 10557/10557 10654/10654 10460/10460 +f 10655/10655 10461/10461 10501/10501 +f 10558/10558 10461/10461 10656/10656 +f 10657/10657 10559/10559 10462/10462 +f 10278/10278 10559/10559 10658/10658 +f 10659/10659 10462/10462 10560/10560 +f 10561/10561 10278/10278 10658/10658 +f 10372/10372 10562/10562 10568/10568 +f 10660/10660 10562/10562 10373/10373 +f 10564/10564 10463/10463 10563/10563 +f 10373/10373 10564/10564 10660/10660 +f 10566/10566 10563/10563 10376/10376 +f 10661/10661 10465/10465 10467/10467 +f 10662/10662 10565/10565 10375/10375 +f 10465/10465 10662/10662 10375/10375 +f 10566/10566 10377/10377 10567/10567 +f 10662/10662 10567/10567 10466/10466 +f 10565/10565 10662/10662 10466/10466 +f 10561/10561 10663/10663 10467/10467 +f 10468/10468 10664/10664 10475/10475 +f 10469/10469 10664/10664 10468/10468 +f 10469/10469 10568/10568 10664/10664 +f 10379/10379 10646/10646 10547/10547 +f 10665/10665 10569/10569 10470/10470 +f 10646/10646 10379/10379 10569/10569 +f 10570/10570 10666/10666 10470/10470 +f 10572/10572 10570/10570 10471/10471 +f 10384/10384 10573/10573 10472/10472 +f 10473/10473 10472/10472 10667/10667 +f 10668/10668 10474/10474 10473/10473 +f 10571/10571 10474/10474 10669/10669 +f 10383/10383 10571/10571 10572/10572 +f 10573/10573 10475/10475 10670/10670 +f 10535/10535 10388/10388 10671/10671 +f 10574/10574 10672/10672 10388/10388 +f 10575/10575 10476/10476 10673/10673 +f 10674/10674 10478/10478 10477/10477 +f 10575/10575 10675/10675 10477/10477 +f 10574/10574 10478/10478 10676/10676 +f 10677/10677 10476/10476 10481/10481 +f 10576/10576 10479/10479 10678/10678 +f 10480/10480 10576/10576 10679/10679 +f 10578/10578 10577/10577 10393/10393 +f 10481/10481 10577/10577 10680/10680 +f 10681/10681 10578/10578 10480/10480 +f 10682/10682 10479/10479 10537/10537 +f 10396/10396 10683/10683 10485/10485 +f 10482/10482 10684/10684 10579/10579 +f 10582/10582 10302/10302 10579/10579 +f 10483/10483 10580/10580 10685/10685 +f 10581/10581 10483/10483 10686/10686 +f 10581/10581 10683/10683 10396/10396 +f 10687/10687 10580/10580 10484/10484 +f 10688/10688 10484/10484 10582/10582 +f 10485/10485 10683/10683 10487/10487 +f 10398/10398 10689/10689 10583/10583 +f 10583/10583 10690/10690 10486/10486 +f 10690/10690 10488/10488 10486/10486 +f 10584/10584 10689/10689 10398/10398 +f 10584/10584 10399/10399 10585/10585 +f 10487/10487 10691/10691 10585/10585 +f 10433/10433 10488/10488 10620/10620 +f 10586/10586 10692/10692 10489/10489 +f 10587/10587 10489/10489 10693/10693 +f 10587/10587 10694/10694 10490/10490 +f 10695/10695 10491/10491 10490/10490 +f 10696/10696 10402/10402 10588/10588 +f 10697/10697 10588/10588 10491/10491 +f 10589/10589 10402/10402 10698/10698 +f 10699/10699 10492/10492 10589/10589 +f 10590/10590 10498/10498 10493/10493 +f 10592/10592 10590/10590 10310/10310 +f 10700/10700 10494/10494 10591/10591 +f 10404/10404 10701/10701 10591/10591 +f 10494/10494 10702/10702 10592/10592 +f 10593/10593 10701/10701 10404/10404 +f 10407/10407 10703/10703 10593/10593 +f 10594/10594 10595/10595 10405/10405 +f 10495/10495 10699/10699 10594/10594 +f 10497/10497 10496/10496 10594/10594 +f 10496/10496 10595/10595 10594/10594 +f 10492/10492 10699/10699 10495/10495 +f 10596/10596 10704/10704 10407/10407 +f 10596/10596 10497/10497 10704/10704 +f 10598/10598 10409/10409 10597/10597 +f 10590/10590 10597/10597 10408/10408 +f 10499/10499 10598/10598 10705/10705 +f 10706/10706 10500/10500 10499/10499 +f 10500/10500 10707/10707 10411/10411 +f 10415/10415 10599/10599 10708/10708 +f 10707/10707 10599/10599 10411/10411 +f 10501/10501 10502/10502 10503/10503 +f 10503/10503 10600/10600 10655/10655 +f 10601/10601 10600/10600 10412/10412 +f 10602/10602 10709/10709 10504/10504 +f 10505/10505 10602/10602 10317/10317 +f 10601/10601 10504/10504 10709/10709 +f 10710/10710 10603/10603 10415/10415 +f 10603/10603 10711/10711 10505/10505 +f 10506/10506 10604/10604 10712/10712 +f 10417/10417 10605/10605 10606/10606 +f 10713/10713 10605/10605 10506/10506 +f 10607/10607 10421/10421 10714/10714 +f 10509/10509 10714/10714 10421/10421 +f 10606/10606 10714/10714 10509/10509 +f 10715/10715 10423/10423 10608/10608 +f 10512/10512 10511/10511 10716/10716 +f 10609/10609 10608/10608 10424/10424 +f 10716/10716 10609/10609 10512/10512 +f 10511/10511 10610/10610 10717/10717 +f 10610/10610 10513/10513 10514/10514 +f 10616/10616 10333/10333 10611/10611 +f 10515/10515 10718/10718 10611/10611 +f 10718/10718 10515/10515 10612/10612 +f 10428/10428 10719/10719 10613/10613 +f 10720/10720 10516/10516 10613/10613 +f 10612/10612 10516/10516 10720/10720 +f 10423/10423 10715/10715 10614/10614 +f 10719/10719 10428/10428 10614/10614 +f 10517/10517 10721/10721 10615/10615 +f 10616/10616 10722/10722 10517/10517 +f 10518/10518 10723/10723 10617/10617 +f 10615/10615 10723/10723 10518/10518 +f 10519/10519 10617/10617 10618/10618 +f 10724/10724 10430/10430 10618/10618 +f 10725/10725 10619/10619 10430/10430 +f 10619/10619 10726/10726 10431/10431 +f 10431/10431 10726/10726 10520/10520 +f 10520/10520 10622/10622 10524/10524 +f 10727/10727 10521/10521 10620/10620 +f 10521/10521 10728/10728 10522/10522 +f 10435/10435 10522/10522 10621/10621 +f 10523/10523 10621/10621 10729/10729 +f 10730/10730 10436/10436 10622/10622 +f 10437/10437 10624/10624 10623/10623 +f 10624/10624 10525/10525 10731/10731 +f 10732/10732 10525/10525 10526/10526 +f 10730/10730 10625/10625 10436/10436 +f 10732/10732 10526/10526 10625/10625 +f 10439/10439 10623/10623 10627/10627 +f 10626/10626 10527/10527 10528/10528 +f 10628/10628 10344/10344 10626/10626 +f 10733/10733 10528/10528 10627/10627 +f 10628/10628 10629/10629 10440/10440 +f 10629/10629 10734/10734 10441/10441 +f 10734/10734 10630/10630 10441/10441 +f 10531/10531 10529/10529 10630/10630 +f 10631/10631 10632/10632 10442/10442 +f 10735/10735 10631/10631 10530/10530 +f 10734/10734 10633/10633 10531/10531 +f 10633/10633 10736/10736 10348/10348 +f 10348/10348 10737/10737 10634/10634 +f 10738/10738 10532/10532 10634/10634 +f 10635/10635 10532/10532 10738/10738 +f 10739/10739 10530/10530 10635/10635 +f 10632/10632 10735/10735 10533/10533 +f 10740/10740 10586/10586 10533/10533 +f 10534/10534 10535/10535 10741/10741 +f 10741/10741 10536/10536 10534/10534 +f 10636/10636 10684/10684 10482/10482 +f 10636/10636 10445/10445 10637/10637 +f 10637/10637 10536/10536 10741/10741 +f 10537/10537 10539/10539 10742/10742 +f 10539/10539 10538/10538 10743/10743 +f 10638/10638 10744/10744 10538/10538 +f 10447/10447 10744/10744 10638/10638 +f 10639/10639 10745/10745 10447/10447 +f 10746/10746 10640/10640 10540/10540 +f 10641/10641 10747/10747 10540/10540 +f 10748/10748 10541/10541 10640/10640 +f 10748/10748 10642/10642 10541/10541 +f 10749/10749 10542/10542 10642/10642 +f 10643/10643 10750/10750 10450/10450 +f 10749/10749 10643/10643 10542/10542 +f 10751/10751 10644/10644 10450/10450 +f 10451/10451 10644/10644 10752/10752 +f 10645/10645 10451/10451 10752/10752 +f 10544/10544 10645/10645 10753/10753 +f 10639/10639 10544/10544 10745/10745 +f 10754/10754 10546/10546 10646/10646 +f 10754/10754 10641/10641 10546/10546 +f 10553/10553 10755/10755 10548/10548 +f 10647/10647 10648/10648 10453/10453 +f 10548/10548 10756/10756 10647/10647 +f 10757/10757 10549/10549 10648/10648 +f 10649/10649 10549/10549 10757/10757 +f 10550/10550 10649/10649 10758/10758 +f 10551/10551 10550/10550 10759/10759 +f 10551/10551 10760/10760 10552/10552 +f 10552/10552 10761/10761 10560/10560 +f 10457/10457 10651/10651 10650/10650 +f 10762/10762 10553/10553 10650/10650 +f 10651/10651 10554/10554 10763/10763 +f 10554/10554 10555/10555 10652/10652 +f 10652/10652 10458/10458 10764/10764 +f 10458/10458 10653/10653 10764/10764 +f 10653/10653 10460/10460 10654/10654 +f 10765/10765 10556/10556 10558/10558 +f 10766/10766 10557/10557 10556/10556 +f 10767/10767 10654/10654 10557/10557 +f 10461/10461 10655/10655 10656/10656 +f 10655/10655 10501/10501 10503/10503 +f 10765/10765 10558/10558 10656/10656 +f 10657/10657 10768/10768 10559/10559 +f 10462/10462 10659/10659 10657/10657 +f 10658/10658 10559/10559 10769/10769 +f 10761/10761 10659/10659 10560/10560 +f 10663/10663 10561/10561 10658/10658 +f 10568/10568 10562/10562 10770/10770 +f 10660/10660 10770/10770 10562/10562 +f 10771/10771 10564/10564 10563/10563 +f 10564/10564 10772/10772 10660/10660 +f 10566/10566 10771/10771 10563/10563 +f 10465/10465 10661/10661 10662/10662 +f 10467/10467 10773/10773 10661/10661 +f 10774/10774 10566/10566 10567/10567 +f 10774/10774 10567/10567 10662/10662 +f 10467/10467 10663/10663 10773/10773 +f 10475/10475 10664/10664 10775/10775 +f 10776/10776 10664/10664 10568/10568 +f 10777/10777 10569/10569 10665/10665 +f 10665/10665 10470/10470 10666/10666 +f 10646/10646 10569/10569 10777/10777 +f 10666/10666 10570/10570 10778/10778 +f 10778/10778 10570/10570 10572/10572 +f 10472/10472 10573/10573 10779/10779 +f 10472/10472 10779/10779 10667/10667 +f 10473/10473 10667/10667 10668/10668 +f 10669/10669 10474/10474 10668/10668 +f 10669/10669 10780/10780 10571/10571 +f 10572/10572 10571/10571 10781/10781 +f 10775/10775 10670/10670 10475/10475 +f 10782/10782 10573/10573 10670/10670 +f 10388/10388 10672/10672 10671/10671 +f 10535/10535 10671/10671 10783/10783 +f 10672/10672 10574/10574 10784/10784 +f 10673/10673 10675/10675 10575/10575 +f 10476/10476 10677/10677 10673/10673 +f 10478/10478 10674/10674 10676/10676 +f 10785/10785 10674/10674 10477/10477 +f 10477/10477 10675/10675 10785/10785 +f 10676/10676 10784/10784 10574/10574 +f 10786/10786 10677/10677 10481/10481 +f 10479/10479 10787/10787 10678/10678 +f 10788/10788 10576/10576 10678/10678 +f 10576/10576 10789/10789 10679/10679 +f 10681/10681 10480/10480 10679/10679 +f 10790/10790 10577/10577 10578/10578 +f 10680/10680 10577/10577 10791/10791 +f 10680/10680 10786/10786 10481/10481 +f 10681/10681 10792/10792 10578/10578 +f 10787/10787 10479/10479 10682/10682 +f 10682/10682 10537/10537 10742/10742 +f 10793/10793 10579/10579 10684/10684 +f 10579/10579 10793/10793 10582/10582 +f 10580/10580 10794/10794 10685/10685 +f 10686/10686 10483/10483 10685/10685 +f 10691/10691 10581/10581 10686/10686 +f 10683/10683 10581/10581 10691/10691 +f 10580/10580 10687/10687 10795/10795 +f 10484/10484 10796/10796 10687/10687 +f 10797/10797 10688/10688 10582/10582 +f 10798/10798 10484/10484 10688/10688 +f 10487/10487 10683/10683 10691/10691 +f 10799/10799 10583/10583 10689/10689 +f 10800/10800 10690/10690 10583/10583 +f 10690/10690 10801/10801 10488/10488 +f 10802/10802 10689/10689 10584/10584 +f 10802/10802 10584/10584 10585/10585 +f 10803/10803 10585/10585 10691/10691 +f 10801/10801 10620/10620 10488/10488 +f 10693/10693 10489/10489 10692/10692 +f 10740/10740 10692/10692 10586/10586 +f 10693/10693 10694/10694 10587/10587 +f 10490/10490 10694/10694 10804/10804 +f 10491/10491 10695/10695 10805/10805 +f 10806/10806 10695/10695 10490/10490 +f 10698/10698 10402/10402 10696/10696 +f 10697/10697 10696/10696 10588/10588 +f 10805/10805 10697/10697 10491/10491 +f 10589/10589 10698/10698 10699/10699 +f 10597/10597 10590/10590 10592/10592 +f 10807/10807 10494/10494 10700/10700 +f 10700/10700 10591/10591 10808/10808 +f 10701/10701 10809/10809 10591/10591 +f 10702/10702 10494/10494 10807/10807 +f 10810/10810 10592/10592 10702/10702 +f 10593/10593 10811/10811 10701/10701 +f 10704/10704 10703/10703 10407/10407 +f 10812/10812 10593/10593 10703/10703 +f 10699/10699 10497/10497 10594/10594 +f 10497/10497 10813/10813 10704/10704 +f 10598/10598 10597/10597 10810/10810 +f 10499/10499 10705/10705 10706/10706 +f 10705/10705 10598/10598 10814/10814 +f 10500/10500 10706/10706 10707/10707 +f 10599/10599 10815/10815 10708/10708 +f 10710/10710 10415/10415 10708/10708 +f 10707/10707 10816/10816 10599/10599 +f 10600/10600 10817/10817 10655/10655 +f 10600/10600 10601/10601 10818/10818 +f 10711/10711 10709/10709 10602/10602 +f 10505/10505 10711/10711 10602/10602 +f 10709/10709 10818/10818 10601/10601 +f 10603/10603 10710/10710 10711/10711 +f 10604/10604 10819/10819 10712/10712 +f 10713/10713 10506/10506 10712/10712 +f 10713/10713 10606/10606 10605/10605 +f 10606/10606 10820/10820 10714/10714 +f 10608/10608 10609/10609 10715/10715 +f 10716/10716 10511/10511 10821/10821 +f 10822/10822 10609/10609 10716/10716 +f 10821/10821 10511/10511 10717/10717 +f 10514/10514 10717/10717 10610/10610 +f 10616/10616 10611/10611 10823/10823 +f 10611/10611 10718/10718 10824/10824 +f 10825/10825 10718/10718 10612/10612 +f 10719/10719 10826/10826 10613/10613 +f 10827/10827 10720/10720 10613/10613 +f 10825/10825 10612/10612 10720/10720 +f 10715/10715 10719/10719 10614/10614 +f 10517/10517 10828/10828 10721/10721 +f 10723/10723 10615/10615 10721/10721 +f 10517/10517 10722/10722 10828/10828 +f 10722/10722 10616/10616 10823/10823 +f 10829/10829 10617/10617 10723/10723 +f 10830/10830 10618/10618 10617/10617 +f 10724/10724 10618/10618 10830/10830 +f 10725/10725 10430/10430 10724/10724 +f 10725/10725 10831/10831 10619/10619 +f 10726/10726 10619/10619 10832/10832 +f 10726/10726 10730/10730 10520/10520 +f 10622/10622 10520/10520 10730/10730 +f 10727/10727 10620/10620 10801/10801 +f 10728/10728 10521/10521 10727/10727 +f 10621/10621 10522/10522 10728/10728 +f 10728/10728 10729/10729 10621/10621 +f 10833/10833 10623/10623 10624/10624 +f 10731/10731 10525/10525 10732/10732 +f 10731/10731 10834/10834 10624/10624 +f 10730/10730 10835/10835 10625/10625 +f 10625/10625 10836/10836 10732/10732 +f 10837/10837 10627/10627 10623/10623 +f 10838/10838 10626/10626 10528/10528 +f 10839/10839 10628/10628 10626/10626 +f 10837/10837 10733/10733 10627/10627 +f 10733/10733 10838/10838 10528/10528 +f 10629/10629 10628/10628 10839/10839 +f 10734/10734 10629/10629 10840/10840 +f 10630/10630 10734/10734 10531/10531 +f 10735/10735 10632/10632 10631/10631 +f 10530/10530 10739/10739 10735/10735 +f 10633/10633 10734/10734 10841/10841 +f 10842/10842 10736/10736 10633/10633 +f 10348/10348 10736/10736 10843/10843 +f 10843/10843 10737/10737 10348/10348 +f 10634/10634 10737/10737 10844/10844 +f 10634/10634 10845/10845 10738/10738 +f 10846/10846 10635/10635 10738/10738 +f 10635/10635 10846/10846 10739/10739 +f 10735/10735 10740/10740 10533/10533 +f 10535/10535 10637/10637 10741/10741 +f 10636/10636 10847/10847 10684/10684 +f 10636/10636 10637/10637 10783/10783 +f 10742/10742 10539/10539 10743/10743 +f 10538/10538 10744/10744 10743/10743 +f 10745/10745 10744/10744 10447/10447 +f 10848/10848 10640/10640 10746/10746 +f 10747/10747 10746/10746 10540/10540 +f 10641/10641 10754/10754 10747/10747 +f 10640/10640 10848/10848 10748/10748 +f 10642/10642 10748/10748 10849/10849 +f 10749/10749 10642/10642 10850/10850 +f 10450/10450 10750/10750 10851/10851 +f 10750/10750 10643/10643 10852/10852 +f 10749/10749 10852/10852 10643/10643 +f 10450/10450 10851/10851 10751/10751 +f 10853/10853 10644/10644 10751/10751 +f 10644/10644 10853/10853 10752/10752 +f 10853/10853 10645/10645 10752/10752 +f 10753/10753 10645/10645 10854/10854 +f 10753/10753 10745/10745 10544/10544 +f 10646/10646 10855/10855 10754/10754 +f 10755/10755 10553/10553 10856/10856 +f 10548/10548 10755/10755 10756/10756 +f 10857/10857 10648/10648 10647/10647 +f 10858/10858 10647/10647 10756/10756 +f 10757/10757 10648/10648 10857/10857 +f 10758/10758 10649/10649 10757/10757 +f 10550/10550 10758/10758 10759/10759 +f 10760/10760 10551/10551 10759/10759 +f 10761/10761 10552/10552 10760/10760 +f 10763/10763 10650/10650 10651/10651 +f 10762/10762 10856/10856 10553/10553 +f 10650/10650 10859/10859 10762/10762 +f 10652/10652 10763/10763 10554/10554 +f 10652/10652 10764/10764 10860/10860 +f 10653/10653 10654/10654 10764/10764 +f 10556/10556 10765/10765 10861/10861 +f 10861/10861 10766/10766 10556/10556 +f 10557/10557 10766/10766 10862/10862 +f 10764/10764 10654/10654 10767/10767 +f 10767/10767 10557/10557 10862/10862 +f 10656/10656 10655/10655 10863/10863 +f 10864/10864 10765/10765 10656/10656 +f 10657/10657 10865/10865 10768/10768 +f 10866/10866 10559/10559 10768/10768 +f 10659/10659 10865/10865 10657/10657 +f 10867/10867 10769/10769 10559/10559 +f 10658/10658 10769/10769 10868/10868 +f 10869/10869 10659/10659 10761/10761 +f 10658/10658 10868/10868 10663/10663 +f 10776/10776 10568/10568 10770/10770 +f 10770/10770 10660/10660 10870/10870 +f 10772/10772 10564/10564 10771/10771 +f 10772/10772 10870/10870 10660/10660 +f 10771/10771 10566/10566 10871/10871 +f 10662/10662 10661/10661 10872/10872 +f 10873/10873 10661/10661 10773/10773 +f 10774/10774 10871/10871 10566/10566 +f 10872/10872 10774/10774 10662/10662 +f 10874/10874 10773/10773 10663/10663 +f 10775/10775 10664/10664 10875/10875 +f 10664/10664 10776/10776 10875/10875 +f 10876/10876 10777/10777 10665/10665 +f 10666/10666 10778/10778 10665/10665 +f 10646/10646 10777/10777 10877/10877 +f 10778/10778 10572/10572 10781/10781 +f 10878/10878 10779/10779 10573/10573 +f 10879/10879 10667/10667 10779/10779 +f 10668/10668 10667/10667 10880/10880 +f 10780/10780 10669/10669 10668/10668 +f 10571/10571 10780/10780 10881/10881 +f 10781/10781 10571/10571 10882/10882 +f 10670/10670 10775/10775 10883/10883 +f 10573/10573 10782/10782 10878/10878 +f 10670/10670 10883/10883 10782/10782 +f 10671/10671 10672/10672 10884/10884 +f 10637/10637 10535/10535 10783/10783 +f 10783/10783 10671/10671 10884/10884 +f 10672/10672 10784/10784 10884/10884 +f 10673/10673 10885/10885 10675/10675 +f 10677/10677 10786/10786 10673/10673 +f 10676/10676 10674/10674 10886/10886 +f 10785/10785 10886/10886 10674/10674 +f 10675/10675 10886/10886 10785/10785 +f 10784/10784 10676/10676 10887/10887 +f 10678/10678 10787/10787 10888/10888 +f 10788/10788 10789/10789 10576/10576 +f 10888/10888 10788/10788 10678/10678 +f 10889/10889 10679/10679 10789/10789 +f 10681/10681 10679/10679 10889/10889 +f 10791/10791 10577/10577 10790/10790 +f 10790/10790 10578/10578 10792/10792 +f 10791/10791 10890/10890 10680/10680 +f 10680/10680 10891/10891 10786/10786 +f 10889/10889 10792/10792 10681/10681 +f 10742/10742 10787/10787 10682/10682 +f 10892/10892 10793/10793 10684/10684 +f 10793/10793 10893/10893 10582/10582 +f 10795/10795 10794/10794 10580/10580 +f 10894/10894 10685/10685 10794/10794 +f 10685/10685 10895/10895 10686/10686 +f 10686/10686 10896/10896 10691/10691 +f 10687/10687 10794/10794 10795/10795 +f 10796/10796 10484/10484 10897/10897 +f 10687/10687 10796/10796 10898/10898 +f 10688/10688 10797/10797 10798/10798 +f 10582/10582 10899/10899 10797/10797 +f 10484/10484 10798/10798 10897/10897 +f 10800/10800 10583/10583 10799/10799 +f 10689/10689 10900/10900 10799/10799 +f 10901/10901 10690/10690 10800/10800 +f 10801/10801 10690/10690 10901/10901 +f 10689/10689 10802/10802 10902/10902 +f 10903/10903 10802/10802 10585/10585 +f 10896/10896 10803/10803 10691/10691 +f 10903/10903 10585/10585 10803/10803 +f 10692/10692 10904/10904 10693/10693 +f 10905/10905 10692/10692 10740/10740 +f 10906/10906 10694/10694 10693/10693 +f 10804/10804 10907/10907 10490/10490 +f 10906/10906 10804/10804 10694/10694 +f 10805/10805 10695/10695 10908/10908 +f 10908/10908 10695/10695 10806/10806 +f 10806/10806 10490/10490 10909/10909 +f 10696/10696 10813/10813 10698/10698 +f 10910/10910 10696/10696 10697/10697 +f 10805/10805 10911/10911 10697/10697 +f 10698/10698 10497/10497 10699/10699 +f 10592/10592 10810/10810 10597/10597 +f 10912/10912 10807/10807 10700/10700 +f 10591/10591 10913/10913 10808/10808 +f 10808/10808 10912/10912 10700/10700 +f 10811/10811 10809/10809 10701/10701 +f 10809/10809 10913/10913 10591/10591 +f 10807/10807 10914/10914 10702/10702 +f 10814/10814 10810/10810 10702/10702 +f 10593/10593 10915/10915 10811/10811 +f 10916/10916 10703/10703 10704/10704 +f 10593/10593 10812/10812 10915/10915 +f 10917/10917 10812/10812 10703/10703 +f 10698/10698 10813/10813 10497/10497 +f 10704/10704 10813/10813 10916/10916 +f 10814/10814 10598/10598 10810/10810 +f 10918/10918 10706/10706 10705/10705 +f 10705/10705 10814/10814 10918/10918 +f 10707/10707 10706/10706 10918/10918 +f 10815/10815 10599/10599 10919/10919 +f 10708/10708 10815/10815 10920/10920 +f 10710/10710 10708/10708 10921/10921 +f 10816/10816 10707/10707 10918/10918 +f 10599/10599 10816/10816 10922/10922 +f 10818/10818 10817/10817 10600/10600 +f 10655/10655 10817/10817 10863/10863 +f 10709/10709 10711/10711 10923/10923 +f 10709/10709 10923/10923 10818/10818 +f 10711/10711 10710/10710 10921/10921 +f 10820/10820 10713/10713 10712/10712 +f 10606/10606 10713/10713 10820/10820 +f 10822/10822 10715/10715 10609/10609 +f 10716/10716 10821/10821 10924/10924 +f 10716/10716 10924/10924 10822/10822 +f 10611/10611 10925/10925 10823/10823 +f 10824/10824 10718/10718 10926/10926 +f 10925/10925 10611/10611 10824/10824 +f 10926/10926 10718/10718 10825/10825 +f 10822/10822 10826/10826 10719/10719 +f 10826/10826 10927/10927 10613/10613 +f 10720/10720 10827/10827 10825/10825 +f 10928/10928 10827/10827 10613/10613 +f 10715/10715 10822/10822 10719/10719 +f 10721/10721 10828/10828 10929/10929 +f 10721/10721 10929/10929 10723/10723 +f 10722/10722 10930/10930 10828/10828 +f 10931/10931 10722/10722 10823/10823 +f 10723/10723 10932/10932 10829/10829 +f 10829/10829 10933/10933 10617/10617 +f 10934/10934 10830/10830 10617/10617 +f 10830/10830 10725/10725 10724/10724 +f 10831/10831 10725/10725 10830/10830 +f 10619/10619 10831/10831 10832/10832 +f 10935/10935 10726/10726 10832/10832 +f 10726/10726 10835/10835 10730/10730 +f 10901/10901 10727/10727 10801/10801 +f 10936/10936 10728/10728 10727/10727 +f 10728/10728 10936/10936 10729/10729 +f 10834/10834 10833/10833 10624/10624 +f 10937/10937 10623/10623 10833/10833 +f 10938/10938 10731/10731 10732/10732 +f 10834/10834 10731/10731 10938/10938 +f 10939/10939 10625/10625 10835/10835 +f 10732/10732 10836/10836 10938/10938 +f 10836/10836 10625/10625 10940/10940 +f 10623/10623 10937/10937 10837/10837 +f 10838/10838 10941/10941 10626/10626 +f 10626/10626 10941/10941 10839/10839 +f 10837/10837 10942/10942 10733/10733 +f 10943/10943 10838/10838 10733/10733 +f 10629/10629 10839/10839 10944/10944 +f 10840/10840 10629/10629 10841/10841 +f 10840/10840 10841/10841 10734/10734 +f 10739/10739 10740/10740 10735/10735 +f 10841/10841 10842/10842 10633/10633 +f 10736/10736 10842/10842 10945/10945 +f 10843/10843 10736/10736 10946/10946 +f 10843/10843 10947/10947 10737/10737 +f 10737/10737 10948/10948 10844/10844 +f 10949/10949 10634/10634 10844/10844 +f 10634/10634 10950/10950 10845/10845 +f 10846/10846 10738/10738 10845/10845 +f 10740/10740 10739/10739 10846/10846 +f 10636/10636 10951/10951 10847/10847 +f 10847/10847 10892/10892 10684/10684 +f 10783/10783 10951/10951 10636/10636 +f 10743/10743 10952/10952 10742/10742 +f 10744/10744 10953/10953 10743/10743 +f 10744/10744 10745/10745 10954/10954 +f 10848/10848 10746/10746 10955/10955 +f 10955/10955 10746/10746 10747/10747 +f 10754/10754 10956/10956 10747/10747 +f 10848/10848 10957/10957 10748/10748 +f 10849/10849 10748/10748 10957/10957 +f 10849/10849 10850/10850 10642/10642 +f 10852/10852 10749/10749 10850/10850 +f 10750/10750 10958/10958 10851/10851 +f 10852/10852 10959/10959 10750/10750 +f 10751/10751 10851/10851 10960/10960 +f 10751/10751 10961/10961 10853/10853 +f 10645/10645 10853/10853 10854/10854 +f 10753/10753 10854/10854 10962/10962 +f 10954/10954 10745/10745 10753/10753 +f 10646/10646 10877/10877 10855/10855 +f 10855/10855 10956/10956 10754/10754 +f 10963/10963 10755/10755 10856/10856 +f 10858/10858 10756/10756 10755/10755 +f 10647/10647 10858/10858 10857/10857 +f 10857/10857 10964/10964 10757/10757 +f 10757/10757 10964/10964 10758/10758 +f 10759/10759 10758/10758 10965/10965 +f 10966/10966 10760/10760 10759/10759 +f 10761/10761 10760/10760 10869/10869 +f 10763/10763 10859/10859 10650/10650 +f 10762/10762 10967/10967 10856/10856 +f 10762/10762 10859/10859 10968/10968 +f 10860/10860 10763/10763 10652/10652 +f 10764/10764 10767/10767 10860/10860 +f 10765/10765 10969/10969 10861/10861 +f 10861/10861 10970/10970 10766/10766 +f 10862/10862 10766/10766 10970/10970 +f 10862/10862 10860/10860 10767/10767 +f 10864/10864 10656/10656 10863/10863 +f 10864/10864 10971/10971 10765/10765 +f 10768/10768 10865/10865 10972/10972 +f 10768/10768 10973/10973 10866/10866 +f 10867/10867 10559/10559 10866/10866 +f 10865/10865 10659/10659 10974/10974 +f 10769/10769 10867/10867 10975/10975 +f 10868/10868 10769/10769 10976/10976 +f 10659/10659 10869/10869 10974/10974 +f 10868/10868 10874/10874 10663/10663 +f 10776/10776 10770/10770 10870/10870 +f 10772/10772 10771/10771 10977/10977 +f 10772/10772 10977/10977 10870/10870 +f 10978/10978 10771/10771 10871/10871 +f 10661/10661 10873/10873 10872/10872 +f 10979/10979 10873/10873 10773/10773 +f 10774/10774 10980/10980 10871/10871 +f 10872/10872 10981/10981 10774/10774 +f 10874/10874 10979/10979 10773/10773 +f 10875/10875 10982/10982 10775/10775 +f 10983/10983 10875/10875 10776/10776 +f 10984/10984 10777/10777 10876/10876 +f 10778/10778 10876/10876 10665/10665 +f 10877/10877 10777/10777 10984/10984 +f 10778/10778 10781/10781 10876/10876 +f 10879/10879 10779/10779 10878/10878 +f 10985/10985 10667/10667 10879/10879 +f 10880/10880 10667/10667 10986/10986 +f 10668/10668 10880/10880 10780/10780 +f 10780/10780 10880/10880 10881/10881 +f 10571/10571 10881/10881 10882/10882 +f 10987/10987 10781/10781 10882/10882 +f 10775/10775 10988/10988 10883/10883 +f 10989/10989 10878/10878 10782/10782 +f 10782/10782 10883/10883 10990/10990 +f 10991/10991 10783/10783 10884/10884 +f 10992/10992 10884/10884 10784/10784 +f 10675/10675 10885/10885 10993/10993 +f 10673/10673 10786/10786 10885/10885 +f 10994/10994 10676/10676 10886/10886 +f 10993/10993 10886/10886 10675/10675 +f 10784/10784 10887/10887 10995/10995 +f 10676/10676 10994/10994 10887/10887 +f 10888/10888 10787/10787 10996/10996 +f 10788/10788 10997/10997 10789/10789 +f 10998/10998 10788/10788 10888/10888 +f 10889/10889 10789/10789 10999/10999 +f 10791/10791 10790/10790 11000/11000 +f 11001/11001 10790/10790 10792/10792 +f 10890/10890 10791/10791 11002/11002 +f 10890/10890 10891/10891 10680/10680 +f 10891/10891 10885/10885 10786/10786 +f 10889/10889 11003/11003 10792/10792 +f 10742/10742 10953/10953 10787/10787 +f 10893/10893 10793/10793 10892/10892 +f 10582/10582 10893/10893 10899/10899 +f 11004/11004 10685/10685 10894/10894 +f 10794/10794 11005/11005 10894/10894 +f 11004/11004 10895/10895 10685/10685 +f 10896/10896 10686/10686 10895/10895 +f 10794/10794 10687/10687 11006/11006 +f 11007/11007 10796/10796 10897/10897 +f 10796/10796 11007/11007 10898/10898 +f 10687/10687 10898/10898 11006/11006 +f 10897/10897 10798/10798 10797/10797 +f 10797/10797 10899/10899 11008/11008 +f 10800/10800 10799/10799 11009/11009 +f 10900/10900 10689/10689 11010/11010 +f 11011/11011 10901/10901 10800/10800 +f 10802/10802 10903/10903 10902/10902 +f 10902/10902 11010/11010 10689/10689 +f 10896/10896 11012/11012 10803/10803 +f 10903/10903 10803/10803 11012/11012 +f 10905/10905 10904/10904 10692/10692 +f 11013/11013 10693/10693 10904/10904 +f 11014/11014 10905/10905 10740/10740 +f 11015/11015 10906/10906 10693/10693 +f 10907/10907 10804/10804 11016/11016 +f 10907/10907 10909/10909 10490/10490 +f 10906/10906 11017/11017 10804/10804 +f 10805/10805 10908/10908 11018/11018 +f 11019/11019 10908/10908 10806/10806 +f 11020/11020 10806/10806 10909/10909 +f 10813/10813 10696/10696 11021/11021 +f 10696/10696 10910/10910 11021/11021 +f 10911/10911 10910/10910 10697/10697 +f 11018/11018 10911/10911 10805/10805 +f 10807/10807 10912/10912 11022/11022 +f 10808/10808 10913/10913 11023/11023 +f 10808/10808 11024/11024 10912/10912 +f 10811/10811 11025/11025 10809/10809 +f 11026/11026 10913/10913 10809/10809 +f 10914/10914 10814/10814 10702/10702 +f 11022/11022 10914/10914 10807/10807 +f 11027/11027 10811/10811 10915/10915 +f 10917/10917 10703/10703 10916/10916 +f 11028/11028 10915/10915 10812/10812 +f 10812/10812 10917/10917 11029/11029 +f 10813/10813 11021/11021 10916/10916 +f 10914/10914 10918/10918 10814/10814 +f 11030/11030 10815/10815 10919/10919 +f 10599/10599 10922/10922 10919/10919 +f 10815/10815 11030/11030 10920/10920 +f 10708/10708 10920/10920 10921/10921 +f 10816/10816 10918/10918 11031/11031 +f 11032/11032 10922/10922 10816/10816 +f 11033/11033 10817/10817 10818/10818 +f 10817/10817 10971/10971 10863/10863 +f 10923/10923 10711/10711 10921/10921 +f 10818/10818 10923/10923 11033/11033 +f 11034/11034 10924/10924 10821/10821 +f 10822/10822 10924/10924 11035/11035 +f 10925/10925 11036/11036 10823/10823 +f 10926/10926 11036/11036 10824/10824 +f 11036/11036 10925/10925 10824/10824 +f 10825/10825 11037/11037 10926/10926 +f 10826/10826 10822/10822 11035/11035 +f 10826/10826 11035/11035 10927/10927 +f 10613/10613 10927/10927 11038/11038 +f 11037/11037 10825/10825 10827/10827 +f 11037/11037 10827/10827 10928/10928 +f 11038/11038 10928/10928 10613/10613 +f 10929/10929 10828/10828 11039/11039 +f 10929/10929 10932/10932 10723/10723 +f 11040/11040 10930/10930 10722/10722 +f 11039/11039 10828/10828 10930/10930 +f 10931/10931 11040/11040 10722/10722 +f 11041/11041 10931/10931 10823/10823 +f 10829/10829 10932/10932 11042/11042 +f 10933/10933 10829/10829 11043/11043 +f 10617/10617 10933/10933 10934/10934 +f 10830/10830 10934/10934 11044/11044 +f 11045/11045 10831/10831 10830/10830 +f 11046/11046 10832/10832 10831/10831 +f 10832/10832 11047/11047 10935/10935 +f 11048/11048 10726/10726 10935/10935 +f 11048/11048 10835/10835 10726/10726 +f 11011/11011 10727/10727 10901/10901 +f 10936/10936 10727/10727 11011/11011 +f 10833/10833 10834/10834 11049/11049 +f 11050/11050 10937/10937 10833/10833 +f 10834/10834 10938/10938 11051/11051 +f 10625/10625 10939/10939 10940/10940 +f 10939/10939 10835/10835 11048/11048 +f 10938/10938 10836/10836 11051/11051 +f 10836/10836 10940/10940 11052/11052 +f 10937/10937 11050/11050 10837/10837 +f 10941/10941 10838/10838 11053/11053 +f 10839/10839 10941/10941 11054/11054 +f 11055/11055 10942/10942 10837/10837 +f 10943/10943 10733/10733 10942/10942 +f 11053/11053 10838/10838 10943/10943 +f 10944/10944 11056/11056 10629/10629 +f 11054/11054 10944/10944 10839/10839 +f 11056/11056 10841/10841 10629/10629 +f 10842/10842 10841/10841 10945/10945 +f 10946/10946 10736/10736 10945/10945 +f 10947/10947 10843/10843 10946/10946 +f 10737/10737 10947/10947 11057/11057 +f 11058/11058 10948/10948 10737/10737 +f 10844/10844 10948/10948 10949/10949 +f 10949/10949 10950/10950 10634/10634 +f 10950/10950 11059/11059 10845/10845 +f 10846/10846 10845/10845 11014/11014 +f 10740/10740 10846/10846 11014/11014 +f 10847/10847 10951/10951 11060/11060 +f 10892/10892 10847/10847 11060/11060 +f 11061/11061 10951/10951 10783/10783 +f 10953/10953 10952/10952 10743/10743 +f 10742/10742 10952/10952 10953/10953 +f 11062/11062 10953/10953 10744/10744 +f 11063/11063 10744/10744 10954/10954 +f 10848/10848 10955/10955 10957/10957 +f 10747/10747 10956/10956 10955/10955 +f 11064/11064 10849/10849 10957/10957 +f 10849/10849 11065/11065 10850/10850 +f 11065/11065 10852/10852 10850/10850 +f 10958/10958 10750/10750 11066/11066 +f 10851/10851 10958/10958 11067/11067 +f 11068/11068 10959/10959 10852/10852 +f 11066/11066 10750/10750 10959/10959 +f 10960/10960 10851/10851 11069/11069 +f 11070/11070 10751/10751 10960/10960 +f 10961/10961 11071/11071 10853/10853 +f 11072/11072 10961/10961 10751/10751 +f 10854/10854 10853/10853 11073/11073 +f 11074/11074 10962/10962 10854/10854 +f 10962/10962 10954/10954 10753/10753 +f 10855/10855 10877/10877 11075/11075 +f 11076/11076 10956/10956 10855/10855 +f 10967/10967 10963/10963 10856/10856 +f 10963/10963 10858/10858 10755/10755 +f 10857/10857 10858/10858 11077/11077 +f 10964/10964 10857/10857 10965/10965 +f 10965/10965 10758/10758 10964/10964 +f 10966/10966 10759/10759 10965/10965 +f 10966/10966 10869/10869 10760/10760 +f 10859/10859 10763/10763 10860/10860 +f 11078/11078 10967/10967 10762/10762 +f 11078/11078 10762/10762 10968/10968 +f 10859/10859 10860/10860 10968/10968 +f 10969/10969 10765/10765 10971/10971 +f 10861/10861 10969/10969 10970/10970 +f 10970/10970 11079/11079 10862/10862 +f 10862/10862 11080/11080 10860/10860 +f 10971/10971 10864/10864 10863/10863 +f 10865/10865 11081/11081 10972/10972 +f 10768/10768 10972/10972 10973/10973 +f 10973/10973 11082/11082 10866/10866 +f 11083/11083 10867/10867 10866/10866 +f 11081/11081 10865/10865 10974/10974 +f 10867/10867 11084/11084 10975/10975 +f 10975/10975 11085/11085 10769/10769 +f 10976/10976 10874/10874 10868/10868 +f 10976/10976 10769/10769 11085/11085 +f 10974/10974 10869/10869 11086/11086 +f 10870/10870 10983/10983 10776/10776 +f 10978/10978 10977/10977 10771/10771 +f 10870/10870 10977/10977 11087/11087 +f 10871/10871 10980/10980 10978/10978 +f 10873/10873 10981/10981 10872/10872 +f 10873/10873 10979/10979 11088/11088 +f 10774/10774 10981/10981 10980/10980 +f 10979/10979 10874/10874 10976/10976 +f 10875/10875 11089/11089 10982/10982 +f 10982/10982 10988/10988 10775/10775 +f 11089/11089 10875/10875 10983/10983 +f 10876/10876 10987/10987 10984/10984 +f 10877/10877 10984/10984 11090/11090 +f 10987/10987 10876/10876 10781/10781 +f 10879/10879 10878/10878 10989/10989 +f 10985/10985 11091/11091 10667/10667 +f 11092/11092 10985/10985 10879/10879 +f 10986/10986 11093/11093 10880/10880 +f 10667/10667 11091/11091 10986/10986 +f 10881/10881 10880/10880 11093/11093 +f 10881/10881 11094/11094 10882/10882 +f 11094/11094 10987/10987 10882/10882 +f 10990/10990 10883/10883 10988/10988 +f 10990/10990 10989/10989 10782/10782 +f 10992/10992 10991/10991 10884/10884 +f 10783/10783 10991/10991 11061/11061 +f 10992/10992 10784/10784 10995/10995 +f 10885/10885 11095/11095 10993/10993 +f 10994/10994 10886/10886 10993/10993 +f 11096/11096 10995/10995 10887/10887 +f 11096/11096 10887/10887 10994/10994 +f 10996/10996 11097/11097 10888/10888 +f 10953/10953 10996/10996 10787/10787 +f 10997/10997 10788/10788 10998/10998 +f 10789/10789 10997/10997 10999/10999 +f 11097/11097 10998/10998 10888/10888 +f 10889/10889 10999/10999 11003/11003 +f 10790/10790 11001/11001 11000/11000 +f 11000/11000 11098/11098 10791/10791 +f 10792/10792 11003/11003 11001/11001 +f 11002/11002 11099/11099 10890/10890 +f 10791/10791 11098/11098 11002/11002 +f 10890/10890 11100/11100 10891/10891 +f 10885/10885 10891/10891 11095/11095 +f 10892/10892 11101/11101 10893/10893 +f 10893/10893 11102/11102 10899/10899 +f 11004/11004 10894/10894 11103/11103 +f 10794/10794 11104/11104 11005/11005 +f 10894/10894 11005/11005 11105/11105 +f 10895/10895 11004/11004 11106/11106 +f 10896/10896 10895/10895 11107/11107 +f 11006/11006 11104/11104 10794/10794 +f 10797/10797 11007/11007 10897/10897 +f 11007/11007 11108/11108 10898/10898 +f 11006/11006 10898/10898 11108/11108 +f 11008/11008 10899/10899 11109/11109 +f 11007/11007 10797/10797 11008/11008 +f 11009/11009 11011/11011 10800/10800 +f 11010/11010 11110/11110 10900/10900 +f 11111/11111 10902/10902 10903/10903 +f 11010/11010 10902/10902 11112/11112 +f 11012/11012 10896/10896 11107/11107 +f 11111/11111 10903/10903 11012/11012 +f 10904/10904 10905/10905 11113/11113 +f 10693/10693 11013/11013 11114/11114 +f 11113/11113 11013/11013 10904/10904 +f 10845/10845 10905/10905 11014/11014 +f 11115/11115 10906/10906 11015/11015 +f 11114/11114 11015/11015 10693/10693 +f 10907/10907 11016/11016 11116/11116 +f 11017/11017 11016/11016 10804/10804 +f 10909/10909 10907/10907 11117/11117 +f 11017/11017 10906/10906 11118/11118 +f 11019/11019 11018/11018 10908/10908 +f 10806/10806 11119/11119 11019/11019 +f 11119/11119 10806/10806 11020/11020 +f 11120/11120 11020/11020 10909/10909 +f 11021/11021 10910/10910 11029/11029 +f 10910/10910 10911/10911 11121/11121 +f 10911/10911 11018/11018 11122/11122 +f 11022/11022 10912/10912 11123/11123 +f 11026/11026 11023/11023 10913/10913 +f 11024/11024 10808/10808 11023/11023 +f 10912/10912 11024/11024 11123/11123 +f 11027/11027 11025/11025 10811/10811 +f 10809/10809 11025/11025 11124/11124 +f 10809/10809 11125/11125 11026/11026 +f 10914/10914 11022/11022 11126/11126 +f 10915/10915 11127/11127 11027/11027 +f 11029/11029 10917/10917 10916/10916 +f 11127/11127 10915/10915 11028/11028 +f 11029/11029 11028/11028 10812/10812 +f 11021/11021 11029/11029 10916/10916 +f 11031/11031 10918/10918 10914/10914 +f 11128/11128 11030/11030 10919/10919 +f 10919/10919 10922/10922 11129/11129 +f 10920/10920 11030/11030 11130/11130 +f 10920/10920 11130/11130 10921/10921 +f 11131/11131 10816/10816 11031/11031 +f 10922/10922 11032/11032 11129/11129 +f 11131/11131 11032/11032 10816/10816 +f 10971/10971 10817/10817 11033/11033 +f 11132/11132 10923/10923 10921/10921 +f 10923/10923 11133/11133 11033/11033 +f 10924/10924 11034/11034 11134/11134 +f 11035/11035 10924/10924 11134/11134 +f 10823/10823 11036/11036 11041/11041 +f 10926/10926 11037/11037 11036/11036 +f 11035/11035 11134/11134 10927/10927 +f 11038/11038 10927/10927 11135/11135 +f 11037/11037 10928/10928 11136/11136 +f 11038/11038 11137/11137 10928/10928 +f 11039/11039 11138/11138 10929/10929 +f 10932/10932 10929/10929 11139/11139 +f 10930/10930 11040/11040 11140/11140 +f 10930/10930 11138/11138 11039/11039 +f 11040/11040 10931/10931 11141/11141 +f 10931/10931 11041/11041 11036/11036 +f 11042/11042 10932/10932 11142/11142 +f 11043/11043 10829/10829 11042/11042 +f 10933/10933 11043/11043 11042/11042 +f 10934/10934 10933/10933 11143/11143 +f 11044/11044 10934/10934 11144/11144 +f 11145/11145 10830/10830 11044/11044 +f 11145/11145 11045/11045 10830/10830 +f 11046/11046 10831/10831 11045/11045 +f 11146/11146 10832/10832 11046/11046 +f 11146/11146 11047/11047 10832/10832 +f 11047/11047 11147/11147 10935/10935 +f 11147/11147 11048/11048 10935/10935 +f 11009/11009 10936/10936 11011/11011 +f 10834/10834 11148/11148 11049/11049 +f 11049/11049 11050/11050 10833/10833 +f 11149/11149 10834/10834 11051/11051 +f 10939/10939 11150/11150 10940/10940 +f 11048/11048 11151/11151 10939/10939 +f 10836/10836 11052/11052 11051/11051 +f 10940/10940 11152/11152 11052/11052 +f 10837/10837 11050/11050 11055/11055 +f 11053/11053 11153/11153 10941/10941 +f 10941/10941 11153/11153 11054/11054 +f 10942/10942 11055/11055 11154/11154 +f 10942/10942 11053/11053 10943/10943 +f 11056/11056 10944/10944 11155/11155 +f 11156/11156 10944/10944 11054/11054 +f 10841/10841 11056/11056 11157/11157 +f 10841/10841 11158/11158 10945/10945 +f 11158/11158 10946/10946 10945/10945 +f 10946/10946 11159/11159 10947/10947 +f 10947/10947 11160/11160 11057/11057 +f 11057/11057 11058/11058 10737/10737 +f 11058/11058 11161/11161 10948/10948 +f 10949/10949 10948/10948 11162/11162 +f 10950/10950 10949/10949 11162/11162 +f 11059/11059 10950/10950 11163/11163 +f 11059/11059 10905/10905 10845/10845 +f 11164/11164 11060/11060 10951/10951 +f 11101/11101 10892/10892 11060/11060 +f 10951/10951 11061/11061 11165/11165 +f 10744/10744 11063/11063 11062/11062 +f 10996/10996 10953/10953 11062/11062 +f 11063/11063 10954/10954 11062/11062 +f 10955/10955 11166/11166 10957/10957 +f 10955/10955 10956/10956 11166/11166 +f 10849/10849 11064/11064 11167/11167 +f 10957/10957 11166/11166 11064/11064 +f 11167/11167 11065/11065 10849/10849 +f 11065/11065 11068/11068 10852/10852 +f 11067/11067 10958/10958 11066/11066 +f 11069/11069 10851/10851 11067/11067 +f 10959/10959 11068/11068 11168/11168 +f 11066/11066 10959/10959 11168/11168 +f 11069/11069 11169/11169 10960/10960 +f 11169/11169 11070/11070 10960/10960 +f 11070/11070 11072/11072 10751/10751 +f 11071/11071 10961/10961 11170/11170 +f 10853/10853 11071/11071 11073/11073 +f 10961/10961 11072/11072 11171/11171 +f 11073/11073 11172/11172 10854/10854 +f 11074/11074 10854/10854 11172/11172 +f 11173/11173 10962/10962 11074/11074 +f 10954/10954 10962/10962 11062/11062 +f 11075/11075 10877/10877 11174/11174 +f 10855/10855 11075/11075 11175/11175 +f 10956/10956 11076/11076 11166/11166 +f 11076/11076 10855/10855 11175/11175 +f 10963/10963 10967/10967 11176/11176 +f 10858/10858 10963/10963 11177/11177 +f 10965/10965 10857/10857 11077/11077 +f 10858/10858 11178/11178 11077/11077 +f 11179/11179 10966/10966 10965/10965 +f 10869/10869 10966/10966 11086/11086 +f 11180/11180 10967/10967 11078/11078 +f 11181/11181 11078/11078 10968/10968 +f 10968/10968 10860/10860 11182/11182 +f 10971/10971 11183/11183 10969/10969 +f 10969/10969 11183/11183 10970/10970 +f 11079/11079 10970/10970 11184/11184 +f 11079/11079 11080/11080 10862/10862 +f 11080/11080 11182/11182 10860/10860 +f 10972/10972 11081/11081 11185/11185 +f 10973/10973 10972/10972 11185/11185 +f 11082/11082 11083/11083 10866/10866 +f 10973/10973 11186/11186 11082/11082 +f 11084/11084 10867/10867 11083/11083 +f 11086/11086 11081/11081 10974/10974 +f 11084/11084 11187/11187 10975/10975 +f 11187/11187 11085/11085 10975/10975 +f 10976/10976 11085/11085 11188/11188 +f 11089/11089 10983/10983 10870/10870 +f 10980/10980 10977/10977 10978/10978 +f 11087/11087 10977/10977 11189/11189 +f 10870/10870 11087/11087 11190/11190 +f 11088/11088 10981/10981 10873/10873 +f 10979/10979 11191/11191 11088/11088 +f 10980/10980 10981/10981 11192/11192 +f 10976/10976 11193/11193 10979/10979 +f 11089/11089 11194/11194 10982/10982 +f 10982/10982 11195/11195 10988/10988 +f 10984/10984 10987/10987 11090/11090 +f 11090/11090 11196/11196 10877/10877 +f 10989/10989 11092/11092 10879/10879 +f 11197/11197 11091/11091 10985/10985 +f 11092/11092 11197/11197 10985/10985 +f 11093/11093 10986/10986 11198/11198 +f 11199/11199 10986/10986 11091/11091 +f 11093/11093 11200/11200 10881/10881 +f 10881/10881 11200/11200 11094/11094 +f 11090/11090 10987/10987 11094/11094 +f 10990/10990 10988/10988 11201/11201 +f 10989/10989 10990/10990 11201/11201 +f 10991/10991 10992/10992 11061/11061 +f 11202/11202 10992/10992 10995/10995 +f 11095/11095 11203/11203 10993/10993 +f 11096/11096 10994/10994 10993/10993 +f 10995/10995 11096/11096 11204/11204 +f 11097/11097 10996/10996 11062/11062 +f 10997/10997 10998/10998 11205/11205 +f 10997/10997 11206/11206 10999/10999 +f 10998/10998 11097/11097 11207/11207 +f 10999/10999 11208/11208 11003/11003 +f 11001/11001 11209/11209 11000/11000 +f 11210/11210 11098/11098 11000/11000 +f 11003/11003 11209/11209 11001/11001 +f 11002/11002 11211/11211 11099/11099 +f 10890/10890 11099/11099 11212/11212 +f 11002/11002 11098/11098 11213/11213 +f 11214/11214 11100/11100 10890/10890 +f 11215/11215 10891/10891 11100/11100 +f 11203/11203 11095/11095 10891/10891 +f 11101/11101 11102/11102 10893/10893 +f 10899/10899 11102/11102 11216/11216 +f 11103/11103 10894/10894 11217/11217 +f 11103/11103 11218/11218 11004/11004 +f 11005/11005 11104/11104 11219/11219 +f 11217/11217 11105/11105 11005/11005 +f 10894/10894 11105/11105 11217/11217 +f 11107/11107 10895/10895 11106/11106 +f 11004/11004 11218/11218 11106/11106 +f 11219/11219 11104/11104 11006/11006 +f 11007/11007 11220/11220 11108/11108 +f 11108/11108 11221/11221 11006/11006 +f 10899/10899 11216/11216 11109/11109 +f 11222/11222 11008/11008 11109/11109 +f 11008/11008 11223/11223 11007/11007 +f 11010/11010 11224/11224 11110/11110 +f 10902/10902 11111/11111 11225/11225 +f 11224/11224 11010/11010 11112/11112 +f 10902/10902 11226/11226 11112/11112 +f 11227/11227 11012/11012 11107/11107 +f 11225/11225 11111/11111 11012/11012 +f 11113/11113 10905/10905 11059/11059 +f 11228/11228 11114/11114 11013/11013 +f 11013/11013 11113/11113 11163/11163 +f 11118/11118 10906/10906 11115/11115 +f 11114/11114 11115/11115 11015/11015 +f 11116/11116 11016/11016 11017/11017 +f 11229/11229 10907/10907 11116/11116 +f 10907/10907 11229/11229 11117/11117 +f 11230/11230 10909/10909 11117/11117 +f 11118/11118 11231/11231 11017/11017 +f 11122/11122 11018/11018 11019/11019 +f 11232/11232 11019/11019 11119/11119 +f 11233/11233 11119/11119 11020/11020 +f 11020/11020 11120/11120 11233/11233 +f 10909/10909 11234/11234 11120/11120 +f 11029/11029 10910/10910 11028/11028 +f 10911/10911 11235/11235 11121/11121 +f 10910/10910 11121/11121 11028/11028 +f 11235/11235 10911/10911 11122/11122 +f 11022/11022 11123/11123 11236/11236 +f 11023/11023 11026/11026 11237/11237 +f 11238/11238 11024/11024 11023/11023 +f 11239/11239 11123/11123 11024/11024 +f 11025/11025 11027/11027 11240/11240 +f 11240/11240 11124/11124 11025/11025 +f 10809/10809 11124/11124 11125/11125 +f 11026/11026 11125/11125 11241/11241 +f 11022/11022 11236/11236 11126/11126 +f 11031/11031 10914/10914 11126/11126 +f 11235/11235 11027/11027 11127/11127 +f 11121/11121 11127/11127 11028/11028 +f 11242/11242 11030/11030 11128/11128 +f 11128/11128 10919/10919 11243/11243 +f 11243/11243 10919/10919 11129/11129 +f 11130/11130 11030/11030 11242/11242 +f 11130/11130 11132/11132 10921/10921 +f 11244/11244 11131/11131 11031/11031 +f 11032/11032 11245/11245 11129/11129 +f 11032/11032 11131/11131 11246/11246 +f 11033/11033 11183/11183 10971/10971 +f 11247/11247 10923/10923 11132/11132 +f 10923/10923 11247/11247 11133/11133 +f 11133/11133 11248/11248 11033/11033 +f 11249/11249 11134/11134 11034/11034 +f 11036/11036 11037/11037 11136/11136 +f 10927/10927 11134/11134 11135/11135 +f 11135/11135 11137/11137 11038/11038 +f 11136/11136 10928/10928 11250/11250 +f 11250/11250 10928/10928 11137/11137 +f 11251/11251 10929/10929 11138/11138 +f 10929/10929 11251/11251 11139/11139 +f 11139/11139 11252/11252 10932/10932 +f 11140/11140 11040/11040 11141/11141 +f 11253/11253 10930/10930 11140/11140 +f 11138/11138 10930/10930 11253/11253 +f 11141/11141 10931/10931 11136/11136 +f 11136/11136 10931/10931 11036/11036 +f 11142/11142 10932/10932 11252/11252 +f 11142/11142 11254/11254 11042/11042 +f 11042/11042 11254/11254 10933/10933 +f 11144/11144 10934/10934 11143/11143 +f 10933/10933 11254/11254 11143/11143 +f 11255/11255 11044/11044 11144/11144 +f 11255/11255 11145/11145 11044/11044 +f 11045/11045 11145/11145 11046/11046 +f 11256/11256 11146/11146 11046/11046 +f 11047/11047 11146/11146 11256/11256 +f 11257/11257 11147/11147 11047/11047 +f 11147/11147 11151/11151 11048/11048 +f 11148/11148 10834/10834 11149/11149 +f 11258/11258 11049/11049 11148/11148 +f 11050/11050 11049/11049 11258/11258 +f 11259/11259 11149/11149 11051/11051 +f 11150/11150 10939/10939 11260/11260 +f 11261/11261 10940/10940 11150/11150 +f 11151/11151 11262/11262 10939/10939 +f 11052/11052 11259/11259 11051/11051 +f 10940/10940 11261/11261 11152/11152 +f 11052/11052 11152/11152 11263/11263 +f 11055/11055 11050/11050 11264/11264 +f 11154/11154 11153/11153 11053/11053 +f 11153/11153 11265/11265 11054/11054 +f 11266/11266 11154/11154 11055/11055 +f 10942/10942 11154/11154 11053/11053 +f 11267/11267 11056/11056 11155/11155 +f 10944/10944 11156/11156 11155/11155 +f 11054/11054 11265/11265 11156/11156 +f 11056/11056 11267/11267 11157/11157 +f 11157/11157 11158/11158 10841/10841 +f 11268/11268 10946/10946 11158/11158 +f 10947/10947 11159/11159 11160/11160 +f 11159/11159 10946/10946 11268/11268 +f 11057/11057 11160/11160 11269/11269 +f 11057/11057 11161/11161 11058/11058 +f 11270/11270 10948/10948 11161/11161 +f 11162/11162 10948/10948 11271/11271 +f 11163/11163 10950/10950 11162/11162 +f 11059/11059 11163/11163 11113/11113 +f 11164/11164 11272/11272 11060/11060 +f 11164/11164 10951/10951 11165/11165 +f 11273/11273 11101/11101 11060/11060 +f 11061/11061 11274/11274 11165/11165 +f 11167/11167 11064/11064 11275/11275 +f 11276/11276 11064/11064 11166/11166 +f 11065/11065 11167/11167 11277/11277 +f 11277/11277 11068/11068 11065/11065 +f 11067/11067 11066/11066 11168/11168 +f 11278/11278 11069/11069 11067/11067 +f 11168/11168 11068/11068 11279/11279 +f 11280/11280 11169/11169 11069/11069 +f 11169/11169 11281/11281 11070/11070 +f 11072/11072 11070/11070 11171/11171 +f 11282/11282 11170/11170 10961/10961 +f 11283/11283 11071/11071 11170/11170 +f 11073/11073 11071/11071 11172/11172 +f 10961/10961 11171/11171 11284/11284 +f 11074/11074 11172/11172 11285/11285 +f 11173/11173 11286/11286 10962/10962 +f 11285/11285 11173/11173 11074/11074 +f 11062/11062 10962/10962 11286/11286 +f 11287/11287 11075/11075 11174/11174 +f 10877/10877 11196/11196 11174/11174 +f 11175/11175 11075/11075 11287/11287 +f 11276/11276 11166/11166 11076/11076 +f 11175/11175 11288/11288 11076/11076 +f 11176/11176 10967/10967 11180/11180 +f 10963/10963 11176/11176 11289/11289 +f 11177/11177 10963/10963 11289/11289 +f 11177/11177 11290/11290 10858/10858 +f 11077/11077 11178/11178 10965/10965 +f 11178/11178 10858/10858 11290/11290 +f 10966/10966 11179/11179 11291/11291 +f 11178/11178 11179/11179 10965/10965 +f 11291/11291 11086/11086 10966/10966 +f 11078/11078 11292/11292 11180/11180 +f 11181/11181 11292/11292 11078/11078 +f 11182/11182 11181/11181 10968/10968 +f 11183/11183 11293/11293 10970/10970 +f 11079/11079 11184/11184 11293/11293 +f 10970/10970 11293/11293 11184/11184 +f 11079/11079 11294/11294 11080/11080 +f 11182/11182 11080/11080 11294/11294 +f 11185/11185 11081/11081 11295/11295 +f 11185/11185 11186/11186 10973/10973 +f 11082/11082 11296/11296 11083/11083 +f 11186/11186 11296/11296 11082/11082 +f 11084/11084 11083/11083 11296/11296 +f 11295/11295 11081/11081 11086/11086 +f 11084/11084 11297/11297 11187/11187 +f 11187/11187 11298/11298 11085/11085 +f 11085/11085 11299/11299 11188/11188 +f 11193/11193 10976/10976 11188/11188 +f 11190/11190 11089/11089 10870/10870 +f 11189/11189 10977/10977 10980/10980 +f 11087/11087 11189/11189 11300/11300 +f 11300/11300 11190/11190 11087/11087 +f 11301/11301 10981/10981 11088/11088 +f 11088/11088 11191/11191 11301/11301 +f 10979/10979 11193/11193 11191/11191 +f 11302/11302 11192/11192 10981/10981 +f 11192/11192 11300/11300 10980/10980 +f 11190/11190 11194/11194 11089/11089 +f 11194/11194 11303/11303 10982/10982 +f 10982/10982 11304/11304 11195/11195 +f 10988/10988 11195/11195 11305/11305 +f 11094/11094 11196/11196 11090/11090 +f 11306/11306 11092/11092 10989/10989 +f 11307/11307 11091/11091 11197/11197 +f 11092/11092 11308/11308 11197/11197 +f 11199/11199 11198/11198 10986/10986 +f 11198/11198 11200/11200 11093/11093 +f 11199/11199 11091/11091 11309/11309 +f 11200/11200 11310/11310 11094/11094 +f 11311/11311 11201/11201 10988/10988 +f 11201/11201 11306/11306 10989/10989 +f 10992/10992 11312/11312 11061/11061 +f 10995/10995 11313/11313 11202/11202 +f 11314/11314 10992/10992 11202/11202 +f 11203/11203 11315/11315 10993/10993 +f 11315/11315 11096/11096 10993/10993 +f 11313/11313 10995/10995 11204/11204 +f 11096/11096 11315/11315 11204/11204 +f 11316/11316 11097/11097 11062/11062 +f 10998/10998 11207/11207 11205/11205 +f 10997/10997 11205/11205 11317/11317 +f 11318/11318 10999/10999 11206/11206 +f 10997/10997 11317/11317 11206/11206 +f 11097/11097 11316/11316 11207/11207 +f 11208/11208 11209/11209 11003/11003 +f 10999/10999 11319/11319 11208/11208 +f 11000/11000 11209/11209 11320/11320 +f 11321/11321 11098/11098 11210/11210 +f 11000/11000 11320/11320 11210/11210 +f 11211/11211 11002/11002 11322/11322 +f 11099/11099 11211/11211 11323/11323 +f 11099/11099 11324/11324 11212/11212 +f 11214/11214 10890/10890 11212/11212 +f 11098/11098 11321/11321 11213/11213 +f 11002/11002 11213/11213 11322/11322 +f 11100/11100 11214/11214 11325/11325 +f 11203/11203 10891/10891 11215/11215 +f 11100/11100 11326/11326 11215/11215 +f 11273/11273 11102/11102 11101/11101 +f 11102/11102 11327/11327 11216/11216 +f 11217/11217 11218/11218 11103/11103 +f 11005/11005 11219/11219 11328/11328 +f 11217/11217 11005/11005 11328/11328 +f 11106/11106 11329/11329 11107/11107 +f 11330/11330 11106/11106 11218/11218 +f 11221/11221 11219/11219 11006/11006 +f 11220/11220 11007/11007 11223/11223 +f 11108/11108 11220/11220 11331/11331 +f 11331/11331 11221/11221 11108/11108 +f 11109/11109 11216/11216 11332/11332 +f 11332/11332 11222/11222 11109/11109 +f 11008/11008 11222/11222 11223/11223 +f 11224/11224 11333/11333 11110/11110 +f 11226/11226 10902/10902 11225/11225 +f 11224/11224 11112/11112 11225/11225 +f 11112/11112 11226/11226 11225/11225 +f 11227/11227 11107/11107 11225/11225 +f 11012/11012 11227/11227 11225/11225 +f 11013/11013 11163/11163 11228/11228 +f 11228/11228 11334/11334 11114/11114 +f 11118/11118 11115/11115 11335/11335 +f 11115/11115 11114/11114 11336/11336 +f 11017/11017 11337/11337 11116/11116 +f 11116/11116 11337/11337 11229/11229 +f 11229/11229 11230/11230 11117/11117 +f 11230/11230 11338/11338 10909/10909 +f 11231/11231 11337/11337 11017/11017 +f 11118/11118 11335/11335 11231/11231 +f 11019/11019 11232/11232 11122/11122 +f 11233/11233 11232/11232 11119/11119 +f 11120/11120 11339/11339 11233/11233 +f 11340/11340 11120/11120 11234/11234 +f 10909/10909 11338/11338 11234/11234 +f 11235/11235 11127/11127 11121/11121 +f 11027/11027 11235/11235 11122/11122 +f 11236/11236 11123/11123 11341/11341 +f 11237/11237 11238/11238 11023/11023 +f 11237/11237 11026/11026 11241/11241 +f 11238/11238 11239/11239 11024/11024 +f 11239/11239 11341/11341 11123/11123 +f 11027/11027 11122/11122 11240/11240 +f 11240/11240 11342/11342 11124/11124 +f 11125/11125 11124/11124 11343/11343 +f 11125/11125 11343/11343 11241/11241 +f 11126/11126 11236/11236 11344/11344 +f 11031/11031 11126/11126 11244/11244 +f 11242/11242 11128/11128 11345/11345 +f 11346/11346 11128/11128 11243/11243 +f 11347/11347 11243/11243 11129/11129 +f 11348/11348 11130/11130 11242/11242 +f 11348/11348 11132/11132 11130/11130 +f 11244/11244 11349/11349 11131/11131 +f 11032/11032 11246/11246 11245/11245 +f 11245/11245 11347/11347 11129/11129 +f 11246/11246 11131/11131 11349/11349 +f 11248/11248 11183/11183 11033/11033 +f 11350/11350 11247/11247 11132/11132 +f 11351/11351 11133/11133 11247/11247 +f 11352/11352 11248/11248 11133/11133 +f 11134/11134 11249/11249 11135/11135 +f 11249/11249 11034/11034 11353/11353 +f 11135/11135 11249/11249 11137/11137 +f 11136/11136 11250/11250 11354/11354 +f 36768/40175 11250/11250 11137/11137 +f 36769/40176 36768/40175 11137/11137 +f 11355/11355 11251/11251 11138/11138 +f 11139/11139 11251/11251 11355/11355 +f 11356/11356 11252/11252 11139/11139 +f 11141/11141 11357/11357 11140/11140 +f 11140/11140 11357/11357 11253/11253 +f 11253/11253 11355/11355 11138/11138 +f 11136/11136 11354/11354 11141/11141 +f 11356/11356 11142/11142 11252/11252 +f 11358/11358 11254/11254 11142/11142 +f 11143/11143 11359/11359 11144/11144 +f 11254/11254 11359/11359 11143/11143 +f 11360/11360 11255/11255 11144/11144 +f 11145/11145 11255/11255 11361/11361 +f 11145/11145 11256/11256 11046/11046 +f 11047/11047 11256/11256 11362/11362 +f 11257/11257 11151/11151 11147/11147 +f 11363/11363 11257/11257 11047/11047 +f 11364/11364 11148/11148 11149/11149 +f 11364/11364 11258/11258 11148/11148 +f 11258/11258 11264/11264 11050/11050 +f 11259/11259 11365/11365 11149/11149 +f 10939/10939 11262/11262 11260/11260 +f 11366/11366 11150/11150 11260/11260 +f 11261/11261 11150/11150 11366/11366 +f 11262/11262 11151/11151 11367/11367 +f 11052/11052 11368/11368 11259/11259 +f 11261/11261 11369/11369 11152/11152 +f 11370/11370 11263/11263 11152/11152 +f 11052/11052 11263/11263 11368/11368 +f 11371/11371 11055/11055 11264/11264 +f 11266/11266 11153/11153 11154/11154 +f 11372/11372 11265/11265 11153/11153 +f 11055/11055 11373/11373 11266/11266 +f 11267/11267 11155/11155 11374/11374 +f 11374/11374 11155/11155 11156/11156 +f 11265/11265 11374/11374 11156/11156 +f 11267/11267 11375/11375 11157/11157 +f 11376/11376 11158/11158 11157/11157 +f 11376/11376 11268/11268 11158/11158 +f 11377/11377 11160/11160 11159/11159 +f 11268/11268 11377/11377 11159/11159 +f 11057/11057 11269/11269 11161/11161 +f 11269/11269 11160/11160 11378/11378 +f 11379/11379 10948/10948 11270/11270 +f 11161/11161 11269/11269 11270/11270 +f 11379/11379 11271/11271 10948/10948 +f 11271/11271 11380/11380 11162/11162 +f 11163/11163 11162/11162 11334/11334 +f 11272/11272 11273/11273 11060/11060 +f 11272/11272 11164/11164 11381/11381 +f 11164/11164 11165/11165 11381/11381 +f 11165/11165 11274/11274 11382/11382 +f 11312/11312 11274/11274 11061/11061 +f 11064/11064 11276/11276 11275/11275 +f 11277/11277 11167/11167 11275/11275 +f 11277/11277 11279/11279 11068/11068 +f 11383/11383 11067/11067 11168/11168 +f 11278/11278 11384/11384 11069/11069 +f 11278/11278 11067/11067 11383/11383 +f 11279/11279 11385/11385 11168/11168 +f 11069/11069 11384/11384 11280/11280 +f 11386/11386 11169/11169 11280/11280 +f 11281/11281 11171/11171 11070/11070 +f 11169/11169 11386/11386 11281/11281 +f 11282/11282 10961/10961 11284/11284 +f 11387/11387 11170/11170 11282/11282 +f 11071/11071 11283/11283 11388/11388 +f 11283/11283 11170/11170 11389/11389 +f 11071/11071 11388/11388 11172/11172 +f 11171/11171 11390/11390 11284/11284 +f 11391/11391 11285/11285 11172/11172 +f 11286/11286 11173/11173 11392/11392 +f 11173/11173 11285/11285 11392/11392 +f 11286/11286 11316/11316 11062/11062 +f 11393/11393 11287/11287 11174/11174 +f 11174/11174 11196/11196 11393/11393 +f 11287/11287 11288/11288 11175/11175 +f 11276/11276 11076/11076 11394/11394 +f 11076/11076 11288/11288 11395/11395 +f 11180/11180 11396/11396 11176/11176 +f 11176/11176 11397/11397 11289/11289 +f 11177/11177 11289/11289 11398/11398 +f 11399/11399 11290/11290 11177/11177 +f 11178/11178 11290/11290 11179/11179 +f 11400/11400 11291/11291 11179/11179 +f 11291/11291 11401/11401 11086/11086 +f 11292/11292 11396/11396 11180/11180 +f 11181/11181 11182/11182 11292/11292 +f 11248/11248 11293/11293 11183/11183 +f 11293/11293 11294/11294 11079/11079 +f 11292/11292 11182/11182 11294/11294 +f 11402/11402 11185/11185 11295/11295 +f 11186/11186 11185/11185 11402/11402 +f 11186/11186 11403/11403 11296/11296 +f 11084/11084 11296/11296 11297/11297 +f 11401/11401 11295/11295 11086/11086 +f 11187/11187 11297/11297 11404/11404 +f 11405/11405 11298/11298 11187/11187 +f 11298/11298 11299/11299 11085/11085 +f 11299/11299 11406/11406 11188/11188 +f 11193/11193 11188/11188 11406/11406 +f 11189/11189 10980/10980 11300/11300 +f 11192/11192 11190/11190 11300/11300 +f 11301/11301 11407/11407 10981/10981 +f 11408/11408 11301/11301 11191/11191 +f 11406/11406 11191/11191 11193/11193 +f 11302/11302 11190/11190 11192/11192 +f 11407/11407 11302/11302 10981/10981 +f 11303/11303 11194/11194 11190/11190 +f 10982/10982 11303/11303 11304/11304 +f 11195/11195 11304/11304 11409/11409 +f 10988/10988 11305/11305 11311/11311 +f 11195/11195 11410/11410 11305/11305 +f 11196/11196 11094/11094 11393/11393 +f 11306/11306 11411/11411 11092/11092 +f 11307/11307 11309/11309 11091/11091 +f 11307/11307 11197/11197 11412/11412 +f 11308/11308 11092/11092 11411/11411 +f 11197/11197 11308/11308 11412/11412 +f 11198/11198 11199/11199 11413/11413 +f 11414/11414 11200/11200 11198/11198 +f 11415/11415 11199/11199 11309/11309 +f 11310/11310 11393/11393 11094/11094 +f 11200/11200 11414/11414 11310/11310 +f 11201/11201 11311/11311 11416/11416 +f 11306/11306 11201/11201 11416/11416 +f 11417/11417 11312/11312 10992/10992 +f 11313/11313 11314/11314 11202/11202 +f 11417/11417 10992/10992 11314/11314 +f 11215/11215 11315/11315 11203/11203 +f 11418/11418 11313/11313 11204/11204 +f 11204/11204 11315/11315 11419/11419 +f 11207/11207 11420/11420 11205/11205 +f 11317/11317 11205/11205 11420/11420 +f 11319/11319 10999/10999 11318/11318 +f 11206/11206 11319/11319 11318/11318 +f 11421/11421 11206/11206 11317/11317 +f 11207/11207 11316/11316 11422/11422 +f 11423/11423 11209/11209 11208/11208 +f 11421/11421 11208/11208 11319/11319 +f 11320/11320 11209/11209 11423/11423 +f 11321/11321 11210/11210 11320/11320 +f 11322/11322 11323/11323 11211/11211 +f 11323/11323 11424/11424 11099/11099 +f 11324/11324 11425/11425 11212/11212 +f 11099/11099 11426/11426 11324/11324 +f 11212/11212 11425/11425 11214/11214 +f 11213/11213 11321/11321 11427/11427 +f 11213/11213 11428/11428 11322/11322 +f 11429/11429 11325/11325 11214/11214 +f 11430/11430 11100/11100 11325/11325 +f 11100/11100 11430/11430 11326/11326 +f 11215/11215 11326/11326 11431/11431 +f 11327/11327 11102/11102 11273/11273 +f 11216/11216 11327/11327 11432/11432 +f 11217/11217 11433/11433 11218/11218 +f 11219/11219 11434/11434 11328/11328 +f 11435/11435 11217/11217 11328/11328 +f 11107/11107 11329/11329 11436/11436 +f 11329/11329 11106/11106 11330/11330 +f 11330/11330 11218/11218 11437/11437 +f 11219/11219 11221/11221 11434/11434 +f 11220/11220 11223/11223 11438/11438 +f 11331/11331 11220/11220 11439/11439 +f 11221/11221 11331/11331 11440/11440 +f 11216/11216 11441/11441 11332/11332 +f 11222/11222 11332/11332 11442/11442 +f 11443/11443 11223/11223 11222/11222 +f 11224/11224 11444/11444 11333/11333 +f 11445/11445 11224/11224 11225/11225 +f 11225/11225 11107/11107 11436/11436 +f 11163/11163 11334/11334 11228/11228 +f 11336/11336 11114/11114 11334/11334 +f 11336/11336 11335/11335 11115/11115 +f 11229/11229 11337/11337 11446/11446 +f 11229/11229 11447/11447 11230/11230 +f 11230/11230 11448/11448 11338/11338 +f 11449/11449 11337/11337 11231/11231 +f 11231/11231 11335/11335 11450/11450 +f 11240/11240 11122/11122 11232/11232 +f 11451/11451 11232/11232 11233/11233 +f 11339/11339 11120/11120 11340/11340 +f 11452/11452 11233/11233 11339/11339 +f 11234/11234 11453/11453 11340/11340 +f 11338/11338 11454/11454 11234/11234 +f 11236/11236 11341/11341 11455/11455 +f 11456/11456 11238/11238 11237/11237 +f 11237/11237 11241/11241 11457/11457 +f 11238/11238 11458/11458 11239/11239 +f 11341/11341 11239/11239 11459/11459 +f 11240/11240 11460/11460 11342/11342 +f 11342/11342 11461/11461 11124/11124 +f 11343/11343 11124/11124 11461/11461 +f 11241/11241 11343/11343 11457/11457 +f 11455/11455 11344/11344 11236/11236 +f 11344/11344 11349/11349 11126/11126 +f 11244/11244 11126/11126 11349/11349 +f 11346/11346 11345/11345 11128/11128 +f 11242/11242 11345/11345 11348/11348 +f 11346/11346 11243/11243 11462/11462 +f 11243/11243 11347/11347 11462/11462 +f 11348/11348 11350/11350 11132/11132 +f 11463/11463 11245/11245 11246/11246 +f 11347/11347 11245/11245 11463/11463 +f 11246/11246 11349/11349 11464/11464 +f 11465/11465 11247/11247 11350/11350 +f 11465/11465 11351/11351 11247/11247 +f 11133/11133 11351/11351 11466/11466 +f 11466/11466 11352/11352 11133/11133 +f 11467/11467 11248/11248 11352/11352 +f 11137/11137 11249/11249 11353/11353 +f 36770/40177 11354/11354 11250/11250 +f 36771/40178 36770/40177 11250/11250 +f 36769/40179 11137/11137 11353/11353 +f 36772/40180 36769/40179 11353/11353 +f 11250/11250 36768/40181 36771/40182 +f 11139/11139 11355/11355 11253/11253 +f 11468/11468 11356/11356 11139/11139 +f 11354/11354 11357/11357 11141/11141 +f 11469/11469 11253/11253 11357/11357 +f 11142/11142 11356/11356 11470/11470 +f 11471/11471 11254/11254 11358/11358 +f 11470/11470 11358/11358 11142/11142 +f 11472/11472 11144/11144 11359/11359 +f 11359/11359 11254/11254 11471/11471 +f 11360/11360 11144/11144 11472/11472 +f 11255/11255 11360/11360 11473/11473 +f 11255/11255 11474/11474 11361/11361 +f 11145/11145 11361/11361 11256/11256 +f 11362/11362 11256/11256 11361/11361 +f 11047/11047 11362/11362 11363/11363 +f 11367/11367 11151/11151 11257/11257 +f 11363/11363 11367/11367 11257/11257 +f 11149/11149 11365/11365 11364/11364 +f 11475/11475 11258/11258 11364/11364 +f 11258/11258 11371/11371 11264/11264 +f 11365/11365 11259/11259 11476/11476 +f 11260/11260 11262/11262 11366/11366 +f 11477/11477 11261/11261 11366/11366 +f 11366/11366 11262/11262 11367/11367 +f 11259/11259 11368/11368 11476/11476 +f 11478/11478 11369/11369 11261/11261 +f 11369/11369 11370/11370 11152/11152 +f 11263/11263 11370/11370 11479/11479 +f 11263/11263 11479/11479 11368/11368 +f 11373/11373 11055/11055 11371/11371 +f 11266/11266 11480/11480 11153/11153 +f 11153/11153 11480/11480 11372/11372 +f 11265/11265 11372/11372 11374/11374 +f 11373/11373 11481/11481 11266/11266 +f 11375/11375 11267/11267 11374/11374 +f 11375/11375 11376/11376 11157/11157 +f 11268/11268 11376/11376 11482/11482 +f 11377/11377 11378/11378 11160/11160 +f 11377/11377 11268/11268 11482/11482 +f 11269/11269 11378/11378 11483/11483 +f 11484/11484 11379/11379 11270/11270 +f 11485/11485 11270/11270 11269/11269 +f 11271/11271 11379/11379 11486/11486 +f 11334/11334 11162/11162 11380/11380 +f 11271/11271 11486/11486 11380/11380 +f 11273/11273 11272/11272 11327/11327 +f 11487/11487 11272/11272 11381/11381 +f 11381/11381 11165/11165 11382/11382 +f 11382/11382 11274/11274 11488/11488 +f 11488/11488 11274/11274 11312/11312 +f 11275/11275 11276/11276 11394/11394 +f 11279/11279 11277/11277 11275/11275 +f 11385/11385 11383/11383 11168/11168 +f 11489/11489 11384/11384 11278/11278 +f 11383/11383 11489/11489 11278/11278 +f 11279/11279 11490/11490 11385/11385 +f 11280/11280 11384/11384 11491/11491 +f 11492/11492 11386/11386 11280/11280 +f 11390/11390 11171/11171 11281/11281 +f 11493/11493 11281/11281 11386/11386 +f 11284/11284 11494/11494 11282/11282 +f 11387/11387 11495/11495 11170/11170 +f 11494/11494 11387/11387 11282/11282 +f 11389/11389 11388/11388 11283/11283 +f 11389/11389 11170/11170 11495/11495 +f 11496/11496 11172/11172 11388/11388 +f 11390/11390 11497/11497 11284/11284 +f 11391/11391 11498/11498 11285/11285 +f 11172/11172 11496/11496 11391/11391 +f 11498/11498 11286/11286 11392/11392 +f 11392/11392 11285/11285 11498/11498 +f 11498/11498 11316/11316 11286/11286 +f 11287/11287 11393/11393 11310/11310 +f 11499/11499 11288/11288 11287/11287 +f 11500/11500 11394/11394 11076/11076 +f 11395/11395 11288/11288 11501/11501 +f 11395/11395 11500/11500 11076/11076 +f 11502/11502 11176/11176 11396/11396 +f 11397/11397 11176/11176 11503/11503 +f 11289/11289 11397/11397 11398/11398 +f 11177/11177 11398/11398 11504/11504 +f 11505/11505 11290/11290 11399/11399 +f 11399/11399 11177/11177 11504/11504 +f 11290/11290 11400/11400 11179/11179 +f 11291/11291 11400/11400 11506/11506 +f 11401/11401 11291/11291 11507/11507 +f 11292/11292 11294/11294 11396/11396 +f 11293/11293 11248/11248 11508/11508 +f 11294/11294 11293/11293 11509/11509 +f 11510/11510 11402/11402 11295/11295 +f 11186/11186 11402/11402 11511/11511 +f 11403/11403 11297/11297 11296/11296 +f 11403/11403 11186/11186 11511/11511 +f 11507/11507 11295/11295 11401/11401 +f 11512/11512 11404/11404 11297/11297 +f 11404/11404 11405/11405 11187/11187 +f 11513/11513 11298/11298 11405/11405 +f 11514/11514 11299/11299 11298/11298 +f 11299/11299 11515/11515 11406/11406 +f 11407/11407 11301/11301 11516/11516 +f 11517/11517 11301/11301 11408/11408 +f 11408/11408 11191/11191 11515/11515 +f 11191/11191 11406/11406 11515/11515 +f 11303/11303 11190/11190 11302/11302 +f 11302/11302 11407/11407 11518/11518 +f 11304/11304 11303/11303 11302/11302 +f 11195/11195 11409/11409 11410/11410 +f 11304/11304 11519/11519 11409/11409 +f 11520/11520 11311/11311 11305/11305 +f 11521/11521 11305/11305 11410/11410 +f 11411/11411 11306/11306 11416/11416 +f 11522/11522 11309/11309 11307/11307 +f 11412/11412 11522/11522 11307/11307 +f 11308/11308 11411/11411 11412/11412 +f 11199/11199 11523/11523 11413/11413 +f 11413/11413 11524/11524 11198/11198 +f 11198/11198 11524/11524 11414/11414 +f 11415/11415 11523/11523 11199/11199 +f 11309/11309 11522/11522 11415/11415 +f 11525/11525 11310/11310 11414/11414 +f 11526/11526 11416/11416 11311/11311 +f 11312/11312 11417/11417 11527/11527 +f 11528/11528 11314/11314 11313/11313 +f 11314/11314 11529/11529 11417/11417 +f 11431/11431 11315/11315 11215/11215 +f 11418/11418 11530/11530 11313/11313 +f 11204/11204 11419/11419 11418/11418 +f 11315/11315 11431/11431 11419/11419 +f 11207/11207 11531/11531 11420/11420 +f 11420/11420 11532/11532 11317/11317 +f 11319/11319 11206/11206 11421/11421 +f 11421/11421 11317/11317 11532/11532 +f 11533/11533 11207/11207 11422/11422 +f 11316/11316 11498/11498 11422/11422 +f 11423/11423 11208/11208 11421/11421 +f 11423/11423 11534/11534 11320/11320 +f 11320/11320 11535/11535 11321/11321 +f 11428/11428 11323/11323 11322/11322 +f 11426/11426 11099/11099 11424/11424 +f 11323/11323 11428/11428 11424/11424 +f 11425/11425 11324/11324 11536/11536 +f 11426/11426 11537/11537 11324/11324 +f 11425/11425 11538/11538 11214/11214 +f 11427/11427 11428/11428 11213/11213 +f 11535/11535 11427/11427 11321/11321 +f 11325/11325 11429/11429 11430/11430 +f 11539/11539 11429/11429 11214/11214 +f 11540/11540 11326/11326 11430/11430 +f 11541/11541 11431/11431 11326/11326 +f 11487/11487 11432/11432 11327/11327 +f 11432/11432 11441/11441 11216/11216 +f 11218/11218 11433/11433 11437/11437 +f 11217/11217 11435/11435 11433/11433 +f 11328/11328 11434/11434 11542/11542 +f 11328/11328 11542/11542 11435/11435 +f 11436/11436 11329/11329 11543/11543 +f 11329/11329 11330/11330 11543/11543 +f 11437/11437 11544/11544 11330/11330 +f 11221/11221 11545/11545 11434/11434 +f 11223/11223 11546/11546 11438/11438 +f 11220/11220 11438/11438 11547/11547 +f 11547/11547 11439/11439 11220/11220 +f 11331/11331 11439/11439 11440/11440 +f 11545/11545 11221/11221 11440/11440 +f 11332/11332 11441/11441 11548/11548 +f 11332/11332 11548/11548 11442/11442 +f 11443/11443 11222/11222 11442/11442 +f 11546/11546 11223/11223 11443/11443 +f 11224/11224 11445/11445 11444/11444 +f 11436/11436 11445/11445 11225/11225 +f 11549/11549 11336/11336 11334/11334 +f 11336/11336 11450/11450 11335/11335 +f 11449/11449 11446/11446 11337/11337 +f 11447/11447 11229/11229 11446/11446 +f 11550/11550 11230/11230 11447/11447 +f 11551/11551 11448/11448 11230/11230 +f 11338/11338 11448/11448 11454/11454 +f 11552/11552 11449/11449 11231/11231 +f 11231/11231 11450/11450 11552/11552 +f 11240/11240 11232/11232 11460/11460 +f 11460/11460 11232/11232 11451/11451 +f 11233/11233 11452/11452 11451/11451 +f 11339/11339 11340/11340 11553/11553 +f 11553/11553 11452/11452 11339/11339 +f 11554/11554 11453/11453 11234/11234 +f 11453/11453 11555/11555 11340/11340 +f 11454/11454 11556/11556 11234/11234 +f 11341/11341 11557/11557 11455/11455 +f 11456/11456 11237/11237 11457/11457 +f 11558/11558 11238/11238 11456/11456 +f 11559/11559 11458/11458 11238/11238 +f 11458/11458 11459/11459 11239/11239 +f 11459/11459 11557/11557 11341/11341 +f 11451/11451 11342/11342 11460/11460 +f 11560/11560 11461/11461 11342/11342 +f 11343/11343 11461/11461 11560/11560 +f 11457/11457 11343/11343 11560/11560 +f 11344/11344 11455/11455 11561/11561 +f 11344/11344 11562/11562 11349/11349 +f 11345/11345 11346/11346 11563/11563 +f 11345/11345 11564/11564 11348/11348 +f 11563/11563 11346/11346 11462/11462 +f 11347/11347 11463/11463 11462/11462 +f 11348/11348 11465/11465 11350/11350 +f 11246/11246 11464/11464 11463/11463 +f 11349/11349 11562/11562 11464/11464 +f 11351/11351 11465/11465 11565/11565 +f 11566/11566 11466/11466 11351/11351 +f 11352/11352 11466/11466 11567/11567 +f 11467/11467 11508/11508 11248/11248 +f 11352/11352 11567/11567 11467/11467 +f 11354/11354 36773/40183 36774/40184 +f 11468/11468 11139/11139 11253/11253 +f 11356/11356 11468/11468 11470/11470 +f 36775/40185 11357/11357 11354/11354 +f 36776/40186 36775/40185 11354/11354 +f 11469/11469 11468/11468 11253/11253 +f 36777/40187 11469/11469 11357/11357 +f 36775/40188 36777/40187 11357/11357 +f 11358/11358 11568/11568 11471/11471 +f 11568/11568 11358/11358 11470/11470 +f 11359/11359 11471/11471 11472/11472 +f 11472/11472 11569/11569 11360/11360 +f 11255/11255 11473/11473 11570/11570 +f 11569/11569 11473/11473 11360/11360 +f 11474/11474 11255/11255 11570/11570 +f 11361/11361 11474/11474 11571/11571 +f 11572/11572 11362/11362 11361/11361 +f 11362/11362 11573/11573 11363/11363 +f 11574/11574 11367/11367 11363/11363 +f 11365/11365 11575/11575 11364/11364 +f 11258/11258 11475/11475 11371/11371 +f 11475/11475 11364/11364 11576/11576 +f 11575/11575 11365/11365 11476/11476 +f 11366/11366 11577/11577 11477/11477 +f 11261/11261 11477/11477 11578/11578 +f 11577/11577 11366/11366 11367/11367 +f 11579/11579 11476/11476 11368/11368 +f 11478/11478 11370/11370 11369/11369 +f 11578/11578 11478/11478 11261/11261 +f 11370/11370 11580/11580 11479/11479 +f 11368/11368 11479/11479 11581/11581 +f 11373/11373 11371/11371 11582/11582 +f 11583/11583 11480/11480 11266/11266 +f 11480/11480 11584/11584 11372/11372 +f 11372/11372 11375/11375 11374/11374 +f 11481/11481 11373/11373 11585/11585 +f 11481/11481 11583/11583 11266/11266 +f 11586/11586 11376/11376 11375/11375 +f 11482/11482 11376/11376 11586/11586 +f 11378/11378 11377/11377 11587/11587 +f 11482/11482 11588/11588 11377/11377 +f 11589/11589 11269/11269 11483/11483 +f 11483/11483 11378/11378 11587/11587 +f 11379/11379 11484/11484 11590/11590 +f 11484/11484 11270/11270 11485/11485 +f 11485/11485 11269/11269 11589/11589 +f 11590/11590 11486/11486 11379/11379 +f 11334/11334 11380/11380 11549/11549 +f 11380/11380 11486/11486 11591/11591 +f 11327/11327 11272/11272 11487/11487 +f 11381/11381 11592/11592 11487/11487 +f 11382/11382 11592/11592 11381/11381 +f 11593/11593 11382/11382 11488/11488 +f 11527/11527 11488/11488 11312/11312 +f 11275/11275 11394/11394 11594/11594 +f 11275/11275 11490/11490 11279/11279 +f 11595/11595 11383/11383 11385/11385 +f 11489/11489 11596/11596 11384/11384 +f 11595/11595 11489/11489 11383/11383 +f 11490/11490 11595/11595 11385/11385 +f 11384/11384 11596/11596 11491/11491 +f 11280/11280 11491/11491 11492/11492 +f 11492/11492 11493/11493 11386/11386 +f 11493/11493 11390/11390 11281/11281 +f 11494/11494 11284/11284 11497/11497 +f 11597/11597 11495/11495 11387/11387 +f 11494/11494 11598/11598 11387/11387 +f 11496/11496 11388/11388 11389/11389 +f 11495/11495 11599/11599 11389/11389 +f 11390/11390 11600/11600 11497/11497 +f 11498/11498 11391/11391 11601/11601 +f 11496/11496 11602/11602 11391/11391 +f 11287/11287 11310/11310 11525/11525 +f 11287/11287 11525/11525 11499/11499 +f 11499/11499 11603/11603 11288/11288 +f 11604/11604 11394/11394 11500/11500 +f 11605/11605 11395/11395 11501/11501 +f 11288/11288 11603/11603 11501/11501 +f 11500/11500 11395/11395 11604/11604 +f 11396/11396 11509/11509 11502/11502 +f 11176/11176 11502/11502 11503/11503 +f 11606/11606 11397/11397 11503/11503 +f 11398/11398 11397/11397 11607/11607 +f 11398/11398 11608/11608 11504/11504 +f 11609/11609 11505/11505 11399/11399 +f 11290/11290 11505/11505 11400/11400 +f 11504/11504 11609/11609 11399/11399 +f 11610/11610 11506/11506 11400/11400 +f 11611/11611 11291/11291 11506/11506 +f 11507/11507 11291/11291 11611/11611 +f 11294/11294 11509/11509 11396/11396 +f 11508/11508 11509/11509 11293/11293 +f 11402/11402 11510/11510 11612/11612 +f 11510/11510 11295/11295 11507/11507 +f 11402/11402 11612/11612 11511/11511 +f 11297/11297 11403/11403 11613/11613 +f 11613/11613 11403/11403 11511/11511 +f 11614/11614 11404/11404 11512/11512 +f 11615/11615 11512/11512 11297/11297 +f 11614/11614 11405/11405 11404/11404 +f 11514/11514 11298/11298 11513/11513 +f 11616/11616 11513/11513 11405/11405 +f 11617/11617 11299/11299 11514/11514 +f 11617/11617 11515/11515 11299/11299 +f 11407/11407 11516/11516 11618/11618 +f 11301/11301 11517/11517 11516/11516 +f 11517/11517 11408/11408 11619/11619 +f 11408/11408 11515/11515 11620/11620 +f 11518/11518 11407/11407 11621/11621 +f 11622/11622 11302/11302 11518/11518 +f 11304/11304 11302/11302 11622/11622 +f 11409/11409 11521/11521 11410/11410 +f 11519/11519 11304/11304 11622/11622 +f 11623/11623 11409/11409 11519/11519 +f 11311/11311 11520/11520 11624/11624 +f 11305/11305 11521/11521 11520/11520 +f 11625/11625 11411/11411 11416/11416 +f 11522/11522 11412/11412 11626/11626 +f 11412/11412 11411/11411 11626/11626 +f 11413/11413 11523/11523 11627/11627 +f 11413/11413 11628/11628 11524/11524 +f 11414/11414 11524/11524 11629/11629 +f 11627/11627 11523/11523 11415/11415 +f 11522/11522 11630/11630 11415/11415 +f 11525/11525 11414/11414 11631/11631 +f 11311/11311 11624/11624 11526/11526 +f 11625/11625 11416/11416 11526/11526 +f 11527/11527 11417/11417 11632/11632 +f 11528/11528 11529/11529 11314/11314 +f 11528/11528 11313/11313 11633/11633 +f 11417/11417 11529/11529 11632/11632 +f 11313/11313 11530/11530 11633/11633 +f 11541/11541 11530/11530 11418/11418 +f 11418/11418 11419/11419 11541/11541 +f 11419/11419 11431/11431 11541/11541 +f 11531/11531 11634/11634 11420/11420 +f 11207/11207 11533/11533 11531/11531 +f 11634/11634 11532/11532 11420/11420 +f 11421/11421 11532/11532 11534/11534 +f 11602/11602 11533/11533 11422/11422 +f 11422/11422 11498/11498 11601/11601 +f 11534/11534 11423/11423 11421/11421 +f 11535/11535 11320/11320 11635/11635 +f 11426/11426 11424/11424 11636/11636 +f 11636/11636 11424/11424 11428/11428 +f 11537/11537 11536/11536 11324/11324 +f 11536/11536 11637/11637 11425/11425 +f 11537/11537 11426/11426 11636/11636 +f 11214/11214 11538/11538 11539/11539 +f 11638/11638 11538/11538 11425/11425 +f 11428/11428 11427/11427 11639/11639 +f 11427/11427 11535/11535 11640/11640 +f 11429/11429 11641/11641 11430/11430 +f 11642/11642 11429/11429 11539/11539 +f 11430/11430 11641/11641 11540/11540 +f 11541/11541 11326/11326 11540/11540 +f 11643/11643 11432/11432 11487/11487 +f 11644/11644 11441/11441 11432/11432 +f 11437/11437 11433/11433 11435/11435 +f 11645/11645 11542/11542 11434/11434 +f 11435/11435 11542/11542 11646/11646 +f 11647/11647 11436/11436 11543/11543 +f 11330/11330 11544/11544 11543/11543 +f 11437/11437 11648/11648 11544/11544 +f 11545/11545 11645/11645 11434/11434 +f 11438/11438 11546/11546 11649/11649 +f 11649/11649 11547/11547 11438/11438 +f 11547/11547 11650/11650 11439/11439 +f 11651/11651 11440/11440 11439/11439 +f 11545/11545 11440/11440 11651/11651 +f 11548/11548 11441/11441 11652/11652 +f 11548/11548 11653/11653 11442/11442 +f 11442/11442 11653/11653 11443/11443 +f 11546/11546 11443/11443 11654/11654 +f 11655/11655 11444/11444 11445/11445 +f 11647/11647 11445/11445 11436/11436 +f 11549/11549 11656/11656 11336/11336 +f 11336/11336 11657/11657 11450/11450 +f 11446/11446 11449/11449 11658/11658 +f 11447/11447 11446/11446 11658/11658 +f 11551/11551 11230/11230 11550/11550 +f 11550/11550 11447/11447 11659/11659 +f 11660/11660 11448/11448 11551/11551 +f 11448/11448 11661/11661 11454/11454 +f 11658/11658 11449/11449 11552/11552 +f 11450/11450 11662/11662 11552/11552 +f 11663/11663 11451/11451 11452/11452 +f 11555/11555 11553/11553 11340/11340 +f 11553/11553 11664/11664 11452/11452 +f 11665/11665 11453/11453 11554/11554 +f 11556/11556 11554/11554 11234/11234 +f 11666/11666 11555/11555 11453/11453 +f 11454/11454 11661/11661 11556/11556 +f 11455/11455 11557/11557 11561/11561 +f 11667/11667 11456/11456 11457/11457 +f 11559/11559 11238/11238 11558/11558 +f 11667/11667 11558/11558 11456/11456 +f 11668/11668 11458/11458 11559/11559 +f 11669/11669 11459/11459 11458/11458 +f 11670/11670 11557/11557 11459/11459 +f 11342/11342 11451/11451 11663/11663 +f 11663/11663 11560/11560 11342/11342 +f 11671/11671 11457/11457 11560/11560 +f 11561/11561 11672/11672 11344/11344 +f 11344/11344 11672/11672 11562/11562 +f 11563/11563 11564/11564 11345/11345 +f 11673/11673 11348/11348 11564/11564 +f 11462/11462 11674/11674 11563/11563 +f 11462/11462 11463/11463 11675/11675 +f 11673/11673 11465/11465 11348/11348 +f 11464/11464 11675/11675 11463/11463 +f 11464/11464 11562/11562 11676/11676 +f 11677/11677 11565/11565 11465/11465 +f 11565/11565 11678/11678 11351/11351 +f 11466/11466 11566/11566 11679/11679 +f 11351/11351 11678/11678 11566/11566 +f 11679/11679 11567/11567 11466/11466 +f 11680/11680 11508/11508 11467/11467 +f 11467/11467 11567/11567 11681/11681 +f 11354/11354 36774/40189 36778/40190 +f 11470/11470 11468/11468 11568/11568 +f 11354/11354 36778/40191 36776/40192 +f 11468/11468 11469/11469 11682/11682 +f 11469/11469 36777/40193 36779/40194 +f 11568/11568 11683/11683 11471/11471 +f 11472/11472 11471/11471 11683/11683 +f 11683/11683 11569/11569 11472/11472 +f 11473/11473 11684/11684 11570/11570 +f 11684/11684 11473/11473 11569/11569 +f 11474/11474 11570/11570 11685/11685 +f 11474/11474 11686/11686 11571/11571 +f 11572/11572 11361/11361 11571/11571 +f 11362/11362 11572/11572 11573/11573 +f 11573/11573 11574/11574 11363/11363 +f 11574/11574 11577/11577 11367/11367 +f 11575/11575 11576/11576 11364/11364 +f 11371/11371 11475/11475 11687/11687 +f 11475/11475 11576/11576 11687/11687 +f 11688/11688 11575/11575 11476/11476 +f 11477/11477 11577/11577 11689/11689 +f 11578/11578 11477/11477 11690/11690 +f 11579/11579 11688/11688 11476/11476 +f 11581/11581 11579/11579 11368/11368 +f 11691/11691 11370/11370 11478/11478 +f 11478/11478 11578/11578 11692/11692 +f 11693/11693 11479/11479 11580/11580 +f 11694/11694 11580/11580 11370/11370 +f 11479/11479 11695/11695 11581/11581 +f 11696/11696 11373/11373 11582/11582 +f 11582/11582 11371/11371 11687/11687 +f 11583/11583 11697/11697 11480/11480 +f 11584/11584 11375/11375 11372/11372 +f 11698/11698 11584/11584 11480/11480 +f 11696/11696 11585/11585 11373/11373 +f 11585/11585 11699/11699 11481/11481 +f 11481/11481 11699/11699 11583/11583 +f 11375/11375 11584/11584 11586/11586 +f 11586/11586 11700/11700 11482/11482 +f 11587/11587 11377/11377 11588/11588 +f 11700/11700 11588/11588 11482/11482 +f 11483/11483 11701/11701 11589/11589 +f 11587/11587 11701/11701 11483/11483 +f 11484/11484 11702/11702 11590/11590 +f 11703/11703 11484/11484 11485/11485 +f 11485/11485 11589/11589 11703/11703 +f 11704/11704 11486/11486 11590/11590 +f 11380/11380 11656/11656 11549/11549 +f 11591/11591 11705/11705 11380/11380 +f 11486/11486 11706/11706 11591/11591 +f 11707/11707 11487/11487 11592/11592 +f 11592/11592 11382/11382 11708/11708 +f 11593/11593 11708/11708 11382/11382 +f 11488/11488 11709/11709 11593/11593 +f 11527/11527 11710/11710 11488/11488 +f 11604/11604 11594/11594 11394/11394 +f 11594/11594 11711/11711 11275/11275 +f 11275/11275 11711/11711 11490/11490 +f 11595/11595 11596/11596 11489/11489 +f 11490/11490 11596/11596 11595/11595 +f 11596/11596 11712/11712 11491/11491 +f 11713/11713 11492/11492 11491/11491 +f 11493/11493 11492/11492 11714/11714 +f 11493/11493 11714/11714 11390/11390 +f 11494/11494 11497/11497 11715/11715 +f 11716/11716 11495/11495 11597/11597 +f 11598/11598 11597/11597 11387/11387 +f 11717/11717 11598/11598 11494/11494 +f 11599/11599 11496/11496 11389/11389 +f 11495/11495 11716/11716 11599/11599 +f 11497/11497 11600/11600 11715/11715 +f 11600/11600 11390/11390 11714/11714 +f 11601/11601 11391/11391 11602/11602 +f 11496/11496 11718/11718 11602/11602 +f 11525/11525 11719/11719 11499/11499 +f 11603/11603 11499/11499 11719/11719 +f 11720/11720 11395/11395 11605/11605 +f 11721/11721 11605/11605 11501/11501 +f 11501/11501 11603/11603 11721/11721 +f 11604/11604 11395/11395 11720/11720 +f 11502/11502 11509/11509 11722/11722 +f 11502/11502 11606/11606 11503/11503 +f 11397/11397 11606/11606 11607/11607 +f 11607/11607 11723/11723 11398/11398 +f 11724/11724 11504/11504 11608/11608 +f 11608/11608 11398/11398 11723/11723 +f 11505/11505 11609/11609 11725/11725 +f 11400/11400 11505/11505 11725/11725 +f 11609/11609 11504/11504 11726/11726 +f 11400/11400 11727/11727 11610/11610 +f 11728/11728 11506/11506 11610/11610 +f 11729/11729 11611/11611 11506/11506 +f 11611/11611 11730/11730 11507/11507 +f 11509/11509 11508/11508 11680/11680 +f 11510/11510 11731/11731 11612/11612 +f 11732/11732 11510/11510 11507/11507 +f 11511/11511 11612/11612 11733/11733 +f 11613/11613 11734/11734 11297/11297 +f 11735/11735 11613/11613 11511/11511 +f 11512/11512 11736/11736 11614/11614 +f 11736/11736 11512/11512 11615/11615 +f 11297/11297 11737/11737 11615/11615 +f 11405/11405 11614/11614 11738/11738 +f 11513/11513 11739/11739 11514/11514 +f 11740/11740 11513/11513 11616/11616 +f 11741/11741 11616/11616 11405/11405 +f 11514/11514 11739/11739 11617/11617 +f 11617/11617 11742/11742 11515/11515 +f 11618/11618 11516/11516 11743/11743 +f 11618/11618 11744/11744 11407/11407 +f 11517/11517 11743/11743 11516/11516 +f 11745/11745 11517/11517 11619/11619 +f 11619/11619 11408/11408 11620/11620 +f 11620/11620 11515/11515 11746/11746 +f 11747/11747 11621/11621 11407/11407 +f 11518/11518 11621/11621 11747/11747 +f 11748/11748 11622/11622 11518/11518 +f 11409/11409 11749/11749 11521/11521 +f 11748/11748 11519/11519 11622/11622 +f 11750/11750 11409/11409 11623/11623 +f 11623/11623 11519/11519 11751/11751 +f 11752/11752 11624/11624 11520/11520 +f 11520/11520 11521/11521 11753/11753 +f 11411/11411 11625/11625 11626/11626 +f 11522/11522 11626/11626 11630/11630 +f 11628/11628 11413/11413 11627/11627 +f 11629/11629 11524/11524 11628/11628 +f 11754/11754 11414/11414 11629/11629 +f 11627/11627 11415/11415 11755/11755 +f 11630/11630 11756/11756 11415/11415 +f 11719/11719 11525/11525 11631/11631 +f 11414/11414 11754/11754 11631/11631 +f 11526/11526 11624/11624 11757/11757 +f 11758/11758 11625/11625 11526/11526 +f 11632/11632 11710/11710 11527/11527 +f 11528/11528 11759/11759 11529/11529 +f 11760/11760 11528/11528 11633/11633 +f 11761/11761 11632/11632 11529/11529 +f 11762/11762 11633/11633 11530/11530 +f 11530/11530 11541/11541 11762/11762 +f 11763/11763 11634/11634 11531/11531 +f 11533/11533 11764/11764 11531/11531 +f 11532/11532 11634/11634 11765/11765 +f 11532/11532 11635/11635 11534/11534 +f 11533/11533 11602/11602 11764/11764 +f 11602/11602 11422/11422 11601/11601 +f 11640/11640 11535/11535 11635/11635 +f 11636/11636 11428/11428 11766/11766 +f 11537/11537 11767/11767 11536/11536 +f 11768/11768 11637/11637 11536/11536 +f 11425/11425 11637/11637 11638/11638 +f 11537/11537 11636/11636 11769/11769 +f 11539/11539 11538/11538 11770/11770 +f 11538/11538 11638/11638 11771/11771 +f 11772/11772 11428/11428 11639/11639 +f 11427/11427 11640/11640 11639/11639 +f 11429/11429 11773/11773 11641/11641 +f 11642/11642 11773/11773 11429/11429 +f 11539/11539 11774/11774 11642/11642 +f 11641/11641 11775/11775 11540/11540 +f 11540/11540 11762/11762 11541/11541 +f 11644/11644 11432/11432 11643/11643 +f 11487/11487 11707/11707 11643/11643 +f 11441/11441 11644/11644 11652/11652 +f 11437/11437 11435/11435 11648/11648 +f 11645/11645 11646/11646 11542/11542 +f 11435/11435 11646/11646 11776/11776 +f 11544/11544 11647/11647 11543/11543 +f 11648/11648 11777/11777 11544/11544 +f 11545/11545 11651/11651 11645/11645 +f 11546/11546 11778/11778 11649/11649 +f 11779/11779 11547/11547 11649/11649 +f 11779/11779 11650/11650 11547/11547 +f 11780/11780 11439/11439 11650/11650 +f 11439/11439 11781/11781 11651/11651 +f 11652/11652 11653/11653 11548/11548 +f 11443/11443 11653/11653 11652/11652 +f 11778/11778 11546/11546 11654/11654 +f 11652/11652 11654/11654 11443/11443 +f 11655/11655 11445/11445 11647/11647 +f 11656/11656 11657/11657 11336/11336 +f 11662/11662 11450/11450 11657/11657 +f 11782/11782 11447/11447 11658/11658 +f 11550/11550 11783/11783 11551/11551 +f 11782/11782 11659/11659 11447/11447 +f 11659/11659 11783/11783 11550/11550 +f 11448/11448 11660/11660 11661/11661 +f 11551/11551 11783/11783 11660/11660 +f 11784/11784 11658/11658 11552/11552 +f 11662/11662 11785/11785 11552/11552 +f 11452/11452 11786/11786 11663/11663 +f 11553/11553 11555/11555 11664/11664 +f 11664/11664 11787/11787 11452/11452 +f 11453/11453 11665/11665 11666/11666 +f 11788/11788 11665/11665 11554/11554 +f 11556/11556 11789/11789 11554/11554 +f 11666/11666 11790/11790 11555/11555 +f 11789/11789 11556/11556 11661/11661 +f 11791/11791 11561/11561 11557/11557 +f 11792/11792 11667/11667 11457/11457 +f 11558/11558 11667/11667 11559/11559 +f 11668/11668 11559/11559 11793/11793 +f 11668/11668 11794/11794 11458/11458 +f 11459/11459 11669/11669 11670/11670 +f 11458/11458 11795/11795 11669/11669 +f 11557/11557 11670/11670 11791/11791 +f 11786/11786 11560/11560 11663/11663 +f 11671/11671 11792/11792 11457/11457 +f 11796/11796 11671/11671 11560/11560 +f 11561/11561 11791/11791 11672/11672 +f 11797/11797 11562/11562 11672/11672 +f 11563/11563 11674/11674 11564/11564 +f 11674/11674 11673/11673 11564/11564 +f 11462/11462 11798/11798 11674/11674 +f 11675/11675 11798/11798 11462/11462 +f 11465/11465 11673/11673 11677/11677 +f 11464/11464 11676/11676 11675/11675 +f 11797/11797 11676/11676 11562/11562 +f 11799/11799 11565/11565 11677/11677 +f 11678/11678 11565/11565 11800/11800 +f 11679/11679 11566/11566 11801/11801 +f 11566/11566 11678/11678 11802/11802 +f 11567/11567 11679/11679 11803/11803 +f 11681/11681 11680/11680 11467/11467 +f 11804/11804 11681/11681 11567/11567 +f 11568/11568 11468/11468 11682/11682 +f 36780/40195 11682/11682 11469/11469 +f 36781/40196 36780/40195 11469/11469 +f 11469/11469 36779/40197 36782/40198 +f 11683/11683 11568/11568 11805/11805 +f 11683/11683 11806/11806 11569/11569 +f 11684/11684 11807/11807 11570/11570 +f 11569/11569 11808/11808 11684/11684 +f 11685/11685 11570/11570 11807/11807 +f 11474/11474 11685/11685 11686/11686 +f 11686/11686 11809/11809 11571/11571 +f 11810/11810 11572/11572 11571/11571 +f 11572/11572 11811/11811 11573/11573 +f 11811/11811 11574/11574 11573/11573 +f 11812/11812 11577/11577 11574/11574 +f 11575/11575 11688/11688 11576/11576 +f 11576/11576 11813/11813 11687/11687 +f 11690/11690 11477/11477 11689/11689 +f 11689/11689 11577/11577 11812/11812 +f 11578/11578 11690/11690 11814/11814 +f 11688/11688 11579/11579 11581/11581 +f 11694/11694 11370/11370 11691/11691 +f 11691/11691 11478/11478 11692/11692 +f 11578/11578 11815/11815 11692/11692 +f 11693/11693 11695/11695 11479/11479 +f 11693/11693 11580/11580 11816/11816 +f 11816/11816 11580/11580 11694/11694 +f 11695/11695 11688/11688 11581/11581 +f 11817/11817 11696/11696 11582/11582 +f 11582/11582 11687/11687 11817/11817 +f 11697/11697 11583/11583 11818/11818 +f 11480/11480 11697/11697 11698/11698 +f 11586/11586 11584/11584 11698/11698 +f 11819/11819 11585/11585 11696/11696 +f 11699/11699 11585/11585 11820/11820 +f 11699/11699 11818/11818 11583/11583 +f 11700/11700 11586/11586 11698/11698 +f 11821/11821 11587/11587 11588/11588 +f 11588/11588 11700/11700 11822/11822 +f 11823/11823 11589/11589 11701/11701 +f 11587/11587 11821/11821 11701/11701 +f 11484/11484 11824/11824 11702/11702 +f 11590/11590 11702/11702 11704/11704 +f 11824/11824 11484/11484 11703/11703 +f 11589/11589 11823/11823 11703/11703 +f 11706/11706 11486/11486 11704/11704 +f 11705/11705 11656/11656 11380/11380 +f 11825/11825 11705/11705 11591/11591 +f 11706/11706 11825/11825 11591/11591 +f 11826/11826 11707/11707 11592/11592 +f 11708/11708 11827/11827 11592/11592 +f 11708/11708 11593/11593 11828/11828 +f 11709/11709 11488/11488 11710/11710 +f 11828/11828 11593/11593 11709/11709 +f 11829/11829 11594/11594 11604/11604 +f 11830/11830 11711/11711 11594/11594 +f 11596/11596 11490/11490 11711/11711 +f 11712/11712 11831/11831 11491/11491 +f 11712/11712 11596/11596 11832/11832 +f 11831/11831 11713/11713 11491/11491 +f 11713/11713 11714/11714 11492/11492 +f 11715/11715 11833/11833 11494/11494 +f 11716/11716 11597/11597 11834/11834 +f 11597/11597 11598/11598 11835/11835 +f 11836/11836 11598/11598 11717/11717 +f 11717/11717 11494/11494 11833/11833 +f 11599/11599 11718/11718 11496/11496 +f 11837/11837 11599/11599 11716/11716 +f 11838/11838 11715/11715 11600/11600 +f 11600/11600 11714/11714 11839/11839 +f 11718/11718 11764/11764 11602/11602 +f 11721/11721 11603/11603 11719/11719 +f 11720/11720 11605/11605 11840/11840 +f 11841/11841 11605/11605 11721/11721 +f 11720/11720 11842/11842 11604/11604 +f 11509/11509 11680/11680 11722/11722 +f 11606/11606 11502/11502 11722/11722 +f 11843/11843 11607/11607 11606/11606 +f 11607/11607 11844/11844 11723/11723 +f 11504/11504 11724/11724 11726/11726 +f 11724/11724 11608/11608 11845/11845 +f 11846/11846 11608/11608 11723/11723 +f 11725/11725 11609/11609 11847/11847 +f 11400/11400 11725/11725 11727/11727 +f 11726/11726 11848/11848 11609/11609 +f 11610/11610 11727/11727 11849/11849 +f 11850/11850 11506/11506 11728/11728 +f 11851/11851 11728/11728 11610/11610 +f 11729/11729 11506/11506 11850/11850 +f 11729/11729 11730/11730 11611/11611 +f 11507/11507 11730/11730 11732/11732 +f 11731/11731 11852/11852 11612/11612 +f 11510/11510 11732/11732 11731/11731 +f 11735/11735 11511/11511 11733/11733 +f 11612/11612 11852/11852 11733/11733 +f 11853/11853 11734/11734 11613/11613 +f 11297/11297 11734/11734 11737/11737 +f 11613/11613 11735/11735 11854/11854 +f 11738/11738 11614/11614 11736/11736 +f 11737/11737 11736/11736 11615/11615 +f 11738/11738 11741/11741 11405/11405 +f 11513/11513 11740/11740 11739/11739 +f 11855/11855 11740/11740 11616/11616 +f 11856/11856 11616/11616 11741/11741 +f 11617/11617 11739/11739 11857/11857 +f 11742/11742 11617/11617 11858/11858 +f 11515/11515 11742/11742 11859/11859 +f 11618/11618 11743/11743 11744/11744 +f 11747/11747 11407/11407 11744/11744 +f 11743/11743 11517/11517 11745/11745 +f 11746/11746 11745/11745 11619/11619 +f 11746/11746 11619/11619 11620/11620 +f 11746/11746 11515/11515 11859/11859 +f 11860/11860 11518/11518 11747/11747 +f 11518/11518 11860/11860 11748/11748 +f 11749/11749 11409/11409 11861/11861 +f 11753/11753 11521/11521 11749/11749 +f 11519/11519 11748/11748 11860/11860 +f 11861/11861 11409/11409 11750/11750 +f 11750/11750 11623/11623 11862/11862 +f 11863/11863 11623/11623 11751/11751 +f 11860/11860 11751/11751 11519/11519 +f 11753/11753 11752/11752 11520/11520 +f 11864/11864 11624/11624 11752/11752 +f 11758/11758 11626/11626 11625/11625 +f 11626/11626 11758/11758 11630/11630 +f 11755/11755 11628/11628 11627/11627 +f 11629/11629 11628/11628 11865/11865 +f 11754/11754 11629/11629 11865/11865 +f 11755/11755 11415/11415 11756/11756 +f 11866/11866 11756/11756 11630/11630 +f 11867/11867 11719/11719 11631/11631 +f 11631/11631 11754/11754 11867/11867 +f 11757/11757 11624/11624 11868/11868 +f 11526/11526 11757/11757 11866/11866 +f 11758/11758 11526/11526 11866/11866 +f 11632/11632 11761/11761 11710/11710 +f 11760/11760 11759/11759 11528/11528 +f 11529/11529 11759/11759 11869/11869 +f 11870/11870 11760/11760 11633/11633 +f 11529/11529 11871/11871 11761/11761 +f 11870/11870 11633/11633 11762/11762 +f 11763/11763 11872/11872 11634/11634 +f 11531/11531 11873/11873 11763/11763 +f 11531/11531 11764/11764 11874/11874 +f 11635/11635 11532/11532 11765/11765 +f 11634/11634 11875/11875 11765/11765 +f 11765/11765 11640/11640 11635/11635 +f 11766/11766 11428/11428 11772/11772 +f 11766/11766 11876/11876 11636/11636 +f 11769/11769 11767/11767 11537/11537 +f 11536/11536 11767/11767 11768/11768 +f 11768/11768 11877/11877 11637/11637 +f 11878/11878 11638/11638 11637/11637 +f 11636/11636 11876/11876 11769/11769 +f 11879/11879 11770/11770 11538/11538 +f 11770/11770 11774/11774 11539/11539 +f 11638/11638 11880/11880 11771/11771 +f 11771/11771 11879/11879 11538/11538 +f 11639/11639 11881/11881 11772/11772 +f 11640/11640 11882/11882 11639/11639 +f 11641/11641 11773/11773 11775/11775 +f 11883/11883 11773/11773 11642/11642 +f 11884/11884 11642/11642 11774/11774 +f 11762/11762 11540/11540 11775/11775 +f 11885/11885 11644/11644 11643/11643 +f 11707/11707 11885/11885 11643/11643 +f 11644/11644 11654/11654 11652/11652 +f 11776/11776 11648/11648 11435/11435 +f 11651/11651 11646/11646 11645/11645 +f 11886/11886 11776/11776 11646/11646 +f 11544/11544 11777/11777 11647/11647 +f 11887/11887 11777/11777 11648/11648 +f 11778/11778 11779/11779 11649/11649 +f 11650/11650 11779/11779 11888/11888 +f 11650/11650 11889/11889 11780/11780 +f 11439/11439 11780/11780 11781/11781 +f 11781/11781 11890/11890 11651/11651 +f 11654/11654 11885/11885 11778/11778 +f 11891/11891 11655/11655 11647/11647 +f 11657/11657 11656/11656 11662/11662 +f 11784/11784 11782/11782 11658/11658 +f 11892/11892 11659/11659 11782/11782 +f 11783/11783 11659/11659 11893/11893 +f 11661/11661 11660/11660 11789/11789 +f 11660/11660 11783/11783 11894/11894 +f 11552/11552 11785/11785 11784/11784 +f 11785/11785 11662/11662 11705/11705 +f 11786/11786 11452/11452 11895/11895 +f 11896/11896 11664/11664 11555/11555 +f 11452/11452 11787/11787 11895/11895 +f 11897/11897 11787/11787 11664/11664 +f 11666/11666 11665/11665 11898/11898 +f 11899/11899 11665/11665 11788/11788 +f 11554/11554 11789/11789 11788/11788 +f 11790/11790 11666/11666 11898/11898 +f 11896/11896 11555/11555 11790/11790 +f 11667/11667 11792/11792 11793/11793 +f 11793/11793 11559/11559 11667/11667 +f 11793/11793 11792/11792 11668/11668 +f 11900/11900 11794/11794 11668/11668 +f 11794/11794 11795/11795 11458/11458 +f 11901/11901 11670/11670 11669/11669 +f 11795/11795 11902/11902 11669/11669 +f 11670/11670 11903/11903 11791/11791 +f 11560/11560 11786/11786 11796/11796 +f 11792/11792 11671/11671 11904/11904 +f 11671/11671 11796/11796 11904/11904 +f 11672/11672 11791/11791 11905/11905 +f 11672/11672 11905/11905 11797/11797 +f 11673/11673 11674/11674 11906/11906 +f 11906/11906 11674/11674 11798/11798 +f 11675/11675 11907/11907 11798/11798 +f 11677/11677 11673/11673 11906/11906 +f 11907/11907 11675/11675 11676/11676 +f 11797/11797 11908/11908 11676/11676 +f 11565/11565 11799/11799 11800/11800 +f 11677/11677 11906/11906 11799/11799 +f 11678/11678 11800/11800 11909/11909 +f 11802/11802 11801/11801 11566/11566 +f 11679/11679 11801/11801 11910/11910 +f 11802/11802 11678/11678 11909/11909 +f 11803/11803 11679/11679 11910/11910 +f 11804/11804 11567/11567 11803/11803 +f 11681/11681 11911/11911 11680/11680 +f 11804/11804 11912/11912 11681/11681 +f 11568/11568 11682/11682 11805/11805 +f 11469/11469 36783/40199 36781/40200 +f 36784/40201 11913/11913 11682/11682 +f 36780/40202 36784/40201 11682/11682 +f 11469/11469 36782/40203 36783/40204 +f 11683/11683 11805/11805 11806/11806 +f 11806/11806 11808/11808 11569/11569 +f 11807/11807 11684/11684 11914/11914 +f 11808/11808 11914/11914 11684/11684 +f 11915/11915 11685/11685 11807/11807 +f 11686/11686 11685/11685 11916/11916 +f 11916/11916 11809/11809 11686/11686 +f 11571/11571 11809/11809 11917/11917 +f 11810/11810 11918/11918 11572/11572 +f 11919/11919 11810/11810 11571/11571 +f 11572/11572 11918/11918 11811/11811 +f 11574/11574 11811/11811 11812/11812 +f 11688/11688 11920/11920 11576/11576 +f 11687/11687 11813/11813 11817/11817 +f 11921/11921 11813/11813 11576/11576 +f 11689/11689 11922/11922 11690/11690 +f 11923/11923 11689/11689 11812/11812 +f 11922/11922 11814/11814 11690/11690 +f 11814/11814 11815/11815 11578/11578 +f 11691/11691 11924/11924 11694/11694 +f 11925/11925 11691/11691 11692/11692 +f 11692/11692 11815/11815 11925/11925 +f 11695/11695 11693/11693 11920/11920 +f 11816/11816 11926/11926 11693/11693 +f 11694/11694 11924/11924 11816/11816 +f 11695/11695 11920/11920 11688/11688 +f 11817/11817 11927/11927 11696/11696 +f 11697/11697 11818/11818 11698/11698 +f 11928/11928 11585/11585 11819/11819 +f 11819/11819 11696/11696 11929/11929 +f 11930/11930 11699/11699 11820/11820 +f 11585/11585 11928/11928 11820/11820 +f 11930/11930 11818/11818 11699/11699 +f 11931/11931 11700/11700 11698/11698 +f 11932/11932 11821/11821 11588/11588 +f 11700/11700 11931/11931 11822/11822 +f 11932/11932 11588/11588 11822/11822 +f 11933/11933 11823/11823 11701/11701 +f 11821/11821 11934/11934 11701/11701 +f 11702/11702 11824/11824 11704/11704 +f 11935/11935 11824/11824 11703/11703 +f 11823/11823 11936/11936 11703/11703 +f 11937/11937 11706/11706 11704/11704 +f 11656/11656 11705/11705 11662/11662 +f 11825/11825 11785/11785 11705/11705 +f 11937/11937 11825/11825 11706/11706 +f 11826/11826 11938/11938 11707/11707 +f 11592/11592 11827/11827 11826/11826 +f 11827/11827 11708/11708 11939/11939 +f 11828/11828 11939/11939 11708/11708 +f 11709/11709 11710/11710 11828/11828 +f 11830/11830 11594/11594 11829/11829 +f 11604/11604 11842/11842 11829/11829 +f 11832/11832 11711/11711 11830/11830 +f 11711/11711 11832/11832 11596/11596 +f 11712/11712 11832/11832 11831/11831 +f 11831/11831 11714/11714 11713/11713 +f 11715/11715 11940/11940 11833/11833 +f 11837/11837 11716/11716 11834/11834 +f 11941/11941 11834/11834 11597/11597 +f 11836/11836 11835/11835 11598/11598 +f 11597/11597 11835/11835 11941/11941 +f 11942/11942 11836/11836 11717/11717 +f 11717/11717 11833/11833 11943/11943 +f 11599/11599 11837/11837 11718/11718 +f 11940/11940 11715/11715 11838/11838 +f 11600/11600 11839/11839 11838/11838 +f 11714/11714 11831/11831 11839/11839 +f 11874/11874 11764/11764 11718/11718 +f 11719/11719 11944/11944 11721/11721 +f 11720/11720 11840/11840 11945/11945 +f 11946/11946 11840/11840 11605/11605 +f 11841/11841 11947/11947 11605/11605 +f 11841/11841 11721/11721 11944/11944 +f 11720/11720 11829/11829 11842/11842 +f 11680/11680 11911/11911 11722/11722 +f 11948/11948 11606/11606 11722/11722 +f 11844/11844 11607/11607 11843/11843 +f 11948/11948 11843/11843 11606/11606 +f 11723/11723 11844/11844 11846/11846 +f 11726/11726 11724/11724 11949/11949 +f 11950/11950 11724/11724 11845/11845 +f 11951/11951 11845/11845 11608/11608 +f 11846/11846 11951/11951 11608/11608 +f 11847/11847 11609/11609 11952/11952 +f 11727/11727 11725/11725 11847/11847 +f 11952/11952 11609/11609 11848/11848 +f 11953/11953 11848/11848 11726/11726 +f 11954/11954 11849/11849 11727/11727 +f 11849/11849 11851/11851 11610/11610 +f 11850/11850 11728/11728 11955/11955 +f 11728/11728 11851/11851 11955/11955 +f 11729/11729 11850/11850 11956/11956 +f 11730/11730 11729/11729 11957/11957 +f 11732/11732 11730/11730 11958/11958 +f 11959/11959 11852/11852 11731/11731 +f 11731/11731 11732/11732 11960/11960 +f 11854/11854 11735/11735 11733/11733 +f 11733/11733 11852/11852 11961/11961 +f 11854/11854 11853/11853 11613/11613 +f 11853/11853 11962/11962 11734/11734 +f 11963/11963 11737/11737 11734/11734 +f 11738/11738 11736/11736 11964/11964 +f 11965/11965 11736/11736 11737/11737 +f 11741/11741 11738/11738 11856/11856 +f 11739/11739 11740/11740 11966/11966 +f 11616/11616 11856/11856 11855/11855 +f 11967/11967 11740/11740 11855/11855 +f 11857/11857 11739/11739 11968/11968 +f 11858/11858 11617/11617 11857/11857 +f 11742/11742 11858/11858 11969/11969 +f 11970/11970 11859/11859 11742/11742 +f 11743/11743 11971/11971 11744/11744 +f 11744/11744 11863/11863 11747/11747 +f 11745/11745 11972/11972 11743/11743 +f 11746/11746 11973/11973 11745/11745 +f 11746/11746 11859/11859 11974/11974 +f 11747/11747 11751/11751 11860/11860 +f 11861/11861 11975/11975 11749/11749 +f 11975/11975 11753/11753 11749/11749 +f 11976/11976 11861/11861 11750/11750 +f 11623/11623 11977/11977 11862/11862 +f 11862/11862 11976/11976 11750/11750 +f 11863/11863 11978/11978 11623/11623 +f 11863/11863 11751/11751 11747/11747 +f 11753/11753 11979/11979 11752/11752 +f 11980/11980 11864/11864 11752/11752 +f 11624/11624 11864/11864 11868/11868 +f 11866/11866 11630/11630 11758/11758 +f 11755/11755 11865/11865 11628/11628 +f 11981/11981 11754/11754 11865/11865 +f 11865/11865 11755/11755 11756/11756 +f 11982/11982 11756/11756 11866/11866 +f 11719/11719 11867/11867 11944/11944 +f 11754/11754 11983/11983 11867/11867 +f 11982/11982 11757/11757 11868/11868 +f 11757/11757 11982/11982 11866/11866 +f 11761/11761 11939/11939 11710/11710 +f 11759/11759 11760/11760 11984/11984 +f 11869/11869 11759/11759 11985/11985 +f 11529/11529 11869/11869 11986/11986 +f 11760/11760 11870/11870 11987/11987 +f 11986/11986 11871/11871 11529/11529 +f 11761/11761 11871/11871 11988/11988 +f 11870/11870 11762/11762 11775/11775 +f 11634/11634 11872/11872 11875/11875 +f 11872/11872 11763/11763 11989/11989 +f 11531/11531 11874/11874 11873/11873 +f 11763/11763 11873/11873 11837/11837 +f 11990/11990 11765/11765 11875/11875 +f 11640/11640 11765/11765 11990/11990 +f 11772/11772 11881/11881 11766/11766 +f 11881/11881 11876/11876 11766/11766 +f 11991/11991 11767/11767 11769/11769 +f 11767/11767 11991/11991 11768/11768 +f 11768/11768 11992/11992 11877/11877 +f 11878/11878 11637/11637 11877/11877 +f 11638/11638 11878/11878 11993/11993 +f 11769/11769 11876/11876 11994/11994 +f 11879/11879 11884/11884 11770/11770 +f 11774/11774 11770/11770 11884/11884 +f 11880/11880 11995/11995 11771/11771 +f 11880/11880 11638/11638 11996/11996 +f 11997/11997 11879/11879 11771/11771 +f 11882/11882 11881/11881 11639/11639 +f 11998/11998 11882/11882 11640/11640 +f 11775/11775 11773/11773 11883/11883 +f 11999/11999 11883/11883 11642/11642 +f 11884/11884 12000/12000 11642/11642 +f 11644/11644 11885/11885 11654/11654 +f 11707/11707 12001/12001 11885/11885 +f 11648/11648 11776/11776 11886/11886 +f 11646/11646 11651/11651 12002/12002 +f 11886/11886 11646/11646 12002/12002 +f 11891/11891 11647/11647 11777/11777 +f 11777/11777 11887/11887 11891/11891 +f 11887/11887 11648/11648 11886/11886 +f 11779/11779 11778/11778 11888/11888 +f 12003/12003 11650/11650 11888/11888 +f 11650/11650 12003/12003 11889/11889 +f 12004/12004 11780/11780 11889/11889 +f 12005/12005 11781/11781 11780/11780 +f 11890/11890 11781/11781 12006/12006 +f 11651/11651 11890/11890 12006/12006 +f 11778/11778 11885/11885 11888/11888 +f 12007/12007 11655/11655 11891/11891 +f 12008/12008 11782/11782 11784/11784 +f 11782/11782 12009/12009 11892/11892 +f 11892/11892 11893/11893 11659/11659 +f 11783/11783 11893/11893 12010/12010 +f 11894/11894 11789/11789 11660/11660 +f 12010/12010 11894/11894 11783/11783 +f 12008/12008 11784/11784 11785/11785 +f 11786/11786 11895/11895 12011/12011 +f 11664/11664 11896/11896 11897/11897 +f 11895/11895 11787/11787 12012/12012 +f 11787/11787 11897/11897 12013/12013 +f 11898/11898 11665/11665 12014/12014 +f 11788/11788 12015/12015 11899/11899 +f 11899/11899 12014/12014 11665/11665 +f 11788/11788 11789/11789 11894/11894 +f 11898/11898 12016/12016 11790/11790 +f 11897/11897 11896/11896 11790/11790 +f 11904/11904 11668/11668 11792/11792 +f 12017/12017 11900/11900 11668/11668 +f 11900/11900 12018/12018 11794/11794 +f 11795/11795 11794/11794 12018/12018 +f 11669/11669 11902/11902 11901/11901 +f 11670/11670 11901/11901 12019/12019 +f 11902/11902 11795/11795 12020/12020 +f 11791/11791 11903/11903 11905/11905 +f 11670/11670 12019/12019 11903/11903 +f 11786/11786 12011/12011 11796/11796 +f 11796/11796 12011/12011 11904/11904 +f 12021/12021 11797/11797 11905/11905 +f 11798/11798 12022/12022 11906/11906 +f 11907/11907 12023/12023 11798/11798 +f 11907/11907 11676/11676 12024/12024 +f 11797/11797 12021/12021 11908/11908 +f 12024/12024 11676/11676 11908/11908 +f 11799/11799 12025/12025 11800/11800 +f 11799/11799 11906/11906 12026/12026 +f 11800/11800 12027/12027 11909/11909 +f 12028/12028 11801/11801 11802/11802 +f 11801/11801 12029/12029 11910/11910 +f 11909/11909 12030/12030 11802/11802 +f 11910/11910 11804/11804 11803/11803 +f 11911/11911 11681/11681 11912/11912 +f 12029/12029 11912/11912 11804/11804 +f 11805/11805 11682/11682 11913/11913 +f 11913/11913 36784/40205 36785/40206 +f 11806/11806 11805/11805 12031/12031 +f 12032/12032 11808/11808 11806/11806 +f 11914/11914 12033/12033 11807/11807 +f 11914/11914 11808/11808 12032/12032 +f 11807/11807 12033/12033 11915/11915 +f 11915/11915 12034/12034 11685/11685 +f 11685/11685 12034/12034 11916/11916 +f 11809/11809 11916/11916 12035/12035 +f 11809/11809 12036/12036 11917/11917 +f 11917/11917 11919/11919 11571/11571 +f 11918/11918 11810/11810 12037/12037 +f 11919/11919 12038/12038 11810/11810 +f 11918/11918 11923/11923 11811/11811 +f 11811/11811 11923/11923 11812/11812 +f 11920/11920 12039/12039 11576/11576 +f 12040/12040 11817/11817 11813/11813 +f 11921/11921 12040/12040 11813/11813 +f 11576/11576 12039/12039 11921/11921 +f 11689/11689 11923/11923 11922/11922 +f 12041/12041 11814/11814 11922/11922 +f 11925/11925 11815/11815 11814/11814 +f 11924/11924 11691/11691 11925/11925 +f 11926/11926 11920/11920 11693/11693 +f 12042/12042 11926/11926 11816/11816 +f 11816/11816 11924/11924 12043/12043 +f 12040/12040 11927/11927 11817/11817 +f 11929/11929 11696/11696 11927/11927 +f 11698/11698 11818/11818 12044/12044 +f 12045/12045 11928/11928 11819/11819 +f 11929/11929 12046/12046 11819/11819 +f 11820/11820 12047/12047 11930/11930 +f 12048/12048 11820/11820 11928/11928 +f 12049/12049 11818/11818 11930/11930 +f 11698/11698 12044/12044 11931/11931 +f 11932/11932 12050/12050 11821/11821 +f 12051/12051 11822/11822 11931/11931 +f 11822/11822 12051/12051 11932/11932 +f 11701/11701 11934/11934 11933/11933 +f 12052/12052 11823/11823 11933/11933 +f 11934/11934 11821/11821 12053/12053 +f 11824/11824 12054/12054 11704/11704 +f 12055/12055 11935/11935 11703/11703 +f 11824/11824 11935/11935 12054/12054 +f 11823/11823 12056/12056 11936/11936 +f 11936/11936 12055/12055 11703/11703 +f 11704/11704 12057/12057 11937/11937 +f 11785/11785 11825/11825 12058/12058 +f 11825/11825 11937/11937 12059/12059 +f 11938/11938 11826/11826 11827/11827 +f 12060/12060 11707/11707 11938/11938 +f 11827/11827 11939/11939 12061/12061 +f 11939/11939 11828/11828 11710/11710 +f 11829/11829 12062/12062 11830/11830 +f 11830/11830 12063/12063 11832/11832 +f 11831/11831 11832/11832 12064/12064 +f 12065/12065 11833/11833 11940/11940 +f 11989/11989 11837/11837 11834/11834 +f 11941/11941 12066/12066 11834/11834 +f 11836/11836 11942/11942 11835/11835 +f 11941/11941 11835/11835 12067/12067 +f 12068/12068 11942/11942 11717/11717 +f 11833/11833 12065/12065 11943/11943 +f 12068/12068 11717/11717 11943/11943 +f 11718/11718 11837/11837 11873/11873 +f 12069/12069 11940/11940 11838/11838 +f 11839/11839 12070/12070 11838/11838 +f 11839/11839 11831/11831 12064/12064 +f 11873/11873 11874/11874 11718/11718 +f 11945/11945 11840/11840 12071/12071 +f 11720/11720 11945/11945 12062/12062 +f 11947/11947 11946/11946 11605/11605 +f 11840/11840 11946/11946 12072/12072 +f 11947/11947 11841/11841 12073/12073 +f 11944/11944 12074/12074 11841/11841 +f 11720/11720 12062/12062 11829/11829 +f 11722/11722 11911/11911 11948/11948 +f 12075/12075 11844/11844 11843/11843 +f 12076/12076 11843/11843 11948/11948 +f 11844/11844 12077/12077 11846/11846 +f 11950/11950 11949/11949 11724/11724 +f 11949/11949 11953/11953 11726/11726 +f 11950/11950 11845/11845 12078/12078 +f 11845/11845 11951/11951 12079/12079 +f 12080/12080 11951/11951 11846/11846 +f 11847/11847 11952/11952 12081/12081 +f 11847/11847 11954/11954 11727/11727 +f 12081/12081 11952/11952 11848/11848 +f 11848/11848 11953/11953 12082/12082 +f 11954/11954 11851/11851 11849/11849 +f 11850/11850 11955/11955 11956/11956 +f 11955/11955 11851/11851 12083/12083 +f 11957/11957 11729/11729 11956/11956 +f 11957/11957 12084/12084 11730/11730 +f 11960/11960 11732/11732 11958/11958 +f 11958/11958 11730/11730 12084/12084 +f 11959/11959 11731/11731 12085/12085 +f 11852/11852 11959/11959 11961/11961 +f 11960/11960 12085/12085 11731/11731 +f 12086/12086 11854/11854 11733/11733 +f 11733/11733 11961/11961 12086/12086 +f 12087/12087 11853/11853 11854/11854 +f 11853/11853 12087/12087 11962/11962 +f 11963/11963 11734/11734 11962/11962 +f 11965/11965 11737/11737 11963/11963 +f 11964/11964 11736/11736 11965/11965 +f 11738/11738 11964/11964 11856/11856 +f 11739/11739 11966/11966 11968/11968 +f 11740/11740 11967/11967 11966/11966 +f 11856/11856 12088/12088 11855/11855 +f 12088/12088 11967/11967 11855/11855 +f 12089/12089 11857/11857 11968/11968 +f 11857/11857 12090/12090 11858/11858 +f 12090/12090 11969/11969 11858/11858 +f 11969/11969 11970/11970 11742/11742 +f 11859/11859 11970/11970 12091/12091 +f 11971/11971 11743/11743 12092/12092 +f 11971/11971 11863/11863 11744/11744 +f 11972/11972 11745/11745 11973/11973 +f 11972/11972 12092/12092 11743/11743 +f 11973/11973 11746/11746 11974/11974 +f 11859/11859 12091/12091 11974/11974 +f 11861/11861 12093/12093 11975/11975 +f 12094/12094 11753/11753 11975/11975 +f 11861/11861 11976/11976 12095/12095 +f 11977/11977 11623/11623 11978/11978 +f 11862/11862 11977/11977 12096/12096 +f 11862/11862 12097/12097 11976/11976 +f 12098/12098 11978/11978 11863/11863 +f 12099/12099 11979/11979 11753/11753 +f 11979/11979 11980/11980 11752/11752 +f 11864/11864 11980/11980 12100/12100 +f 11864/11864 12101/12101 11868/11868 +f 11865/11865 12102/12102 11981/11981 +f 11983/11983 11754/11754 11981/11981 +f 12102/12102 11865/11865 11756/11756 +f 11982/11982 12102/12102 11756/11756 +f 11867/11867 12103/12103 11944/11944 +f 11867/11867 11983/11983 12103/12103 +f 11868/11868 12101/12101 11982/11982 +f 11761/11761 12104/12104 11939/11939 +f 11984/11984 12105/12105 11759/11759 +f 11987/11987 11984/11984 11760/11760 +f 12105/12105 11985/11985 11759/11759 +f 11985/11985 12106/12106 11869/11869 +f 11986/11986 11869/11869 12106/12106 +f 11870/11870 12107/12107 11987/11987 +f 11986/11986 12108/12108 11871/11871 +f 11988/11988 12109/12109 11761/11761 +f 11871/11871 12110/12110 11988/11988 +f 11883/11883 11870/11870 11775/11775 +f 11872/11872 12111/12111 11875/11875 +f 11872/11872 11989/11989 12111/12111 +f 11763/11763 11837/11837 11989/11989 +f 11875/11875 12112/12112 11990/11990 +f 11990/11990 11998/11998 11640/11640 +f 11876/11876 11881/11881 12113/12113 +f 11991/11991 11769/11769 11994/11994 +f 11768/11768 11991/11991 11992/11992 +f 12114/12114 11877/11877 11992/11992 +f 11878/11878 11877/11877 12115/12115 +f 11993/11993 11878/11878 12116/12116 +f 11996/11996 11638/11638 11993/11993 +f 11994/11994 11876/11876 12117/12117 +f 11884/11884 11879/11879 12000/12000 +f 11996/11996 11995/11995 11880/11880 +f 11997/11997 11771/11771 11995/11995 +f 12000/12000 11879/11879 11997/11997 +f 11882/11882 11998/11998 11881/11881 +f 11883/11883 11999/11999 12107/12107 +f 12000/12000 11999/11999 11642/11642 +f 12060/12060 12001/12001 11707/11707 +f 11885/11885 12001/12001 11888/11888 +f 12002/12002 11651/11651 12118/12118 +f 12002/12002 12119/12119 11886/11886 +f 11887/11887 12120/12120 11891/11891 +f 11887/11887 11886/11886 12119/12119 +f 12001/12001 12003/12003 11888/11888 +f 12121/12121 11889/11889 12003/12003 +f 12121/12121 12004/12004 11889/11889 +f 12005/12005 11780/11780 12004/12004 +f 11781/11781 12005/12005 12122/12122 +f 11781/11781 12122/12122 12006/12006 +f 12006/12006 12118/12118 11651/11651 +f 11891/11891 12120/12120 12007/12007 +f 11782/11782 12008/12008 12009/12009 +f 12009/12009 12123/12123 11892/11892 +f 11892/11892 12124/12124 11893/11893 +f 12124/12124 12010/12010 11893/11893 +f 12124/12124 11894/11894 12010/12010 +f 12008/12008 11785/11785 12058/12058 +f 12011/12011 11895/11895 11904/11904 +f 11787/11787 12013/12013 12012/12012 +f 12012/12012 12125/12125 11895/11895 +f 11897/11897 12126/12126 12013/12013 +f 12127/12127 11898/11898 12014/12014 +f 11788/11788 11894/11894 12015/12015 +f 12015/12015 12128/12128 11899/11899 +f 12014/12014 11899/11899 12128/12128 +f 12016/12016 11897/11897 11790/11790 +f 12129/12129 12016/12016 11898/11898 +f 11904/11904 12017/12017 11668/11668 +f 12017/12017 12018/12018 11900/11900 +f 12018/12018 12130/12130 11795/11795 +f 12131/12131 11901/11901 11902/11902 +f 12019/12019 11901/11901 12131/12131 +f 12020/12020 11795/11795 12130/12130 +f 12020/12020 12132/12132 11902/11902 +f 12021/12021 11905/11905 11903/11903 +f 12019/12019 12133/12133 11903/11903 +f 12023/12023 12022/12022 11798/11798 +f 12022/12022 12026/12026 11906/11906 +f 12023/12023 11907/11907 12024/12024 +f 11908/11908 12021/12021 12134/12134 +f 11908/11908 12135/12135 12024/12024 +f 12027/12027 11800/11800 12025/12025 +f 12136/12136 12025/12025 11799/11799 +f 12136/12136 11799/11799 12026/12026 +f 12137/12137 11909/11909 12027/12027 +f 12030/12030 12028/12028 11802/11802 +f 11801/11801 12028/12028 12138/12138 +f 12138/12138 12029/12029 11801/11801 +f 11910/11910 12029/12029 11804/11804 +f 12030/12030 11909/11909 12137/12137 +f 11912/11912 12139/12139 11911/11911 +f 12029/12029 12140/12140 11912/11912 +f 11805/11805 11913/11913 12031/12031 +f 36786/40207 12031/12031 11913/11913 +f 36785/40208 36786/40207 11913/11913 +f 12031/12031 12032/12032 11806/11806 +f 12141/12141 12033/12033 11914/11914 +f 12141/12141 11914/11914 12032/12032 +f 12034/12034 11915/11915 12033/12033 +f 12034/12034 12141/12141 11916/11916 +f 12142/12142 11809/11809 12035/12035 +f 12143/12143 12035/12035 11916/11916 +f 12036/12036 11809/11809 12142/12142 +f 12144/12144 11917/11917 12036/12036 +f 12144/12144 11919/11919 11917/11917 +f 12145/12145 12037/12037 11810/11810 +f 11918/11918 12037/12037 12146/12146 +f 12038/12038 11919/11919 12147/12147 +f 12148/12148 11810/11810 12038/12038 +f 11922/11922 11923/11923 11918/11918 +f 12039/12039 11920/11920 11926/11926 +f 12040/12040 11921/11921 11927/11927 +f 12149/12149 11921/11921 12039/12039 +f 12041/12041 12150/12150 11814/11814 +f 11922/11922 11918/11918 12041/12041 +f 12151/12151 11925/11925 11814/11814 +f 11925/11925 12151/12151 11924/11924 +f 12152/12152 11926/11926 12042/12042 +f 11816/11816 12043/12043 12042/12042 +f 12043/12043 11924/11924 12153/12153 +f 11927/11927 12149/12149 11929/11929 +f 11818/11818 12049/12049 12044/12044 +f 12154/12154 12045/12045 11819/11819 +f 11928/11928 12045/12045 12155/12155 +f 11819/11819 12046/12046 12154/12154 +f 12046/12046 11929/11929 12156/12156 +f 12157/12157 11930/11930 12047/12047 +f 12047/12047 11820/11820 12048/12048 +f 11928/11928 12047/12047 12048/12048 +f 11930/11930 12157/12157 12049/12049 +f 12051/12051 11931/11931 12044/12044 +f 12158/12158 12050/12050 11932/11932 +f 11821/11821 12050/12050 12159/12159 +f 12051/12051 12160/12160 11932/11932 +f 12161/12161 11933/11933 11934/11934 +f 12052/12052 12162/12162 11823/11823 +f 12052/12052 11933/11933 12161/12161 +f 11821/11821 12163/12163 12053/12053 +f 12164/12164 11934/11934 12053/12053 +f 12054/12054 12057/12057 11704/11704 +f 12056/12056 11935/11935 12055/12055 +f 12054/12054 11935/11935 12165/12165 +f 12056/12056 12055/12055 11936/11936 +f 12056/12056 11823/11823 12162/12162 +f 12057/12057 12166/12166 11937/11937 +f 12058/12058 11825/11825 12059/12059 +f 12059/12059 11937/11937 12166/12166 +f 11938/11938 11827/11827 12060/12060 +f 12061/12061 12167/12167 11827/11827 +f 12061/12061 11939/11939 12104/12104 +f 11830/11830 12062/12062 12063/12063 +f 12063/12063 12168/12168 11832/11832 +f 12168/12168 12064/12064 11832/11832 +f 12065/12065 11940/11940 12169/12169 +f 11834/11834 12066/12066 11989/11989 +f 12066/12066 11941/11941 12170/12170 +f 11942/11942 12067/12067 11835/11835 +f 12170/12170 11941/11941 12067/12067 +f 12068/12068 12171/12171 11942/11942 +f 12172/12172 11943/11943 12065/12065 +f 11943/11943 12173/12173 12068/12068 +f 11940/11940 12069/12069 12169/12169 +f 11838/11838 12174/12174 12069/12069 +f 12175/12175 12070/12070 11839/11839 +f 12174/12174 11838/11838 12070/12070 +f 11839/11839 12064/12064 12175/12175 +f 12071/12071 11840/11840 12072/12072 +f 11945/11945 12071/12071 12176/12176 +f 12062/12062 11945/11945 12177/12177 +f 11947/11947 12072/12072 11946/11946 +f 11947/11947 12073/12073 12178/12178 +f 11841/11841 12179/12179 12073/12073 +f 12074/12074 11944/11944 12103/12103 +f 11841/11841 12074/12074 12179/12179 +f 11911/11911 12139/12139 11948/11948 +f 12076/12076 12075/12075 11843/11843 +f 11844/11844 12075/12075 12180/12180 +f 12076/12076 11948/11948 12139/12139 +f 11846/11846 12077/12077 12181/12181 +f 12077/12077 11844/11844 12182/12182 +f 11949/11949 11950/11950 11953/11953 +f 11845/11845 12183/12183 12078/12078 +f 12184/12184 11950/11950 12078/12078 +f 12183/12183 11845/11845 12079/12079 +f 12185/12185 12079/12079 11951/11951 +f 12080/12080 11846/11846 12181/12181 +f 12080/12080 12185/12185 11951/11951 +f 11954/11954 11847/11847 12081/12081 +f 12081/12081 11848/11848 12186/12186 +f 11953/11953 12184/12184 12082/12082 +f 12186/12186 11848/11848 12082/12082 +f 11954/11954 12083/12083 11851/11851 +f 11955/11955 12187/12187 11956/11956 +f 12083/12083 12187/12187 11955/11955 +f 12188/12188 11957/11957 11956/11956 +f 12188/12188 12084/12084 11957/11957 +f 12189/12189 11960/11960 11958/11958 +f 12084/12084 12189/12189 11958/11958 +f 11959/11959 12085/12085 11961/11961 +f 12190/12190 12085/12085 11960/11960 +f 11854/11854 12086/12086 12087/12087 +f 12086/12086 11961/11961 12191/12191 +f 12087/12087 12192/12192 11962/11962 +f 11963/11963 11962/11962 12193/12193 +f 12193/12193 11965/11965 11963/11963 +f 11964/11964 11965/11965 12194/12194 +f 11856/11856 11964/11964 12088/12088 +f 11966/11966 12195/12195 11968/11968 +f 11966/11966 11967/11967 12195/12195 +f 12196/12196 11967/11967 12088/12088 +f 12089/12089 12090/12090 11857/11857 +f 12197/12197 12089/12089 11968/11968 +f 11969/11969 12090/12090 12198/12198 +f 11969/11969 12199/12199 11970/11970 +f 12200/12200 12091/12091 11970/11970 +f 11971/11971 12092/12092 12098/12098 +f 11863/11863 11971/11971 12098/12098 +f 11973/11973 12201/12201 11972/11972 +f 12201/12201 12092/12092 11972/11972 +f 12201/12201 11973/11973 11974/11974 +f 12202/12202 11974/11974 12091/12091 +f 11975/11975 12093/12093 12203/12203 +f 12093/12093 11861/11861 12095/12095 +f 11975/11975 12203/12203 12094/12094 +f 12094/12094 12099/12099 11753/11753 +f 11976/11976 12097/12097 12095/12095 +f 12204/12204 11977/11977 11978/11978 +f 11977/11977 12205/12205 12096/12096 +f 12096/12096 12097/12097 11862/11862 +f 12098/12098 12206/12206 11978/11978 +f 12207/12207 11979/11979 12099/12099 +f 12207/12207 11980/11980 11979/11979 +f 12100/12100 11980/11980 12208/12208 +f 12100/12100 12101/12101 11864/11864 +f 12209/12209 11981/11981 12102/12102 +f 11983/11983 11981/11981 12210/12210 +f 12102/12102 11982/11982 12211/12211 +f 12074/12074 12103/12103 11983/11983 +f 11982/11982 12101/12101 12212/12212 +f 11761/11761 12109/12109 12104/12104 +f 12105/12105 11984/11984 12213/12213 +f 12214/12214 11984/11984 11987/11987 +f 11985/11985 12105/12105 12215/12215 +f 12215/12215 12106/12106 11985/11985 +f 12106/12106 12216/12216 11986/11986 +f 11870/11870 11883/11883 12107/12107 +f 11987/11987 12107/12107 12214/12214 +f 12108/12108 12110/12110 11871/11871 +f 12108/12108 11986/11986 12216/12216 +f 12217/12217 12109/12109 11988/11988 +f 12218/12218 11988/11988 12110/12110 +f 11875/11875 12111/12111 12219/12219 +f 12111/12111 11989/11989 12220/12220 +f 12219/12219 12112/12112 11875/11875 +f 12112/12112 11998/11998 11990/11990 +f 12113/12113 11881/11881 12221/12221 +f 11876/11876 12113/12113 12222/12222 +f 11994/11994 12223/12223 11991/11991 +f 11991/11991 12224/12224 11992/11992 +f 12115/12115 11877/11877 12114/12114 +f 11992/11992 12224/12224 12114/12114 +f 12115/12115 12225/12225 11878/11878 +f 12116/12116 12226/12226 11993/11993 +f 12116/12116 11878/11878 12227/12227 +f 11993/11993 12226/12226 11996/11996 +f 12222/12222 12117/12117 11876/11876 +f 12117/12117 12222/12222 11994/11994 +f 11996/11996 11997/11997 11995/11995 +f 12228/12228 12000/12000 11997/11997 +f 12221/12221 11881/11881 11998/11998 +f 12229/12229 12107/12107 11999/11999 +f 12000/12000 12230/12230 11999/11999 +f 12231/12231 12001/12001 12060/12060 +f 12118/12118 12119/12119 12002/12002 +f 12119/12119 12120/12120 11887/11887 +f 12003/12003 12001/12001 12232/12232 +f 12121/12121 12003/12003 12232/12232 +f 12233/12233 12004/12004 12121/12121 +f 12004/12004 12234/12234 12005/12005 +f 12005/12005 12235/12235 12122/12122 +f 12006/12006 12122/12122 12235/12235 +f 12236/12236 12118/12118 12006/12006 +f 12007/12007 12120/12120 12237/12237 +f 12059/12059 12009/12009 12008/12008 +f 11892/11892 12123/12123 12238/12238 +f 12239/12239 12123/12123 12009/12009 +f 11892/11892 12238/12238 12124/12124 +f 12015/12015 11894/11894 12124/12124 +f 12059/12059 12008/12008 12058/12058 +f 12125/12125 11904/11904 11895/11895 +f 12012/12012 12013/12013 12240/12240 +f 12012/12012 12241/12241 12125/12125 +f 12016/12016 12126/12126 11897/11897 +f 12126/12126 12242/12242 12013/12013 +f 12129/12129 11898/11898 12127/12127 +f 12127/12127 12014/12014 12128/12128 +f 12128/12128 12015/12015 12243/12243 +f 12016/12016 12129/12129 12244/12244 +f 12125/12125 12017/12017 11904/11904 +f 12245/12245 12018/12018 12017/12017 +f 12130/12130 12018/12018 12246/12246 +f 12132/12132 12131/12131 11902/11902 +f 12019/12019 12131/12131 12133/12133 +f 12247/12247 12020/12020 12130/12130 +f 12248/12248 12132/12132 12020/12020 +f 11903/11903 12134/12134 12021/12021 +f 12133/12133 12249/12249 11903/11903 +f 12250/12250 12022/12022 12023/12023 +f 12250/12250 12026/12026 12022/12022 +f 12024/12024 12250/12250 12023/12023 +f 12134/12134 12251/12251 11908/11908 +f 12135/12135 11908/11908 12251/12251 +f 12135/12135 12252/12252 12024/12024 +f 12253/12253 12027/12027 12025/12025 +f 12025/12025 12136/12136 12254/12254 +f 12026/12026 12250/12250 12136/12136 +f 12027/12027 12253/12253 12137/12137 +f 12255/12255 12028/12028 12030/12030 +f 12138/12138 12028/12028 12256/12256 +f 12138/12138 12256/12256 12029/12029 +f 12137/12137 12257/12257 12030/12030 +f 12140/12140 12139/12139 11912/11912 +f 12258/12258 12140/12140 12029/12029 +f 36787/40209 12259/12259 12031/12031 +f 36786/40210 36787/40209 12031/12031 +f 12031/12031 12259/12259 12032/12032 +f 12034/12034 12033/12033 12141/12141 +f 12260/12260 12141/12141 12032/12032 +f 12141/12141 12260/12260 11916/11916 +f 12035/12035 12143/12143 12142/12142 +f 11916/11916 12261/12261 12143/12143 +f 12144/12144 12036/12036 12142/12142 +f 12144/12144 12147/12147 11919/11919 +f 12146/12146 12037/12037 12145/12145 +f 12145/12145 11810/11810 12148/12148 +f 12146/12146 12041/12041 11918/11918 +f 12038/12038 12147/12147 12262/12262 +f 12038/12038 12263/12263 12148/12148 +f 12039/12039 11926/11926 12264/12264 +f 12149/12149 11927/11927 11921/11921 +f 12264/12264 12149/12149 12039/12039 +f 12150/12150 12041/12041 12265/12265 +f 12151/12151 11814/11814 12150/12150 +f 12151/12151 12153/12153 11924/11924 +f 11926/11926 12152/12152 12264/12264 +f 12266/12266 12152/12152 12042/12042 +f 12042/12042 12043/12043 12266/12266 +f 12153/12153 12267/12267 12043/12043 +f 12156/12156 11929/11929 12149/12149 +f 12049/12049 12268/12268 12044/12044 +f 12045/12045 12154/12154 12269/12269 +f 12270/12270 12155/12155 12045/12045 +f 12047/12047 11928/11928 12155/12155 +f 12271/12271 12154/12154 12046/12046 +f 12272/12272 12046/12046 12156/12156 +f 12273/12273 12157/12157 12047/12047 +f 12049/12049 12157/12157 12274/12274 +f 12044/12044 12160/12160 12051/12051 +f 12160/12160 12158/12158 11932/11932 +f 12158/12158 12275/12275 12050/12050 +f 12159/12159 12050/12050 12276/12276 +f 12159/12159 12277/12277 11821/11821 +f 12278/12278 12161/12161 11934/11934 +f 12165/12165 12162/12162 12052/12052 +f 12161/12161 12279/12279 12052/12052 +f 12053/12053 12163/12163 12280/12280 +f 12163/12163 11821/11821 12281/12281 +f 12282/12282 12164/12164 12053/12053 +f 12283/12283 11934/11934 12164/12164 +f 12284/12284 12057/12057 12054/12054 +f 12056/12056 12162/12162 11935/11935 +f 12165/12165 11935/11935 12162/12162 +f 12284/12284 12054/12054 12165/12165 +f 12285/12285 12166/12166 12057/12057 +f 12059/12059 12166/12166 12286/12286 +f 12060/12060 11827/11827 12167/12167 +f 12061/12061 12104/12104 12167/12167 +f 12063/12063 12062/12062 12287/12287 +f 12168/12168 12063/12063 12288/12288 +f 12289/12289 12064/12064 12168/12168 +f 12172/12172 12065/12065 12169/12169 +f 12290/12290 11989/11989 12066/12066 +f 12066/12066 12170/12170 12291/12291 +f 11942/11942 12171/12171 12067/12067 +f 12067/12067 12292/12292 12170/12170 +f 12293/12293 12171/12171 12068/12068 +f 11943/11943 12172/12172 12294/12294 +f 11943/11943 12294/12294 12173/12173 +f 12068/12068 12173/12173 12293/12293 +f 12169/12169 12069/12069 12174/12174 +f 12064/12064 12070/12070 12175/12175 +f 12070/12070 12295/12295 12174/12174 +f 12296/12296 12071/12071 12072/12072 +f 12071/12071 12297/12297 12176/12176 +f 12177/12177 11945/11945 12176/12176 +f 12177/12177 12287/12287 12062/12062 +f 11947/11947 12296/12296 12072/12072 +f 12073/12073 12179/12179 12178/12178 +f 12296/12296 11947/11947 12178/12178 +f 12074/12074 12210/12210 12179/12179 +f 12075/12075 12076/12076 12139/12139 +f 12298/12298 12180/12180 12075/12075 +f 12182/12182 11844/11844 12180/12180 +f 12181/12181 12077/12077 12299/12299 +f 12300/12300 12077/12077 12182/12182 +f 11950/11950 12184/12184 11953/11953 +f 12183/12183 12301/12301 12078/12078 +f 12302/12302 12184/12184 12078/12078 +f 12301/12301 12183/12183 12079/12079 +f 12079/12079 12185/12185 12303/12303 +f 12080/12080 12181/12181 12304/12304 +f 12185/12185 12080/12080 12299/12299 +f 11954/11954 12081/12081 12305/12305 +f 12186/12186 12306/12306 12081/12081 +f 12184/12184 12302/12302 12082/12082 +f 12082/12082 12306/12306 12186/12186 +f 12083/12083 11954/11954 12305/12305 +f 11956/11956 12187/12187 12307/12307 +f 12308/12308 12187/12187 12083/12083 +f 12307/12307 12188/12188 11956/11956 +f 12309/12309 12084/12084 12188/12188 +f 11960/11960 12189/12189 12309/12309 +f 12084/12084 12309/12309 12189/12189 +f 12085/12085 12191/12191 11961/11961 +f 12085/12085 12190/12190 12310/12310 +f 12309/12309 12190/12190 11960/11960 +f 12191/12191 12087/12087 12086/12086 +f 12087/12087 12310/12310 12192/12192 +f 11962/11962 12192/12192 12193/12193 +f 11965/11965 12193/12193 12311/12311 +f 12311/12311 12194/12194 11965/11965 +f 12312/12312 11964/11964 12194/12194 +f 11964/11964 12312/12312 12088/12088 +f 11968/11968 12195/12195 12197/12197 +f 12195/12195 11967/11967 12313/12313 +f 12312/12312 12196/12196 12088/12088 +f 11967/11967 12196/12196 12313/12313 +f 12090/12090 12089/12089 12198/12198 +f 12197/12197 12198/12198 12089/12089 +f 12314/12314 11969/11969 12198/12198 +f 11969/11969 12315/12315 12199/12199 +f 12199/12199 12200/12200 11970/11970 +f 12200/12200 12316/12316 12091/12091 +f 12092/12092 12206/12206 12098/12098 +f 12206/12206 12092/12092 12201/12201 +f 12202/12202 12201/12201 11974/11974 +f 12091/12091 12317/12317 12202/12202 +f 12318/12318 12203/12203 12093/12093 +f 12318/12318 12093/12093 12095/12095 +f 12094/12094 12203/12203 12319/12319 +f 12099/12099 12094/12094 12320/12320 +f 12095/12095 12097/12097 12321/12321 +f 12204/12204 12205/12205 11977/11977 +f 12206/12206 12204/12204 11978/11978 +f 12322/12322 12096/12096 12205/12205 +f 12097/12097 12096/12096 12323/12323 +f 12099/12099 12320/12320 12207/12207 +f 12208/12208 11980/11980 12207/12207 +f 12100/12100 12208/12208 12324/12324 +f 12100/12100 12324/12324 12101/12101 +f 12325/12325 11981/11981 12209/12209 +f 12209/12209 12102/12102 12326/12326 +f 12210/12210 11981/11981 12325/12325 +f 12210/12210 12074/12074 11983/11983 +f 12211/12211 11982/11982 12212/12212 +f 12102/12102 12211/12211 12327/12327 +f 12101/12101 12328/12328 12212/12212 +f 12329/12329 12104/12104 12109/12109 +f 12213/12213 11984/11984 12214/12214 +f 12213/12213 12330/12330 12105/12105 +f 12331/12331 12215/12215 12105/12105 +f 12216/12216 12106/12106 12215/12215 +f 12214/12214 12107/12107 12332/12332 +f 12110/12110 12108/12108 12218/12218 +f 12333/12333 12108/12108 12216/12216 +f 12334/12334 12109/12109 12217/12217 +f 12217/12217 11988/11988 12335/12335 +f 12218/12218 12335/12335 11988/11988 +f 12219/12219 12111/12111 12220/12220 +f 11989/11989 12290/12290 12220/12220 +f 12112/12112 12219/12219 12336/12336 +f 11998/11998 12112/12112 12221/12221 +f 12113/12113 12221/12221 12337/12337 +f 12222/12222 12113/12113 12337/12337 +f 11991/11991 12223/12223 12224/12224 +f 11994/11994 12338/12338 12223/12223 +f 12115/12115 12114/12114 12224/12224 +f 12339/12339 12225/12225 12115/12115 +f 12227/12227 11878/11878 12225/12225 +f 12340/12340 12226/12226 12116/12116 +f 12341/12341 12116/12116 12227/12227 +f 11996/11996 12226/12226 12342/12342 +f 11994/11994 12222/12222 12338/12338 +f 12342/12342 11997/11997 11996/11996 +f 12343/12343 12228/12228 11997/11997 +f 12000/12000 12228/12228 12344/12344 +f 12229/12229 11999/11999 12230/12230 +f 12229/12229 12345/12345 12107/12107 +f 12000/12000 12344/12344 12230/12230 +f 12167/12167 12231/12231 12060/12060 +f 12232/12232 12001/12001 12231/12231 +f 12236/12236 12119/12119 12118/12118 +f 12120/12120 12119/12119 12236/12236 +f 12346/12346 12121/12121 12232/12232 +f 12233/12233 12234/12234 12004/12004 +f 12347/12347 12233/12233 12121/12121 +f 12348/12348 12005/12005 12234/12234 +f 12235/12235 12005/12005 12348/12348 +f 12006/12006 12235/12235 12236/12236 +f 12120/12120 12236/12236 12237/12237 +f 12237/12237 12349/12349 12007/12007 +f 12009/12009 12059/12059 12239/12239 +f 12350/12350 12238/12238 12123/12123 +f 12239/12239 12286/12286 12123/12123 +f 12238/12238 12351/12351 12124/12124 +f 12352/12352 12015/12015 12124/12124 +f 12240/12240 12013/12013 12353/12353 +f 12012/12012 12240/12240 12241/12241 +f 12241/12241 12354/12354 12125/12125 +f 12126/12126 12016/12016 12355/12355 +f 12356/12356 12242/12242 12126/12126 +f 12013/12013 12242/12242 12353/12353 +f 12127/12127 12357/12357 12129/12129 +f 12127/12127 12128/12128 12243/12243 +f 12243/12243 12015/12015 12358/12358 +f 12357/12357 12244/12244 12129/12129 +f 12244/12244 12355/12355 12016/12016 +f 12359/12359 12017/12017 12125/12125 +f 12018/12018 12245/12245 12246/12246 +f 12359/12359 12245/12245 12017/12017 +f 12130/12130 12246/12246 12247/12247 +f 12132/12132 12133/12133 12131/12131 +f 12248/12248 12020/12020 12247/12247 +f 12132/12132 12248/12248 12360/12360 +f 11903/11903 12361/12361 12134/12134 +f 12362/12362 12249/12249 12133/12133 +f 12249/12249 12361/12361 11903/11903 +f 12363/12363 12250/12250 12024/12024 +f 12134/12134 12364/12364 12251/12251 +f 12251/12251 12365/12365 12135/12135 +f 12135/12135 12365/12365 12252/12252 +f 12366/12366 12024/12024 12252/12252 +f 12367/12367 12253/12253 12025/12025 +f 12025/12025 12254/12254 12367/12367 +f 12136/12136 12250/12250 12254/12254 +f 12368/12368 12137/12137 12253/12253 +f 12028/12028 12255/12255 12256/12256 +f 12369/12369 12255/12255 12030/12030 +f 12029/12029 12256/12256 12370/12370 +f 12257/12257 12137/12137 12371/12371 +f 12257/12257 12369/12369 12030/12030 +f 12140/12140 12372/12372 12139/12139 +f 12140/12140 12258/12258 12373/12373 +f 12370/12370 12258/12258 12029/12029 +f 12259/12259 12260/12260 12032/12032 +f 12260/12260 12261/12261 11916/11916 +f 12143/12143 12262/12262 12142/12142 +f 12143/12143 12261/12261 12374/12374 +f 12147/12147 12144/12144 12142/12142 +f 12145/12145 12375/12375 12146/12146 +f 12148/12148 12375/12375 12145/12145 +f 12146/12146 12376/12376 12041/12041 +f 12142/12142 12262/12262 12147/12147 +f 12377/12377 12038/12038 12262/12262 +f 12148/12148 12263/12263 12378/12378 +f 12038/12038 12377/12377 12263/12263 +f 12149/12149 12264/12264 12156/12156 +f 12379/12379 12150/12150 12265/12265 +f 12376/12376 12265/12265 12041/12041 +f 12151/12151 12150/12150 12267/12267 +f 12267/12267 12153/12153 12151/12151 +f 12156/12156 12264/12264 12152/12152 +f 12266/12266 12380/12380 12152/12152 +f 12381/12381 12266/12266 12043/12043 +f 12267/12267 12381/12381 12043/12043 +f 12268/12268 12049/12049 12274/12274 +f 12044/12044 12268/12268 12160/12160 +f 12269/12269 12154/12154 12271/12271 +f 12270/12270 12045/12045 12269/12269 +f 12155/12155 12270/12270 12382/12382 +f 12047/12047 12155/12155 12383/12383 +f 12272/12272 12271/12271 12046/12046 +f 12384/12384 12272/12272 12156/12156 +f 12047/12047 12383/12383 12273/12273 +f 12385/12385 12157/12157 12273/12273 +f 12157/12157 12386/12386 12274/12274 +f 12160/12160 12275/12275 12158/12158 +f 12276/12276 12050/12050 12275/12275 +f 12387/12387 12159/12159 12276/12276 +f 12277/12277 12159/12159 12388/12388 +f 11821/11821 12277/12277 12281/12281 +f 12278/12278 12279/12279 12161/12161 +f 11934/11934 12283/12283 12278/12278 +f 12052/12052 12279/12279 12165/12165 +f 12280/12280 12389/12389 12053/12053 +f 12163/12163 12390/12390 12280/12280 +f 12281/12281 12391/12391 12163/12163 +f 12282/12282 12392/12392 12164/12164 +f 12282/12282 12053/12053 12389/12389 +f 12393/12393 12283/12283 12164/12164 +f 12285/12285 12057/12057 12284/12284 +f 12165/12165 12285/12285 12284/12284 +f 12166/12166 12285/12285 12394/12394 +f 12286/12286 12166/12166 12394/12394 +f 12059/12059 12286/12286 12239/12239 +f 12167/12167 12104/12104 12395/12395 +f 12288/12288 12063/12063 12287/12287 +f 12396/12396 12168/12168 12288/12288 +f 12168/12168 12396/12396 12289/12289 +f 12397/12397 12064/12064 12289/12289 +f 12398/12398 12172/12172 12169/12169 +f 12291/12291 12290/12290 12066/12066 +f 12170/12170 12399/12399 12291/12291 +f 12067/12067 12171/12171 12292/12292 +f 12170/12170 12292/12292 12399/12399 +f 12400/12400 12171/12171 12293/12293 +f 12294/12294 12172/12172 12401/12401 +f 12173/12173 12294/12294 12402/12402 +f 12173/12173 12402/12402 12293/12293 +f 12398/12398 12169/12169 12174/12174 +f 12397/12397 12070/12070 12064/12064 +f 12295/12295 12403/12403 12174/12174 +f 12070/12070 12397/12397 12295/12295 +f 12296/12296 12404/12404 12071/12071 +f 12405/12405 12297/12297 12071/12071 +f 12297/12297 12177/12177 12176/12176 +f 12287/12287 12177/12177 12406/12406 +f 12407/12407 12178/12178 12179/12179 +f 12178/12178 12408/12408 12296/12296 +f 12210/12210 12407/12407 12179/12179 +f 12372/12372 12075/12075 12139/12139 +f 12409/12409 12180/12180 12298/12298 +f 12075/12075 12372/12372 12298/12298 +f 12180/12180 12410/12410 12182/12182 +f 12077/12077 12300/12300 12299/12299 +f 12181/12181 12299/12299 12304/12304 +f 12182/12182 12411/12411 12300/12300 +f 12078/12078 12301/12301 12412/12412 +f 12412/12412 12302/12302 12078/12078 +f 12079/12079 12303/12303 12301/12301 +f 12299/12299 12303/12303 12185/12185 +f 12299/12299 12080/12080 12304/12304 +f 12081/12081 12306/12306 12305/12305 +f 12302/12302 12413/12413 12082/12082 +f 12306/12306 12082/12082 12413/12413 +f 12083/12083 12305/12305 12414/12414 +f 12307/12307 12187/12187 12308/12308 +f 12308/12308 12083/12083 12414/12414 +f 12307/12307 12309/12309 12188/12188 +f 12085/12085 12310/12310 12191/12191 +f 12415/12415 12310/12310 12190/12190 +f 12416/12416 12190/12190 12309/12309 +f 12087/12087 12191/12191 12310/12310 +f 12310/12310 12417/12417 12192/12192 +f 12193/12193 12192/12192 12417/12417 +f 12311/12311 12193/12193 12418/12418 +f 12194/12194 12311/12311 12419/12419 +f 12420/12420 12312/12312 12194/12194 +f 12421/12421 12197/12197 12195/12195 +f 12195/12195 12313/12313 12421/12421 +f 12312/12312 12422/12422 12196/12196 +f 12313/12313 12196/12196 12423/12423 +f 12198/12198 12197/12197 12424/12424 +f 12314/12314 12315/12315 11969/11969 +f 12425/12425 12314/12314 12198/12198 +f 12199/12199 12315/12315 12426/12426 +f 12316/12316 12200/12200 12199/12199 +f 12427/12427 12091/12091 12316/12316 +f 12206/12206 12201/12201 12202/12202 +f 12204/12204 12202/12202 12317/12317 +f 12091/12091 12427/12427 12317/12317 +f 12203/12203 12318/12318 12319/12319 +f 12321/12321 12318/12318 12095/12095 +f 12320/12320 12094/12094 12319/12319 +f 12097/12097 12428/12428 12321/12321 +f 12205/12205 12204/12204 12429/12429 +f 12204/12204 12206/12206 12202/12202 +f 12205/12205 12429/12429 12322/12322 +f 12323/12323 12096/12096 12322/12322 +f 12323/12323 12428/12428 12097/12097 +f 12207/12207 12320/12320 12208/12208 +f 12324/12324 12208/12208 12430/12430 +f 12328/12328 12101/12101 12324/12324 +f 12431/12431 12325/12325 12209/12209 +f 12432/12432 12326/12326 12102/12102 +f 12326/12326 12432/12432 12209/12209 +f 12325/12325 12431/12431 12210/12210 +f 12433/12433 12211/12211 12212/12212 +f 12211/12211 12434/12434 12327/12327 +f 12432/12432 12102/12102 12327/12327 +f 12212/12212 12328/12328 12433/12433 +f 12334/12334 12329/12329 12109/12109 +f 12435/12435 12104/12104 12329/12329 +f 12332/12332 12213/12213 12214/12214 +f 12213/12213 12436/12436 12330/12330 +f 12330/12330 12331/12331 12105/12105 +f 12215/12215 12331/12331 12437/12437 +f 12215/12215 12437/12437 12216/12216 +f 12107/12107 12345/12345 12332/12332 +f 12438/12438 12218/12218 12108/12108 +f 12108/12108 12333/12333 12438/12438 +f 12216/12216 12437/12437 12333/12333 +f 12439/12439 12334/12334 12217/12217 +f 12217/12217 12335/12335 12440/12440 +f 12218/12218 12441/12441 12335/12335 +f 12219/12219 12220/12220 12442/12442 +f 12443/12443 12220/12220 12290/12290 +f 12336/12336 12219/12219 12442/12442 +f 12112/12112 12336/12336 12444/12444 +f 12221/12221 12112/12112 12445/12445 +f 12445/12445 12337/12337 12221/12221 +f 12337/12337 12446/12446 12222/12222 +f 12447/12447 12224/12224 12223/12223 +f 12223/12223 12338/12338 12448/12448 +f 12224/12224 12449/12449 12115/12115 +f 12450/12450 12225/12225 12339/12339 +f 12449/12449 12339/12339 12115/12115 +f 12227/12227 12225/12225 12450/12450 +f 12451/12451 12226/12226 12340/12340 +f 12340/12340 12116/12116 12341/12341 +f 12227/12227 12452/12452 12341/12341 +f 12226/12226 12451/12451 12342/12342 +f 12222/12222 12446/12446 12338/12338 +f 11997/11997 12342/12342 12343/12343 +f 12228/12228 12343/12343 12453/12453 +f 12453/12453 12344/12344 12228/12228 +f 12454/12454 12229/12229 12230/12230 +f 12345/12345 12229/12229 12454/12454 +f 12344/12344 12454/12454 12230/12230 +f 12167/12167 12455/12455 12231/12231 +f 12231/12231 12346/12346 12232/12232 +f 12121/12121 12346/12346 12347/12347 +f 12234/12234 12233/12233 12456/12456 +f 12456/12456 12233/12233 12347/12347 +f 12457/12457 12348/12348 12234/12234 +f 12458/12458 12235/12235 12348/12348 +f 12236/12236 12235/12235 12459/12459 +f 12459/12459 12237/12237 12236/12236 +f 12460/12460 12349/12349 12237/12237 +f 12461/12461 12007/12007 12349/12349 +f 12350/12350 12123/12123 12286/12286 +f 12238/12238 12350/12350 12351/12351 +f 12462/12462 12124/12124 12351/12351 +f 12462/12462 12352/12352 12124/12124 +f 12015/12015 12352/12352 12358/12358 +f 12353/12353 12241/12241 12240/12240 +f 12359/12359 12125/12125 12354/12354 +f 12353/12353 12354/12354 12241/12241 +f 12126/12126 12355/12355 12356/12356 +f 12463/12463 12242/12242 12356/12356 +f 12353/12353 12242/12242 12464/12464 +f 12465/12465 12357/12357 12127/12127 +f 12465/12465 12127/12127 12243/12243 +f 12358/12358 12466/12466 12243/12243 +f 12244/12244 12357/12357 12467/12467 +f 12468/12468 12355/12355 12244/12244 +f 12245/12245 12469/12469 12246/12246 +f 12470/12470 12245/12245 12359/12359 +f 12247/12247 12246/12246 12469/12469 +f 12132/12132 12360/12360 12133/12133 +f 12471/12471 12248/12248 12247/12247 +f 12248/12248 12472/12472 12360/12360 +f 12361/12361 12473/12473 12134/12134 +f 12362/12362 12133/12133 12360/12360 +f 12249/12249 12362/12362 12473/12473 +f 12361/12361 12249/12249 12473/12473 +f 12363/12363 12024/12024 12366/12366 +f 12474/12474 12250/12250 12363/12363 +f 12472/12472 12364/12364 12134/12134 +f 12251/12251 12364/12364 12475/12475 +f 12475/12475 12365/12365 12251/12251 +f 12365/12365 12476/12476 12252/12252 +f 12366/12366 12252/12252 12477/12477 +f 12478/12478 12253/12253 12367/12367 +f 12474/12474 12367/12367 12254/12254 +f 12254/12254 12250/12250 12474/12474 +f 12479/12479 12368/12368 12253/12253 +f 12137/12137 12368/12368 12371/12371 +f 12255/12255 12480/12480 12256/12256 +f 12481/12481 12255/12255 12369/12369 +f 12482/12482 12370/12370 12256/12256 +f 12371/12371 12483/12483 12257/12257 +f 12257/12257 12483/12483 12369/12369 +f 12372/12372 12140/12140 12373/12373 +f 12373/12373 12258/12258 12484/12484 +f 12258/12258 12370/12370 12485/12485 +f 12260/12260 12259/12259 12486/12486 +f 12261/12261 12260/12260 12486/12486 +f 12262/12262 12143/12143 12374/12374 +f 12374/12374 12261/12261 12486/12486 +f 12375/12375 12487/12487 12146/12146 +f 12148/12148 12378/12378 12375/12375 +f 12487/12487 12376/12376 12146/12146 +f 12377/12377 12262/12262 12374/12374 +f 12488/12488 12378/12378 12263/12263 +f 12489/12489 12379/12379 12265/12265 +f 12379/12379 12490/12490 12150/12150 +f 12491/12491 12265/12265 12376/12376 +f 12150/12150 12490/12490 12267/12267 +f 12152/12152 12384/12384 12156/12156 +f 12266/12266 12492/12492 12380/12380 +f 12380/12380 12493/12493 12152/12152 +f 12492/12492 12266/12266 12381/12381 +f 12381/12381 12267/12267 12490/12490 +f 12386/12386 12268/12268 12274/12274 +f 12275/12275 12160/12160 12268/12268 +f 12269/12269 12271/12271 12272/12272 +f 12494/12494 12270/12270 12269/12269 +f 12383/12383 12155/12155 12382/12382 +f 12270/12270 12495/12495 12382/12382 +f 12384/12384 12496/12496 12272/12272 +f 12383/12383 12385/12385 12273/12273 +f 12386/12386 12157/12157 12385/12385 +f 12275/12275 12386/12386 12276/12276 +f 12159/12159 12387/12387 12497/12497 +f 12385/12385 12387/12387 12276/12276 +f 12159/12159 12497/12497 12388/12388 +f 12277/12277 12388/12388 12498/12498 +f 12281/12281 12277/12277 12499/12499 +f 12278/12278 12500/12500 12279/12279 +f 12393/12393 12278/12278 12283/12283 +f 12279/12279 12285/12285 12165/12165 +f 12280/12280 12390/12390 12389/12389 +f 12501/12501 12390/12390 12163/12163 +f 12501/12501 12163/12163 12391/12391 +f 12391/12391 12281/12281 12502/12502 +f 12503/12503 12392/12392 12282/12282 +f 12164/12164 12392/12392 12393/12393 +f 12389/12389 12504/12504 12282/12282 +f 12285/12285 12279/12279 12394/12394 +f 12286/12286 12394/12394 12505/12505 +f 12395/12395 12104/12104 12435/12435 +f 12455/12455 12167/12167 12395/12395 +f 12506/12506 12288/12288 12287/12287 +f 12396/12396 12288/12288 12507/12507 +f 12396/12396 12508/12508 12289/12289 +f 12295/12295 12397/12397 12289/12289 +f 12398/12398 12509/12509 12172/12172 +f 12290/12290 12291/12291 12510/12510 +f 12399/12399 12511/12511 12291/12291 +f 12171/12171 12400/12400 12292/12292 +f 12399/12399 12292/12292 12512/12512 +f 12293/12293 12513/12513 12400/12400 +f 12514/12514 12401/12401 12172/12172 +f 12515/12515 12294/12294 12401/12401 +f 12294/12294 12516/12516 12402/12402 +f 12402/12402 12517/12517 12293/12293 +f 12518/12518 12398/12398 12174/12174 +f 12508/12508 12403/12403 12295/12295 +f 12403/12403 12518/12518 12174/12174 +f 12296/12296 12519/12519 12404/12404 +f 12404/12404 12520/12520 12071/12071 +f 12071/12071 12520/12520 12405/12405 +f 12406/12406 12297/12297 12405/12405 +f 12177/12177 12297/12297 12406/12406 +f 12521/12521 12287/12287 12406/12406 +f 12407/12407 12522/12522 12178/12178 +f 12523/12523 12296/12296 12408/12408 +f 12408/12408 12178/12178 12524/12524 +f 12407/12407 12210/12210 12525/12525 +f 12526/12526 12409/12409 12298/12298 +f 12180/12180 12409/12409 12527/12527 +f 12298/12298 12372/12372 12528/12528 +f 12180/12180 12527/12527 12410/12410 +f 12410/12410 12529/12529 12182/12182 +f 12300/12300 12303/12303 12299/12299 +f 12529/12529 12411/12411 12182/12182 +f 12300/12300 12411/12411 12530/12530 +f 12301/12301 12531/12531 12412/12412 +f 12532/12532 12302/12302 12412/12412 +f 12301/12301 12303/12303 12533/12533 +f 12305/12305 12306/12306 12414/12414 +f 12413/12413 12302/12302 12532/12532 +f 12413/12413 12534/12534 12306/12306 +f 12307/12307 12308/12308 12416/12416 +f 12535/12535 12308/12308 12414/12414 +f 12416/12416 12309/12309 12307/12307 +f 12415/12415 12417/12417 12310/12310 +f 12536/12536 12415/12415 12190/12190 +f 12416/12416 12536/12536 12190/12190 +f 12193/12193 12417/12417 12418/12418 +f 12537/12537 12311/12311 12418/12418 +f 12311/12311 12538/12538 12419/12419 +f 12420/12420 12194/12194 12419/12419 +f 12420/12420 12539/12539 12312/12312 +f 12197/12197 12421/12421 12424/12424 +f 12313/12313 12540/12540 12421/12421 +f 12422/12422 12312/12312 12539/12539 +f 12196/12196 12422/12422 12423/12423 +f 12541/12541 12313/12313 12423/12423 +f 12542/12542 12198/12198 12424/12424 +f 12543/12543 12315/12315 12314/12314 +f 12198/12198 12542/12542 12425/12425 +f 12314/12314 12425/12425 12543/12543 +f 12426/12426 12315/12315 12544/12544 +f 12545/12545 12199/12199 12426/12426 +f 12199/12199 12546/12546 12316/12316 +f 12316/12316 12547/12547 12427/12427 +f 12204/12204 12317/12317 12548/12548 +f 12427/12427 12547/12547 12317/12317 +f 12318/12318 12549/12549 12319/12319 +f 12321/12321 12549/12549 12318/12318 +f 12549/12549 12320/12320 12319/12319 +f 12428/12428 12550/12550 12321/12321 +f 12204/12204 12551/12551 12429/12429 +f 12322/12322 12552/12552 12323/12323 +f 12552/12552 12428/12428 12323/12323 +f 12553/12553 12208/12208 12320/12320 +f 12554/12554 12324/12324 12430/12430 +f 12208/12208 12553/12553 12430/12430 +f 12554/12554 12328/12328 12324/12324 +f 12432/12432 12431/12431 12209/12209 +f 12210/12210 12431/12431 12525/12525 +f 12434/12434 12211/12211 12433/12433 +f 12555/12555 12327/12327 12434/12434 +f 12432/12432 12327/12327 12555/12555 +f 12556/12556 12433/12433 12328/12328 +f 12334/12334 12557/12557 12329/12329 +f 12435/12435 12329/12329 12558/12558 +f 12213/12213 12332/12332 12436/12436 +f 12330/12330 12436/12436 12559/12559 +f 12559/12559 12331/12331 12330/12330 +f 12559/12559 12437/12437 12331/12331 +f 12332/12332 12345/12345 12560/12560 +f 12438/12438 12561/12561 12218/12218 +f 12438/12438 12333/12333 12562/12562 +f 12563/12563 12333/12333 12437/12437 +f 12439/12439 12564/12564 12334/12334 +f 12217/12217 12565/12565 12439/12439 +f 12217/12217 12440/12440 12566/12566 +f 12335/12335 12567/12567 12440/12440 +f 12561/12561 12441/12441 12218/12218 +f 12568/12568 12335/12335 12441/12441 +f 12442/12442 12220/12220 12443/12443 +f 12443/12443 12290/12290 12510/12510 +f 12569/12569 12336/12336 12442/12442 +f 12444/12444 12570/12570 12112/12112 +f 12336/12336 12569/12569 12444/12444 +f 12445/12445 12112/12112 12570/12570 +f 12446/12446 12337/12337 12445/12445 +f 12571/12571 12447/12447 12223/12223 +f 12447/12447 12449/12449 12224/12224 +f 12448/12448 12571/12571 12223/12223 +f 12448/12448 12338/12338 12446/12446 +f 12450/12450 12339/12339 12572/12572 +f 12573/12573 12339/12339 12449/12449 +f 12450/12450 12574/12574 12227/12227 +f 12451/12451 12340/12340 12575/12575 +f 12576/12576 12340/12340 12341/12341 +f 12574/12574 12452/12452 12227/12227 +f 12452/12452 12577/12577 12341/12341 +f 12578/12578 12342/12342 12451/12451 +f 12579/12579 12343/12343 12342/12342 +f 12453/12453 12343/12343 12580/12580 +f 12344/12344 12453/12453 12581/12581 +f 12560/12560 12345/12345 12454/12454 +f 12344/12344 12582/12582 12454/12454 +f 12455/12455 12583/12583 12231/12231 +f 12583/12583 12346/12346 12231/12231 +f 12347/12347 12346/12346 12584/12584 +f 12457/12457 12234/12234 12456/12456 +f 12347/12347 12585/12585 12456/12456 +f 12458/12458 12348/12348 12457/12457 +f 12458/12458 12586/12586 12235/12235 +f 12235/12235 12586/12586 12459/12459 +f 12587/12587 12237/12237 12459/12459 +f 12460/12460 12237/12237 12587/12587 +f 12349/12349 12460/12460 12588/12588 +f 12589/12589 12461/12461 12349/12349 +f 12007/12007 12461/12461 12590/12590 +f 12591/12591 12350/12350 12286/12286 +f 12592/12592 12351/12351 12350/12350 +f 12462/12462 12351/12351 12593/12593 +f 12352/12352 12462/12462 12594/12594 +f 12352/12352 12595/12595 12358/12358 +f 12596/12596 12359/12359 12354/12354 +f 12353/12353 12597/12597 12354/12354 +f 12355/12355 12468/12468 12356/12356 +f 12242/12242 12463/12463 12598/12598 +f 12463/12463 12356/12356 12599/12599 +f 12464/12464 12242/12242 12598/12598 +f 12353/12353 12464/12464 12600/12600 +f 12357/12357 12465/12465 12601/12601 +f 12466/12466 12465/12465 12243/12243 +f 12466/12466 12358/12358 12602/12602 +f 12357/12357 12603/12603 12467/12467 +f 12468/12468 12244/12244 12467/12467 +f 12604/12604 12469/12469 12245/12245 +f 12470/12470 12359/12359 12605/12605 +f 12245/12245 12470/12470 12606/12606 +f 12471/12471 12247/12247 12469/12469 +f 12248/12248 12471/12471 12607/12607 +f 12607/12607 12472/12472 12248/12248 +f 12472/12472 12473/12473 12360/12360 +f 12473/12473 12472/12472 12134/12134 +f 12360/12360 12473/12473 12362/12362 +f 12366/12366 12474/12474 12363/12363 +f 12364/12364 12472/12472 12607/12607 +f 12475/12475 12364/12364 12608/12608 +f 12609/12609 12365/12365 12475/12475 +f 12476/12476 12365/12365 12610/12610 +f 12611/12611 12252/12252 12476/12476 +f 12252/12252 12612/12612 12477/12477 +f 12474/12474 12366/12366 12477/12477 +f 12367/12367 12613/12613 12478/12478 +f 12478/12478 12614/12614 12253/12253 +f 12613/12613 12367/12367 12474/12474 +f 12368/12368 12479/12479 12615/12615 +f 12253/12253 12616/12616 12479/12479 +f 12368/12368 12617/12617 12371/12371 +f 12618/12618 12480/12480 12255/12255 +f 12619/12619 12256/12256 12480/12480 +f 12620/12620 12481/12481 12369/12369 +f 12481/12481 12618/12618 12255/12255 +f 12482/12482 12256/12256 12619/12619 +f 12370/12370 12482/12482 12485/12485 +f 12617/12617 12483/12483 12371/12371 +f 12621/12621 12369/12369 12483/12483 +f 12622/12622 12372/12372 12373/12373 +f 12484/12484 12623/12623 12373/12373 +f 12624/12624 12484/12484 12258/12258 +f 12624/12624 12258/12258 12485/12485 +f 12375/12375 12488/12488 12487/12487 +f 12488/12488 12375/12375 12378/12378 +f 12376/12376 12487/12487 12625/12625 +f 12263/12263 12626/12626 12488/12488 +f 12627/12627 12379/12379 12489/12489 +f 12489/12489 12265/12265 12628/12628 +f 12490/12490 12379/12379 12627/12627 +f 12628/12628 12265/12265 12491/12491 +f 12376/12376 12625/12625 12491/12491 +f 12384/12384 12152/12152 12493/12493 +f 12492/12492 12629/12629 12380/12380 +f 12630/12630 12493/12493 12380/12380 +f 12490/12490 12492/12492 12381/12381 +f 12268/12268 12386/12386 12275/12275 +f 12272/12272 12631/12631 12269/12269 +f 12494/12494 12495/12495 12270/12270 +f 12269/12269 12632/12632 12494/12494 +f 12382/12382 12633/12633 12383/12383 +f 12382/12382 12495/12495 12634/12634 +f 12496/12496 12384/12384 12630/12630 +f 12635/12635 12272/12272 12496/12496 +f 12636/12636 12385/12385 12383/12383 +f 12386/12386 12385/12385 12276/12276 +f 12387/12387 12637/12637 12497/12497 +f 12387/12387 12385/12385 12636/12636 +f 12497/12497 12638/12638 12388/12388 +f 12498/12498 12388/12388 12638/12638 +f 12639/12639 12277/12277 12498/12498 +f 12277/12277 12639/12639 12499/12499 +f 12502/12502 12281/12281 12499/12499 +f 12500/12500 12278/12278 12640/12640 +f 12500/12500 12394/12394 12279/12279 +f 12641/12641 12278/12278 12393/12393 +f 12389/12389 12390/12390 12642/12642 +f 12501/12501 12643/12643 12390/12390 +f 12644/12644 12501/12501 12391/12391 +f 12645/12645 12391/12391 12502/12502 +f 12392/12392 12503/12503 12646/12646 +f 12282/12282 12504/12504 12503/12503 +f 12392/12392 12641/12641 12393/12393 +f 12504/12504 12389/12389 12642/12642 +f 12591/12591 12286/12286 12505/12505 +f 12505/12505 12394/12394 12500/12500 +f 12584/12584 12395/12395 12435/12435 +f 12583/12583 12455/12455 12395/12395 +f 12288/12288 12506/12506 12647/12647 +f 12287/12287 12521/12521 12506/12506 +f 12288/12288 12647/12647 12507/12507 +f 12507/12507 12648/12648 12396/12396 +f 12289/12289 12508/12508 12295/12295 +f 12648/12648 12508/12508 12396/12396 +f 12398/12398 12649/12649 12509/12509 +f 12172/12172 12509/12509 12514/12514 +f 12511/12511 12510/12510 12291/12291 +f 12399/12399 12650/12650 12511/12511 +f 12512/12512 12292/12292 12400/12400 +f 12650/12650 12399/12399 12512/12512 +f 12400/12400 12513/12513 12512/12512 +f 12517/12517 12513/12513 12293/12293 +f 12651/12651 12401/12401 12514/12514 +f 12515/12515 12652/12652 12294/12294 +f 12653/12653 12515/12515 12401/12401 +f 12294/12294 12654/12654 12516/12516 +f 12402/12402 12516/12516 12655/12655 +f 12656/12656 12517/12517 12402/12402 +f 12398/12398 12518/12518 12649/12649 +f 12508/12508 12657/12657 12403/12403 +f 12403/12403 12658/12658 12518/12518 +f 12296/12296 12523/12523 12519/12519 +f 12659/12659 12404/12404 12519/12519 +f 12404/12404 12660/12660 12520/12520 +f 12405/12405 12520/12520 12521/12521 +f 12405/12405 12521/12521 12406/12406 +f 12522/12522 12407/12407 12661/12661 +f 12524/12524 12178/12178 12522/12522 +f 12662/12662 12523/12523 12408/12408 +f 12524/12524 12663/12663 12408/12408 +f 12407/12407 12525/12525 12661/12661 +f 12528/12528 12526/12526 12298/12298 +f 12526/12526 12664/12664 12409/12409 +f 12409/12409 12664/12664 12527/12527 +f 12372/12372 12622/12622 12528/12528 +f 12527/12527 12529/12529 12410/12410 +f 12533/12533 12303/12303 12300/12300 +f 12530/12530 12411/12411 12529/12529 +f 12300/12300 12530/12530 12533/12533 +f 12531/12531 12301/12301 12533/12533 +f 12665/12665 12412/12412 12531/12531 +f 12532/12532 12412/12412 12665/12665 +f 12306/12306 12666/12666 12414/12414 +f 12534/12534 12413/12413 12532/12532 +f 12666/12666 12306/12306 12534/12534 +f 12416/12416 12308/12308 12536/12536 +f 12536/12536 12308/12308 12535/12535 +f 12535/12535 12414/12414 12666/12666 +f 12667/12667 12417/12417 12415/12415 +f 12667/12667 12415/12415 12536/12536 +f 12668/12668 12418/12418 12417/12417 +f 12537/12537 12418/12418 12668/12668 +f 12311/12311 12537/12537 12538/12538 +f 12419/12419 12538/12538 12669/12669 +f 12420/12420 12419/12419 12539/12539 +f 12424/12424 12421/12421 12670/12670 +f 12540/12540 12670/12670 12421/12421 +f 12313/12313 12541/12541 12540/12540 +f 12671/12671 12422/12422 12539/12539 +f 12423/12423 12422/12422 12672/12672 +f 12541/12541 12423/12423 12673/12673 +f 12670/12670 12542/12542 12424/12424 +f 12544/12544 12315/12315 12543/12543 +f 12425/12425 12542/12542 12670/12670 +f 12543/12543 12425/12425 12670/12670 +f 12544/12544 12674/12674 12426/12426 +f 12674/12674 12545/12545 12426/12426 +f 12546/12546 12199/12199 12545/12545 +f 12316/12316 12546/12546 12675/12675 +f 12547/12547 12316/12316 12675/12675 +f 12317/12317 12676/12676 12548/12548 +f 12204/12204 12548/12548 12551/12551 +f 12547/12547 12676/12676 12317/12317 +f 12549/12549 12321/12321 12550/12550 +f 12553/12553 12320/12320 12549/12549 +f 12677/12677 12550/12550 12428/12428 +f 12678/12678 12552/12552 12322/12322 +f 12428/12428 12552/12552 12677/12677 +f 12554/12554 12430/12430 12679/12679 +f 12430/12430 12553/12553 12680/12680 +f 12328/12328 12554/12554 12556/12556 +f 12555/12555 12431/12431 12432/12432 +f 12431/12431 12681/12681 12525/12525 +f 12433/12433 12682/12682 12434/12434 +f 12434/12434 12681/12681 12555/12555 +f 12433/12433 12556/12556 12682/12682 +f 12334/12334 12564/12564 12557/12557 +f 12558/12558 12329/12329 12557/12557 +f 12683/12683 12435/12435 12558/12558 +f 12436/12436 12332/12332 12684/12684 +f 12559/12559 12436/12436 12684/12684 +f 12559/12559 12685/12685 12437/12437 +f 12686/12686 12332/12332 12560/12560 +f 12561/12561 12438/12438 12562/12562 +f 12333/12333 12687/12687 12562/12562 +f 12333/12333 12563/12563 12687/12687 +f 12563/12563 12437/12437 12685/12685 +f 12688/12688 12564/12564 12439/12439 +f 12689/12689 12439/12439 12565/12565 +f 12217/12217 12566/12566 12565/12565 +f 12690/12690 12566/12566 12440/12440 +f 12690/12690 12440/12440 12567/12567 +f 12567/12567 12335/12335 12568/12568 +f 12561/12561 12691/12691 12441/12441 +f 12441/12441 12692/12692 12568/12568 +f 12443/12443 12569/12569 12442/12442 +f 12443/12443 12510/12510 12693/12693 +f 12570/12570 12444/12444 12694/12694 +f 12444/12444 12569/12569 12693/12693 +f 12445/12445 12570/12570 12695/12695 +f 12696/12696 12446/12446 12445/12445 +f 12697/12697 12447/12447 12571/12571 +f 12573/12573 12449/12449 12447/12447 +f 12448/12448 12698/12698 12571/12571 +f 12446/12446 12696/12696 12448/12448 +f 12572/12572 12339/12339 12699/12699 +f 12572/12572 12700/12700 12450/12450 +f 12339/12339 12573/12573 12699/12699 +f 12700/12700 12574/12574 12450/12450 +f 12340/12340 12701/12701 12575/12575 +f 12578/12578 12451/12451 12575/12575 +f 12340/12340 12576/12576 12702/12702 +f 12577/12577 12576/12576 12341/12341 +f 12703/12703 12452/12452 12574/12574 +f 12577/12577 12452/12452 12704/12704 +f 12578/12578 12580/12580 12342/12342 +f 12343/12343 12579/12579 12580/12580 +f 12579/12579 12342/12342 12580/12580 +f 12705/12705 12453/12453 12580/12580 +f 12582/12582 12344/12344 12581/12581 +f 12453/12453 12706/12706 12581/12581 +f 12454/12454 12707/12707 12560/12560 +f 12582/12582 12707/12707 12454/12454 +f 12346/12346 12583/12583 12584/12584 +f 12347/12347 12584/12584 12708/12708 +f 12456/12456 12709/12709 12457/12457 +f 12585/12585 12347/12347 12708/12708 +f 12585/12585 12709/12709 12456/12456 +f 12458/12458 12457/12457 12709/12709 +f 12586/12586 12458/12458 12710/12710 +f 12459/12459 12586/12586 12587/12587 +f 12587/12587 12711/12711 12460/12460 +f 12712/12712 12588/12588 12460/12460 +f 12713/12713 12349/12349 12588/12588 +f 12461/12461 12589/12589 12590/12590 +f 12713/12713 12589/12589 12349/12349 +f 12350/12350 12591/12591 12714/12714 +f 12351/12351 12592/12592 12593/12593 +f 12592/12592 12350/12350 12715/12715 +f 12594/12594 12462/12462 12593/12593 +f 12352/12352 12594/12594 12716/12716 +f 12717/12717 12595/12595 12352/12352 +f 12358/12358 12595/12595 12718/12718 +f 12359/12359 12596/12596 12605/12605 +f 12354/12354 12597/12597 12596/12596 +f 12353/12353 12600/12600 12597/12597 +f 12356/12356 12468/12468 12599/12599 +f 12463/12463 12719/12719 12598/12598 +f 12463/12463 12599/12599 12720/12720 +f 12600/12600 12464/12464 12598/12598 +f 12721/12721 12601/12601 12465/12465 +f 12357/12357 12601/12601 12603/12603 +f 12721/12721 12465/12465 12466/12466 +f 12602/12602 12358/12358 12722/12722 +f 12721/12721 12466/12466 12602/12602 +f 12467/12467 12603/12603 12723/12723 +f 12467/12467 12723/12723 12468/12468 +f 12604/12604 12724/12724 12469/12469 +f 12245/12245 12725/12725 12604/12604 +f 12470/12470 12605/12605 12726/12726 +f 12606/12606 12725/12725 12245/12245 +f 12606/12606 12470/12470 12726/12726 +f 12469/12469 12727/12727 12471/12471 +f 12607/12607 12471/12471 12727/12727 +f 12607/12607 12728/12728 12364/12364 +f 12608/12608 12364/12364 12728/12728 +f 12729/12729 12475/12475 12608/12608 +f 12365/12365 12609/12609 12610/12610 +f 12609/12609 12475/12475 12730/12730 +f 12476/12476 12610/12610 12731/12731 +f 12252/12252 12611/12611 12732/12732 +f 12476/12476 12731/12731 12611/12611 +f 12612/12612 12252/12252 12733/12733 +f 12612/12612 12734/12734 12477/12477 +f 12613/12613 12474/12474 12477/12477 +f 12613/12613 12735/12735 12478/12478 +f 12614/12614 12616/12616 12253/12253 +f 12736/12736 12614/12614 12478/12478 +f 12479/12479 12737/12737 12615/12615 +f 12617/12617 12368/12368 12615/12615 +f 12479/12479 12616/12616 12738/12738 +f 12739/12739 12480/12480 12618/12618 +f 12480/12480 12739/12739 12619/12619 +f 12621/12621 12620/12620 12369/12369 +f 12620/12620 12740/12740 12481/12481 +f 12618/12618 12481/12481 12741/12741 +f 12619/12619 12742/12742 12482/12482 +f 12485/12485 12482/12482 12742/12742 +f 12621/12621 12483/12483 12617/12617 +f 12623/12623 12622/12622 12373/12373 +f 12623/12623 12484/12484 12624/12624 +f 12485/12485 12743/12743 12624/12624 +f 12487/12487 12488/12488 12744/12744 +f 12625/12625 12487/12487 12745/12745 +f 12488/12488 12626/12626 12746/12746 +f 12747/12747 12627/12627 12489/12489 +f 12748/12748 12489/12489 12628/12628 +f 12627/12627 12749/12749 12490/12490 +f 12491/12491 12750/12750 12628/12628 +f 12751/12751 12491/12491 12625/12625 +f 12630/12630 12384/12384 12493/12493 +f 12752/12752 12629/12629 12492/12492 +f 12380/12380 12629/12629 12630/12630 +f 12492/12492 12490/12490 12753/12753 +f 12631/12631 12272/12272 12754/12754 +f 12631/12631 12755/12755 12269/12269 +f 12494/12494 12756/12756 12495/12495 +f 12269/12269 12755/12755 12632/12632 +f 12632/12632 12757/12757 12494/12494 +f 12634/12634 12633/12633 12382/12382 +f 12383/12383 12633/12633 12636/12636 +f 12634/12634 12495/12495 12756/12756 +f 12630/12630 12758/12758 12496/12496 +f 12754/12754 12272/12272 12635/12635 +f 12635/12635 12496/12496 12759/12759 +f 12637/12637 12387/12387 12636/12636 +f 12638/12638 12497/12497 12637/12637 +f 12638/12638 12639/12639 12498/12498 +f 12499/12499 12639/12639 12760/12760 +f 12499/12499 12761/12761 12502/12502 +f 12640/12640 12278/12278 12641/12641 +f 12640/12640 12505/12505 12500/12500 +f 12642/12642 12390/12390 12762/12762 +f 12763/12763 12643/12643 12501/12501 +f 12643/12643 12762/12762 12390/12390 +f 12501/12501 12644/12644 12763/12763 +f 12645/12645 12644/12644 12391/12391 +f 12764/12764 12645/12645 12502/12502 +f 12503/12503 12765/12765 12646/12646 +f 12766/12766 12392/12392 12646/12646 +f 12503/12503 12504/12504 12765/12765 +f 12767/12767 12641/12641 12392/12392 +f 12504/12504 12642/12642 12768/12768 +f 12591/12591 12505/12505 12769/12769 +f 12395/12395 12584/12584 12583/12583 +f 12584/12584 12435/12435 12770/12770 +f 12506/12506 12771/12771 12647/12647 +f 12506/12506 12521/12521 12771/12771 +f 12648/12648 12507/12507 12647/12647 +f 12772/12772 12508/12508 12648/12648 +f 12509/12509 12649/12649 12773/12773 +f 12509/12509 12773/12773 12514/12514 +f 12510/12510 12511/12511 12774/12774 +f 12774/12774 12511/12511 12650/12650 +f 12513/12513 12650/12650 12512/12512 +f 12517/12517 12650/12650 12513/12513 +f 12651/12651 12775/12775 12401/12401 +f 12776/12776 12651/12651 12514/12514 +f 12652/12652 12515/12515 12777/12777 +f 12654/12654 12294/12294 12652/12652 +f 12515/12515 12653/12653 12778/12778 +f 12653/12653 12401/12401 12775/12775 +f 12779/12779 12516/12516 12654/12654 +f 12655/12655 12516/12516 12780/12780 +f 12655/12655 12781/12781 12402/12402 +f 12782/12782 12656/12656 12402/12402 +f 12656/12656 12783/12783 12517/12517 +f 12658/12658 12649/12649 12518/12518 +f 12658/12658 12403/12403 12657/12657 +f 12784/12784 12657/12657 12508/12508 +f 12785/12785 12519/12519 12523/12523 +f 12660/12660 12404/12404 12659/12659 +f 12659/12659 12519/12519 12785/12785 +f 12520/12520 12660/12660 12786/12786 +f 12521/12521 12520/12520 12771/12771 +f 12522/12522 12661/12661 12787/12787 +f 12788/12788 12524/12524 12522/12522 +f 12663/12663 12662/12662 12408/12408 +f 12662/12662 12789/12789 12523/12523 +f 12524/12524 12788/12788 12663/12663 +f 12661/12661 12525/12525 12681/12681 +f 12528/12528 12790/12790 12526/12526 +f 12791/12791 12664/12664 12526/12526 +f 12664/12664 12792/12792 12527/12527 +f 12793/12793 12528/12528 12622/12622 +f 12794/12794 12529/12529 12527/12527 +f 12530/12530 12529/12529 12795/12795 +f 12795/12795 12533/12533 12530/12530 +f 12533/12533 12795/12795 12531/12531 +f 12531/12531 12796/12796 12665/12665 +f 12797/12797 12534/12534 12532/12532 +f 12666/12666 12534/12534 12797/12797 +f 12536/12536 12535/12535 12667/12667 +f 12417/12417 12667/12667 12668/12668 +f 12419/12419 12669/12669 12539/12539 +f 12670/12670 12540/12540 12541/12541 +f 12422/12422 12671/12671 12672/12672 +f 12539/12539 12669/12669 12671/12671 +f 12672/12672 12798/12798 12423/12423 +f 12423/12423 12798/12798 12673/12673 +f 12541/12541 12673/12673 12799/12799 +f 12543/12543 12800/12800 12544/12544 +f 12543/12543 12670/12670 12800/12800 +f 12544/12544 12800/12800 12674/12674 +f 12674/12674 12801/12801 12545/12545 +f 12546/12546 12545/12545 12802/12802 +f 12546/12546 12802/12802 12675/12675 +f 12675/12675 12803/12803 12547/12547 +f 12548/12548 12676/12676 12551/12551 +f 12803/12803 12676/12676 12547/12547 +f 12550/12550 12804/12804 12549/12549 +f 12804/12804 12553/12553 12549/12549 +f 12805/12805 12550/12550 12677/12677 +f 12552/12552 12678/12678 12677/12677 +f 12679/12679 12430/12430 12806/12806 +f 12679/12679 12807/12807 12554/12554 +f 12808/12808 12680/12680 12553/12553 +f 12680/12680 12809/12809 12430/12430 +f 12556/12556 12554/12554 12807/12807 +f 12681/12681 12431/12431 12555/12555 +f 12434/12434 12682/12682 12810/12810 +f 12811/12811 12681/12681 12434/12434 +f 12682/12682 12556/12556 12807/12807 +f 12557/12557 12564/12564 12688/12688 +f 12557/12557 12683/12683 12558/12558 +f 12435/12435 12683/12683 12770/12770 +f 12332/12332 12686/12686 12684/12684 +f 12684/12684 12812/12812 12559/12559 +f 12813/12813 12685/12685 12559/12559 +f 12814/12814 12686/12686 12560/12560 +f 12691/12691 12561/12561 12562/12562 +f 12687/12687 12815/12815 12562/12562 +f 12816/12816 12687/12687 12563/12563 +f 12563/12563 12685/12685 12816/12816 +f 12439/12439 12689/12689 12688/12688 +f 12817/12817 12689/12689 12565/12565 +f 12817/12817 12565/12565 12566/12566 +f 12818/12818 12566/12566 12690/12690 +f 12690/12690 12567/12567 12819/12819 +f 12567/12567 12568/12568 12820/12820 +f 12441/12441 12691/12691 12821/12821 +f 12821/12821 12692/12692 12441/12441 +f 12568/12568 12692/12692 12822/12822 +f 12569/12569 12443/12443 12693/12693 +f 12510/12510 12823/12823 12693/12693 +f 12694/12694 12444/12444 12823/12823 +f 12694/12694 12824/12824 12570/12570 +f 12823/12823 12444/12444 12693/12693 +f 12825/12825 12695/12695 12570/12570 +f 12695/12695 12826/12826 12445/12445 +f 12826/12826 12696/12696 12445/12445 +f 12827/12827 12447/12447 12697/12697 +f 12571/12571 12828/12828 12697/12697 +f 12573/12573 12447/12447 12827/12827 +f 12696/12696 12698/12698 12448/12448 +f 12829/12829 12571/12571 12698/12698 +f 12699/12699 12830/12830 12572/12572 +f 12572/12572 12831/12831 12700/12700 +f 12573/12573 12827/12827 12699/12699 +f 12700/12700 12832/12832 12574/12574 +f 12340/12340 12702/12702 12701/12701 +f 12575/12575 12701/12701 12833/12833 +f 12575/12575 12834/12834 12578/12578 +f 12835/12835 12702/12702 12576/12576 +f 12836/12836 12576/12576 12577/12577 +f 12837/12837 12452/12452 12703/12703 +f 12832/12832 12703/12703 12574/12574 +f 12704/12704 12452/12452 12837/12837 +f 12577/12577 12704/12704 12838/12838 +f 12580/12580 12578/12578 12705/12705 +f 12453/12453 12705/12705 12839/12839 +f 12840/12840 12582/12582 12581/12581 +f 12453/12453 12841/12841 12706/12706 +f 12842/12842 12581/12581 12706/12706 +f 12814/12814 12560/12560 12707/12707 +f 12840/12840 12707/12707 12582/12582 +f 12708/12708 12584/12584 12770/12770 +f 12585/12585 12708/12708 12709/12709 +f 12843/12843 12458/12458 12709/12709 +f 12458/12458 12843/12843 12710/12710 +f 12844/12844 12586/12586 12710/12710 +f 12845/12845 12587/12587 12586/12586 +f 12711/12711 12587/12587 12846/12846 +f 12712/12712 12460/12460 12711/12711 +f 12847/12847 12588/12588 12712/12712 +f 12848/12848 12713/12713 12588/12588 +f 12589/12589 12713/12713 12848/12848 +f 12591/12591 12769/12769 12714/12714 +f 12715/12715 12350/12350 12714/12714 +f 12593/12593 12592/12592 12849/12849 +f 12715/12715 12850/12850 12592/12592 +f 12849/12849 12594/12594 12593/12593 +f 12594/12594 12851/12851 12716/12716 +f 12717/12717 12352/12352 12716/12716 +f 12595/12595 12717/12717 12852/12852 +f 12718/12718 12722/12722 12358/12358 +f 12718/12718 12595/12595 12853/12853 +f 12854/12854 12605/12605 12596/12596 +f 12596/12596 12597/12597 12855/12855 +f 12597/12597 12600/12600 12856/12856 +f 12857/12857 12599/12599 12468/12468 +f 12463/12463 12858/12858 12719/12719 +f 12600/12600 12598/12598 12719/12719 +f 12720/12720 12599/12599 12859/12859 +f 12720/12720 12860/12860 12463/12463 +f 12721/12721 12861/12861 12601/12601 +f 12601/12601 12862/12862 12603/12603 +f 12863/12863 12602/12602 12722/12722 +f 12602/12602 12864/12864 12721/12721 +f 12865/12865 12723/12723 12603/12603 +f 12857/12857 12468/12468 12723/12723 +f 12724/12724 12727/12727 12469/12469 +f 12604/12604 12866/12866 12724/12724 +f 12725/12725 12866/12866 12604/12604 +f 12605/12605 12867/12867 12726/12726 +f 12868/12868 12725/12725 12606/12606 +f 12869/12869 12606/12606 12726/12726 +f 12728/12728 12607/12607 12727/12727 +f 12728/12728 12724/12724 12608/12608 +f 12475/12475 12729/12729 12730/12730 +f 12870/12870 12729/12729 12608/12608 +f 12610/12610 12609/12609 12871/12871 +f 12730/12730 12871/12871 12609/12609 +f 12610/12610 12872/12872 12731/12731 +f 12873/12873 12732/12732 12611/12611 +f 12732/12732 12733/12733 12252/12252 +f 12611/12611 12731/12731 12872/12872 +f 12733/12733 12874/12874 12612/12612 +f 12735/12735 12477/12477 12734/12734 +f 12875/12875 12734/12734 12612/12612 +f 12477/12477 12735/12735 12613/12613 +f 12478/12478 12735/12735 12736/12736 +f 12876/12876 12616/12616 12614/12614 +f 12876/12876 12614/12614 12736/12736 +f 12737/12737 12877/12877 12615/12615 +f 12737/12737 12479/12479 12738/12738 +f 12615/12615 12878/12878 12617/12617 +f 12738/12738 12616/12616 12879/12879 +f 12618/12618 12880/12880 12739/12739 +f 12619/12619 12739/12739 12881/12881 +f 12621/12621 12882/12882 12620/12620 +f 12620/12620 12883/12883 12740/12740 +f 12481/12481 12740/12740 12884/12884 +f 12884/12884 12741/12741 12481/12481 +f 12618/12618 12741/12741 12885/12885 +f 12742/12742 12619/12619 12881/12881 +f 12742/12742 12886/12886 12485/12485 +f 12887/12887 12621/12621 12617/12617 +f 12888/12888 12622/12622 12623/12623 +f 12623/12623 12624/12624 12889/12889 +f 12886/12886 12743/12743 12485/12485 +f 12890/12890 12624/12624 12743/12743 +f 12891/12891 12487/12487 12744/12744 +f 12892/12892 12744/12744 12488/12488 +f 12893/12893 12625/12625 12745/12745 +f 12487/12487 12891/12891 12745/12745 +f 12488/12488 12746/12746 12892/12892 +f 12489/12489 12894/12894 12747/12747 +f 12627/12627 12747/12747 12895/12895 +f 12894/12894 12489/12489 12748/12748 +f 12628/12628 12750/12750 12748/12748 +f 12896/12896 12749/12749 12627/12627 +f 12490/12490 12749/12749 12753/12753 +f 12491/12491 12751/12751 12750/12750 +f 12751/12751 12625/12625 12897/12897 +f 12752/12752 12630/12630 12629/12629 +f 12753/12753 12752/12752 12492/12492 +f 12631/12631 12754/12754 12898/12898 +f 12631/12631 12898/12898 12755/12755 +f 12899/12899 12756/12756 12494/12494 +f 12632/12632 12755/12755 12900/12900 +f 12757/12757 12632/12632 12901/12901 +f 12899/12899 12494/12494 12757/12757 +f 12634/12634 12637/12637 12633/12633 +f 12636/12636 12633/12633 12637/12637 +f 12902/12902 12634/12634 12756/12756 +f 12903/12903 12496/12496 12758/12758 +f 12904/12904 12758/12758 12630/12630 +f 12759/12759 12754/12754 12635/12635 +f 12905/12905 12759/12759 12496/12496 +f 12637/12637 12902/12902 12638/12638 +f 12906/12906 12639/12639 12638/12638 +f 12499/12499 12760/12760 12907/12907 +f 12906/12906 12760/12760 12639/12639 +f 12499/12499 12907/12907 12761/12761 +f 12761/12761 12908/12908 12502/12502 +f 12767/12767 12640/12640 12641/12641 +f 12769/12769 12505/12505 12640/12640 +f 12762/12762 12909/12909 12642/12642 +f 12763/12763 12910/12910 12643/12643 +f 12643/12643 12911/12911 12762/12762 +f 12644/12644 12912/12912 12763/12763 +f 12912/12912 12644/12644 12645/12645 +f 12908/12908 12764/12764 12502/12502 +f 12912/12912 12645/12645 12764/12764 +f 12765/12765 12913/12913 12646/12646 +f 12392/12392 12766/12766 12767/12767 +f 12646/12646 12913/12913 12766/12766 +f 12504/12504 12914/12914 12765/12765 +f 12768/12768 12642/12642 12909/12909 +f 12768/12768 12915/12915 12504/12504 +f 12771/12771 12916/12916 12647/12647 +f 12648/12648 12647/12647 12917/12917 +f 12917/12917 12772/12772 12648/12648 +f 12772/12772 12784/12784 12508/12508 +f 12918/12918 12773/12773 12649/12649 +f 12776/12776 12514/12514 12773/12773 +f 12919/12919 12510/12510 12774/12774 +f 12650/12650 12920/12920 12774/12774 +f 12517/12517 12921/12921 12650/12650 +f 12776/12776 12775/12775 12651/12651 +f 12515/12515 12778/12778 12777/12777 +f 12922/12922 12652/12652 12777/12777 +f 12923/12923 12654/12654 12652/12652 +f 12653/12653 12924/12924 12778/12778 +f 12653/12653 12775/12775 12924/12924 +f 12654/12654 12923/12923 12779/12779 +f 12516/12516 12779/12779 12780/12780 +f 12925/12925 12655/12655 12780/12780 +f 12781/12781 12782/12782 12402/12402 +f 12925/12925 12781/12781 12655/12655 +f 12782/12782 12926/12926 12656/12656 +f 12783/12783 12656/12656 12927/12927 +f 12783/12783 12921/12921 12517/12517 +f 12649/12649 12658/12658 12918/12918 +f 12658/12658 12657/12657 12928/12928 +f 12929/12929 12657/12657 12784/12784 +f 12789/12789 12785/12785 12523/12523 +f 12659/12659 12930/12930 12660/12660 +f 12931/12931 12659/12659 12785/12785 +f 12660/12660 12930/12930 12786/12786 +f 12786/12786 12771/12771 12520/12520 +f 12522/12522 12787/12787 12932/12932 +f 12661/12661 12811/12811 12787/12787 +f 12933/12933 12788/12788 12522/12522 +f 12934/12934 12662/12662 12663/12663 +f 12935/12935 12789/12789 12662/12662 +f 12788/12788 12934/12934 12663/12663 +f 12681/12681 12811/12811 12661/12661 +f 12793/12793 12790/12790 12528/12528 +f 12790/12790 12791/12791 12526/12526 +f 12936/12936 12664/12664 12791/12791 +f 12664/12664 12937/12937 12792/12792 +f 12794/12794 12527/12527 12792/12792 +f 12888/12888 12793/12793 12622/12622 +f 12795/12795 12529/12529 12794/12794 +f 12795/12795 12938/12938 12531/12531 +f 12939/12939 12796/12796 12531/12531 +f 12796/12796 12940/12940 12665/12665 +f 12670/12670 12541/12541 12800/12800 +f 12671/12671 12798/12798 12672/12672 +f 12669/12669 12941/12941 12671/12671 +f 12673/12673 12798/12798 12942/12942 +f 12799/12799 12673/12673 12943/12943 +f 12541/12541 12799/12799 12800/12800 +f 12799/12799 12674/12674 12800/12800 +f 12802/12802 12545/12545 12801/12801 +f 12801/12801 12674/12674 12944/12944 +f 12802/12802 12945/12945 12675/12675 +f 12946/12946 12803/12803 12675/12675 +f 12676/12676 12947/12947 12551/12551 +f 12803/12803 12947/12947 12676/12676 +f 12550/12550 12805/12805 12804/12804 +f 12804/12804 12808/12808 12553/12553 +f 12677/12677 12948/12948 12805/12805 +f 12678/12678 12948/12948 12677/12677 +f 12679/12679 12806/12806 12809/12809 +f 12809/12809 12806/12806 12430/12430 +f 12809/12809 12807/12807 12679/12679 +f 12949/12949 12680/12680 12808/12808 +f 12809/12809 12680/12680 12950/12950 +f 12682/12682 12951/12951 12810/12810 +f 12952/12952 12434/12434 12810/12810 +f 12811/12811 12434/12434 12952/12952 +f 12951/12951 12682/12682 12807/12807 +f 12688/12688 12953/12953 12557/12557 +f 12557/12557 12953/12953 12683/12683 +f 12683/12683 12954/12954 12770/12770 +f 12686/12686 12955/12955 12684/12684 +f 12684/12684 12955/12955 12812/12812 +f 12559/12559 12812/12812 12813/12813 +f 12816/12816 12685/12685 12813/12813 +f 12814/12814 12956/12956 12686/12686 +f 12821/12821 12691/12691 12562/12562 +f 12821/12821 12562/12562 12815/12815 +f 12815/12815 12687/12687 12957/12957 +f 12687/12687 12816/12816 12957/12957 +f 12953/12953 12688/12688 12689/12689 +f 12689/12689 12817/12817 12958/12958 +f 12566/12566 12959/12959 12817/12817 +f 12566/12566 12818/12818 12960/12960 +f 12961/12961 12818/12818 12690/12690 +f 12819/12819 12567/12567 12962/12962 +f 12690/12690 12819/12819 12961/12961 +f 12820/12820 12962/12962 12567/12567 +f 12820/12820 12568/12568 12822/12822 +f 12963/12963 12692/12692 12821/12821 +f 12822/12822 12692/12692 12964/12964 +f 12919/12919 12823/12823 12510/12510 +f 12965/12965 12694/12694 12823/12823 +f 12824/12824 12694/12694 12966/12966 +f 12570/12570 12824/12824 12825/12825 +f 12695/12695 12825/12825 12967/12967 +f 12695/12695 12968/12968 12826/12826 +f 12826/12826 12829/12829 12696/12696 +f 12697/12697 12969/12969 12827/12827 +f 12829/12829 12828/12828 12571/12571 +f 12697/12697 12828/12828 12969/12969 +f 12698/12698 12696/12696 12829/12829 +f 12830/12830 12699/12699 12827/12827 +f 12572/12572 12830/12830 12831/12831 +f 12700/12700 12831/12831 12832/12832 +f 12833/12833 12701/12701 12702/12702 +f 12833/12833 12970/12970 12575/12575 +f 12578/12578 12834/12834 12705/12705 +f 12834/12834 12575/12575 12970/12970 +f 12702/12702 12835/12835 12833/12833 +f 12576/12576 12836/12836 12835/12835 +f 12577/12577 12838/12838 12836/12836 +f 12703/12703 12971/12971 12837/12837 +f 12971/12971 12703/12703 12832/12832 +f 12972/12972 12704/12704 12837/12837 +f 12704/12704 12973/12973 12838/12838 +f 12705/12705 12834/12834 12839/12839 +f 12841/12841 12453/12453 12839/12839 +f 12581/12581 12842/12842 12840/12840 +f 12841/12841 12974/12974 12706/12706 +f 12706/12706 12974/12974 12842/12842 +f 12814/12814 12707/12707 12842/12842 +f 12840/12840 12842/12842 12707/12707 +f 12770/12770 12954/12954 12708/12708 +f 12708/12708 12975/12975 12709/12709 +f 12975/12975 12843/12843 12709/12709 +f 12843/12843 12976/12976 12710/12710 +f 12586/12586 12844/12844 12845/12845 +f 12976/12976 12844/12844 12710/12710 +f 12587/12587 12845/12845 12846/12846 +f 12977/12977 12711/12711 12846/12846 +f 12711/12711 12977/12977 12712/12712 +f 12978/12978 12847/12847 12712/12712 +f 12588/12588 12847/12847 12979/12979 +f 12979/12979 12848/12848 12588/12588 +f 12589/12589 12848/12848 12980/12980 +f 12714/12714 12769/12769 12715/12715 +f 12850/12850 12849/12849 12592/12592 +f 12850/12850 12715/12715 12769/12769 +f 12849/12849 12981/12981 12594/12594 +f 12851/12851 12594/12594 12982/12982 +f 12717/12717 12716/12716 12851/12851 +f 12852/12852 12853/12853 12595/12595 +f 12852/12852 12717/12717 12983/12983 +f 12984/12984 12722/12722 12718/12718 +f 12718/12718 12853/12853 12984/12984 +f 12854/12854 12867/12867 12605/12605 +f 12985/12985 12854/12854 12596/12596 +f 12855/12855 12597/12597 12856/12856 +f 12855/12855 12985/12985 12596/12596 +f 12719/12719 12856/12856 12600/12600 +f 12859/12859 12599/12599 12857/12857 +f 12858/12858 12986/12986 12719/12719 +f 12463/12463 12860/12860 12858/12858 +f 12859/12859 12987/12987 12720/12720 +f 12988/12988 12860/12860 12720/12720 +f 12861/12861 12721/12721 12864/12864 +f 12861/12861 12862/12862 12601/12601 +f 12862/12862 12865/12865 12603/12603 +f 12863/12863 12989/12989 12602/12602 +f 12990/12990 12863/12863 12722/12722 +f 12989/12989 12864/12864 12602/12602 +f 12991/12991 12723/12723 12865/12865 +f 12991/12991 12857/12857 12723/12723 +f 12724/12724 12728/12728 12727/12727 +f 12724/12724 12866/12866 12870/12870 +f 12866/12866 12725/12725 12992/12992 +f 12726/12726 12867/12867 12869/12869 +f 12992/12992 12725/12725 12868/12868 +f 12606/12606 12869/12869 12868/12868 +f 12870/12870 12608/12608 12724/12724 +f 12729/12729 12871/12871 12730/12730 +f 12729/12729 12870/12870 12871/12871 +f 12993/12993 12610/12610 12871/12871 +f 12872/12872 12610/12610 12994/12994 +f 12872/12872 12873/12873 12611/12611 +f 12873/12873 12995/12995 12732/12732 +f 12733/12733 12732/12732 12996/12996 +f 12996/12996 12874/12874 12733/12733 +f 12874/12874 12875/12875 12612/12612 +f 12997/12997 12735/12735 12734/12734 +f 12734/12734 12875/12875 12997/12997 +f 12736/12736 12735/12735 12998/12998 +f 12999/12999 12616/12616 12876/12876 +f 13000/13000 12876/12876 12736/12736 +f 12877/12877 12737/12737 13001/13001 +f 12877/12877 13002/13002 12615/12615 +f 12738/12738 13003/13003 12737/12737 +f 12878/12878 12887/12887 12617/12617 +f 13002/13002 12878/12878 12615/12615 +f 12999/12999 12879/12879 12616/12616 +f 12879/12879 13004/13004 12738/12738 +f 12885/12885 12880/12880 12618/12618 +f 12881/12881 12739/12739 12880/12880 +f 12620/12620 12882/12882 12883/12883 +f 12887/12887 12882/12882 12621/12621 +f 12740/12740 12883/12883 13005/13005 +f 12884/12884 12740/12740 13006/13006 +f 13006/13006 12741/12741 12884/12884 +f 12885/12885 12741/12741 13007/13007 +f 12881/12881 12886/12886 12742/12742 +f 12888/12888 12623/12623 13008/13008 +f 12889/12889 12624/12624 12890/12890 +f 13008/13008 12623/12623 12889/12889 +f 12886/12886 13009/13009 12743/12743 +f 12890/12890 12743/12743 13009/13009 +f 12891/12891 12744/12744 13010/13010 +f 12892/12892 13011/13011 12744/12744 +f 12745/12745 12891/12891 12893/12893 +f 12625/12625 12893/12893 12897/12897 +f 12746/12746 13012/13012 12892/12892 +f 13013/13013 12747/12747 12894/12894 +f 12747/12747 13014/13014 12895/12895 +f 12627/12627 12895/12895 12896/12896 +f 13015/13015 12894/12894 12748/12748 +f 12750/12750 13016/13016 12748/12748 +f 12749/12749 12896/12896 13017/13017 +f 12749/12749 13018/13018 12753/12753 +f 12750/12750 12751/12751 13019/13019 +f 12751/12751 12897/12897 13020/13020 +f 12904/12904 12630/12630 12752/12752 +f 12753/12753 13018/13018 12752/12752 +f 12898/12898 12754/12754 13021/13021 +f 13022/13022 12755/12755 12898/12898 +f 12756/12756 12899/12899 12902/12902 +f 12900/12900 12755/12755 13023/13023 +f 12900/12900 12901/12901 12632/12632 +f 12757/12757 12901/12901 13024/13024 +f 12757/12757 13025/13025 12899/12899 +f 12634/12634 12902/12902 12637/12637 +f 12905/12905 12496/12496 12903/12903 +f 12758/12758 12904/12904 12903/12903 +f 13026/13026 12754/12754 12759/12759 +f 12759/12759 12905/12905 13027/13027 +f 12906/12906 12638/12638 12902/12902 +f 12760/12760 13028/13028 12907/12907 +f 13028/13028 12760/12760 12906/12906 +f 12761/12761 12907/12907 13029/13029 +f 12908/12908 12761/12761 13030/13030 +f 12767/12767 13031/13031 12640/12640 +f 12640/12640 13031/13031 12769/12769 +f 13032/13032 12909/12909 12762/12762 +f 13033/13033 12643/12643 12910/12910 +f 12763/12763 13034/13034 12910/12910 +f 13033/13033 12911/12911 12643/12643 +f 12911/12911 13032/13032 12762/12762 +f 12912/12912 13034/13034 12763/12763 +f 12764/12764 12908/12908 13035/13035 +f 12764/12764 13035/13035 12912/12912 +f 12913/12913 12765/12765 12914/12914 +f 12766/12766 13036/13036 12767/12767 +f 12913/12913 13036/13036 12766/12766 +f 12504/12504 12915/12915 12914/12914 +f 12916/12916 12771/12771 13037/13037 +f 12647/12647 12916/12916 13038/13038 +f 13038/13038 12917/12917 12647/12647 +f 12917/12917 13039/13039 12772/12772 +f 13040/13040 12784/12784 12772/12772 +f 12918/12918 13041/13041 12773/12773 +f 12773/12773 13041/13041 12776/12776 +f 12774/12774 12920/12920 12919/12919 +f 12650/12650 12921/12921 12920/12920 +f 12775/12775 12776/12776 13042/13042 +f 12777/12777 12778/12778 12922/12922 +f 13043/13043 12652/12652 12922/12922 +f 12652/12652 13043/13043 12923/12923 +f 12778/12778 12924/12924 12922/12922 +f 12924/12924 12775/12775 13044/13044 +f 12779/12779 12923/12923 13045/13045 +f 13045/13045 12780/12780 12779/12779 +f 12925/12925 12780/12780 13046/13046 +f 13047/13047 12782/12782 12781/12781 +f 12781/12781 12925/12925 13048/13048 +f 12926/12926 12782/12782 13047/13047 +f 12656/12656 12926/12926 12927/12927 +f 13049/13049 12783/12783 12927/12927 +f 12783/12783 13049/13049 12921/12921 +f 12928/12928 12918/12918 12658/12658 +f 12929/12929 12928/12928 12657/12657 +f 12784/12784 13050/13050 12929/12929 +f 12785/12785 12789/12789 12931/12931 +f 12659/12659 13051/13051 12930/12930 +f 13051/13051 12659/12659 12931/12931 +f 12786/12786 12930/12930 13052/13052 +f 13037/13037 12771/12771 12786/12786 +f 12787/12787 13053/13053 12932/12932 +f 13054/13054 12522/12522 12932/12932 +f 12811/12811 13055/13055 12787/12787 +f 13054/13054 12933/12933 12522/12522 +f 12933/12933 13056/13056 12788/12788 +f 12934/12934 12935/12935 12662/12662 +f 12935/12935 13057/13057 12789/12789 +f 13058/13058 12934/12934 12788/12788 +f 12793/12793 12888/12888 12790/12790 +f 12791/12791 12790/12790 12936/12936 +f 12664/12664 12936/12936 12937/12937 +f 12792/12792 12937/12937 12794/12794 +f 12794/12794 13059/13059 12795/12795 +f 13059/13059 12938/12938 12795/12795 +f 12939/12939 12531/12531 12938/12938 +f 12939/12939 13060/13060 12796/12796 +f 12796/12796 13060/13060 12940/12940 +f 12941/12941 12798/12798 12671/12671 +f 12798/12798 12941/12941 12942/12942 +f 12942/12942 12943/12943 12673/12673 +f 13061/13061 12799/12799 12943/12943 +f 13061/13061 12674/12674 12799/12799 +f 12802/12802 12801/12801 13062/13062 +f 12674/12674 13061/13061 12944/12944 +f 12801/12801 12944/12944 13062/13062 +f 12945/12945 12802/12802 13062/13062 +f 12945/12945 13063/13063 12675/12675 +f 12675/12675 13064/13064 12946/12946 +f 12803/12803 12946/12946 13065/13065 +f 12947/12947 12803/12803 13065/13065 +f 13066/13066 12804/12804 12805/12805 +f 12808/12808 12804/12804 13066/13066 +f 12948/12948 13067/13067 12805/12805 +f 12809/12809 13068/13068 12807/12807 +f 12950/12950 12680/12680 12949/12949 +f 12949/12949 12808/12808 13069/13069 +f 12950/12950 13068/13068 12809/12809 +f 12951/12951 13070/13070 12810/12810 +f 12952/12952 12810/12810 13070/13070 +f 12952/12952 13055/13055 12811/12811 +f 13071/13071 12951/12951 12807/12807 +f 12683/12683 12953/12953 13072/13072 +f 12683/12683 13072/13072 12954/12954 +f 12686/12686 12956/12956 12955/12955 +f 12812/12812 12955/12955 13073/13073 +f 12813/12813 12812/12812 13074/13074 +f 12816/12816 12813/12813 13074/13074 +f 13075/13075 12956/12956 12814/12814 +f 12815/12815 12963/12963 12821/12821 +f 12957/12957 13076/13076 12815/12815 +f 12816/12816 13074/13074 12957/12957 +f 13077/13077 12953/12953 12689/12689 +f 13078/13078 12958/12958 12817/12817 +f 12689/12689 12958/12958 13077/13077 +f 13078/13078 12817/12817 12959/12959 +f 12959/12959 12566/12566 12960/12960 +f 12960/12960 12818/12818 13079/13079 +f 13080/13080 12818/12818 12961/12961 +f 12819/12819 12962/12962 13081/13081 +f 13081/13081 12961/12961 12819/12819 +f 12962/12962 12820/12820 13082/13082 +f 12820/12820 12822/12822 13083/13083 +f 12963/12963 12964/12964 12692/12692 +f 12822/12822 12964/12964 13083/13083 +f 12965/12965 12823/12823 12919/12919 +f 12966/12966 12694/12694 12965/12965 +f 12966/12966 13084/13084 12824/12824 +f 12824/12824 13085/13085 12825/12825 +f 13086/13086 12967/12967 12825/12825 +f 12967/12967 12968/12968 12695/12695 +f 13087/13087 12826/12826 12968/12968 +f 12826/12826 12828/12828 12829/12829 +f 12827/12827 12969/12969 13088/13088 +f 13089/13089 12969/12969 12828/12828 +f 12830/12830 12827/12827 13090/13090 +f 13090/13090 12831/12831 12830/12830 +f 12831/12831 13091/13091 12832/12832 +f 12970/12970 12833/12833 13092/13092 +f 12839/12839 12834/12834 12970/12970 +f 12833/12833 12835/12835 13092/13092 +f 13093/13093 12835/12835 12836/12836 +f 12836/12836 12838/12838 13094/13094 +f 12971/12971 12972/12972 12837/12837 +f 13095/13095 12971/12971 12832/12832 +f 12704/12704 12972/12972 13096/13096 +f 12973/12973 13097/13097 12838/12838 +f 12973/12973 12704/12704 13096/13096 +f 12841/12841 12839/12839 12974/12974 +f 12842/12842 12974/12974 13098/13098 +f 12842/12842 13075/13075 12814/12814 +f 13099/13099 12708/12708 12954/12954 +f 12708/12708 13099/13099 12975/12975 +f 13100/13100 12843/12843 12975/12975 +f 12843/12843 13101/13101 12976/12976 +f 12844/12844 12846/12846 12845/12845 +f 12976/12976 13102/13102 12844/12844 +f 12977/12977 12846/12846 12978/12978 +f 12977/12977 12978/12978 12712/12712 +f 12847/12847 12978/12978 13103/13103 +f 12979/12979 12847/12847 13103/13103 +f 13104/13104 12848/12848 12979/12979 +f 13105/13105 12589/12589 12980/12980 +f 12980/12980 12848/12848 13104/13104 +f 12850/12850 13106/13106 12849/12849 +f 13031/13031 12850/12850 12769/12769 +f 13106/13106 12981/12981 12849/12849 +f 12594/12594 12981/12981 12982/12982 +f 13107/13107 12851/12851 12982/12982 +f 12851/12851 13108/13108 12717/12717 +f 12852/12852 13109/13109 12853/12853 +f 12983/12983 13110/13110 12852/12852 +f 12983/12983 12717/12717 13111/13111 +f 12722/12722 12984/12984 13112/13112 +f 12984/12984 12853/12853 13109/13109 +f 12867/12867 12854/12854 13113/13113 +f 12854/12854 12985/12985 13114/13114 +f 12855/12855 12856/12856 13115/13115 +f 12985/12985 12855/12855 13116/13116 +f 13115/13115 12856/12856 12719/12719 +f 12859/12859 12857/12857 13117/13117 +f 12986/12986 12858/12858 13118/13118 +f 12986/12986 13115/13115 12719/12719 +f 12858/12858 12860/12860 13119/13119 +f 12987/12987 12859/12859 13117/13117 +f 12720/12720 12987/12987 13120/13120 +f 13120/13120 12988/12988 12720/12720 +f 12860/12860 12988/12988 13119/13119 +f 12861/12861 12864/12864 12862/12862 +f 12865/12865 12862/12862 12864/12864 +f 12863/12863 12991/12991 12989/12989 +f 12990/12990 12722/12722 13112/13112 +f 12990/12990 13117/13117 12863/12863 +f 12864/12864 12989/12989 12865/12865 +f 12865/12865 12989/12989 12991/12991 +f 12857/12857 12991/12991 13117/13117 +f 12866/12866 13121/13121 12870/12870 +f 12866/12866 12992/12992 13122/13122 +f 12869/12869 12867/12867 13123/13123 +f 12992/12992 12868/12868 13124/13124 +f 12869/12869 13123/13123 12868/12868 +f 12871/12871 12870/12870 13121/13121 +f 12994/12994 12610/12610 12993/12993 +f 12871/12871 13125/13125 12993/12993 +f 13126/13126 12872/12872 12994/12994 +f 12873/12873 12872/12872 13127/13127 +f 13128/13128 12995/12995 12873/12873 +f 12996/12996 12732/12732 12995/12995 +f 12874/12874 12996/12996 13129/13129 +f 13130/13130 12875/12875 12874/12874 +f 12998/12998 12735/12735 12997/12997 +f 13131/13131 12997/12997 12875/12875 +f 12998/12998 13000/13000 12736/12736 +f 12876/12876 13000/13000 12999/12999 +f 13001/13001 12737/12737 13003/13003 +f 12877/12877 13001/13001 13132/13132 +f 13002/13002 12877/12877 13132/13132 +f 12738/12738 13004/13004 13003/13003 +f 12878/12878 13133/13133 12887/12887 +f 13134/13134 12878/12878 13002/13002 +f 12879/12879 12999/12999 13135/13135 +f 13004/13004 12879/12879 13136/13136 +f 12885/12885 13007/13007 12880/12880 +f 12880/12880 13137/13137 12881/12881 +f 13138/13138 12883/12883 12882/12882 +f 12882/12882 12887/12887 13133/13133 +f 13005/13005 12883/12883 13139/13139 +f 13006/13006 12740/12740 13005/13005 +f 12741/12741 13006/13006 13007/13007 +f 13137/13137 12886/12886 12881/12881 +f 13140/13140 12888/12888 13008/13008 +f 12890/12890 13141/13141 12889/12889 +f 13141/13141 13008/13008 12889/12889 +f 12886/12886 13137/13137 13009/13009 +f 13009/13009 13142/13142 12890/12890 +f 13010/13010 12744/12744 13011/13011 +f 13010/13010 13143/13143 12891/12891 +f 13012/13012 13011/13011 12892/12892 +f 12893/12893 12891/12891 13143/13143 +f 13020/13020 12897/12897 12893/12893 +f 13013/13013 13014/13014 12747/12747 +f 13013/13013 12894/12894 13144/13144 +f 12896/12896 12895/12895 13014/13014 +f 13015/13015 13145/13145 12894/12894 +f 13015/13015 12748/12748 13146/13146 +f 13147/13147 13016/13016 12750/12750 +f 12748/12748 13016/13016 13146/13146 +f 12896/12896 13148/13148 13017/13017 +f 13017/13017 13018/13018 12749/12749 +f 13019/13019 12751/12751 13020/13020 +f 12750/12750 13019/13019 13147/13147 +f 13018/13018 12904/12904 12752/12752 +f 13021/13021 12754/12754 13149/13149 +f 13021/13021 13150/13150 12898/12898 +f 12755/12755 13022/13022 13151/13151 +f 12898/12898 13150/13150 13022/13022 +f 12899/12899 13025/13025 12902/12902 +f 12755/12755 13151/13151 13023/13023 +f 12900/12900 13023/13023 13152/13152 +f 12901/12901 12900/12900 13152/13152 +f 13024/13024 12901/12901 13153/13153 +f 12757/12757 13024/13024 13025/13025 +f 12905/12905 12903/12903 13154/13154 +f 13017/13017 12903/12903 12904/12904 +f 13149/13149 12754/12754 13026/13026 +f 13026/13026 12759/12759 13155/13155 +f 13154/13154 13027/13027 12905/12905 +f 13027/13027 13155/13155 12759/12759 +f 12906/12906 12902/12902 13025/13025 +f 12907/12907 13028/13028 13156/13156 +f 13025/13025 13028/13028 12906/12906 +f 13030/13030 12761/12761 13029/13029 +f 12907/12907 13156/13156 13029/13029 +f 13030/13030 13035/13035 12908/12908 +f 13106/13106 13031/13031 12767/12767 +f 12910/12910 13157/13157 13033/13033 +f 13034/13034 13158/13158 12910/12910 +f 13159/13159 12911/12911 13033/13033 +f 13032/13032 12911/12911 13159/13159 +f 13034/13034 12912/12912 13035/13035 +f 12915/12915 12913/12913 12914/12914 +f 13036/13036 13160/13160 12767/12767 +f 12913/12913 13161/13161 13036/13036 +f 12916/12916 13037/13037 13162/13162 +f 12916/12916 13163/13163 13038/13038 +f 13038/13038 13039/13039 12917/12917 +f 13039/13039 13040/13040 12772/12772 +f 12784/12784 13040/13040 13164/13164 +f 13041/13041 12918/12918 13165/13165 +f 12776/12776 13041/13041 13042/13042 +f 12919/12919 12920/12920 13166/13166 +f 13049/13049 12920/12920 12921/12921 +f 13044/13044 12775/12775 13042/13042 +f 13043/13043 12922/12922 13167/13167 +f 12923/12923 13043/13043 13168/13168 +f 13169/13169 12922/12922 12924/12924 +f 13044/13044 13169/13169 12924/12924 +f 13170/13170 13045/13045 12923/12923 +f 12780/12780 13045/13045 13171/13171 +f 12925/12925 13046/13046 13172/13172 +f 13171/13171 13046/13046 12780/12780 +f 13048/13048 13047/13047 12781/12781 +f 13048/13048 12925/12925 13173/13173 +f 13174/13174 12926/12926 13047/13047 +f 12927/12927 12926/12926 13175/13175 +f 13166/13166 13049/13049 12927/12927 +f 13165/13165 12918/12918 12928/12928 +f 13165/13165 12928/12928 12929/12929 +f 13050/13050 12784/12784 13164/13164 +f 13176/13176 12929/12929 13050/13050 +f 12931/12931 12789/12789 13177/13177 +f 13052/13052 12930/12930 13051/13051 +f 13051/13051 12931/12931 13178/13178 +f 12786/12786 13052/13052 13179/13179 +f 13037/13037 12786/12786 13179/13179 +f 13053/13053 12787/12787 13055/13055 +f 13180/13180 12932/12932 13053/13053 +f 12932/12932 13181/13181 13054/13054 +f 12933/12933 13054/13054 13056/13056 +f 12788/12788 13056/13056 13058/13058 +f 12934/12934 13182/13182 12935/12935 +f 13057/13057 12935/12935 13183/13183 +f 13057/13057 13177/13177 12789/12789 +f 13182/13182 12934/12934 13058/13058 +f 12790/12790 12888/12888 13184/13184 +f 13184/13184 12936/12936 12790/12790 +f 13185/13185 12937/12937 12936/12936 +f 12937/12937 13059/13059 12794/12794 +f 13059/13059 12939/12939 12938/12938 +f 12939/12939 13186/13186 13060/13060 +f 13060/13060 13187/13187 12940/12940 +f 12943/12943 13188/13188 13061/13061 +f 12944/12944 13061/13061 13188/13188 +f 13062/13062 12944/12944 13189/13189 +f 13062/13062 13190/13190 12945/12945 +f 13063/13063 12945/12945 13190/13190 +f 12675/12675 13063/13063 13064/13064 +f 12946/12946 13064/13064 13191/13191 +f 12946/12946 13191/13191 13065/13065 +f 13067/13067 13066/13066 12805/12805 +f 13066/13066 13067/13067 12808/12808 +f 13192/13192 13067/13067 12948/12948 +f 12807/12807 13068/13068 13071/13071 +f 12949/12949 13193/13193 12950/12950 +f 13069/13069 12808/12808 13067/13067 +f 13069/13069 13193/13193 12949/12949 +f 13194/13194 13068/13068 12950/12950 +f 12951/12951 13071/13071 13070/13070 +f 12952/12952 13070/13070 13195/13195 +f 13195/13195 13055/13055 12952/12952 +f 13072/13072 12953/12953 13077/13077 +f 12954/12954 13072/13072 13196/13196 +f 12955/12955 12956/12956 13197/13197 +f 12955/12955 13197/13197 13073/13073 +f 13198/13198 12812/12812 13073/13073 +f 12812/12812 13198/13198 13074/13074 +f 13197/13197 12956/12956 13075/13075 +f 12963/12963 12815/12815 13199/13199 +f 13076/13076 13199/13199 12815/12815 +f 13200/13200 13076/13076 12957/12957 +f 12957/12957 13074/13074 13200/13200 +f 13201/13201 12958/12958 13078/13078 +f 12958/12958 13202/13202 13077/13077 +f 13078/13078 12959/12959 13203/13203 +f 13204/13204 12959/12959 12960/12960 +f 13079/13079 13205/13205 12960/12960 +f 13079/13079 12818/12818 13206/13206 +f 12818/12818 13080/13080 13206/13206 +f 13080/13080 12961/12961 13207/13207 +f 13081/13081 12962/12962 13208/13208 +f 13081/13081 13209/13209 12961/12961 +f 13082/13082 12820/12820 13083/13083 +f 12962/12962 13082/13082 13210/13210 +f 13199/13199 12964/12964 12963/12963 +f 12964/12964 13211/13211 13083/13083 +f 12965/12965 12919/12919 12966/12966 +f 13084/13084 12966/12966 13212/13212 +f 12824/12824 13084/13084 13085/13085 +f 12825/12825 13085/13085 13086/13086 +f 12967/12967 13086/13086 13213/13213 +f 12968/12968 12967/12967 13214/13214 +f 13089/13089 12826/12826 13087/13087 +f 13087/13087 12968/12968 13215/13215 +f 12828/12828 12826/12826 13089/13089 +f 13088/13088 12969/12969 13216/13216 +f 12827/12827 13088/13088 13090/13090 +f 12969/12969 13089/13089 13216/13216 +f 13091/13091 12831/12831 13090/13090 +f 13091/13091 13095/13095 12832/12832 +f 12970/12970 13092/13092 13217/13217 +f 13217/13217 12839/12839 12970/12970 +f 13092/13092 12835/12835 13218/13218 +f 12836/12836 13094/13094 13093/13093 +f 13218/13218 12835/12835 13093/13093 +f 13219/13219 13094/13094 12838/12838 +f 13095/13095 12972/12972 12971/12971 +f 13096/13096 12972/12972 13220/13220 +f 12973/12973 13221/13221 13097/13097 +f 13222/13222 12838/12838 13097/13097 +f 12973/12973 13096/13096 13223/13223 +f 12839/12839 13098/13098 12974/12974 +f 13224/13224 12842/12842 13098/13098 +f 13224/13224 13075/13075 12842/12842 +f 13225/13225 13099/13099 12954/12954 +f 13099/13099 13226/13226 12975/12975 +f 12843/12843 13100/13100 13101/13101 +f 13100/13100 12975/12975 13226/13226 +f 13101/13101 13102/13102 12976/12976 +f 12846/12846 12844/12844 13227/13227 +f 12844/12844 13102/13102 13228/13228 +f 13229/13229 12978/12978 12846/12846 +f 12978/12978 13229/13229 13103/13103 +f 13230/13230 12979/12979 13103/13103 +f 12979/12979 13230/13230 13104/13104 +f 12980/12980 13104/13104 13105/13105 +f 13106/13106 12850/12850 13031/13031 +f 12981/12981 13106/13106 12982/12982 +f 13231/13231 12851/12851 13107/13107 +f 13107/13107 12982/12982 13160/13160 +f 13108/13108 13111/13111 12717/12717 +f 13232/13232 13108/13108 12851/12851 +f 12852/12852 13110/13110 13109/13109 +f 13111/13111 13110/13110 12983/12983 +f 12984/12984 13233/13233 13112/13112 +f 13233/13233 12984/12984 13109/13109 +f 13234/13234 12867/12867 13113/13113 +f 13113/13113 12854/12854 13114/13114 +f 12985/12985 13116/13116 13114/13114 +f 12855/12855 13115/13115 13116/13116 +f 13118/13118 12858/12858 13119/13119 +f 12986/12986 13118/13118 13235/13235 +f 13235/13235 13115/13115 12986/12986 +f 12987/12987 13117/13117 13236/13236 +f 13120/13120 12987/12987 13237/13237 +f 13238/13238 12988/12988 13120/13120 +f 13119/13119 12988/12988 13239/13239 +f 12991/12991 12863/12863 13117/13117 +f 13112/13112 13240/13240 12990/12990 +f 12990/12990 13240/13240 13117/13117 +f 13121/13121 12866/12866 13122/13122 +f 13241/13241 13122/13122 12992/12992 +f 13234/13234 13123/13123 12867/12867 +f 12992/12992 13124/13124 13242/13242 +f 13243/13243 13124/13124 12868/12868 +f 13243/13243 12868/12868 13123/13123 +f 12871/12871 13121/13121 13244/13244 +f 12994/12994 12993/12993 13125/13125 +f 13244/13244 13125/13125 12871/12871 +f 13126/13126 13127/13127 12872/12872 +f 13245/13245 13126/13126 12994/12994 +f 13127/13127 13246/13246 12873/12873 +f 13128/13128 12996/12996 12995/12995 +f 12873/12873 13246/13246 13128/13128 +f 12996/12996 13247/13247 13129/13129 +f 13130/13130 12874/12874 13129/13129 +f 12875/12875 13130/13130 13131/13131 +f 12998/12998 12997/12997 13131/13131 +f 13248/13248 13000/13000 12998/12998 +f 13000/13000 13135/13135 12999/12999 +f 13001/13001 13003/13003 13004/13004 +f 13004/13004 13132/13132 13001/13001 +f 13249/13249 13002/13002 13132/13132 +f 12878/12878 13134/13134 13133/13133 +f 13249/13249 13134/13134 13002/13002 +f 13135/13135 13250/13250 12879/12879 +f 13250/13250 13136/13136 12879/12879 +f 13136/13136 13251/13251 13004/13004 +f 13007/13007 13252/13252 12880/12880 +f 13137/13137 12880/12880 13252/13252 +f 13139/13139 12883/12883 13138/13138 +f 12882/12882 13133/13133 13138/13138 +f 13005/13005 13139/13139 13253/13253 +f 13006/13006 13005/13005 13007/13007 +f 12888/12888 13140/13140 13184/13184 +f 13142/13142 13140/13140 13008/13008 +f 13141/13141 12890/12890 13008/13008 +f 13137/13137 13254/13254 13009/13009 +f 13255/13255 13142/13142 13009/13009 +f 13008/13008 12890/12890 13142/13142 +f 13011/13011 13256/13256 13010/13010 +f 13256/13256 13143/13143 13010/13010 +f 13256/13256 13011/13011 13012/13012 +f 13143/13143 13020/13020 12893/12893 +f 13257/13257 13014/13014 13013/13013 +f 13013/13013 13144/13144 13258/13258 +f 12894/12894 13145/13145 13144/13144 +f 12896/12896 13014/13014 13148/13148 +f 13259/13259 13016/13016 13147/13147 +f 13148/13148 13154/13154 13017/13017 +f 12904/12904 13018/13018 13017/13017 +f 13019/13019 13020/13020 13260/13260 +f 13260/13260 13147/13147 13019/13019 +f 13021/13021 13149/13149 13261/13261 +f 13150/13150 13021/13021 13262/13262 +f 13263/13263 13151/13151 13022/13022 +f 13150/13150 13263/13263 13022/13022 +f 13151/13151 13264/13264 13023/13023 +f 13023/13023 13265/13265 13152/13152 +f 13152/13152 13266/13266 12901/12901 +f 13266/13266 13153/13153 12901/12901 +f 13153/13153 13156/13156 13024/13024 +f 13025/13025 13024/13024 13028/13028 +f 13154/13154 12903/12903 13017/13017 +f 13155/13155 13149/13149 13026/13026 +f 13154/13154 13148/13148 13027/13027 +f 13027/13027 13148/13148 13155/13155 +f 13024/13024 13156/13156 13028/13028 +f 13030/13030 13029/13029 13267/13267 +f 13029/13029 13156/13156 13268/13268 +f 13035/13035 13030/13030 13269/13269 +f 12767/12767 13160/13160 13106/13106 +f 12910/12910 13158/13158 13157/13157 +f 13157/13157 13159/13159 13033/13033 +f 13158/13158 13034/13034 13270/13270 +f 13035/13035 13270/13270 13034/13034 +f 13161/13161 12913/12913 12915/12915 +f 13160/13160 13036/13036 13107/13107 +f 13107/13107 13036/13036 13161/13161 +f 13162/13162 13271/13271 12916/12916 +f 13037/13037 13179/13179 13162/13162 +f 12916/12916 13271/13271 13163/13163 +f 13272/13272 13038/13038 13163/13163 +f 13038/13038 13273/13273 13039/13039 +f 13164/13164 13040/13040 13039/13039 +f 13041/13041 13165/13165 13042/13042 +f 13212/13212 12919/12919 13166/13166 +f 12920/12920 13049/13049 13166/13166 +f 13274/13274 13044/13044 13042/13042 +f 13275/13275 13167/13167 12922/12922 +f 13276/13276 13043/13043 13167/13167 +f 13168/13168 13170/13170 12923/12923 +f 13043/13043 13276/13276 13168/13168 +f 12922/12922 13169/13169 13275/13275 +f 13169/13169 13044/13044 13274/13274 +f 13277/13277 13045/13045 13170/13170 +f 13045/13045 13277/13277 13171/13171 +f 13172/13172 13046/13046 13171/13171 +f 12925/12925 13172/13172 13173/13173 +f 13048/13048 13174/13174 13047/13047 +f 13048/13048 13173/13173 13278/13278 +f 13175/13175 12926/12926 13174/13174 +f 13279/13279 12927/12927 13175/13175 +f 12927/12927 13212/13212 13166/13166 +f 13165/13165 12929/12929 13176/13176 +f 13164/13164 13280/13280 13050/13050 +f 13274/13274 13176/13176 13050/13050 +f 12931/12931 13177/13177 13281/13281 +f 13052/13052 13051/13051 13178/13178 +f 13178/13178 12931/12931 13281/13281 +f 13179/13179 13052/13052 13282/13282 +f 13055/13055 13180/13180 13053/13053 +f 13181/13181 12932/12932 13180/13180 +f 13181/13181 13283/13283 13054/13054 +f 13054/13054 13284/13284 13056/13056 +f 13285/13285 13058/13058 13056/13056 +f 12935/12935 13182/13182 13183/13183 +f 13057/13057 13183/13183 13286/13286 +f 13057/13057 13286/13286 13177/13177 +f 13285/13285 13182/13182 13058/13058 +f 13184/13184 13287/13287 12936/12936 +f 13185/13185 12936/12936 13287/13287 +f 13059/13059 12937/12937 13185/13185 +f 13288/13288 12939/12939 13059/13059 +f 13187/13187 13060/13060 13186/13186 +f 12939/12939 13288/13288 13186/13186 +f 13289/13289 12940/12940 13187/13187 +f 13190/13190 13062/13062 13189/13189 +f 13290/13290 13063/13063 13190/13190 +f 13064/13064 13063/13063 13290/13290 +f 13191/13191 13064/13064 13290/13290 +f 13065/13065 13191/13191 13291/13291 +f 13292/13292 13067/13067 13192/13192 +f 13068/13068 13195/13195 13071/13071 +f 12950/12950 13193/13193 13293/13293 +f 13292/13292 13069/13069 13067/13067 +f 13294/13294 13193/13193 13069/13069 +f 13068/13068 13194/13194 13295/13295 +f 12950/12950 13293/13293 13194/13194 +f 13195/13195 13070/13070 13071/13071 +f 13195/13195 13180/13180 13055/13055 +f 13196/13196 13072/13072 13077/13077 +f 13196/13196 13225/13225 12954/12954 +f 13073/13073 13197/13197 13296/13296 +f 13073/13073 13297/13297 13198/13198 +f 13198/13198 13298/13298 13074/13074 +f 13299/13299 13197/13197 13075/13075 +f 13076/13076 13200/13200 13199/13199 +f 13298/13298 13200/13200 13074/13074 +f 13078/13078 13300/13300 13201/13201 +f 13301/13301 12958/12958 13201/13201 +f 12958/12958 13302/13302 13202/13202 +f 13202/13202 13303/13303 13077/13077 +f 12959/12959 13204/13204 13203/13203 +f 13203/13203 13304/13304 13078/13078 +f 13205/13205 13204/13204 12960/12960 +f 13305/13305 13205/13205 13079/13079 +f 13206/13206 13306/13306 13079/13079 +f 13307/13307 13206/13206 13080/13080 +f 13308/13308 13080/13080 13207/13207 +f 13207/13207 12961/12961 13209/13209 +f 13208/13208 13309/13309 13081/13081 +f 12962/12962 13210/13210 13208/13208 +f 13081/13081 13309/13309 13209/13209 +f 13211/13211 13082/13082 13083/13083 +f 13210/13210 13082/13082 13310/13310 +f 12964/12964 13199/13199 13298/13298 +f 13211/13211 12964/12964 13298/13298 +f 13212/13212 12966/12966 12919/12919 +f 13212/13212 13279/13279 13084/13084 +f 13084/13084 13311/13311 13085/13085 +f 13085/13085 13311/13311 13086/13086 +f 13213/13213 13086/13086 13311/13311 +f 12967/12967 13213/13213 13312/13312 +f 13215/13215 12968/12968 13214/13214 +f 13214/13214 12967/12967 13312/13312 +f 13313/13313 13089/13089 13087/13087 +f 13087/13087 13215/13215 13313/13313 +f 13314/13314 13088/13088 13216/13216 +f 13090/13090 13088/13088 13314/13314 +f 13089/13089 13313/13313 13216/13216 +f 13090/13090 13314/13314 13091/13091 +f 13095/13095 13091/13091 13315/13315 +f 13092/13092 13316/13316 13217/13217 +f 12839/12839 13217/13217 13317/13317 +f 13316/13316 13092/13092 13218/13218 +f 13093/13093 13094/13094 13219/13219 +f 13219/13219 13218/13218 13093/13093 +f 13222/13222 13219/13219 12838/12838 +f 12972/12972 13095/13095 13318/13318 +f 13220/13220 12972/12972 13318/13318 +f 13223/13223 13096/13096 13220/13220 +f 13221/13221 12973/12973 13319/13319 +f 13097/13097 13221/13221 13222/13222 +f 13320/13320 12973/12973 13223/13223 +f 13321/13321 13098/13098 12839/12839 +f 13322/13322 13224/13224 13098/13098 +f 13075/13075 13224/13224 13323/13323 +f 13226/13226 13099/13099 13225/13225 +f 13101/13101 13100/13100 13324/13324 +f 13226/13226 13325/13325 13100/13100 +f 13228/13228 13102/13102 13101/13101 +f 13326/13326 13227/13227 12844/12844 +f 12846/12846 13227/13227 13326/13326 +f 13326/13326 12844/12844 13228/13228 +f 13229/13229 12846/12846 13327/13327 +f 13229/13229 13230/13230 13103/13103 +f 36335/39326 13104/13104 13230/13230 +f 36336/39327 36335/39326 13230/13230 +f 13105/13105 13104/13104 13328/13328 +f 13106/13106 13160/13160 12982/12982 +f 13231/13231 13107/13107 13329/13329 +f 13232/13232 12851/12851 13231/13231 +f 13108/13108 13330/13330 13111/13111 +f 13331/13331 13109/13109 13110/13110 +f 13111/13111 13330/13330 13110/13110 +f 13112/13112 13233/13233 13332/13332 +f 13331/13331 13233/13233 13109/13109 +f 13234/13234 13113/13113 13333/13333 +f 13333/13333 13113/13113 13114/13114 +f 13114/13114 13116/13116 13334/13334 +f 13115/13115 13335/13335 13116/13116 +f 13119/13119 13336/13336 13118/13118 +f 13118/13118 13337/13337 13235/13235 +f 13115/13115 13235/13235 13335/13335 +f 13338/13338 12987/12987 13236/13236 +f 13236/13236 13117/13117 13240/13240 +f 13237/13237 13238/13238 13120/13120 +f 13338/13338 13237/13237 12987/12987 +f 12988/12988 13238/13238 13339/13339 +f 12988/12988 13339/13339 13239/13239 +f 13336/13336 13119/13119 13239/13239 +f 13340/13340 13240/13240 13112/13112 +f 13122/13122 13341/13341 13121/13121 +f 13122/13122 13241/13241 13342/13342 +f 13242/13242 13241/13241 12992/12992 +f 13243/13243 13123/13123 13234/13234 +f 13343/13343 13242/13242 13124/13124 +f 13243/13243 13343/13343 13124/13124 +f 13121/13121 13341/13341 13244/13244 +f 13344/13344 12994/12994 13125/13125 +f 13125/13125 13244/13244 13345/13345 +f 13245/13245 13127/13127 13126/13126 +f 12994/12994 13346/13346 13245/13245 +f 13246/13246 13127/13127 13347/13347 +f 12996/12996 13128/13128 13247/13247 +f 13128/13128 13246/13246 13348/13348 +f 13129/13129 13247/13247 13349/13349 +f 13129/13129 13349/13349 13130/13130 +f 13131/13131 13130/13130 13350/13350 +f 13351/13351 12998/12998 13131/13131 +f 13352/13352 13248/13248 12998/12998 +f 13000/13000 13248/13248 13353/13353 +f 13135/13135 13000/13000 13354/13354 +f 13251/13251 13132/13132 13004/13004 +f 13132/13132 13355/13355 13249/13249 +f 13138/13138 13133/13133 13134/13134 +f 13356/13356 13134/13134 13249/13249 +f 13357/13357 13250/13250 13135/13135 +f 13136/13136 13250/13250 13357/13357 +f 13136/13136 13357/13357 13251/13251 +f 13253/13253 13252/13252 13007/13007 +f 13252/13252 13358/13358 13137/13137 +f 13139/13139 13138/13138 13356/13356 +f 13359/13359 13253/13253 13139/13139 +f 13253/13253 13007/13007 13005/13005 +f 13360/13360 13184/13184 13140/13140 +f 13361/13361 13140/13140 13142/13142 +f 13254/13254 13137/13137 13358/13358 +f 13254/13254 13255/13255 13009/13009 +f 13362/13362 13142/13142 13255/13255 +f 13256/13256 13020/13020 13143/13143 +f 13012/13012 13363/13363 13256/13256 +f 13364/13364 13014/13014 13257/13257 +f 13258/13258 13257/13257 13013/13013 +f 13144/13144 13365/13365 13258/13258 +f 13144/13144 13145/13145 13366/13366 +f 13014/13014 13364/13364 13148/13148 +f 13259/13259 13147/13147 13367/13367 +f 13260/13260 13020/13020 13368/13368 +f 13369/13369 13147/13147 13260/13260 +f 13370/13370 13261/13261 13149/13149 +f 13371/13371 13021/13021 13261/13261 +f 13021/13021 13372/13372 13262/13262 +f 13373/13373 13150/13150 13262/13262 +f 13374/13374 13151/13151 13263/13263 +f 13375/13375 13263/13263 13150/13150 +f 13151/13151 13374/13374 13264/13264 +f 13023/13023 13264/13264 13376/13376 +f 13152/13152 13265/13265 13377/13377 +f 13023/13023 13378/13378 13265/13265 +f 13152/13152 13377/13377 13266/13266 +f 13156/13156 13153/13153 13266/13266 +f 13149/13149 13155/13155 13370/13370 +f 13364/13364 13155/13155 13148/13148 +f 13267/13267 13029/13029 13268/13268 +f 13269/13269 13030/13030 13267/13267 +f 13268/13268 13156/13156 13266/13266 +f 13379/13379 13035/13035 13269/13269 +f 13270/13270 13380/13380 13158/13158 +f 13270/13270 13035/13035 13379/13379 +f 13107/13107 13161/13161 13381/13381 +f 13162/13162 13382/13382 13271/13271 +f 13162/13162 13179/13179 13282/13282 +f 13271/13271 13383/13383 13163/13163 +f 13273/13273 13038/13038 13272/13272 +f 13163/13163 13384/13384 13272/13272 +f 13385/13385 13039/13039 13273/13273 +f 13039/13039 13386/13386 13164/13164 +f 13176/13176 13042/13042 13165/13165 +f 13042/13042 13176/13176 13274/13274 +f 13387/13387 13167/13167 13275/13275 +f 13167/13167 13387/13387 13276/13276 +f 13388/13388 13170/13170 13168/13168 +f 13276/13276 13388/13388 13168/13168 +f 13169/13169 13389/13389 13275/13275 +f 13169/13169 13274/13274 13389/13389 +f 13170/13170 13390/13390 13277/13277 +f 13277/13277 13391/13391 13171/13171 +f 13171/13171 13391/13391 13172/13172 +f 13173/13173 13172/13172 13392/13392 +f 13174/13174 13048/13048 13393/13393 +f 13278/13278 13173/13173 13394/13394 +f 13048/13048 13278/13278 13393/13393 +f 13174/13174 13279/13279 13175/13175 +f 12927/12927 13279/13279 13212/13212 +f 13395/13395 13050/13050 13280/13280 +f 13164/13164 13386/13386 13280/13280 +f 13050/13050 13396/13396 13274/13274 +f 13177/13177 13397/13397 13281/13281 +f 13178/13178 13282/13282 13052/13052 +f 13281/13281 13398/13398 13178/13178 +f 13181/13181 13180/13180 13295/13295 +f 13181/13181 13399/13399 13283/13283 +f 13400/13400 13054/13054 13283/13283 +f 13284/13284 13054/13054 13400/13400 +f 13056/13056 13284/13284 13285/13285 +f 13183/13183 13182/13182 13401/13401 +f 13286/13286 13183/13183 13401/13401 +f 13397/13397 13177/13177 13286/13286 +f 13401/13401 13182/13182 13285/13285 +f 13402/13402 13287/13287 13184/13184 +f 13287/13287 13403/13403 13185/13185 +f 13059/13059 13185/13185 13288/13288 +f 13187/13187 13186/13186 13404/13404 +f 13288/13288 13405/13405 13186/13186 +f 13187/13187 13404/13404 13289/13289 +f 12940/12940 13289/13289 13406/13406 +f 13407/13407 13290/13290 13190/13190 +f 13290/13290 13291/13291 13191/13191 +f 13195/13195 13068/13068 13295/13295 +f 13294/13294 13293/13293 13193/13193 +f 13292/13292 13294/13294 13069/13069 +f 13295/13295 13194/13194 13408/13408 +f 13293/13293 13408/13408 13194/13194 +f 13295/13295 13180/13180 13195/13195 +f 13303/13303 13196/13196 13077/13077 +f 13409/13409 13225/13225 13196/13196 +f 13299/13299 13296/13296 13197/13197 +f 13296/13296 13410/13410 13073/13073 +f 13198/13198 13297/13297 13411/13411 +f 13410/13410 13297/13297 13073/13073 +f 13198/13198 13211/13211 13298/13298 +f 13299/13299 13075/13075 13323/13323 +f 13200/13200 13298/13298 13199/13199 +f 13412/13412 13201/13201 13300/13300 +f 13078/13078 13304/13304 13300/13300 +f 13201/13201 13413/13413 13301/13301 +f 13301/13301 13302/13302 12958/12958 +f 13302/13302 13414/13414 13202/13202 +f 13414/13414 13303/13303 13202/13202 +f 13415/13415 13203/13203 13204/13204 +f 13416/13416 13304/13304 13203/13203 +f 13417/13417 13204/13204 13205/13205 +f 13306/13306 13305/13305 13079/13079 +f 13205/13205 13305/13305 13418/13418 +f 13306/13306 13206/13206 13419/13419 +f 13206/13206 13307/13307 13419/13419 +f 13308/13308 13307/13307 13080/13080 +f 13420/13420 13308/13308 13207/13207 +f 13207/13207 13209/13209 13421/13421 +f 13309/13309 13208/13208 13422/13422 +f 13208/13208 13210/13210 13423/13423 +f 13209/13209 13309/13309 13421/13421 +f 13082/13082 13211/13211 13310/13310 +f 13424/13424 13210/13210 13310/13310 +f 13084/13084 13279/13279 13425/13425 +f 13084/13084 13425/13425 13311/13311 +f 13311/13311 13426/13426 13213/13213 +f 13427/13427 13312/13312 13213/13213 +f 13215/13215 13214/13214 13428/13428 +f 13214/13214 13312/13312 13429/13429 +f 13215/13215 13430/13430 13313/13313 +f 13216/13216 13430/13430 13314/13314 +f 13216/13216 13313/13313 13430/13430 +f 13091/13091 13314/13314 13315/13315 +f 13315/13315 13431/13431 13095/13095 +f 13316/13316 13317/13317 13217/13217 +f 13321/13321 12839/12839 13317/13317 +f 13218/13218 13432/13432 13316/13316 +f 13433/13433 13218/13218 13219/13219 +f 13433/13433 13219/13219 13222/13222 +f 13095/13095 13434/13434 13318/13318 +f 13220/13220 13318/13318 13435/13435 +f 13223/13223 13220/13220 13436/13436 +f 13319/13319 13437/13437 13221/13221 +f 12973/12973 13320/13320 13319/13319 +f 13221/13221 13438/13438 13222/13222 +f 13436/13436 13320/13320 13223/13223 +f 13098/13098 13321/13321 13439/13439 +f 13224/13224 13322/13322 13440/13440 +f 13098/13098 13439/13439 13322/13322 +f 13323/13323 13224/13224 13440/13440 +f 13441/13441 13226/13226 13225/13225 +f 13442/13442 13101/13101 13324/13324 +f 13324/13324 13100/13100 13443/13443 +f 13226/13226 13444/13444 13325/13325 +f 13100/13100 13325/13325 13443/13443 +f 13101/13101 13442/13442 13228/13228 +f 13326/13326 13327/13327 12846/12846 +f 13326/13326 13228/13228 13445/13445 +f 13327/13327 13446/13446 13229/13229 +f 13447/13447 13230/13230 13229/13229 +f 13230/13230 36337/39328 36336/39329 +f 36338/39330 13328/13328 13104/13104 +f 36335/39331 36338/39330 13104/13104 +f 13231/13231 13329/13329 13448/13448 +f 13107/13107 13381/13381 13329/13329 +f 13231/13231 13448/13448 13232/13232 +f 13233/13233 13449/13449 13332/13332 +f 13332/13332 13340/13340 13112/13112 +f 13333/13333 13450/13450 13234/13234 +f 13334/13334 13333/13333 13114/13114 +f 13335/13335 13334/13334 13116/13116 +f 13118/13118 13336/13336 13337/13337 +f 13337/13337 13451/13451 13235/13235 +f 13235/13235 13451/13451 13335/13335 +f 13452/13452 13338/13338 13236/13236 +f 13452/13452 13236/13236 13240/13240 +f 13237/13237 13453/13453 13238/13238 +f 13338/13338 13454/13454 13237/13237 +f 13455/13455 13339/13339 13238/13238 +f 13239/13239 13339/13339 13456/13456 +f 13457/13457 13336/13336 13239/13239 +f 13340/13340 13452/13452 13240/13240 +f 13342/13342 13341/13341 13122/13122 +f 13241/13241 13458/13458 13342/13342 +f 13241/13241 13242/13242 13459/13459 +f 13450/13450 13243/13243 13234/13234 +f 13460/13460 13242/13242 13343/13343 +f 13343/13343 13243/13243 13461/13461 +f 13341/13341 13345/13345 13244/13244 +f 13125/13125 13345/13345 13344/13344 +f 13344/13344 13346/13346 12994/12994 +f 13347/13347 13127/13127 13245/13245 +f 13245/13245 13346/13346 13462/13462 +f 13463/13463 13246/13246 13347/13347 +f 13247/13247 13128/13128 13348/13348 +f 13348/13348 13246/13246 13463/13463 +f 13464/13464 13349/13349 13247/13247 +f 13130/13130 13349/13349 13465/13465 +f 13130/13130 13465/13465 13350/13350 +f 13350/13350 13351/13351 13131/13131 +f 13351/13351 13352/13352 12998/12998 +f 13352/13352 13351/13351 13248/13248 +f 13353/13353 13248/13248 13466/13466 +f 13353/13353 13354/13354 13000/13000 +f 13354/13354 13357/13357 13135/13135 +f 13251/13251 13467/13467 13132/13132 +f 13355/13355 13468/13468 13249/13249 +f 13467/13467 13355/13355 13132/13132 +f 13138/13138 13134/13134 13356/13356 +f 13469/13469 13356/13356 13249/13249 +f 13251/13251 13357/13357 13470/13470 +f 13358/13358 13252/13252 13253/13253 +f 13356/13356 13359/13359 13139/13139 +f 13471/13471 13253/13253 13359/13359 +f 13360/13360 13140/13140 13361/13361 +f 13360/13360 13402/13402 13184/13184 +f 13361/13361 13142/13142 13362/13362 +f 13358/13358 13472/13472 13254/13254 +f 13255/13255 13254/13254 13473/13473 +f 13362/13362 13255/13255 13473/13473 +f 13020/13020 13256/13256 13474/13474 +f 13474/13474 13256/13256 13363/13363 +f 13364/13364 13257/13257 13475/13475 +f 13476/13476 13257/13257 13258/13258 +f 13144/13144 13366/13366 13365/13365 +f 13258/13258 13365/13365 13477/13477 +f 13366/13366 13145/13145 13478/13478 +f 13367/13367 13147/13147 13369/13369 +f 13479/13479 13259/13259 13367/13367 +f 13474/13474 13368/13368 13020/13020 +f 13368/13368 13369/13369 13260/13260 +f 13261/13261 13370/13370 13480/13480 +f 13021/13021 13371/13371 13481/13481 +f 13371/13371 13261/13261 13477/13477 +f 13372/13372 13021/13021 13481/13481 +f 13262/13262 13372/13372 13482/13482 +f 13375/13375 13150/13150 13373/13373 +f 13373/13373 13262/13262 13482/13482 +f 13263/13263 13483/13483 13374/13374 +f 13263/13263 13375/13375 13484/13484 +f 13374/13374 13485/13485 13264/13264 +f 13376/13376 13378/13378 13023/13023 +f 13485/13485 13376/13376 13264/13264 +f 13377/13377 13265/13265 13378/13378 +f 13266/13266 13377/13377 13268/13268 +f 13475/13475 13370/13370 13155/13155 +f 13475/13475 13155/13155 13364/13364 +f 13268/13268 13377/13377 13267/13267 +f 13269/13269 13267/13267 13486/13486 +f 13379/13379 13269/13269 13486/13486 +f 13270/13270 13379/13379 13380/13380 +f 13162/13162 13487/13487 13382/13382 +f 13382/13382 13488/13488 13271/13271 +f 13162/13162 13282/13282 13487/13487 +f 13383/13383 13271/13271 13489/13489 +f 13490/13490 13273/13273 13272/13272 +f 13384/13384 13491/13491 13272/13272 +f 13492/13492 13039/13039 13385/13385 +f 13273/13273 13490/13490 13385/13385 +f 13039/13039 13492/13492 13386/13386 +f 13389/13389 13387/13387 13275/13275 +f 13387/13387 13388/13388 13276/13276 +f 13170/13170 13388/13388 13493/13493 +f 13494/13494 13389/13389 13274/13274 +f 13170/13170 13495/13495 13390/13390 +f 13390/13390 13391/13391 13277/13277 +f 13391/13391 13496/13496 13172/13172 +f 13497/13497 13392/13392 13172/13172 +f 13173/13173 13392/13392 13498/13498 +f 13425/13425 13174/13174 13393/13393 +f 13394/13394 13173/13173 13498/13498 +f 13394/13394 13499/13499 13278/13278 +f 13393/13393 13278/13278 13499/13499 +f 13425/13425 13279/13279 13174/13174 +f 13395/13395 13396/13396 13050/13050 +f 13280/13280 13500/13500 13395/13395 +f 13386/13386 13501/13501 13280/13280 +f 13274/13274 13396/13396 13494/13494 +f 13397/13397 13502/13502 13281/13281 +f 13398/13398 13282/13282 13178/13178 +f 13281/13281 13502/13502 13398/13398 +f 13503/13503 13181/13181 13295/13295 +f 13399/13399 13181/13181 13504/13504 +f 13283/13283 13399/13399 13505/13505 +f 13400/13400 13283/13283 13506/13506 +f 13506/13506 13284/13284 13400/13400 +f 13285/13285 13284/13284 13507/13507 +f 13286/13286 13401/13401 13508/13508 +f 13286/13286 13509/13509 13397/13397 +f 13401/13401 13285/13285 13507/13507 +f 13402/13402 13510/13510 13287/13287 +f 13403/13403 13287/13287 13510/13510 +f 13288/13288 13185/13185 13403/13403 +f 13404/13404 13186/13186 13405/13405 +f 13405/13405 13288/13288 13403/13403 +f 13289/13289 13404/13404 13511/13511 +f 13289/13289 13512/13512 13406/13406 +f 13290/13290 13407/13407 13291/13291 +f 13294/13294 13513/13513 13293/13293 +f 13514/13514 13295/13295 13408/13408 +f 13408/13408 13293/13293 13513/13513 +f 13196/13196 13303/13303 13515/13515 +f 13515/13515 13409/13409 13196/13196 +f 13409/13409 13516/13516 13225/13225 +f 13323/13323 13296/13296 13299/13299 +f 13296/13296 13517/13517 13410/13410 +f 13411/13411 13297/13297 13424/13424 +f 13198/13198 13411/13411 13211/13211 +f 13297/13297 13410/13410 13518/13518 +f 13519/13519 13201/13201 13412/13412 +f 13520/13520 13412/13412 13300/13300 +f 13416/13416 13300/13300 13304/13304 +f 13413/13413 13201/13201 13519/13519 +f 13302/13302 13301/13301 13413/13413 +f 13302/13302 13521/13521 13414/13414 +f 13522/13522 13303/13303 13414/13414 +f 13523/13523 13203/13203 13415/13415 +f 13204/13204 13417/13417 13415/13415 +f 13523/13523 13416/13416 13203/13203 +f 13417/13417 13205/13205 13418/13418 +f 13305/13305 13306/13306 13524/13524 +f 13305/13305 13525/13525 13418/13418 +f 13524/13524 13306/13306 13419/13419 +f 13419/13419 13307/13307 13526/13526 +f 13307/13307 13308/13308 13527/13527 +f 13308/13308 13420/13420 13528/13528 +f 13421/13421 13420/13420 13207/13207 +f 13422/13422 13529/13529 13309/13309 +f 13422/13422 13208/13208 13423/13423 +f 13424/13424 13423/13423 13210/13210 +f 13530/13530 13421/13421 13309/13309 +f 13310/13310 13211/13211 13411/13411 +f 13310/13310 13411/13411 13424/13424 +f 13311/13311 13425/13425 13393/13393 +f 13426/13426 13311/13311 13499/13499 +f 13213/13213 13426/13426 13427/13427 +f 13531/13531 13312/13312 13427/13427 +f 13429/13429 13428/13428 13214/13214 +f 13532/13532 13215/13215 13428/13428 +f 13312/13312 13533/13533 13429/13429 +f 13532/13532 13430/13430 13215/13215 +f 13532/13532 13314/13314 13430/13430 +f 13315/13315 13314/13314 13532/13532 +f 13095/13095 13431/13431 13434/13434 +f 13534/13534 13431/13431 13315/13315 +f 13535/13535 13317/13317 13316/13316 +f 13317/13317 13536/13536 13321/13321 +f 13537/13537 13432/13432 13218/13218 +f 13316/13316 13432/13432 13538/13538 +f 13537/13537 13218/13218 13433/13433 +f 13438/13438 13433/13433 13222/13222 +f 13539/13539 13318/13318 13434/13434 +f 13540/13540 13220/13220 13435/13435 +f 13541/13541 13435/13435 13318/13318 +f 13540/13540 13436/13436 13220/13220 +f 13542/13542 13221/13221 13437/13437 +f 13543/13543 13437/13437 13319/13319 +f 13319/13319 13320/13320 13544/13544 +f 13221/13221 13545/13545 13438/13438 +f 13546/13546 13320/13320 13436/13436 +f 13439/13439 13321/13321 13547/13547 +f 13322/13322 13548/13548 13440/13440 +f 13322/13322 13439/13439 13549/13549 +f 13323/13323 13440/13440 13518/13518 +f 13441/13441 13550/13550 13226/13226 +f 13550/13550 13441/13441 13225/13225 +f 13324/13324 13551/13551 13442/13442 +f 13552/13552 13324/13324 13443/13443 +f 13226/13226 13550/13550 13444/13444 +f 13444/13444 13552/13552 13325/13325 +f 13552/13552 13443/13443 13325/13325 +f 13553/13553 13228/13228 13442/13442 +f 13445/13445 13327/13327 13326/13326 +f 13553/13553 13445/13445 13228/13228 +f 13327/13327 13554/13554 13446/13446 +f 13446/13446 13447/13447 13229/13229 +f 36339/39332 13230/13230 13447/13447 +f 36340/39333 36339/39332 13447/13447 +f 13230/13230 36339/39334 36337/39335 +f 13328/13328 36338/39336 36341/39337 +f 13448/13448 13329/13329 13381/13381 +f 13449/13449 13340/13340 13332/13332 +f 13555/13555 13450/13450 13333/13333 +f 13556/13556 13333/13333 13334/13334 +f 13557/13557 13334/13334 13335/13335 +f 13337/13337 13336/13336 13558/13558 +f 13337/13337 13559/13559 13451/13451 +f 13451/13451 13557/13557 13335/13335 +f 13338/13338 13452/13452 13560/13560 +f 13561/13561 13238/13238 13453/13453 +f 13453/13453 13237/13237 13562/13562 +f 13454/13454 13338/13338 13560/13560 +f 13454/13454 13562/13562 13237/13237 +f 13455/13455 13456/13456 13339/13339 +f 13563/13563 13455/13455 13238/13238 +f 13239/13239 13456/13456 13457/13457 +f 13558/13558 13336/13336 13457/13457 +f 13452/13452 13340/13340 13564/13564 +f 13565/13565 13341/13341 13342/13342 +f 13459/13459 13458/13458 13241/13241 +f 13342/13342 13458/13458 13565/13565 +f 13459/13459 13242/13242 13460/13460 +f 13243/13243 13450/13450 13461/13461 +f 13460/13460 13343/13343 13566/13566 +f 13461/13461 13566/13566 13343/13343 +f 13565/13565 13345/13345 13341/13341 +f 13345/13345 13567/13567 13344/13344 +f 13568/13568 13346/13346 13344/13344 +f 13245/13245 13462/13462 13347/13347 +f 13346/13346 13568/13568 13462/13462 +f 13347/13347 13569/13569 13463/13463 +f 13247/13247 13348/13348 13464/13464 +f 13348/13348 13463/13463 13464/13464 +f 13349/13349 13464/13464 13570/13570 +f 13465/13465 13349/13349 13570/13570 +f 13465/13465 13571/13571 13350/13350 +f 13351/13351 13350/13350 13572/13572 +f 13248/13248 13351/13351 13573/13573 +f 13574/13574 13353/13353 13466/13466 +f 13466/13466 13248/13248 13573/13573 +f 13353/13353 13574/13574 13354/13354 +f 13354/13354 13470/13470 13357/13357 +f 13251/13251 13470/13470 13467/13467 +f 13355/13355 13467/13467 13468/13468 +f 13249/13249 13468/13468 13469/13469 +f 13356/13356 13469/13469 13359/13359 +f 13358/13358 13253/13253 13575/13575 +f 13575/13575 13253/13253 13471/13471 +f 13471/13471 13359/13359 13576/13576 +f 13577/13577 13360/13360 13361/13361 +f 13402/13402 13360/13360 13577/13577 +f 13578/13578 13361/13361 13362/13362 +f 13575/13575 13472/13472 13358/13358 +f 13472/13472 13473/13473 13254/13254 +f 13579/13579 13362/13362 13473/13473 +f 13363/13363 13580/13580 13474/13474 +f 13475/13475 13257/13257 13476/13476 +f 13477/13477 13476/13476 13258/13258 +f 13581/13581 13365/13365 13366/13366 +f 13365/13365 13582/13582 13477/13477 +f 13478/13478 13145/13145 13583/13583 +f 13478/13478 13584/13584 13366/13366 +f 13369/13369 13585/13585 13367/13367 +f 13585/13585 13479/13479 13367/13367 +f 13586/13586 13368/13368 13474/13474 +f 13369/13369 13368/13368 13586/13586 +f 13477/13477 13261/13261 13480/13480 +f 13370/13370 13476/13476 13480/13480 +f 13371/13371 13587/13587 13481/13481 +f 13587/13587 13371/13371 13477/13477 +f 13588/13588 13372/13372 13481/13481 +f 13482/13482 13372/13372 13589/13589 +f 13373/13373 13484/13484 13375/13375 +f 13484/13484 13373/13373 13482/13482 +f 13484/13484 13483/13483 13263/13263 +f 13590/13590 13374/13374 13483/13483 +f 13485/13485 13374/13374 13590/13590 +f 13376/13376 13591/13591 13378/13378 +f 13267/13267 13377/13377 13378/13378 +f 13476/13476 13370/13370 13475/13475 +f 13486/13486 13267/13267 13592/13592 +f 13486/13486 13593/13593 13379/13379 +f 13379/13379 13593/13593 13380/13380 +f 13382/13382 13487/13487 13594/13594 +f 13489/13489 13271/13271 13488/13488 +f 13382/13382 13594/13594 13488/13488 +f 13282/13282 13398/13398 13487/13487 +f 13595/13595 13383/13383 13489/13489 +f 13272/13272 13491/13491 13490/13490 +f 13384/13384 13596/13596 13491/13491 +f 13385/13385 13597/13597 13492/13492 +f 13385/13385 13490/13490 13491/13491 +f 13598/13598 13386/13386 13492/13492 +f 13389/13389 13599/13599 13387/13387 +f 13600/13600 13388/13388 13387/13387 +f 13495/13495 13170/13170 13493/13493 +f 13388/13388 13600/13600 13493/13493 +f 13494/13494 13599/13599 13389/13389 +f 13493/13493 13390/13390 13495/13495 +f 13493/13493 13391/13391 13390/13390 +f 13601/13601 13496/13496 13391/13391 +f 13497/13497 13172/13172 13496/13496 +f 13497/13497 13602/13602 13392/13392 +f 13603/13603 13498/13498 13392/13392 +f 13604/13604 13394/13394 13498/13498 +f 13394/13394 13605/13605 13499/13499 +f 13393/13393 13499/13499 13311/13311 +f 13606/13606 13396/13396 13395/13395 +f 13395/13395 13500/13500 13607/13607 +f 13280/13280 13501/13501 13500/13500 +f 13608/13608 13501/13501 13386/13386 +f 13494/13494 13396/13396 13606/13606 +f 13397/13397 13509/13509 13502/13502 +f 13502/13502 13609/13609 13398/13398 +f 13295/13295 13514/13514 13503/13503 +f 13503/13503 13504/13504 13181/13181 +f 13399/13399 13504/13504 13610/13610 +f 13611/13611 13283/13283 13505/13505 +f 13505/13505 13399/13399 13612/13612 +f 13613/13613 13506/13506 13283/13283 +f 13284/13284 13506/13506 13508/13508 +f 13507/13507 13284/13284 13508/13508 +f 13286/13286 13508/13508 13614/13614 +f 13508/13508 13401/13401 13507/13507 +f 13286/13286 13614/13614 13509/13509 +f 13510/13510 13402/13402 13577/13577 +f 13510/13510 13615/13615 13403/13403 +f 13405/13405 13616/13616 13404/13404 +f 13405/13405 13403/13403 13616/13616 +f 13511/13511 13512/13512 13289/13289 +f 13404/13404 13617/13617 13511/13511 +f 13406/13406 13512/13512 13618/13618 +f 13408/13408 13619/13619 13514/13514 +f 13619/13619 13408/13408 13513/13513 +f 13303/13303 13522/13522 13515/13515 +f 13409/13409 13515/13515 13620/13620 +f 13620/13620 13516/13516 13409/13409 +f 13621/13621 13225/13225 13516/13516 +f 13517/13517 13296/13296 13323/13323 +f 13410/13410 13517/13517 13323/13323 +f 13622/13622 13424/13424 13297/13297 +f 13518/13518 13622/13622 13297/13297 +f 13518/13518 13410/13410 13323/13323 +f 13412/13412 13413/13413 13519/13519 +f 13623/13623 13412/13412 13520/13520 +f 13416/13416 13520/13520 13300/13300 +f 13521/13521 13302/13302 13413/13413 +f 13521/13521 13624/13624 13414/13414 +f 13522/13522 13414/13414 13625/13625 +f 13415/13415 13418/13418 13523/13523 +f 13415/13415 13417/13417 13418/13418 +f 13416/13416 13523/13523 13626/13626 +f 13627/13627 13305/13305 13524/13524 +f 13525/13525 13305/13305 13627/13627 +f 13418/13418 13525/13525 13628/13628 +f 13629/13629 13524/13524 13419/13419 +f 13527/13527 13526/13526 13307/13307 +f 13419/13419 13526/13526 13630/13630 +f 13308/13308 13631/13631 13527/13527 +f 13420/13420 13632/13632 13528/13528 +f 13528/13528 13631/13631 13308/13308 +f 13632/13632 13420/13420 13421/13421 +f 13633/13633 13529/13529 13422/13422 +f 13634/13634 13309/13309 13529/13529 +f 13423/13423 13635/13635 13422/13422 +f 13423/13423 13424/13424 13635/13635 +f 13636/13636 13421/13421 13530/13530 +f 13530/13530 13309/13309 13634/13634 +f 13605/13605 13426/13426 13499/13499 +f 13605/13605 13427/13427 13426/13426 +f 13531/13531 13637/13637 13312/13312 +f 13427/13427 13638/13638 13531/13531 +f 13533/13533 13428/13428 13429/13429 +f 13428/13428 13534/13534 13532/13532 +f 13637/13637 13533/13533 13312/13312 +f 13532/13532 13534/13534 13315/13315 +f 13434/13434 13431/13431 13639/13639 +f 13534/13534 13639/13639 13431/13431 +f 13536/13536 13317/13317 13535/13535 +f 13316/13316 13538/13538 13535/13535 +f 13536/13536 13547/13547 13321/13321 +f 13640/13640 13432/13432 13537/13537 +f 13641/13641 13538/13538 13432/13432 +f 13433/13433 13438/13438 13537/13537 +f 13639/13639 13539/13539 13434/13434 +f 13318/13318 13539/13539 13541/13541 +f 13435/13435 13642/13642 13540/13540 +f 13541/13541 13643/13643 13435/13435 +f 13436/13436 13540/13540 13644/13644 +f 13221/13221 13542/13542 13545/13545 +f 13645/13645 13542/13542 13437/13437 +f 13543/13543 13646/13646 13437/13437 +f 13544/13544 13543/13543 13319/13319 +f 13546/13546 13544/13544 13320/13320 +f 13438/13438 13545/13545 13647/13647 +f 13648/13648 13546/13546 13436/13436 +f 13547/13547 13649/13649 13439/13439 +f 13322/13322 13549/13549 13548/13548 +f 13548/13548 13650/13650 13440/13440 +f 13439/13439 13649/13649 13549/13549 +f 13440/13440 13650/13650 13518/13518 +f 13550/13550 13225/13225 13621/13621 +f 13651/13651 13442/13442 13551/13551 +f 13551/13551 13324/13324 13652/13652 +f 13652/13652 13324/13324 13552/13552 +f 13444/13444 13550/13550 13621/13621 +f 13444/13444 13653/13653 13552/13552 +f 13553/13553 13442/13442 13651/13651 +f 13327/13327 13445/13445 13654/13654 +f 13553/13553 13654/13654 13445/13445 +f 36342/39338 13446/13446 13554/13554 +f 36343/39339 36342/39338 13554/13554 +f 13655/13655 13554/13554 13327/13327 +f 36340/39340 13447/13447 13446/13446 +f 36342/39341 36340/39340 13446/13446 +f 13655/13655 36344/39342 36345/39343 +f 13449/13449 13564/13564 13340/13340 +f 13555/13555 13333/13333 13556/13556 +f 13656/13656 13450/13450 13555/13555 +f 13557/13557 13556/13556 13334/13334 +f 13337/13337 13558/13558 13559/13559 +f 13451/13451 13559/13559 13557/13557 +f 13560/13560 13452/13452 13564/13564 +f 13657/13657 13561/13561 13453/13453 +f 13561/13561 13658/13658 13238/13238 +f 13562/13562 13657/13657 13453/13453 +f 13659/13659 13454/13454 13560/13560 +f 13454/13454 13659/13659 13562/13562 +f 13660/13660 13456/13456 13455/13455 +f 13455/13455 13563/13563 13661/13661 +f 13563/13563 13238/13238 13658/13658 +f 13456/13456 13558/13558 13457/13457 +f 13662/13662 13458/13458 13459/13459 +f 13458/13458 13662/13662 13565/13565 +f 13459/13459 13460/13460 13663/13663 +f 13566/13566 13461/13461 13450/13450 +f 13664/13664 13460/13460 13566/13566 +f 13345/13345 13565/13565 13567/13567 +f 13344/13344 13567/13567 13568/13568 +f 13347/13347 13462/13462 13665/13665 +f 13462/13462 13568/13568 13666/13666 +f 13569/13569 13667/13667 13463/13463 +f 13668/13668 13569/13569 13347/13347 +f 13463/13463 13667/13667 13464/13464 +f 13570/13570 13464/13464 13669/13669 +f 13570/13570 13670/13670 13465/13465 +f 13572/13572 13350/13350 13571/13571 +f 13571/13571 13465/13465 13670/13670 +f 13572/13572 13573/13573 13351/13351 +f 13671/13671 13574/13574 13466/13466 +f 13466/13466 13573/13573 13672/13672 +f 13574/13574 13470/13470 13354/13354 +f 13470/13470 13673/13673 13467/13467 +f 13467/13467 13674/13674 13468/13468 +f 13468/13468 13675/13675 13469/13469 +f 13576/13576 13359/13359 13469/13469 +f 13575/13575 13471/13471 13676/13676 +f 13471/13471 13576/13576 13677/13677 +f 13577/13577 13361/13361 13578/13578 +f 13579/13579 13578/13578 13362/13362 +f 13472/13472 13575/13575 13678/13678 +f 13678/13678 13473/13473 13472/13472 +f 13678/13678 13579/13579 13473/13473 +f 13580/13580 13586/13586 13474/13474 +f 13480/13480 13476/13476 13477/13477 +f 13366/13366 13584/13584 13581/13581 +f 13365/13365 13581/13581 13582/13582 +f 13587/13587 13477/13477 13582/13582 +f 13478/13478 13583/13583 13679/13679 +f 13680/13680 13584/13584 13478/13478 +f 13585/13585 13369/13369 13681/13681 +f 13479/13479 13585/13585 13682/13682 +f 13586/13586 13681/13681 13369/13369 +f 13587/13587 13588/13588 13481/13481 +f 13372/13372 13588/13588 13683/13683 +f 13589/13589 13372/13372 13683/13683 +f 13484/13484 13482/13482 13589/13589 +f 13484/13484 13684/13684 13483/13483 +f 13590/13590 13483/13483 13685/13685 +f 13686/13686 13378/13378 13591/13591 +f 13267/13267 13378/13378 13592/13592 +f 13593/13593 13486/13486 13592/13592 +f 13593/13593 13591/13591 13380/13380 +f 13609/13609 13594/13594 13487/13487 +f 13687/13687 13489/13489 13488/13488 +f 13687/13687 13488/13488 13594/13594 +f 13609/13609 13487/13487 13398/13398 +f 13688/13688 13595/13595 13489/13489 +f 13596/13596 13689/13689 13491/13491 +f 13690/13690 13597/13597 13385/13385 +f 13492/13492 13597/13597 13598/13598 +f 13385/13385 13491/13491 13689/13689 +f 13598/13598 13691/13691 13386/13386 +f 13599/13599 13600/13600 13387/13387 +f 13692/13692 13493/13493 13600/13600 +f 13599/13599 13494/13494 13692/13692 +f 13493/13493 13601/13601 13391/13391 +f 13496/13496 13601/13601 13693/13693 +f 13496/13496 13694/13694 13497/13497 +f 13602/13602 13603/13603 13392/13392 +f 13602/13602 13497/13497 13695/13695 +f 13603/13603 13696/13696 13498/13498 +f 13697/13697 13394/13394 13604/13604 +f 13498/13498 13698/13698 13604/13604 +f 13394/13394 13697/13697 13605/13605 +f 13606/13606 13395/13395 13607/13607 +f 13500/13500 13501/13501 13607/13607 +f 13386/13386 13691/13691 13608/13608 +f 13699/13699 13501/13501 13608/13608 +f 13607/13607 13494/13494 13606/13606 +f 13609/13609 13502/13502 13509/13509 +f 13514/13514 13700/13700 13503/13503 +f 13503/13503 13701/13701 13504/13504 +f 13504/13504 13702/13702 13610/13610 +f 13399/13399 13610/13610 13612/13612 +f 13283/13283 13611/13611 13613/13613 +f 13703/13703 13611/13611 13505/13505 +f 13612/13612 13703/13703 13505/13505 +f 13704/13704 13506/13506 13613/13613 +f 13508/13508 13506/13506 13705/13705 +f 13508/13508 13706/13706 13614/13614 +f 13707/13707 13509/13509 13614/13614 +f 13615/13615 13510/13510 13577/13577 +f 13615/13615 13616/13616 13403/13403 +f 13616/13616 13617/13617 13404/13404 +f 13511/13511 13708/13708 13512/13512 +f 13708/13708 13511/13511 13617/13617 +f 13406/13406 13618/13618 13709/13709 +f 13710/13710 13618/13618 13512/13512 +f 13514/13514 13619/13619 13711/13711 +f 13513/13513 13712/13712 13619/13619 +f 13522/13522 13713/13713 13515/13515 +f 13620/13620 13515/13515 13714/13714 +f 13714/13714 13516/13516 13620/13620 +f 13516/13516 13715/13715 13621/13621 +f 13635/13635 13424/13424 13622/13622 +f 13650/13650 13622/13622 13518/13518 +f 13413/13413 13412/13412 13716/13716 +f 13412/13412 13623/13623 13716/13716 +f 13623/13623 13520/13520 13626/13626 +f 13626/13626 13520/13520 13416/13416 +f 13521/13521 13413/13413 13716/13716 +f 13521/13521 13717/13717 13624/13624 +f 13625/13625 13414/13414 13624/13624 +f 13713/13713 13522/13522 13625/13625 +f 13418/13418 13718/13718 13523/13523 +f 13523/13523 13719/13719 13626/13626 +f 36346/39344 13627/13627 13524/13524 +f 36347/39345 36346/39344 13524/13524 +f 36348/39346 13525/13525 13627/13627 +f 36349/39347 36348/39346 13627/13627 +f 36350/39348 13628/13628 13525/13525 +f 36348/39349 36350/39348 13525/13525 +f 13718/13718 13418/13418 13628/13628 +f 36351/39350 13524/13524 13629/13629 +f 36352/39351 36351/39350 13629/13629 +f 13630/13630 13629/13629 13419/13419 +f 13720/13720 13526/13526 13527/13527 +f 13630/13630 13526/13526 13720/13720 +f 13721/13721 13527/13527 13631/13631 +f 13528/13528 13632/13632 13722/13722 +f 13631/13631 13528/13528 13722/13722 +f 13421/13421 13636/13636 13632/13632 +f 13633/13633 13422/13422 13723/13723 +f 13724/13724 13529/13529 13633/13633 +f 13529/13529 13725/13725 13634/13634 +f 13635/13635 13723/13723 13422/13422 +f 13636/13636 13530/13530 13726/13726 +f 13530/13530 13634/13634 13727/13727 +f 13605/13605 13728/13728 13427/13427 +f 13637/13637 13531/13531 13729/13729 +f 13427/13427 13730/13730 13638/13638 +f 13531/13531 13638/13638 13731/13731 +f 13428/13428 13533/13533 13534/13534 +f 13533/13533 13637/13637 13732/13732 +f 13639/13639 13534/13534 13533/13533 +f 13733/13733 13536/13536 13535/13535 +f 13535/13535 13538/13538 13734/13734 +f 13735/13735 13547/13547 13536/13536 +f 13736/13736 13640/13640 13537/13537 +f 13640/13640 13641/13641 13432/13432 +f 13737/13737 13538/13538 13641/13641 +f 13438/13438 13647/13647 13537/13537 +f 13639/13639 13732/13732 13539/13539 +f 13539/13539 13738/13738 13541/13541 +f 13540/13540 13642/13642 13644/13644 +f 13643/13643 13642/13642 13435/13435 +f 13643/13643 13541/13541 13738/13738 +f 13436/13436 13644/13644 13739/13739 +f 13545/13545 13542/13542 13740/13740 +f 13645/13645 13741/13741 13542/13542 +f 13437/13437 13742/13742 13645/13645 +f 13743/13743 13646/13646 13543/13543 +f 13646/13646 13742/13742 13437/13437 +f 13543/13543 13544/13544 13744/13744 +f 13546/13546 13744/13744 13544/13544 +f 13545/13545 13740/13740 13647/13647 +f 13546/13546 13648/13648 13744/13744 +f 13648/13648 13436/13436 13739/13739 +f 13745/13745 13649/13649 13547/13547 +f 13548/13548 13549/13549 13723/13723 +f 13548/13548 13635/13635 13650/13650 +f 13549/13549 13649/13649 13723/13723 +f 13651/13651 13551/13551 13746/13746 +f 13746/13746 13551/13551 13652/13652 +f 13652/13652 13552/13552 13653/13653 +f 13444/13444 13621/13621 13747/13747 +f 13748/13748 13653/13653 13444/13444 +f 13655/13655 13553/13553 13651/13651 +f 13327/13327 13654/13654 13655/13655 +f 13654/13654 13553/13553 13655/13655 +f 36343/39352 13554/13554 13655/13655 +f 36345/39353 36343/39352 13655/13655 +f 13655/13655 36353/39354 36344/39355 +f 13564/13564 13449/13449 13560/13560 +f 13555/13555 13556/13556 13749/13749 +f 13656/13656 13566/13566 13450/13450 +f 13555/13555 13749/13749 13656/13656 +f 13556/13556 13557/13557 13749/13749 +f 13559/13559 13558/13558 13750/13750 +f 13557/13557 13559/13559 13751/13751 +f 13561/13561 13657/13657 13658/13658 +f 13750/13750 13456/13456 13660/13660 +f 13661/13661 13660/13660 13455/13455 +f 13752/13752 13661/13661 13563/13563 +f 13456/13456 13750/13750 13558/13558 +f 13459/13459 13753/13753 13662/13662 +f 13753/13753 13565/13565 13662/13662 +f 13460/13460 13754/13754 13663/13663 +f 13663/13663 13753/13753 13459/13459 +f 13755/13755 13460/13460 13664/13664 +f 13566/13566 13756/13756 13664/13664 +f 13567/13567 13565/13565 13753/13753 +f 13567/13567 13757/13757 13568/13568 +f 13347/13347 13665/13665 13668/13668 +f 13462/13462 13758/13758 13665/13665 +f 13759/13759 13666/13666 13568/13568 +f 13666/13666 13758/13758 13462/13462 +f 13760/13760 13667/13667 13569/13569 +f 13569/13569 13668/13668 13761/13761 +f 13762/13762 13464/13464 13667/13667 +f 13464/13464 13763/13763 13669/13669 +f 13764/13764 13570/13570 13669/13669 +f 13670/13670 13570/13570 13764/13764 +f 13571/13571 13765/13765 13572/13572 +f 13766/13766 13571/13571 13670/13670 +f 13573/13573 13572/13572 13767/13767 +f 13673/13673 13574/13574 13671/13671 +f 13466/13466 13672/13672 13671/13671 +f 13767/13767 13672/13672 13573/13573 +f 13673/13673 13470/13470 13574/13574 +f 13673/13673 13674/13674 13467/13467 +f 13674/13674 13675/13675 13468/13468 +f 13575/13575 13676/13676 13678/13678 +f 13677/13677 13676/13676 13471/13471 +f 13578/13578 13615/13615 13577/13577 +f 13578/13578 13579/13579 13768/13768 +f 13769/13769 13579/13579 13678/13678 +f 13586/13586 13580/13580 13681/13681 +f 13581/13581 13584/13584 13770/13770 +f 13582/13582 13581/13581 13771/13771 +f 13582/13582 13771/13771 13587/13587 +f 13679/13679 13680/13680 13478/13478 +f 13584/13584 13680/13680 13772/13772 +f 13681/13681 13682/13682 13585/13585 +f 13771/13771 13588/13588 13587/13587 +f 13683/13683 13588/13588 13773/13773 +f 13683/13683 13774/13774 13589/13589 +f 13589/13589 13774/13774 13484/13484 +f 13484/13484 13774/13774 13684/13684 +f 13483/13483 13684/13684 13685/13685 +f 13378/13378 13686/13686 13592/13592 +f 13593/13593 13686/13686 13591/13591 +f 13686/13686 13593/13593 13592/13592 +f 13594/13594 13609/13609 13707/13707 +f 13489/13489 13687/13687 13688/13688 +f 13687/13687 13594/13594 13707/13707 +f 13595/13595 13688/13688 13707/13707 +f 13775/13775 13689/13689 13596/13596 +f 13597/13597 13690/13690 13776/13776 +f 13689/13689 13690/13690 13385/13385 +f 13597/13597 13777/13777 13598/13598 +f 13777/13777 13691/13691 13598/13598 +f 13600/13600 13599/13599 13692/13692 +f 13692/13692 13778/13778 13493/13493 +f 13607/13607 13692/13692 13494/13494 +f 13493/13493 13778/13778 13601/13601 +f 13778/13778 13693/13693 13601/13601 +f 13694/13694 13496/13496 13693/13693 +f 13497/13497 13694/13694 13695/13695 +f 13603/13603 13602/13602 13779/13779 +f 13695/13695 13780/13780 13602/13602 +f 13603/13603 13781/13781 13696/13696 +f 13498/13498 13696/13696 13698/13698 +f 13782/13782 13697/13697 13604/13604 +f 13604/13604 13698/13698 13783/13783 +f 13605/13605 13697/13697 13728/13728 +f 13607/13607 13501/13501 13784/13784 +f 13785/13785 13608/13608 13691/13691 +f 13699/13699 13608/13608 13786/13786 +f 13787/13787 13501/13501 13699/13699 +f 13609/13609 13509/13509 13707/13707 +f 13514/13514 13711/13711 13700/13700 +f 13503/13503 13700/13700 13701/13701 +f 13701/13701 13702/13702 13504/13504 +f 13610/13610 13702/13702 13788/13788 +f 13610/13610 13788/13788 13612/13612 +f 13613/13613 13611/13611 13789/13789 +f 13703/13703 13790/13790 13611/13611 +f 13791/13791 13703/13703 13612/13612 +f 13705/13705 13506/13506 13704/13704 +f 13613/13613 13792/13792 13704/13704 +f 13508/13508 13705/13705 13793/13793 +f 13706/13706 13508/13508 13794/13794 +f 13614/13614 13706/13706 13795/13795 +f 13614/13614 13796/13796 13707/13707 +f 13615/13615 13797/13797 13616/13616 +f 13798/13798 13617/13617 13616/13616 +f 13708/13708 13799/13799 13512/13512 +f 13617/13617 13798/13798 13708/13708 +f 13709/13709 13618/13618 13800/13800 +f 13710/13710 13801/13801 13618/13618 +f 13802/13802 13710/13710 13512/13512 +f 13619/13619 13803/13803 13711/13711 +f 13712/13712 13804/13804 13619/13619 +f 13713/13713 13714/13714 13515/13515 +f 13516/13516 13714/13714 13715/13715 +f 13621/13621 13715/13715 13747/13747 +f 13650/13650 13635/13635 13622/13622 +f 13623/13623 13805/13805 13716/13716 +f 13626/13626 13806/13806 13623/13623 +f 13805/13805 13521/13521 13716/13716 +f 13624/13624 13717/13717 13713/13713 +f 36354/39356 13717/13717 13521/13521 +f 36355/39357 36354/39356 13521/13521 +f 13624/13624 13713/13713 13625/13625 +f 13719/13719 13523/13523 13718/13718 +f 13719/13719 13806/13806 13626/13626 +f 13524/13524 36356/39358 36347/39359 +f 13627/13627 36346/39360 36357/39361 +f 13627/13627 36358/39362 36349/39363 +f 13628/13628 36350/39364 36359/39365 +f 36360/39366 13718/13718 13628/13628 +f 36359/39367 36360/39366 13628/13628 +f 13524/13524 36351/39368 36356/39369 +f 13629/13629 36361/39370 36352/39371 +f 36361/39372 13629/13629 13630/13630 +f 36362/39373 36361/39372 13630/13630 +f 13720/13720 13527/13527 13807/13807 +f 36363/39374 13630/13630 13720/13720 +f 36364/39375 36363/39374 13720/13720 +f 13631/13631 13808/13808 13721/13721 +f 13721/13721 13807/13807 13527/13527 +f 13722/13722 13632/13632 13809/13809 +f 13808/13808 13631/13631 13722/13722 +f 13810/13810 13632/13632 13636/13636 +f 13723/13723 13811/13811 13633/13633 +f 13724/13724 13725/13725 13529/13529 +f 13633/13633 13812/13812 13724/13724 +f 13725/13725 13727/13727 13634/13634 +f 13723/13723 13635/13635 13548/13548 +f 13636/13636 13726/13726 13813/13813 +f 13530/13530 13727/13727 13726/13726 +f 13728/13728 13730/13730 13427/13427 +f 13729/13729 13531/13531 13814/13814 +f 13637/13637 13729/13729 13815/13815 +f 13638/13638 13730/13730 13816/13816 +f 13731/13731 13817/13817 13531/13531 +f 13731/13731 13638/13638 13816/13816 +f 13815/13815 13732/13732 13637/13637 +f 13639/13639 13533/13533 13732/13732 +f 13818/13818 13536/13536 13733/13733 +f 13733/13733 13535/13535 13818/13818 +f 13538/13538 13737/13737 13734/13734 +f 13535/13535 13734/13734 13818/13818 +f 13547/13547 13735/13735 13745/13745 +f 13819/13819 13735/13735 13536/13536 +f 13820/13820 13640/13640 13736/13736 +f 13647/13647 13736/13736 13537/13537 +f 13821/13821 13641/13641 13640/13640 +f 13641/13641 13821/13821 13737/13737 +f 13738/13738 13539/13539 13732/13732 +f 13642/13642 13822/13822 13644/13644 +f 13642/13642 13643/13643 13822/13822 +f 13738/13738 13729/13729 13643/13643 +f 13644/13644 13823/13823 13739/13739 +f 13740/13740 13542/13542 13741/13741 +f 13824/13824 13741/13741 13645/13645 +f 13645/13645 13742/13742 13825/13825 +f 13743/13743 13826/13826 13646/13646 +f 13543/13543 13827/13827 13743/13743 +f 13646/13646 13826/13826 13742/13742 +f 13827/13827 13543/13543 13744/13744 +f 13740/13740 13736/13736 13647/13647 +f 13828/13828 13744/13744 13648/13648 +f 13739/13739 13829/13829 13648/13648 +f 13830/13830 13649/13649 13745/13745 +f 13723/13723 13649/13649 13830/13830 +f 36365/39376 13651/13651 13746/13746 +f 36366/39377 36365/39376 13746/13746 +f 36367/39378 13746/13746 13652/13652 +f 36368/39379 36367/39378 13652/13652 +f 13653/13653 13831/13831 13652/13652 +f 13832/13832 13444/13444 13747/13747 +f 36369/39380 13653/13653 13748/13748 +f 36370/39381 36369/39380 13748/13748 +f 13748/13748 13444/13444 13832/13832 +f 36371/39382 13655/13655 13651/13651 +f 36365/39383 36371/39382 13651/13651 +f 13655/13655 36371/39384 36353/39385 +f 13566/13566 13656/13656 13756/13756 +f 13656/13656 13749/13749 13833/13833 +f 13557/13557 13833/13833 13749/13749 +f 13750/13750 13751/13751 13559/13559 +f 13751/13751 13833/13833 13557/13557 +f 13834/13834 13750/13750 13660/13660 +f 13661/13661 13835/13835 13660/13660 +f 13752/13752 13836/13836 13661/13661 +f 13753/13753 13663/13663 13754/13754 +f 13837/13837 13754/13754 13460/13460 +f 13837/13837 13460/13460 13755/13755 +f 13838/13838 13755/13755 13664/13664 +f 13838/13838 13664/13664 13756/13756 +f 13753/13753 13839/13839 13567/13567 +f 13567/13567 13839/13839 13757/13757 +f 13568/13568 13757/13757 13759/13759 +f 13840/13840 13668/13668 13665/13665 +f 13758/13758 13840/13840 13665/13665 +f 13759/13759 13841/13841 13666/13666 +f 13666/13666 13841/13841 13758/13758 +f 13762/13762 13667/13667 13760/13760 +f 13569/13569 13842/13842 13760/13760 +f 13569/13569 13761/13761 13842/13842 +f 13668/13668 13843/13843 13761/13761 +f 13763/13763 13464/13464 13762/13762 +f 13669/13669 13763/13763 13844/13844 +f 13669/13669 13845/13845 13764/13764 +f 13766/13766 13670/13670 13764/13764 +f 13571/13571 13766/13766 13765/13765 +f 13572/13572 13765/13765 13846/13846 +f 13846/13846 13767/13767 13572/13572 +f 13673/13673 13671/13671 13847/13847 +f 13671/13671 13672/13672 13847/13847 +f 13672/13672 13767/13767 13847/13847 +f 13848/13848 13674/13674 13673/13673 +f 13675/13675 13674/13674 13848/13848 +f 13678/13678 13676/13676 13769/13769 +f 13676/13676 13677/13677 13769/13769 +f 13578/13578 13849/13849 13615/13615 +f 13579/13579 13850/13850 13768/13768 +f 13849/13849 13578/13578 13768/13768 +f 13579/13579 13769/13769 13851/13851 +f 13584/13584 13772/13772 13770/13770 +f 13770/13770 13852/13852 13581/13581 +f 13852/13852 13771/13771 13581/13581 +f 13853/13853 13680/13680 13679/13679 +f 13854/13854 13772/13772 13680/13680 +f 13773/13773 13588/13588 13771/13771 +f 13774/13774 13683/13683 13855/13855 +f 13684/13684 13774/13774 13855/13855 +f 13855/13855 13685/13685 13684/13684 +f 13707/13707 13688/13688 13687/13687 +f 13707/13707 13856/13856 13595/13595 +f 13689/13689 13775/13775 13857/13857 +f 13776/13776 13858/13858 13597/13597 +f 13857/13857 13776/13776 13690/13690 +f 13690/13690 13689/13689 13857/13857 +f 13777/13777 13597/13597 13859/13859 +f 13785/13785 13691/13691 13777/13777 +f 13778/13778 13692/13692 13860/13860 +f 13607/13607 13784/13784 13692/13692 +f 13778/13778 13861/13861 13693/13693 +f 13861/13861 13694/13694 13693/13693 +f 13695/13695 13694/13694 13862/13862 +f 13602/13602 13780/13780 13779/13779 +f 13863/13863 13603/13603 13779/13779 +f 13780/13780 13695/13695 13864/13864 +f 13781/13781 13603/13603 13863/13863 +f 13865/13865 13696/13696 13781/13781 +f 13696/13696 13866/13866 13698/13698 +f 13728/13728 13697/13697 13782/13782 +f 13782/13782 13604/13604 13783/13783 +f 13783/13783 13698/13698 13867/13867 +f 13501/13501 13868/13868 13784/13784 +f 13786/13786 13608/13608 13785/13785 +f 13786/13786 13869/13869 13699/13699 +f 13699/13699 13870/13870 13787/13787 +f 13787/13787 13868/13868 13501/13501 +f 13700/13700 13711/13711 13701/13701 +f 13711/13711 13702/13702 13701/13701 +f 13803/13803 13788/13788 13702/13702 +f 13788/13788 13791/13791 13612/13612 +f 13789/13789 13611/13611 13790/13790 +f 13613/13613 13789/13789 13792/13792 +f 13703/13703 13791/13791 13790/13790 +f 13704/13704 13871/13871 13705/13705 +f 13704/13704 13792/13792 13872/13872 +f 13793/13793 13794/13794 13508/13508 +f 13705/13705 13871/13871 13793/13793 +f 13706/13706 13794/13794 13873/13873 +f 13795/13795 13796/13796 13614/13614 +f 13795/13795 13706/13706 13873/13873 +f 13796/13796 13874/13874 13707/13707 +f 13849/13849 13797/13797 13615/13615 +f 13616/13616 13797/13797 13798/13798 +f 13512/13512 13799/13799 13802/13802 +f 13708/13708 13875/13875 13799/13799 +f 13798/13798 13875/13875 13708/13708 +f 13801/13801 13800/13800 13618/13618 +f 13710/13710 13802/13802 13801/13801 +f 13804/13804 13803/13803 13619/13619 +f 13803/13803 13702/13702 13711/13711 +f 13714/13714 13713/13713 13876/13876 +f 13714/13714 13876/13876 13715/13715 +f 13747/13747 13715/13715 13877/13877 +f 13805/13805 13623/13623 13806/13806 +f 36372/39386 13521/13521 13805/13805 +f 36373/39387 36372/39386 13805/13805 +f 13878/13878 13713/13713 13717/13717 +f 13521/13521 36372/39388 36355/39389 +f 36374/39390 13878/13878 13717/13717 +f 36354/39391 36374/39390 13717/13717 +f 36375/39392 13719/13719 13718/13718 +f 36360/39393 36375/39392 13718/13718 +f 36376/39394 13806/13806 13719/13719 +f 36375/39395 36376/39394 13719/13719 +f 13627/13627 36357/39396 36358/39397 +f 13630/13630 36363/39398 36362/39399 +f 36364/39400 13720/13720 13807/13807 +f 36377/39401 36364/39400 13807/13807 +f 13721/13721 13808/13808 13879/13879 +f 36378/39402 13807/13807 13721/13721 +f 36379/39403 36378/39402 13721/13721 +f 13809/13809 13632/13632 13880/13880 +f 13722/13722 13809/13809 13879/13879 +f 13879/13879 13808/13808 13722/13722 +f 13881/13881 13632/13632 13810/13810 +f 13636/13636 13813/13813 13810/13810 +f 13811/13811 13723/13723 13830/13830 +f 13811/13811 13812/13812 13633/13633 +f 13724/13724 13727/13727 13725/13725 +f 13726/13726 13724/13724 13812/13812 +f 13813/13813 13726/13726 13882/13882 +f 13727/13727 13724/13724 13726/13726 +f 13728/13728 13883/13883 13730/13730 +f 13814/13814 13531/13531 13817/13817 +f 13814/13814 13884/13884 13729/13729 +f 13729/13729 13738/13738 13815/13815 +f 13730/13730 13883/13883 13816/13816 +f 13817/13817 13731/13731 13885/13885 +f 13816/13816 13886/13886 13731/13731 +f 13738/13738 13732/13732 13815/13815 +f 13819/13819 13536/13536 13818/13818 +f 13737/13737 13821/13821 13734/13734 +f 13887/13887 13818/13818 13734/13734 +f 13745/13745 13735/13735 13888/13888 +f 13888/13888 13735/13735 13819/13819 +f 13736/13736 13889/13889 13820/13820 +f 13890/13890 13640/13640 13820/13820 +f 13640/13640 13891/13891 13821/13821 +f 13892/13892 13644/13644 13822/13822 +f 13884/13884 13822/13822 13643/13643 +f 13643/13643 13729/13729 13884/13884 +f 13823/13823 13893/13893 13739/13739 +f 13644/13644 13892/13892 13823/13823 +f 13741/13741 13889/13889 13740/13740 +f 13645/13645 13825/13825 13824/13824 +f 13894/13894 13741/13741 13824/13824 +f 13895/13895 13825/13825 13742/13742 +f 13896/13896 13826/13826 13743/13743 +f 13827/13827 13828/13828 13743/13743 +f 13895/13895 13742/13742 13826/13826 +f 13827/13827 13744/13744 13828/13828 +f 13736/13736 13740/13740 13889/13889 +f 13648/13648 13897/13897 13828/13828 +f 13893/13893 13829/13829 13739/13739 +f 13897/13897 13648/13648 13829/13829 +f 13745/13745 13898/13898 13830/13830 +f 13746/13746 36367/39404 36366/39405 +f 36368/39406 13652/13652 13831/13831 +f 36380/39407 36368/39406 13831/13831 +f 36381/39408 13831/13831 13653/13653 +f 36369/39409 36381/39408 13653/13653 +f 13877/13877 13832/13832 13747/13747 +f 36370/39410 13748/13748 13899/13899 +f 36382/39411 36370/39410 13899/13899 +f 13832/13832 13899/13899 13748/13748 +f 13833/13833 13756/13756 13656/13656 +f 13751/13751 13750/13750 13900/13900 +f 13901/13901 13833/13833 13751/13751 +f 13900/13900 13750/13750 13834/13834 +f 13660/13660 13835/13835 13834/13834 +f 13902/13902 13835/13835 13661/13661 +f 13902/13902 13661/13661 13836/13836 +f 13754/13754 13903/13903 13753/13753 +f 13754/13754 13837/13837 13904/13904 +f 13837/13837 13755/13755 13905/13905 +f 13906/13906 13755/13755 13838/13838 +f 13838/13838 13756/13756 13901/13901 +f 13839/13839 13753/13753 13903/13903 +f 13757/13757 13839/13839 13907/13907 +f 13759/13759 13757/13757 13907/13907 +f 13840/13840 13843/13843 13668/13668 +f 13758/13758 13908/13908 13840/13840 +f 13759/13759 13909/13909 13841/13841 +f 13758/13758 13841/13841 13910/13910 +f 13911/13911 13762/13762 13760/13760 +f 13842/13842 13912/13912 13760/13760 +f 13761/13761 13913/13913 13842/13842 +f 13761/13761 13843/13843 13914/13914 +f 13763/13763 13762/13762 13915/13915 +f 13916/13916 13844/13844 13763/13763 +f 13917/13917 13669/13669 13844/13844 +f 13845/13845 13918/13918 13764/13764 +f 13669/13669 13917/13917 13845/13845 +f 13766/13766 13764/13764 13919/13919 +f 13765/13765 13766/13766 13920/13920 +f 13846/13846 13765/13765 13920/13920 +f 13921/13921 13767/13767 13846/13846 +f 13673/13673 13847/13847 13848/13848 +f 13847/13847 13767/13767 13922/13922 +f 13675/13675 13848/13848 13923/13923 +f 13677/13677 13924/13924 13769/13769 +f 13768/13768 13850/13850 13925/13925 +f 13851/13851 13850/13850 13579/13579 +f 13849/13849 13768/13768 13925/13925 +f 13769/13769 13924/13924 13851/13851 +f 13926/13926 13770/13770 13772/13772 +f 13770/13770 13927/13927 13852/13852 +f 13773/13773 13771/13771 13852/13852 +f 13854/13854 13680/13680 13853/13853 +f 13772/13772 13854/13854 13928/13928 +f 13595/13595 13856/13856 13929/13929 +f 13874/13874 13856/13856 13707/13707 +f 13857/13857 13775/13775 13930/13930 +f 13858/13858 13776/13776 13857/13857 +f 13859/13859 13597/13597 13858/13858 +f 13859/13859 13931/13931 13777/13777 +f 13777/13777 13931/13931 13785/13785 +f 13932/13932 13860/13860 13692/13692 +f 13860/13860 13933/13933 13778/13778 +f 13692/13692 13784/13784 13934/13934 +f 13933/13933 13861/13861 13778/13778 +f 13935/13935 13694/13694 13861/13861 +f 13935/13935 13862/13862 13694/13694 +f 13695/13695 13862/13862 13864/13864 +f 13779/13779 13780/13780 13936/13936 +f 13779/13779 13937/13937 13863/13863 +f 13780/13780 13864/13864 13936/13936 +f 13781/13781 13863/13863 13938/13938 +f 13865/13865 13781/13781 13939/13939 +f 13866/13866 13696/13696 13865/13865 +f 13866/13866 13940/13940 13698/13698 +f 13883/13883 13728/13728 13782/13782 +f 13782/13782 13783/13783 13941/13941 +f 13698/13698 13940/13940 13867/13867 +f 13941/13941 13783/13783 13867/13867 +f 13784/13784 13868/13868 13934/13934 +f 13785/13785 13942/13942 13786/13786 +f 13699/13699 13869/13869 13870/13870 +f 13786/13786 13942/13942 13869/13869 +f 13943/13943 13787/13787 13870/13870 +f 13868/13868 13787/13787 13944/13944 +f 13788/13788 13803/13803 13804/13804 +f 13945/13945 13791/13791 13788/13788 +f 13789/13789 13790/13790 13791/13791 +f 13792/13792 13789/13789 13872/13872 +f 13946/13946 13871/13871 13704/13704 +f 13872/13872 13946/13946 13704/13704 +f 13794/13794 13793/13793 13947/13947 +f 13793/13793 13871/13871 13948/13948 +f 13794/13794 13949/13949 13873/13873 +f 13796/13796 13795/13795 13950/13950 +f 13795/13795 13873/13873 13951/13951 +f 13874/13874 13796/13796 13952/13952 +f 13849/13849 13953/13953 13797/13797 +f 13954/13954 13798/13798 13797/13797 +f 13799/13799 13875/13875 13955/13955 +f 13798/13798 13954/13954 13875/13875 +f 13713/13713 13878/13878 13876/13876 +f 13715/13715 13876/13876 13956/13956 +f 13715/13715 13956/13956 13877/13877 +f 36373/39412 13805/13805 13806/13806 +f 36383/39413 36373/39412 13806/13806 +f 13878/13878 36374/39414 36384/39415 +f 13806/13806 36376/39416 36385/39417 +f 13807/13807 36386/39418 36377/39419 +f 36387/39420 13721/13721 13879/13879 +f 36388/39421 36387/39420 13879/13879 +f 13807/13807 36378/39422 36386/39423 +f 13721/13721 36389/39424 36379/39425 +f 13632/13632 13881/13881 13880/13880 +f 13880/13880 13957/13957 13809/13809 +f 13957/13957 13879/13879 13809/13809 +f 13881/13881 13810/13810 13958/13958 +f 13958/13958 13810/13810 13813/13813 +f 13812/13812 13811/13811 13830/13830 +f 13726/13726 13812/13812 13882/13882 +f 13882/13882 13959/13959 13813/13813 +f 13814/13814 13817/13817 13960/13960 +f 13814/13814 13960/13960 13884/13884 +f 13886/13886 13816/13816 13883/13883 +f 13886/13886 13885/13885 13731/13731 +f 13817/13817 13885/13885 13961/13961 +f 13962/13962 13819/13819 13818/13818 +f 13734/13734 13821/13821 13887/13887 +f 13818/13818 13887/13887 13963/13963 +f 13964/13964 13745/13745 13888/13888 +f 13819/13819 13965/13965 13888/13888 +f 13889/13889 13966/13966 13820/13820 +f 13890/13890 13820/13820 13966/13966 +f 13890/13890 13891/13891 13640/13640 +f 13891/13891 13967/13967 13821/13821 +f 13892/13892 13822/13822 13884/13884 +f 13823/13823 13968/13968 13893/13893 +f 13892/13892 13884/13884 13823/13823 +f 13889/13889 13741/13741 13966/13966 +f 13825/13825 13894/13894 13824/13824 +f 13741/13741 13894/13894 13966/13966 +f 13969/13969 13825/13825 13895/13895 +f 13970/13970 13826/13826 13896/13896 +f 13743/13743 13828/13828 13896/13896 +f 13970/13970 13895/13895 13826/13826 +f 13897/13897 13896/13896 13828/13828 +f 13829/13829 13893/13893 13971/13971 +f 13897/13897 13829/13829 13972/13972 +f 13898/13898 13745/13745 13964/13964 +f 13973/13973 13830/13830 13898/13898 +f 13831/13831 36381/39426 36380/39427 +f 13832/13832 13877/13877 13899/13899 +f 13899/13899 36390/39428 36382/39429 +f 13756/13756 13833/13833 13901/13901 +f 13900/13900 13901/13901 13751/13751 +f 13902/13902 13900/13900 13834/13834 +f 13835/13835 13902/13902 13834/13834 +f 13974/13974 13902/13902 13836/13836 +f 13903/13903 13754/13754 13975/13975 +f 13976/13976 13754/13754 13904/13904 +f 13905/13905 13904/13904 13837/13837 +f 13755/13755 13906/13906 13905/13905 +f 13838/13838 13977/13977 13906/13906 +f 13838/13838 13901/13901 13978/13978 +f 13903/13903 13979/13979 13839/13839 +f 13907/13907 13839/13839 13909/13909 +f 13909/13909 13759/13759 13907/13907 +f 13908/13908 13843/13843 13840/13840 +f 13980/13980 13908/13908 13758/13758 +f 13841/13841 13909/13909 13981/13981 +f 13910/13910 13980/13980 13758/13758 +f 13981/13981 13910/13910 13841/13841 +f 13762/13762 13911/13911 13915/13915 +f 13760/13760 13912/13912 13911/13911 +f 13842/13842 13982/13982 13912/13912 +f 13983/13983 13913/13913 13761/13761 +f 13982/13982 13842/13842 13913/13913 +f 13984/13984 13914/13914 13843/13843 +f 13761/13761 13914/13914 13983/13983 +f 13916/13916 13763/13763 13915/13915 +f 13916/13916 13985/13985 13844/13844 +f 13985/13985 13917/13917 13844/13844 +f 13917/13917 13918/13918 13845/13845 +f 13918/13918 13986/13986 13764/13764 +f 13764/13764 13986/13986 13919/13919 +f 13920/13920 13766/13766 13919/13919 +f 13920/13920 13921/13921 13846/13846 +f 13767/13767 13921/13921 13922/13922 +f 13848/13848 13847/13847 13922/13922 +f 13848/13848 13987/13987 13923/13923 +f 13925/13925 13850/13850 13988/13988 +f 13851/13851 13924/13924 13850/13850 +f 13989/13989 13849/13849 13925/13925 +f 13926/13926 13927/13927 13770/13770 +f 13928/13928 13926/13926 13772/13772 +f 13852/13852 13927/13927 13773/13773 +f 13853/13853 13990/13990 13854/13854 +f 13854/13854 13991/13991 13928/13928 +f 13856/13856 13992/13992 13929/13929 +f 13856/13856 13874/13874 13993/13993 +f 13857/13857 13930/13930 13858/13858 +f 13858/13858 13994/13994 13859/13859 +f 13995/13995 13931/13931 13859/13859 +f 13785/13785 13931/13931 13942/13942 +f 13860/13860 13932/13932 13996/13996 +f 13932/13932 13692/13692 13934/13934 +f 13860/13860 13997/13997 13933/13933 +f 13998/13998 13861/13861 13933/13933 +f 13935/13935 13861/13861 13998/13998 +f 13862/13862 13935/13935 13999/13999 +f 13864/13864 13862/13862 14000/14000 +f 14001/14001 13779/13779 13936/13936 +f 13938/13938 13863/13863 13937/13937 +f 13779/13779 14001/14001 13937/13937 +f 13864/13864 14000/14000 13936/13936 +f 13938/13938 13939/13939 13781/13781 +f 13865/13865 13939/13939 14002/14002 +f 13866/13866 13865/13865 14003/14003 +f 13866/13866 14004/14004 13940/13940 +f 13883/13883 13782/13782 13941/13941 +f 13883/13883 13867/13867 13940/13940 +f 13867/13867 13883/13883 13941/13941 +f 13932/13932 13934/13934 13868/13868 +f 14005/14005 13870/13870 13869/13869 +f 13929/13929 13869/13869 13942/13942 +f 13787/13787 13943/13943 14006/14006 +f 13943/13943 13870/13870 14005/14005 +f 13868/13868 13944/13944 14007/14007 +f 13944/13944 13787/13787 14006/14006 +f 13788/13788 13804/13804 14008/14008 +f 13945/13945 14009/14009 13791/13791 +f 13945/13945 13788/13788 14010/14010 +f 13872/13872 13789/13789 13791/13791 +f 13948/13948 13871/13871 13946/13946 +f 13872/13872 14011/14011 13946/13946 +f 13949/13949 13794/13794 13947/13947 +f 13793/13793 14012/14012 13947/13947 +f 13948/13948 14013/14013 13793/13793 +f 13873/13873 13949/13949 14014/14014 +f 13795/13795 13951/13951 13950/13950 +f 14015/14015 13796/13796 13950/13950 +f 13951/13951 13873/13873 14014/14014 +f 14015/14015 13952/13952 13796/13796 +f 13874/13874 13952/13952 13993/13993 +f 14016/14016 13953/13953 13849/13849 +f 13797/13797 13953/13953 13954/13954 +f 14017/14017 13955/13955 13875/13875 +f 13875/13875 13954/13954 14018/14018 +f 13878/13878 13956/13956 13876/13876 +f 13956/13956 14019/14019 13877/13877 +f 13806/13806 36391/39430 36383/39431 +f 13878/13878 36788/40211 36789/40212 +f 36788/40213 13878/13878 36384/39432 +f 36790/40214 36788/40213 36384/39432 +f 13806/13806 36385/39433 36391/39434 +f 13879/13879 36392/39435 36388/39436 +f 13721/13721 36387/39437 36389/39438 +f 13880/13880 13881/13881 14020/14020 +f 14020/14020 13957/13957 13880/13880 +f 36392/39439 13879/13879 13957/13957 +f 36393/39440 36392/39439 13957/13957 +f 13958/13958 14021/14021 13881/13881 +f 13958/13958 13813/13813 13959/13959 +f 13812/13812 13830/13830 13973/13973 +f 13812/13812 13973/13973 13882/13882 +f 14022/14022 13959/13959 13882/13882 +f 13960/13960 13817/13817 14023/14023 +f 13960/13960 14024/14024 13884/13884 +f 13883/13883 13940/13940 13886/13886 +f 13885/13885 13886/13886 13961/13961 +f 14025/14025 13817/13817 13961/13961 +f 13965/13965 13819/13819 13962/13962 +f 13818/13818 14026/14026 13962/13962 +f 13821/13821 13967/13967 13887/13887 +f 13818/13818 13963/13963 14027/14027 +f 13963/13963 13887/13887 14028/14028 +f 13964/13964 13888/13888 14029/14029 +f 13888/13888 13965/13965 14029/14029 +f 13890/13890 13966/13966 14030/14030 +f 13891/13891 13890/13890 14031/14031 +f 13967/13967 13891/13891 14031/14031 +f 13968/13968 14032/14032 13893/13893 +f 13823/13823 14024/14024 13968/13968 +f 13823/13823 13884/13884 14024/14024 +f 13894/13894 13825/13825 14033/14033 +f 13894/13894 14030/14030 13966/13966 +f 13825/13825 13969/13969 14033/14033 +f 13895/13895 14034/14034 13969/13969 +f 14035/14035 13970/13970 13896/13896 +f 13895/13895 13970/13970 14034/14034 +f 13896/13896 13897/13897 13972/13972 +f 13893/13893 14032/14032 13971/13971 +f 13971/13971 14036/14036 13829/13829 +f 13829/13829 14036/14036 13972/13972 +f 13898/13898 13964/13964 14029/14029 +f 13973/13973 13898/13898 14037/14037 +f 13877/13877 14019/14019 13899/13899 +f 36791/40215 36390/39441 13899/13899 +f 36792/40216 36791/40215 13899/13899 +f 36390/39441 36791/40217 36793/40218 +f 14038/14038 13901/13901 13900/13900 +f 13974/13974 13900/13900 13902/13902 +f 13836/13836 14039/14039 13974/13974 +f 13975/13975 13754/13754 13976/13976 +f 13903/13903 13975/13975 14040/14040 +f 13976/13976 13904/13904 14041/14041 +f 13904/13904 13905/13905 14042/14042 +f 14043/14043 13905/13905 13906/13906 +f 13977/13977 14044/14044 13906/13906 +f 13838/13838 13978/13978 13977/13977 +f 13901/13901 14045/14045 13978/13978 +f 13979/13979 14046/14046 13839/13839 +f 13903/13903 14040/14040 13979/13979 +f 13909/13909 13839/13839 14046/14046 +f 13984/13984 13843/13843 13908/13908 +f 13980/13980 14047/14047 13908/13908 +f 14046/14046 13981/13981 13909/13909 +f 13981/13981 13980/13980 13910/13910 +f 13915/13915 13911/13911 14048/14048 +f 14049/14049 13911/13911 13912/13912 +f 13982/13982 14049/14049 13912/13912 +f 13913/13913 13983/13983 14050/14050 +f 13982/13982 13913/13913 14049/14049 +f 14051/14051 13914/13914 13984/13984 +f 14052/14052 13983/13983 13914/13914 +f 14048/14048 13916/13916 13915/13915 +f 13985/13985 13916/13916 14053/14053 +f 13918/13918 13917/13917 13985/13985 +f 13986/13986 13918/13918 14054/14054 +f 13986/13986 13920/13920 13919/13919 +f 13920/13920 14055/14055 13921/13921 +f 13921/13921 14056/14056 13922/13922 +f 13922/13922 14057/14057 13848/13848 +f 14057/14057 13987/13987 13848/13848 +f 13923/13923 13987/13987 14058/14058 +f 13989/13989 13925/13925 13988/13988 +f 13850/13850 13924/13924 13988/13988 +f 13849/13849 13989/13989 14016/14016 +f 14059/14059 13926/13926 13928/13928 +f 13991/13991 13854/13854 13990/13990 +f 13991/13991 14060/14060 13928/13928 +f 13929/13929 13992/13992 14061/14061 +f 13856/13856 14062/14062 13992/13992 +f 14063/14063 13856/13856 13993/13993 +f 14064/14064 13858/13858 13930/13930 +f 13858/13858 14064/14064 13994/13994 +f 13859/13859 13994/13994 13995/13995 +f 13931/13931 13995/13995 13942/13942 +f 13997/13997 13860/13860 13996/13996 +f 13932/13932 14065/14065 13996/13996 +f 13997/13997 14066/14066 13933/13933 +f 14066/14066 13998/13998 13933/13933 +f 13999/13999 13935/13935 13998/13998 +f 14000/14000 13862/13862 13999/13999 +f 13936/13936 14067/14067 14001/14001 +f 13938/13938 13937/13937 14068/14068 +f 13937/13937 14001/14001 14069/14069 +f 14000/14000 14067/14067 13936/13936 +f 14068/14068 13939/13939 13938/13938 +f 13939/13939 14070/14070 14002/14002 +f 14002/14002 14003/14003 13865/13865 +f 14071/14071 13866/13866 14003/14003 +f 13940/13940 14004/14004 13886/13886 +f 13866/13866 14071/14071 14004/14004 +f 14065/14065 13932/13932 13868/13868 +f 14072/14072 14005/14005 13869/13869 +f 14072/14072 13869/13869 13929/13929 +f 13942/13942 14064/14064 13929/13929 +f 14073/14073 14006/14006 13943/13943 +f 14005/14005 14074/14074 13943/13943 +f 13944/13944 14073/14073 14007/14007 +f 14065/14065 13868/13868 14007/14007 +f 14073/14073 13944/13944 14006/14006 +f 13804/13804 14075/14075 14008/14008 +f 14010/14010 13788/13788 14008/14008 +f 13945/13945 14076/14076 14009/14009 +f 13791/13791 14009/14009 13872/13872 +f 14077/14077 13945/13945 14010/14010 +f 13946/13946 14011/14011 13948/13948 +f 13872/13872 14009/14009 14011/14011 +f 14078/14078 13949/13949 13947/13947 +f 13793/13793 14013/14013 14012/14012 +f 13947/13947 14012/14012 14079/14079 +f 14011/14011 14013/14013 13948/13948 +f 14014/14014 13949/13949 14080/14080 +f 13950/13950 13951/13951 14081/14081 +f 14015/14015 13950/13950 14082/14082 +f 14014/14014 14081/14081 13951/13951 +f 14015/14015 14083/14083 13952/13952 +f 13952/13952 14084/14084 13993/13993 +f 13953/13953 14016/14016 14085/14085 +f 13953/13953 14086/14086 13954/13954 +f 14017/14017 13875/13875 14018/14018 +f 13955/13955 14017/14017 14087/14087 +f 14018/14018 13954/13954 14086/14086 +f 36794/40219 13956/13956 13878/13878 +f 36789/40220 36794/40219 13878/13878 +f 36795/40221 14019/14019 13956/13956 +f 36796/40222 36795/40221 13956/13956 +f 14088/14088 14020/14020 13881/13881 +f 36394/39442 13957/13957 14020/14020 +f 36395/39443 36394/39442 14020/14020 +f 13957/13957 36396/39444 36393/39445 +f 14088/14088 13881/13881 14021/14021 +f 14089/14089 14021/14021 13958/13958 +f 14089/14089 13958/13958 13959/13959 +f 13973/13973 14022/14022 13882/13882 +f 14090/14090 13959/13959 14022/14022 +f 14023/14023 14024/14024 13960/13960 +f 13817/13817 14025/14025 14023/14023 +f 14004/14004 13961/13961 13886/13886 +f 14025/14025 13961/13961 14004/14004 +f 13965/13965 13962/13962 14091/14091 +f 14027/14027 14026/14026 13818/13818 +f 13962/13962 14026/14026 14092/14092 +f 14093/14093 13887/13887 13967/13967 +f 14028/14028 14027/14027 13963/13963 +f 14028/14028 13887/13887 14093/14093 +f 13965/13965 14094/14094 14029/14029 +f 14031/14031 13890/13890 14030/14030 +f 14031/14031 14093/14093 13967/13967 +f 14024/14024 14032/14032 13968/13968 +f 14095/14095 13894/13894 14033/14033 +f 14030/14030 13894/13894 14095/14095 +f 14033/14033 13969/13969 14034/14034 +f 14035/14035 14096/14096 13970/13970 +f 14096/14096 14035/14035 13896/13896 +f 14097/14097 14034/14034 13970/13970 +f 13896/13896 13972/13972 14098/14098 +f 13971/13971 14032/14032 14099/14099 +f 14099/14099 14036/14036 13971/13971 +f 13972/13972 14036/14036 14100/14100 +f 14029/14029 14101/14101 13898/13898 +f 13973/13973 14037/14037 14022/14022 +f 13898/13898 14101/14101 14037/14037 +f 36792/40223 13899/13899 14019/14019 +f 36795/40224 36792/40223 14019/14019 +f 14038/14038 14045/14045 13901/13901 +f 14038/14038 13900/13900 13974/13974 +f 14039/14039 14102/14102 13974/13974 +f 14103/14103 13975/13975 13976/13976 +f 14040/14040 13975/13975 14104/14104 +f 14105/14105 14041/14041 13904/13904 +f 14041/14041 14103/14103 13976/13976 +f 14043/14043 14042/14042 13905/13905 +f 13904/13904 14042/14042 14105/14105 +f 13906/13906 14044/14044 14043/14043 +f 14106/14106 14044/14044 13977/13977 +f 13978/13978 14107/14107 13977/13977 +f 13978/13978 14045/14045 14108/14108 +f 14109/14109 14046/14046 13979/13979 +f 13979/13979 14040/14040 14110/14110 +f 13908/13908 14047/14047 13984/13984 +f 14111/14111 14047/14047 13980/13980 +f 14046/14046 14109/14109 13981/13981 +f 13980/13980 13981/13981 14112/14112 +f 13911/13911 14049/14049 14048/14048 +f 14050/14050 14113/14113 13913/13913 +f 13983/13983 14114/14114 14050/14050 +f 14113/14113 14049/14049 13913/13913 +f 13984/13984 14115/14115 14051/14051 +f 14052/14052 13914/13914 14051/14051 +f 13983/13983 14052/14052 14114/14114 +f 14048/14048 14116/14116 13916/13916 +f 14053/14053 14117/14117 13985/13985 +f 14116/14116 14053/14053 13916/13916 +f 14117/14117 13918/13918 13985/13985 +f 14054/14054 14055/14055 13986/13986 +f 14054/14054 13918/13918 14117/14117 +f 13986/13986 14055/14055 13920/13920 +f 14055/14055 14056/14056 13921/13921 +f 14056/14056 14057/14057 13922/13922 +f 13987/13987 14057/14057 14118/14118 +f 14058/14058 13987/13987 14119/14119 +f 14085/14085 14016/14016 13989/13989 +f 13928/13928 14120/14120 14059/14059 +f 14121/14121 14060/14060 13991/13991 +f 14060/14060 14120/14120 13928/13928 +f 13992/13992 14122/14122 14061/14061 +f 13929/13929 14061/14061 14123/14123 +f 13992/13992 14062/14062 14124/14124 +f 14062/14062 13856/13856 14063/14063 +f 13993/13993 14125/14125 14063/14063 +f 14064/14064 13930/13930 13929/13929 +f 13995/13995 13994/13994 14064/14064 +f 13942/13942 13995/13995 14064/14064 +f 13997/13997 13996/13996 14126/14126 +f 14127/14127 13996/13996 14065/14065 +f 14128/14128 14066/14066 13997/13997 +f 13998/13998 14066/14066 14128/14128 +f 13999/13999 13998/13998 14128/14128 +f 14129/14129 14000/14000 13999/13999 +f 14000/14000 14001/14001 14067/14067 +f 14069/14069 14068/14068 13937/13937 +f 14130/14130 14069/14069 14001/14001 +f 13939/13939 14068/14068 14070/14070 +f 14070/14070 14131/14131 14002/14002 +f 14132/14132 14003/14003 14002/14002 +f 14003/14003 14132/14132 14071/14071 +f 14071/14071 14133/14133 14004/14004 +f 14072/14072 14134/14134 14005/14005 +f 14135/14135 14072/14072 13929/13929 +f 14074/14074 14073/14073 13943/13943 +f 14134/14134 14074/14074 14005/14005 +f 14073/14073 14136/14136 14007/14007 +f 14065/14065 14007/14007 14137/14137 +f 14008/14008 14075/14075 14138/14138 +f 14139/14139 14010/14010 14008/14008 +f 14076/14076 13945/13945 14140/14140 +f 14009/14009 14076/14076 14141/14141 +f 13945/13945 14077/14077 14142/14142 +f 14077/14077 14010/14010 14143/14143 +f 14009/14009 14141/14141 14011/14011 +f 13947/13947 14079/14079 14078/14078 +f 14080/14080 13949/13949 14078/14078 +f 14013/14013 14079/14079 14012/14012 +f 14013/14013 14011/14011 14079/14079 +f 14144/14144 14014/14014 14080/14080 +f 14081/14081 14145/14145 13950/13950 +f 13950/13950 14145/14145 14082/14082 +f 14082/14082 14146/14146 14015/14015 +f 14014/14014 14144/14144 14081/14081 +f 14084/14084 13952/13952 14083/14083 +f 14015/14015 14146/14146 14083/14083 +f 14084/14084 14125/14125 13993/13993 +f 14086/14086 13953/13953 14085/14085 +f 14087/14087 14017/14017 14018/14018 +f 14086/14086 14147/14147 14018/14018 +f 13956/13956 36794/40225 36796/40226 +f 14020/14020 14088/14088 14148/14148 +f 14020/14020 36397/39446 36395/39447 +f 13957/13957 36394/39448 36396/39449 +f 14089/14089 14088/14088 14021/14021 +f 14090/14090 14089/14089 13959/13959 +f 14022/14022 14037/14037 14090/14090 +f 14023/14023 14032/14032 14024/14024 +f 14025/14025 14149/14149 14023/14023 +f 14025/14025 14004/14004 14149/14149 +f 14094/14094 13965/13965 14091/14091 +f 13962/13962 14150/14150 14091/14091 +f 14027/14027 14151/14151 14026/14026 +f 14092/14092 14026/14026 14151/14151 +f 14092/14092 14150/14150 13962/13962 +f 14152/14152 14027/14027 14028/14028 +f 14093/14093 14153/14153 14028/14028 +f 14029/14029 14094/14094 14154/14154 +f 14155/14155 14031/14031 14030/14030 +f 14093/14093 14031/14031 14156/14156 +f 14157/14157 14095/14095 14033/14033 +f 14155/14155 14030/14030 14095/14095 +f 14033/14033 14034/14034 14157/14157 +f 13970/13970 14096/14096 14158/14158 +f 14096/14096 13896/13896 14098/14098 +f 14097/14097 13970/13970 14158/14158 +f 14034/14034 14097/14097 14159/14159 +f 14098/14098 13972/13972 14100/14100 +f 14032/14032 14160/14160 14099/14099 +f 14099/14099 14161/14161 14036/14036 +f 14036/14036 14162/14162 14100/14100 +f 14163/14163 14101/14101 14029/14029 +f 14164/14164 14037/14037 14101/14101 +f 14045/14045 14038/14038 14165/14165 +f 14166/14166 14038/14038 13974/13974 +f 14167/14167 13974/13974 14102/14102 +f 14168/14168 14102/14102 14039/14039 +f 13975/13975 14103/14103 14169/14169 +f 13975/13975 14169/14169 14104/14104 +f 14110/14110 14040/14040 14104/14104 +f 14170/14170 14041/14041 14105/14105 +f 14041/14041 14171/14171 14103/14103 +f 14042/14042 14043/14043 14172/14172 +f 14173/14173 14105/14105 14042/14042 +f 14043/14043 14044/14044 14172/14172 +f 13977/13977 14107/14107 14106/14106 +f 13978/13978 14174/14174 14107/14107 +f 14165/14165 14108/14108 14045/14045 +f 14174/14174 13978/13978 14108/14108 +f 14175/14175 14109/14109 13979/13979 +f 13979/13979 14110/14110 14175/14175 +f 14047/14047 14176/14176 13984/13984 +f 13980/13980 14112/14112 14111/14111 +f 14177/14177 14047/14047 14111/14111 +f 13981/13981 14109/14109 14112/14112 +f 14178/14178 14048/14048 14049/14049 +f 14114/14114 14113/14113 14050/14050 +f 14049/14049 14113/14113 14178/14178 +f 14179/14179 14051/14051 14115/14115 +f 13984/13984 14176/14176 14115/14115 +f 14052/14052 14051/14051 14179/14179 +f 14052/14052 14179/14179 14114/14114 +f 14048/14048 14180/14180 14116/14116 +f 14117/14117 14053/14053 14181/14181 +f 14053/14053 14116/14116 14181/14181 +f 14057/14057 14055/14055 14054/14054 +f 14117/14117 14182/14182 14054/14054 +f 14057/14057 14056/14056 14055/14055 +f 14183/14183 14118/14118 14057/14057 +f 14118/14118 14119/14119 13987/13987 +f 14058/14058 14119/14119 14184/14184 +f 14185/14185 14059/14059 14120/14120 +f 14120/14120 14060/14060 14121/14121 +f 14121/14121 13991/13991 14186/14186 +f 14187/14187 14061/14061 14122/14122 +f 14188/14188 14122/14122 13992/13992 +f 14135/14135 13929/13929 14123/14123 +f 14061/14061 14187/14187 14123/14123 +f 14189/14189 14124/14124 14062/14062 +f 13992/13992 14124/14124 14190/14190 +f 14063/14063 14189/14189 14062/14062 +f 14125/14125 14191/14191 14063/14063 +f 14192/14192 13997/13997 14126/14126 +f 14193/14193 14126/14126 13996/13996 +f 14127/14127 14065/14065 14137/14137 +f 14127/14127 14193/14193 13996/13996 +f 13997/13997 14192/14192 14128/14128 +f 14194/14194 13999/13999 14128/14128 +f 14129/14129 14195/14195 14000/14000 +f 14129/14129 13999/13999 14194/14194 +f 14001/14001 14000/14000 14195/14195 +f 14069/14069 14196/14196 14068/14068 +f 14195/14195 14069/14069 14130/14130 +f 14130/14130 14001/14001 14195/14195 +f 14070/14070 14068/14068 14197/14197 +f 14070/14070 14197/14197 14131/14131 +f 14002/14002 14131/14131 14198/14198 +f 14198/14198 14132/14132 14002/14002 +f 14071/14071 14132/14132 14133/14133 +f 14133/14133 14199/14199 14004/14004 +f 14200/14200 14134/14134 14072/14072 +f 14135/14135 14201/14201 14072/14072 +f 14074/14074 14136/14136 14073/14073 +f 14074/14074 14134/14134 14202/14202 +f 14136/14136 14203/14203 14007/14007 +f 14007/14007 14203/14203 14137/14137 +f 14075/14075 14204/14204 14138/14138 +f 14138/14138 14205/14205 14008/14008 +f 14139/14139 14008/14008 14205/14205 +f 14206/14206 14010/14010 14139/14139 +f 14207/14207 14076/14076 14140/14140 +f 14140/14140 13945/13945 14142/14142 +f 14208/14208 14141/14141 14076/14076 +f 14142/14142 14077/14077 14209/14209 +f 14010/14010 14206/14206 14143/14143 +f 14143/14143 14210/14210 14077/14077 +f 14011/14011 14141/14141 14211/14211 +f 14211/14211 14078/14078 14079/14079 +f 14078/14078 14211/14211 14080/14080 +f 14011/14011 14211/14211 14079/14079 +f 14080/14080 14212/14212 14144/14144 +f 14081/14081 14082/14082 14145/14145 +f 14082/14082 14213/14213 14146/14146 +f 14081/14081 14144/14144 14214/14214 +f 14083/14083 14215/14215 14084/14084 +f 14216/14216 14083/14083 14146/14146 +f 14217/14217 14125/14125 14084/14084 +f 14147/14147 14086/14086 14085/14085 +f 14018/14018 14147/14147 14087/14087 +f 14088/14088 14218/14218 14148/14148 +f 36397/39450 14020/14020 14148/14148 +f 36398/39451 36397/39450 14148/14148 +f 14089/14089 14218/14218 14088/14088 +f 14219/14219 14089/14089 14090/14090 +f 14220/14220 14090/14090 14037/14037 +f 14160/14160 14032/14032 14023/14023 +f 14023/14023 14149/14149 14160/14160 +f 14199/14199 14149/14149 14004/14004 +f 14091/14091 14221/14221 14094/14094 +f 14027/14027 14222/14222 14151/14151 +f 14092/14092 14151/14151 14150/14150 +f 14027/14027 14152/14152 14223/14223 +f 14028/14028 14153/14153 14152/14152 +f 14093/14093 14224/14224 14153/14153 +f 14154/14154 14094/14094 14225/14225 +f 14154/14154 14163/14163 14029/14029 +f 14031/14031 14155/14155 14156/14156 +f 14224/14224 14093/14093 14156/14156 +f 14226/14226 14155/14155 14095/14095 +f 14157/14157 14034/14034 14159/14159 +f 14227/14227 14158/14158 14096/14096 +f 14096/14096 14098/14098 14228/14228 +f 14158/14158 14229/14229 14097/14097 +f 14159/14159 14097/14097 14229/14229 +f 14230/14230 14098/14098 14100/14100 +f 14231/14231 14099/14099 14160/14160 +f 14231/14231 14161/14161 14099/14099 +f 14036/14036 14161/14161 14232/14232 +f 14162/14162 14036/14036 14232/14232 +f 14100/14100 14162/14162 14233/14233 +f 14164/14164 14101/14101 14163/14163 +f 14234/14234 14037/14037 14164/14164 +f 14038/14038 14166/14166 14165/14165 +f 14167/14167 14166/14166 13974/13974 +f 14102/14102 14235/14235 14167/14167 +f 14102/14102 14168/14168 14236/14236 +f 14103/14103 14171/14171 14169/14169 +f 14104/14104 14169/14169 14237/14237 +f 14110/14110 14104/14104 14238/14238 +f 14041/14041 14170/14170 14239/14239 +f 14105/14105 14173/14173 14170/14170 +f 14041/14041 14240/14240 14171/14171 +f 14172/14172 14241/14241 14042/14042 +f 14241/14241 14173/14173 14042/14042 +f 14106/14106 14107/14107 14242/14242 +f 14243/14243 14107/14107 14174/14174 +f 14165/14165 14174/14174 14108/14108 +f 14175/14175 14244/14244 14109/14109 +f 14175/14175 14110/14110 14245/14245 +f 14176/14176 14047/14047 14177/14177 +f 14246/14246 14111/14111 14112/14112 +f 14177/14177 14111/14111 14247/14247 +f 14244/14244 14112/14112 14109/14109 +f 14180/14180 14048/14048 14178/14178 +f 14248/14248 14113/14113 14114/14114 +f 14113/14113 14248/14248 14178/14178 +f 14179/14179 14115/14115 14249/14249 +f 14249/14249 14115/14115 14176/14176 +f 14114/14114 14179/14179 14250/14250 +f 14116/14116 14180/14180 14181/14181 +f 14251/14251 14117/14117 14181/14181 +f 14057/14057 14054/14054 14183/14183 +f 14251/14251 14182/14182 14117/14117 +f 14183/14183 14054/14054 14182/14182 +f 14118/14118 14183/14183 14252/14252 +f 14118/14118 14253/14253 14119/14119 +f 14119/14119 14253/14253 14184/14184 +f 14254/14254 14185/14185 14120/14120 +f 14121/14121 14254/14254 14120/14120 +f 14121/14121 14186/14186 14255/14255 +f 14122/14122 14256/14256 14187/14187 +f 14188/14188 14256/14256 14122/14122 +f 14257/14257 14188/14188 13992/13992 +f 14258/14258 14135/14135 14123/14123 +f 14123/14123 14187/14187 14258/14258 +f 14124/14124 14189/14189 14259/14259 +f 14124/14124 14260/14260 14190/14190 +f 14190/14190 14257/14257 13992/13992 +f 14261/14261 14189/14189 14063/14063 +f 14125/14125 14217/14217 14191/14191 +f 14191/14191 14261/14261 14063/14063 +f 14262/14262 14192/14192 14126/14126 +f 14126/14126 14193/14193 14263/14263 +f 14137/14137 14264/14264 14127/14127 +f 14127/14127 14264/14264 14193/14193 +f 14192/14192 14194/14194 14128/14128 +f 14195/14195 14129/14129 14265/14265 +f 14129/14129 14194/14194 14266/14266 +f 14195/14195 14196/14196 14069/14069 +f 14197/14197 14068/14068 14196/14196 +f 14131/14131 14197/14197 14267/14267 +f 14131/14131 14268/14268 14198/14198 +f 14132/14132 14198/14198 14269/14269 +f 14132/14132 14269/14269 14133/14133 +f 14199/14199 14133/14133 14270/14270 +f 14134/14134 14200/14200 14202/14202 +f 14200/14200 14072/14072 14271/14271 +f 14201/14201 14135/14135 14272/14272 +f 14271/14271 14072/14072 14201/14201 +f 14136/14136 14074/14074 14273/14273 +f 14274/14274 14074/14074 14202/14202 +f 14203/14203 14136/14136 14273/14273 +f 14275/14275 14137/14137 14203/14203 +f 14204/14204 14276/14276 14138/14138 +f 14204/14204 14075/14075 14277/14277 +f 14205/14205 14138/14138 14278/14278 +f 14205/14205 14279/14279 14139/14139 +f 14279/14279 14206/14206 14139/14139 +f 14207/14207 14280/14280 14076/14076 +f 14281/14281 14207/14207 14140/14140 +f 14142/14142 14282/14282 14140/14140 +f 14280/14280 14208/14208 14076/14076 +f 14283/14283 14141/14141 14208/14208 +f 14209/14209 14077/14077 14284/14284 +f 14209/14209 14282/14282 14142/14142 +f 14206/14206 14279/14279 14143/14143 +f 14279/14279 14210/14210 14143/14143 +f 14077/14077 14210/14210 14284/14284 +f 14141/14141 14283/14283 14211/14211 +f 14283/14283 14080/14080 14211/14211 +f 14285/14285 14144/14144 14212/14212 +f 14212/14212 14080/14080 14286/14286 +f 14213/14213 14082/14082 14081/14081 +f 14146/14146 14213/14213 14287/14287 +f 14213/14213 14081/14081 14214/14214 +f 14144/14144 14285/14285 14214/14214 +f 14083/14083 14216/14216 14215/14215 +f 14215/14215 14217/14217 14084/14084 +f 14216/14216 14146/14146 14287/14287 +f 14218/14218 14288/14288 14148/14148 +f 36398/39452 14148/14148 14288/14288 +f 36399/39453 36398/39452 14288/14288 +f 14219/14219 14218/14218 14089/14089 +f 14289/14289 14219/14219 14090/14090 +f 14290/14290 14090/14090 14220/14220 +f 14291/14291 14220/14220 14037/14037 +f 14149/14149 14292/14292 14160/14160 +f 14293/14293 14149/14149 14199/14199 +f 14225/14225 14094/14094 14221/14221 +f 14091/14091 14294/14294 14221/14221 +f 14295/14295 14151/14151 14222/14222 +f 14222/14222 14027/14027 14223/14223 +f 14150/14150 14151/14151 14295/14295 +f 14296/14296 14223/14223 14152/14152 +f 14153/14153 14297/14297 14152/14152 +f 14153/14153 14224/14224 14298/14298 +f 14225/14225 14299/14299 14154/14154 +f 14163/14163 14154/14154 14299/14299 +f 14155/14155 14300/14300 14156/14156 +f 14156/14156 14301/14301 14224/14224 +f 14302/14302 14226/14226 14095/14095 +f 14155/14155 14226/14226 14300/14300 +f 14157/14157 14159/14159 14302/14302 +f 14158/14158 14227/14227 14303/14303 +f 14228/14228 14227/14227 14096/14096 +f 14098/14098 14230/14230 14228/14228 +f 14229/14229 14158/14158 14304/14304 +f 14305/14305 14159/14159 14229/14229 +f 14306/14306 14230/14230 14100/14100 +f 14231/14231 14160/14160 14292/14292 +f 14161/14161 14231/14231 14232/14232 +f 14233/14233 14162/14162 14232/14232 +f 14233/14233 14307/14307 14100/14100 +f 14164/14164 14163/14163 14299/14299 +f 14037/14037 14234/14234 14291/14291 +f 14308/14308 14234/14234 14164/14164 +f 14165/14165 14166/14166 14167/14167 +f 14102/14102 14309/14309 14235/14235 +f 14167/14167 14235/14235 14165/14165 +f 14102/14102 14236/14236 14310/14310 +f 14236/14236 14168/14168 14311/14311 +f 14171/14171 14312/14312 14169/14169 +f 14237/14237 14169/14169 14313/14313 +f 14237/14237 14314/14314 14104/14104 +f 14110/14110 14238/14238 14315/14315 +f 14238/14238 14104/14104 14314/14314 +f 14170/14170 14316/14316 14239/14239 +f 14239/14239 14240/14240 14041/14041 +f 14170/14170 14173/14173 14316/14316 +f 14240/14240 14312/14312 14171/14171 +f 14107/14107 14243/14243 14242/14242 +f 14174/14174 14235/14235 14243/14243 +f 14174/14174 14165/14165 14235/14235 +f 14244/14244 14175/14175 14317/14317 +f 14245/14245 14318/14318 14175/14175 +f 14245/14245 14110/14110 14315/14315 +f 14319/14319 14176/14176 14177/14177 +f 14112/14112 14244/14244 14246/14246 +f 14247/14247 14111/14111 14246/14246 +f 14319/14319 14177/14177 14247/14247 +f 14178/14178 14320/14320 14180/14180 +f 14321/14321 14248/14248 14114/14114 +f 14248/14248 14320/14320 14178/14178 +f 14250/14250 14179/14179 14249/14249 +f 14176/14176 14322/14322 14249/14249 +f 14114/14114 14250/14250 14321/14321 +f 14180/14180 14320/14320 14181/14181 +f 14320/14320 14251/14251 14181/14181 +f 14323/14323 14182/14182 14251/14251 +f 14182/14182 14323/14323 14183/14183 +f 14118/14118 14252/14252 14324/14324 +f 14252/14252 14183/14183 14323/14323 +f 14324/14324 14253/14253 14118/14118 +f 14185/14185 14254/14254 14325/14325 +f 14254/14254 14121/14121 14255/14255 +f 14326/14326 14187/14187 14256/14256 +f 14256/14256 14188/14188 14327/14327 +f 14257/14257 14328/14328 14188/14188 +f 14329/14329 14135/14135 14258/14258 +f 14187/14187 14330/14330 14258/14258 +f 14259/14259 14189/14189 14331/14331 +f 14260/14260 14124/14124 14259/14259 +f 14190/14190 14260/14260 14332/14332 +f 14257/14257 14190/14190 14333/14333 +f 14189/14189 14261/14261 14331/14331 +f 14334/14334 14191/14191 14217/14217 +f 14335/14335 14261/14261 14191/14191 +f 14192/14192 14262/14262 14336/14336 +f 14126/14126 14337/14337 14262/14262 +f 14263/14263 14193/14193 14264/14264 +f 14337/14337 14126/14126 14263/14263 +f 14338/14338 14264/14264 14137/14137 +f 14194/14194 14192/14192 14336/14336 +f 14265/14265 14197/14197 14195/14195 +f 14129/14129 14339/14339 14265/14265 +f 14194/14194 14340/14340 14266/14266 +f 14339/14339 14129/14129 14266/14266 +f 14196/14196 14195/14195 14197/14197 +f 14267/14267 14268/14268 14131/14131 +f 14341/14341 14267/14267 14197/14197 +f 14269/14269 14198/14198 14268/14268 +f 14133/14133 14269/14269 14342/14342 +f 14270/14270 14343/14343 14199/14199 +f 14270/14270 14133/14133 14342/14342 +f 14202/14202 14200/14200 14344/14344 +f 14345/14345 14200/14200 14271/14271 +f 14201/14201 14272/14272 14346/14346 +f 14329/14329 14272/14272 14135/14135 +f 14271/14271 14201/14201 14347/14347 +f 14348/14348 14273/14273 14074/14074 +f 14202/14202 14349/14349 14274/14274 +f 14074/14074 14274/14274 14348/14348 +f 14203/14203 14273/14273 14275/14275 +f 14338/14338 14137/14137 14275/14275 +f 14350/14350 14276/14276 14204/14204 +f 14278/14278 14138/14138 14276/14276 +f 14350/14350 14204/14204 14277/14277 +f 14351/14351 14205/14205 14278/14278 +f 14205/14205 14351/14351 14279/14279 +f 14207/14207 14352/14352 14280/14280 +f 14281/14281 14352/14352 14207/14207 +f 14353/14353 14281/14281 14140/14140 +f 14353/14353 14140/14140 14282/14282 +f 14354/14354 14208/14208 14280/14280 +f 14354/14354 14283/14283 14208/14208 +f 14209/14209 14284/14284 14355/14355 +f 14282/14282 14209/14209 14356/14356 +f 14351/14351 14210/14210 14279/14279 +f 14284/14284 14210/14210 14357/14357 +f 14080/14080 14283/14283 14286/14286 +f 14212/14212 14358/14358 14285/14285 +f 14359/14359 14212/14212 14286/14286 +f 14360/14360 14287/14287 14213/14213 +f 14360/14360 14213/14213 14214/14214 +f 14361/14361 14214/14214 14285/14285 +f 14217/14217 14215/14215 14216/14216 +f 14216/14216 14287/14287 14360/14360 +f 14288/14288 14218/14218 14362/14362 +f 14288/14288 36400/39454 36399/39455 +f 14219/14219 14363/14363 14218/14218 +f 14363/14363 14219/14219 14289/14289 +f 14090/14090 14290/14290 14289/14289 +f 14364/14364 14290/14290 14220/14220 +f 14220/14220 14291/14291 14364/14364 +f 14293/14293 14292/14292 14149/14149 +f 14343/14343 14293/14293 14199/14199 +f 14221/14221 14294/14294 14225/14225 +f 14222/14222 14223/14223 14365/14365 +f 14297/14297 14296/14296 14152/14152 +f 14366/14366 14223/14223 14296/14296 +f 14297/14297 14153/14153 14298/14298 +f 14298/14298 14224/14224 14367/14367 +f 14368/14368 14299/14299 14225/14225 +f 14369/14369 14156/14156 14300/14300 +f 14367/14367 14224/14224 14301/14301 +f 14301/14301 14156/14156 14369/14369 +f 14300/14300 14226/14226 14302/14302 +f 14159/14159 14370/14370 14302/14302 +f 14303/14303 14227/14227 14371/14371 +f 14303/14303 14304/14304 14158/14158 +f 14228/14228 14371/14371 14227/14227 +f 14230/14230 14372/14372 14228/14228 +f 14304/14304 14373/14373 14229/14229 +f 14229/14229 14374/14374 14305/14305 +f 14159/14159 14305/14305 14370/14370 +f 14375/14375 14230/14230 14306/14306 +f 14307/14307 14306/14306 14100/14100 +f 14292/14292 14376/14376 14231/14231 +f 14232/14232 14231/14231 14377/14377 +f 14232/14232 14378/14378 14233/14233 +f 14233/14233 14378/14378 14307/14307 +f 14308/14308 14164/14164 14299/14299 +f 14234/14234 14379/14379 14291/14291 +f 14308/14308 14380/14380 14234/14234 +f 14309/14309 14102/14102 14310/14310 +f 14235/14235 14309/14309 14243/14243 +f 14310/14310 14236/14236 14311/14311 +f 14312/14312 14381/14381 14169/14169 +f 14381/14381 14313/14313 14169/14169 +f 14313/14313 14382/14382 14237/14237 +f 14237/14237 14382/14382 14314/14314 +f 14315/14315 14238/14238 14383/14383 +f 14384/14384 14238/14238 14314/14314 +f 14239/14239 14316/14316 14385/14385 +f 14240/14240 14239/14239 14386/14386 +f 14316/14316 14173/14173 14387/14387 +f 14312/14312 14240/14240 14386/14386 +f 14243/14243 14388/14388 14242/14242 +f 14389/14389 14244/14244 14317/14317 +f 14390/14390 14317/14317 14175/14175 +f 14245/14245 14391/14391 14318/14318 +f 14318/14318 14390/14390 14175/14175 +f 14391/14391 14245/14245 14315/14315 +f 14322/14322 14176/14176 14319/14319 +f 14246/14246 14244/14244 14389/14389 +f 14392/14392 14247/14247 14246/14246 +f 14319/14319 14247/14247 14392/14392 +f 14248/14248 14321/14321 14393/14393 +f 14393/14393 14320/14320 14248/14248 +f 14250/14250 14249/14249 14322/14322 +f 14394/14394 14321/14321 14250/14250 +f 14320/14320 14395/14395 14251/14251 +f 14396/14396 14323/14323 14251/14251 +f 14397/14397 14324/14324 14252/14252 +f 14252/14252 14323/14323 14397/14397 +f 14326/14326 14330/14330 14187/14187 +f 14398/14398 14326/14326 14256/14256 +f 14188/14188 14399/14399 14327/14327 +f 14256/14256 14327/14327 14398/14398 +f 14399/14399 14188/14188 14328/14328 +f 14328/14328 14257/14257 14400/14400 +f 14258/14258 14330/14330 14329/14329 +f 14401/14401 14259/14259 14331/14331 +f 14402/14402 14260/14260 14259/14259 +f 14403/14403 14190/14190 14332/14332 +f 14260/14260 14404/14404 14332/14332 +f 14190/14190 14403/14403 14333/14333 +f 14400/14400 14257/14257 14333/14333 +f 14261/14261 14335/14335 14331/14331 +f 14191/14191 14334/14334 14405/14405 +f 14217/14217 14406/14406 14334/14334 +f 14335/14335 14191/14191 14405/14405 +f 14262/14262 14407/14407 14336/14336 +f 14408/14408 14262/14262 14337/14337 +f 14264/14264 14338/14338 14263/14263 +f 14409/14409 14337/14337 14263/14263 +f 14410/14410 14194/14194 14336/14336 +f 14341/14341 14197/14197 14265/14265 +f 14265/14265 14339/14339 14411/14411 +f 14340/14340 14194/14194 14410/14410 +f 14340/14340 14412/14412 14266/14266 +f 14413/14413 14339/14339 14266/14266 +f 14268/14268 14267/14267 14414/14414 +f 14415/14415 14267/14267 14341/14341 +f 14268/14268 14342/14342 14269/14269 +f 14416/14416 14343/14343 14270/14270 +f 14342/14342 14417/14417 14270/14270 +f 14344/14344 14200/14200 14345/14345 +f 14344/14344 14418/14418 14202/14202 +f 14271/14271 14419/14419 14345/14345 +f 14346/14346 14272/14272 14420/14420 +f 14347/14347 14201/14201 14346/14346 +f 14329/14329 14420/14420 14272/14272 +f 14421/14421 14271/14271 14347/14347 +f 14422/14422 14273/14273 14348/14348 +f 14202/14202 14423/14423 14349/14349 +f 14349/14349 14348/14348 14274/14274 +f 14275/14275 14273/14273 14424/14424 +f 14275/14275 14425/14425 14338/14338 +f 14276/14276 14350/14350 14426/14426 +f 14278/14278 14276/14276 14426/14426 +f 14427/14427 14351/14351 14278/14278 +f 14280/14280 14352/14352 14428/14428 +f 14429/14429 14352/14352 14281/14281 +f 14281/14281 14353/14353 14430/14430 +f 14282/14282 14431/14431 14353/14353 +f 14432/14432 14354/14354 14280/14280 +f 14283/14283 14354/14354 14433/14433 +f 14355/14355 14284/14284 14357/14357 +f 14209/14209 14355/14355 14434/14434 +f 14434/14434 14356/14356 14209/14209 +f 14431/14431 14282/14282 14356/14356 +f 14210/14210 14351/14351 14357/14357 +f 14283/14283 14433/14433 14286/14286 +f 14361/14361 14285/14285 14358/14358 +f 14359/14359 14358/14358 14212/14212 +f 14359/14359 14286/14286 14435/14435 +f 14214/14214 14361/14361 14360/14360 +f 14217/14217 14216/14216 14406/14406 +f 14216/14216 14360/14360 14406/14406 +f 36400/39456 14288/14288 14362/14362 +f 36401/39457 36400/39456 14362/14362 +f 14218/14218 14436/14436 14362/14362 +f 14363/14363 14436/14436 14218/14218 +f 14437/14437 14363/14363 14289/14289 +f 14289/14289 14290/14290 14437/14437 +f 14290/14290 14364/14364 14438/14438 +f 14439/14439 14364/14364 14291/14291 +f 14292/14292 14293/14293 14440/14440 +f 14343/14343 14441/14441 14293/14293 +f 14294/14294 14442/14442 14225/14225 +f 14223/14223 14443/14443 14365/14365 +f 14297/14297 14444/14444 14296/14296 +f 14296/14296 14444/14444 14366/14366 +f 14366/14366 14443/14443 14223/14223 +f 14298/14298 14445/14445 14297/14297 +f 14446/14446 14298/14298 14367/14367 +f 14299/14299 14368/14368 14447/14447 +f 14225/14225 14442/14442 14368/14368 +f 14369/14369 14300/14300 14448/14448 +f 14449/14449 14367/14367 14301/14301 +f 14448/14448 14301/14301 14369/14369 +f 14300/14300 14302/14302 14448/14448 +f 14302/14302 14370/14370 14450/14450 +f 14451/14451 14303/14303 14371/14371 +f 14452/14452 14304/14304 14303/14303 +f 14371/14371 14228/14228 14453/14453 +f 14372/14372 14230/14230 14375/14375 +f 14372/14372 14454/14454 14228/14228 +f 14373/14373 14304/14304 14452/14452 +f 14373/14373 14455/14455 14229/14229 +f 14305/14305 14374/14374 14456/14456 +f 14229/14229 14455/14455 14374/14374 +f 14305/14305 14457/14457 14370/14370 +f 14375/14375 14306/14306 14458/14458 +f 14306/14306 14307/14307 14378/14378 +f 14376/14376 14292/14292 14440/14440 +f 14231/14231 14376/14376 14377/14377 +f 14377/14377 14378/14378 14232/14232 +f 14308/14308 14299/14299 14447/14447 +f 14234/14234 14380/14380 14379/14379 +f 14291/14291 14379/14379 14459/14459 +f 14380/14380 14308/14308 14447/14447 +f 14310/14310 14460/14460 14309/14309 +f 14243/14243 14309/14309 14461/14461 +f 14311/14311 14462/14462 14310/14310 +f 14381/14381 14312/14312 14463/14463 +f 14313/14313 14381/14381 14464/14464 +f 14382/14382 14313/14313 14465/14465 +f 14382/14382 14384/14384 14314/14314 +f 14315/14315 14383/14383 14466/14466 +f 14238/14238 14384/14384 14383/14383 +f 14316/14316 14387/14387 14385/14385 +f 14239/14239 14385/14385 14386/14386 +f 14386/14386 14467/14467 14312/14312 +f 14461/14461 14388/14388 14243/14243 +f 14242/14242 14388/14388 14468/14468 +f 14469/14469 14389/14389 14317/14317 +f 14317/14317 14390/14390 14469/14469 +f 14470/14470 14318/14318 14391/14391 +f 14390/14390 14318/14318 14470/14470 +f 14466/14466 14391/14391 14315/14315 +f 14392/14392 14322/14322 14319/14319 +f 14471/14471 14246/14246 14389/14389 +f 14246/14246 14471/14471 14392/14392 +f 14393/14393 14321/14321 14472/14472 +f 14395/14395 14320/14320 14393/14393 +f 14394/14394 14250/14250 14322/14322 +f 14321/14321 14394/14394 14472/14472 +f 14251/14251 14395/14395 14396/14396 +f 14396/14396 14397/14397 14323/14323 +f 14473/14473 14324/14324 14397/14397 +f 14398/14398 14330/14330 14326/14326 +f 14474/14474 14398/14398 14327/14327 +f 14399/14399 14328/14328 14475/14475 +f 14328/14328 14400/14400 14475/14475 +f 14330/14330 14420/14420 14329/14329 +f 14259/14259 14401/14401 14476/14476 +f 14335/14335 14401/14401 14331/14331 +f 14404/14404 14260/14260 14402/14402 +f 14259/14259 14476/14476 14402/14402 +f 14477/14477 14403/14403 14332/14332 +f 14332/14332 14404/14404 14478/14478 +f 14403/14403 14479/14479 14333/14333 +f 14480/14480 14400/14400 14333/14333 +f 14405/14405 14334/14334 14481/14481 +f 14334/14334 14406/14406 14481/14481 +f 14481/14481 14335/14335 14405/14405 +f 14407/14407 14262/14262 14482/14482 +f 14336/14336 14407/14407 14483/14483 +f 14262/14262 14408/14408 14482/14482 +f 14409/14409 14408/14408 14337/14337 +f 14263/14263 14338/14338 14425/14425 +f 14425/14425 14409/14409 14263/14263 +f 14483/14483 14410/14410 14336/14336 +f 14484/14484 14341/14341 14265/14265 +f 14485/14485 14411/14411 14339/14339 +f 14411/14411 14484/14484 14265/14265 +f 14410/14410 14486/14486 14340/14340 +f 14412/14412 14487/14487 14266/14266 +f 14412/14412 14340/14340 14488/14488 +f 14266/14266 14487/14487 14413/14413 +f 14413/14413 14489/14489 14339/14339 +f 14417/14417 14268/14268 14414/14414 +f 14415/14415 14414/14414 14267/14267 +f 14490/14490 14415/14415 14341/14341 +f 14268/14268 14417/14417 14342/14342 +f 14417/14417 14416/14416 14270/14270 +f 14343/14343 14416/14416 14491/14491 +f 14419/14419 14344/14344 14345/14345 +f 14418/14418 14344/14344 14492/14492 +f 14423/14423 14202/14202 14418/14418 +f 14419/14419 14271/14271 14493/14493 +f 14420/14420 14494/14494 14346/14346 +f 14346/14346 14495/14495 14347/14347 +f 14421/14421 14493/14493 14271/14271 +f 14496/14496 14421/14421 14347/14347 +f 14497/14497 14422/14422 14348/14348 +f 14273/14273 14422/14422 14498/14498 +f 14423/14423 14499/14499 14349/14349 +f 14499/14499 14348/14348 14349/14349 +f 14424/14424 14273/14273 14498/14498 +f 14425/14425 14275/14275 14424/14424 +f 14426/14426 14350/14350 14500/14500 +f 14278/14278 14426/14426 14427/14427 +f 14351/14351 14427/14427 14501/14501 +f 14352/14352 14502/14502 14428/14428 +f 14503/14503 14280/14280 14428/14428 +f 14504/14504 14352/14352 14429/14429 +f 14281/14281 14430/14430 14429/14429 +f 14430/14430 14353/14353 14505/14505 +f 14431/14431 14505/14505 14353/14353 +f 14506/14506 14354/14354 14432/14432 +f 14503/14503 14432/14432 14280/14280 +f 14506/14506 14433/14433 14354/14354 +f 14507/14507 14355/14355 14357/14357 +f 14434/14434 14355/14355 14508/14508 +f 14509/14509 14356/14356 14434/14434 +f 14431/14431 14356/14356 14509/14509 +f 14351/14351 14501/14501 14357/14357 +f 14433/14433 14506/14506 14286/14286 +f 14358/14358 14510/14510 14361/14361 +f 14511/14511 14358/14358 14359/14359 +f 14286/14286 14506/14506 14435/14435 +f 14435/14435 14512/14512 14359/14359 +f 14360/14360 14361/14361 14513/14513 +f 14406/14406 14360/14360 14514/14514 +f 14362/14362 36402/39458 36401/39459 +f 36402/39460 14362/14362 14436/14436 +f 36403/39461 36402/39460 14436/14436 +f 14436/14436 14363/14363 14437/14437 +f 14290/14290 14515/14515 14437/14437 +f 14364/14364 14516/14516 14438/14438 +f 14515/14515 14290/14290 14438/14438 +f 14291/14291 14459/14459 14439/14439 +f 14364/14364 14439/14439 14517/14517 +f 14518/14518 14440/14440 14293/14293 +f 14343/14343 14519/14519 14441/14441 +f 14293/14293 14441/14441 14520/14520 +f 14365/14365 14443/14443 14521/14521 +f 14445/14445 14444/14444 14297/14297 +f 14522/14522 14366/14366 14444/14444 +f 14366/14366 14523/14523 14443/14443 +f 14445/14445 14298/14298 14524/14524 +f 14446/14446 14525/14525 14298/14298 +f 14526/14526 14446/14446 14367/14367 +f 14368/14368 14527/14527 14447/14447 +f 14368/14368 14442/14442 14528/14528 +f 14367/14367 14449/14449 14526/14526 +f 14301/14301 14529/14529 14449/14449 +f 14529/14529 14301/14301 14448/14448 +f 14302/14302 14450/14450 14448/14448 +f 14450/14450 14370/14370 14457/14457 +f 14451/14451 14371/14371 14530/14530 +f 14452/14452 14303/14303 14451/14451 +f 14453/14453 14228/14228 14454/14454 +f 14531/14531 14371/14371 14453/14453 +f 14375/14375 14532/14532 14372/14372 +f 14372/14372 14533/14533 14454/14454 +f 14452/14452 14534/14534 14373/14373 +f 14455/14455 14373/14373 14535/14535 +f 14536/14536 14456/14456 14374/14374 +f 14457/14457 14305/14305 14456/14456 +f 14455/14455 14536/14536 14374/14374 +f 14458/14458 14306/14306 14378/14378 +f 14458/14458 14532/14532 14375/14375 +f 14376/14376 14440/14440 14537/14537 +f 14377/14377 14376/14376 14537/14537 +f 14538/14538 14378/14378 14377/14377 +f 14527/14527 14379/14379 14380/14380 +f 14539/14539 14459/14459 14379/14379 +f 14380/14380 14447/14447 14527/14527 +f 14461/14461 14309/14309 14460/14460 +f 14540/14540 14460/14460 14310/14310 +f 14310/14310 14462/14462 14540/14540 +f 14463/14463 14541/14541 14381/14381 +f 14312/14312 14467/14467 14463/14463 +f 14464/14464 14381/14381 14542/14542 +f 14313/14313 14464/14464 14543/14543 +f 14465/14465 14544/14544 14382/14382 +f 14313/14313 14543/14543 14465/14465 +f 14382/14382 14545/14545 14384/14384 +f 14546/14546 14466/14466 14383/14383 +f 14384/14384 14546/14546 14383/14383 +f 14547/14547 14385/14385 14387/14387 +f 14548/14548 14386/14386 14385/14385 +f 14467/14467 14386/14386 14549/14549 +f 14550/14550 14388/14388 14461/14461 +f 14551/14551 14242/14242 14468/14468 +f 14468/14468 14388/14388 14552/14552 +f 14389/14389 14469/14469 14553/14553 +f 14469/14469 14390/14390 14470/14470 +f 14391/14391 14554/14554 14470/14470 +f 14555/14555 14391/14391 14466/14466 +f 14556/14556 14322/14322 14392/14392 +f 14389/14389 14557/14557 14471/14471 +f 14392/14392 14471/14471 14556/14556 +f 14558/14558 14393/14393 14472/14472 +f 14395/14395 14393/14393 14559/14559 +f 14560/14560 14394/14394 14322/14322 +f 14472/14472 14394/14394 14561/14561 +f 14562/14562 14396/14396 14395/14395 +f 14397/14397 14396/14396 14563/14563 +f 14563/14563 14473/14473 14397/14397 +f 14330/14330 14398/14398 14564/14564 +f 14474/14474 14564/14564 14398/14398 +f 14399/14399 14475/14475 14565/14565 +f 14475/14475 14400/14400 14566/14566 +f 14564/14564 14420/14420 14330/14330 +f 14401/14401 14567/14567 14476/14476 +f 14335/14335 14481/14481 14401/14401 +f 14402/14402 14476/14476 14404/14404 +f 14479/14479 14403/14403 14477/14477 +f 14332/14332 14568/14568 14477/14477 +f 14404/14404 14569/14569 14478/14478 +f 14478/14478 14568/14568 14332/14332 +f 14333/14333 14479/14479 14480/14480 +f 14400/14400 14480/14480 14566/14566 +f 14406/14406 14570/14570 14481/14481 +f 14482/14482 14483/14483 14407/14407 +f 14408/14408 14571/14571 14482/14482 +f 14571/14571 14408/14408 14409/14409 +f 14409/14409 14425/14425 14572/14572 +f 14410/14410 14483/14483 14573/14573 +f 14484/14484 14490/14490 14341/14341 +f 14574/14574 14411/14411 14485/14485 +f 14485/14485 14339/14339 14575/14575 +f 14576/14576 14484/14484 14411/14411 +f 14486/14486 14410/14410 14577/14577 +f 14488/14488 14340/14340 14486/14486 +f 14487/14487 14412/14412 14578/14578 +f 14579/14579 14412/14412 14488/14488 +f 14580/14580 14413/14413 14487/14487 +f 14413/14413 14581/14581 14489/14489 +f 14339/14339 14489/14489 14582/14582 +f 14417/14417 14414/14414 14415/14415 +f 14415/14415 14490/14490 14416/14416 +f 14416/14416 14417/14417 14415/14415 +f 14519/14519 14343/14343 14491/14491 +f 14416/14416 14490/14490 14491/14491 +f 14344/14344 14419/14419 14492/14492 +f 14418/14418 14492/14492 14583/14583 +f 14423/14423 14418/14418 14584/14584 +f 14492/14492 14419/14419 14493/14493 +f 14495/14495 14346/14346 14494/14494 +f 14494/14494 14420/14420 14585/14585 +f 14347/14347 14495/14495 14496/14496 +f 14421/14421 14586/14586 14493/14493 +f 14496/14496 14586/14586 14421/14421 +f 14422/14422 14497/14497 14587/14587 +f 14497/14497 14348/14348 14588/14588 +f 14589/14589 14498/14498 14422/14422 +f 14423/14423 14590/14590 14499/14499 +f 14591/14591 14348/14348 14499/14499 +f 14592/14592 14424/14424 14498/14498 +f 14592/14592 14425/14425 14424/14424 +f 14500/14500 14593/14593 14426/14426 +f 14593/14593 14427/14427 14426/14426 +f 14427/14427 14594/14594 14501/14501 +f 14504/14504 14502/14502 14352/14352 +f 14502/14502 14595/14595 14428/14428 +f 14595/14595 14503/14503 14428/14428 +f 14504/14504 14429/14429 14430/14430 +f 14596/14596 14430/14430 14505/14505 +f 14505/14505 14431/14431 14597/14597 +f 14503/14503 14506/14506 14432/14432 +f 14598/14598 14507/14507 14357/14357 +f 14355/14355 14507/14507 14508/14508 +f 14508/14508 14599/14599 14434/14434 +f 14434/14434 14599/14599 14509/14509 +f 14509/14509 14597/14597 14431/14431 +f 14357/14357 14501/14501 14598/14598 +f 14511/14511 14510/14510 14358/14358 +f 14361/14361 14510/14510 14600/14600 +f 14512/14512 14511/14511 14359/14359 +f 14435/14435 14506/14506 14601/14601 +f 14602/14602 14512/14512 14435/14435 +f 14600/14600 14513/14513 14361/14361 +f 14514/14514 14360/14360 14513/14513 +f 14570/14570 14406/14406 14514/14514 +f 36403/39462 14436/14436 14603/14603 +f 36404/39463 36403/39462 14603/14603 +f 14436/14436 14437/14437 14603/14603 +f 14438/14438 14437/14437 14515/14515 +f 14516/14516 14364/14364 14604/14604 +f 14516/14516 14437/14437 14438/14438 +f 14439/14439 14459/14459 14605/14605 +f 14517/14517 14604/14604 14364/14364 +f 14517/14517 14439/14439 14605/14605 +f 14520/14520 14518/14518 14293/14293 +f 14606/14606 14440/14440 14518/14518 +f 14441/14441 14519/14519 14607/14607 +f 14608/14608 14520/14520 14441/14441 +f 14443/14443 14609/14609 14521/14521 +f 14522/14522 14444/14444 14445/14445 +f 14366/14366 14522/14522 14523/14523 +f 14443/14443 14523/14523 14610/14610 +f 14298/14298 14525/14525 14524/14524 +f 14611/14611 14445/14445 14524/14524 +f 14525/14525 14446/14446 14524/14524 +f 14446/14446 14526/14526 14611/14611 +f 14528/14528 14527/14527 14368/14368 +f 14449/14449 14612/14612 14526/14526 +f 14613/14613 14449/14449 14529/14529 +f 14448/14448 14613/14613 14529/14529 +f 14450/14450 14613/14613 14448/14448 +f 14614/14614 14450/14450 14457/14457 +f 14371/14371 14531/14531 14530/14530 +f 14530/14530 14615/14615 14451/14451 +f 14615/14615 14452/14452 14451/14451 +f 14454/14454 14616/14616 14453/14453 +f 14616/14616 14531/14531 14453/14453 +f 14533/14533 14372/14372 14532/14532 +f 14533/14533 14617/14617 14454/14454 +f 14534/14534 14452/14452 14618/14618 +f 14373/14373 14534/14534 14619/14619 +f 14619/14619 14535/14535 14373/14373 +f 14535/14535 14536/14536 14455/14455 +f 14620/14620 14456/14456 14536/14536 +f 14456/14456 14614/14614 14457/14457 +f 14458/14458 14378/14378 14538/14538 +f 14458/14458 14538/14538 14532/14532 +f 14606/14606 14537/14537 14440/14440 +f 14538/14538 14377/14377 14537/14537 +f 14527/14527 14528/14528 14379/14379 +f 14621/14621 14539/14539 14379/14379 +f 14605/14605 14459/14459 14539/14539 +f 14550/14550 14461/14461 14460/14460 +f 14540/14540 14622/14622 14460/14460 +f 14462/14462 14623/14623 14540/14540 +f 14541/14541 14463/14463 14624/14624 +f 14624/14624 14381/14381 14541/14541 +f 14463/14463 14467/14467 14624/14624 +f 14381/14381 14624/14624 14542/14542 +f 14542/14542 14625/14625 14464/14464 +f 14543/14543 14464/14464 14625/14625 +f 14545/14545 14382/14382 14544/14544 +f 14626/14626 14544/14544 14465/14465 +f 14543/14543 14627/14627 14465/14465 +f 14384/14384 14545/14545 14628/14628 +f 14466/14466 14546/14546 14629/14629 +f 14628/14628 14546/14546 14384/14384 +f 14385/14385 14547/14547 14548/14548 +f 14548/14548 14549/14549 14386/14386 +f 14630/14630 14467/14467 14549/14549 +f 14388/14388 14550/14550 14631/14631 +f 14632/14632 14551/14551 14468/14468 +f 14631/14631 14552/14552 14388/14388 +f 14632/14632 14468/14468 14552/14552 +f 14553/14553 14557/14557 14389/14389 +f 14633/14633 14553/14553 14469/14469 +f 14634/14634 14469/14469 14470/14470 +f 14554/14554 14634/14634 14470/14470 +f 14554/14554 14391/14391 14555/14555 +f 14466/14466 14629/14629 14555/14555 +f 14322/14322 14556/14556 14560/14560 +f 14561/14561 14471/14471 14557/14557 +f 14471/14471 14560/14560 14556/14556 +f 14635/14635 14558/14558 14472/14472 +f 14393/14393 14558/14558 14559/14559 +f 14395/14395 14559/14559 14562/14562 +f 14561/14561 14394/14394 14560/14560 +f 14636/14636 14472/14472 14561/14561 +f 14563/14563 14396/14396 14562/14562 +f 14473/14473 14563/14563 14637/14637 +f 14475/14475 14566/14566 14565/14565 +f 14564/14564 14585/14585 14420/14420 +f 14476/14476 14567/14567 14638/14638 +f 14401/14401 14639/14639 14567/14567 +f 14401/14401 14481/14481 14639/14639 +f 14404/14404 14476/14476 14569/14569 +f 14640/14640 14479/14479 14477/14477 +f 14640/14640 14477/14477 14568/14568 +f 14478/14478 14569/14569 14641/14641 +f 14568/14568 14478/14478 14642/14642 +f 14479/14479 14643/14643 14480/14480 +f 14480/14480 14643/14643 14566/14566 +f 14644/14644 14481/14481 14570/14570 +f 14482/14482 14645/14645 14483/14483 +f 14646/14646 14482/14482 14571/14571 +f 14572/14572 14571/14571 14409/14409 +f 14572/14572 14425/14425 14592/14592 +f 14483/14483 14645/14645 14573/14573 +f 14577/14577 14410/14410 14573/14573 +f 14484/14484 14647/14647 14490/14490 +f 14485/14485 14648/14648 14574/14574 +f 14574/14574 14576/14576 14411/14411 +f 14339/14339 14582/14582 14575/14575 +f 14649/14649 14485/14485 14575/14575 +f 14484/14484 14576/14576 14650/14650 +f 14577/14577 14651/14651 14486/14486 +f 14486/14486 14651/14651 14488/14488 +f 14412/14412 14579/14579 14578/14578 +f 14578/14578 14652/14652 14487/14487 +f 14653/14653 14579/14579 14488/14488 +f 14654/14654 14413/14413 14580/14580 +f 14652/14652 14580/14580 14487/14487 +f 14413/14413 14654/14654 14581/14581 +f 14489/14489 14581/14581 14582/14582 +f 14519/14519 14491/14491 14490/14490 +f 14492/14492 14655/14655 14583/14583 +f 14418/14418 14583/14583 14584/14584 +f 14423/14423 14584/14584 14590/14590 +f 14492/14492 14493/14493 14656/14656 +f 14494/14494 14496/14496 14495/14495 +f 14587/14587 14497/14497 14657/14657 +f 14422/14422 14587/14587 14589/14589 +f 14588/14588 14348/14348 14591/14591 +f 14588/14588 14658/14658 14497/14497 +f 14659/14659 14498/14498 14589/14589 +f 14590/14590 14660/14660 14499/14499 +f 14499/14499 14661/14661 14591/14591 +f 14662/14662 14592/14592 14498/14498 +f 14500/14500 14663/14663 14593/14593 +f 14594/14594 14427/14427 14593/14593 +f 14594/14594 14664/14664 14501/14501 +f 14665/14665 14502/14502 14504/14504 +f 14595/14595 14502/14502 14666/14666 +f 14503/14503 14595/14595 14667/14667 +f 14504/14504 14430/14430 14596/14596 +f 14505/14505 14668/14668 14596/14596 +f 14505/14505 14597/14597 14668/14668 +f 14506/14506 14503/14503 14669/14669 +f 14598/14598 14670/14670 14507/14507 +f 14670/14670 14508/14508 14507/14507 +f 14508/14508 14670/14670 14599/14599 +f 14599/14599 14671/14671 14509/14509 +f 14509/14509 14668/14668 14597/14597 +f 14664/14664 14598/14598 14501/14501 +f 14510/14510 14511/14511 14672/14672 +f 14600/14600 14510/14510 14672/14672 +f 14512/14512 14673/14673 14511/14511 +f 14601/14601 14506/14506 14669/14669 +f 14601/14601 14674/14674 14435/14435 +f 14512/14512 14602/14602 14673/14673 +f 14435/14435 14674/14674 14602/14602 +f 14600/14600 14675/14675 14513/14513 +f 14676/14676 14514/14514 14513/14513 +f 14570/14570 14514/14514 14677/14677 +f 14603/14603 36405/39464 36404/39465 +f 36405/39466 14603/14603 14437/14437 +f 36406/39467 36405/39466 14437/14437 +f 36407/39468 14516/14516 14604/14604 +f 36408/39469 36407/39468 14604/14604 +f 36409/39470 14437/14437 14516/14516 +f 36410/39471 36409/39470 14516/14516 +f 36408/39472 14604/14604 14517/14517 +f 36411/39473 36408/39472 14517/14517 +f 36412/39474 14517/14517 14605/14605 +f 36413/39475 36412/39474 14605/14605 +f 14518/14518 14520/14520 14678/14678 +f 14518/14518 14679/14679 14606/14606 +f 14680/14680 14441/14441 14607/14607 +f 14490/14490 14607/14607 14519/14519 +f 14520/14520 14608/14608 14681/14681 +f 14441/14441 14680/14680 14608/14608 +f 14521/14521 14609/14609 14682/14682 +f 14443/14443 14610/14610 14609/14609 +f 14522/14522 14445/14445 14611/14611 +f 14523/14523 14522/14522 14683/14683 +f 14610/14610 14523/14523 14609/14609 +f 14611/14611 14524/14524 14446/14446 +f 14684/14684 14611/14611 14526/14526 +f 14449/14449 14685/14685 14612/14612 +f 14612/14612 14686/14686 14526/14526 +f 14685/14685 14449/14449 14613/14613 +f 14613/14613 14450/14450 14687/14687 +f 14687/14687 14450/14450 14614/14614 +f 14530/14530 14531/14531 14688/14688 +f 14615/14615 14530/14530 14689/14689 +f 14618/14618 14452/14452 14615/14615 +f 14454/14454 14690/14690 14616/14616 +f 14616/14616 14691/14691 14531/14531 +f 14692/14692 14533/14533 14532/14532 +f 14692/14692 14617/14617 14533/14533 +f 14690/14690 14454/14454 14617/14617 +f 14534/14534 14618/14618 14693/14693 +f 14619/14619 14534/14534 14694/14694 +f 14619/14619 14694/14694 14535/14535 +f 14535/14535 14695/14695 14536/14536 +f 14696/14696 14456/14456 14620/14620 +f 14697/14697 14620/14620 14536/14536 +f 14614/14614 14456/14456 14696/14696 +f 14538/14538 14698/14698 14532/14532 +f 14537/14537 14606/14606 14698/14698 +f 14538/14538 14537/14537 14698/14698 +f 14379/14379 14528/14528 14621/14621 +f 14699/14699 14539/14539 14621/14621 +f 14605/14605 14539/14539 14700/14700 +f 14550/14550 14460/14460 14622/14622 +f 14701/14701 14622/14622 14540/14540 +f 14540/14540 14623/14623 14702/14702 +f 14462/14462 14703/14703 14623/14623 +f 14624/14624 14467/14467 14630/14630 +f 14542/14542 14624/14624 14704/14704 +f 14705/14705 14625/14625 14542/14542 +f 14543/14543 14625/14625 14705/14705 +f 14544/14544 14626/14626 14545/14545 +f 14465/14465 14627/14627 14626/14626 +f 14627/14627 14543/14543 14705/14705 +f 14628/14628 14545/14545 14706/14706 +f 14628/14628 14629/14629 14546/14546 +f 14707/14707 14548/14548 14547/14547 +f 14549/14549 14548/14548 14708/14708 +f 14630/14630 14549/14549 14709/14709 +f 14631/14631 14550/14550 14710/14710 +f 14632/14632 14711/14711 14551/14551 +f 14712/14712 14552/14552 14631/14631 +f 14552/14552 14712/14712 14632/14632 +f 14557/14557 14553/14553 14713/14713 +f 14713/14713 14553/14553 14633/14633 +f 14634/14634 14633/14633 14469/14469 +f 14554/14554 14713/14713 14634/14634 +f 14555/14555 14714/14714 14554/14554 +f 14555/14555 14629/14629 14715/14715 +f 14561/14561 14560/14560 14471/14471 +f 14561/14561 14557/14557 14636/14636 +f 14559/14559 14558/14558 14635/14635 +f 14716/14716 14635/14635 14472/14472 +f 14717/14717 14562/14562 14559/14559 +f 14636/14636 14718/14718 14472/14472 +f 14563/14563 14562/14562 14719/14719 +f 14637/14637 14563/14563 14719/14719 +f 14637/14637 14720/14720 14473/14473 +f 14566/14566 14721/14721 14565/14565 +f 14567/14567 14639/14639 14638/14638 +f 14638/14638 14722/14722 14476/14476 +f 14639/14639 14481/14481 14644/14644 +f 14723/14723 14569/14569 14476/14476 +f 14479/14479 14640/14640 14724/14724 +f 14568/14568 14725/14725 14640/14640 +f 14641/14641 14726/14726 14478/14478 +f 14641/14641 14569/14569 14723/14723 +f 14726/14726 14642/14642 14478/14478 +f 14642/14642 14725/14725 14568/14568 +f 14479/14479 14727/14727 14643/14643 +f 14728/14728 14566/14566 14643/14643 +f 14570/14570 14729/14729 14644/14644 +f 14482/14482 14646/14646 14645/14645 +f 14659/14659 14646/14646 14571/14571 +f 14572/14572 14662/14662 14571/14571 +f 14592/14592 14662/14662 14572/14572 +f 14573/14573 14645/14645 14646/14646 +f 14646/14646 14577/14577 14573/14573 +f 14647/14647 14484/14484 14650/14650 +f 14490/14490 14647/14647 14607/14607 +f 14648/14648 14485/14485 14730/14730 +f 14648/14648 14731/14731 14574/14574 +f 14731/14731 14576/14576 14574/14574 +f 14732/14732 14575/14575 14582/14582 +f 14649/14649 14575/14575 14732/14732 +f 14649/14649 14733/14733 14485/14485 +f 14650/14650 14576/14576 14734/14734 +f 14651/14651 14577/14577 14735/14735 +f 14651/14651 14653/14653 14488/14488 +f 14736/14736 14578/14578 14579/14579 +f 14652/14652 14578/14578 14736/14736 +f 14653/14653 14737/14737 14579/14579 +f 14654/14654 14580/14580 14738/14738 +f 14580/14580 14652/14652 14738/14738 +f 14581/14581 14654/14654 14739/14739 +f 14740/14740 14582/14582 14581/14581 +f 14583/14583 14655/14655 14741/14741 +f 14655/14655 14492/14492 14656/14656 +f 14590/14590 14584/14584 14583/14583 +f 14656/14656 14493/14493 14742/14742 +f 14657/14657 14497/14497 14743/14743 +f 14657/14657 14744/14744 14587/14587 +f 14589/14589 14587/14587 14745/14745 +f 14746/14746 14588/14588 14591/14591 +f 14747/14747 14658/14658 14588/14588 +f 14497/14497 14658/14658 14743/14743 +f 14745/14745 14659/14659 14589/14589 +f 14659/14659 14662/14662 14498/14498 +f 14590/14590 14748/14748 14660/14660 +f 14660/14660 14661/14661 14499/14499 +f 14591/14591 14661/14661 14749/14749 +f 14663/14663 14750/14750 14593/14593 +f 14500/14500 14751/14751 14663/14663 +f 14593/14593 14750/14750 14594/14594 +f 14664/14664 14594/14594 14750/14750 +f 14665/14665 14666/14666 14502/14502 +f 14665/14665 14504/14504 14752/14752 +f 14666/14666 14667/14667 14595/14595 +f 14503/14503 14667/14667 14753/14753 +f 14504/14504 14596/14596 14752/14752 +f 14668/14668 14754/14754 14596/14596 +f 14669/14669 14503/14503 14755/14755 +f 14598/14598 14756/14756 14670/14670 +f 14757/14757 14599/14599 14670/14670 +f 14599/14599 14758/14758 14671/14671 +f 14509/14509 14671/14671 14668/14668 +f 14598/14598 14664/14664 14756/14756 +f 14511/14511 14759/14759 14672/14672 +f 14675/14675 14600/14600 14672/14672 +f 14511/14511 14673/14673 14759/14759 +f 14760/14760 14601/14601 14669/14669 +f 14601/14601 14760/14760 14674/14674 +f 14673/14673 14602/14602 14761/14761 +f 14762/14762 14602/14602 14674/14674 +f 14513/14513 14675/14675 14763/14763 +f 14514/14514 14676/14676 14764/14764 +f 14513/14513 14763/14763 14676/14676 +f 14729/14729 14570/14570 14677/14677 +f 14677/14677 14514/14514 14764/14764 +f 14437/14437 36409/39476 36406/39477 +f 14516/14516 36407/39478 36414/39479 +f 14516/14516 36414/39480 36410/39481 +f 14517/14517 36415/39482 36411/39483 +f 36413/39484 14605/14605 14700/14700 +f 36416/39485 36413/39484 14700/14700 +f 14517/14517 36412/39486 36415/39487 +f 14679/14679 14518/14518 14678/14678 +f 14520/14520 14681/14681 14678/14678 +f 14606/14606 14679/14679 14765/14765 +f 14607/14607 14766/14766 14680/14680 +f 14681/14681 14608/14608 14767/14767 +f 14608/14608 14680/14680 14768/14768 +f 14682/14682 14609/14609 14523/14523 +f 14521/14521 14682/14682 14769/14769 +f 14522/14522 14611/14611 14684/14684 +f 14683/14683 14522/14522 14684/14684 +f 14523/14523 14683/14683 14770/14770 +f 14686/14686 14684/14684 14526/14526 +f 14771/14771 14612/14612 14685/14685 +f 14772/14772 14686/14686 14612/14612 +f 14687/14687 14685/14685 14613/14613 +f 14614/14614 14773/14773 14687/14687 +f 14689/14689 14530/14530 14688/14688 +f 14688/14688 14531/14531 14774/14774 +f 14615/14615 14689/14689 14775/14775 +f 14615/14615 14776/14776 14618/14618 +f 14616/14616 14690/14690 14617/14617 +f 14774/14774 14531/14531 14691/14691 +f 14691/14691 14616/14616 14617/14617 +f 14692/14692 14532/14532 14777/14777 +f 14692/14692 14778/14778 14617/14617 +f 14693/14693 14618/14618 14779/14779 +f 14780/14780 14534/14534 14693/14693 +f 14694/14694 14534/14534 14780/14780 +f 14535/14535 14694/14694 14781/14781 +f 14536/14536 14695/14695 14697/14697 +f 14781/14781 14695/14695 14535/14535 +f 14782/14782 14696/14696 14620/14620 +f 14697/14697 14782/14782 14620/14620 +f 14614/14614 14696/14696 14783/14783 +f 14532/14532 14698/14698 14777/14777 +f 14777/14777 14698/14698 14606/14606 +f 14700/14700 14539/14539 14699/14699 +f 36417/39488 14699/14699 14621/14621 +f 36418/39489 36417/39488 14621/14621 +f 14622/14622 14784/14784 14550/14550 +f 14540/14540 14702/14702 14701/14701 +f 14701/14701 14784/14784 14622/14622 +f 14785/14785 14702/14702 14623/14623 +f 14703/14703 14786/14786 14623/14623 +f 14630/14630 14704/14704 14624/14624 +f 14542/14542 14704/14704 14705/14705 +f 14706/14706 14545/14545 14626/14626 +f 14706/14706 14626/14626 14627/14627 +f 14705/14705 14706/14706 14627/14627 +f 14706/14706 14787/14787 14628/14628 +f 14629/14629 14628/14628 14788/14788 +f 14789/14789 14548/14548 14707/14707 +f 14789/14789 14708/14708 14548/14548 +f 14549/14549 14708/14708 14790/14790 +f 14630/14630 14709/14709 14791/14791 +f 14790/14790 14709/14709 14549/14549 +f 14710/14710 14550/14550 14784/14784 +f 14710/14710 14784/14784 14631/14631 +f 14792/14792 14711/14711 14632/14632 +f 14631/14631 14784/14784 14712/14712 +f 14712/14712 14784/14784 14632/14632 +f 14636/14636 14557/14557 14713/14713 +f 14713/14713 14633/14633 14634/14634 +f 14554/14554 14714/14714 14713/14713 +f 14714/14714 14555/14555 14793/14793 +f 14555/14555 14715/14715 14793/14793 +f 14715/14715 14629/14629 14788/14788 +f 14635/14635 14794/14794 14559/14559 +f 14795/14795 14635/14635 14716/14716 +f 14716/14716 14472/14472 14718/14718 +f 14719/14719 14562/14562 14717/14717 +f 14559/14559 14796/14796 14717/14717 +f 14793/14793 14718/14718 14636/14636 +f 14719/14719 14797/14797 14637/14637 +f 14798/14798 14720/14720 14637/14637 +f 14720/14720 14799/14799 14473/14473 +f 14728/14728 14721/14721 14566/14566 +f 14638/14638 14639/14639 14800/14800 +f 14638/14638 14800/14800 14722/14722 +f 14476/14476 14722/14722 14723/14723 +f 14644/14644 14800/14800 14639/14639 +f 14801/14801 14724/14724 14640/14640 +f 14479/14479 14724/14724 14727/14727 +f 14725/14725 14801/14801 14640/14640 +f 14641/14641 14802/14802 14726/14726 +f 14641/14641 14723/14723 14802/14802 +f 14726/14726 14803/14803 14642/14642 +f 14801/14801 14725/14725 14642/14642 +f 14643/14643 14727/14727 14728/14728 +f 14729/14729 14800/14800 14644/14644 +f 14571/14571 14662/14662 14659/14659 +f 14646/14646 14659/14659 14804/14804 +f 14577/14577 14646/14646 14804/14804 +f 14766/14766 14647/14647 14650/14650 +f 14647/14647 14766/14766 14607/14607 +f 14805/14805 14648/14648 14730/14730 +f 14485/14485 14733/14733 14730/14730 +f 14648/14648 14805/14805 14731/14731 +f 14576/14576 14731/14731 14734/14734 +f 14732/14732 14582/14582 14806/14806 +f 14733/14733 14649/14649 14732/14732 +f 14734/14734 14807/14807 14650/14650 +f 14577/14577 14808/14808 14735/14735 +f 14653/14653 14651/14651 14735/14735 +f 14736/14736 14579/14579 14737/14737 +f 14736/14736 14809/14809 14652/14652 +f 14810/14810 14737/14737 14653/14653 +f 14738/14738 14811/14811 14654/14654 +f 14738/14738 14652/14652 14812/14812 +f 14654/14654 14811/14811 14739/14739 +f 14739/14739 14813/14813 14581/14581 +f 14581/14581 14814/14814 14740/14740 +f 14740/14740 14815/14815 14582/14582 +f 14741/14741 14655/14655 14816/14816 +f 14583/14583 14741/14741 14817/14817 +f 14656/14656 14742/14742 14655/14655 +f 14817/14817 14590/14590 14583/14583 +f 14657/14657 14743/14743 14818/14818 +f 14819/14819 14744/14744 14657/14657 +f 14745/14745 14587/14587 14744/14744 +f 14820/14820 14588/14588 14746/14746 +f 14746/14746 14591/14591 14749/14749 +f 14747/14747 14821/14821 14658/14658 +f 14820/14820 14747/14747 14588/14588 +f 14743/14743 14658/14658 14822/14822 +f 14745/14745 14823/14823 14659/14659 +f 14748/14748 14590/14590 14817/14817 +f 14660/14660 14748/14748 14661/14661 +f 14749/14749 14661/14661 14824/14824 +f 14750/14750 14663/14663 14825/14825 +f 14663/14663 14751/14751 14825/14825 +f 14750/14750 14826/14826 14664/14664 +f 14827/14827 14666/14666 14665/14665 +f 14752/14752 14828/14828 14665/14665 +f 14829/14829 14667/14667 14666/14666 +f 14503/14503 14753/14753 14755/14755 +f 14830/14830 14753/14753 14667/14667 +f 14596/14596 14754/14754 14752/14752 +f 14754/14754 14668/14668 14758/14758 +f 14831/14831 14669/14669 14755/14755 +f 14826/14826 14670/14670 14756/14756 +f 14758/14758 14599/14599 14757/14757 +f 14670/14670 14826/14826 14757/14757 +f 14668/14668 14671/14671 14758/14758 +f 14826/14826 14756/14756 14664/14664 +f 14759/14759 14832/14832 14672/14672 +f 14833/14833 14675/14675 14672/14672 +f 14759/14759 14673/14673 14761/14761 +f 14760/14760 14669/14669 14831/14831 +f 14760/14760 14834/14834 14674/14674 +f 14761/14761 14602/14602 14762/14762 +f 14674/14674 14834/14834 14762/14762 +f 14835/14835 14763/14763 14675/14675 +f 14764/14764 14676/14676 14836/14836 +f 14837/14837 14676/14676 14763/14763 +f 14729/14729 14677/14677 14838/14838 +f 14839/14839 14677/14677 14764/14764 +f 36416/39490 14700/14700 14699/14699 +f 36419/39491 36416/39490 14699/14699 +f 14678/14678 14840/14840 14679/14679 +f 14681/14681 14840/14840 14678/14678 +f 14765/14765 14679/14679 14841/14841 +f 14606/14606 14765/14765 14777/14777 +f 14766/14766 14768/14768 14680/14680 +f 14842/14842 14767/14767 14608/14608 +f 14767/14767 14843/14843 14681/14681 +f 14608/14608 14768/14768 14842/14842 +f 14523/14523 14770/14770 14682/14682 +f 14682/14682 14844/14844 14769/14769 +f 14683/14683 14684/14684 14845/14845 +f 14770/14770 14683/14683 14846/14846 +f 14845/14845 14684/14684 14686/14686 +f 14771/14771 14847/14847 14612/14612 +f 14685/14685 14773/14773 14771/14771 +f 14846/14846 14686/14686 14772/14772 +f 14772/14772 14612/14612 14848/14848 +f 14773/14773 14685/14685 14687/14687 +f 14773/14773 14614/14614 14783/14783 +f 14688/14688 14849/14849 14689/14689 +f 14774/14774 14849/14849 14688/14688 +f 14615/14615 14775/14775 14850/14850 +f 14689/14689 14849/14849 14775/14775 +f 14779/14779 14618/14618 14776/14776 +f 14850/14850 14776/14776 14615/14615 +f 14774/14774 14691/14691 14851/14851 +f 14617/14617 14852/14852 14691/14691 +f 14777/14777 14853/14853 14692/14692 +f 14778/14778 14852/14852 14617/14617 +f 14854/14854 14778/14778 14692/14692 +f 14855/14855 14693/14693 14779/14779 +f 14856/14856 14780/14780 14693/14693 +f 14857/14857 14694/14694 14780/14780 +f 14694/14694 14857/14857 14781/14781 +f 14695/14695 14858/14858 14697/14697 +f 14781/14781 14858/14858 14695/14695 +f 14782/14782 14859/14859 14696/14696 +f 14697/14697 14858/14858 14782/14782 +f 14696/14696 14860/14860 14783/14783 +f 14621/14621 36420/39492 36418/39493 +f 14699/14699 36417/39494 36421/39495 +f 14702/14702 14792/14792 14701/14701 +f 14632/14632 14784/14784 14701/14701 +f 14702/14702 14785/14785 14861/14861 +f 14786/14786 14785/14785 14623/14623 +f 14862/14862 14704/14704 14630/14630 +f 14705/14705 14704/14704 14787/14787 +f 14787/14787 14706/14706 14705/14705 +f 14628/14628 14787/14787 14788/14788 +f 14707/14707 14863/14863 14789/14789 +f 14863/14863 14708/14708 14789/14789 +f 14864/14864 14790/14790 14708/14708 +f 14791/14791 14709/14709 14865/14865 +f 14630/14630 14791/14791 14862/14862 +f 14865/14865 14709/14709 14790/14790 +f 14632/14632 14701/14701 14792/14792 +f 14711/14711 14792/14792 14861/14861 +f 14636/14636 14713/14713 14714/14714 +f 14714/14714 14793/14793 14636/14636 +f 14715/14715 14866/14866 14793/14793 +f 14866/14866 14715/14715 14788/14788 +f 14635/14635 14867/14867 14794/14794 +f 14796/14796 14559/14559 14794/14794 +f 14795/14795 14867/14867 14635/14635 +f 14716/14716 14868/14868 14795/14795 +f 14869/14869 14716/14716 14718/14718 +f 14870/14870 14719/14719 14717/14717 +f 14870/14870 14717/14717 14796/14796 +f 14793/14793 14866/14866 14718/14718 +f 14797/14797 14871/14871 14637/14637 +f 14719/14719 14870/14870 14797/14797 +f 14871/14871 14798/14798 14637/14637 +f 14872/14872 14720/14720 14798/14798 +f 14872/14872 14799/14799 14720/14720 +f 14722/14722 14800/14800 14873/14873 +f 14874/14874 14723/14723 14722/14722 +f 14801/14801 14727/14727 14724/14724 +f 14726/14726 14802/14802 14875/14875 +f 14802/14802 14723/14723 14876/14876 +f 14803/14803 14877/14877 14642/14642 +f 14726/14726 14875/14875 14803/14803 +f 14801/14801 14642/14642 14877/14877 +f 14728/14728 14727/14727 14878/14878 +f 14800/14800 14729/14729 14879/14879 +f 14804/14804 14659/14659 14823/14823 +f 14880/14880 14577/14577 14804/14804 +f 14766/14766 14650/14650 14807/14807 +f 14881/14881 14805/14805 14730/14730 +f 14733/14733 14881/14881 14730/14730 +f 14731/14731 14805/14805 14882/14882 +f 14882/14882 14734/14734 14731/14731 +f 14806/14806 14582/14582 14815/14815 +f 14732/14732 14806/14806 14883/14883 +f 14733/14733 14732/14732 14881/14881 +f 14734/14734 14884/14884 14807/14807 +f 14577/14577 14880/14880 14808/14808 +f 14735/14735 14808/14808 14885/14885 +f 14886/14886 14653/14653 14735/14735 +f 14737/14737 14810/14810 14736/14736 +f 14652/14652 14809/14809 14812/14812 +f 14809/14809 14736/14736 14887/14887 +f 14886/14886 14810/14810 14653/14653 +f 14812/14812 14811/14811 14738/14738 +f 14811/14811 14888/14888 14739/14739 +f 14814/14814 14581/14581 14813/14813 +f 14889/14889 14813/14813 14739/14739 +f 14740/14740 14814/14814 14815/14815 +f 14816/14816 14655/14655 14742/14742 +f 14741/14741 14816/14816 14890/14890 +f 14890/14890 14817/14817 14741/14741 +f 14891/14891 14818/14818 14743/14743 +f 14818/14818 14819/14819 14657/14657 +f 14819/14819 14892/14892 14744/14744 +f 14823/14823 14745/14745 14744/14744 +f 14746/14746 14893/14893 14820/14820 +f 14746/14746 14749/14749 14894/14894 +f 14895/14895 14821/14821 14747/14747 +f 14822/14822 14658/14658 14821/14821 +f 14747/14747 14820/14820 14896/14896 +f 14822/14822 14891/14891 14743/14743 +f 14748/14748 14817/14817 14897/14897 +f 14824/14824 14661/14661 14748/14748 +f 14749/14749 14824/14824 14894/14894 +f 14825/14825 14898/14898 14750/14750 +f 14825/14825 14751/14751 14899/14899 +f 14750/14750 14900/14900 14826/14826 +f 14828/14828 14827/14827 14665/14665 +f 14666/14666 14827/14827 14829/14829 +f 14752/14752 14901/14901 14828/14828 +f 14829/14829 14830/14830 14667/14667 +f 14755/14755 14753/14753 14830/14830 +f 14754/14754 14902/14902 14752/14752 +f 14758/14758 14903/14903 14754/14754 +f 14831/14831 14755/14755 14830/14830 +f 14758/14758 14757/14757 14904/14904 +f 14826/14826 14904/14904 14757/14757 +f 14832/14832 14905/14905 14672/14672 +f 14906/14906 14832/14832 14759/14759 +f 14833/14833 14672/14672 14905/14905 +f 14675/14675 14833/14833 14835/14835 +f 14761/14761 14907/14907 14759/14759 +f 14908/14908 14760/14760 14831/14831 +f 14909/14909 14834/14834 14760/14760 +f 14762/14762 14910/14910 14761/14761 +f 14911/14911 14762/14762 14834/14834 +f 14912/14912 14763/14763 14835/14835 +f 14764/14764 14836/14836 14839/14839 +f 14837/14837 14836/14836 14676/14676 +f 14763/14763 14913/14913 14837/14837 +f 14729/14729 14838/14838 14879/14879 +f 14838/14838 14677/14677 14914/14914 +f 14914/14914 14677/14677 14839/14839 +f 14699/14699 36421/39496 36419/39497 +f 14841/14841 14679/14679 14840/14840 +f 14915/14915 14840/14840 14681/14681 +f 14853/14853 14765/14765 14841/14841 +f 14777/14777 14765/14765 14853/14853 +f 14807/14807 14768/14768 14766/14766 +f 14767/14767 14842/14842 14916/14916 +f 14767/14767 14917/14917 14843/14843 +f 14843/14843 14918/14918 14681/14681 +f 14842/14842 14768/14768 14807/14807 +f 14770/14770 14844/14844 14682/14682 +f 14844/14844 14919/14919 14769/14769 +f 14683/14683 14845/14845 14846/14846 +f 14920/14920 14770/14770 14846/14846 +f 14845/14845 14686/14686 14846/14846 +f 14773/14773 14847/14847 14771/14771 +f 14847/14847 14921/14921 14612/14612 +f 14846/14846 14772/14772 14922/14922 +f 14922/14922 14772/14772 14848/14848 +f 14848/14848 14612/14612 14921/14921 +f 14923/14923 14773/14773 14783/14783 +f 14849/14849 14774/14774 14924/14924 +f 14850/14850 14775/14775 14925/14925 +f 14849/14849 14924/14924 14775/14775 +f 14776/14776 14926/14926 14779/14779 +f 14927/14927 14776/14776 14850/14850 +f 14928/14928 14774/14774 14851/14851 +f 14851/14851 14691/14691 14929/14929 +f 14852/14852 14929/14929 14691/14691 +f 14854/14854 14692/14692 14853/14853 +f 14778/14778 14930/14930 14852/14852 +f 14931/14931 14778/14778 14854/14854 +f 14932/14932 14693/14693 14855/14855 +f 14779/14779 14933/14933 14855/14855 +f 14934/14934 14780/14780 14856/14856 +f 14935/14935 14856/14856 14693/14693 +f 14857/14857 14780/14780 14934/14934 +f 14857/14857 14858/14858 14781/14781 +f 14859/14859 14860/14860 14696/14696 +f 14936/14936 14859/14859 14782/14782 +f 14936/14936 14782/14782 14858/14858 +f 14783/14783 14860/14860 14937/14937 +f 14702/14702 14861/14861 14792/14792 +f 14785/14785 14786/14786 14938/14938 +f 14704/14704 14862/14862 14939/14939 +f 14787/14787 14704/14704 14939/14939 +f 14787/14787 14940/14940 14788/14788 +f 14707/14707 14941/14941 14863/14863 +f 14864/14864 14708/14708 14863/14863 +f 14865/14865 14790/14790 14864/14864 +f 14865/14865 14942/14942 14791/14791 +f 14943/14943 14862/14862 14791/14791 +f 14866/14866 14788/14788 14944/14944 +f 14867/14867 14945/14945 14794/14794 +f 14794/14794 14870/14870 14796/14796 +f 14795/14795 14868/14868 14867/14867 +f 14869/14869 14868/14868 14716/14716 +f 14946/14946 14869/14869 14718/14718 +f 14946/14946 14718/14718 14866/14866 +f 14947/14947 14871/14871 14797/14797 +f 14797/14797 14870/14870 14948/14948 +f 14798/14798 14871/14871 14949/14949 +f 14950/14950 14872/14872 14798/14798 +f 14872/14872 14950/14950 14799/14799 +f 14800/14800 14951/14951 14873/14873 +f 14873/14873 14874/14874 14722/14722 +f 14874/14874 14876/14876 14723/14723 +f 14952/14952 14727/14727 14801/14801 +f 14875/14875 14802/14802 14953/14953 +f 14953/14953 14802/14802 14876/14876 +f 14954/14954 14877/14877 14803/14803 +f 14954/14954 14803/14803 14875/14875 +f 14877/14877 14952/14952 14801/14801 +f 14878/14878 14727/14727 14955/14955 +f 14878/14878 14956/14956 14728/14728 +f 14879/14879 14957/14957 14800/14800 +f 14804/14804 14823/14823 14744/14744 +f 14744/14744 14880/14880 14804/14804 +f 14805/14805 14881/14881 14958/14958 +f 14805/14805 14958/14958 14882/14882 +f 14884/14884 14734/14734 14882/14882 +f 14806/14806 14815/14815 14959/14959 +f 14883/14883 14960/14960 14732/14732 +f 14961/14961 14883/14883 14806/14806 +f 14881/14881 14732/14732 14962/14962 +f 14842/14842 14807/14807 14884/14884 +f 14808/14808 14880/14880 14885/14885 +f 14885/14885 14886/14886 14735/14735 +f 14736/14736 14810/14810 14963/14963 +f 14809/14809 14887/14887 14812/14812 +f 14736/14736 14964/14964 14887/14887 +f 14810/14810 14886/14886 14965/14965 +f 14966/14966 14811/14811 14812/14812 +f 14811/14811 14967/14967 14888/14888 +f 14888/14888 14889/14889 14739/14739 +f 14815/14815 14814/14814 14813/14813 +f 14813/14813 14889/14889 14968/14968 +f 14969/14969 14890/14890 14816/14816 +f 14897/14897 14817/14817 14890/14890 +f 14818/14818 14891/14891 14964/14964 +f 14819/14819 14818/14818 14965/14965 +f 14892/14892 14819/14819 14965/14965 +f 14892/14892 14885/14885 14744/14744 +f 14893/14893 14746/14746 14894/14894 +f 14896/14896 14820/14820 14893/14893 +f 14895/14895 14747/14747 14970/14970 +f 14895/14895 14971/14971 14821/14821 +f 14972/14972 14822/14822 14821/14821 +f 14896/14896 14973/14973 14747/14747 +f 14891/14891 14822/14822 14974/14974 +f 14897/14897 14824/14824 14748/14748 +f 14894/14894 14824/14824 14975/14975 +f 14898/14898 14825/14825 14976/14976 +f 14900/14900 14750/14750 14898/14898 +f 14976/14976 14825/14825 14899/14899 +f 14751/14751 14977/14977 14899/14899 +f 14901/14901 14827/14827 14828/14828 +f 14827/14827 14978/14978 14829/14829 +f 14901/14901 14752/14752 14902/14902 +f 14979/14979 14830/14830 14829/14829 +f 14754/14754 14903/14903 14902/14902 +f 14980/14980 14903/14903 14758/14758 +f 14830/14830 14908/14908 14831/14831 +f 14980/14980 14758/14758 14904/14904 +f 14981/14981 14905/14905 14832/14832 +f 14981/14981 14832/14832 14906/14906 +f 14906/14906 14759/14759 14907/14907 +f 14982/14982 14833/14833 14905/14905 +f 14833/14833 14912/14912 14835/14835 +f 14983/14983 14907/14907 14761/14761 +f 14760/14760 14908/14908 14909/14909 +f 14834/14834 14909/14909 14911/14911 +f 14910/14910 14762/14762 14911/14911 +f 14910/14910 14984/14984 14761/14761 +f 14985/14985 14763/14763 14912/14912 +f 14836/14836 14913/14913 14839/14839 +f 14913/14913 14836/14836 14837/14837 +f 14763/14763 14985/14985 14913/14913 +f 14879/14879 14838/14838 14986/14986 +f 14987/14987 14838/14838 14914/14914 +f 14987/14987 14914/14914 14839/14839 +f 14840/14840 14988/14988 14841/14841 +f 14915/14915 14989/14989 14840/14840 +f 14915/14915 14681/14681 14990/14990 +f 14841/14841 14991/14991 14853/14853 +f 14842/14842 14884/14884 14916/14916 +f 14916/14916 14917/14917 14767/14767 +f 14917/14917 14992/14992 14843/14843 +f 14843/14843 14993/14993 14918/14918 +f 14990/14990 14681/14681 14918/14918 +f 14844/14844 14770/14770 14920/14920 +f 14844/14844 14994/14994 14919/14919 +f 14922/14922 14920/14920 14846/14846 +f 14923/14923 14847/14847 14773/14773 +f 14921/14921 14847/14847 14923/14923 +f 14995/14995 14922/14922 14848/14848 +f 14921/14921 14996/14996 14848/14848 +f 14937/14937 14923/14923 14783/14783 +f 14774/14774 14928/14928 14924/14924 +f 14924/14924 14925/14925 14775/14775 +f 14925/14925 14997/14997 14850/14850 +f 14926/14926 14776/14776 14927/14927 +f 14779/14779 14926/14926 14933/14933 +f 14998/14998 14927/14927 14850/14850 +f 14999/14999 14928/14928 14851/14851 +f 14929/14929 14999/14999 14851/14851 +f 14989/14989 14929/14929 14852/14852 +f 14991/14991 14854/14854 14853/14853 +f 14930/14930 14989/14989 14852/14852 +f 14931/14931 14930/14930 14778/14778 +f 14931/14931 14854/14854 14991/14991 +f 14932/14932 14935/14935 14693/14693 +f 14855/14855 15000/15000 14932/14932 +f 15001/15001 14855/14855 14933/14933 +f 14856/14856 15002/15002 14934/14934 +f 14935/14935 15002/15002 14856/14856 +f 14934/14934 15003/15003 14857/14857 +f 14857/14857 15004/15004 14858/14858 +f 14859/14859 14937/14937 14860/14860 +f 15005/15005 14859/14859 14936/14936 +f 14858/14858 15006/15006 14936/14936 +f 14862/14862 14943/14943 14939/14939 +f 15007/15007 14787/14787 14939/14939 +f 15008/15008 14788/14788 14940/14940 +f 14787/14787 15007/15007 14940/14940 +f 14863/14863 14941/14941 15009/15009 +f 15010/15010 14864/14864 14863/14863 +f 15011/15011 14865/14865 14864/14864 +f 15011/15011 14942/14942 14865/14865 +f 14942/14942 15012/15012 14791/14791 +f 14943/14943 14791/14791 15012/15012 +f 14944/14944 14788/14788 15008/15008 +f 14944/14944 14946/14946 14866/14866 +f 15013/15013 14945/14945 14867/14867 +f 14794/14794 14945/14945 14948/14948 +f 14794/14794 14948/14948 14870/14870 +f 15014/15014 14867/14867 14868/14868 +f 14869/14869 15015/15015 14868/14868 +f 14946/14946 15016/15016 14869/14869 +f 14948/14948 14947/14947 14797/14797 +f 14871/14871 14947/14947 14949/14949 +f 14957/14957 14951/14951 14800/14800 +f 15017/15017 14873/14873 14951/14951 +f 14874/14874 14873/14873 15018/15018 +f 14876/14876 14874/14874 15018/15018 +f 15019/15019 14727/14727 14952/14952 +f 14953/14953 15020/15020 14875/14875 +f 14953/14953 14876/14876 15021/15021 +f 14877/14877 14954/14954 15022/15022 +f 14875/14875 15023/15023 14954/14954 +f 15024/15024 14952/14952 14877/14877 +f 14955/14955 14727/14727 15019/15019 +f 14955/14955 15025/15025 14878/14878 +f 14956/14956 14878/14878 15026/15026 +f 14956/14956 15027/15027 14728/14728 +f 14879/14879 15028/15028 14957/14957 +f 14885/14885 14880/14880 14744/14744 +f 14881/14881 15029/15029 14958/14958 +f 15030/15030 14882/14882 14958/14958 +f 14882/14882 15031/15031 14884/14884 +f 14815/14815 14968/14968 14959/14959 +f 14806/14806 14959/14959 15032/15032 +f 14960/14960 14883/14883 15033/15033 +f 14962/14962 14732/14732 14960/14960 +f 14883/14883 14961/14961 15033/15033 +f 14961/14961 14806/14806 15032/15032 +f 14962/14962 15029/15029 14881/14881 +f 14965/14965 14886/14886 14885/14885 +f 14965/14965 14963/14963 14810/14810 +f 14963/14963 14964/14964 14736/14736 +f 14812/14812 14887/14887 14966/14966 +f 14887/14887 14964/14964 15034/15034 +f 15035/15035 14811/14811 14966/14966 +f 15036/15036 14888/14888 14967/14967 +f 14967/14967 14811/14811 15037/15037 +f 15038/15038 14889/14889 14888/14888 +f 14968/14968 14815/14815 14813/14813 +f 15038/15038 14968/14968 14889/14889 +f 15039/15039 14890/14890 14969/14969 +f 14890/14890 15040/15040 14897/14897 +f 14818/14818 14964/14964 14965/14965 +f 15034/15034 14964/14964 14891/14891 +f 14965/14965 14885/14885 14892/14892 +f 14893/14893 14894/14894 15041/15041 +f 14896/14896 14893/14893 15042/15042 +f 14895/14895 14970/14970 15043/15043 +f 14970/14970 14747/14747 14973/14973 +f 14971/14971 14895/14895 15043/15043 +f 14821/14821 14971/14971 15044/15044 +f 15045/15045 14822/14822 14972/14972 +f 14821/14821 15044/15044 14972/14972 +f 14973/14973 14896/14896 15046/15046 +f 14891/14891 14974/14974 15047/15047 +f 14822/14822 15045/15045 14974/14974 +f 14975/14975 14824/14824 14897/14897 +f 15041/15041 14894/14894 14975/14975 +f 14898/14898 14976/14976 15048/15048 +f 15049/15049 14976/14976 14899/14899 +f 14977/14977 15050/15050 14899/14899 +f 15051/15051 14827/14827 14901/14901 +f 14827/14827 15051/15051 14978/14978 +f 14829/14829 14978/14978 15052/15052 +f 15053/15053 14901/14901 14902/14902 +f 14829/14829 15052/15052 14979/14979 +f 14830/14830 14979/14979 14908/14908 +f 14903/14903 15053/15053 14902/14902 +f 15054/15054 14903/14903 14980/14980 +f 14980/14980 14904/14904 15054/15054 +f 14905/14905 14981/14981 15055/15055 +f 14981/14981 14906/14906 15056/15056 +f 14983/14983 14906/14906 14907/14907 +f 15055/15055 14982/14982 14905/14905 +f 15055/15055 14833/14833 14982/14982 +f 14833/14833 15055/15055 14912/14912 +f 14984/14984 14983/14983 14761/14761 +f 14909/14909 14908/14908 15057/15057 +f 14909/14909 15057/15057 14911/14911 +f 15058/15058 14910/14910 14911/14911 +f 15058/15058 14984/14984 14910/14910 +f 14985/14985 14912/14912 15059/15059 +f 14913/14913 15060/15060 14839/14839 +f 14913/14913 14985/14985 15061/15061 +f 14838/14838 15062/15062 14986/14986 +f 14879/14879 14986/14986 15028/15028 +f 15062/15062 14838/14838 14987/14987 +f 14839/14839 15060/15060 14987/14987 +f 14988/14988 14991/14991 14841/14841 +f 14991/14991 14988/14988 14840/14840 +f 14929/14929 14989/14989 14915/14915 +f 14989/14989 14991/14991 14840/14840 +f 14990/14990 14999/14999 14915/14915 +f 15063/15063 14916/14916 14884/14884 +f 14916/14916 15063/15063 14917/14917 +f 15063/15063 14992/14992 14917/14917 +f 14843/14843 14992/14992 14993/14993 +f 14993/14993 15064/15064 14918/14918 +f 14918/14918 15065/15065 14990/14990 +f 14920/14920 15066/15066 14844/14844 +f 14844/14844 15066/15066 14994/14994 +f 14919/14919 14994/14994 15067/15067 +f 14995/14995 14920/14920 14922/14922 +f 14921/14921 14923/14923 14937/14937 +f 15068/15068 14995/14995 14848/14848 +f 14996/14996 14921/14921 14937/14937 +f 14996/14996 15069/15069 14848/14848 +f 14928/14928 15070/15070 14924/14924 +f 14924/14924 15070/15070 14925/14925 +f 14925/14925 15070/15070 14997/14997 +f 14850/14850 14997/14997 14998/14998 +f 14998/14998 14926/14926 14927/14927 +f 14926/14926 15071/15071 14933/14933 +f 14928/14928 14999/14999 15072/15072 +f 14929/14929 14915/14915 14999/14999 +f 14930/14930 14991/14991 14989/14989 +f 14930/14930 14931/14931 14991/14991 +f 14935/14935 14932/14932 15073/15073 +f 15073/15073 14932/14932 15000/15000 +f 15000/15000 14855/14855 15001/15001 +f 14933/14933 15074/15074 15001/15001 +f 15002/15002 15075/15075 14934/14934 +f 15076/15076 15002/15002 14935/14935 +f 14857/14857 15003/15003 15004/15004 +f 15003/15003 14934/14934 15075/15075 +f 15004/15004 15006/15006 14858/14858 +f 15077/15077 14937/14937 14859/14859 +f 15005/15005 15077/15077 14859/14859 +f 15005/15005 14936/14936 15078/15078 +f 15078/15078 14936/14936 15006/15006 +f 14943/14943 15007/15007 14939/14939 +f 15008/15008 14940/14940 15079/15079 +f 14940/14940 15007/15007 15079/15079 +f 15080/15080 15009/15009 14941/14941 +f 15009/15009 15010/15010 14863/14863 +f 15010/15010 15011/15011 14864/14864 +f 14942/14942 15011/15011 15081/15081 +f 15012/15012 14942/14942 15082/15082 +f 15012/15012 15082/15082 14943/14943 +f 15008/15008 15083/15083 14944/14944 +f 15083/15083 14946/14946 14944/14944 +f 14945/14945 15013/15013 15084/15084 +f 15014/15014 15013/15013 14867/14867 +f 15085/15085 14948/14948 14945/14945 +f 15014/15014 14868/14868 15015/15015 +f 15015/15015 14869/14869 15016/15016 +f 14946/14946 15083/15083 15016/15016 +f 14947/14947 14948/14948 15086/15086 +f 14951/14951 14957/14957 15087/15087 +f 15088/15088 14873/14873 15017/15017 +f 15017/15017 14951/14951 15087/15087 +f 14873/14873 15088/15088 15018/15018 +f 14876/14876 15018/15018 15021/15021 +f 15019/15019 14952/14952 15024/15024 +f 15020/15020 14953/14953 15089/15089 +f 15023/15023 14875/14875 15020/15020 +f 15090/15090 14953/14953 15021/15021 +f 15091/15091 15022/15022 14954/14954 +f 15022/15022 15024/15024 14877/14877 +f 14954/14954 15023/15023 15091/15091 +f 15019/15019 15024/15024 14955/14955 +f 14878/14878 15025/15025 15026/15026 +f 15092/15092 15025/15025 14955/14955 +f 14956/14956 15026/15026 15093/15093 +f 14956/14956 15094/15094 15027/15027 +f 15027/15027 15095/15095 14728/14728 +f 14957/14957 15028/15028 15087/15087 +f 15096/15096 14958/14958 15029/15029 +f 15030/15030 14958/14958 15097/15097 +f 14882/14882 15030/15030 15031/15031 +f 15031/15031 15063/15063 14884/14884 +f 15098/15098 14959/14959 14968/14968 +f 15032/15032 14959/14959 15099/15099 +f 15033/15033 15100/15100 14960/14960 +f 14962/14962 14960/14960 15101/15101 +f 14961/14961 15102/15102 15033/15033 +f 15103/15103 14961/14961 15032/15032 +f 15029/15029 14962/14962 15101/15101 +f 14964/14964 14963/14963 14965/14965 +f 14887/14887 15104/15104 14966/14966 +f 14887/14887 15034/15034 15104/15104 +f 15104/15104 15035/15035 14966/14966 +f 15035/15035 15037/15037 14811/14811 +f 14888/14888 15036/15036 15038/15038 +f 15036/15036 14967/14967 15105/15105 +f 15037/15037 15105/15105 14967/14967 +f 15038/15038 15098/15098 14968/14968 +f 15040/15040 14890/14890 15039/15039 +f 15106/15106 15039/15039 14969/14969 +f 15107/15107 14897/14897 15040/15040 +f 15034/15034 14891/14891 15108/15108 +f 15041/15041 15042/15042 14893/14893 +f 15046/15046 14896/14896 15042/15042 +f 15109/15109 15043/15043 14970/14970 +f 15110/15110 14970/14970 14973/14973 +f 14971/14971 15043/15043 15111/15111 +f 15112/15112 15044/15044 14971/14971 +f 14972/14972 15113/15113 15045/15045 +f 14972/14972 15044/15044 15114/15114 +f 15046/15046 15115/15115 14973/14973 +f 14891/14891 15047/15047 15108/15108 +f 15047/15047 14974/14974 15116/15116 +f 14974/14974 15045/15045 15117/15117 +f 14975/14975 14897/14897 15107/15107 +f 15107/15107 15041/15041 14975/14975 +f 14976/14976 15049/15049 15048/15048 +f 15050/15050 15049/15049 14899/14899 +f 14977/14977 15118/15118 15050/15050 +f 15051/15051 14901/14901 15053/15053 +f 15051/15051 15119/15119 14978/14978 +f 15052/15052 14978/14978 15119/15119 +f 15052/15052 15120/15120 14979/14979 +f 14908/14908 14979/14979 15121/15121 +f 14903/14903 15054/15054 15053/15053 +f 15122/15122 15055/15055 14981/14981 +f 14983/14983 15056/15056 14906/14906 +f 15056/15056 15123/15123 14981/14981 +f 15055/15055 15124/15124 14912/14912 +f 14983/14983 14984/14984 15125/15125 +f 14908/14908 15121/15121 15057/15057 +f 15057/15057 15058/15058 14911/14911 +f 15058/15058 15125/15125 14984/14984 +f 15059/15059 14912/14912 15124/15124 +f 14985/14985 15059/15059 15061/15061 +f 15060/15060 14913/14913 15061/15061 +f 15126/15126 14986/14986 15062/15062 +f 15028/15028 14986/14986 15126/15126 +f 15127/15127 15062/15062 14987/14987 +f 14987/14987 15060/15060 15128/15128 +f 14990/14990 15072/15072 14999/14999 +f 14992/14992 15063/15063 15129/15129 +f 14993/14993 14992/14992 15129/15129 +f 15130/15130 15064/15064 14993/14993 +f 14918/14918 15064/15064 15065/15065 +f 15065/15065 15131/15131 14990/14990 +f 14920/14920 14995/14995 15066/15066 +f 15066/15066 15132/15132 14994/14994 +f 14994/14994 15133/15133 15067/15067 +f 15069/15069 15068/15068 14848/14848 +f 15068/15068 15134/15134 14995/14995 +f 15077/15077 14996/14996 14937/14937 +f 15135/15135 15069/15069 14996/14996 +f 15070/15070 14928/14928 15136/15136 +f 14997/14997 15070/15070 15137/15137 +f 14998/14998 14997/14997 15137/15137 +f 15071/15071 14926/14926 14998/14998 +f 15138/15138 14933/14933 15071/15071 +f 15072/15072 15136/15136 14928/14928 +f 15139/15139 14935/14935 15073/15073 +f 15140/15140 15073/15073 15000/15000 +f 15001/15001 15141/15141 15000/15000 +f 14933/14933 15138/15138 15074/15074 +f 15001/15001 15074/15074 15142/15142 +f 15002/15002 15143/15143 15075/15075 +f 15076/15076 14935/14935 15139/15139 +f 15076/15076 15143/15143 15002/15002 +f 15003/15003 15075/15075 15004/15004 +f 15144/15144 15006/15006 15004/15004 +f 15077/15077 15005/15005 15145/15145 +f 15078/15078 15146/15146 15005/15005 +f 15147/15147 15078/15078 15006/15006 +f 14943/14943 15148/15148 15007/15007 +f 15149/15149 15008/15008 15079/15079 +f 15007/15007 15148/15148 15079/15079 +f 15150/15150 15009/15009 15080/15080 +f 15010/15010 15009/15009 15151/15151 +f 15010/15010 15152/15152 15011/15011 +f 15011/15011 15153/15153 15081/15081 +f 15154/15154 14942/14942 15081/15081 +f 15082/15082 14942/14942 15154/15154 +f 15082/15082 15148/15148 14943/14943 +f 15155/15155 15083/15083 15008/15008 +f 15084/15084 15085/15085 14945/14945 +f 15156/15156 15084/15084 15013/15013 +f 15013/15013 15014/15014 15157/15157 +f 15085/15085 15086/15086 14948/14948 +f 15014/15014 15015/15015 15157/15157 +f 15158/15158 15015/15015 15016/15016 +f 15159/15159 15016/15016 15083/15083 +f 15160/15160 14947/14947 15086/15086 +f 15088/15088 15017/15017 15161/15161 +f 15162/15162 15017/15017 15087/15087 +f 15163/15163 15018/15018 15088/15088 +f 15018/15018 15163/15163 15021/15021 +f 15023/15023 15020/15020 15089/15089 +f 15089/15089 14953/14953 15164/15164 +f 15164/15164 14953/14953 15090/15090 +f 15165/15165 15090/15090 15021/15021 +f 15166/15166 15022/15022 15091/15091 +f 15167/15167 15024/15024 15022/15022 +f 15166/15166 15091/15091 15023/15023 +f 14955/14955 15024/15024 15092/15092 +f 15026/15026 15025/15025 15168/15168 +f 15025/15025 15092/15092 15167/15167 +f 14956/14956 15093/15093 15169/15169 +f 15170/15170 15093/15093 15026/15026 +f 14956/14956 15171/15171 15094/15094 +f 15027/15027 15094/15094 15172/15172 +f 15027/15027 15173/15173 15095/15095 +f 14728/14728 15095/15095 15174/15174 +f 15028/15028 15162/15162 15087/15087 +f 15096/15096 15097/15097 14958/14958 +f 15096/15096 15029/15029 15175/15175 +f 15176/15176 15030/15030 15097/15097 +f 15176/15176 15031/15031 15030/15030 +f 15063/15063 15031/15031 15176/15176 +f 15099/15099 14959/14959 15098/15098 +f 15032/15032 15099/15099 15103/15103 +f 15177/15177 14960/14960 15100/15100 +f 15177/15177 15100/15100 15033/15033 +f 15101/15101 14960/14960 15177/15177 +f 14961/14961 15103/15103 15102/15102 +f 15033/15033 15102/15102 15177/15177 +f 15175/15175 15029/15029 15101/15101 +f 15034/15034 15178/15178 15104/15104 +f 15104/15104 15179/15179 15035/15035 +f 15035/15035 15179/15179 15037/15037 +f 15038/15038 15036/15036 15105/15105 +f 15105/15105 15037/15037 15180/15180 +f 15099/15099 15098/15098 15038/15038 +f 15040/15040 15039/15039 15107/15107 +f 15039/15039 15106/15106 15107/15107 +f 14969/14969 15181/15181 15106/15106 +f 15108/15108 15178/15178 15034/15034 +f 15042/15042 15041/15041 15182/15182 +f 15046/15046 15042/15042 15182/15182 +f 15183/15183 15043/15043 15109/15109 +f 14970/14970 15110/15110 15109/15109 +f 15110/15110 14973/14973 15115/15115 +f 15043/15043 15184/15184 15111/15111 +f 14971/14971 15111/15111 15112/15112 +f 15114/15114 15044/15044 15112/15112 +f 15113/15113 14972/14972 15114/15114 +f 15045/15045 15113/15113 15117/15117 +f 15182/15182 15115/15115 15046/15046 +f 15108/15108 15047/15047 15185/15185 +f 15186/15186 15047/15047 15116/15116 +f 15187/15187 15116/15116 14974/14974 +f 15117/15117 15187/15187 14974/14974 +f 15188/15188 15041/15041 15107/15107 +f 15189/15189 15048/15048 15049/15049 +f 15118/15118 15049/15049 15050/15050 +f 15053/15053 15190/15190 15051/15051 +f 15119/15119 15051/15051 15191/15191 +f 15120/15120 15052/15052 15119/15119 +f 15120/15120 15121/15121 14979/14979 +f 15053/15053 15054/15054 15190/15190 +f 15192/15192 15055/15055 15122/15122 +f 14981/14981 15123/15123 15122/15122 +f 15193/15193 15056/15056 14983/14983 +f 15056/15056 15193/15193 15123/15123 +f 15124/15124 15055/15055 15194/15194 +f 15125/15125 15193/15193 14983/14983 +f 15057/15057 15121/15121 15195/15195 +f 15058/15058 15057/15057 15195/15195 +f 15195/15195 15125/15125 15058/15058 +f 15059/15059 15124/15124 15196/15196 +f 15197/15197 15061/15061 15059/15059 +f 15060/15060 15061/15061 15128/15128 +f 15126/15126 15062/15062 15198/15198 +f 15199/15199 15028/15028 15126/15126 +f 15062/15062 15127/15127 15198/15198 +f 15200/15200 15127/15127 14987/14987 +f 15200/15200 14987/14987 15128/15128 +f 15201/15201 15072/15072 14990/14990 +f 15063/15063 15176/15176 15129/15129 +f 15129/15129 15202/15202 14993/14993 +f 15064/15064 15130/15130 15203/15203 +f 14993/14993 15202/15202 15130/15130 +f 15065/15065 15064/15064 15204/15204 +f 14990/14990 15131/15131 15201/15201 +f 15204/15204 15131/15131 15065/15065 +f 15134/15134 15066/15066 14995/14995 +f 15066/15066 15205/15205 15132/15132 +f 14994/14994 15132/15132 15133/15133 +f 15206/15206 15067/15067 15133/15133 +f 15069/15069 15207/15207 15068/15068 +f 15207/15207 15134/15134 15068/15068 +f 14996/14996 15077/15077 15135/15135 +f 15207/15207 15069/15069 15135/15135 +f 15070/15070 15136/15136 15208/15208 +f 15208/15208 15137/15137 15070/15070 +f 15071/15071 14998/14998 15137/15137 +f 15138/15138 15071/15071 15209/15209 +f 15136/15136 15072/15072 15208/15208 +f 15073/15073 15140/15140 15139/15139 +f 15210/15210 15140/15140 15000/15000 +f 15141/15141 15001/15001 15142/15142 +f 15138/15138 15211/15211 15074/15074 +f 15142/15142 15074/15074 15212/15212 +f 15213/15213 15075/15075 15143/15143 +f 15076/15076 15139/15139 15214/15214 +f 15076/15076 15215/15215 15143/15143 +f 15004/15004 15075/15075 15144/15144 +f 15006/15006 15144/15144 15216/15216 +f 15145/15145 15005/15005 15217/15217 +f 15077/15077 15145/15145 15135/15135 +f 15005/15005 15146/15146 15218/15218 +f 15146/15146 15078/15078 15219/15219 +f 15216/15216 15147/15147 15006/15006 +f 15219/15219 15078/15078 15147/15147 +f 15220/15220 15008/15008 15149/15149 +f 15221/15221 15149/15149 15079/15079 +f 15079/15079 15148/15148 15082/15082 +f 15150/15150 15080/15080 15222/15222 +f 15151/15151 15009/15009 15150/15150 +f 15151/15151 15223/15223 15010/15010 +f 15223/15223 15152/15152 15010/15010 +f 15153/15153 15011/15011 15152/15152 +f 15153/15153 15224/15224 15081/15081 +f 15154/15154 15081/15081 15225/15225 +f 15082/15082 15154/15154 15226/15226 +f 15227/15227 15083/15083 15155/15155 +f 15155/15155 15008/15008 15220/15220 +f 15156/15156 15085/15085 15084/15084 +f 15228/15228 15156/15156 15013/15013 +f 15157/15157 15228/15228 15013/15013 +f 15160/15160 15086/15086 15085/15085 +f 15015/15015 15158/15158 15157/15157 +f 15158/15158 15016/15016 15159/15159 +f 15159/15159 15083/15083 15227/15227 +f 15229/15229 14947/14947 15160/15160 +f 15230/15230 15161/15161 15017/15017 +f 15088/15088 15161/15161 15231/15231 +f 15017/15017 15162/15162 15230/15230 +f 15088/15088 15231/15231 15163/15163 +f 15163/15163 15165/15165 15021/15021 +f 15023/15023 15089/15089 15232/15232 +f 15164/15164 15233/15233 15089/15089 +f 15090/15090 15234/15234 15164/15164 +f 15235/15235 15090/15090 15165/15165 +f 15022/15022 15166/15166 15167/15167 +f 15092/15092 15024/15024 15167/15167 +f 15236/15236 15166/15166 15023/15023 +f 15168/15168 15025/15025 15167/15167 +f 15237/15237 15026/15026 15168/15168 +f 14956/14956 15169/15169 15171/15171 +f 15169/15169 15093/15093 15238/15238 +f 15170/15170 15026/15026 15237/15237 +f 15238/15238 15093/15093 15170/15170 +f 15094/15094 15171/15171 15239/15239 +f 15240/15240 15172/15172 15094/15094 +f 15027/15027 15172/15172 15241/15241 +f 15173/15173 15242/15242 15095/15095 +f 15241/15241 15173/15173 15027/15027 +f 15095/15095 15242/15242 15174/15174 +f 15174/15174 15243/15243 14728/14728 +f 15162/15162 15028/15028 15244/15244 +f 15097/15097 15096/15096 15245/15245 +f 15096/15096 15175/15175 15245/15245 +f 15176/15176 15097/15097 15246/15246 +f 15103/15103 15099/15099 15038/15038 +f 15177/15177 15247/15247 15101/15101 +f 15180/15180 15102/15102 15103/15103 +f 15102/15102 15248/15248 15177/15177 +f 15247/15247 15175/15175 15101/15101 +f 15179/15179 15104/15104 15178/15178 +f 15249/15249 15037/15037 15179/15179 +f 15105/15105 15103/15103 15038/15038 +f 15180/15180 15037/15037 15250/15250 +f 15103/15103 15105/15105 15180/15180 +f 15106/15106 15188/15188 15107/15107 +f 15188/15188 15106/15106 15181/15181 +f 15251/15251 15181/15181 14969/14969 +f 15178/15178 15108/15108 15179/15179 +f 15182/15182 15041/15041 15252/15252 +f 15043/15043 15183/15183 15184/15184 +f 15115/15115 15183/15183 15109/15109 +f 15110/15110 15115/15115 15109/15109 +f 15184/15184 15253/15253 15111/15111 +f 15111/15111 15253/15253 15112/15112 +f 15114/15114 15112/15112 15254/15254 +f 15255/15255 15113/15113 15114/15114 +f 15117/15117 15113/15113 15255/15255 +f 15252/15252 15115/15115 15182/15182 +f 15185/15185 15047/15047 15186/15186 +f 15179/15179 15108/15108 15185/15185 +f 15256/15256 15186/15186 15116/15116 +f 15187/15187 15117/15117 15116/15116 +f 15041/15041 15188/15188 15252/15252 +f 15049/15049 15257/15257 15189/15189 +f 15049/15049 15118/15118 15258/15258 +f 15051/15051 15190/15190 15191/15191 +f 15119/15119 15191/15191 15190/15190 +f 15194/15194 15055/15055 15192/15192 +f 15123/15123 15192/15192 15122/15122 +f 15123/15123 15193/15193 15259/15259 +f 15194/15194 15260/15260 15124/15124 +f 15125/15125 15195/15195 15193/15193 +f 15121/15121 15261/15261 15195/15195 +f 15124/15124 15260/15260 15196/15196 +f 15197/15197 15059/15059 15196/15196 +f 15262/15262 15061/15061 15197/15197 +f 15128/15128 15061/15061 15262/15262 +f 15126/15126 15198/15198 15199/15199 +f 15028/15028 15199/15199 15244/15244 +f 15198/15198 15127/15127 15263/15263 +f 15127/15127 15200/15200 15264/15264 +f 15128/15128 15264/15264 15200/15200 +f 15072/15072 15201/15201 15208/15208 +f 15176/15176 15246/15246 15129/15129 +f 15246/15246 15202/15202 15129/15129 +f 15265/15265 15203/15203 15130/15130 +f 15064/15064 15203/15203 15266/15266 +f 15202/15202 15265/15265 15130/15130 +f 15064/15064 15266/15266 15204/15204 +f 15201/15201 15131/15131 15267/15267 +f 15268/15268 15131/15131 15204/15204 +f 15205/15205 15066/15066 15134/15134 +f 15269/15269 15132/15132 15205/15205 +f 15132/15132 15270/15270 15133/15133 +f 15271/15271 15206/15206 15133/15133 +f 15207/15207 15272/15272 15134/15134 +f 15135/15135 15273/15273 15207/15207 +f 15274/15274 15137/15137 15208/15208 +f 15137/15137 15274/15274 15071/15071 +f 15274/15274 15209/15209 15071/15071 +f 15138/15138 15209/15209 15275/15275 +f 15140/15140 15276/15276 15139/15139 +f 15210/15210 15277/15277 15140/15140 +f 15211/15211 15138/15138 15275/15275 +f 15212/15212 15074/15074 15211/15211 +f 15213/15213 15143/15143 15215/15215 +f 15075/15075 15213/15213 15144/15144 +f 15278/15278 15214/15214 15139/15139 +f 15214/15214 15215/15215 15076/15076 +f 15216/15216 15144/15144 15213/15213 +f 15005/15005 15218/15218 15217/15217 +f 15217/15217 15279/15279 15145/15145 +f 15145/15145 15279/15279 15135/15135 +f 15146/15146 15280/15280 15218/15218 +f 15281/15281 15146/15146 15219/15219 +f 15282/15282 15147/15147 15216/15216 +f 15219/15219 15147/15147 15282/15282 +f 15283/15283 15220/15220 15149/15149 +f 15284/15284 15149/15149 15221/15221 +f 15082/15082 15221/15221 15079/15079 +f 15150/15150 15222/15222 15223/15223 +f 15223/15223 15151/15151 15150/15150 +f 15153/15153 15152/15152 15223/15223 +f 15081/15081 15224/15224 15225/15225 +f 15224/15224 15153/15153 15285/15285 +f 15226/15226 15154/15154 15225/15225 +f 15082/15082 15226/15226 15286/15286 +f 15227/15227 15155/15155 15287/15287 +f 15155/15155 15220/15220 15283/15283 +f 15156/15156 15160/15160 15085/15085 +f 15288/15288 15156/15156 15228/15228 +f 15289/15289 15228/15228 15157/15157 +f 15157/15157 15158/15158 15159/15159 +f 15290/15290 15159/15159 15227/15227 +f 15160/15160 15156/15156 15229/15229 +f 15161/15161 15230/15230 15231/15231 +f 15230/15230 15162/15162 15291/15291 +f 15292/15292 15163/15163 15231/15231 +f 15163/15163 15235/15235 15165/15165 +f 15232/15232 15089/15089 15293/15293 +f 15023/15023 15232/15232 15236/15236 +f 15089/15089 15233/15233 15293/15293 +f 15164/15164 15294/15294 15233/15233 +f 15235/15235 15234/15234 15090/15090 +f 15164/15164 15234/15234 15295/15295 +f 15167/15167 15166/15166 15168/15168 +f 15166/15166 15236/15236 15296/15296 +f 15237/15237 15168/15168 15297/15297 +f 15169/15169 15298/15298 15171/15171 +f 15238/15238 15298/15298 15169/15169 +f 15170/15170 15237/15237 15238/15238 +f 15299/15299 15239/15239 15171/15171 +f 15094/15094 15239/15239 15240/15240 +f 15300/15300 15172/15172 15240/15240 +f 15241/15241 15172/15172 15300/15300 +f 15173/15173 15301/15301 15242/15242 +f 15241/15241 15302/15302 15173/15173 +f 15242/15242 15303/15303 15174/15174 +f 15243/15243 15174/15174 15304/15304 +f 14728/14728 15243/15243 15251/15251 +f 15244/15244 15291/15291 15162/15162 +f 15246/15246 15097/15097 15245/15245 +f 15245/15245 15175/15175 15305/15305 +f 15177/15177 15248/15248 15247/15247 +f 15250/15250 15102/15102 15180/15180 +f 15306/15306 15248/15248 15102/15102 +f 15175/15175 15247/15247 15307/15307 +f 15249/15249 15250/15250 15037/15037 +f 15308/15308 15249/15249 15179/15179 +f 15188/15188 15181/15181 15309/15309 +f 14969/14969 15310/15310 15251/15251 +f 15181/15181 15251/15251 15309/15309 +f 15243/15243 15184/15184 15183/15183 +f 15183/15183 15115/15115 15252/15252 +f 15253/15253 15184/15184 15304/15304 +f 15112/15112 15253/15253 15254/15254 +f 15311/15311 15114/15114 15254/15254 +f 15312/15312 15255/15255 15114/15114 +f 15313/15313 15117/15117 15255/15255 +f 15314/15314 15185/15185 15186/15186 +f 15179/15179 15185/15185 15308/15308 +f 15315/15315 15186/15186 15256/15256 +f 15256/15256 15116/15116 15313/15313 +f 15313/15313 15116/15116 15117/15117 +f 15309/15309 15252/15252 15188/15188 +f 15049/15049 15258/15258 15257/15257 +f 15316/15316 15189/15189 15257/15257 +f 15192/15192 15260/15260 15194/15194 +f 15123/15123 15259/15259 15192/15192 +f 15195/15195 15259/15259 15193/15193 +f 15259/15259 15195/15195 15261/15261 +f 15260/15260 15317/15317 15196/15196 +f 15196/15196 15317/15317 15197/15197 +f 15317/15317 15262/15262 15197/15197 +f 15262/15262 15318/15318 15128/15128 +f 15198/15198 15319/15319 15199/15199 +f 15199/15199 15320/15320 15244/15244 +f 15321/15321 15263/15263 15127/15127 +f 15198/15198 15263/15263 15322/15322 +f 15321/15321 15127/15127 15264/15264 +f 15318/15318 15264/15264 15128/15128 +f 15201/15201 15274/15274 15208/15208 +f 15323/15323 15202/15202 15246/15246 +f 15324/15324 15203/15203 15265/15265 +f 15203/15203 15324/15324 15266/15266 +f 15202/15202 15325/15325 15265/15265 +f 15266/15266 15268/15268 15204/15204 +f 15131/15131 15326/15326 15267/15267 +f 15327/15327 15201/15201 15267/15267 +f 15268/15268 15328/15328 15131/15131 +f 15329/15329 15205/15205 15134/15134 +f 15330/15330 15269/15269 15205/15205 +f 15270/15270 15132/15132 15269/15269 +f 15271/15271 15133/15133 15270/15270 +f 15271/15271 15331/15331 15206/15206 +f 15329/15329 15134/15134 15272/15272 +f 15207/15207 15273/15273 15272/15272 +f 15279/15279 15273/15273 15135/15135 +f 15209/15209 15274/15274 15275/15275 +f 15140/15140 15277/15277 15276/15276 +f 15276/15276 15278/15278 15139/15139 +f 15332/15332 15277/15277 15210/15210 +f 15211/15211 15275/15275 15333/15333 +f 15212/15212 15211/15211 15333/15333 +f 15334/15334 15213/15213 15215/15215 +f 15214/15214 15278/15278 15335/15335 +f 15334/15334 15215/15215 15214/15214 +f 15213/15213 15336/15336 15216/15216 +f 15217/15217 15218/15218 15337/15337 +f 15279/15279 15217/15217 15338/15338 +f 15280/15280 15146/15146 15281/15281 +f 15218/15218 15280/15280 15339/15339 +f 15340/15340 15281/15281 15219/15219 +f 15216/15216 15336/15336 15282/15282 +f 15282/15282 15340/15340 15219/15219 +f 15284/15284 15283/15283 15149/15149 +f 15221/15221 15341/15341 15284/15284 +f 15286/15286 15221/15221 15082/15082 +f 15342/15342 15223/15223 15222/15222 +f 15153/15153 15223/15223 15342/15342 +f 15224/15224 15343/15343 15225/15225 +f 15285/15285 15343/15343 15224/15224 +f 15285/15285 15153/15153 15344/15344 +f 15225/15225 15343/15343 15226/15226 +f 15226/15226 15345/15345 15286/15286 +f 15283/15283 15287/15287 15155/15155 +f 15290/15290 15227/15227 15287/15287 +f 15156/15156 15288/15288 15229/15229 +f 15289/15289 15346/15346 15228/15228 +f 15157/15157 15347/15347 15289/15289 +f 15290/15290 15157/15157 15159/15159 +f 15230/15230 15348/15348 15231/15231 +f 15230/15230 15291/15291 15348/15348 +f 15163/15163 15292/15292 15349/15349 +f 15231/15231 15348/15348 15292/15292 +f 15350/15350 15235/15235 15163/15163 +f 15232/15232 15293/15293 15351/15351 +f 15236/15236 15232/15232 15352/15352 +f 15293/15293 15233/15233 15353/15353 +f 15295/15295 15294/15294 15164/15164 +f 15233/15233 15294/15294 15353/15353 +f 15234/15234 15235/15235 15354/15354 +f 15234/15234 15355/15355 15295/15295 +f 15166/15166 15296/15296 15168/15168 +f 15236/15236 15356/15356 15296/15296 +f 15168/15168 15296/15296 15297/15297 +f 15297/15297 15357/15357 15237/15237 +f 15299/15299 15171/15171 15298/15298 +f 15298/15298 15238/15238 15358/15358 +f 15238/15238 15237/15237 15357/15357 +f 15359/15359 15239/15239 15299/15299 +f 15239/15239 15359/15359 15240/15240 +f 15300/15300 15240/15240 15360/15360 +f 15300/15300 15361/15361 15241/15241 +f 15301/15301 15173/15173 15362/15362 +f 15301/15301 15303/15303 15242/15242 +f 15302/15302 15241/15241 15361/15361 +f 15362/15362 15173/15173 15302/15302 +f 15303/15303 15304/15304 15174/15174 +f 15184/15184 15243/15243 15304/15304 +f 15183/15183 15251/15251 15243/15243 +f 14728/14728 15251/15251 15310/15310 +f 15363/15363 15291/15291 15244/15244 +f 15245/15245 15323/15323 15246/15246 +f 15364/15364 15245/15245 15305/15305 +f 15307/15307 15305/15305 15175/15175 +f 15365/15365 15247/15247 15248/15248 +f 15250/15250 15306/15306 15102/15102 +f 15248/15248 15306/15306 15366/15366 +f 15307/15307 15247/15247 15365/15365 +f 15249/15249 15367/15367 15250/15250 +f 15368/15368 15249/15249 15308/15308 +f 15309/15309 15251/15251 15183/15183 +f 15183/15183 15252/15252 15309/15309 +f 15304/15304 15369/15369 15253/15253 +f 15253/15253 15369/15369 15254/15254 +f 15370/15370 15311/15311 15254/15254 +f 15311/15311 15312/15312 15114/15114 +f 15312/15312 15371/15371 15255/15255 +f 15313/15313 15255/15255 15372/15372 +f 15314/15314 15308/15308 15185/15185 +f 15373/15373 15314/15314 15186/15186 +f 15256/15256 15374/15374 15315/15315 +f 15186/15186 15315/15315 15373/15373 +f 15313/15313 15372/15372 15256/15256 +f 15258/15258 15316/15316 15257/15257 +f 15260/15260 15192/15192 15375/15375 +f 15192/15192 15259/15259 15375/15375 +f 15261/15261 15375/15375 15259/15259 +f 15375/15375 15317/15317 15260/15260 +f 15262/15262 15317/15317 15318/15318 +f 15320/15320 15199/15199 15319/15319 +f 15322/15322 15319/15319 15198/15198 +f 15363/15363 15244/15244 15320/15320 +f 15263/15263 15321/15321 15376/15376 +f 15322/15322 15263/15263 15377/15377 +f 15376/15376 15321/15321 15264/15264 +f 15264/15264 15318/15318 15378/15378 +f 15327/15327 15274/15274 15201/15201 +f 15202/15202 15323/15323 15325/15325 +f 15324/15324 15268/15268 15266/15266 +f 15326/15326 15379/15379 15267/15267 +f 15131/15131 15328/15328 15326/15326 +f 15267/15267 15379/15379 15327/15327 +f 15328/15328 15268/15268 15326/15326 +f 15330/15330 15205/15205 15329/15329 +f 15330/15330 15380/15380 15269/15269 +f 15269/15269 15381/15381 15270/15270 +f 15270/15270 15381/15381 15271/15271 +f 15382/15382 15206/15206 15331/15331 +f 15383/15383 15331/15331 15271/15271 +f 15329/15329 15272/15272 15273/15273 +f 15273/15273 15279/15279 15338/15338 +f 15275/15275 15274/15274 15379/15379 +f 15384/15384 15276/15276 15277/15277 +f 15384/15384 15278/15278 15276/15276 +f 15277/15277 15332/15332 15385/15385 +f 15275/15275 15379/15379 15333/15333 +f 15386/15386 15212/15212 15333/15333 +f 15334/15334 15336/15336 15213/15213 +f 15278/15278 15387/15387 15335/15335 +f 15334/15334 15214/15214 15335/15335 +f 15388/15388 15337/15337 15218/15218 +f 15389/15389 15217/15217 15337/15337 +f 15217/15217 15389/15389 15338/15338 +f 15281/15281 15390/15390 15280/15280 +f 15280/15280 15391/15391 15339/15339 +f 15339/15339 15392/15392 15218/15218 +f 15393/15393 15281/15281 15340/15340 +f 15282/15282 15336/15336 15394/15394 +f 15395/15395 15340/15340 15282/15282 +f 15284/15284 15287/15287 15283/15283 +f 15341/15341 15396/15396 15284/15284 +f 15341/15341 15221/15221 15286/15286 +f 15342/15342 15344/15344 15153/15153 +f 15397/15397 15343/15343 15285/15285 +f 15398/15398 15285/15285 15344/15344 +f 15345/15345 15226/15226 15343/15343 +f 15345/15345 15399/15399 15286/15286 +f 15400/15400 15290/15290 15287/15287 +f 15401/15401 15346/15346 15289/15289 +f 15289/15289 15347/15347 15401/15401 +f 15157/15157 15402/15402 15347/15347 +f 15400/15400 15157/15157 15290/15290 +f 15403/15403 15348/15348 15291/15291 +f 15349/15349 15350/15350 15163/15163 +f 15292/15292 15404/15404 15349/15349 +f 15403/15403 15292/15292 15348/15348 +f 15405/15405 15235/15235 15350/15350 +f 15406/15406 15232/15232 15351/15351 +f 15407/15407 15351/15351 15293/15293 +f 15408/15408 15236/15236 15352/15352 +f 15232/15232 15406/15406 15352/15352 +f 15353/15353 15409/15409 15293/15293 +f 15295/15295 15355/15355 15294/15294 +f 15294/15294 15410/15410 15353/15353 +f 15354/15354 15235/15235 15411/15411 +f 15355/15355 15234/15234 15354/15354 +f 15296/15296 15356/15356 15412/15412 +f 15236/15236 15413/15413 15356/15356 +f 15296/15296 15357/15357 15297/15297 +f 15298/15298 15359/15359 15299/15299 +f 15358/15358 15359/15359 15298/15298 +f 15358/15358 15238/15238 15357/15357 +f 15360/15360 15240/15240 15359/15359 +f 15360/15360 15414/15414 15300/15300 +f 15361/15361 15300/15300 15415/15415 +f 15362/15362 15416/15416 15301/15301 +f 15303/15303 15301/15301 15254/15254 +f 15361/15361 15417/15417 15302/15302 +f 15417/15417 15362/15362 15302/15302 +f 15369/15369 15304/15304 15303/15303 +f 15403/15403 15291/15291 15363/15363 +f 15323/15323 15245/15245 15364/15364 +f 15305/15305 15418/15418 15364/15364 +f 15419/15419 15305/15305 15307/15307 +f 15248/15248 15366/15366 15365/15365 +f 15420/15420 15306/15306 15250/15250 +f 15366/15366 15306/15306 15421/15421 +f 15422/15422 15307/15307 15365/15365 +f 15423/15423 15367/15367 15249/15249 +f 15250/15250 15367/15367 15420/15420 +f 15249/15249 15368/15368 15424/15424 +f 15308/15308 15314/15314 15368/15368 +f 15369/15369 15303/15303 15254/15254 +f 15311/15311 15370/15370 15425/15425 +f 15370/15370 15254/15254 15426/15426 +f 15425/15425 15312/15312 15311/15311 +f 15371/15371 15312/15312 15427/15427 +f 15372/15372 15255/15255 15371/15371 +f 15373/15373 15428/15428 15314/15314 +f 15374/15374 15256/15256 15429/15429 +f 15430/15430 15315/15315 15374/15374 +f 15431/15431 15373/15373 15315/15315 +f 15256/15256 15372/15372 15429/15429 +f 15432/15432 15317/15317 15375/15375 +f 15433/15433 15318/15318 15317/15317 +f 15319/15319 15434/15434 15320/15320 +f 15319/15319 15322/15322 15435/15435 +f 15320/15320 15434/15434 15363/15363 +f 15263/15263 15376/15376 15436/15436 +f 15435/15435 15322/15322 15377/15377 +f 15436/15436 15377/15377 15263/15263 +f 15376/15376 15264/15264 15378/15378 +f 15318/15318 15433/15433 15378/15378 +f 15327/15327 15379/15379 15274/15274 +f 15268/15268 15324/15324 15437/15437 +f 15438/15438 15379/15379 15326/15326 +f 15326/15326 15268/15268 15437/15437 +f 15389/15389 15330/15330 15329/15329 +f 15439/15439 15380/15380 15330/15330 +f 15380/15380 15381/15381 15269/15269 +f 15440/15440 15271/15271 15381/15381 +f 15206/15206 15382/15382 15441/15441 +f 15382/15382 15331/15331 15442/15442 +f 15383/15383 15271/15271 15440/15440 +f 15383/15383 15443/15443 15331/15331 +f 15273/15273 15338/15338 15329/15329 +f 15384/15384 15277/15277 15385/15385 +f 15278/15278 15384/15384 15387/15387 +f 15444/15444 15333/15333 15379/15379 +f 15333/15333 15444/15444 15386/15386 +f 15336/15336 15334/15334 15394/15394 +f 15335/15335 15387/15387 15445/15445 +f 15335/15335 15394/15394 15334/15334 +f 15388/15388 15446/15446 15337/15337 +f 15218/15218 15447/15447 15388/15388 +f 15446/15446 15389/15389 15337/15337 +f 15389/15389 15329/15329 15338/15338 +f 15280/15280 15390/15390 15391/15391 +f 15393/15393 15390/15390 15281/15281 +f 15339/15339 15391/15391 15448/15448 +f 15447/15447 15218/15218 15392/15392 +f 15448/15448 15392/15392 15339/15339 +f 15393/15393 15340/15340 15395/15395 +f 15395/15395 15282/15282 15394/15394 +f 15284/15284 15449/15449 15287/15287 +f 15396/15396 15449/15449 15284/15284 +f 15399/15399 15396/15396 15341/15341 +f 15341/15341 15286/15286 15399/15399 +f 15398/15398 15344/15344 15342/15342 +f 15398/15398 15397/15397 15285/15285 +f 15450/15450 15343/15343 15397/15397 +f 15345/15345 15343/15343 15450/15450 +f 15345/15345 15451/15451 15399/15399 +f 15400/15400 15287/15287 15449/15449 +f 15401/15401 15347/15347 15452/15452 +f 15402/15402 15453/15453 15347/15347 +f 15400/15400 15402/15402 15157/15157 +f 15404/15404 15350/15350 15349/15349 +f 15404/15404 15292/15292 15403/15403 +f 15405/15405 15411/15411 15235/15235 +f 15350/15350 15404/15404 15405/15405 +f 15351/15351 15454/15454 15406/15406 +f 15455/15455 15351/15351 15407/15407 +f 15293/15293 15409/15409 15407/15407 +f 15236/15236 15408/15408 15413/15413 +f 15408/15408 15352/15352 15406/15406 +f 15456/15456 15409/15409 15353/15353 +f 15457/15457 15294/15294 15355/15355 +f 15294/15294 15458/15458 15410/15410 +f 15410/15410 15456/15456 15353/15353 +f 15354/15354 15411/15411 15459/15459 +f 15355/15355 15354/15354 15460/15460 +f 15357/15357 15296/15296 15412/15412 +f 15412/15412 15356/15356 15461/15461 +f 15462/15462 15356/15356 15413/15413 +f 15359/15359 15358/15358 15360/15360 +f 15463/15463 15358/15358 15357/15357 +f 15360/15360 15464/15464 15414/15414 +f 15415/15415 15300/15300 15414/15414 +f 15361/15361 15415/15415 15465/15465 +f 15417/15417 15416/15416 15362/15362 +f 15416/15416 15426/15426 15301/15301 +f 15254/15254 15301/15301 15426/15426 +f 15465/15465 15417/15417 15361/15361 +f 15403/15403 15363/15363 15466/15466 +f 15364/15364 15467/15467 15323/15323 +f 15468/15468 15418/15418 15305/15305 +f 15418/15418 15467/15467 15364/15364 +f 15468/15468 15305/15305 15419/15419 +f 15422/15422 15419/15419 15307/15307 +f 15366/15366 15469/15469 15365/15365 +f 15470/15470 15306/15306 15420/15420 +f 15470/15470 15421/15421 15306/15306 +f 15471/15471 15366/15366 15421/15421 +f 15365/15365 15472/15472 15422/15422 +f 15420/15420 15367/15367 15423/15423 +f 15423/15423 15249/15249 15424/15424 +f 15368/15368 15473/15473 15424/15424 +f 15314/15314 15474/15474 15368/15368 +f 15425/15425 15370/15370 15475/15475 +f 15475/15475 15370/15370 15426/15426 +f 15427/15427 15312/15312 15425/15425 +f 15371/15371 15427/15427 15372/15372 +f 15428/15428 15373/15373 15476/15476 +f 15474/15474 15314/15314 15428/15428 +f 15429/15429 15477/15477 15374/15374 +f 15478/15478 15315/15315 15430/15430 +f 15479/15479 15430/15430 15374/15374 +f 15315/15315 15478/15478 15431/15431 +f 15431/15431 15476/15476 15373/15373 +f 15429/15429 15372/15372 15480/15480 +f 15433/15433 15317/15317 15432/15432 +f 15481/15481 15432/15432 15375/15375 +f 15435/15435 15434/15434 15319/15319 +f 15434/15434 15482/15482 15363/15363 +f 15376/15376 15483/15483 15436/15436 +f 15377/15377 15484/15484 15435/15435 +f 15436/15436 15485/15485 15377/15377 +f 15378/15378 15483/15483 15376/15376 +f 15378/15378 15433/15433 15486/15486 +f 15438/15438 15444/15444 15379/15379 +f 15326/15326 15437/15437 15438/15438 +f 15330/15330 15389/15389 15446/15446 +f 15446/15446 15439/15439 15330/15330 +f 15380/15380 15439/15439 15487/15487 +f 15380/15380 15488/15488 15381/15381 +f 15489/15489 15440/15440 15381/15381 +f 15441/15441 15382/15382 15490/15490 +f 15441/15441 15491/15491 15206/15206 +f 15442/15442 15331/15331 15443/15443 +f 15382/15382 15442/15442 15492/15492 +f 15493/15493 15383/15383 15440/15440 +f 15443/15443 15383/15383 15493/15493 +f 15385/15385 15494/15494 15384/15384 +f 15387/15387 15384/15384 15495/15495 +f 15496/15496 15386/15386 15444/15444 +f 15387/15387 15497/15497 15445/15445 +f 15498/15498 15335/15335 15445/15445 +f 15394/15394 15335/15335 15395/15395 +f 15446/15446 15388/15388 15447/15447 +f 15390/15390 15499/15499 15391/15391 +f 15393/15393 15499/15499 15390/15390 +f 15448/15448 15391/15391 15500/15500 +f 15501/15501 15447/15447 15392/15392 +f 15392/15392 15448/15448 15502/15502 +f 15498/15498 15393/15393 15395/15395 +f 15503/15503 15449/15449 15396/15396 +f 15399/15399 15503/15503 15396/15396 +f 15450/15450 15397/15397 15504/15504 +f 15450/15450 15505/15505 15345/15345 +f 15345/15345 15505/15505 15451/15451 +f 15451/15451 15503/15503 15399/15399 +f 15449/15449 15503/15503 15400/15400 +f 15452/15452 15347/15347 15453/15453 +f 15400/15400 15453/15453 15402/15402 +f 15403/15403 15506/15506 15404/15404 +f 15405/15405 15507/15507 15411/15411 +f 15405/15405 15404/15404 15508/15508 +f 15351/15351 15455/15455 15454/15454 +f 15454/15454 15509/15509 15406/15406 +f 15510/15510 15455/15455 15407/15407 +f 15407/15407 15409/15409 15510/15510 +f 15413/15413 15408/15408 15462/15462 +f 15406/15406 15509/15509 15408/15408 +f 15456/15456 15510/15510 15409/15409 +f 15457/15457 15355/15355 15460/15460 +f 15294/15294 15457/15457 15458/15458 +f 15458/15458 15511/15511 15410/15410 +f 15410/15410 15511/15511 15456/15456 +f 15460/15460 15354/15354 15459/15459 +f 15459/15459 15411/15411 15512/15512 +f 15463/15463 15357/15357 15412/15412 +f 15461/15461 15356/15356 15462/15462 +f 15412/15412 15461/15461 15513/15513 +f 15360/15360 15358/15358 15464/15464 +f 15464/15464 15358/15358 15463/15463 +f 15464/15464 15514/15514 15414/15414 +f 15415/15415 15414/15414 15515/15515 +f 15465/15465 15415/15415 15516/15516 +f 15517/15517 15416/15416 15417/15417 +f 15518/15518 15426/15426 15416/15416 +f 15417/15417 15465/15465 15517/15517 +f 15482/15482 15466/15466 15363/15363 +f 15506/15506 15403/15403 15466/15466 +f 15519/15519 15418/15418 15468/15468 +f 15520/15520 15467/15467 15418/15418 +f 15419/15419 15521/15521 15468/15468 +f 15521/15521 15419/15419 15422/15422 +f 15366/15366 15471/15471 15469/15469 +f 15472/15472 15365/15365 15469/15469 +f 15420/15420 15522/15522 15470/15470 +f 15523/15523 15421/15421 15470/15470 +f 15421/15421 15523/15523 15471/15471 +f 15420/15420 15423/15423 15524/15524 +f 15525/15525 15423/15423 15424/15424 +f 15473/15473 15368/15368 15526/15526 +f 15424/15424 15473/15473 15525/15525 +f 15526/15526 15368/15368 15474/15474 +f 15425/15425 15475/15475 15427/15427 +f 15475/15475 15426/15426 15527/15527 +f 15427/15427 15480/15480 15372/15372 +f 15528/15528 15428/15428 15476/15476 +f 15474/15474 15428/15428 15526/15526 +f 15477/15477 15429/15429 15480/15480 +f 15374/15374 15477/15477 15479/15479 +f 15478/15478 15430/15430 15529/15529 +f 15430/15430 15479/15479 15530/15530 +f 15431/15431 15478/15478 15531/15531 +f 15532/15532 15476/15476 15431/15431 +f 15432/15432 15481/15481 15433/15433 +f 15434/15434 15435/15435 15533/15533 +f 15533/15533 15482/15482 15434/15434 +f 15436/15436 15483/15483 15485/15485 +f 15484/15484 15377/15377 15534/15534 +f 15533/15533 15435/15435 15484/15484 +f 15377/15377 15485/15485 15534/15534 +f 15486/15486 15483/15483 15378/15378 +f 15433/15433 15481/15481 15486/15486 +f 15496/15496 15444/15444 15438/15438 +f 15437/15437 15496/15496 15438/15438 +f 15446/15446 15447/15447 15439/15439 +f 15487/15487 15535/15535 15380/15380 +f 15536/15536 15487/15487 15439/15439 +f 15488/15488 15380/15380 15535/15535 +f 15381/15381 15488/15488 15489/15489 +f 15440/15440 15489/15489 15537/15537 +f 15490/15490 15382/15382 15538/15538 +f 15539/15539 15441/15441 15490/15490 +f 15491/15491 15441/15441 15539/15539 +f 15540/15540 15442/15442 15443/15443 +f 15492/15492 15538/15538 15382/15382 +f 15492/15492 15442/15442 15541/15541 +f 15537/15537 15493/15493 15440/15440 +f 15542/15542 15443/15443 15493/15493 +f 15495/15495 15384/15384 15494/15494 +f 15387/15387 15495/15495 15497/15497 +f 15497/15497 15543/15543 15445/15445 +f 15543/15543 15498/15498 15445/15445 +f 15335/15335 15498/15498 15395/15395 +f 15391/15391 15499/15499 15500/15500 +f 15499/15499 15393/15393 15544/15544 +f 15448/15448 15500/15500 15545/15545 +f 15439/15439 15447/15447 15501/15501 +f 15546/15546 15501/15501 15392/15392 +f 15546/15546 15392/15392 15502/15502 +f 15448/15448 15545/15545 15502/15502 +f 15393/15393 15498/15498 15544/15544 +f 15504/15504 15547/15547 15450/15450 +f 15548/15548 15505/15505 15450/15450 +f 15549/15549 15451/15451 15505/15505 +f 15503/15503 15451/15451 15550/15550 +f 15551/15551 15400/15400 15503/15503 +f 15552/15552 15452/15452 15453/15453 +f 15453/15453 15400/15400 15551/15551 +f 15404/15404 15506/15506 15553/15553 +f 15508/15508 15507/15507 15405/15405 +f 15411/15411 15507/15507 15512/15512 +f 15404/15404 15553/15553 15508/15508 +f 15454/15454 15455/15455 15554/15554 +f 15454/15454 15555/15555 15509/15509 +f 15510/15510 15556/15556 15455/15455 +f 15408/15408 15557/15557 15462/15462 +f 15509/15509 15557/15557 15408/15408 +f 15558/15558 15510/15510 15456/15456 +f 15559/15559 15457/15457 15460/15460 +f 15458/15458 15457/15457 15560/15560 +f 15458/15458 15560/15560 15511/15511 +f 15511/15511 15558/15558 15456/15456 +f 15559/15559 15460/15460 15459/15459 +f 15561/15561 15459/15459 15512/15512 +f 15463/15463 15412/15412 15562/15562 +f 15461/15461 15462/15462 15563/15563 +f 15412/15412 15513/15513 15562/15562 +f 15461/15461 15563/15563 15513/15513 +f 15464/15464 15463/15463 15562/15562 +f 15564/15564 15414/15414 15514/15514 +f 15464/15464 15562/15562 15514/15514 +f 15414/15414 15564/15564 15515/15515 +f 15415/15415 15515/15515 15565/15565 +f 15516/15516 15517/15517 15465/15465 +f 15516/15516 15415/15415 15565/15565 +f 15416/15416 15517/15517 15518/15518 +f 15527/15527 15426/15426 15518/15518 +f 15566/15566 15466/15466 15482/15482 +f 15466/15466 15566/15566 15506/15506 +f 15521/15521 15418/15418 15519/15519 +f 15468/15468 15521/15521 15519/15519 +f 15567/15567 15467/15467 15520/15520 +f 15418/15418 15521/15521 15520/15520 +f 15567/15567 15521/15521 15422/15422 +f 15469/15469 15471/15471 15568/15568 +f 15568/15568 15472/15472 15469/15469 +f 15420/15420 15569/15569 15522/15522 +f 15470/15470 15522/15522 15570/15570 +f 15470/15470 15570/15570 15523/15523 +f 15571/15571 15471/15471 15523/15523 +f 15524/15524 15423/15423 15525/15525 +f 15524/15524 15569/15569 15420/15420 +f 15526/15526 15528/15528 15473/15473 +f 15525/15525 15473/15473 15528/15528 +f 15572/15572 15427/15427 15475/15475 +f 15572/15572 15475/15475 15527/15527 +f 15480/15480 15427/15427 15572/15572 +f 15526/15526 15428/15428 15528/15528 +f 15528/15528 15476/15476 15532/15532 +f 15573/15573 15477/15477 15480/15480 +f 15574/15574 15479/15479 15477/15477 +f 15529/15529 15430/15430 15575/15575 +f 15529/15529 15576/15576 15478/15478 +f 15530/15530 15479/15479 15574/15574 +f 15575/15575 15430/15430 15530/15530 +f 15577/15577 15531/15531 15478/15478 +f 15531/15531 15532/15532 15431/15431 +f 15482/15482 15533/15533 15484/15484 +f 15485/15485 15483/15483 15486/15486 +f 15578/15578 15484/15484 15534/15534 +f 15537/15537 15535/15535 15487/15487 +f 15501/15501 15536/15536 15439/15439 +f 15536/15536 15579/15579 15487/15487 +f 15535/15535 15489/15489 15488/15488 +f 15489/15489 15535/15535 15537/15537 +f 15538/15538 15580/15580 15490/15490 +f 15539/15539 15490/15490 15580/15580 +f 15539/15539 15581/15581 15491/15491 +f 15582/15582 15442/15442 15540/15540 +f 15540/15540 15443/15443 15542/15542 +f 15538/15538 15492/15492 15541/15541 +f 15541/15541 15442/15442 15582/15582 +f 15583/15583 15493/15493 15537/15537 +f 15583/15583 15542/15542 15493/15493 +f 15584/15584 15495/15495 15494/15494 +f 15495/15495 15585/15585 15497/15497 +f 15497/15497 15586/15586 15543/15543 +f 15587/15587 15498/15498 15543/15543 +f 15499/15499 15588/15588 15500/15500 +f 15589/15589 15499/15499 15544/15544 +f 15590/15590 15545/15545 15500/15500 +f 15501/15501 15546/15546 15591/15591 +f 15546/15546 15502/15502 15592/15592 +f 15593/15593 15502/15502 15545/15545 +f 15544/15544 15498/15498 15594/15594 +f 15547/15547 15504/15504 15595/15595 +f 15548/15548 15450/15450 15547/15547 +f 15505/15505 15548/15548 15549/15549 +f 15549/15549 15596/15596 15451/15451 +f 15503/15503 15550/15550 15597/15597 +f 15550/15550 15451/15451 15596/15596 +f 15503/15503 15597/15597 15551/15551 +f 15453/15453 15598/15598 15552/15552 +f 15551/15551 15598/15598 15453/15453 +f 15506/15506 15599/15599 15553/15553 +f 15507/15507 15508/15508 15512/15512 +f 15508/15508 15553/15553 15599/15599 +f 15455/15455 15600/15600 15554/15554 +f 15601/15601 15454/15454 15554/15554 +f 15601/15601 15555/15555 15454/15454 +f 15602/15602 15509/15509 15555/15555 +f 15558/15558 15556/15556 15510/15510 +f 15600/15600 15455/15455 15556/15556 +f 15603/15603 15462/15462 15557/15557 +f 15509/15509 15602/15602 15557/15557 +f 15457/15457 15559/15559 15560/15560 +f 15511/15511 15560/15560 15558/15558 +f 15559/15559 15459/15459 15604/15604 +f 15605/15605 15561/15561 15512/15512 +f 15459/15459 15561/15561 15604/15604 +f 15563/15563 15462/15462 15606/15606 +f 15607/15607 15562/15562 15513/15513 +f 15608/15608 15513/15513 15563/15563 +f 15514/15514 15609/15609 15564/15564 +f 15562/15562 15609/15609 15514/15514 +f 15610/15610 15515/15515 15564/15564 +f 15611/15611 15565/15565 15515/15515 +f 15517/15517 15516/15516 15612/15612 +f 15516/15516 15565/15565 15613/15613 +f 15518/15518 15517/15517 15614/15614 +f 15615/15615 15527/15527 15518/15518 +f 15616/15616 15566/15566 15482/15482 +f 15506/15506 15566/15566 15599/15599 +f 15520/15520 15521/15521 15567/15567 +f 15471/15471 15571/15571 15568/15568 +f 15472/15472 15568/15568 15617/15617 +f 15569/15569 15618/15618 15522/15522 +f 15570/15570 15522/15522 15618/15618 +f 15523/15523 15570/15570 15619/15619 +f 15571/15571 15523/15523 15619/15619 +f 15620/15620 15524/15524 15525/15525 +f 15621/15621 15569/15569 15524/15524 +f 15528/15528 15622/15622 15525/15525 +f 15527/15527 15623/15623 15572/15572 +f 15572/15572 15624/15624 15480/15480 +f 15622/15622 15528/15528 15532/15532 +f 15573/15573 15480/15480 15624/15624 +f 15477/15477 15573/15573 15574/15574 +f 15575/15575 15625/15625 15529/15529 +f 15478/15478 15576/15576 15577/15577 +f 15576/15576 15529/15529 15626/15626 +f 15530/15530 15574/15574 15627/15627 +f 15575/15575 15530/15530 15627/15627 +f 15577/15577 15628/15628 15531/15531 +f 15629/15629 15532/15532 15531/15531 +f 15482/15482 15484/15484 15616/15616 +f 15578/15578 15616/15616 15484/15484 +f 15487/15487 15579/15579 15537/15537 +f 15536/15536 15501/15501 15591/15591 +f 15579/15579 15536/15536 15591/15591 +f 15538/15538 15630/15630 15580/15580 +f 15580/15580 15631/15631 15539/15539 +f 15631/15631 15581/15581 15539/15539 +f 15540/15540 15632/15632 15582/15582 +f 15540/15540 15542/15542 15633/15633 +f 15538/15538 15541/15541 15630/15630 +f 15582/15582 15634/15634 15541/15541 +f 15583/15583 15537/15537 15635/15635 +f 15583/15583 15636/15636 15542/15542 +f 15584/15584 15494/15494 15637/15637 +f 15584/15584 15638/15638 15495/15495 +f 15495/15495 15638/15638 15585/15585 +f 15497/15497 15585/15585 15639/15639 +f 15586/15586 15640/15640 15543/15543 +f 15639/15639 15586/15586 15497/15497 +f 15587/15587 15594/15594 15498/15498 +f 15543/15543 15640/15640 15587/15587 +f 15641/15641 15500/15500 15588/15588 +f 15588/15588 15499/15499 15589/15589 +f 15642/15642 15589/15589 15544/15544 +f 15545/15545 15590/15590 15643/15643 +f 15641/15641 15590/15590 15500/15500 +f 15644/15644 15591/15591 15546/15546 +f 15592/15592 15645/15645 15546/15546 +f 15502/15502 15593/15593 15592/15592 +f 15646/15646 15593/15593 15545/15545 +f 15544/15544 15594/15594 15642/15642 +f 15547/15547 15595/15595 15647/15647 +f 15648/15648 15548/15548 15547/15547 +f 15596/15596 15549/15549 15548/15548 +f 15597/15597 15550/15550 15649/15649 +f 15649/15649 15550/15550 15596/15596 +f 15597/15597 15650/15650 15551/15551 +f 15552/15552 15598/15598 15651/15651 +f 15652/15652 15598/15598 15551/15551 +f 15653/15653 15512/15512 15508/15508 +f 15653/15653 15508/15508 15599/15599 +f 15600/15600 15601/15601 15554/15554 +f 15555/15555 15601/15601 15654/15654 +f 15602/15602 15555/15555 15654/15654 +f 15558/15558 15655/15655 15556/15556 +f 15556/15556 15656/15656 15600/15600 +f 15606/15606 15462/15462 15603/15603 +f 15657/15657 15603/15603 15557/15557 +f 15557/15557 15602/15602 15658/15658 +f 15560/15560 15559/15559 15655/15655 +f 15655/15655 15558/15558 15560/15560 +f 15559/15559 15604/15604 15655/15655 +f 15659/15659 15561/15561 15605/15605 +f 15605/15605 15512/15512 15653/15653 +f 15604/15604 15561/15561 15659/15659 +f 15563/15563 15606/15606 15608/15608 +f 15607/15607 15513/15513 15608/15608 +f 15562/15562 15607/15607 15609/15609 +f 15609/15609 15660/15660 15564/15564 +f 15661/15661 15610/15610 15564/15564 +f 15611/15611 15515/15515 15610/15610 +f 15565/15565 15611/15611 15613/15613 +f 15517/15517 15612/15612 15614/15614 +f 15612/15612 15516/15516 15613/15613 +f 15615/15615 15518/15518 15614/15614 +f 15527/15527 15615/15615 15662/15662 +f 15663/15663 15566/15566 15616/15616 +f 15664/15664 15599/15599 15566/15566 +f 15617/15617 15568/15568 15571/15571 +f 15617/15617 15665/15665 15472/15472 +f 15618/15618 15569/15569 15621/15621 +f 15618/15618 15666/15666 15570/15570 +f 15667/15667 15619/15619 15570/15570 +f 15571/15571 15619/15619 15668/15668 +f 15524/15524 15620/15620 15621/15621 +f 15620/15620 15525/15525 15622/15622 +f 15527/15527 15662/15662 15623/15623 +f 15572/15572 15623/15623 15669/15669 +f 15669/15669 15624/15624 15572/15572 +f 15622/15622 15532/15532 15620/15620 +f 15573/15573 15624/15624 15627/15627 +f 15627/15627 15574/15574 15573/15573 +f 15670/15670 15625/15625 15575/15575 +f 15529/15529 15625/15625 15626/15626 +f 15577/15577 15576/15576 15626/15626 +f 15671/15671 15575/15575 15627/15627 +f 15577/15577 15672/15672 15628/15628 +f 15628/15628 15629/15629 15531/15531 +f 15673/15673 15532/15532 15629/15629 +f 15578/15578 15663/15663 15616/15616 +f 15635/15635 15537/15537 15579/15579 +f 15591/15591 15635/15635 15579/15579 +f 15580/15580 15630/15630 15674/15674 +f 15580/15580 15675/15675 15631/15631 +f 36422/39498 15581/15581 15631/15631 +f 36423/39499 36422/39498 15631/15631 +f 15632/15632 15540/15540 15676/15676 +f 15633/15633 15542/15542 15636/15636 +f 15676/15676 15540/15540 15633/15633 +f 15630/15630 15541/15541 15634/15634 +f 15635/15635 15677/15677 15583/15583 +f 15636/15636 15583/15583 15678/15678 +f 15584/15584 15637/15637 15679/15679 +f 15638/15638 15584/15584 15679/15679 +f 15638/15638 15639/15639 15585/15585 +f 15640/15640 15586/15586 15639/15639 +f 15642/15642 15594/15594 15587/15587 +f 15680/15680 15587/15587 15640/15640 +f 15641/15641 15588/15588 15681/15681 +f 15588/15588 15589/15589 15682/15682 +f 15683/15683 15589/15589 15642/15642 +f 15643/15643 15590/15590 15684/15684 +f 15545/15545 15643/15643 15646/15646 +f 15590/15590 15641/15641 15684/15684 +f 15677/15677 15591/15591 15644/15644 +f 15645/15645 15644/15644 15546/15546 +f 15685/15685 15645/15645 15592/15592 +f 15593/15593 15685/15685 15592/15592 +f 15646/15646 15685/15685 15593/15593 +f 15647/15647 15595/15595 15686/15686 +f 15547/15547 15647/15647 15648/15648 +f 15687/15687 15548/15548 15648/15648 +f 15596/15596 15548/15548 15649/15649 +f 15597/15597 15649/15649 15688/15688 +f 15688/15688 15650/15650 15597/15597 +f 15689/15689 15551/15551 15650/15650 +f 15651/15651 15598/15598 15652/15652 +f 15652/15652 15551/15551 15689/15689 +f 15599/15599 15690/15690 15653/15653 +f 15600/15600 15691/15691 15601/15601 +f 15654/15654 15601/15601 15692/15692 +f 15692/15692 15602/15602 15654/15654 +f 15600/15600 15656/15656 15693/15693 +f 15694/15694 15606/15606 15603/15603 +f 15657/15657 15695/15695 15603/15603 +f 15557/15557 15696/15696 15657/15657 +f 15658/15658 15602/15602 15697/15697 +f 15658/15658 15696/15696 15557/15557 +f 15605/15605 15698/15698 15659/15659 +f 15605/15605 15653/15653 15690/15690 +f 15608/15608 15606/15606 15699/15699 +f 15700/15700 15607/15607 15608/15608 +f 15701/15701 15609/15609 15607/15607 +f 15661/15661 15564/15564 15660/15660 +f 15702/15702 15660/15660 15609/15609 +f 15703/15703 15610/15610 15661/15661 +f 15610/15610 15703/15703 15611/15611 +f 15611/15611 15704/15704 15613/15613 +f 15705/15705 15614/15614 15612/15612 +f 15612/15612 15613/15613 15705/15705 +f 15615/15615 15614/15614 15705/15705 +f 15705/15705 15662/15662 15615/15615 +f 15664/15664 15566/15566 15663/15663 +f 15599/15599 15664/15664 15690/15690 +f 15668/15668 15617/15617 15571/15571 +f 15706/15706 15665/15665 15617/15617 +f 15618/15618 15621/15621 15666/15666 +f 15666/15666 15667/15667 15570/15570 +f 15668/15668 15619/15619 15667/15667 +f 15620/15620 15707/15707 15621/15621 +f 15623/15623 15662/15662 15708/15708 +f 15709/15709 15669/15669 15623/15623 +f 15624/15624 15669/15669 15671/15671 +f 15707/15707 15620/15620 15532/15532 +f 15624/15624 15671/15671 15627/15627 +f 15670/15670 15710/15710 15625/15625 +f 15671/15671 15670/15670 15575/15575 +f 15625/15625 15711/15711 15626/15626 +f 15711/15711 15577/15577 15626/15626 +f 15712/15712 15628/15628 15672/15672 +f 15711/15711 15672/15672 15577/15577 +f 15628/15628 15673/15673 15629/15629 +f 15673/15673 15707/15707 15532/15532 +f 15635/15635 15591/15591 15677/15677 +f 15674/15674 15630/15630 15713/15713 +f 36424/39500 15580/15580 15674/15674 +f 36425/39501 36424/39500 15674/15674 +f 36426/39502 15675/15675 15580/15580 +f 36424/39503 36426/39502 15580/15580 +f 36427/39504 15631/15631 15675/15675 +f 36428/39505 36427/39504 15675/15675 +f 15631/15631 36427/39506 36423/39507 +f 15581/15581 36422/39508 36429/39509 +f 15636/15636 15714/15714 15633/15633 +f 15676/15676 15633/15633 15714/15714 +f 15634/15634 15713/15713 15630/15630 +f 15678/15678 15583/15583 15677/15677 +f 15678/15678 15714/15714 15636/15636 +f 15638/15638 15679/15679 15715/15715 +f 15716/15716 15639/15639 15638/15638 +f 15639/15639 15717/15717 15640/15640 +f 15680/15680 15642/15642 15587/15587 +f 15680/15680 15640/15640 15718/15718 +f 15684/15684 15641/15641 15681/15681 +f 15719/15719 15681/15681 15588/15588 +f 15682/15682 15589/15589 15683/15683 +f 15682/15682 15720/15720 15588/15588 +f 15642/15642 15680/15680 15683/15683 +f 15721/15721 15643/15643 15684/15684 +f 15646/15646 15643/15643 15722/15722 +f 15644/15644 15723/15723 15677/15677 +f 15723/15723 15644/15644 15645/15645 +f 15645/15645 15685/15685 15724/15724 +f 15646/15646 15725/15725 15685/15685 +f 15726/15726 15647/15647 15686/15686 +f 15647/15647 15727/15727 15648/15648 +f 15548/15548 15687/15687 15649/15649 +f 15727/15727 15687/15687 15648/15648 +f 15649/15649 15728/15728 15688/15688 +f 15650/15650 15688/15688 15729/15729 +f 15689/15689 15650/15650 15730/15730 +f 15651/15651 15652/15652 15731/15731 +f 15689/15689 15732/15732 15652/15652 +f 15601/15601 15691/15691 15733/15733 +f 15691/15691 15600/15600 15693/15693 +f 15692/15692 15601/15601 15733/15733 +f 15602/15602 15692/15692 15734/15734 +f 15735/15735 15693/15693 15656/15656 +f 15606/15606 15694/15694 15736/15736 +f 15694/15694 15603/15603 15695/15695 +f 15657/15657 15737/15737 15695/15695 +f 15696/15696 15737/15737 15657/15657 +f 15602/15602 15734/15734 15697/15697 +f 15738/15738 15658/15658 15697/15697 +f 15696/15696 15658/15658 15737/15737 +f 15690/15690 15698/15698 15605/15605 +f 15606/15606 15736/15736 15699/15699 +f 15700/15700 15608/15608 15699/15699 +f 15739/15739 15607/15607 15700/15700 +f 15607/15607 15739/15739 15701/15701 +f 15702/15702 15609/15609 15701/15701 +f 15660/15660 15740/15740 15661/15661 +f 15740/15740 15660/15660 15702/15702 +f 15703/15703 15661/15661 15740/15740 +f 15704/15704 15611/15611 15703/15703 +f 15613/15613 15704/15704 15741/15741 +f 15613/15613 15742/15742 15705/15705 +f 15743/15743 15662/15662 15705/15705 +f 15690/15690 15664/15664 15663/15663 +f 15617/15617 15668/15668 15706/15706 +f 15621/15621 15744/15744 15666/15666 +f 15745/15745 15667/15667 15666/15666 +f 15745/15745 15668/15668 15667/15667 +f 15621/15621 15707/15707 15746/15746 +f 15708/15708 15662/15662 15743/15743 +f 15623/15623 15708/15708 15747/15747 +f 15709/15709 15623/15623 15748/15748 +f 15709/15709 15749/15749 15669/15669 +f 15671/15671 15669/15669 15749/15749 +f 15670/15670 15750/15750 15710/15710 +f 15751/15751 15625/15625 15710/15710 +f 15671/15671 15752/15752 15670/15670 +f 15625/15625 15751/15751 15711/15711 +f 15746/15746 15628/15628 15712/15712 +f 15751/15751 15712/15712 15672/15672 +f 15711/15711 15751/15751 15672/15672 +f 15746/15746 15673/15673 15628/15628 +f 15707/15707 15673/15673 15746/15746 +f 36430/39510 15674/15674 15713/15713 +f 36431/39511 36430/39510 15713/15713 +f 15674/15674 36432/39512 36425/39513 +f 15675/15675 36426/39514 36433/39515 +f 15675/15675 36433/39516 36428/39517 +f 15634/15634 15753/15753 15713/15713 +f 15754/15754 15678/15678 15677/15677 +f 15714/15714 15678/15678 15755/15755 +f 15716/15716 15638/15638 15715/15715 +f 15639/15639 15716/15716 15717/15717 +f 15640/15640 15717/15717 15718/15718 +f 15756/15756 15680/15680 15718/15718 +f 15684/15684 15681/15681 15721/15721 +f 15757/15757 15681/15681 15719/15719 +f 15588/15588 15720/15720 15719/15719 +f 15720/15720 15682/15682 15683/15683 +f 15756/15756 15683/15683 15680/15680 +f 15721/15721 15758/15758 15643/15643 +f 15722/15722 15725/15725 15646/15646 +f 15758/15758 15722/15722 15643/15643 +f 15677/15677 15723/15723 15754/15754 +f 15723/15723 15645/15645 15724/15724 +f 15685/15685 15725/15725 15724/15724 +f 15759/15759 15726/15726 15686/15686 +f 15727/15727 15647/15647 15726/15726 +f 15727/15727 15649/15649 15687/15687 +f 15727/15727 15728/15728 15649/15649 +f 15688/15688 15728/15728 15760/15760 +f 15688/15688 15760/15760 15729/15729 +f 15730/15730 15650/15650 15729/15729 +f 15761/15761 15689/15689 15730/15730 +f 15652/15652 15732/15732 15731/15731 +f 15689/15689 15762/15762 15732/15732 +f 15691/15691 15763/15763 15733/15733 +f 15691/15691 15693/15693 15764/15764 +f 15734/15734 15692/15692 15733/15733 +f 15693/15693 15735/15735 15765/15765 +f 15736/15736 15694/15694 15766/15766 +f 15767/15767 15694/15694 15695/15695 +f 15695/15695 15737/15737 15767/15767 +f 15697/15697 15734/15734 15768/15768 +f 15768/15768 15738/15738 15697/15697 +f 15738/15738 15737/15737 15658/15658 +f 15769/15769 15699/15699 15736/15736 +f 15769/15769 15700/15700 15699/15699 +f 15769/15769 15739/15739 15700/15700 +f 15701/15701 15739/15739 15770/15770 +f 15740/15740 15771/15771 15703/15703 +f 15771/15771 15704/15704 15703/15703 +f 15741/15741 15704/15704 15772/15772 +f 15613/15613 15741/15741 15742/15742 +f 15705/15705 15742/15742 15773/15773 +f 15705/15705 15773/15773 15743/15743 +f 15774/15774 15706/15706 15668/15668 +f 15744/15744 15621/15621 15746/15746 +f 15744/15744 15775/15775 15666/15666 +f 15666/15666 15775/15775 15745/15745 +f 15774/15774 15668/15668 15745/15745 +f 15773/15773 15708/15708 15743/15743 +f 15776/15776 15747/15747 15708/15708 +f 15623/15623 15747/15747 15748/15748 +f 15709/15709 15748/15748 15777/15777 +f 15749/15749 15709/15709 15778/15778 +f 15671/15671 15749/15749 15779/15779 +f 15750/15750 15670/15670 15780/15780 +f 15710/15710 15750/15750 15781/15781 +f 15751/15751 15710/15710 15781/15781 +f 15780/15780 15670/15670 15752/15752 +f 15779/15779 15752/15752 15671/15671 +f 15746/15746 15712/15712 15782/15782 +f 15781/15781 15712/15712 15751/15751 +f 15674/15674 36430/39518 36432/39519 +f 36431/39520 15713/15713 15753/15753 +f 36434/39521 36431/39520 15753/15753 +f 15678/15678 15754/15754 15755/15755 +f 15714/15714 15755/15755 15783/15783 +f 15717/15717 15716/15716 15715/15715 +f 15717/15717 15784/15784 15718/15718 +f 15756/15756 15718/15718 15785/15785 +f 15786/15786 15721/15721 15681/15681 +f 15787/15787 15681/15681 15757/15757 +f 15757/15757 15719/15719 15788/15788 +f 15720/15720 15789/15789 15719/15719 +f 15720/15720 15683/15683 15756/15756 +f 15758/15758 15721/15721 15790/15790 +f 15722/15722 15758/15758 15725/15725 +f 15754/15754 15723/15723 15724/15724 +f 15754/15754 15724/15724 15725/15725 +f 15791/15791 15759/15759 15686/15686 +f 15759/15759 15727/15727 15726/15726 +f 15728/15728 15727/15727 15759/15759 +f 15728/15728 15792/15792 15760/15760 +f 15760/15760 15793/15793 15729/15729 +f 15729/15729 15794/15794 15730/15730 +f 15762/15762 15689/15689 15761/15761 +f 15761/15761 15730/15730 15795/15795 +f 15731/15731 15732/15732 15796/15796 +f 15732/15732 15762/15762 15797/15797 +f 15763/15763 15691/15691 15764/15764 +f 15763/15763 15768/15768 15733/15733 +f 15764/15764 15693/15693 15798/15798 +f 15768/15768 15734/15734 15733/15733 +f 15693/15693 15765/15765 15798/15798 +f 15767/15767 15766/15766 15694/15694 +f 15766/15766 15799/15799 15736/15736 +f 15737/15737 15800/15800 15767/15767 +f 15801/15801 15738/15738 15768/15768 +f 15737/15737 15738/15738 15802/15802 +f 15736/15736 15803/15803 15769/15769 +f 15769/15769 15804/15804 15739/15739 +f 15739/15739 15805/15805 15770/15770 +f 15806/15806 15704/15704 15771/15771 +f 15772/15772 15807/15807 15741/15741 +f 15704/15704 15806/15806 15772/15772 +f 15742/15742 15741/15741 15808/15808 +f 15808/15808 15773/15773 15742/15742 +f 15782/15782 15744/15744 15746/15746 +f 15782/15782 15775/15775 15744/15744 +f 15745/15745 15775/15775 15774/15774 +f 15773/15773 15776/15776 15708/15708 +f 15748/15748 15747/15747 15776/15776 +f 15777/15777 15748/15748 15809/15809 +f 15810/15810 15709/15709 15777/15777 +f 15749/15749 15778/15778 15779/15779 +f 15811/15811 15778/15778 15709/15709 +f 15812/15812 15750/15750 15780/15780 +f 15812/15812 15781/15781 15750/15750 +f 15780/15780 15752/15752 15779/15779 +f 15813/15813 15782/15782 15712/15712 +f 15813/15813 15712/15712 15781/15781 +f 15753/15753 36435/39522 36434/39523 +f 15755/15755 15754/15754 15758/15758 +f 15755/15755 15814/15814 15783/15783 +f 15715/15715 15815/15815 15717/15717 +f 15718/15718 15784/15784 15816/15816 +f 15815/15815 15784/15784 15717/15717 +f 15785/15785 15789/15789 15756/15756 +f 15718/15718 15817/15817 15785/15785 +f 15786/15786 15790/15790 15721/15721 +f 15787/15787 15786/15786 15681/15681 +f 15788/15788 15719/15719 15789/15789 +f 15720/15720 15756/15756 15789/15789 +f 15790/15790 15755/15755 15758/15758 +f 15754/15754 15725/15725 15758/15758 +f 15791/15791 15792/15792 15759/15759 +f 15792/15792 15728/15728 15759/15759 +f 15792/15792 15793/15793 15760/15760 +f 15793/15793 15818/15818 15729/15729 +f 15730/15730 15794/15794 15795/15795 +f 15818/15818 15794/15794 15729/15729 +f 15761/15761 15797/15797 15762/15762 +f 15795/15795 15819/15819 15761/15761 +f 15797/15797 15796/15796 15732/15732 +f 15731/15731 15796/15796 15820/15820 +f 15763/15763 15764/15764 15798/15798 +f 15768/15768 15763/15763 15821/15821 +f 15765/15765 15822/15822 15798/15798 +f 15800/15800 15766/15766 15767/15767 +f 15823/15823 15736/15736 15799/15799 +f 15824/15824 15799/15799 15766/15766 +f 15737/15737 15802/15802 15800/15800 +f 15802/15802 15738/15738 15801/15801 +f 15821/15821 15801/15801 15768/15768 +f 15736/15736 15825/15825 15803/15803 +f 15804/15804 15769/15769 15803/15803 +f 15805/15805 15739/15739 15804/15804 +f 15770/15770 15805/15805 15826/15826 +f 15772/15772 15827/15827 15807/15807 +f 15741/15741 15807/15807 15828/15828 +f 15828/15828 15808/15808 15741/15741 +f 15808/15808 15828/15828 15773/15773 +f 15775/15775 15782/15782 15813/15813 +f 15774/15774 15775/15775 15813/15813 +f 15776/15776 15773/15773 15829/15829 +f 15748/15748 15776/15776 15809/15809 +f 15830/15830 15777/15777 15809/15809 +f 15810/15810 15777/15777 15831/15831 +f 15709/15709 15810/15810 15811/15811 +f 15779/15779 15778/15778 15832/15832 +f 15832/15832 15778/15778 15811/15811 +f 15833/15833 15812/15812 15780/15780 +f 15781/15781 15812/15812 15834/15834 +f 15780/15780 15779/15779 15835/15835 +f 15813/15813 15781/15781 15834/15834 +f 15755/15755 15790/15790 15814/15814 +f 15814/15814 15836/15836 15783/15783 +f 15784/15784 15815/15815 15816/15816 +f 15817/15817 15718/15718 15816/15816 +f 15837/15837 15790/15790 15786/15786 +f 15787/15787 15838/15838 15786/15786 +f 15839/15839 15792/15792 15791/15791 +f 15839/15839 15793/15793 15792/15792 +f 15793/15793 15839/15839 15818/15818 +f 15794/15794 15840/15840 15795/15795 +f 15841/15841 15794/15794 15818/15818 +f 15842/15842 15797/15797 15761/15761 +f 15761/15761 15819/15819 15842/15842 +f 15795/15795 15840/15840 15819/15819 +f 15797/15797 15843/15843 15796/15796 +f 15820/15820 15796/15796 15843/15843 +f 15798/15798 15821/15821 15763/15763 +f 15765/15765 15844/15844 15822/15822 +f 15822/15822 15845/15845 15798/15798 +f 15800/15800 15846/15846 15766/15766 +f 15823/15823 15825/15825 15736/15736 +f 15823/15823 15799/15799 15847/15847 +f 15848/15848 15824/15824 15766/15766 +f 15799/15799 15824/15824 15847/15847 +f 15849/15849 15800/15800 15802/15802 +f 15801/15801 15850/15850 15802/15802 +f 15850/15850 15801/15801 15821/15821 +f 15851/15851 15803/15803 15825/15825 +f 15803/15803 15805/15805 15804/15804 +f 15805/15805 15851/15851 15826/15826 +f 15772/15772 15852/15852 15827/15827 +f 15807/15807 15827/15827 15853/15853 +f 15828/15828 15807/15807 15854/15854 +f 15773/15773 15828/15828 15829/15829 +f 15813/15813 15855/15855 15774/15774 +f 15776/15776 15829/15829 15809/15809 +f 15830/15830 15856/15856 15777/15777 +f 15857/15857 15830/15830 15809/15809 +f 15777/15777 15858/15858 15831/15831 +f 15811/15811 15810/15810 15831/15831 +f 15779/15779 15832/15832 15859/15859 +f 15860/15860 15832/15832 15811/15811 +f 15812/15812 15833/15833 15861/15861 +f 15833/15833 15780/15780 15835/15835 +f 15779/15779 15859/15859 15835/15835 +f 15813/15813 15834/15834 15855/15855 +f 15814/15814 15790/15790 15837/15837 +f 15786/15786 15838/15838 15837/15837 +f 15840/15840 15794/15794 15841/15841 +f 15840/15840 15841/15841 15818/15818 +f 15842/15842 15862/15862 15797/15797 +f 15862/15862 15842/15842 15819/15819 +f 15797/15797 15862/15862 15843/15843 +f 15798/15798 15845/15845 15821/15821 +f 15863/15863 15822/15822 15844/15844 +f 15864/15864 15845/15845 15822/15822 +f 15846/15846 15800/15800 15865/15865 +f 15846/15846 15848/15848 15766/15766 +f 15866/15866 15825/15825 15823/15823 +f 15847/15847 15867/15867 15823/15823 +f 15868/15868 15824/15824 15848/15848 +f 15824/15824 15869/15869 15847/15847 +f 15850/15850 15849/15849 15802/15802 +f 15849/15849 15870/15870 15800/15800 +f 15821/15821 15871/15871 15850/15850 +f 15825/15825 15872/15872 15851/15851 +f 15805/15805 15803/15803 15851/15851 +f 15851/15851 15873/15873 15826/15826 +f 15852/15852 15853/15853 15827/15827 +f 15854/15854 15807/15807 15853/15853 +f 15829/15829 15828/15828 15854/15854 +f 15829/15829 15857/15857 15809/15809 +f 15856/15856 15830/15830 15874/15874 +f 15777/15777 15856/15856 15858/15858 +f 15874/15874 15830/15830 15857/15857 +f 15858/15858 15875/15875 15831/15831 +f 15811/15811 15831/15831 15860/15860 +f 15832/15832 15876/15876 15859/15859 +f 15860/15860 15877/15877 15832/15832 +f 15833/15833 15878/15878 15861/15861 +f 15879/15879 15812/15812 15861/15861 +f 15833/15833 15835/15835 15878/15878 +f 15835/15835 15859/15859 15876/15876 +f 15871/15871 15821/15821 15845/15845 +f 15863/15863 15864/15864 15822/15822 +f 15844/15844 15880/15880 15863/15863 +f 15864/15864 15881/15881 15845/15845 +f 15865/15865 15800/15800 15870/15870 +f 15882/15882 15846/15846 15865/15865 +f 15848/15848 15846/15846 15882/15882 +f 15825/15825 15866/15866 15883/15883 +f 15823/15823 15867/15867 15866/15866 +f 15884/15884 15867/15867 15847/15847 +f 15869/15869 15824/15824 15868/15868 +f 15868/15868 15848/15848 15885/15885 +f 15869/15869 15884/15884 15847/15847 +f 15850/15850 15886/15886 15849/15849 +f 15886/15886 15870/15870 15849/15849 +f 15871/15871 15886/15886 15850/15850 +f 15872/15872 15825/15825 15883/15883 +f 15872/15872 15887/15887 15851/15851 +f 15851/15851 15887/15887 15873/15873 +f 15857/15857 15854/15854 15853/15853 +f 15829/15829 15854/15854 15857/15857 +f 15874/15874 15888/15888 15856/15856 +f 15858/15858 15856/15856 15888/15888 +f 15853/15853 15874/15874 15857/15857 +f 15875/15875 15858/15858 15888/15888 +f 15831/15831 15875/15875 15860/15860 +f 15875/15875 15877/15877 15860/15860 +f 15878/15878 15889/15889 15861/15861 +f 15889/15889 15879/15879 15861/15861 +f 15876/15876 15878/15878 15835/15835 +f 15845/15845 15886/15886 15871/15871 +f 15890/15890 15864/15864 15863/15863 +f 15890/15890 15863/15863 15880/15880 +f 15891/15891 15881/15881 15864/15864 +f 15886/15886 15845/15845 15881/15881 +f 15870/15870 15892/15892 15865/15865 +f 15892/15892 15882/15882 15865/15865 +f 15848/15848 15882/15882 15885/15885 +f 15883/15883 15866/15866 15893/15893 +f 15866/15866 15867/15867 15884/15884 +f 15894/15894 15869/15869 15868/15868 +f 15885/15885 15895/15895 15868/15868 +f 15869/15869 15896/15896 15884/15884 +f 15886/15886 15892/15892 15870/15870 +f 15897/15897 15872/15872 15883/15883 +f 15872/15872 15897/15897 15887/15887 +f 15873/15873 15887/15887 15898/15898 +f 15878/15878 15876/15876 15889/15889 +f 15891/15891 15864/15864 15890/15890 +f 15899/15899 15881/15881 15891/15891 +f 15881/15881 15892/15892 15886/15886 +f 15882/15882 15892/15892 15900/15900 +f 15900/15900 15885/15885 15882/15882 +f 15866/15866 15896/15896 15893/15893 +f 15893/15893 15897/15897 15883/15883 +f 15896/15896 15866/15866 15884/15884 +f 15868/15868 15895/15895 15894/15894 +f 15896/15896 15869/15869 15894/15894 +f 15895/15895 15885/15885 15900/15900 +f 15897/15897 15901/15901 15887/15887 +f 15887/15887 15901/15901 15898/15898 +f 15891/15891 15890/15890 15902/15902 +f 15900/15900 15881/15881 15899/15899 +f 15891/15891 15903/15903 15899/15899 +f 15892/15892 15881/15881 15900/15900 +f 15893/15893 15896/15896 15894/15894 +f 15893/15893 15904/15904 15897/15897 +f 15895/15895 15905/15905 15894/15894 +f 15899/15899 15895/15895 15900/15900 +f 15897/15897 15906/15906 15901/15901 +f 15907/15907 15898/15898 15901/15901 +f 15902/15902 15903/15903 15891/15891 +f 15903/15903 15908/15908 15899/15899 +f 15894/15894 15909/15909 15893/15893 +f 15909/15909 15904/15904 15893/15893 +f 15904/15904 15906/15906 15897/15897 +f 15905/15905 15895/15895 15908/15908 +f 15909/15909 15894/15894 15905/15905 +f 15899/15899 15908/15908 15895/15895 +f 15907/15907 15901/15901 15906/15906 +f 15910/15910 15898/15898 15907/15907 +f 15902/15902 15911/15911 15903/15903 +f 15903/15903 15911/15911 15908/15908 +f 15906/15906 15904/15904 15909/15909 +f 15912/15912 15905/15905 15908/15908 +f 15909/15909 15905/15905 15913/15913 +f 15913/15913 15907/15907 15906/15906 +f 15913/15913 15910/15910 15907/15907 +f 15912/15912 15908/15908 15911/15911 +f 15909/15909 15913/15913 15906/15906 +f 15912/15912 15913/15913 15905/15905 +f 15910/15910 15913/15913 15914/15914 +f 15911/15911 15915/15915 15912/15912 +f 15913/15913 15912/15912 15914/15914 +f 15915/15915 15916/15916 15912/15912 +f 15914/15914 15912/15912 15916/15916 +f 15917/15917 15918/15918 15919/15919 +f 15918/15918 15917/15917 15920/15920 +f 15921/15921 15919/15919 15918/15918 +f 15917/15917 15919/15919 15922/15922 +f 15923/15923 15920/15920 15917/15917 +f 15924/15924 15918/15918 15920/15920 +f 15918/15918 15924/15924 15921/15921 +f 15925/15925 15919/15919 15921/15921 +f 15919/15919 15926/15926 15922/15922 +f 15927/15927 15917/15917 15922/15922 +f 15923/15923 15917/15917 15928/15928 +f 15920/15920 15923/15923 15929/15929 +f 15930/15930 15924/15924 15920/15920 +f 15931/15931 15921/15921 15924/15924 +f 15925/15925 15926/15926 15919/15919 +f 15925/15925 15921/15921 15932/15932 +f 15933/15933 15922/15922 15926/15926 +f 15917/15917 15927/15927 15934/15934 +f 15922/15922 15935/15935 15927/15927 +f 15928/15928 15917/15917 15934/15934 +f 15923/15923 15928/15928 15936/15936 +f 15929/15929 15923/15923 15937/15937 +f 15930/15930 15920/15920 15929/15929 +f 15931/15931 15924/15924 15930/15930 +f 15932/15932 15921/15921 15931/15931 +f 15938/15938 15926/15926 15925/15925 +f 15932/15932 15938/15938 15925/15925 +f 15933/15933 15926/15926 15938/15938 +f 15939/15939 15922/15922 15933/15933 +f 15934/15934 15927/15927 15940/15940 +f 15940/15940 15927/15927 15935/15935 +f 15939/15939 15935/15935 15922/15922 +f 15934/15934 15941/15941 15928/15928 +f 15936/15936 15928/15928 15942/15942 +f 15923/15923 15936/15936 15943/15943 +f 15937/15937 15923/15923 15944/15944 +f 15937/15937 15945/15945 15929/15929 +f 15930/15930 15929/15929 15946/15946 +f 15947/15947 15931/15931 15930/15930 +f 15948/15948 15932/15932 15931/15931 +f 15932/15932 15949/15949 15938/15938 +f 15933/15933 15938/15938 15949/15949 +f 15933/15933 15950/15950 15939/15939 +f 15940/15940 15941/15941 15934/15934 +f 15940/15940 15935/15935 15951/15951 +f 15939/15939 15952/15952 15935/15935 +f 15928/15928 15941/15941 15942/15942 +f 15942/15942 15953/15953 15936/15936 +f 15943/15943 15944/15944 15923/15923 +f 15953/15953 15943/15943 15936/15936 +f 15944/15944 15954/15954 15937/15937 +f 15937/15937 15954/15954 15945/15945 +f 15946/15946 15929/15929 15945/15945 +f 15947/15947 15930/15930 15946/15946 +f 15948/15948 15931/15931 15947/15947 +f 15948/15948 15955/15955 15932/15932 +f 15949/15949 15932/15932 15955/15955 +f 15949/15949 15950/15950 15933/15933 +f 15956/15956 15939/15939 15950/15950 +f 15957/15957 15941/15941 15940/15940 +f 15951/15951 15935/15935 15952/15952 +f 15957/15957 15940/15940 15951/15951 +f 15939/15939 15956/15956 15952/15952 +f 15941/15941 15958/15958 15942/15942 +f 15959/15959 15953/15953 15942/15942 +f 15943/15943 15960/15960 15944/15944 +f 15954/15954 15944/15944 15961/15961 +f 15954/15954 15962/15962 15945/15945 +f 15945/15945 15963/15963 15946/15946 +f 15963/15963 15947/15947 15946/15946 +f 15964/15964 15948/15948 15947/15947 +f 15955/15955 15948/15948 15965/15965 +f 15955/15955 15966/15966 15949/15949 +f 15949/15949 15967/15967 15950/15950 +f 15968/15968 15956/15956 15950/15950 +f 15957/15957 15969/15969 15941/15941 +f 15951/15951 15952/15952 15970/15970 +f 15951/15951 15971/15971 15957/15957 +f 15956/15956 15968/15968 15952/15952 +f 15958/15958 15959/15959 15942/15942 +f 15958/15958 15941/15941 15972/15972 +f 15943/15943 15973/15973 15960/15960 +f 15944/15944 15960/15960 15974/15974 +f 15962/15962 15954/15954 15961/15961 +f 15974/15974 15961/15961 15944/15944 +f 15975/15975 15945/15945 15962/15962 +f 15975/15975 15963/15963 15945/15945 +f 15964/15964 15947/15947 15963/15963 +f 15976/15976 15948/15948 15964/15964 +f 15977/15977 15965/15965 15948/15948 +f 15955/15955 15965/15965 15978/15978 +f 15966/15966 15967/15967 15949/15949 +f 15966/15966 15955/15955 15978/15978 +f 15950/15950 15967/15967 15979/15979 +f 15968/15968 15950/15950 15979/15979 +f 15971/15971 15969/15969 15957/15957 +f 15941/15941 15969/15969 15972/15972 +f 15980/15980 15970/15970 15952/15952 +f 15971/15971 15951/15951 15970/15970 +f 15968/15968 15981/15981 15952/15952 +f 15973/15973 15982/15982 15960/15960 +f 15983/15983 15974/15974 15960/15960 +f 15984/15984 15962/15962 15961/15961 +f 15985/15985 15961/15961 15974/15974 +f 15962/15962 15984/15984 15975/15975 +f 15975/15975 15986/15986 15963/15963 +f 15964/15964 15963/15963 15976/15976 +f 15948/15948 15976/15976 15977/15977 +f 15987/15987 15965/15965 15977/15977 +f 15965/15965 15988/15988 15978/15978 +f 15966/15966 15989/15989 15967/15967 +f 15990/15990 15966/15966 15978/15978 +f 15967/15967 15989/15989 15979/15979 +f 15979/15979 15991/15991 15968/15968 +f 15969/15969 15971/15971 15992/15992 +f 15993/15993 15972/15972 15969/15969 +f 15970/15970 15980/15980 15994/15994 +f 15980/15980 15952/15952 15995/15995 +f 15970/15970 15992/15992 15971/15971 +f 15968/15968 15991/15991 15981/15981 +f 15981/15981 15995/15995 15952/15952 +f 15960/15960 15982/15982 15983/15983 +f 15983/15983 15996/15996 15974/15974 +f 15984/15984 15961/15961 15985/15985 +f 15974/15974 15996/15996 15985/15985 +f 15975/15975 15984/15984 15997/15997 +f 15976/15976 15963/15963 15986/15986 +f 15975/15975 15998/15998 15986/15986 +f 15976/15976 15999/15999 15977/15977 +f 16000/16000 15965/15965 15987/15987 +f 15977/15977 16001/16001 15987/15987 +f 16002/16002 15988/15988 15965/15965 +f 16003/16003 15978/15978 15988/15988 +f 15989/15989 15966/15966 16004/16004 +f 15990/15990 16004/16004 15966/15966 +f 15990/15990 15978/15978 16005/16005 +f 15989/15989 15991/15991 15979/15979 +f 15992/15992 15993/15993 15969/15969 +f 15972/15972 15993/15993 15992/15992 +f 15980/15980 16006/16006 15994/15994 +f 15994/15994 15992/15992 15970/15970 +f 16007/16007 15980/15980 15995/15995 +f 15981/15981 15991/15991 15995/15995 +f 15982/15982 16008/16008 15983/15983 +f 15996/15996 15983/15983 16009/16009 +f 15985/15985 15997/15997 15984/15984 +f 15996/15996 16010/16010 15985/15985 +f 15975/15975 15997/15997 16011/16011 +f 15986/15986 16012/16012 15976/15976 +f 16012/16012 15986/15986 15998/15998 +f 15998/15998 15975/15975 16013/16013 +f 15976/15976 16014/16014 15999/15999 +f 15977/15977 15999/15999 16001/16001 +f 16000/16000 16002/16002 15965/15965 +f 16000/16000 15987/15987 16001/16001 +f 16015/16015 15988/15988 16002/16002 +f 15988/15988 16015/16015 16003/16003 +f 15978/15978 16003/16003 16016/16016 +f 16004/16004 16017/16017 15989/15989 +f 16018/16018 16004/16004 15990/15990 +f 16005/16005 16018/16018 15990/15990 +f 16016/16016 16005/16005 15978/15978 +f 15989/15989 16019/16019 15991/15991 +f 15992/15992 16020/16020 15972/15972 +f 16006/16006 15980/15980 16021/16021 +f 16006/16006 16022/16022 15994/15994 +f 16020/16020 15992/15992 15994/15994 +f 16023/16023 16007/16007 15995/15995 +f 16021/16021 15980/15980 16007/16007 +f 16023/16023 15995/15995 15991/15991 +f 16008/16008 16009/16009 15983/15983 +f 16008/16008 15982/15982 16024/16024 +f 15996/15996 16009/16009 16025/16025 +f 15997/15997 15985/15985 16010/16010 +f 15996/15996 16026/16026 16010/16010 +f 16011/16011 15997/15997 16027/16027 +f 16013/16013 15975/15975 16011/16011 +f 16014/16014 15976/15976 16012/16012 +f 16012/16012 15998/15998 16013/16013 +f 15999/15999 16014/16014 16028/16028 +f 16000/16000 16001/16001 15999/15999 +f 16029/16029 16002/16002 16000/16000 +f 16002/16002 16029/16029 16015/16015 +f 16003/16003 16015/16015 16030/16030 +f 16003/16003 16030/16030 16016/16016 +f 16017/16017 16004/16004 16031/16031 +f 16019/16019 15989/15989 16017/16017 +f 16031/16031 16004/16004 16018/16018 +f 16018/16018 16005/16005 16032/16032 +f 16016/16016 16032/16032 16005/16005 +f 16019/16019 16023/16023 15991/15991 +f 15972/15972 16020/16020 16033/16033 +f 16021/16021 16034/16034 16006/16006 +f 16006/16006 16035/16035 16022/16022 +f 16036/16036 15994/15994 16022/16022 +f 16020/16020 15994/15994 16036/16036 +f 16023/16023 16037/16037 16007/16007 +f 16007/16007 16037/16037 16021/16021 +f 16009/16009 16008/16008 16038/16038 +f 16008/16008 16024/16024 16039/16039 +f 16025/16025 16009/16009 16038/16038 +f 16025/16025 16040/16040 15996/15996 +f 16027/16027 15997/15997 16010/16010 +f 15996/15996 16040/16040 16026/16026 +f 16010/16010 16026/16026 16027/16027 +f 16027/16027 16041/16041 16011/16011 +f 16042/16042 16013/16013 16011/16011 +f 16014/16014 16012/16012 16013/16013 +f 15999/15999 16028/16028 16043/16043 +f 16014/16014 16044/16044 16028/16028 +f 15999/15999 16045/16045 16000/16000 +f 16000/16000 16045/16045 16029/16029 +f 16046/16046 16015/16015 16029/16029 +f 16030/16030 16015/16015 16047/16047 +f 16032/16032 16016/16016 16030/16030 +f 16031/16031 16048/16048 16017/16017 +f 16048/16048 16019/16019 16017/16017 +f 16049/16049 16031/16031 16018/16018 +f 16032/16032 16050/16050 16018/16018 +f 16051/16051 16023/16023 16019/16019 +f 16052/16052 16033/16033 16020/16020 +f 16037/16037 16034/16034 16021/16021 +f 16035/16035 16006/16006 16034/16034 +f 16035/16035 16053/16053 16022/16022 +f 16036/16036 16022/16022 16054/16054 +f 16020/16020 16036/16036 16052/16052 +f 16037/16037 16023/16023 16051/16051 +f 16008/16008 16039/16039 16038/16038 +f 16039/16039 16024/16024 16055/16055 +f 16038/16038 16056/16056 16025/16025 +f 16025/16025 16057/16057 16040/16040 +f 16058/16058 16026/16026 16040/16040 +f 16059/16059 16027/16027 16026/16026 +f 16027/16027 16059/16059 16041/16041 +f 16041/16041 16042/16042 16011/16011 +f 16013/16013 16042/16042 16014/16014 +f 16043/16043 16028/16028 16060/16060 +f 16043/16043 16045/16045 15999/15999 +f 16044/16044 16061/16061 16028/16028 +f 16044/16044 16014/16014 16042/16042 +f 16046/16046 16029/16029 16045/16045 +f 16015/16015 16046/16046 16047/16047 +f 16047/16047 16062/16062 16030/16030 +f 16050/16050 16032/16032 16030/16030 +f 16031/16031 16063/16063 16048/16048 +f 16019/16019 16048/16048 16064/16064 +f 16049/16049 16065/16065 16031/16031 +f 16018/16018 16050/16050 16049/16049 +f 16019/16019 16064/16064 16051/16051 +f 16066/16066 16033/16033 16052/16052 +f 16034/16034 16037/16037 16051/16051 +f 16034/16034 16067/16067 16035/16035 +f 16068/16068 16053/16053 16035/16035 +f 16053/16053 16054/16054 16022/16022 +f 16069/16069 16036/16036 16054/16054 +f 16069/16069 16052/16052 16036/16036 +f 16039/16039 16070/16070 16038/16038 +f 16055/16055 16070/16070 16039/16039 +f 16056/16056 16038/16038 16071/16071 +f 16057/16057 16025/16025 16056/16056 +f 16057/16057 16058/16058 16040/16040 +f 16059/16059 16026/16026 16058/16058 +f 16041/16041 16059/16059 16044/16044 +f 16041/16041 16044/16044 16042/16042 +f 16028/16028 16072/16072 16060/16060 +f 16043/16043 16060/16060 16073/16073 +f 16045/16045 16043/16043 16074/16074 +f 16044/16044 16075/16075 16061/16061 +f 16028/16028 16061/16061 16072/16072 +f 16046/16046 16045/16045 16074/16074 +f 16047/16047 16046/16046 16076/16076 +f 16062/16062 16050/16050 16030/16030 +f 16062/16062 16047/16047 16077/16077 +f 16063/16063 16078/16078 16048/16048 +f 16031/16031 16065/16065 16063/16063 +f 16048/16048 16078/16078 16064/16064 +f 16065/16065 16049/16049 16079/16079 +f 16050/16050 16062/16062 16049/16049 +f 16051/16051 16064/16064 16067/16067 +f 16080/16080 16066/16066 16052/16052 +f 16067/16067 16034/16034 16051/16051 +f 16068/16068 16035/16035 16067/16067 +f 16053/16053 16068/16068 16081/16081 +f 16082/16082 16054/16054 16053/16053 +f 16083/16083 16069/16069 16054/16054 +f 16052/16052 16069/16069 16084/16084 +f 16071/16071 16038/16038 16070/16070 +f 16085/16085 16070/16070 16055/16055 +f 16057/16057 16056/16056 16071/16071 +f 16057/16057 16086/16086 16058/16058 +f 16086/16086 16059/16059 16058/16058 +f 16059/16059 16075/16075 16044/16044 +f 16087/16087 16060/16060 16072/16072 +f 16060/16060 16088/16088 16073/16073 +f 16074/16074 16043/16043 16073/16073 +f 16089/16089 16061/16061 16075/16075 +f 16061/16061 16090/16090 16072/16072 +f 16091/16091 16046/16046 16074/16074 +f 16076/16076 16092/16092 16047/16047 +f 16046/16046 16091/16091 16076/16076 +f 16077/16077 16093/16093 16062/16062 +f 16094/16094 16077/16077 16047/16047 +f 16095/16095 16078/16078 16063/16063 +f 16065/16065 16096/16096 16063/16063 +f 16064/16064 16078/16078 16097/16097 +f 16079/16079 16049/16049 16093/16093 +f 16096/16096 16065/16065 16079/16079 +f 16093/16093 16049/16049 16062/16062 +f 16064/16064 16068/16068 16067/16067 +f 16084/16084 16080/16080 16052/16052 +f 16081/16081 16068/16068 16064/16064 +f 16081/16081 16098/16098 16053/16053 +f 16054/16054 16082/16082 16083/16083 +f 16098/16098 16082/16082 16053/16053 +f 16099/16099 16069/16069 16083/16083 +f 16084/16084 16069/16069 16100/16100 +f 16070/16070 16101/16101 16071/16071 +f 16085/16085 16102/16102 16070/16070 +f 16085/16085 16055/16055 16103/16103 +f 16104/16104 16057/16057 16071/16071 +f 16104/16104 16086/16086 16057/16057 +f 16075/16075 16059/16059 16086/16086 +f 16087/16087 16088/16088 16060/16060 +f 16087/16087 16072/16072 16090/16090 +f 16105/16105 16073/16073 16088/16088 +f 16073/16073 16105/16105 16074/16074 +f 16106/16106 16061/16061 16089/16089 +f 16086/16086 16089/16089 16075/16075 +f 16061/16061 16106/16106 16090/16090 +f 16091/16091 16074/16074 16105/16105 +f 16092/16092 16076/16076 16107/16107 +f 16047/16047 16092/16092 16094/16094 +f 16076/16076 16091/16091 16108/16108 +f 16093/16093 16077/16077 16109/16109 +f 16094/16094 16109/16109 16077/16077 +f 16095/16095 16110/16110 16078/16078 +f 16063/16063 16111/16111 16095/16095 +f 16112/16112 16063/16063 16096/16096 +f 16078/16078 16110/16110 16097/16097 +f 16097/16097 16081/16081 16064/16064 +f 16079/16079 16093/16093 16113/16113 +f 16113/16113 16096/16096 16079/16079 +f 16084/16084 16114/16114 16080/16080 +f 16097/16097 16098/16098 16081/16081 +f 16082/16082 16115/16115 16083/16083 +f 16116/16116 16082/16082 16098/16098 +f 16083/16083 16117/16117 16099/16099 +f 16069/16069 16099/16099 16100/16100 +f 16100/16100 16114/16114 16084/16084 +f 16118/16118 16101/16101 16070/16070 +f 16101/16101 16119/16119 16071/16071 +f 16102/16102 16120/16120 16070/16070 +f 16085/16085 16121/16121 16102/16102 +f 16121/16121 16085/16085 16103/16103 +f 16104/16104 16071/16071 16122/16122 +f 16123/16123 16086/16086 16104/16104 +f 16087/16087 16124/16124 16088/16088 +f 16087/16087 16090/16090 16125/16125 +f 16088/16088 16126/16126 16105/16105 +f 16089/16089 16127/16127 16106/16106 +f 16089/16089 16086/16086 16123/16123 +f 16106/16106 16128/16128 16090/16090 +f 16108/16108 16091/16091 16105/16105 +f 16107/16107 16129/16129 16092/16092 +f 16107/16107 16076/16076 16130/16130 +f 16094/16094 16092/16092 16131/16131 +f 16076/16076 16108/16108 16132/16132 +f 16093/16093 16109/16109 16133/16133 +f 16094/16094 16134/16134 16109/16109 +f 16095/16095 16135/16135 16110/16110 +f 16111/16111 16063/16063 16112/16112 +f 16136/16136 16095/16095 16111/16111 +f 16096/16096 16137/16137 16112/16112 +f 16138/16138 16097/16097 16110/16110 +f 16113/16113 16093/16093 16133/16133 +f 16096/16096 16113/16113 16137/16137 +f 16080/16080 16114/16114 16139/16139 +f 16138/16138 16098/16098 16097/16097 +f 16116/16116 16115/16115 16082/16082 +f 16083/16083 16115/16115 16140/16140 +f 16098/16098 16141/16141 16116/16116 +f 16140/16140 16117/16117 16083/16083 +f 16099/16099 16117/16117 16142/16142 +f 16100/16100 16099/16099 16142/16142 +f 16143/16143 16114/16114 16100/16100 +f 16118/16118 16144/16144 16101/16101 +f 16120/16120 16118/16118 16070/16070 +f 16119/16119 16122/16122 16071/16071 +f 16144/16144 16119/16119 16101/16101 +f 16145/16145 16120/16120 16102/16102 +f 16146/16146 16102/16102 16121/16121 +f 16122/16122 16147/16147 16104/16104 +f 16123/16123 16104/16104 16148/16148 +f 16149/16149 16124/16124 16087/16087 +f 16126/16126 16088/16088 16124/16124 +f 16125/16125 16149/16149 16087/16087 +f 16125/16125 16090/16090 16150/16150 +f 16126/16126 16151/16151 16105/16105 +f 16148/16148 16127/16127 16089/16089 +f 16106/16106 16127/16127 16152/16152 +f 16148/16148 16089/16089 16123/16123 +f 16106/16106 16153/16153 16128/16128 +f 16090/16090 16128/16128 16150/16150 +f 16108/16108 16105/16105 16151/16151 +f 16107/16107 16154/16154 16129/16129 +f 16092/16092 16129/16129 16131/16131 +f 16130/16130 16076/16076 16132/16132 +f 16130/16130 16155/16155 16107/16107 +f 16131/16131 16134/16134 16094/16094 +f 16156/16156 16132/16132 16108/16108 +f 16109/16109 16134/16134 16133/16133 +f 16135/16135 16095/16095 16157/16157 +f 16158/16158 16110/16110 16135/16135 +f 16159/16159 16111/16111 16112/16112 +f 16160/16160 16095/16095 16136/16136 +f 16111/16111 16161/16161 16136/16136 +f 16137/16137 16162/16162 16112/16112 +f 16158/16158 16138/16138 16110/16110 +f 16163/16163 16113/16113 16133/16133 +f 16137/16137 16113/16113 16163/16163 +f 16139/16139 16114/16114 16143/16143 +f 16098/16098 16138/16138 16141/16141 +f 16164/16164 16115/16115 16116/16116 +f 16115/16115 16164/16164 16140/16140 +f 16116/16116 16141/16141 16158/16158 +f 16140/16140 16165/16165 16117/16117 +f 16142/16142 16117/16117 16166/16166 +f 16143/16143 16100/16100 16142/16142 +f 16144/16144 16118/16118 16167/16167 +f 16120/16120 16168/16168 16118/16118 +f 16122/16122 16119/16119 16169/16169 +f 16119/16119 16144/16144 16170/16170 +f 16146/16146 16145/16145 16102/16102 +f 16120/16120 16145/16145 16171/16171 +f 16147/16147 16122/16122 16169/16169 +f 16104/16104 16147/16147 16148/16148 +f 16149/16149 16172/16172 16124/16124 +f 16151/16151 16126/16126 16124/16124 +f 16172/16172 16149/16149 16125/16125 +f 16173/16173 16125/16125 16150/16150 +f 16148/16148 16174/16174 16127/16127 +f 16153/16153 16106/16106 16152/16152 +f 16175/16175 16152/16152 16127/16127 +f 16128/16128 16153/16153 16176/16176 +f 16177/16177 16150/16150 16128/16128 +f 16178/16178 16108/16108 16151/16151 +f 16154/16154 16107/16107 16179/16179 +f 16129/16129 16154/16154 16180/16180 +f 16129/16129 16181/16181 16131/16131 +f 16130/16130 16132/16132 16155/16155 +f 16107/16107 16155/16155 16182/16182 +f 16131/16131 16183/16183 16134/16134 +f 16156/16156 16108/16108 16184/16184 +f 16155/16155 16132/16132 16156/16156 +f 16133/16133 16134/16134 16185/16185 +f 16157/16157 16095/16095 16160/16160 +f 16186/16186 16135/16135 16157/16157 +f 16135/16135 16187/16187 16158/16158 +f 16161/16161 16111/16111 16159/16159 +f 16112/16112 16162/16162 16159/16159 +f 16136/16136 16188/16188 16160/16160 +f 16189/16189 16136/16136 16161/16161 +f 16163/16163 16162/16162 16137/16137 +f 16141/16141 16138/16138 16158/16158 +f 16190/16190 16163/16163 16133/16133 +f 16142/16142 16139/16139 16143/16143 +f 16164/16164 16116/16116 16187/16187 +f 16164/16164 16191/16191 16140/16140 +f 16158/16158 16187/16187 16116/16116 +f 16140/16140 16192/16192 16165/16165 +f 16165/16165 16193/16193 16117/16117 +f 16193/16193 16166/16166 16117/16117 +f 16166/16166 16139/16139 16142/16142 +f 16118/16118 16168/16168 16167/16167 +f 16144/16144 16167/16167 16194/16194 +f 16120/16120 16171/16171 16168/16168 +f 16169/16169 16119/16119 16195/16195 +f 16194/16194 16170/16170 16144/16144 +f 16119/16119 16170/16170 16195/16195 +f 16196/16196 16145/16145 16146/16146 +f 16145/16145 16197/16197 16171/16171 +f 16198/16198 16147/16147 16169/16169 +f 16174/16174 16148/16148 16147/16147 +f 16172/16172 16199/16199 16124/16124 +f 16199/16199 16151/16151 16124/16124 +f 16125/16125 16200/16200 16172/16172 +f 16173/16173 16150/16150 16201/16201 +f 16173/16173 16200/16200 16125/16125 +f 16127/16127 16174/16174 16202/16202 +f 16153/16153 16152/16152 16203/16203 +f 16204/16204 16152/16152 16175/16175 +f 16127/16127 16205/16205 16175/16175 +f 16153/16153 16206/16206 16176/16176 +f 16207/16207 16128/16128 16176/16176 +f 16208/16208 16150/16150 16177/16177 +f 16177/16177 16128/16128 16207/16207 +f 16184/16184 16108/16108 16178/16178 +f 16199/16199 16178/16178 16151/16151 +f 16179/16179 16107/16107 16209/16209 +f 16210/16210 16154/16154 16179/16179 +f 16211/16211 16180/16180 16154/16154 +f 16180/16180 16181/16181 16129/16129 +f 16131/16131 16181/16181 16212/16212 +f 16182/16182 16155/16155 16213/16213 +f 16107/16107 16182/16182 16209/16209 +f 16214/16214 16183/16183 16131/16131 +f 16215/16215 16134/16134 16183/16183 +f 16156/16156 16184/16184 16213/16213 +f 16155/16155 16156/16156 16213/16213 +f 16185/16185 16134/16134 16216/16216 +f 16185/16185 16190/16190 16133/16133 +f 16217/16217 16157/16157 16160/16160 +f 16157/16157 16218/16218 16186/16186 +f 16187/16187 16135/16135 16186/16186 +f 16161/16161 16159/16159 16190/16190 +f 16159/16159 16162/16162 16190/16190 +f 16136/16136 16219/16219 16188/16188 +f 16220/16220 16160/16160 16188/16188 +f 16189/16189 16219/16219 16136/16136 +f 16161/16161 16216/16216 16189/16189 +f 16190/16190 16162/16162 16163/16163 +f 16164/16164 16187/16187 16221/16221 +f 16192/16192 16140/16140 16191/16191 +f 16221/16221 16191/16191 16164/16164 +f 16222/16222 16165/16165 16192/16192 +f 16165/16165 16223/16223 16193/16193 +f 16166/16166 16193/16193 16224/16224 +f 16167/16167 16168/16168 16225/16225 +f 16194/16194 16167/16167 16225/16225 +f 16171/16171 16226/16226 16168/16168 +f 16169/16169 16195/16195 16198/16198 +f 16227/16227 16170/16170 16194/16194 +f 16195/16195 16170/16170 16227/16227 +f 16228/16228 16145/16145 16196/16196 +f 16197/16197 16145/16145 16228/16228 +f 16171/16171 16197/16197 16226/16226 +f 16174/16174 16147/16147 16198/16198 +f 16229/16229 16199/16199 16172/16172 +f 16230/16230 16172/16172 16200/16200 +f 16201/16201 16150/16150 16208/16208 +f 16173/16173 16201/16201 16231/16231 +f 16232/16232 16200/16200 16173/16173 +f 16202/16202 16174/16174 16198/16198 +f 16127/16127 16202/16202 16205/16205 +f 16206/16206 16153/16153 16203/16203 +f 16152/16152 16204/16204 16203/16203 +f 16233/16233 16204/16204 16175/16175 +f 16205/16205 16233/16233 16175/16175 +f 16206/16206 16234/16234 16176/16176 +f 16235/16235 16207/16207 16176/16176 +f 16236/16236 16208/16208 16177/16177 +f 16207/16207 16237/16237 16177/16177 +f 16178/16178 16238/16238 16184/16184 +f 16238/16238 16178/16178 16199/16199 +f 16239/16239 16179/16179 16209/16209 +f 16154/16154 16210/16210 16240/16240 +f 16179/16179 16239/16239 16210/16210 +f 16241/16241 16180/16180 16211/16211 +f 16211/16211 16154/16154 16240/16240 +f 16181/16181 16180/16180 16242/16242 +f 16212/16212 16181/16181 16242/16242 +f 16212/16212 16243/16243 16131/16131 +f 16213/16213 16244/16244 16182/16182 +f 16182/16182 16245/16245 16209/16209 +f 16131/16131 16243/16243 16214/16214 +f 16183/16183 16214/16214 16215/16215 +f 16216/16216 16134/16134 16215/16215 +f 16184/16184 16244/16244 16213/16213 +f 16161/16161 16185/16185 16216/16216 +f 16161/16161 16190/16190 16185/16185 +f 16157/16157 16217/16217 16218/16218 +f 16160/16160 16220/16220 16217/16217 +f 16218/16218 16246/16246 16186/16186 +f 16187/16187 16186/16186 16246/16246 +f 16219/16219 16247/16247 16188/16188 +f 16188/16188 16248/16248 16220/16220 +f 16189/16189 16247/16247 16219/16219 +f 16216/16216 16247/16247 16189/16189 +f 16221/16221 16187/16187 16246/16246 +f 16249/16249 16192/16192 16191/16191 +f 16221/16221 16250/16250 16191/16191 +f 16223/16223 16165/16165 16222/16222 +f 16222/16222 16192/16192 16251/16251 +f 16252/16252 16193/16193 16223/16223 +f 16224/16224 16193/16193 16252/16252 +f 16225/16225 16168/16168 16226/16226 +f 16233/16233 16194/16194 16225/16225 +f 16198/16198 16195/16195 16227/16227 +f 16233/16233 16227/16227 16194/16194 +f 16253/16253 16228/16228 16196/16196 +f 16254/16254 16197/16197 16228/16228 +f 16254/16254 16226/16226 16197/16197 +f 16199/16199 16229/16229 16238/16238 +f 16172/16172 16230/16230 16229/16229 +f 16230/16230 16200/16200 16255/16255 +f 16256/16256 16201/16201 16208/16208 +f 16201/16201 16257/16257 16231/16231 +f 16231/16231 16232/16232 16173/16173 +f 16255/16255 16200/16200 16232/16232 +f 16198/16198 16205/16205 16202/16202 +f 16206/16206 16203/16203 16258/16258 +f 16203/16203 16204/16204 16259/16259 +f 16204/16204 16233/16233 16225/16225 +f 16205/16205 16227/16227 16233/16233 +f 16206/16206 16260/16260 16234/16234 +f 16234/16234 16235/16235 16176/16176 +f 16235/16235 16237/16237 16207/16207 +f 16177/16177 16237/16237 16236/16236 +f 16261/16261 16208/16208 16236/16236 +f 16184/16184 16238/16238 16244/16244 +f 16262/16262 16239/16239 16209/16209 +f 16263/16263 16240/16240 16210/16210 +f 16239/16239 16263/16263 16210/16210 +f 16242/16242 16180/16180 16241/16241 +f 16264/16264 16241/16241 16211/16211 +f 16211/16211 16240/16240 16265/16265 +f 16212/16212 16242/16242 16266/16266 +f 16212/16212 16267/16267 16243/16243 +f 16244/16244 16245/16245 16182/16182 +f 16262/16262 16209/16209 16245/16245 +f 16268/16268 16214/16214 16243/16243 +f 16269/16269 16215/16215 16214/16214 +f 16270/16270 16216/16216 16215/16215 +f 16218/16218 16217/16217 16271/16271 +f 16272/16272 16217/16217 16220/16220 +f 16250/16250 16246/16246 16218/16218 +f 16188/16188 16247/16247 16273/16273 +f 16248/16248 16188/16188 16274/16274 +f 16275/16275 16220/16220 16248/16248 +f 16270/16270 16247/16247 16216/16216 +f 16246/16246 16250/16250 16221/16221 +f 16192/16192 16249/16249 16251/16251 +f 16276/16276 16249/16249 16191/16191 +f 16250/16250 16276/16276 16191/16191 +f 16277/16277 16223/16223 16222/16222 +f 16278/16278 16222/16222 16251/16251 +f 16223/16223 16277/16277 16252/16252 +f 16279/16279 16224/16224 16252/16252 +f 16225/16225 16226/16226 16259/16259 +f 16227/16227 16205/16205 16198/16198 +f 16228/16228 16253/16253 16254/16254 +f 16259/16259 16226/16226 16254/16254 +f 16229/16229 16230/16230 16238/16238 +f 16230/16230 16255/16255 16238/16238 +f 16256/16256 16257/16257 16201/16201 +f 16261/16261 16256/16256 16208/16208 +f 16231/16231 16257/16257 16280/16280 +f 16232/16232 16231/16231 16281/16281 +f 16232/16232 16282/16282 16255/16255 +f 16206/16206 16258/16258 16260/16260 +f 16258/16258 16203/16203 16283/16283 +f 16204/16204 16225/16225 16259/16259 +f 16259/16259 16283/16283 16203/16203 +f 16235/16235 16234/16234 16284/16284 +f 16237/16237 16235/16235 16236/16236 +f 16285/16285 16261/16261 16236/16236 +f 16244/16244 16238/16238 16245/16245 +f 16239/16239 16262/16262 16263/16263 +f 16286/16286 16240/16240 16263/16263 +f 16241/16241 16287/16287 16242/16242 +f 16264/16264 16287/16287 16241/16241 +f 16288/16288 16264/16264 16211/16211 +f 16286/16286 16265/16265 16240/16240 +f 16211/16211 16265/16265 16288/16288 +f 16266/16266 16242/16242 16287/16287 +f 16267/16267 16212/16212 16266/16266 +f 16267/16267 16289/16289 16243/16243 +f 16245/16245 16290/16290 16262/16262 +f 16291/16291 16214/16214 16268/16268 +f 16292/16292 16268/16268 16243/16243 +f 16269/16269 16214/16214 16293/16293 +f 16294/16294 16215/16215 16269/16269 +f 16215/16215 16295/16295 16270/16270 +f 16271/16271 16217/16217 16296/16296 +f 16218/16218 16271/16271 16276/16276 +f 16217/16217 16272/16272 16296/16296 +f 16275/16275 16272/16272 16220/16220 +f 16276/16276 16250/16250 16218/16218 +f 16188/16188 16273/16273 16274/16274 +f 16247/16247 16270/16270 16273/16273 +f 16274/16274 16297/16297 16248/16248 +f 16275/16275 16248/16248 16298/16298 +f 16251/16251 16249/16249 16299/16299 +f 16299/16299 16249/16249 16276/16276 +f 16222/16222 16278/16278 16277/16277 +f 16278/16278 16251/16251 16300/16300 +f 16277/16277 16279/16279 16252/16252 +f 16254/16254 16253/16253 16301/16301 +f 16254/16254 16283/16283 16259/16259 +f 16238/16238 16255/16255 16245/16245 +f 16257/16257 16256/16256 16302/16302 +f 16256/16256 16261/16261 16285/16285 +f 16231/16231 16280/16280 16303/16303 +f 16231/16231 16303/16303 16281/16281 +f 16282/16282 16232/16232 16281/16281 +f 16282/16282 16290/16290 16255/16255 +f 16304/16304 16260/16260 16258/16258 +f 16258/16258 16283/16283 16304/16304 +f 16305/16305 16235/16235 16284/16284 +f 16236/16236 16235/16235 16305/16305 +f 16236/16236 16305/16305 16285/16285 +f 16263/16263 16262/16262 16286/16286 +f 16287/16287 16264/16264 16306/16306 +f 16288/16288 16307/16307 16264/16264 +f 16288/16288 16265/16265 16286/16286 +f 16266/16266 16287/16287 16308/16308 +f 16308/16308 16267/16267 16266/16266 +f 16289/16289 16267/16267 16309/16309 +f 16289/16289 16310/16310 16243/16243 +f 16255/16255 16290/16290 16245/16245 +f 16290/16290 16311/16311 16262/16262 +f 16312/16312 16214/16214 16291/16291 +f 16292/16292 16291/16291 16268/16268 +f 16313/16313 16292/16292 16243/16243 +f 16314/16314 16293/16293 16214/16214 +f 16315/16315 16269/16269 16293/16293 +f 16316/16316 16215/16215 16294/16294 +f 16294/16294 16269/16269 16315/16315 +f 16317/16317 16270/16270 16295/16295 +f 16215/16215 16318/16318 16295/16295 +f 16319/16319 16271/16271 16296/16296 +f 16319/16319 16276/16276 16271/16271 +f 16272/16272 16320/16320 16296/16296 +f 16321/16321 16272/16272 16275/16275 +f 16274/16274 16273/16273 16322/16322 +f 16273/16273 16270/16270 16323/16323 +f 16322/16322 16297/16297 16274/16274 +f 16248/16248 16297/16297 16298/16298 +f 16324/16324 16275/16275 16298/16298 +f 16325/16325 16251/16251 16299/16299 +f 16299/16299 16276/16276 16319/16319 +f 16300/16300 16326/16326 16278/16278 +f 16325/16325 16300/16300 16251/16251 +f 16301/16301 16283/16283 16254/16254 +f 16285/16285 16302/16302 16256/16256 +f 16327/16327 16303/16303 16280/16280 +f 16281/16281 16303/16303 16282/16282 +f 16282/16282 16303/16303 16290/16290 +f 16304/16304 16283/16283 16301/16301 +f 16284/16284 16328/16328 16305/16305 +f 16328/16328 16285/16285 16305/16305 +f 16329/16329 16286/16286 16262/16262 +f 16308/16308 16287/16287 16306/16306 +f 16306/16306 16264/16264 16330/16330 +f 16331/16331 16307/16307 16288/16288 +f 16264/16264 16307/16307 16330/16330 +f 16286/16286 16329/16329 16288/16288 +f 16267/16267 16308/16308 16309/16309 +f 16332/16332 16289/16289 16309/16309 +f 16289/16289 16333/16333 16310/16310 +f 16243/16243 16310/16310 16313/16313 +f 16262/16262 16311/16311 16334/16334 +f 16290/16290 16303/16303 16311/16311 +f 16312/16312 16335/16335 16214/16214 +f 16336/16336 16312/16312 16291/16291 +f 16292/16292 16337/16337 16291/16291 +f 16338/16338 16292/16292 16313/16313 +f 16293/16293 16314/16314 16339/16339 +f 16340/16340 16314/16314 16214/16214 +f 16341/16341 16315/16315 16293/16293 +f 16215/16215 16316/16316 16342/16342 +f 16343/16343 16316/16316 16294/16294 +f 16315/16315 16341/16341 16294/16294 +f 16323/16323 16270/16270 16317/16317 +f 16295/16295 16344/16344 16317/16317 +f 16318/16318 16345/16345 16295/16295 +f 16342/16342 16318/16318 16215/16215 +f 16320/16320 16319/16319 16296/16296 +f 16346/16346 16320/16320 16272/16272 +f 16321/16321 16275/16275 16347/16347 +f 16272/16272 16321/16321 16346/16346 +f 16323/16323 16322/16322 16273/16273 +f 16297/16297 16322/16322 16348/16348 +f 16349/16349 16298/16298 16297/16297 +f 16298/16298 16349/16349 16324/16324 +f 16275/16275 16324/16324 16350/16350 +f 16319/16319 16325/16325 16299/16299 +f 16351/16351 16326/16326 16300/16300 +f 16352/16352 16300/16300 16325/16325 +f 16328/16328 16302/16302 16285/16285 +f 16311/16311 16303/16303 16327/16327 +f 16280/16280 16353/16353 16327/16327 +f 16334/16334 16329/16329 16262/16262 +f 16306/16306 16309/16309 16308/16308 +f 16306/16306 16330/16330 16354/16354 +f 16355/16355 16307/16307 16331/16331 +f 16288/16288 16329/16329 16331/16331 +f 16354/16354 16330/16330 16307/16307 +f 16356/16356 16289/16289 16332/16332 +f 16309/16309 16357/16357 16332/16332 +f 16333/16333 16358/16358 16310/16310 +f 16333/16333 16289/16289 16359/16359 +f 16360/16360 16313/16313 16310/16310 +f 16361/16361 16334/16334 16311/16311 +f 16214/16214 16335/16335 16340/16340 +f 16362/16362 16335/16335 16312/16312 +f 16336/16336 16363/16363 16312/16312 +f 16337/16337 16336/16336 16291/16291 +f 16292/16292 16338/16338 16337/16337 +f 16360/16360 16338/16338 16313/16313 +f 16339/16339 16314/16314 16364/16364 +f 16339/16339 16365/16365 16293/16293 +f 16364/16364 16314/16314 16340/16340 +f 16341/16341 16293/16293 16366/16366 +f 16367/16367 16342/16342 16316/16316 +f 16316/16316 16343/16343 16368/16368 +f 16294/16294 16341/16341 16343/16343 +f 16323/16323 16317/16317 16322/16322 +f 16369/16369 16317/16317 16344/16344 +f 16370/16370 16344/16344 16295/16295 +f 16371/16371 16295/16295 16345/16345 +f 16318/16318 16367/16367 16345/16345 +f 16342/16342 16367/16367 16318/16318 +f 16320/16320 16346/16346 16319/16319 +f 16275/16275 16350/16350 16347/16347 +f 16372/16372 16321/16321 16347/16347 +f 16373/16373 16346/16346 16321/16321 +f 16322/16322 16317/16317 16348/16348 +f 16348/16348 16374/16374 16297/16297 +f 16349/16349 16297/16297 16375/16375 +f 16349/16349 16376/16376 16324/16324 +f 16324/16324 16377/16377 16350/16350 +f 16325/16325 16319/16319 16372/16372 +f 16351/16351 16378/16378 16326/16326 +f 16351/16351 16300/16300 16352/16352 +f 16352/16352 16325/16325 16372/16372 +f 16311/16311 16327/16327 16361/16361 +f 16353/16353 16379/16379 16327/16327 +f 16329/16329 16334/16334 16355/16355 +f 16357/16357 16309/16309 16306/16306 +f 16357/16357 16306/16306 16354/16354 +f 16307/16307 16355/16355 16380/16380 +f 16355/16355 16331/16331 16329/16329 +f 16354/16354 16307/16307 16381/16381 +f 16289/16289 16356/16356 16359/16359 +f 16332/16332 16382/16382 16356/16356 +f 16383/16383 16332/16332 16357/16357 +f 16358/16358 16333/16333 16384/16384 +f 16360/16360 16310/16310 16358/16358 +f 16385/16385 16333/16333 16359/16359 +f 16386/16386 16334/16334 16361/16361 +f 16340/16340 16335/16335 16362/16362 +f 16312/16312 16387/16387 16362/16362 +f 16336/16336 16388/16388 16363/16363 +f 16363/16363 16387/16387 16312/16312 +f 16337/16337 16388/16388 16336/16336 +f 16389/16389 16337/16337 16338/16338 +f 16360/16360 16389/16389 16338/16338 +f 16390/16390 16339/16339 16364/16364 +f 16391/16391 16365/16365 16339/16339 +f 16365/16365 16366/16366 16293/16293 +f 16392/16392 16364/16364 16340/16340 +f 16393/16393 16341/16341 16366/16366 +f 16367/16367 16316/16316 16368/16368 +f 16343/16343 16394/16394 16368/16368 +f 16395/16395 16343/16343 16341/16341 +f 16396/16396 16369/16369 16344/16344 +f 16369/16369 16397/16397 16317/16317 +f 16370/16370 16398/16398 16344/16344 +f 16371/16371 16370/16370 16295/16295 +f 16399/16399 16371/16371 16345/16345 +f 16400/16400 16345/16345 16367/16367 +f 16319/16319 16346/16346 16373/16373 +f 16352/16352 16347/16347 16350/16350 +f 16372/16372 16373/16373 16321/16321 +f 16347/16347 16352/16352 16372/16372 +f 16317/16317 16397/16397 16348/16348 +f 16375/16375 16297/16297 16374/16374 +f 16397/16397 16374/16374 16348/16348 +f 16401/16401 16349/16349 16375/16375 +f 16376/16376 16377/16377 16324/16324 +f 16376/16376 16349/16349 16401/16401 +f 16402/16402 16350/16350 16377/16377 +f 16319/16319 16373/16373 16372/16372 +f 16378/16378 16351/16351 16403/16403 +f 16404/16404 16326/16326 16378/16378 +f 16350/16350 16351/16351 16352/16352 +f 16361/16361 16327/16327 16379/16379 +f 16380/16380 16355/16355 16334/16334 +f 16381/16381 16357/16357 16354/16354 +f 16405/16405 16307/16307 16380/16380 +f 16381/16381 16307/16307 16405/16405 +f 16356/16356 16406/16406 16359/16359 +f 16332/16332 16407/16407 16382/16382 +f 16382/16382 16408/16408 16356/16356 +f 16407/16407 16332/16332 16383/16383 +f 16357/16357 16381/16381 16383/16383 +f 16409/16409 16384/16384 16333/16333 +f 16389/16389 16358/16358 16384/16384 +f 16358/16358 16389/16389 16360/16360 +f 16333/16333 16385/16385 16409/16409 +f 16359/16359 16409/16409 16385/16385 +f 16410/16410 16334/16334 16386/16386 +f 16379/16379 16386/16386 16361/16361 +f 16340/16340 16362/16362 16392/16392 +f 16387/16387 16411/16411 16362/16362 +f 16388/16388 16412/16412 16363/16363 +f 16363/16363 16413/16413 16387/16387 +f 16388/16388 16337/16337 16414/16414 +f 16337/16337 16389/16389 16414/16414 +f 16390/16390 16391/16391 16339/16339 +f 16390/16390 16364/16364 16392/16392 +f 16391/16391 16366/16366 16365/16365 +f 16393/16393 16395/16395 16341/16341 +f 16415/16415 16393/16393 16366/16366 +f 16416/16416 16367/16367 16368/16368 +f 16395/16395 16394/16394 16343/16343 +f 16417/16417 16368/16368 16394/16394 +f 16369/16369 16396/16396 16418/16418 +f 16396/16396 16344/16344 16419/16419 +f 16369/16369 16420/16420 16397/16397 +f 16398/16398 16370/16370 16421/16421 +f 16422/16422 16344/16344 16398/16398 +f 16370/16370 16371/16371 16421/16421 +f 16345/16345 16400/16400 16399/16399 +f 16421/16421 16371/16371 16399/16399 +f 16416/16416 16400/16400 16367/16367 +f 16375/16375 16374/16374 16423/16423 +f 16397/16397 16424/16424 16374/16374 +f 16425/16425 16401/16401 16375/16375 +f 16377/16377 16376/16376 16426/16426 +f 16401/16401 16427/16427 16376/16376 +f 16402/16402 16377/16377 16426/16426 +f 16402/16402 16351/16351 16350/16350 +f 16351/16351 16402/16402 16403/16403 +f 16428/16428 16378/16378 16403/16403 +f 16404/16404 16378/16378 16429/16429 +f 16380/16380 16334/16334 16430/16430 +f 16380/16380 16430/16430 16405/16405 +f 16431/16431 16381/16381 16405/16405 +f 16356/16356 16408/16408 16406/16406 +f 16406/16406 16432/16432 16359/16359 +f 16382/16382 16407/16407 16433/16433 +f 16434/16434 16408/16408 16382/16382 +f 16407/16407 16383/16383 16431/16431 +f 16383/16383 16381/16381 16431/16431 +f 16409/16409 16435/16435 16384/16384 +f 16384/16384 16436/16436 16389/16389 +f 16359/16359 16437/16437 16409/16409 +f 16438/16438 16410/16410 16386/16386 +f 16410/16410 16439/16439 16334/16334 +f 16386/16386 16379/16379 16440/16440 +f 16362/16362 16411/16411 16392/16392 +f 16387/16387 16441/16441 16411/16411 +f 16442/16442 16412/16412 16388/16388 +f 16413/16413 16363/16363 16412/16412 +f 16387/16387 16413/16413 16441/16441 +f 16388/16388 16414/16414 16442/16442 +f 16389/16389 16443/16443 16414/16414 +f 16390/16390 16411/16411 16391/16391 +f 16392/16392 16411/16411 16390/16390 +f 16366/16366 16391/16391 16444/16444 +f 16393/16393 16415/16415 16395/16395 +f 16444/16444 16415/16415 16366/16366 +f 16417/16417 16416/16416 16368/16368 +f 16395/16395 16445/16445 16394/16394 +f 16394/16394 16445/16445 16417/16417 +f 16446/16446 16369/16369 16418/16418 +f 16396/16396 16447/16447 16418/16418 +f 16419/16419 16344/16344 16422/16422 +f 16419/16419 16447/16447 16396/16396 +f 16420/16420 16424/16424 16397/16397 +f 16420/16420 16369/16369 16446/16446 +f 16421/16421 16448/16448 16398/16398 +f 16449/16449 16422/16422 16398/16398 +f 16399/16399 16400/16400 16450/16450 +f 16399/16399 16448/16448 16421/16421 +f 16450/16450 16400/16400 16416/16416 +f 16423/16423 16374/16374 16424/16424 +f 16375/16375 16423/16423 16451/16451 +f 16452/16452 16425/16425 16375/16375 +f 16453/16453 16401/16401 16425/16425 +f 16454/16454 16426/16426 16376/16376 +f 16453/16453 16427/16427 16401/16401 +f 16454/16454 16376/16376 16427/16427 +f 16403/16403 16402/16402 16426/16426 +f 16455/16455 16378/16378 16428/16428 +f 16454/16454 16428/16428 16403/16403 +f 16429/16429 16456/16456 16404/16404 +f 16378/16378 16457/16457 16429/16429 +f 16458/16458 16430/16430 16334/16334 +f 16431/16431 16405/16405 16430/16430 +f 16406/16406 16408/16408 16459/16459 +f 16432/16432 16406/16406 16460/16460 +f 16359/16359 16432/16432 16437/16437 +f 16433/16433 16407/16407 16461/16461 +f 16382/16382 16433/16433 16434/16434 +f 16408/16408 16434/16434 16459/16459 +f 16458/16458 16407/16407 16431/16431 +f 16435/16435 16409/16409 16462/16462 +f 16463/16463 16384/16384 16435/16435 +f 16436/16436 16443/16443 16389/16389 +f 16436/16436 16384/16384 16463/16463 +f 16462/16462 16409/16409 16437/16437 +f 16410/16410 16438/16438 16464/16464 +f 16465/16465 16438/16438 16386/16386 +f 16439/16439 16466/16466 16334/16334 +f 16439/16439 16410/16410 16467/16467 +f 16440/16440 16468/16468 16386/16386 +f 16411/16411 16441/16441 16469/16469 +f 16470/16470 16412/16412 16442/16442 +f 16413/16413 16412/16412 16471/16471 +f 16413/16413 16472/16472 16441/16441 +f 16442/16442 16414/16414 16473/16473 +f 16473/16473 16414/16414 16443/16443 +f 16391/16391 16411/16411 16474/16474 +f 16474/16474 16444/16444 16391/16391 +f 16395/16395 16415/16415 16445/16445 +f 16444/16444 16475/16475 16415/16415 +f 16416/16416 16417/16417 16476/16476 +f 16477/16477 16417/16417 16445/16445 +f 16478/16478 16446/16446 16418/16418 +f 16479/16479 16418/16418 16447/16447 +f 16480/16480 16419/16419 16422/16422 +f 16447/16447 16419/16419 16481/16481 +f 16424/16424 16420/16420 16482/16482 +f 16446/16446 16483/16483 16420/16420 +f 16448/16448 16449/16449 16398/16398 +f 16484/16484 16422/16422 16449/16449 +f 16399/16399 16450/16450 16485/16485 +f 16399/16399 16485/16485 16448/16448 +f 16486/16486 16450/16450 16416/16416 +f 16487/16487 16423/16423 16424/16424 +f 16487/16487 16451/16451 16423/16423 +f 16488/16488 16375/16375 16451/16451 +f 16452/16452 16489/16489 16425/16425 +f 16452/16452 16375/16375 16488/16488 +f 16490/16490 16453/16453 16425/16425 +f 16403/16403 16426/16426 16454/16454 +f 16427/16427 16453/16453 16490/16490 +f 16427/16427 16491/16491 16454/16454 +f 16455/16455 16457/16457 16378/16378 +f 16455/16455 16428/16428 16492/16492 +f 16491/16491 16428/16428 16454/16454 +f 16493/16493 16456/16456 16429/16429 +f 16457/16457 16493/16493 16429/16429 +f 16458/16458 16431/16431 16430/16430 +f 16334/16334 16466/16466 16458/16458 +f 16460/16460 16406/16406 16459/16459 +f 16494/16494 16432/16432 16460/16460 +f 16437/16437 16432/16432 16495/16495 +f 16461/16461 16407/16407 16458/16458 +f 16433/16433 16461/16461 16496/16496 +f 16496/16496 16434/16434 16433/16433 +f 16434/16434 16497/16497 16459/16459 +f 16462/16462 16498/16498 16435/16435 +f 16435/16435 16498/16498 16463/16463 +f 16499/16499 16443/16443 16436/16436 +f 16500/16500 16436/16436 16463/16463 +f 16462/16462 16437/16437 16501/16501 +f 16410/16410 16464/16464 16502/16502 +f 16464/16464 16438/16438 16503/16503 +f 16465/16465 16503/16503 16438/16438 +f 16468/16468 16465/16465 16386/16386 +f 16504/16504 16466/16466 16439/16439 +f 16502/16502 16467/16467 16410/16410 +f 16467/16467 16504/16504 16439/16439 +f 16441/16441 16472/16472 16469/16469 +f 16411/16411 16469/16469 16505/16505 +f 16442/16442 16506/16506 16470/16470 +f 16412/16412 16470/16470 16507/16507 +f 16412/16412 16507/16507 16471/16471 +f 16413/16413 16471/16471 16472/16472 +f 16442/16442 16473/16473 16508/16508 +f 16509/16509 16473/16473 16443/16443 +f 16474/16474 16411/16411 16505/16505 +f 16444/16444 16474/16474 16475/16475 +f 16475/16475 16445/16445 16415/16415 +f 16476/16476 16510/16510 16416/16416 +f 16477/16477 16476/16476 16417/16417 +f 16445/16445 16511/16511 16477/16477 +f 16512/16512 16446/16446 16478/16478 +f 16478/16478 16418/16418 16479/16479 +f 16513/16513 16479/16479 16447/16447 +f 16480/16480 16481/16481 16419/16419 +f 16422/16422 16484/16484 16480/16480 +f 16481/16481 16514/16514 16447/16447 +f 16420/16420 16483/16483 16482/16482 +f 16515/16515 16424/16424 16482/16482 +f 16446/16446 16512/16512 16483/16483 +f 16484/16484 16449/16449 16448/16448 +f 16516/16516 16485/16485 16450/16450 +f 16485/16485 16517/16517 16448/16448 +f 16518/16518 16450/16450 16486/16486 +f 16510/16510 16486/16486 16416/16416 +f 16424/16424 16515/16515 16487/16487 +f 16519/16519 16451/16451 16487/16487 +f 16520/16520 16488/16488 16451/16451 +f 16425/16425 16489/16489 16521/16521 +f 16489/16489 16452/16452 16522/16522 +f 16488/16488 16522/16522 16452/16452 +f 16425/16425 16523/16523 16490/16490 +f 16427/16427 16490/16490 16492/16492 +f 16492/16492 16491/16491 16427/16427 +f 16457/16457 16455/16455 16524/16524 +f 16525/16525 16455/16455 16492/16492 +f 16492/16492 16428/16428 16491/16491 +f 16493/16493 16457/16457 16524/16524 +f 16466/16466 16461/16461 16458/16458 +f 16526/16526 16460/16460 16459/16459 +f 16526/16526 16494/16494 16460/16460 +f 16494/16494 16527/16527 16432/16432 +f 16495/16495 16528/16528 16437/16437 +f 16495/16495 16432/16432 16529/16529 +f 16530/16530 16496/16496 16461/16461 +f 16496/16496 16497/16497 16434/16434 +f 16459/16459 16497/16497 16531/16531 +f 16532/16532 16498/16498 16462/16462 +f 16498/16498 16500/16500 16463/16463 +f 16499/16499 16533/16533 16443/16443 +f 16436/16436 16500/16500 16499/16499 +f 16501/16501 16437/16437 16528/16528 +f 16501/16501 16532/16532 16462/16462 +f 16534/16534 16502/16502 16464/16464 +f 16464/16464 16503/16503 16535/16535 +f 16536/16536 16503/16503 16465/16465 +f 16465/16465 16468/16468 16536/16536 +f 16466/16466 16504/16504 16530/16530 +f 16504/16504 16467/16467 16502/16502 +f 16537/16537 16469/16469 16472/16472 +f 16469/16469 16537/16537 16505/16505 +f 16506/16506 16442/16442 16508/16508 +f 16506/16506 16538/16538 16470/16470 +f 16507/16507 16470/16470 16539/16539 +f 16472/16472 16471/16471 16507/16507 +f 16473/16473 16540/16540 16508/16508 +f 16509/16509 16540/16540 16473/16473 +f 16443/16443 16541/16541 16509/16509 +f 16505/16505 16475/16475 16474/16474 +f 16475/16475 16511/16511 16445/16445 +f 16542/16542 16510/16510 16476/16476 +f 16542/16542 16476/16476 16477/16477 +f 16543/16543 16477/16477 16511/16511 +f 16544/16544 16512/16512 16478/16478 +f 16513/16513 16478/16478 16479/16479 +f 16514/16514 16513/16513 16447/16447 +f 16545/16545 16481/16481 16480/16480 +f 16480/16480 16484/16484 16546/16546 +f 16514/16514 16481/16481 16545/16545 +f 16482/16482 16483/16483 16547/16547 +f 16515/16515 16482/16482 16547/16547 +f 16548/16548 16483/16483 16512/16512 +f 16517/16517 16484/16484 16448/16448 +f 16516/16516 16549/16549 16485/16485 +f 16450/16450 16518/16518 16516/16516 +f 16517/16517 16485/16485 16549/16549 +f 16486/16486 16550/16550 16518/16518 +f 16486/16486 16510/16510 16550/16550 +f 16487/16487 16515/16515 16551/16551 +f 16519/16519 16520/16520 16451/16451 +f 16487/16487 16551/16551 16519/16519 +f 16488/16488 16520/16520 16552/16552 +f 16521/16521 16489/16489 16553/16553 +f 16523/16523 16425/16425 16521/16521 +f 16489/16489 16522/16522 16554/16554 +f 16552/16552 16522/16522 16488/16488 +f 16490/16490 16523/16523 16555/16555 +f 16492/16492 16490/16490 16525/16525 +f 16455/16455 16555/16555 16524/16524 +f 16455/16455 16525/16525 16555/16555 +f 16556/16556 16493/16493 16524/16524 +f 16466/16466 16530/16530 16461/16461 +f 16557/16557 16494/16494 16526/16526 +f 16527/16527 16494/16494 16558/16558 +f 16527/16527 16529/16529 16432/16432 +f 16497/16497 16496/16496 16530/16530 +f 16534/16534 16531/16531 16497/16497 +f 16459/16459 16531/16531 16559/16559 +f 16560/16560 16498/16498 16532/16532 +f 16560/16560 16500/16500 16498/16498 +f 16499/16499 16561/16561 16533/16533 +f 16443/16443 16533/16533 16541/16541 +f 16499/16499 16500/16500 16560/16560 +f 16528/16528 16562/16562 16501/16501 +f 16532/16532 16501/16501 16562/16562 +f 16504/16504 16502/16502 16534/16534 +f 16464/16464 16563/16563 16534/16534 +f 16503/16503 16564/16564 16535/16535 +f 16464/16464 16535/16535 16565/16565 +f 16503/16503 16536/16536 16564/16564 +f 16536/16536 16468/16468 16564/16564 +f 16504/16504 16497/16497 16530/16530 +f 16472/16472 16566/16566 16537/16537 +f 16505/16505 16537/16537 16567/16567 +f 16538/16538 16506/16506 16508/16508 +f 16539/16539 16470/16470 16538/16538 +f 16568/16568 16507/16507 16539/16539 +f 16507/16507 16568/16568 16472/16472 +f 16569/16569 16508/16508 16540/16540 +f 16570/16570 16540/16540 16509/16509 +f 16571/16571 16509/16509 16541/16541 +f 16572/16572 16475/16475 16505/16505 +f 16572/16572 16511/16511 16475/16475 +f 16510/16510 16542/16542 16550/16550 +f 16542/16542 16477/16477 16543/16543 +f 16511/16511 16572/16572 16543/16543 +f 16548/16548 16512/16512 16544/16544 +f 16478/16478 16513/16513 16544/16544 +f 16513/16513 16514/16514 16573/16573 +f 16546/16546 16545/16545 16480/16480 +f 16546/16546 16484/16484 16574/16574 +f 16545/16545 16575/16575 16514/16514 +f 16547/16547 16483/16483 16576/16576 +f 16547/16547 16551/16551 16515/16515 +f 16548/16548 16576/16576 16483/16483 +f 16574/16574 16484/16484 16517/16517 +f 16577/16577 16549/16549 16516/16516 +f 16516/16516 16518/16518 16577/16577 +f 16549/16549 16578/16578 16517/16517 +f 16579/16579 16518/16518 16550/16550 +f 16520/16520 16519/16519 16580/16580 +f 16519/16519 16551/16551 16581/16581 +f 16520/16520 16582/16582 16552/16552 +f 16524/16524 16521/16521 16553/16553 +f 16489/16489 16554/16554 16553/16553 +f 16521/16521 16555/16555 16523/16523 +f 16522/16522 16583/16583 16554/16554 +f 16522/16522 16552/16552 16584/16584 +f 16490/16490 16555/16555 16525/16525 +f 16521/16521 16524/16524 16555/16555 +f 16493/16493 16556/16556 16585/16585 +f 16556/16556 16524/16524 16553/16553 +f 16526/16526 16586/16586 16557/16557 +f 16557/16557 16558/16558 16494/16494 +f 16558/16558 16529/16529 16527/16527 +f 16497/16497 16504/16504 16534/16534 +f 16531/16531 16534/16534 16587/16587 +f 16559/16559 16531/16531 16587/16587 +f 16588/16588 16560/16560 16532/16532 +f 16561/16561 16589/16589 16533/16533 +f 16560/16560 16561/16561 16499/16499 +f 16589/16589 16541/16541 16533/16533 +f 16562/16562 16590/16590 16532/16532 +f 16563/16563 16464/16464 16565/16565 +f 16563/16563 16587/16587 16534/16534 +f 16591/16591 16535/16535 16564/16564 +f 16592/16592 16565/16565 16535/16535 +f 16564/16564 16468/16468 16591/16591 +f 16566/16566 16593/16593 16537/16537 +f 16472/16472 16568/16568 16566/16566 +f 16567/16567 16537/16537 16593/16593 +f 16567/16567 16572/16572 16505/16505 +f 16508/16508 16594/16594 16538/16538 +f 16539/16539 16538/16538 16595/16595 +f 16568/16568 16539/16539 16566/16566 +f 16569/16569 16540/16540 16596/16596 +f 16594/16594 16508/16508 16569/16569 +f 16596/16596 16540/16540 16570/16570 +f 16570/16570 16509/16509 16571/16571 +f 16541/16541 16597/16597 16571/16571 +f 16550/16550 16542/16542 16598/16598 +f 16543/16543 16598/16598 16542/16542 +f 16543/16543 16572/16572 16599/16599 +f 16573/16573 16548/16548 16544/16544 +f 16573/16573 16544/16544 16513/16513 +f 16575/16575 16573/16573 16514/16514 +f 16546/16546 16600/16600 16545/16545 +f 16574/16574 16601/16601 16546/16546 +f 16545/16545 16602/16602 16575/16575 +f 16603/16603 16547/16547 16576/16576 +f 16547/16547 16603/16603 16551/16551 +f 16576/16576 16548/16548 16604/16604 +f 16517/16517 16578/16578 16574/16574 +f 16577/16577 16578/16578 16549/16549 +f 16518/16518 16605/16605 16577/16577 +f 16605/16605 16518/16518 16579/16579 +f 16598/16598 16579/16579 16550/16550 +f 16580/16580 16606/16606 16520/16520 +f 16580/16580 16519/16519 16607/16607 +f 16551/16551 16603/16603 16581/16581 +f 16581/16581 16607/16607 16519/16519 +f 16582/16582 16520/16520 16608/16608 +f 16584/16584 16552/16552 16582/16582 +f 16553/16553 16554/16554 16583/16583 +f 16583/16583 16522/16522 16584/16584 +f 16556/16556 16609/16609 16585/16585 +f 16585/16585 16610/16610 16493/16493 +f 16609/16609 16556/16556 16553/16553 +f 16611/16611 16557/16557 16586/16586 +f 16558/16558 16557/16557 16611/16611 +f 16559/16559 16587/16587 16612/16612 +f 16588/16588 16532/16532 16590/16590 +f 16588/16588 16561/16561 16560/16560 +f 16613/16613 16541/16541 16589/16589 +f 16590/16590 16562/16562 16588/16588 +f 16565/16565 16612/16612 16563/16563 +f 16587/16587 16563/16563 16612/16612 +f 16592/16592 16535/16535 16591/16591 +f 16592/16592 16614/16614 16565/16565 +f 16566/16566 16615/16615 16593/16593 +f 16599/16599 16567/16567 16593/16593 +f 16567/16567 16599/16599 16572/16572 +f 16594/16594 16616/16616 16538/16538 +f 16595/16595 16538/16538 16616/16616 +f 16539/16539 16595/16595 16617/16617 +f 16539/16539 16618/16618 16566/16566 +f 16619/16619 16569/16569 16596/16596 +f 16616/16616 16594/16594 16569/16569 +f 16596/16596 16570/16570 16620/16620 +f 16621/16621 16570/16570 16571/16571 +f 16622/16622 16597/16597 16541/16541 +f 16597/16597 16623/16623 16571/16571 +f 16543/16543 16624/16624 16598/16598 +f 16624/16624 16543/16543 16599/16599 +f 16604/16604 16548/16548 16573/16573 +f 16575/16575 16625/16625 16573/16573 +f 16626/16626 16600/16600 16546/16546 +f 16545/16545 16600/16600 16602/16602 +f 16601/16601 16626/16626 16546/16546 +f 16627/16627 16601/16601 16574/16574 +f 16575/16575 16602/16602 16628/16628 +f 16576/16576 16629/16629 16603/16603 +f 16604/16604 16630/16630 16576/16576 +f 16605/16605 16574/16574 16578/16578 +f 16605/16605 16578/16578 16577/16577 +f 16631/16631 16605/16605 16579/16579 +f 16579/16579 16598/16598 16632/16632 +f 16606/16606 16633/16633 16520/16520 +f 16634/16634 16606/16606 16580/16580 +f 16607/16607 16635/16635 16580/16580 +f 16629/16629 16581/16581 16603/16603 +f 16581/16581 16636/16636 16607/16607 +f 16520/16520 16637/16637 16608/16608 +f 16608/16608 16638/16638 16582/16582 +f 16638/16638 16584/16584 16582/16582 +f 16583/16583 16609/16609 16553/16553 +f 16584/16584 16639/16639 16583/16583 +f 16609/16609 16640/16640 16585/16585 +f 16610/16610 16585/16585 16641/16641 +f 16611/16611 16586/16586 16642/16642 +f 16611/16611 16642/16642 16558/16558 +f 16559/16559 16612/16612 16614/16614 +f 16613/16613 16622/16622 16541/16541 +f 16565/16565 16614/16614 16612/16612 +f 16643/16643 16593/16593 16615/16615 +f 16615/16615 16566/16566 16618/16618 +f 16599/16599 16593/16593 16643/16643 +f 16644/16644 16595/16595 16616/16616 +f 16617/16617 16595/16595 16645/16645 +f 16646/16646 16539/16539 16617/16617 +f 16618/16618 16539/16539 16646/16646 +f 16619/16619 16647/16647 16569/16569 +f 16648/16648 16619/16619 16596/16596 +f 16616/16616 16569/16569 16647/16647 +f 16649/16649 16596/16596 16620/16620 +f 16570/16570 16621/16621 16620/16620 +f 16571/16571 16623/16623 16621/16621 +f 16650/16650 16597/16597 16622/16622 +f 16650/16650 16623/16623 16597/16597 +f 16624/16624 16632/16632 16598/16598 +f 16643/16643 16624/16624 16599/16599 +f 16625/16625 16604/16604 16573/16573 +f 16575/16575 16628/16628 16625/16625 +f 16626/16626 16651/16651 16600/16600 +f 16600/16600 16652/16652 16602/16602 +f 16653/16653 16626/16626 16601/16601 +f 16627/16627 16653/16653 16601/16601 +f 16627/16627 16574/16574 16654/16654 +f 16652/16652 16628/16628 16602/16602 +f 16576/16576 16630/16630 16629/16629 +f 16630/16630 16604/16604 16625/16625 +f 16654/16654 16574/16574 16605/16605 +f 16631/16631 16655/16655 16605/16605 +f 16631/16631 16579/16579 16632/16632 +f 16656/16656 16633/16633 16606/16606 +f 16637/16637 16520/16520 16633/16633 +f 16634/16634 16657/16657 16606/16606 +f 16635/16635 16634/16634 16580/16580 +f 16636/16636 16635/16635 16607/16607 +f 16658/16658 16581/16581 16629/16629 +f 16581/16581 16658/16658 16636/16636 +f 16637/16637 16633/16633 16608/16608 +f 16633/16633 16638/16638 16608/16608 +f 16638/16638 16659/16659 16584/16584 +f 16639/16639 16609/16609 16583/16583 +f 16639/16639 16584/16584 16640/16640 +f 16609/16609 16639/16639 16640/16640 +f 16585/16585 16640/16640 16660/16660 +f 16585/16585 16660/16660 16641/16641 +f 16641/16641 16661/16661 16610/16610 +f 16618/16618 16643/16643 16615/16615 +f 16595/16595 16644/16644 16645/16645 +f 16616/16616 16662/16662 16644/16644 +f 16617/16617 16645/16645 16663/16663 +f 16664/16664 16646/16646 16617/16617 +f 16665/16665 16618/16618 16646/16646 +f 16619/16619 16666/16666 16647/16647 +f 16648/16648 16667/16667 16619/16619 +f 16648/16648 16596/16596 16649/16649 +f 16616/16616 16647/16647 16668/16668 +f 16669/16669 16649/16649 16620/16620 +f 16620/16620 16621/16621 16669/16669 +f 16670/16670 16621/16621 16623/16623 +f 16623/16623 16650/16650 16671/16671 +f 16672/16672 16632/16632 16624/16624 +f 16624/16624 16643/16643 16673/16673 +f 16674/16674 16625/16625 16628/16628 +f 16651/16651 16626/16626 16653/16653 +f 16600/16600 16651/16651 16675/16675 +f 16600/16600 16675/16675 16652/16652 +f 16653/16653 16627/16627 16676/16676 +f 16654/16654 16676/16676 16627/16627 +f 16628/16628 16652/16652 16677/16677 +f 16629/16629 16630/16630 16674/16674 +f 16630/16630 16625/16625 16674/16674 +f 16655/16655 16654/16654 16605/16605 +f 16655/16655 16631/16631 16678/16678 +f 16631/16631 16632/16632 16679/16679 +f 16656/16656 16680/16680 16633/16633 +f 16657/16657 16656/16656 16606/16606 +f 16634/16634 16681/16681 16657/16657 +f 16634/16634 16635/16635 16682/16682 +f 16682/16682 16635/16635 16636/16636 +f 16674/16674 16658/16658 16629/16629 +f 16636/16636 16658/16658 16683/16683 +f 16659/16659 16638/16638 16633/16633 +f 16640/16640 16584/16584 16659/16659 +f 16659/16659 16660/16660 16640/16640 +f 16660/16660 16684/16684 16641/16641 +f 16641/16641 16685/16685 16661/16661 +f 16618/16618 16665/16665 16643/16643 +f 16645/16645 16644/16644 16686/16686 +f 16668/16668 16662/16662 16616/16616 +f 16687/16687 16644/16644 16662/16662 +f 16645/16645 16688/16688 16663/16663 +f 16688/16688 16617/16617 16663/16663 +f 16646/16646 16664/16664 16689/16689 +f 16664/16664 16617/16617 16690/16690 +f 16691/16691 16665/16665 16646/16646 +f 16667/16667 16666/16666 16619/16619 +f 16666/16666 16692/16692 16647/16647 +f 16667/16667 16648/16648 16693/16693 +f 16669/16669 16648/16648 16649/16649 +f 16694/16694 16668/16668 16647/16647 +f 16670/16670 16669/16669 16621/16621 +f 16671/16671 16670/16670 16623/16623 +f 16671/16671 16650/16650 16695/16695 +f 16673/16673 16672/16672 16624/16624 +f 16672/16672 16696/16696 16632/16632 +f 16643/16643 16697/16697 16673/16673 +f 16628/16628 16698/16698 16674/16674 +f 16653/16653 16699/16699 16651/16651 +f 16675/16675 16651/16651 16700/16700 +f 16652/16652 16675/16675 16701/16701 +f 16653/16653 16676/16676 16702/16702 +f 16703/16703 16676/16676 16654/16654 +f 16677/16677 16652/16652 16701/16701 +f 16628/16628 16677/16677 16704/16704 +f 16655/16655 16703/16703 16654/16654 +f 16705/16705 16655/16655 16678/16678 +f 16678/16678 16631/16631 16679/16679 +f 16696/16696 16679/16679 16632/16632 +f 16680/16680 16706/16706 16633/16633 +f 16656/16656 16681/16681 16680/16680 +f 16657/16657 16681/16681 16656/16656 +f 16707/16707 16681/16681 16634/16634 +f 16682/16682 16708/16708 16634/16634 +f 16682/16682 16636/16636 16709/16709 +f 16710/16710 16658/16658 16674/16674 +f 16683/16683 16709/16709 16636/16636 +f 16711/16711 16683/16683 16658/16658 +f 16659/16659 16633/16633 16706/16706 +f 16659/16659 16706/16706 16660/16660 +f 16706/16706 16684/16684 16660/16660 +f 16684/16684 16712/16712 16641/16641 +f 16641/16641 16713/16713 16685/16685 +f 16661/16661 16685/16685 16714/16714 +f 16665/16665 16697/16697 16643/16643 +f 16687/16687 16686/16686 16644/16644 +f 16645/16645 16686/16686 16688/16688 +f 16715/16715 16662/16662 16668/16668 +f 16662/16662 16715/16715 16687/16687 +f 16688/16688 16716/16716 16617/16617 +f 16664/16664 16717/16717 16689/16689 +f 16689/16689 16718/16718 16646/16646 +f 16617/16617 16716/16716 16690/16690 +f 16719/16719 16664/16664 16690/16690 +f 16691/16691 16697/16697 16665/16665 +f 16720/16720 16691/16691 16646/16646 +f 16666/16666 16667/16667 16692/16692 +f 16692/16692 16694/16694 16647/16647 +f 16648/16648 16721/16721 16693/16693 +f 16693/16693 16692/16692 16667/16667 +f 16721/16721 16648/16648 16669/16669 +f 16694/16694 16715/16715 16668/16668 +f 16669/16669 16670/16670 16671/16671 +f 16722/16722 16671/16671 16695/16695 +f 16696/16696 16672/16672 16673/16673 +f 16697/16697 16723/16723 16673/16673 +f 16710/16710 16674/16674 16698/16698 +f 16628/16628 16704/16704 16698/16698 +f 16651/16651 16699/16699 16700/16700 +f 16702/16702 16699/16699 16653/16653 +f 16700/16700 16701/16701 16675/16675 +f 16702/16702 16676/16676 16724/16724 +f 16676/16676 16703/16703 16724/16724 +f 16701/16701 16725/16725 16677/16677 +f 16725/16725 16704/16704 16677/16677 +f 16705/16705 16703/16703 16655/16655 +f 16678/16678 16726/16726 16705/16705 +f 16727/16727 16678/16678 16679/16679 +f 16728/16728 16679/16679 16696/16696 +f 16706/16706 16680/16680 16684/16684 +f 16681/16681 16729/16729 16680/16680 +f 16730/16730 16707/16707 16634/16634 +f 16729/16729 16681/16681 16707/16707 +f 16708/16708 16682/16682 16730/16730 +f 16730/16730 16634/16634 16708/16708 +f 16682/16682 16709/16709 16730/16730 +f 16658/16658 16710/16710 16731/16731 +f 16683/16683 16732/16732 16709/16709 +f 16711/16711 16733/16733 16683/16683 +f 16658/16658 16734/16734 16711/16711 +f 16641/16641 16712/16712 16713/16713 +f 16729/16729 16712/16712 16684/16684 +f 16735/16735 16685/16685 16713/16713 +f 16685/16685 16735/16735 16714/16714 +f 16686/16686 16687/16687 16736/16736 +f 16737/16737 16688/16688 16686/16686 +f 16738/16738 16687/16687 16715/16715 +f 16739/16739 16716/16716 16688/16688 +f 16664/16664 16740/16740 16717/16717 +f 16717/16717 16741/16741 16689/16689 +f 16646/16646 16718/16718 16720/16720 +f 16742/16742 16718/16718 16689/16689 +f 16716/16716 16719/16719 16690/16690 +f 16719/16719 16743/16743 16664/16664 +f 16697/16697 16691/16691 16720/16720 +f 16692/16692 16744/16744 16694/16694 +f 16693/16693 16721/16721 16744/16744 +f 16744/16744 16692/16692 16693/16693 +f 16721/16721 16669/16669 16745/16745 +f 16746/16746 16715/16715 16694/16694 +f 16671/16671 16745/16745 16669/16669 +f 16746/16746 16671/16671 16722/16722 +f 16695/16695 16747/16747 16722/16722 +f 16696/16696 16673/16673 16748/16748 +f 16720/16720 16723/16723 16697/16697 +f 16723/16723 16748/16748 16673/16673 +f 16731/16731 16710/16710 16698/16698 +f 16704/16704 16749/16749 16698/16698 +f 16750/16750 16700/16700 16699/16699 +f 16699/16699 16702/16702 16751/16751 +f 16700/16700 16750/16750 16701/16701 +f 16724/16724 16752/16752 16702/16702 +f 16753/16753 16724/16724 16703/16703 +f 16750/16750 16725/16725 16701/16701 +f 16704/16704 16725/16725 16754/16754 +f 16705/16705 16755/16755 16703/16703 +f 16727/16727 16726/16726 16678/16678 +f 16705/16705 16726/16726 16756/16756 +f 16727/16727 16679/16679 16728/16728 +f 16696/16696 16748/16748 16728/16728 +f 16729/16729 16684/16684 16680/16680 +f 16707/16707 16730/16730 16757/16757 +f 16707/16707 16758/16758 16729/16729 +f 16709/16709 16759/16759 16730/16730 +f 16731/16731 16734/16734 16658/16658 +f 16732/16732 16683/16683 16760/16760 +f 16759/16759 16709/16709 16732/16732 +f 16733/16733 16711/16711 16761/16761 +f 16760/16760 16683/16683 16733/16733 +f 16762/16762 16711/16711 16734/16734 +f 16712/16712 16763/16763 16713/16713 +f 16758/16758 16712/16712 16729/16729 +f 16713/16713 16764/16764 16735/16735 +f 16714/16714 16735/16735 16765/16765 +f 16687/16687 16738/16738 16736/16736 +f 16686/16686 16736/16736 16737/16737 +f 16739/16739 16688/16688 16737/16737 +f 16746/16746 16738/16738 16715/16715 +f 16739/16739 16766/16766 16716/16716 +f 16767/16767 16740/16740 16664/16664 +f 16768/16768 16717/16717 16740/16740 +f 16741/16741 16769/16769 16689/16689 +f 16717/16717 16770/16770 16741/16741 +f 16718/16718 16771/16771 16720/16720 +f 16742/16742 16772/16772 16718/16718 +f 16769/16769 16742/16742 16689/16689 +f 16766/16766 16719/16719 16716/16716 +f 16743/16743 16719/16719 16773/16773 +f 16743/16743 16774/16774 16664/16664 +f 16694/16694 16744/16744 16746/16746 +f 16775/16775 16744/16744 16721/16721 +f 16721/16721 16745/16745 16775/16775 +f 16745/16745 16671/16671 16746/16746 +f 16722/16722 16776/16776 16746/16746 +f 16776/16776 16722/16722 16747/16747 +f 16723/16723 16720/16720 16771/16771 +f 16748/16748 16723/16723 16771/16771 +f 16749/16749 16731/16731 16698/16698 +f 16704/16704 16754/16754 16749/16749 +f 16777/16777 16750/16750 16699/16699 +f 16752/16752 16751/16751 16702/16702 +f 16699/16699 16751/16751 16778/16778 +f 16724/16724 16753/16753 16752/16752 +f 16779/16779 16753/16753 16703/16703 +f 16725/16725 16750/16750 16780/16780 +f 16725/16725 16780/16780 16754/16754 +f 16755/16755 16779/16779 16703/16703 +f 16755/16755 16705/16705 16756/16756 +f 16726/16726 16727/16727 16781/16781 +f 16756/16756 16726/16726 16781/16781 +f 16782/16782 16727/16727 16728/16728 +f 16728/16728 16748/16748 16771/16771 +f 16757/16757 16730/16730 16759/16759 +f 16707/16707 16757/16757 16758/16758 +f 16734/16734 16731/16731 16762/16762 +f 16732/16732 16760/16760 16783/16783 +f 16757/16757 16759/16759 16732/16732 +f 16711/16711 16762/16762 16761/16761 +f 16733/16733 16761/16761 16784/16784 +f 16733/16733 16785/16785 16760/16760 +f 16758/16758 16763/16763 16712/16712 +f 16713/16713 16763/16763 16786/16786 +f 16764/16764 16713/16713 16786/16786 +f 16764/16764 16787/16787 16735/16735 +f 16788/16788 16765/16765 16735/16735 +f 16738/16738 16789/16789 16736/16736 +f 16736/16736 16790/16790 16737/16737 +f 16790/16790 16739/16739 16737/16737 +f 16776/16776 16738/16738 16746/16746 +f 16791/16791 16766/16766 16739/16739 +f 16767/16767 16792/16792 16740/16740 +f 16664/16664 16774/16774 16767/16767 +f 16768/16768 16770/16770 16717/16717 +f 16793/16793 16768/16768 16740/16740 +f 16769/16769 16741/16741 16794/16794 +f 16795/16795 16741/16741 16770/16770 +f 16718/16718 16796/16796 16771/16771 +f 16742/16742 16797/16797 16772/16772 +f 16796/16796 16718/16718 16772/16772 +f 16798/16798 16742/16742 16769/16769 +f 16799/16799 16719/16719 16766/16766 +f 16773/16773 16774/16774 16743/16743 +f 16773/16773 16719/16719 16799/16799 +f 16744/16744 16775/16775 16746/16746 +f 16746/16746 16775/16775 16745/16745 +f 16800/16800 16776/16776 16747/16747 +f 16801/16801 16731/16731 16749/16749 +f 16754/16754 16802/16802 16749/16749 +f 16750/16750 16777/16777 16780/16780 +f 16699/16699 4918/16803 16777/16777 +f 16753/16753 16751/16751 16752/16752 +f 16803/16804 16778/16778 16751/16751 +f 16778/16778 4918/16803 16699/16699 +f 16779/16779 16803/16804 16753/16753 +f 16780/16780 16802/16802 16754/16754 +f 16804/16805 16779/16779 16755/16755 +f 16755/16755 16756/16756 16781/16781 +f 16805/16806 16781/16781 16727/16727 +f 16782/16782 16806/16807 16727/16727 +f 16728/16728 16797/16797 16782/16782 +f 16728/16728 16771/16771 16797/16797 +f 16807/16808 16758/16758 16757/16757 +f 16762/16762 16731/16731 16801/16801 +f 16760/16760 16785/16785 16783/16783 +f 16732/16732 16783/16783 16807/16808 +f 16807/16808 16757/16757 16732/16732 +f 16808/16809 16761/16761 16762/16762 +f 16784/16784 16761/16761 16809/16810 +f 16733/16733 16784/16784 16810/16811 +f 16811/16812 16785/16785 16733/16733 +f 16763/16763 16758/16758 16807/16808 +f 16812/16813 16786/16786 16763/16763 +f 16813/16814 16764/16764 16786/16786 +f 16787/16787 16764/16764 16814/16815 +f 16788/16788 16735/16735 16787/16787 +f 16800/16800 16789/16789 16738/16738 +f 16736/16736 16789/16789 16790/16790 +f 16739/16739 16790/16790 16815/16816 +f 16800/16800 16738/16738 16776/16776 +f 16739/16739 16815/16816 16791/16791 +f 16791/16791 16816/16817 16766/16766 +f 16767/16767 16774/16774 16792/16792 +f 16792/16792 16793/16793 16740/16740 +f 16770/16770 16768/16768 16795/16795 +f 16795/16795 16768/16768 16793/16793 +f 16741/16741 16817/16818 16794/16794 +f 16769/16769 16794/16794 16817/16818 +f 16795/16795 16818/16819 16741/16741 +f 16771/16771 16796/16796 16772/16772 +f 16742/16742 16782/16782 16797/16797 +f 16772/16772 16797/16797 16771/16771 +f 16742/16742 16798/16798 16782/16782 +f 16769/16769 16819/16820 16798/16798 +f 16799/16799 16766/16766 16816/16817 +f 16774/16774 16773/16773 16792/16792 +f 16773/16773 16799/16799 16820/16821 +f 16801/16801 16749/16749 16802/16802 +f 16780/16780 16777/16777 4980/16822 +f 4918/16803 4980/16822 16777/16777 +f 16753/16753 16803/16804 16751/16751 +f 16803/16804 16821/16823 16778/16778 +f 16778/16778 4877/16824 4918/16803 +f 16779/16779 16822/16825 16803/16804 +f 16802/16802 16780/16780 4980/16822 +f 16823/16826 16779/16779 16804/16805 +f 16755/16755 16824/16827 16804/16805 +f 16825/16828 16755/16755 16781/16781 +f 16727/16727 16806/16807 16805/16806 +f 16805/16806 16826/16829 16781/16781 +f 16782/16782 16798/16798 16806/16807 +f 16808/16809 16762/16762 16801/16801 +f 16785/16785 16827/16830 16783/16783 +f 16807/16808 16783/16783 16828/16831 +f 16829/16832 16761/16761 16808/16809 +f 16809/16810 16761/16761 16830/16833 +f 16809/16810 16831/16834 16784/16784 +f 16811/16812 16733/16733 16810/16811 +f 16810/16811 16784/16784 16832/16835 +f 16833/16836 16785/16785 16811/16812 +f 16807/16808 16828/16831 16763/16763 +f 16812/16813 16763/16763 16828/16831 +f 16813/16814 16786/16786 16812/16813 +f 16813/16814 16814/16815 16764/16764 +f 16834/16837 16787/16787 16814/16815 +f 16788/16788 16787/16787 16835/16838 +f 16789/16789 16800/16800 16836/16839 +f 16789/16789 16836/16839 16790/16790 +f 16837/16840 16815/16816 16790/16790 +f 16815/16816 16838/16841 16791/16791 +f 16839/16842 16816/16817 16791/16791 +f 16793/16793 16792/16792 16840/16843 +f 16818/16819 16795/16795 16793/16793 +f 16818/16819 16817/16818 16741/16741 +f 16817/16818 16841/16844 16769/16769 +f 16769/16769 16842/16845 16819/16820 +f 16798/16798 16819/16820 16843/16846 +f 16839/16842 16799/16799 16816/16817 +f 16792/16792 16773/16773 16844/16847 +f 16799/16799 16845/16848 16820/16821 +f 16820/16821 16844/16847 16773/16773 +f 16808/16809 16801/16801 16802/16802 +f 16822/16825 16821/16823 16803/16804 +f 16821/16823 4877/16824 16778/16778 +f 16779/16779 4715/16849 16822/16825 +f 4980/16822 16846/16850 16802/16802 +f 16779/16779 16823/16826 4715/16849 +f 16823/16826 16804/16805 4698/16851 +f 16824/16827 16755/16755 16825/16828 +f 16847/16852 16804/16805 16824/16827 +f 16781/16781 16826/16829 16825/16828 +f 16826/16829 16805/16806 16806/16807 +f 16798/16798 16826/16829 16806/16807 +f 16827/16830 16785/16785 16833/16836 +f 16827/16830 16828/16831 16783/16783 +f 16829/16832 16830/16833 16761/16761 +f 16829/16832 16808/16809 16848/16853 +f 16809/16810 16830/16833 16849/16854 +f 16849/16854 16831/16834 16809/16810 +f 16832/16835 16811/16812 16810/16811 +f 16811/16812 16850/16855 16833/16836 +f 16828/16831 16827/16830 16812/16813 +f 16812/16813 16851/16856 16813/16814 +f 16813/16814 16851/16856 16814/16815 +f 16787/16787 16834/16837 16852/16857 +f 16853/16858 16834/16837 16814/16815 +f 16852/16857 16835/16838 16787/16787 +f 16836/16839 16800/16800 16854/16859 +f 16836/16839 16837/16840 16790/16790 +f 16837/16840 16838/16841 16815/16816 +f 16791/16791 16838/16841 16839/16842 +f 16840/16843 16792/16792 16855/16860 +f 16793/16793 16840/16843 16856/16861 +f 16818/16819 16793/16793 16857/16862 +f 16817/16818 16818/16819 16858/16863 +f 16842/16845 16769/16769 16841/16844 +f 16817/16818 16858/16863 16841/16844 +f 16819/16820 16842/16845 16859/16864 +f 16860/16865 16798/16798 16843/16846 +f 16819/16820 16861/16866 16843/16846 +f 16839/16842 16845/16848 16799/16799 +f 16844/16847 16855/16860 16792/16792 +f 16862/16867 16820/16821 16845/16848 +f 16844/16847 16820/16821 16863/16868 +f 16846/16850 16808/16809 16802/16802 +f 4806/16869 16821/16823 16822/16825 +f 4831/16870 4877/16824 16821/16823 +f 16822/16825 4715/16849 4757/16871 +f 4980/16822 5024/16872 16846/16850 +f 16823/16826 4698/16851 4715/16849 +f 4698/16851 16804/16805 16864/16873 +f 16825/16828 16865/16874 16824/16827 +f 16804/16805 16847/16852 16864/16873 +f 16847/16852 16824/16827 16865/16874 +f 16826/16829 16865/16874 16825/16828 +f 16826/16829 16798/16798 16860/16865 +f 16827/16830 16833/16836 16812/16813 +f 16830/16833 16829/16832 16866/16875 +f 16848/16853 16808/16809 16846/16850 +f 16848/16853 16866/16875 16829/16832 +f 16830/16833 16867/16876 16849/16854 +f 16831/16834 16849/16854 16868/16877 +f 16850/16855 16811/16812 16832/16835 +f 16833/16836 16850/16855 16869/16878 +f 16833/16836 16851/16856 16812/16813 +f 16814/16815 16851/16856 16853/16858 +f 16852/16857 16834/16837 16870/16879 +f 16853/16858 16870/16879 16834/16837 +f 16871/16880 16835/16838 16852/16857 +f 16854/16859 16872/16881 16836/16839 +f 16872/16881 16837/16840 16836/16839 +f 16838/16841 16837/16840 16873/16882 +f 16838/16841 16873/16882 16839/16842 +f 16874/16883 16840/16843 16855/16860 +f 16840/16843 16875/16884 16856/16861 +f 16857/16862 16793/16793 16856/16861 +f 16818/16819 16857/16862 16876/16885 +f 16876/16885 16858/16863 16818/16819 +f 16877/16886 16842/16845 16841/16844 +f 16858/16863 16878/16887 16841/16844 +f 16859/16864 16842/16845 16877/16886 +f 16861/16866 16819/16820 16859/16864 +f 16843/16846 16879/16888 16860/16865 +f 16861/16866 16880/16889 16843/16846 +f 16839/16842 16881/16890 16845/16848 +f 16882/16891 16855/16860 16844/16847 +f 16820/16821 16862/16867 16863/16868 +f 16845/16848 16883/16892 16862/16867 +f 16882/16891 16844/16847 16863/16868 +f 4806/16869 4831/16870 16821/16823 +f 16822/16825 4757/16871 4806/16869 +f 16884/16893 16846/16850 5024/16872 +f 4698/16851 16864/16873 4567/16894 +f 16864/16873 16847/16852 16885/16895 +f 16847/16852 16865/16874 16886/16896 +f 16826/16829 16886/16896 16865/16874 +f 16860/16865 16886/16896 16826/16829 +f 16866/16875 16887/16897 16830/16833 +f 16884/16893 16848/16853 16846/16850 +f 16848/16853 16884/16893 16866/16875 +f 16867/16876 16888/16898 16849/16854 +f 16830/16833 16887/16897 16867/16876 +f 16849/16854 16889/16899 16868/16877 +f 16832/16835 16831/16834 16868/16877 +f 16832/16835 16890/16900 16850/16855 +f 16890/16900 16869/16878 16850/16855 +f 16833/16836 16869/16878 16851/16856 +f 16851/16856 16869/16878 16853/16858 +f 16871/16880 16852/16857 16870/16879 +f 16853/16858 16891/16901 16870/16879 +f 16873/16882 16837/16840 16872/16881 +f 16873/16882 16881/16890 16839/16842 +f 16874/16883 16855/16860 16882/16891 +f 16874/16883 16892/16902 16840/16843 +f 16857/16862 16856/16861 16875/16884 +f 16840/16843 16892/16902 16875/16884 +f 16876/16885 16857/16862 16893/16903 +f 16878/16887 16858/16863 16876/16885 +f 16841/16844 16878/16887 16877/16886 +f 16894/16904 16859/16864 16877/16886 +f 16861/16866 16859/16864 16894/16904 +f 16886/16896 16860/16865 16879/16888 +f 16843/16846 16895/16905 16879/16888 +f 16880/16889 16861/16866 16896/16906 +f 16880/16889 16895/16905 16843/16846 +f 16863/16868 16862/16867 16897/16907 +f 16883/16892 16897/16907 16862/16867 +f 16883/16892 16845/16848 16898/16908 +f 16874/16883 16882/16891 16863/16868 +f 5024/16872 16899/16909 16884/16893 +f 16864/16873 4517/16910 4567/16894 +f 16885/16895 16847/16852 16879/16888 +f 16885/16895 4517/16910 16864/16873 +f 16886/16896 16879/16888 16847/16852 +f 16900/16911 16887/16897 16866/16875 +f 16884/16893 16901/16912 16866/16875 +f 16867/16876 16902/16913 16888/16898 +f 16889/16899 16849/16854 16888/16898 +f 16903/16914 16867/16876 16887/16897 +f 16889/16899 16904/16915 16868/16877 +f 16868/16877 16890/16900 16832/16835 +f 16869/16878 16890/16900 16905/16916 +f 16891/16901 16853/16858 16869/16878 +f 16906/16917 16871/16880 16870/16879 +f 16870/16879 16891/16901 16905/16916 +f 16881/16890 16873/16882 16872/16881 +f 16892/16902 16874/16883 16897/16907 +f 16893/16903 16857/16862 16875/16884 +f 16892/16902 16897/16907 16875/16884 +f 16893/16903 16907/16918 16876/16885 +f 16876/16885 16907/16918 16878/16887 +f 16877/16886 16878/16887 16907/16918 +f 16894/16904 16877/16886 16908/16919 +f 16896/16906 16861/16866 16894/16904 +f 16879/16888 16895/16905 16909/16920 +f 16910/16921 16880/16889 16896/16906 +f 16910/16921 16895/16905 16880/16889 +f 16863/16868 16897/16907 16874/16883 +f 16897/16907 16883/16892 16911/16922 +f 16845/16848 16912/16923 16898/16908 +f 16913/16924 16883/16892 16898/16908 +f 5024/16872 16914/16925 16899/16909 +f 16901/16912 16884/16893 16899/16909 +f 16885/16895 16879/16888 16909/16920 +f 4517/16910 16885/16895 4484/16926 +f 16900/16911 16903/16914 16887/16897 +f 16866/16875 16915/16927 16900/16911 +f 16866/16875 16901/16912 16915/16927 +f 16903/16914 16902/16913 16867/16876 +f 16916/16928 16888/16898 16902/16913 +f 16889/16899 16888/16898 16904/16915 +f 16904/16915 16890/16900 16868/16877 +f 16891/16901 16869/16878 16905/16916 +f 16890/16900 16904/16915 16905/16916 +f 16906/16917 16917/16929 16871/16880 +f 16870/16879 16905/16916 16906/16917 +f 16911/16922 16893/16903 16875/16884 +f 16875/16884 16897/16907 16911/16922 +f 16918/16930 16907/16918 16893/16903 +f 16877/16886 16907/16918 16908/16919 +f 16896/16906 16894/16904 16908/16919 +f 16895/16905 16919/16931 16909/16920 +f 16910/16921 16896/16906 16920/16932 +f 16895/16905 16910/16921 16919/16931 +f 16913/16924 16911/16922 16883/16892 +f 16912/16923 16921/16933 16898/16908 +f 16898/16908 16922/16934 16913/16924 +f 16914/16925 5024/16872 5083/16935 +f 16901/16912 16899/16909 16914/16925 +f 16923/16936 16885/16895 16909/16920 +f 4484/16926 16885/16895 16924/16937 +f 16900/16911 16925/16938 16903/16914 +f 16900/16911 16915/16927 16926/16939 +f 16927/16940 16915/16927 16901/16912 +f 16902/16913 16903/16914 16928/16941 +f 16902/16913 16928/16941 16916/16928 +f 16929/16942 16888/16898 16916/16928 +f 16929/16942 16904/16915 16888/16898 +f 16905/16916 16904/16915 16929/16942 +f 16906/16917 16930/16943 16917/16929 +f 16906/16917 16905/16916 16931/16944 +f 16893/16903 16911/16922 16932/16945 +f 16907/16918 16918/16930 16908/16919 +f 16893/16903 16932/16945 16918/16930 +f 16918/16930 16896/16906 16908/16919 +f 16919/16931 16933/16946 16909/16920 +f 16896/16906 16934/16947 16920/16932 +f 16920/16932 16935/16948 16910/16921 +f 16910/16921 16935/16948 16919/16931 +f 16936/16949 16911/16922 16913/16924 +f 16912/16923 16937/16950 16921/16933 +f 16898/16908 16921/16933 16922/16934 +f 16913/16924 16922/16934 16938/16951 +f 5083/16935 16939/16952 16914/16925 +f 16901/16912 16914/16925 16940/16953 +f 16941/16954 16885/16895 16923/16936 +f 16909/16920 16942/16955 16923/16936 +f 16924/16937 16943/16956 4484/16926 +f 16924/16937 16885/16895 16941/16954 +f 16900/16911 16926/16939 16925/16938 +f 16928/16941 16903/16914 16925/16938 +f 16915/16927 16944/16957 16926/16939 +f 16927/16940 16901/16912 16945/16958 +f 16944/16957 16915/16927 16927/16940 +f 16928/16941 16946/16959 16916/16928 +f 16916/16928 16947/16960 16929/16942 +f 16929/16942 16931/16944 16905/16916 +f 16917/16929 16930/16943 16948/16961 +f 16930/16943 16906/16917 16931/16944 +f 16932/16945 16911/16922 16949/16962 +f 16918/16930 16932/16945 16950/16963 +f 16896/16906 16918/16930 16934/16947 +f 16933/16946 16942/16955 16909/16920 +f 16919/16931 16951/16964 16933/16946 +f 16934/16947 16952/16965 16920/16932 +f 16920/16932 16952/16965 16935/16948 +f 16919/16931 16935/16948 16953/16966 +f 16913/16924 16954/16967 16936/16949 +f 16949/16962 16911/16922 16936/16949 +f 16921/16933 16937/16950 16955/16968 +f 16921/16933 16956/16969 16922/16934 +f 16938/16951 16957/16970 16913/16924 +f 16922/16934 16958/16971 16938/16951 +f 5083/16935 5081/16972 16939/16952 +f 16959/16973 16914/16925 16939/16952 +f 16959/16973 16940/16953 16914/16925 +f 16945/16958 16901/16912 16940/16953 +f 16923/16936 16960/16974 16941/16954 +f 16961/16975 16923/16936 16942/16955 +f 16943/16956 16924/16937 16941/16954 +f 16943/16956 4431/16976 4484/16926 +f 16962/16977 16925/16938 16926/16939 +f 16925/16938 16963/16978 16928/16941 +f 16944/16957 16964/16979 16926/16939 +f 16945/16958 16965/16980 16927/16940 +f 16927/16940 16966/16981 16944/16957 +f 16946/16959 16928/16941 16963/16978 +f 16916/16928 16946/16959 16947/16960 +f 16931/16944 16929/16942 16947/16960 +f 16917/16929 16948/16961 16967/16982 +f 16948/16961 16930/16943 16968/16983 +f 16931/16944 16969/16984 16930/16943 +f 16949/16962 16970/16985 16932/16945 +f 16970/16985 16950/16963 16932/16945 +f 16971/16986 16918/16930 16950/16963 +f 16918/16930 16971/16986 16934/16947 +f 16942/16955 16933/16946 16972/16987 +f 16933/16946 16951/16964 16953/16966 +f 16951/16964 16919/16931 16953/16966 +f 16973/16988 16952/16965 16934/16947 +f 16953/16966 16935/16948 16952/16965 +f 16936/16949 16954/16967 16974/16989 +f 16957/16970 16954/16967 16913/16924 +f 16936/16949 16970/16985 16949/16962 +f 16955/16968 16937/16950 16975/16990 +f 16955/16968 16956/16969 16921/16933 +f 16956/16969 16976/16991 16922/16934 +f 16957/16970 16938/16951 16977/16992 +f 16976/16991 16958/16971 16922/16934 +f 16958/16971 16976/16991 16938/16951 +f 16978/16993 16939/16952 5081/16972 +f 16959/16973 16939/16952 16979/16994 +f 16959/16973 16945/16958 16940/16953 +f 16961/16975 16960/16974 16923/16936 +f 16941/16954 16960/16974 16980/16995 +f 16972/16987 16961/16975 16942/16955 +f 16981/16996 16943/16956 16941/16954 +f 16943/16956 16982/16997 4431/16976 +f 16962/16977 16963/16978 16925/16938 +f 16926/16939 16964/16979 16962/16977 +f 16964/16979 16944/16957 16966/16981 +f 16927/16940 16965/16980 16983/16998 +f 16965/16980 16945/16958 16984/16999 +f 16927/16940 16983/16998 16966/16981 +f 16946/16959 16963/16978 16985/17000 +f 16969/16984 16947/16960 16946/16959 +f 16947/16960 16969/16984 16931/16944 +f 16948/16961 16986/17001 16967/16982 +f 16930/16943 16987/17002 16968/16983 +f 16968/16983 16986/17001 16948/16961 +f 16930/16943 16969/16984 16988/17003 +f 16950/16963 16970/16985 16989/17004 +f 16990/17005 16971/16986 16950/16963 +f 16971/16986 16991/17006 16934/16947 +f 16972/16987 16933/16946 16953/16966 +f 16952/16965 16973/16988 16992/17007 +f 4299/17008 16973/16988 16934/16947 +f 16993/17009 16953/16966 16952/16965 +f 16974/16989 16954/16967 16957/16970 +f 16974/16989 16994/17010 16936/16949 +f 16994/17010 16970/16985 16936/16949 +f 16995/17011 16955/16968 16975/16990 +f 16955/16968 16995/17011 16956/16969 +f 16976/16991 16956/16969 16996/17012 +f 16974/16989 16957/16970 16977/16992 +f 16977/16992 16938/16951 16996/17012 +f 16976/16991 16996/17012 16938/16951 +f 16978/16993 16979/16994 16939/16952 +f 16978/16993 5081/16972 5044/17013 +f 16945/16958 16959/16973 16979/16994 +f 16961/16975 16980/16995 16960/16974 +f 16941/16954 16980/16995 16981/16996 +f 16997/17014 16961/16975 16972/16987 +f 16981/16996 16982/16997 16943/16956 +f 16982/16997 4383/17015 4431/16976 +f 16963/16978 16962/16977 16998/17016 +f 16962/16977 16964/16979 16998/17016 +f 16998/17016 16964/16979 16966/16981 +f 16965/16980 16999/17017 16983/16998 +f 17000/17018 16965/16980 16984/16999 +f 16945/16958 16979/16994 16984/16999 +f 16966/16981 16983/16998 17001/17019 +f 16985/17000 16988/17003 16946/16959 +f 16963/16978 16988/17003 16985/17000 +f 16969/16984 16946/16959 16988/17003 +f 16967/16982 16986/17001 17002/17020 +f 16930/16943 17003/17021 16987/17002 +f 16968/16983 16987/17002 17004/17022 +f 17004/17022 16986/17001 16968/16983 +f 17003/17021 16930/16943 16988/17003 +f 16970/16985 17005/17023 16989/17004 +f 16989/17004 17006/17024 16950/16963 +f 16971/16986 16990/17005 16991/17006 +f 16950/16963 17006/17024 16990/17005 +f 16934/16947 16991/17006 4299/17008 +f 16953/16966 16993/17009 16972/16987 +f 16992/17007 16993/17009 16952/16965 +f 16982/16997 16992/17007 16973/16988 +f 16973/16988 4299/17008 4300/17025 +f 16994/17010 16974/16989 17007/17026 +f 17007/17026 16970/16985 16994/17010 +f 16996/17012 16956/16969 16995/17011 +f 16974/16989 16977/16992 17007/17026 +f 16977/16992 16996/17012 17008/17027 +f 16979/16994 16978/16993 17009/17028 +f 16978/16993 5044/17013 17009/17028 +f 17010/17029 16980/16995 16961/16975 +f 16980/16995 17010/17029 16981/16996 +f 16972/16987 16993/17009 16997/17014 +f 17010/17029 16961/16975 16997/17014 +f 16981/16996 17010/17029 16982/16997 +f 16982/16997 16973/16988 4383/17015 +f 16963/16978 16998/17016 17011/17030 +f 17001/17019 16998/17016 16966/16981 +f 16983/16998 16999/17017 17012/17031 +f 17000/17018 16999/17017 16965/16980 +f 16984/16999 17013/17032 17000/17018 +f 17014/17033 16984/16999 16979/16994 +f 17012/17031 17001/17019 16983/16998 +f 17011/17030 16988/17003 16963/16978 +f 16986/17001 17015/17034 17002/17020 +f 16986/17001 17004/17022 17015/17034 +f 16988/17003 17016/17035 17003/17021 +f 17005/17023 16970/16985 17017/17036 +f 17005/17023 17018/17037 16989/17004 +f 16989/17004 17018/17037 17006/17024 +f 16991/17006 16990/17005 4232/17038 +f 16990/17005 17006/17024 17019/17039 +f 16991/17006 4231/17040 4299/17008 +f 16993/17009 16992/17007 16997/17014 +f 16982/16997 17010/17029 16992/17007 +f 16973/16988 4300/17025 4383/17015 +f 16970/16985 17007/17026 17017/17036 +f 16995/17011 17020/17041 16996/17012 +f 17007/17026 16977/16992 17021/17042 +f 17022/17043 17008/17027 16996/17012 +f 17021/17042 16977/16992 17008/17027 +f 17009/17028 17014/17033 16979/16994 +f 17009/17028 5044/17013 17023/17044 +f 16992/17007 17010/17029 16997/17014 +f 16998/17016 17024/17045 17011/17030 +f 17024/17045 16998/17016 17001/17019 +f 17025/17046 17012/17031 16999/17017 +f 17000/17018 17026/17047 16999/17017 +f 17013/17032 16984/16999 17027/17048 +f 17028/17049 17000/17018 17013/17032 +f 17014/17033 17027/17048 16984/16999 +f 17001/17019 17012/17031 17029/17050 +f 17016/17035 16988/17003 17011/17030 +f 17015/17034 17030/17051 17002/17020 +f 17004/17022 17031/17052 17015/17034 +f 17016/17035 17032/17053 17003/17021 +f 17017/17036 17033/17054 17005/17023 +f 17005/17023 17034/17055 17018/17037 +f 17006/17024 17018/17037 17035/17056 +f 16990/17005 17019/17039 4232/17038 +f 4232/17038 4231/17040 16991/17006 +f 17036/17057 17019/17039 17006/17024 +f 17037/17058 17017/17036 17007/17026 +f 16995/17011 17038/17059 17020/17041 +f 17020/17041 17022/17043 16996/17012 +f 17021/17042 17039/17060 17007/17026 +f 17008/17027 17022/17043 17021/17042 +f 17009/17028 17040/17061 17014/17033 +f 17023/17044 5044/17013 5001/17062 +f 17041/17063 17009/17028 17023/17044 +f 17011/17030 17024/17045 17042/17064 +f 17024/17045 17001/17019 17029/17050 +f 17012/17031 17025/17046 17029/17050 +f 17026/17047 17025/17046 16999/17017 +f 17043/17065 17026/17047 17000/17018 +f 17013/17032 17027/17048 17028/17049 +f 17000/17018 17028/17049 17043/17065 +f 17040/17061 17027/17048 17014/17033 +f 17042/17064 17016/17035 17011/17030 +f 17030/17051 17015/17034 17044/17066 +f 17031/17052 17044/17066 17015/17034 +f 17016/17035 17042/17064 17032/17053 +f 17045/17067 17033/17054 17017/17036 +f 17034/17055 17005/17023 17033/17054 +f 17035/17056 17018/17037 17034/17055 +f 17035/17056 17036/17057 17006/17024 +f 4191/17068 4232/17038 17019/17039 +f 17036/17057 4233/17069 17019/17039 +f 17045/17067 17017/17036 17037/17058 +f 17039/17060 17037/17058 17007/17026 +f 17020/17041 17038/17059 17046/17070 +f 17046/17070 17022/17043 17020/17041 +f 17021/17042 17047/17071 17039/17060 +f 17022/17043 17047/17071 17021/17042 +f 17040/17061 17009/17028 17048/17072 +f 17023/17044 5001/17062 17049/17073 +f 17041/17063 17050/17074 17009/17028 +f 17023/17044 17049/17073 17041/17063 +f 17042/17064 17024/17045 17029/17050 +f 17042/17064 17029/17050 17025/17046 +f 17025/17046 17026/17047 17051/17075 +f 17026/17047 17043/17065 17052/17076 +f 17028/17049 17027/17048 17053/17077 +f 17028/17049 17054/17078 17043/17065 +f 17053/17077 17027/17048 17040/17061 +f 17055/17079 17030/17051 17044/17066 +f 17044/17066 17031/17052 17056/17080 +f 17051/17075 17032/17053 17042/17064 +f 17033/17054 17045/17067 17034/17055 +f 17035/17056 17034/17055 4304/17081 +f 17035/17056 17057/17082 17036/17057 +f 4191/17068 17019/17039 4233/17069 +f 4233/17069 17036/17057 4268/17083 +f 17058/17084 17045/17067 17037/17058 +f 17037/17058 17039/17060 17058/17084 +f 17046/17070 17047/17071 17022/17043 +f 17047/17071 17058/17084 17039/17060 +f 17009/17028 17050/17074 17048/17072 +f 17048/17072 17059/17085 17040/17061 +f 5001/17062 17060/17086 17049/17073 +f 17041/17063 17061/17087 17050/17074 +f 17041/17063 17049/17073 17062/17088 +f 17025/17046 17051/17075 17042/17064 +f 17052/17076 17051/17075 17026/17047 +f 17043/17065 17054/17078 17052/17076 +f 17028/17049 17053/17077 17054/17078 +f 17063/17089 17053/17077 17040/17061 +f 17055/17079 17044/17066 17056/17080 +f 17064/17090 17030/17051 17055/17079 +f 17051/17075 17065/17091 17032/17053 +f 17066/17092 17034/17055 17045/17067 +f 17066/17092 4304/17081 17034/17055 +f 4304/17081 17057/17082 17035/17056 +f 4268/17083 17036/17057 17057/17082 +f 17066/17092 17045/17067 17058/17084 +f 17058/17084 17047/17071 17046/17070 +f 17050/17074 17067/17093 17048/17072 +f 17059/17085 17048/17072 17067/17093 +f 17068/17094 17040/17061 17059/17085 +f 17060/17086 17069/17095 17049/17073 +f 5001/17062 4936/17096 17060/17086 +f 17062/17088 17061/17087 17041/17063 +f 17050/17074 17061/17087 17070/17097 +f 17062/17088 17049/17073 17071/17098 +f 17052/17076 17072/17099 17051/17075 +f 17073/17100 17052/17076 17054/17078 +f 17054/17078 17053/17077 17074/17101 +f 17063/17089 17075/17102 17053/17077 +f 17068/17094 17063/17089 17040/17061 +f 17056/17080 17076/17103 17055/17079 +f 17064/17090 17055/17079 17077/17104 +f 17078/17105 17065/17091 17051/17075 +f 4330/17106 4304/17081 17066/17092 +f 4268/17083 17057/17082 4304/17081 +f 17058/17084 17079/17107 17066/17092 +f 17046/17070 17079/17107 17058/17084 +f 17050/17074 17080/17108 17067/17093 +f 17059/17085 17067/17093 17081/17109 +f 17059/17085 17082/17110 17068/17094 +f 17083/17111 17069/17095 17060/17086 +f 17049/17073 17069/17095 17071/17098 +f 5000/17112 17060/17086 4936/17096 +f 17061/17087 17062/17088 17084/17113 +f 17070/17097 17061/17087 17085/17114 +f 17050/17074 17070/17097 17086/17115 +f 17062/17088 17071/17098 17084/17113 +f 17073/17100 17072/17099 17052/17076 +f 17087/17116 17051/17075 17072/17099 +f 17074/17101 17073/17100 17054/17078 +f 17075/17102 17074/17101 17053/17077 +f 17063/17089 17074/17101 17075/17102 +f 17068/17094 17074/17101 17063/17089 +f 17065/17091 17076/17103 17056/17080 +f 17077/17104 17055/17079 17076/17103 +f 17088/17117 17064/17090 17077/17104 +f 17078/17105 17076/17103 17065/17091 +f 17078/17105 17051/17075 17087/17116 +f 4330/17106 17066/17092 17079/17107 +f 17086/17115 17080/17108 17050/17074 +f 17080/17108 17081/17109 17067/17093 +f 17082/17110 17059/17085 17081/17109 +f 17068/17094 17082/17110 17074/17101 +f 17083/17111 17089/17118 17069/17095 +f 17060/17086 5000/17112 17083/17111 +f 17069/17095 17090/17119 17071/17098 +f 17091/17120 17061/17087 17084/17113 +f 17070/17097 17085/17114 17092/17121 +f 17091/17120 17085/17114 17061/17087 +f 17086/17115 17070/17097 17092/17121 +f 17071/17098 17090/17119 17084/17113 +f 17073/17100 17093/17122 17072/17099 +f 17093/17122 17087/17116 17072/17099 +f 17094/17123 17073/17100 17074/17101 +f 17095/17124 17077/17104 17076/17103 +f 17077/17104 17095/17124 17088/17117 +f 17078/17105 17096/17125 17076/17103 +f 17097/17126 17078/17105 17087/17116 +f 17080/17108 17086/17115 17098/17127 +f 17080/17108 17099/17128 17081/17109 +f 17081/17109 17100/17129 17082/17110 +f 17074/17101 17082/17110 17094/17123 +f 17083/17111 4978/17130 17089/17118 +f 17090/17119 17069/17095 17089/17118 +f 4978/17130 17083/17111 5000/17112 +f 17101/17131 17091/17120 17084/17113 +f 17092/17121 17085/17114 17102/17132 +f 17091/17120 17103/17133 17085/17114 +f 17092/17121 17098/17127 17086/17115 +f 17104/17134 17084/17113 17090/17119 +f 17093/17122 17073/17100 17094/17123 +f 17093/17122 17097/17126 17087/17116 +f 17096/17125 17095/17124 17076/17103 +f 17105/17135 17088/17117 17095/17124 +f 17096/17125 17078/17105 17106/17136 +f 17078/17105 17097/17126 17106/17136 +f 17080/17108 17098/17127 17099/17128 +f 17081/17109 17099/17128 17100/17129 +f 17100/17129 17094/17123 17082/17110 +f 4978/17130 5020/17137 17089/17118 +f 17089/17118 17107/17138 17090/17119 +f 17101/17131 17103/17133 17091/17120 +f 5133/17139 17101/17131 17084/17113 +f 17085/17114 17108/17140 17102/17132 +f 17092/17121 17102/17132 17109/17141 +f 17103/17133 17108/17140 17085/17114 +f 17098/17127 17092/17121 17109/17141 +f 17104/17134 17090/17119 17110/17142 +f 17111/17143 17084/17113 17104/17134 +f 17094/17123 17112/17144 17093/17122 +f 17097/17126 17093/17122 17113/17145 +f 17095/17124 17096/17125 17114/17146 +f 17105/17135 17115/17147 17088/17117 +f 17105/17135 17095/17124 17114/17146 +f 17106/17136 17114/17146 17096/17125 +f 17116/17148 17106/17136 17097/17126 +f 17099/17128 17098/17127 17117/17149 +f 17100/17129 17099/17128 17118/17150 +f 17094/17123 17100/17129 17112/17144 +f 17107/17138 17089/17118 5020/17137 +f 17107/17138 17110/17142 17090/17119 +f 17103/17133 17101/17131 17119/17151 +f 17084/17113 17111/17143 5133/17139 +f 17101/17131 5133/17139 17119/17151 +f 17120/17152 17102/17132 17108/17140 +f 17102/17132 17120/17152 17109/17141 +f 17108/17140 17103/17133 17121/17153 +f 17109/17141 17117/17149 17098/17127 +f 17111/17143 17104/17134 17110/17142 +f 17113/17145 17093/17122 17112/17144 +f 17097/17126 17113/17145 17122/17154 +f 17123/17155 17115/17147 17105/17135 +f 17123/17155 17105/17135 17114/17146 +f 17114/17146 17106/17136 17123/17155 +f 17097/17126 17122/17154 17116/17148 +f 17106/17136 17116/17148 17124/17156 +f 17117/17149 17118/17150 17099/17128 +f 17118/17150 17125/17157 17100/17129 +f 17112/17144 17100/17129 17125/17157 +f 17107/17138 5020/17137 5061/17158 +f 5092/17159 17110/17142 17107/17138 +f 17126/17160 17103/17133 17119/17151 +f 17111/17143 17110/17142 5133/17139 +f 5133/17139 5206/17161 17119/17151 +f 17121/17153 17120/17152 17108/17140 +f 17109/17141 17120/17152 17127/17162 +f 17121/17153 17103/17133 17126/17160 +f 17127/17162 17117/17149 17109/17141 +f 17112/17144 17125/17157 17113/17145 +f 17113/17145 17128/17163 17122/17154 +f 17129/17164 17115/17147 17123/17155 +f 17123/17155 17106/17136 17130/17165 +f 17131/17166 17116/17148 17122/17154 +f 17124/17156 17116/17148 17132/17167 +f 17130/17165 17106/17136 17124/17156 +f 17127/17162 17118/17150 17117/17149 +f 17118/17150 17127/17162 17125/17157 +f 5092/17159 17107/17138 5061/17158 +f 17110/17142 5092/17159 5133/17139 +f 17133/17168 17126/17160 17119/17151 +f 17119/17151 5206/17161 17133/17168 +f 17134/17169 17120/17152 17121/17153 +f 17134/17169 17127/17162 17120/17152 +f 17135/17170 17121/17153 17126/17160 +f 17125/17157 17128/17163 17113/17145 +f 17128/17163 17136/17171 17122/17154 +f 17137/17172 17129/17164 17123/17155 +f 17130/17165 17138/17173 17123/17155 +f 17131/17166 17132/17167 17116/17148 +f 17122/17154 17136/17171 17131/17166 +f 17132/17167 17139/17174 17124/17156 +f 17124/17156 17138/17173 17130/17165 +f 17127/17162 17140/17175 17125/17157 +f 17126/17160 17133/17168 5232/17176 +f 17133/17168 5206/17161 5232/17176 +f 17121/17153 17135/17170 17134/17169 +f 17127/17162 17134/17169 17140/17175 +f 17126/17160 17141/17177 17135/17170 +f 17142/17178 17128/17163 17125/17157 +f 17128/17163 17142/17178 17136/17171 +f 17143/17179 17129/17164 17137/17172 +f 17138/17173 17137/17172 17123/17155 +f 17144/17180 17132/17167 17131/17166 +f 17144/17180 17131/17166 17136/17171 +f 17132/17167 17144/17180 17139/17174 +f 17139/17174 17138/17173 17124/17156 +f 17125/17157 17140/17175 17142/17178 +f 17126/17160 5232/17176 17145/17181 +f 17134/17169 17135/17170 17146/17182 +f 17147/17183 17140/17175 17134/17169 +f 17145/17181 17141/17177 17126/17160 +f 17141/17177 17145/17181 17135/17170 +f 17142/17178 17148/17184 17136/17171 +f 17149/17185 17143/17179 17137/17172 +f 17137/17172 17138/17173 17149/17185 +f 17150/17186 17144/17180 17136/17171 +f 17139/17174 17144/17180 17151/17187 +f 17149/17185 17138/17173 17139/17174 +f 17147/17183 17142/17178 17140/17175 +f 17145/17181 5232/17176 5254/17188 +f 17146/17182 17147/17183 17134/17169 +f 17145/17181 17146/17182 17135/17170 +f 17148/17184 17142/17178 17147/17183 +f 17148/17184 17152/17189 17136/17171 +f 17153/17190 17143/17179 17149/17185 +f 17151/17187 17144/17180 17150/17186 +f 17152/17189 17150/17186 17136/17171 +f 17151/17187 17154/17191 17139/17174 +f 17139/17174 17154/17191 17149/17185 +f 17155/17192 17145/17181 5254/17188 +f 17146/17182 17148/17184 17147/17183 +f 17145/17181 17155/17192 17146/17182 +f 17152/17189 17148/17184 17156/17193 +f 17153/17190 17157/17194 17143/17179 +f 17154/17191 17153/17190 17149/17185 +f 17150/17186 17158/17195 17151/17187 +f 17152/17189 17158/17195 17150/17186 +f 17154/17191 17151/17187 17158/17195 +f 5291/17196 17155/17192 5254/17188 +f 17148/17184 17146/17182 17159/17197 +f 17160/17198 17146/17182 17155/17192 +f 17148/17184 17159/17197 17156/17193 +f 17161/17199 17152/17189 17156/17193 +f 17162/17200 17157/17194 17153/17190 +f 17163/17201 17153/17190 17154/17191 +f 17158/17195 17152/17189 17161/17199 +f 17163/17201 17154/17191 17158/17195 +f 17160/17198 17155/17192 5291/17196 +f 17146/17182 17160/17198 17159/17197 +f 17159/17197 17164/17202 17156/17193 +f 17156/17193 17164/17202 17161/17199 +f 17162/17200 17165/17203 17157/17194 +f 17166/17204 17162/17200 17153/17190 +f 17166/17204 17153/17190 17163/17201 +f 17167/17205 17158/17195 17161/17199 +f 17167/17205 17163/17201 17158/17195 +f 5321/17206 17160/17198 5291/17196 +f 17160/17198 17164/17202 17159/17197 +f 17168/17207 17161/17199 17164/17202 +f 17169/17208 17165/17203 17162/17200 +f 17162/17200 17166/17204 17169/17208 +f 17166/17204 17163/17201 17170/17209 +f 17161/17199 17168/17207 17167/17205 +f 17163/17201 17167/17205 17171/17210 +f 17172/17211 17160/17198 5321/17206 +f 17172/17211 17164/17202 17160/17198 +f 17168/17207 17164/17202 17172/17211 +f 17173/17212 17165/17203 17169/17208 +f 17169/17208 17166/17204 17170/17209 +f 17168/17207 17174/17213 17167/17205 +f 17171/17210 17167/17205 17174/17213 +f 17175/17214 17172/17211 5321/17206 +f 17172/17211 17176/17215 17168/17207 +f 17177/17216 17165/17203 17173/17212 +f 17169/17208 17178/17217 17173/17212 +f 17178/17217 17169/17208 17170/17209 +f 17174/17213 17168/17207 17176/17215 +f 17174/17213 17179/17218 17171/17210 +f 5321/17206 5340/17219 17175/17214 +f 17175/17214 17176/17215 17172/17211 +f 17165/17203 17177/17216 17180/17220 +f 17181/17221 17177/17216 17173/17212 +f 17178/17217 17182/17222 17173/17212 +f 17183/17223 17178/17217 17170/17209 +f 17184/17224 17174/17213 17176/17215 +f 17179/17218 17174/17213 17184/17224 +f 5340/17219 17176/17215 17175/17214 +f 17173/17212 17185/17225 17181/17221 +f 17178/17217 17186/17226 17182/17222 +f 17173/17212 17182/17222 17185/17225 +f 17186/17226 17178/17217 17183/17223 +f 17170/17209 17187/17227 17183/17223 +f 17176/17215 5340/17219 17184/17224 +f 17184/17224 5349/17228 17179/17218 +f 17188/17229 17181/17221 17185/17225 +f 17189/17230 17182/17222 17186/17226 +f 17188/17229 17185/17225 17182/17222 +f 17183/17223 17190/17231 17186/17226 +f 17190/17231 17183/17223 17187/17227 +f 5340/17219 5349/17228 17184/17224 +f 17188/17229 17191/17232 17181/17221 +f 17189/17230 17186/17226 17192/17233 +f 17182/17222 17189/17230 17193/17234 +f 17188/17229 17182/17222 17193/17234 +f 17192/17233 17186/17226 17190/17231 +f 17194/17235 17190/17231 17187/17227 +f 17195/17236 17191/17232 17188/17229 +f 17191/17232 17196/17237 17181/17221 +f 17189/17230 17192/17233 17193/17234 +f 17197/17238 17188/17229 17193/17234 +f 17190/17231 17198/17239 17192/17233 +f 17194/17235 17198/17239 17190/17231 +f 17199/17240 17191/17232 17195/17236 +f 17188/17229 17200/17241 17195/17236 +f 17196/17237 17191/17232 17199/17240 +f 17193/17234 17192/17233 17201/17242 +f 17188/17229 17197/17238 17202/17243 +f 17193/17234 17201/17242 17197/17238 +f 17201/17242 17192/17233 17198/17239 +f 17203/17244 17198/17239 17194/17235 +f 17204/17245 17199/17240 17195/17236 +f 17200/17241 17188/17229 17202/17243 +f 17195/17236 17200/17241 17205/17246 +f 17197/17238 17206/17247 17202/17243 +f 17198/17239 17197/17238 17201/17242 +f 17198/17239 17203/17244 17197/17238 +f 17203/17244 17194/17235 17207/17248 +f 17205/17246 17204/17245 17195/17236 +f 17208/17249 17200/17241 17202/17243 +f 17205/17246 17200/17241 17209/17250 +f 17197/17238 17203/17244 17206/17247 +f 17208/17249 17202/17243 17206/17247 +f 17210/17251 17203/17244 17207/17248 +f 17200/17241 17208/17249 17211/17252 +f 17209/17250 17200/17241 17212/17253 +f 17203/17244 17213/17254 17206/17247 +f 17214/17255 17208/17249 17206/17247 +f 17210/17251 17213/17254 17203/17244 +f 17207/17248 17215/17256 17210/17251 +f 17212/17253 17200/17241 17211/17252 +f 17211/17252 17208/17249 17214/17255 +f 17213/17254 17214/17255 17206/17247 +f 17216/17257 17213/17254 17210/17251 +f 17216/17257 17210/17251 17215/17256 +f 17217/17258 17212/17253 17211/17252 +f 17214/17255 17218/17259 17211/17252 +f 17219/17260 17214/17255 17213/17254 +f 17216/17257 17219/17260 17213/17254 +f 17219/17260 17216/17257 17215/17256 +f 17211/17252 17218/17259 17217/17258 +f 17218/17259 17214/17255 17220/17261 +f 17214/17255 17219/17260 17220/17261 +f 17217/17258 17218/17259 17221/17262 +f 17218/17259 17220/17261 17221/17262 +f 17222/17263 17223/17264 17224/17265 +f 17222/17263 17225/17266 17223/17264 +f 17223/17264 17226/17267 17224/17265 +f 17222/17263 17224/17265 17227/17268 +f 17225/17266 17228/17269 17223/17264 +f 17229/17270 17225/17266 17222/17263 +f 17224/17265 17226/17267 17230/17271 +f 17226/17267 17223/17264 17231/17272 +f 17227/17268 17224/17265 17232/17273 +f 17233/17274 17222/17263 17227/17268 +f 17223/17264 17228/17269 17234/17275 +f 17235/17276 17228/17269 17225/17266 +f 17235/17276 17225/17266 17229/17270 +f 17222/17263 17233/17274 17229/17270 +f 17232/17273 17224/17265 17230/17271 +f 17226/17267 17236/17277 17230/17271 +f 17223/17264 17234/17275 17231/17272 +f 17226/17267 17231/17272 17237/17278 +f 17232/17273 17238/17279 17227/17268 +f 17227/17268 17239/17280 17233/17274 +f 17234/17275 17228/17269 17240/17281 +f 17228/17269 17235/17276 17241/17282 +f 17229/17270 17242/17283 17235/17276 +f 17233/17274 17243/17284 17229/17270 +f 17230/17271 17244/17285 17232/17273 +f 17236/17277 17245/17286 17230/17271 +f 17236/17277 17226/17267 17237/17278 +f 17246/17287 17231/17272 17234/17275 +f 17247/17288 17237/17278 17231/17272 +f 17238/17279 17232/17273 17248/17289 +f 17227/17268 17238/17279 17239/17280 +f 17239/17280 17249/17290 17233/17274 +f 17240/17281 17246/17287 17234/17275 +f 17228/17269 17250/17291 17240/17281 +f 17228/17269 17241/17282 17250/17291 +f 17241/17282 17235/17276 17251/17292 +f 17252/17293 17242/17283 17229/17270 +f 17251/17292 17235/17276 17242/17283 +f 17243/17284 17233/17274 17249/17290 +f 17253/17294 17229/17270 17243/17284 +f 17248/17289 17232/17273 17244/17285 +f 17244/17285 17230/17271 17254/17295 +f 17245/17286 17236/17277 17255/17296 +f 17230/17271 17245/17286 17254/17295 +f 17256/17297 17236/17277 17237/17278 +f 17231/17272 17246/17287 17247/17288 +f 17247/17288 17257/17298 17237/17278 +f 17239/17280 17238/17279 17248/17289 +f 17239/17280 17258/17299 17249/17290 +f 17259/17300 17246/17287 17240/17281 +f 17250/17291 17260/17301 17240/17281 +f 17241/17282 17261/17302 17250/17291 +f 17251/17292 17262/17303 17241/17282 +f 17253/17294 17252/17293 17229/17270 +f 17252/17293 17263/17304 17242/17283 +f 17263/17304 17251/17292 17242/17283 +f 17264/17305 17243/17284 17249/17290 +f 17243/17284 17264/17305 17253/17294 +f 17265/17306 17248/17289 17244/17285 +f 17254/17295 17266/17307 17244/17285 +f 17267/17308 17255/17296 17236/17277 +f 17245/17286 17255/17296 17268/17309 +f 17245/17286 17269/17310 17254/17295 +f 17237/17278 17267/17308 17256/17297 +f 17256/17297 17267/17308 17236/17277 +f 17270/17311 17247/17288 17246/17287 +f 17237/17278 17257/17298 17267/17308 +f 17257/17298 17247/17288 17271/17312 +f 17248/17289 17258/17299 17239/17280 +f 17272/17313 17249/17290 17258/17299 +f 17270/17311 17246/17287 17259/17300 +f 17259/17300 17240/17281 17260/17301 +f 17250/17291 17261/17302 17260/17301 +f 17273/17314 17261/17302 17241/17282 +f 17262/17303 17274/17315 17241/17282 +f 17262/17303 17251/17292 17275/17316 +f 17252/17293 17253/17294 17276/17317 +f 17276/17317 17263/17304 17252/17293 +f 17263/17304 17277/17318 17251/17292 +f 17264/17305 17249/17290 17278/17319 +f 17279/17320 17253/17294 17264/17305 +f 17248/17289 17265/17306 17258/17299 +f 17265/17306 17244/17285 17280/17321 +f 17244/17285 17266/17307 17281/17322 +f 17269/17310 17266/17307 17254/17295 +f 17267/17308 17282/17323 17255/17296 +f 17268/17309 17255/17296 17283/17324 +f 17245/17286 17268/17309 17269/17310 +f 17271/17312 17247/17288 17270/17311 +f 17257/17298 17284/17325 17267/17308 +f 17271/17312 17285/17326 17257/17298 +f 17278/17319 17249/17290 17272/17313 +f 17272/17313 17258/17299 17278/17319 +f 17286/17327 17260/17301 17261/17302 +f 17287/17328 17261/17302 17273/17314 +f 17241/17282 17274/17315 17273/17314 +f 17288/17329 17274/17315 17262/17303 +f 17289/17330 17262/17303 17275/17316 +f 17251/17292 17277/17318 17275/17316 +f 17276/17317 17253/17294 17290/17331 +f 17291/17332 17263/17304 17276/17317 +f 17263/17304 17291/17332 17277/17318 +f 17278/17319 17292/17333 17264/17305 +f 17292/17333 17279/17320 17264/17305 +f 17290/17331 17253/17294 17279/17320 +f 17265/17306 17293/17334 17258/17299 +f 17244/17285 17294/17335 17280/17321 +f 17265/17306 17280/17321 17295/17336 +f 17294/17335 17244/17285 17281/17322 +f 17281/17322 17266/17307 17296/17337 +f 17266/17307 17269/17310 17297/17338 +f 17282/17323 17283/17324 17255/17296 +f 17284/17325 17282/17323 17267/17308 +f 17283/17324 17298/17339 17268/17309 +f 17285/17326 17284/17325 17257/17298 +f 17258/17299 17293/17334 17278/17319 +f 17299/17340 17260/17301 17286/17327 +f 17287/17328 17286/17327 17261/17302 +f 17273/17314 17274/17315 17287/17328 +f 17274/17315 17288/17329 17300/17341 +f 17288/17329 17262/17303 17301/17342 +f 17301/17342 17262/17303 17289/17330 +f 17302/17343 17289/17330 17275/17316 +f 17275/17316 17277/17318 17302/17343 +f 17290/17331 17303/17344 17276/17317 +f 17291/17332 17276/17317 17304/17345 +f 17291/17332 17302/17343 17277/17318 +f 17293/17334 17292/17333 17278/17319 +f 17305/17346 17279/17320 17292/17333 +f 17290/17331 17279/17320 17306/17347 +f 17295/17336 17293/17334 17265/17306 +f 17294/17335 17307/17348 17280/17321 +f 17308/17349 17295/17336 17280/17321 +f 17281/17322 17296/17337 17294/17335 +f 17297/17338 17296/17337 17266/17307 +f 17282/17323 17309/17350 17283/17324 +f 17310/17351 17282/17323 17284/17325 +f 17298/17339 17283/17324 17309/17350 +f 17284/17325 17285/17326 17311/17352 +f 17286/17327 17312/17353 17299/17340 +f 17312/17353 17286/17327 17287/17328 +f 17300/17341 17287/17328 17274/17315 +f 17300/17341 17288/17329 17301/17342 +f 17313/17354 17301/17342 17289/17330 +f 17302/17343 17314/17355 17289/17330 +f 17304/17345 17276/17317 17303/17344 +f 17303/17344 17290/17331 17315/17356 +f 17302/17343 17291/17332 17304/17345 +f 17316/17357 17292/17333 17293/17334 +f 17279/17320 17305/17346 17306/17347 +f 17316/17357 17305/17346 17292/17333 +f 17315/17356 17290/17331 17306/17347 +f 17295/17336 17316/17357 17293/17334 +f 17317/17358 17307/17348 17294/17335 +f 17280/17321 17307/17348 17318/17359 +f 17319/17360 17295/17336 17308/17349 +f 17308/17349 17280/17321 17320/17361 +f 17294/17335 17296/17337 17321/17362 +f 17322/17363 17296/17337 17297/17338 +f 17323/17364 17309/17350 17282/17323 +f 17282/17323 17310/17351 17323/17364 +f 17284/17325 17311/17352 17310/17351 +f 17324/17365 17312/17353 17287/17328 +f 17325/17366 17287/17328 17300/17341 +f 17313/17354 17300/17341 17301/17342 +f 17314/17355 17313/17354 17289/17330 +f 17314/17355 17302/17343 17326/17367 +f 17326/17367 17304/17345 17303/17344 +f 17326/17367 17303/17344 17315/17356 +f 17326/17367 17302/17343 17304/17345 +f 17305/17346 17327/17368 17306/17347 +f 17328/17369 17305/17346 17316/17357 +f 17306/17347 17329/17370 17315/17356 +f 17295/17336 17319/17360 17316/17357 +f 17317/17358 17330/17371 17307/17348 +f 17331/17372 17317/17358 17294/17335 +f 17332/17373 17318/17359 17307/17348 +f 17318/17359 17320/17361 17280/17321 +f 17333/17374 17319/17360 17308/17349 +f 17308/17349 17320/17361 17333/17374 +f 17296/17337 17322/17363 17321/17362 +f 17321/17362 17331/17372 17294/17335 +f 17311/17352 17323/17364 17310/17351 +f 17287/17328 17334/17375 17324/17365 +f 17312/17353 17324/17365 17335/17376 +f 17325/17366 17334/17375 17287/17328 +f 17336/17377 17325/17366 17300/17341 +f 17300/17341 17313/17354 17336/17377 +f 17314/17355 17337/17378 17313/17354 +f 17326/17367 17338/17379 17314/17355 +f 17339/17380 17326/17367 17315/17356 +f 17327/17368 17305/17346 17340/17381 +f 17327/17368 17329/17370 17306/17347 +f 17305/17346 17328/17369 17341/17382 +f 17328/17369 17316/17357 17342/17383 +f 17343/17384 17315/17356 17329/17370 +f 17316/17357 17319/17360 17342/17383 +f 17344/17385 17330/17371 17317/17358 +f 17307/17348 17330/17371 17332/17373 +f 17345/17386 17317/17358 17331/17372 +f 17346/17387 17318/17359 17332/17373 +f 17318/17359 17347/17388 17320/17361 +f 17319/17360 17333/17374 17348/17389 +f 17333/17374 17320/17361 17349/17390 +f 17322/17363 17350/17391 17321/17362 +f 17321/17362 17345/17386 17331/17372 +f 17351/17392 17324/17365 17334/17375 +f 17324/17365 17352/17393 17335/17376 +f 17336/17377 17334/17375 17325/17366 +f 17336/17377 17313/17354 17337/17378 +f 17353/17394 17337/17378 17314/17355 +f 17354/17395 17338/17379 17326/17367 +f 17314/17355 17338/17379 17353/17394 +f 17315/17356 17343/17384 17339/17380 +f 17354/17395 17326/17367 17339/17380 +f 17355/17396 17340/17381 17305/17346 +f 17327/17368 17340/17381 17356/17397 +f 17329/17370 17327/17368 17357/17398 +f 17341/17382 17328/17369 17342/17383 +f 17305/17346 17341/17382 17358/17399 +f 17357/17398 17343/17384 17329/17370 +f 17319/17360 17359/17400 17342/17383 +f 17317/17358 17360/17401 17344/17385 +f 17344/17385 17361/17402 17330/17371 +f 17330/17371 17361/17402 17332/17373 +f 17317/17358 17345/17386 17362/17403 +f 17332/17373 17363/17404 17346/17387 +f 17318/17359 17346/17387 17347/17388 +f 17320/17361 17347/17388 17349/17390 +f 17349/17390 17348/17389 17333/17374 +f 17348/17389 17364/17405 17319/17360 +f 17321/17362 17350/17391 17345/17386 +f 17352/17393 17324/17365 17351/17392 +f 17351/17392 17334/17375 17365/17406 +f 17335/17376 17352/17393 17366/17407 +f 17334/17375 17336/17377 17353/17394 +f 17353/17394 17336/17377 17337/17378 +f 17354/17395 17367/17408 17338/17379 +f 17353/17394 17338/17379 17368/17409 +f 17343/17384 17369/17410 17339/17380 +f 17367/17408 17354/17395 17339/17380 +f 17370/17411 17340/17381 17355/17396 +f 17305/17346 17358/17399 17355/17396 +f 17356/17397 17357/17398 17327/17368 +f 17340/17381 17371/17412 17356/17397 +f 17372/17413 17341/17382 17342/17383 +f 17341/17382 17372/17413 17358/17399 +f 17373/17414 17343/17384 17357/17398 +f 17359/17400 17319/17360 17364/17405 +f 17374/17415 17342/17383 17359/17400 +f 17375/17416 17344/17385 17360/17401 +f 17360/17401 17317/17358 17362/17403 +f 17361/17402 17344/17385 17375/17416 +f 17332/17373 17361/17402 17376/17417 +f 17362/17403 17345/17386 17377/17418 +f 17332/17373 17378/17419 17363/17404 +f 17346/17387 17363/17404 17379/17420 +f 17380/17421 17347/17388 17346/17387 +f 17347/17388 17381/17422 17349/17390 +f 17349/17390 17382/17423 17348/17389 +f 17364/17405 17348/17389 17382/17423 +f 17377/17418 17345/17386 17350/17391 +f 17366/17407 17352/17393 17351/17392 +f 17365/17406 17334/17375 17383/17424 +f 17365/17406 17384/17425 17351/17392 +f 17366/17407 17385/17426 17335/17376 +f 17353/17394 17383/17424 17334/17375 +f 17338/17379 17367/17408 17368/17409 +f 17368/17409 17386/17427 17353/17394 +f 17369/17410 17343/17384 17387/17428 +f 17369/17410 17388/17429 17339/17380 +f 17388/17429 17367/17408 17339/17380 +f 17355/17396 17389/17430 17370/17411 +f 17370/17411 17390/17431 17340/17381 +f 17355/17396 17358/17399 17391/17432 +f 17373/17414 17357/17398 17356/17397 +f 17356/17397 17371/17412 17373/17414 +f 17371/17412 17340/17381 17390/17431 +f 17392/17433 17372/17413 17342/17383 +f 17358/17399 17372/17413 17393/17434 +f 17387/17428 17343/17384 17373/17414 +f 17394/17435 17359/17400 17364/17405 +f 17392/17433 17342/17383 17374/17415 +f 17359/17400 17395/17436 17374/17415 +f 17360/17401 17396/17437 17375/17416 +f 17360/17401 17362/17403 17397/17438 +f 17361/17402 17375/17416 17398/17439 +f 17376/17417 17378/17419 17332/17373 +f 17361/17402 17399/17440 17376/17417 +f 17362/17403 17377/17418 17397/17438 +f 17376/17417 17363/17404 17378/17419 +f 17346/17387 17379/17420 17380/17421 +f 17400/17441 17379/17420 17363/17404 +f 17381/17422 17347/17388 17380/17421 +f 17349/17390 17381/17422 17401/17442 +f 17401/17442 17382/17423 17349/17390 +f 17364/17405 17382/17423 17402/17443 +f 17403/17444 17377/17418 17350/17391 +f 17384/17425 17366/17407 17351/17392 +f 17365/17406 17383/17424 17404/17445 +f 17365/17406 17405/17446 17384/17425 +f 17385/17426 17366/17407 17406/17447 +f 17407/17448 17383/17424 17353/17394 +f 17367/17408 17408/17449 17368/17409 +f 17368/17409 17409/17450 17386/17427 +f 17386/17427 17407/17448 17353/17394 +f 17410/17451 17369/17410 17387/17428 +f 17410/17451 17388/17429 17369/17410 +f 17388/17429 17411/17452 17367/17408 +f 17391/17432 17389/17430 17355/17396 +f 17370/17411 17389/17430 17412/17453 +f 17390/17431 17370/17411 17413/17454 +f 17358/17399 17393/17434 17391/17432 +f 17387/17428 17373/17414 17371/17412 +f 17371/17412 17390/17431 17414/17455 +f 17372/17413 17392/17433 17415/17456 +f 17372/17413 17416/17457 17393/17434 +f 17394/17435 17395/17436 17359/17400 +f 17394/17435 17364/17405 17402/17443 +f 17415/17456 17392/17433 17374/17415 +f 17395/17436 17415/17456 17374/17415 +f 17396/17437 17360/17401 17417/17458 +f 17418/17459 17375/17416 17396/17437 +f 17417/17458 17360/17401 17397/17438 +f 17375/17416 17418/17459 17398/17439 +f 17399/17440 17361/17402 17398/17439 +f 17376/17417 17399/17440 17400/17441 +f 17377/17418 17419/17460 17397/17438 +f 17400/17441 17363/17404 17376/17417 +f 17380/17421 17379/17420 17420/17461 +f 17420/17461 17379/17420 17400/17441 +f 17421/17462 17381/17422 17380/17421 +f 17422/17463 17401/17442 17381/17422 +f 17401/17442 17423/17464 17382/17423 +f 17382/17423 17424/17465 17402/17443 +f 17377/17418 17403/17444 17419/17460 +f 17366/17407 17384/17425 17406/17447 +f 17365/17406 17404/17445 17405/17446 +f 17404/17445 17383/17424 17425/17466 +f 17405/17446 17426/17467 17384/17425 +f 17427/17468 17385/17426 17406/17447 +f 17407/17448 17425/17466 17383/17424 +f 17411/17452 17408/17449 17367/17408 +f 17368/17409 17408/17449 17428/17469 +f 17409/17450 17368/17409 17429/17470 +f 17409/17450 17430/17471 17386/17427 +f 17407/17448 17386/17427 17430/17471 +f 17371/17412 17410/17451 17387/17428 +f 17388/17429 17410/17451 17431/17472 +f 17431/17472 17411/17452 17388/17429 +f 17412/17453 17389/17430 17391/17432 +f 17412/17453 17432/17473 17370/17411 +f 17414/17455 17390/17431 17413/17454 +f 17370/17411 17432/17473 17413/17454 +f 17391/17432 17393/17434 17433/17474 +f 17414/17455 17434/17475 17371/17412 +f 17416/17457 17372/17413 17415/17456 +f 17416/17457 17435/17476 17393/17434 +f 17395/17436 17394/17435 17436/17477 +f 17402/17443 17424/17465 17394/17435 +f 17395/17436 17437/17478 17415/17456 +f 17397/17438 17438/17479 17417/17458 +f 17398/17439 17418/17459 17439/17480 +f 17399/17440 17398/17439 17400/17441 +f 17419/17460 17440/17481 17397/17438 +f 17420/17461 17441/17482 17380/17421 +f 17400/17441 17442/17483 17420/17461 +f 17421/17462 17422/17463 17381/17422 +f 17441/17482 17421/17462 17380/17421 +f 17423/17464 17401/17442 17422/17463 +f 17382/17423 17423/17464 17424/17465 +f 17443/17484 17419/17460 17403/17444 +f 17406/17447 17384/17425 17444/17485 +f 17404/17445 17445/17486 17405/17446 +f 17404/17445 17425/17466 17446/17487 +f 17426/17467 17405/17446 17447/17488 +f 17444/17485 17384/17425 17426/17467 +f 17427/17468 17406/17447 17448/17489 +f 17425/17466 17407/17448 17430/17471 +f 17411/17452 17449/17490 17408/17449 +f 17429/17470 17368/17409 17428/17469 +f 17450/17491 17428/17469 17408/17449 +f 17429/17470 17451/17492 17409/17450 +f 17409/17450 17451/17492 17430/17471 +f 17434/17475 17410/17451 17371/17412 +f 17410/17451 17452/17493 17431/17472 +f 17431/17472 17453/17494 17411/17452 +f 17391/17432 17454/17495 17412/17453 +f 17455/17496 17432/17473 17412/17453 +f 17456/17497 17414/17455 17413/17454 +f 17432/17473 17457/17498 17413/17454 +f 17391/17432 17433/17474 17454/17495 +f 17433/17474 17393/17434 17435/17476 +f 17414/17455 17458/17499 17434/17475 +f 17459/17500 17416/17457 17415/17456 +f 17416/17457 17459/17500 17435/17476 +f 17394/17435 17424/17465 17436/17477 +f 17460/17501 17395/17436 17436/17477 +f 17437/17478 17459/17500 17415/17456 +f 17437/17478 17395/17436 17460/17501 +f 17438/17479 17397/17438 17461/17502 +f 17462/17503 17417/17458 17438/17479 +f 17398/17439 17439/17480 17400/17441 +f 17419/17460 17443/17484 17440/17481 +f 17461/17502 17397/17438 17440/17481 +f 17420/17461 17463/17504 17441/17482 +f 17420/17461 17442/17483 17463/17504 +f 17439/17480 17442/17483 17400/17441 +f 17422/17463 17421/17462 17441/17482 +f 17422/17463 17464/17505 17423/17464 +f 17423/17464 17464/17505 17424/17465 +f 17403/17444 17465/17506 17443/17484 +f 17448/17489 17406/17447 17444/17485 +f 17404/17445 17466/17507 17445/17486 +f 17445/17486 17447/17488 17405/17446 +f 17446/17487 17425/17466 17467/17508 +f 17446/17487 17466/17507 17404/17445 +f 17426/17467 17447/17488 17468/17509 +f 17469/17510 17444/17485 17426/17467 +f 17448/17489 17470/17511 17427/17468 +f 17430/17471 17467/17508 17425/17466 +f 17449/17490 17450/17491 17408/17449 +f 17449/17490 17411/17452 17453/17494 +f 17428/17469 17471/17512 17429/17470 +f 17472/17513 17428/17469 17450/17491 +f 17473/17514 17451/17492 17429/17470 +f 17451/17492 17474/17515 17430/17471 +f 17452/17493 17410/17451 17434/17475 +f 17452/17493 17475/17516 17431/17472 +f 17431/17472 17475/17516 17453/17494 +f 17412/17453 17454/17495 17455/17496 +f 17455/17496 17476/17517 17432/17473 +f 17457/17498 17456/17497 17413/17454 +f 17456/17497 17477/17518 17414/17455 +f 17432/17473 17476/17517 17457/17498 +f 17433/17474 17478/17519 17454/17495 +f 17435/17476 17478/17519 17433/17474 +f 17479/17520 17458/17499 17414/17455 +f 17434/17475 17458/17499 17480/17521 +f 17435/17476 17459/17500 17481/17522 +f 17424/17465 17482/17523 17436/17477 +f 17436/17477 17483/17524 17460/17501 +f 17484/17525 17459/17500 17437/17478 +f 17485/17526 17437/17478 17460/17501 +f 17486/17527 17438/17479 17461/17502 +f 17438/17479 17487/17528 17462/17503 +f 17461/17502 17440/17481 17443/17484 +f 17441/17482 17463/17504 17488/17529 +f 17489/17530 17463/17504 17442/17483 +f 17442/17483 17439/17480 17490/17531 +f 17491/17532 17422/17463 17441/17482 +f 17422/17463 17492/17533 17464/17505 +f 17482/17523 17424/17465 17464/17505 +f 17465/17506 17403/17444 17493/17534 +f 17461/17502 17443/17484 17465/17506 +f 17469/17510 17448/17489 17444/17485 +f 17466/17507 17447/17488 17445/17486 +f 17446/17487 17467/17508 17494/17535 +f 17466/17507 17446/17487 17495/17536 +f 17447/17488 17496/17537 17468/17509 +f 17426/17467 17468/17509 17497/17538 +f 17426/17467 17498/17539 17469/17510 +f 17499/17540 17470/17511 17448/17489 +f 17500/17541 17427/17468 17470/17511 +f 17474/17515 17467/17508 17430/17471 +f 17449/17490 17501/17542 17450/17491 +f 17453/17494 17502/17543 17449/17490 +f 17471/17512 17503/17544 17429/17470 +f 17471/17512 17428/17469 17504/17545 +f 17472/17513 17504/17545 17428/17469 +f 17472/17513 17450/17491 17505/17546 +f 17429/17470 17506/17547 17473/17514 +f 17474/17515 17451/17492 17473/17514 +f 17480/17521 17452/17493 17434/17475 +f 17452/17493 17480/17521 17475/17516 +f 17475/17516 17507/17548 17453/17494 +f 17454/17495 17478/17519 17455/17496 +f 17508/17549 17476/17517 17455/17496 +f 17456/17497 17457/17498 17509/17550 +f 17414/17455 17477/17518 17479/17520 +f 17456/17497 17509/17550 17477/17518 +f 17510/17551 17457/17498 17476/17517 +f 17435/17476 17511/17552 17478/17519 +f 17479/17520 17512/17553 17458/17499 +f 17480/17521 17458/17499 17513/17554 +f 17481/17522 17459/17500 17484/17525 +f 17435/17476 17481/17522 17514/17555 +f 17482/17523 17515/17556 17436/17477 +f 17515/17556 17483/17524 17436/17477 +f 17483/17524 17516/17557 17460/17501 +f 17484/17525 17437/17478 17485/17526 +f 17485/17526 17460/17501 17517/17558 +f 17486/17527 17487/17528 17438/17479 +f 17465/17506 17486/17527 17461/17502 +f 17487/17528 17518/17559 17462/17503 +f 17463/17504 17489/17530 17488/17529 +f 17488/17529 17519/17560 17441/17482 +f 17520/17561 17489/17530 17442/17483 +f 17490/17531 17521/17562 17442/17483 +f 17522/17563 17490/17531 17439/17480 +f 17492/17533 17422/17463 17491/17532 +f 17441/17482 17519/17560 17491/17532 +f 17492/17533 17523/17564 17464/17505 +f 17464/17505 17523/17564 17482/17523 +f 17493/17534 17524/17565 17465/17506 +f 17448/17489 17469/17510 17499/17540 +f 17496/17537 17447/17488 17466/17507 +f 17494/17535 17467/17508 17525/17566 +f 17494/17535 17495/17536 17446/17487 +f 17495/17536 17526/17567 17466/17507 +f 17468/17509 17496/17537 17527/17568 +f 17528/17569 17497/17538 17468/17509 +f 17426/17467 17497/17538 17498/17539 +f 17498/17539 17529/17570 17469/17510 +f 17470/17511 17499/17540 17530/17571 +f 17470/17511 17531/17572 17500/17541 +f 17474/17515 17532/17573 17467/17508 +f 17501/17542 17449/17490 17502/17543 +f 17450/17491 17501/17542 17533/17574 +f 17507/17548 17502/17543 17453/17494 +f 17503/17544 17471/17512 17534/17575 +f 17503/17544 17506/17547 17429/17470 +f 17535/17576 17471/17512 17504/17545 +f 17536/17577 17504/17545 17472/17513 +f 17450/17491 17533/17574 17505/17546 +f 17505/17546 17536/17577 17472/17513 +f 17473/17514 17506/17547 17537/17578 +f 17538/17579 17474/17515 17473/17514 +f 17475/17516 17480/17521 17513/17554 +f 17507/17548 17475/17516 17539/17580 +f 17478/17519 17540/17581 17455/17496 +f 17540/17581 17508/17549 17455/17496 +f 17476/17517 17508/17549 17510/17551 +f 17510/17551 17509/17550 17457/17498 +f 17541/17582 17479/17520 17477/17518 +f 17477/17518 17509/17550 17542/17583 +f 17514/17555 17511/17552 17435/17476 +f 17511/17552 17540/17581 17478/17519 +f 17512/17553 17513/17554 17458/17499 +f 17512/17553 17479/17520 17543/17584 +f 17544/17585 17481/17522 17484/17525 +f 17481/17522 17545/17586 17514/17555 +f 17515/17556 17482/17523 17523/17564 +f 17483/17524 17515/17556 17546/17587 +f 17517/17558 17460/17501 17516/17557 +f 17483/17524 17547/17588 17516/17557 +f 17485/17526 17548/17589 17484/17525 +f 17517/17558 17549/17590 17485/17526 +f 17550/17591 17487/17528 17486/17527 +f 17486/17527 17465/17506 17550/17591 +f 17550/17591 17518/17559 17487/17528 +f 17488/17529 17489/17530 17551/17592 +f 17488/17529 17551/17592 17519/17560 +f 17489/17530 17520/17561 17552/17593 +f 17521/17562 17520/17561 17442/17483 +f 17553/17594 17521/17562 17490/17531 +f 17490/17531 17522/17563 17553/17594 +f 17522/17563 17439/17480 17554/17595 +f 17492/17533 17491/17532 17555/17596 +f 17491/17532 17519/17560 17555/17596 +f 17556/17597 17523/17564 17492/17533 +f 17524/17565 17557/17598 17465/17506 +f 17558/17599 17524/17565 17493/17534 +f 17469/17510 17529/17570 17499/17540 +f 17526/17567 17496/17537 17466/17507 +f 17525/17566 17467/17508 17532/17573 +f 17525/17566 17559/17600 17494/17535 +f 17559/17600 17495/17536 17494/17535 +f 17560/17601 17526/17567 17495/17536 +f 17496/17537 17526/17567 17527/17568 +f 17527/17568 17561/17602 17468/17509 +f 17562/17603 17497/17538 17528/17569 +f 17468/17509 17563/17604 17528/17569 +f 17498/17539 17497/17538 17564/17605 +f 17529/17570 17498/17539 17564/17605 +f 17530/17571 17499/17540 17529/17570 +f 17531/17572 17470/17511 17530/17571 +f 17565/17606 17532/17573 17474/17515 +f 17501/17542 17502/17543 17566/17607 +f 17566/17607 17533/17574 17501/17542 +f 17507/17548 17567/17608 17502/17543 +f 17568/17609 17503/17544 17534/17575 +f 17534/17575 17471/17512 17569/17610 +f 17503/17544 17537/17578 17506/17547 +f 17471/17512 17535/17576 17569/17610 +f 17504/17545 17570/17611 17535/17576 +f 17504/17545 17536/17577 17570/17611 +f 17533/17574 17571/17612 17505/17546 +f 17572/17613 17536/17577 17505/17546 +f 17473/17514 17537/17578 17565/17606 +f 17474/17515 17538/17579 17565/17606 +f 17565/17606 17538/17579 17473/17514 +f 17513/17554 17573/17614 17475/17516 +f 17574/17615 17539/17580 17475/17516 +f 17507/17548 17539/17580 17567/17608 +f 17575/17616 17508/17549 17540/17581 +f 17510/17551 17508/17549 17576/17617 +f 17510/17551 17576/17617 17509/17550 +f 17541/17582 17477/17518 17577/17618 +f 17543/17584 17479/17520 17541/17582 +f 17576/17617 17542/17583 17509/17550 +f 17577/17618 17477/17518 17542/17583 +f 17578/17619 17511/17552 17514/17555 +f 17578/17619 17540/17581 17511/17552 +f 17513/17554 17512/17553 17579/17620 +f 17543/17584 17580/17621 17512/17553 +f 17545/17586 17481/17522 17544/17585 +f 17544/17585 17484/17525 17581/17622 +f 17545/17586 17582/17623 17514/17555 +f 17523/17564 17546/17587 17515/17556 +f 17483/17524 17546/17587 17547/17588 +f 17517/17558 17516/17557 17549/17590 +f 17516/17557 17547/17588 17583/17624 +f 17484/17525 17548/17589 17584/17625 +f 17549/17590 17548/17589 17485/17526 +f 17550/17591 17465/17506 17557/17598 +f 17585/17626 17518/17559 17550/17591 +f 17489/17530 17586/17627 17551/17592 +f 17551/17592 17587/17628 17519/17560 +f 17553/17594 17552/17593 17520/17561 +f 17552/17593 17588/17629 17489/17530 +f 17521/17562 17553/17594 17520/17561 +f 17589/17630 17553/17594 17522/17563 +f 17590/17631 17522/17563 17554/17595 +f 17492/17533 17555/17596 17556/17597 +f 17555/17596 17519/17560 17591/17632 +f 17592/17633 17523/17564 17556/17597 +f 17558/17599 17557/17598 17524/17565 +f 17532/17573 17593/17634 17525/17566 +f 17559/17600 17525/17566 17594/17635 +f 17559/17600 17595/17636 17495/17536 +f 17527/17568 17526/17567 17560/17601 +f 17595/17636 17560/17601 17495/17536 +f 17596/17637 17561/17602 17527/17568 +f 17468/17509 17561/17602 17563/17604 +f 17497/17538 17562/17603 17597/17638 +f 17528/17569 17598/17639 17562/17603 +f 17598/17639 17528/17569 17563/17604 +f 17599/17640 17564/17605 17497/17538 +f 17600/17641 17529/17570 17564/17605 +f 17529/17570 17600/17641 17530/17571 +f 17530/17571 17601/17642 17531/17572 +f 17602/17643 17532/17573 17565/17606 +f 17566/17607 17502/17543 17603/17644 +f 17604/17645 17533/17574 17566/17607 +f 17502/17543 17567/17608 17605/17646 +f 17537/17578 17503/17544 17568/17609 +f 17568/17609 17534/17575 17606/17647 +f 17534/17575 17569/17610 17607/17648 +f 17535/17576 17608/17649 17569/17610 +f 17535/17576 17570/17611 17609/17650 +f 17536/17577 17610/17651 17570/17611 +f 17611/17652 17571/17612 17533/17574 +f 17571/17612 17572/17613 17505/17546 +f 17536/17577 17572/17613 17612/17653 +f 17537/17578 17606/17647 17565/17606 +f 17579/17620 17573/17614 17513/17554 +f 17475/17516 17573/17614 17574/17615 +f 17574/17615 17567/17608 17539/17580 +f 17613/17654 17508/17549 17575/17616 +f 17540/17581 17578/17619 17575/17616 +f 17613/17654 17576/17617 17508/17549 +f 17541/17582 17577/17618 17543/17584 +f 17577/17618 17542/17583 17576/17617 +f 17614/17655 17578/17619 17514/17555 +f 17512/17553 17615/17656 17579/17620 +f 17615/17656 17512/17553 17580/17621 +f 17543/17584 17616/17657 17580/17621 +f 17617/17658 17545/17586 17544/17585 +f 17618/17659 17544/17585 17581/17622 +f 17484/17525 17584/17625 17581/17622 +f 17545/17586 17617/17658 17582/17623 +f 17514/17555 17582/17623 17614/17655 +f 17619/17660 17546/17587 17523/17564 +f 17619/17660 17547/17588 17546/17587 +f 17583/17624 17549/17590 17516/17557 +f 17583/17624 17547/17588 17620/17661 +f 17621/17662 17584/17625 17548/17589 +f 17548/17589 17549/17590 17621/17662 +f 17557/17598 17622/17663 17550/17591 +f 17622/17663 17585/17626 17550/17591 +f 17623/17664 17518/17559 17585/17626 +f 17489/17530 17588/17629 17586/17627 +f 17586/17627 17624/17665 17551/17592 +f 17551/17592 17624/17665 17587/17628 +f 17519/17560 17587/17628 17591/17632 +f 17553/17594 17625/17666 17552/17593 +f 17588/17629 17552/17593 17626/17667 +f 17589/17630 17522/17563 17590/17631 +f 17589/17630 17625/17666 17553/17594 +f 17590/17631 17554/17595 17627/17668 +f 17555/17596 17628/17669 17556/17597 +f 17555/17596 17591/17632 17628/17669 +f 17523/17564 17592/17633 17619/17660 +f 17628/17669 17592/17633 17556/17597 +f 17557/17598 17558/17599 17629/17670 +f 17593/17634 17532/17573 17602/17643 +f 17630/17671 17525/17566 17593/17634 +f 17630/17671 17594/17635 17525/17566 +f 17595/17636 17559/17600 17594/17635 +f 17596/17637 17527/17568 17560/17601 +f 17631/17672 17560/17601 17595/17636 +f 17596/17637 17632/17673 17561/17602 +f 17561/17602 17633/17674 17563/17604 +f 17634/17675 17597/17638 17562/17603 +f 17599/17640 17497/17538 17597/17638 +f 17562/17603 17598/17639 17634/17675 +f 17563/17604 17635/17676 17598/17639 +f 17564/17605 17599/17640 17636/17677 +f 17636/17677 17600/17641 17564/17605 +f 17530/17571 17600/17641 17601/17642 +f 17602/17643 17565/17606 17637/17678 +f 17603/17644 17502/17543 17605/17646 +f 17638/17679 17566/17607 17603/17644 +f 17611/17652 17533/17574 17604/17645 +f 17604/17645 17566/17607 17639/17680 +f 17605/17646 17567/17608 17640/17681 +f 17568/17609 17606/17647 17537/17578 +f 17606/17647 17534/17575 17641/17682 +f 17642/17683 17607/17648 17569/17610 +f 17534/17575 17607/17648 17641/17682 +f 17609/17650 17608/17649 17535/17576 +f 17569/17610 17608/17649 17643/17684 +f 17570/17611 17644/17685 17609/17650 +f 17645/17686 17570/17611 17610/17651 +f 17610/17651 17536/17577 17646/17687 +f 17647/17688 17571/17612 17611/17652 +f 17647/17688 17572/17613 17571/17612 +f 17646/17687 17536/17577 17612/17653 +f 17612/17653 17572/17613 17646/17687 +f 17565/17606 17606/17647 17637/17678 +f 17615/17656 17573/17614 17579/17620 +f 17573/17614 17648/17689 17574/17615 +f 17649/17690 17567/17608 17574/17615 +f 17650/17691 17613/17654 17575/17616 +f 17651/17692 17575/17616 17578/17619 +f 17576/17617 17613/17654 17652/17693 +f 17577/17618 17653/17694 17543/17584 +f 17576/17617 17653/17694 17577/17618 +f 17578/17619 17614/17655 17651/17692 +f 17615/17656 17580/17621 17573/17614 +f 17654/17695 17616/17657 17543/17584 +f 17655/17696 17580/17621 17616/17657 +f 17618/17659 17617/17658 17544/17585 +f 17581/17622 17656/17697 17618/17659 +f 17584/17625 17657/17698 17581/17622 +f 17617/17658 17618/17659 17582/17623 +f 17582/17623 17658/17699 17614/17655 +f 17547/17588 17619/17660 17620/17661 +f 17659/17700 17549/17590 17583/17624 +f 17620/17661 17659/17700 17583/17624 +f 17660/17701 17584/17625 17621/17662 +f 17621/17662 17549/17590 17659/17700 +f 17629/17670 17622/17663 17557/17598 +f 17585/17626 17622/17663 17661/17702 +f 17585/17626 17661/17702 17623/17664 +f 17624/17665 17586/17627 17588/17629 +f 17624/17665 17591/17632 17587/17628 +f 17552/17593 17625/17666 17626/17667 +f 17626/17667 17628/17669 17588/17629 +f 17662/17703 17589/17630 17590/17631 +f 17663/17704 17625/17666 17589/17630 +f 17627/17668 17554/17595 17664/17705 +f 17590/17631 17627/17668 17665/17706 +f 17624/17665 17628/17669 17591/17632 +f 17666/17707 17619/17660 17592/17633 +f 17628/17669 17626/17667 17592/17633 +f 17558/17599 17667/17708 17629/17670 +f 17602/17643 17668/17709 17593/17634 +f 17630/17671 17593/17634 17668/17709 +f 17669/17710 17594/17635 17630/17671 +f 17670/17711 17595/17636 17594/17635 +f 17560/17601 17671/17712 17596/17637 +f 17672/17713 17560/17601 17631/17672 +f 17595/17636 17670/17711 17631/17672 +f 17561/17602 17632/17673 17673/17714 +f 17596/17637 17674/17715 17632/17673 +f 17673/17714 17633/17674 17561/17602 +f 17633/17674 17635/17676 17563/17604 +f 17597/17638 17634/17675 17675/17716 +f 17676/17717 17599/17640 17597/17638 +f 17677/17718 17634/17675 17598/17639 +f 17598/17639 17635/17676 17678/17719 +f 17679/17720 17636/17677 17599/17640 +f 17600/17641 17636/17677 17680/17721 +f 17681/17722 17601/17642 17600/17641 +f 17682/17723 17602/17643 17637/17678 +f 17603/17644 17605/17646 17683/17724 +f 17639/17680 17566/17607 17638/17679 +f 17683/17724 17638/17679 17603/17644 +f 17604/17645 17684/17725 17611/17652 +f 17639/17680 17685/17726 17604/17645 +f 17640/17681 17567/17608 17649/17690 +f 17683/17724 17605/17646 17640/17681 +f 17606/17647 17641/17682 17686/17727 +f 17687/17728 17607/17648 17642/17683 +f 17569/17610 17688/17729 17642/17683 +f 17687/17728 17641/17682 17607/17648 +f 17643/17684 17608/17649 17609/17650 +f 17688/17729 17569/17610 17643/17684 +f 17644/17685 17570/17611 17645/17686 +f 17644/17685 17689/17730 17609/17650 +f 17645/17686 17610/17651 17690/17731 +f 17610/17651 17646/17687 17690/17731 +f 17684/17725 17647/17688 17611/17652 +f 17572/17613 17647/17688 17691/17732 +f 17692/17733 17646/17687 17572/17613 +f 17606/17647 17686/17727 17637/17678 +f 17648/17689 17693/17734 17574/17615 +f 17648/17689 17573/17614 17655/17696 +f 17574/17615 17693/17734 17649/17690 +f 17613/17654 17650/17691 17652/17693 +f 17650/17691 17575/17616 17694/17735 +f 17694/17735 17575/17616 17651/17692 +f 17652/17693 17695/17736 17576/17617 +f 17543/17584 17653/17694 17654/17695 +f 17576/17617 17696/17737 17653/17694 +f 17614/17655 17697/17738 17651/17692 +f 17573/17614 17580/17621 17655/17696 +f 17616/17657 17654/17695 17698/17739 +f 17699/17740 17655/17696 17616/17657 +f 17658/17699 17618/17659 17656/17697 +f 17657/17698 17656/17697 17581/17622 +f 17584/17625 17700/17741 17657/17698 +f 17701/17742 17582/17623 17618/17659 +f 17658/17699 17582/17623 17701/17742 +f 17614/17655 17658/17699 17697/17738 +f 17619/17660 17666/17707 17620/17661 +f 17620/17661 17702/17743 17659/17700 +f 17660/17701 17621/17662 17659/17700 +f 17700/17741 17584/17625 17660/17701 +f 17622/17663 17629/17670 17703/17744 +f 17661/17702 17622/17663 17704/17745 +f 17705/17746 17623/17664 17661/17702 +f 17624/17665 17588/17629 17628/17669 +f 17663/17704 17626/17667 17625/17666 +f 17663/17704 17589/17630 17662/17703 +f 17662/17703 17590/17631 17665/17706 +f 17664/17705 17706/17747 17627/17668 +f 17665/17706 17627/17668 17707/17748 +f 17702/17743 17666/17707 17592/17633 +f 17626/17667 17708/17749 17592/17633 +f 17667/17708 17709/17750 17629/17670 +f 17710/17751 17668/17709 17602/17643 +f 17668/17709 17669/17710 17630/17671 +f 17669/17710 17670/17711 17594/17635 +f 17671/17712 17560/17601 17672/17713 +f 17674/17715 17596/17637 17671/17712 +f 17672/17713 17631/17672 17711/17752 +f 17670/17711 17711/17752 17631/17672 +f 17673/17714 17632/17673 17712/17753 +f 17632/17673 17674/17715 17713/17754 +f 17633/17674 17673/17714 17678/17719 +f 17633/17674 17678/17719 17635/17676 +f 17597/17638 17675/17716 17676/17717 +f 17675/17716 17634/17675 17714/17755 +f 17599/17640 17676/17717 17679/17720 +f 17677/17718 17715/17756 17634/17675 +f 17677/17718 17598/17639 17678/17719 +f 17680/17721 17636/17677 17679/17720 +f 17600/17641 17680/17721 17681/17722 +f 17637/17678 17686/17727 17682/17723 +f 17710/17751 17602/17643 17682/17723 +f 17639/17680 17638/17679 17685/17726 +f 17716/17757 17638/17679 17683/17724 +f 17684/17725 17604/17645 17685/17726 +f 17717/17758 17640/17681 17649/17690 +f 17640/17681 17716/17757 17683/17724 +f 17718/17759 17686/17727 17641/17682 +f 17687/17728 17642/17683 17719/17760 +f 17642/17683 17688/17729 17720/17761 +f 17687/17728 17721/17762 17641/17682 +f 17643/17684 17609/17650 17722/17763 +f 17723/17764 17688/17729 17643/17684 +f 17644/17685 17645/17686 17724/17765 +f 17689/17730 17725/17766 17609/17650 +f 17724/17765 17689/17730 17644/17685 +f 17645/17686 17690/17731 17724/17765 +f 17646/17687 17726/17767 17690/17731 +f 17691/17732 17647/17688 17684/17725 +f 17691/17732 17727/17768 17572/17613 +f 17646/17687 17692/17733 17728/17769 +f 17572/17613 17727/17768 17692/17733 +f 17693/17734 17648/17689 17729/17770 +f 17655/17696 17699/17740 17648/17689 +f 17649/17690 17693/17734 17729/17770 +f 17650/17691 17730/17771 17652/17693 +f 17730/17771 17650/17691 17694/17735 +f 17651/17692 17731/17772 17694/17735 +f 17576/17617 17695/17736 17732/17773 +f 17733/17774 17695/17736 17652/17693 +f 17698/17739 17654/17695 17653/17694 +f 17734/17775 17653/17694 17696/17737 +f 17696/17737 17576/17617 17732/17773 +f 17651/17692 17697/17738 17731/17772 +f 17616/17657 17698/17739 17735/17776 +f 17616/17657 17736/17777 17699/17740 +f 17618/17659 17658/17699 17701/17742 +f 17697/17738 17658/17699 17656/17697 +f 17737/17778 17656/17697 17657/17698 +f 17700/17741 17737/17778 17657/17698 +f 17666/17707 17702/17743 17620/17661 +f 17702/17743 17738/17779 17659/17700 +f 17660/17701 17659/17700 17739/17780 +f 17700/17741 17660/17701 17739/17780 +f 17709/17750 17703/17744 17629/17670 +f 17622/17663 17703/17744 17704/17745 +f 17705/17746 17661/17702 17704/17745 +f 17626/17667 17663/17704 17740/17781 +f 17662/17703 17741/17782 17663/17704 +f 17742/17783 17662/17703 17665/17706 +f 17664/17705 17743/17784 17706/17747 +f 17706/17747 17707/17748 17627/17668 +f 17707/17748 17744/17785 17665/17706 +f 17708/17749 17702/17743 17592/17633 +f 17626/17667 17740/17781 17708/17749 +f 17745/17786 17709/17750 17667/17708 +f 17746/17787 17668/17709 17710/17751 +f 17669/17710 17668/17709 17746/17787 +f 17747/17788 17670/17711 17669/17710 +f 17671/17712 17672/17713 17674/17715 +f 17672/17713 17711/17752 17748/17789 +f 17711/17752 17670/17711 17747/17788 +f 17712/17753 17632/17673 17713/17754 +f 17673/17714 17712/17753 17749/17790 +f 17713/17754 17674/17715 17750/17791 +f 17678/17719 17673/17714 17749/17790 +f 17714/17755 17676/17717 17675/17716 +f 17714/17755 17634/17675 17751/17792 +f 17676/17717 17752/17793 17679/17720 +f 17677/17718 17753/17794 17715/17756 +f 17634/17675 17715/17756 17754/17795 +f 17678/17719 17753/17794 17677/17718 +f 17681/17722 17680/17721 17679/17720 +f 17755/17796 17682/17723 17686/17727 +f 17682/17723 17755/17796 17710/17751 +f 17638/17679 17756/17797 17685/17726 +f 17757/17798 17638/17679 17716/17757 +f 17758/17799 17684/17725 17685/17726 +f 17759/17800 17640/17681 17717/17758 +f 17729/17770 17717/17758 17649/17690 +f 17760/17801 17716/17757 17640/17681 +f 17686/17727 17718/17759 17755/17796 +f 17641/17682 17721/17762 17718/17759 +f 17720/17761 17719/17760 17642/17683 +f 17687/17728 17719/17760 17721/17762 +f 17720/17761 17688/17729 17761/17802 +f 17722/17763 17762/17803 17643/17684 +f 17725/17766 17722/17763 17609/17650 +f 17762/17803 17723/17764 17643/17684 +f 17723/17764 17761/17802 17688/17729 +f 17725/17766 17689/17730 17763/17804 +f 17764/17805 17689/17730 17724/17765 +f 17765/17806 17724/17765 17690/17731 +f 17646/17687 17766/17807 17726/17767 +f 17767/17808 17690/17731 17726/17767 +f 17768/17809 17691/17732 17684/17725 +f 17727/17768 17691/17732 17769/17810 +f 17766/17807 17646/17687 17728/17769 +f 17728/17769 17692/17733 17770/17811 +f 17770/17811 17692/17733 17727/17768 +f 17729/17770 17648/17689 17699/17740 +f 17730/17771 17771/17812 17652/17693 +f 17730/17771 17694/17735 17772/17813 +f 17694/17735 17731/17772 17772/17813 +f 17732/17773 17695/17736 17733/17774 +f 17771/17812 17733/17774 17652/17693 +f 17773/17814 17698/17739 17653/17694 +f 17696/17737 17774/17815 17734/17775 +f 17653/17694 17734/17775 17773/17814 +f 17696/17737 17732/17773 17774/17815 +f 17731/17772 17697/17738 17775/17816 +f 17735/17776 17736/17777 17616/17657 +f 17773/17814 17735/17776 17698/17739 +f 17729/17770 17699/17740 17736/17777 +f 17697/17738 17656/17697 17737/17778 +f 17700/17741 17739/17780 17737/17778 +f 17738/17779 17702/17743 17776/17817 +f 17739/17780 17659/17700 17738/17779 +f 17709/17750 17777/17818 17703/17744 +f 17703/17744 17777/17818 17704/17745 +f 17778/17819 17705/17746 17704/17745 +f 17663/17704 17779/17820 17740/17781 +f 17742/17783 17741/17782 17662/17703 +f 17663/17704 17741/17782 17779/17820 +f 17665/17706 17744/17785 17742/17783 +f 17743/17784 17707/17748 17706/17747 +f 17744/17785 17707/17748 17743/17784 +f 17708/17749 17776/17817 17702/17743 +f 17708/17749 17740/17781 17780/17821 +f 17745/17786 17781/17822 17709/17750 +f 17782/17823 17745/17786 17667/17708 +f 17783/17824 17746/17787 17710/17751 +f 17784/17825 17669/17710 17746/17787 +f 17669/17710 17784/17825 17747/17788 +f 17672/17713 17750/17791 17674/17715 +f 17711/17752 17784/17825 17748/17789 +f 17748/17789 17785/17826 17672/17713 +f 17747/17788 17784/17825 17711/17752 +f 17786/17827 17712/17753 17713/17754 +f 17712/17753 17787/17828 17749/17790 +f 17750/17791 17788/17829 17713/17754 +f 17749/17790 17753/17794 17678/17719 +f 17752/17793 17676/17717 17714/17755 +f 17634/17675 17754/17795 17751/17792 +f 17714/17755 17751/17792 17789/17830 +f 17679/17720 17752/17793 17790/17831 +f 17791/17832 17715/17756 17753/17794 +f 17754/17795 17715/17756 17792/17833 +f 17679/17720 17790/17831 17681/17722 +f 17783/17824 17710/17751 17755/17796 +f 17756/17797 17638/17679 17793/17834 +f 17794/17835 17685/17726 17756/17797 +f 17638/17679 17757/17798 17793/17834 +f 17757/17798 17716/17757 17795/17836 +f 17685/17726 17794/17835 17758/17799 +f 17768/17809 17684/17725 17758/17799 +f 17640/17681 17759/17800 17760/17801 +f 17717/17758 17729/17770 17759/17800 +f 17795/17836 17716/17757 17760/17801 +f 17718/17759 17796/17837 17755/17796 +f 17721/17762 17796/17837 17718/17759 +f 17797/17838 17719/17760 17720/17761 +f 17721/17762 17719/17760 17796/17837 +f 17761/17802 17798/17839 17720/17761 +f 17762/17803 17722/17763 17799/17840 +f 17722/17763 17725/17766 17799/17840 +f 17762/17803 17761/17802 17723/17764 +f 17764/17805 17763/17804 17689/17730 +f 17800/17841 17725/17766 17763/17804 +f 17764/17805 17724/17765 17765/17806 +f 17690/17731 17767/17808 17765/17806 +f 17726/17767 17766/17807 17801/17842 +f 17767/17808 17726/17767 17801/17842 +f 17769/17810 17691/17732 17768/17809 +f 17727/17768 17769/17810 17770/17811 +f 17802/17843 17766/17807 17728/17769 +f 17803/17844 17728/17769 17770/17811 +f 17771/17812 17730/17771 17804/17845 +f 17772/17813 17804/17845 17730/17771 +f 17772/17813 17731/17772 17775/17816 +f 17732/17773 17733/17774 17805/17846 +f 17805/17846 17733/17774 17771/17812 +f 17774/17815 17806/17847 17734/17775 +f 17734/17775 17806/17847 17773/17814 +f 17774/17815 17732/17773 17805/17846 +f 17807/17848 17775/17816 17697/17738 +f 17735/17776 17808/17849 17736/17777 +f 17735/17776 17773/17814 17809/17850 +f 17729/17770 17736/17777 17759/17800 +f 17697/17738 17737/17778 17807/17848 +f 17776/17817 17737/17778 17739/17780 +f 17738/17779 17776/17817 17739/17780 +f 17709/17750 17781/17822 17777/17818 +f 17704/17745 17777/17818 17778/17819 +f 17705/17746 17778/17819 17810/17851 +f 17811/17852 17740/17781 17779/17820 +f 17741/17782 17742/17783 17812/17853 +f 17779/17820 17741/17782 17813/17854 +f 17776/17817 17708/17749 17780/17821 +f 17740/17781 17814/17855 17780/17821 +f 17781/17822 17745/17786 17815/17856 +f 17782/17823 17816/17857 17745/17786 +f 17817/17858 17746/17787 17783/17824 +f 17818/17859 17784/17825 17746/17787 +f 17785/17826 17750/17791 17672/17713 +f 17748/17789 17784/17825 17819/17860 +f 17819/17860 17785/17826 17748/17789 +f 17820/17861 17712/17753 17786/17827 +f 17821/17862 17786/17827 17713/17754 +f 17787/17828 17753/17794 17749/17790 +f 17787/17828 17712/17753 17820/17861 +f 17785/17826 17788/17829 17750/17791 +f 17713/17754 17788/17829 17822/17863 +f 17789/17830 17752/17793 17714/17755 +f 17823/17864 17751/17792 17754/17795 +f 17789/17830 17751/17792 17824/17865 +f 17790/17831 17752/17793 17789/17830 +f 17791/17832 17792/17833 17715/17756 +f 17787/17828 17791/17832 17753/17794 +f 17754/17795 17792/17833 17825/17866 +f 17826/17867 17681/17722 17790/17831 +f 17755/17796 17817/17858 17783/17824 +f 17827/17868 17756/17797 17793/17834 +f 17756/17797 17828/17869 17794/17835 +f 17793/17834 17757/17798 17829/17870 +f 17757/17798 17795/17836 17829/17870 +f 17794/17835 17830/17871 17758/17799 +f 17758/17799 17830/17871 17768/17809 +f 17760/17801 17759/17800 17831/17872 +f 17795/17836 17760/17801 17831/17872 +f 17755/17796 17796/17837 17832/17873 +f 17798/17839 17797/17838 17720/17761 +f 17719/17760 17797/17838 17833/17874 +f 17832/17873 17796/17837 17719/17760 +f 17798/17839 17761/17802 17762/17803 +f 17799/17840 17834/17875 17762/17803 +f 17725/17766 17800/17841 17799/17840 +f 17800/17841 17763/17804 17764/17805 +f 17835/17876 17764/17805 17765/17806 +f 17765/17806 17767/17808 17836/17877 +f 17801/17842 17766/17807 17837/17878 +f 17801/17842 17838/17879 17767/17808 +f 17768/17809 17839/17880 17769/17810 +f 17770/17811 17769/17810 17839/17880 +f 17837/17878 17766/17807 17802/17843 +f 17803/17844 17802/17843 17728/17769 +f 17840/17881 17803/17844 17770/17811 +f 17804/17845 17775/17816 17771/17812 +f 17804/17845 17772/17813 17775/17816 +f 17841/17882 17805/17846 17771/17812 +f 17774/17815 17842/17883 17806/17847 +f 17773/17814 17806/17847 17843/17884 +f 17805/17846 17844/17885 17774/17815 +f 17807/17848 17845/17886 17775/17816 +f 17735/17776 17809/17850 17808/17849 +f 17736/17777 17808/17849 17846/17887 +f 17843/17884 17809/17850 17773/17814 +f 17847/17888 17759/17800 17736/17777 +f 17776/17817 17807/17848 17737/17778 +f 17777/17818 17781/17822 17848/17889 +f 17778/17819 17777/17818 17810/17851 +f 17810/17851 17849/17890 17705/17746 +f 17850/17891 17811/17852 17779/17820 +f 17814/17855 17740/17781 17811/17852 +f 17813/17854 17741/17782 17812/17853 +f 17851/17892 17779/17820 17813/17854 +f 17776/17817 17780/17821 17852/17893 +f 17852/17893 17780/17821 17814/17855 +f 17815/17856 17745/17786 17816/17857 +f 17815/17856 17853/17894 17781/17822 +f 17854/17895 17816/17857 17782/17823 +f 17817/17858 17855/17896 17746/17787 +f 17855/17896 17818/17859 17746/17787 +f 17784/17825 17818/17859 17856/17897 +f 17784/17825 17856/17897 17819/17860 +f 17785/17826 17819/17860 17857/17898 +f 17820/17861 17786/17827 17858/17899 +f 17859/17900 17786/17827 17821/17862 +f 17822/17863 17821/17862 17713/17754 +f 17820/17861 17860/17901 17787/17828 +f 17857/17898 17788/17829 17785/17826 +f 17788/17829 17861/17902 17822/17863 +f 17824/17865 17751/17792 17823/17864 +f 17825/17866 17823/17864 17754/17795 +f 17789/17830 17826/17867 17790/17831 +f 17791/17832 17862/17903 17792/17833 +f 17787/17828 17860/17901 17791/17832 +f 17792/17833 17863/17904 17825/17866 +f 17864/17905 17817/17858 17755/17796 +f 17827/17868 17865/17906 17756/17797 +f 17827/17868 17793/17834 17829/17870 +f 17865/17906 17828/17869 17756/17797 +f 17866/17907 17794/17835 17828/17869 +f 17795/17836 17867/17908 17829/17870 +f 17866/17907 17830/17871 17794/17835 +f 17768/17809 17830/17871 17868/17909 +f 17831/17872 17759/17800 17847/17888 +f 17795/17836 17831/17872 17869/17910 +f 17832/17873 17864/17905 17755/17796 +f 17797/17838 17798/17839 17870/17911 +f 17833/17874 17797/17838 17832/17873 +f 17833/17874 17832/17873 17719/17760 +f 17762/17803 17871/17912 17798/17839 +f 17834/17875 17799/17840 17872/17913 +f 17834/17875 17871/17912 17762/17803 +f 17800/17841 17873/17914 17799/17840 +f 17764/17805 17874/17915 17800/17841 +f 17835/17876 17874/17915 17764/17805 +f 17765/17806 17836/17877 17835/17876 +f 17767/17808 17838/17879 17836/17877 +f 17801/17842 17837/17878 17875/17916 +f 17838/17879 17801/17842 17876/17917 +f 17877/17918 17839/17880 17768/17809 +f 17839/17880 17840/17881 17770/17811 +f 17802/17843 17878/17919 17837/17878 +f 17879/17920 17802/17843 17803/17844 +f 17803/17844 17840/17881 17879/17920 +f 17775/17816 17880/17921 17771/17812 +f 17841/17882 17771/17812 17880/17921 +f 17841/17882 17844/17885 17805/17846 +f 17844/17885 17842/17883 17774/17815 +f 17881/17922 17806/17847 17842/17883 +f 17806/17847 17881/17922 17843/17884 +f 17845/17886 17807/17848 17882/17923 +f 17775/17816 17845/17886 17880/17921 +f 17883/17924 17808/17849 17809/17850 +f 17884/17925 17846/17887 17808/17849 +f 17736/17777 17846/17887 17847/17888 +f 17843/17884 17885/17926 17809/17850 +f 17807/17848 17776/17817 17882/17923 +f 17848/17889 17810/17851 17777/17818 +f 17781/17822 17886/17927 17848/17889 +f 17810/17851 17887/17928 17849/17890 +f 17850/17891 17888/17929 17811/17852 +f 17779/17820 17889/17930 17850/17891 +f 17814/17855 17811/17852 17890/17931 +f 17891/17932 17851/17892 17813/17854 +f 17779/17820 17851/17892 17889/17930 +f 17852/17893 17892/17933 17776/17817 +f 17893/17934 17852/17893 17814/17855 +f 17894/17935 17815/17856 17816/17857 +f 17853/17894 17886/17927 17781/17822 +f 17853/17894 17815/17856 17894/17935 +f 17895/17936 17816/17857 17854/17895 +f 17817/17858 17896/17937 17855/17896 +f 17818/17859 17855/17896 17897/17938 +f 17818/17859 17897/17938 17856/17897 +f 17856/17897 17898/17939 17819/17860 +f 17819/17860 17899/17940 17857/17898 +f 17859/17900 17858/17899 17786/17827 +f 17858/17899 17860/17901 17820/17861 +f 17900/17941 17859/17900 17821/17862 +f 17901/17942 17821/17862 17822/17863 +f 17857/17898 17861/17902 17788/17829 +f 17861/17902 17901/17942 17822/17863 +f 17902/17943 17862/17903 17791/17832 +f 17792/17833 17862/17903 17863/17904 +f 17860/17901 17902/17943 17791/17832 +f 17825/17866 17863/17904 17903/17944 +f 17896/17937 17817/17858 17864/17905 +f 17865/17906 17827/17868 17904/17945 +f 17829/17870 17867/17908 17827/17868 +f 17905/17946 17828/17869 17865/17906 +f 17906/17947 17866/17907 17828/17869 +f 17867/17908 17795/17836 17869/17910 +f 17830/17871 17866/17907 17907/17948 +f 17768/17809 17868/17909 17908/17949 +f 17907/17948 17868/17909 17830/17871 +f 17909/17950 17831/17872 17847/17888 +f 17831/17872 17910/17951 17869/17910 +f 17864/17905 17832/17873 17911/17952 +f 17870/17911 17798/17839 17871/17912 +f 17870/17911 17912/17953 17797/17838 +f 17913/17954 17832/17873 17797/17838 +f 17872/17913 17799/17840 17873/17914 +f 17872/17913 17914/17955 17834/17875 +f 17871/17912 17834/17875 17915/17956 +f 17873/17914 17800/17841 17874/17915 +f 17874/17915 17835/17876 17872/17913 +f 17835/17876 17836/17877 17916/17957 +f 17838/17879 17917/17958 17836/17877 +f 17875/17916 17837/17878 17918/17959 +f 17801/17842 17875/17916 17876/17917 +f 17917/17958 17838/17879 17876/17917 +f 17877/17918 17919/17960 17839/17880 +f 17768/17809 17908/17949 17877/17918 +f 17920/17961 17840/17881 17839/17880 +f 17878/17919 17802/17843 17921/17962 +f 17918/17959 17837/17878 17878/17919 +f 17802/17843 17879/17920 17921/17962 +f 17840/17881 17920/17961 17879/17920 +f 17841/17882 17880/17921 17922/17963 +f 17923/17964 17844/17885 17841/17882 +f 17844/17885 17923/17964 17842/17883 +f 17923/17964 17881/17922 17842/17883 +f 17924/17965 17843/17884 17881/17922 +f 17882/17923 17925/17966 17845/17886 +f 17880/17921 17845/17886 17926/17967 +f 17884/17925 17808/17849 17883/17924 +f 17883/17924 17809/17850 17885/17926 +f 17909/17950 17846/17887 17884/17925 +f 17847/17888 17846/17887 17909/17950 +f 17885/17926 17843/17884 17924/17965 +f 17882/17923 17776/17817 17927/17968 +f 17887/17928 17810/17851 17848/17889 +f 17848/17889 17886/17927 17928/17969 +f 17887/17928 17929/17970 17849/17890 +f 17811/17852 17888/17929 17890/17931 +f 17930/17971 17888/17929 17850/17891 +f 17889/17930 17931/17972 17850/17891 +f 17893/17934 17814/17855 17890/17931 +f 17932/17973 17851/17892 17891/17932 +f 17889/17930 17851/17892 17932/17973 +f 17933/17974 17892/17933 17852/17893 +f 17776/17817 17892/17933 17927/17968 +f 17934/17975 17852/17893 17893/17934 +f 17816/17857 17895/17936 17894/17935 +f 17886/17927 17853/17894 17935/17976 +f 17936/17977 17853/17894 17894/17935 +f 17895/17936 17854/17895 17937/17978 +f 17938/17979 17855/17896 17896/17937 +f 17897/17938 17855/17896 17939/17980 +f 17898/17939 17856/17897 17897/17938 +f 17898/17939 17899/17940 17819/17860 +f 17857/17898 17899/17940 17940/17981 +f 17859/17900 17941/17982 17858/17899 +f 17858/17899 17902/17943 17860/17901 +f 17901/17942 17900/17941 17821/17862 +f 17859/17900 17900/17941 17942/17983 +f 17940/17981 17861/17902 17857/17898 +f 17861/17902 17943/17984 17901/17942 +f 17862/17903 17902/17943 17903/17944 +f 17862/17903 17903/17944 17863/17904 +f 17944/17985 17825/17866 17903/17944 +f 17896/17937 17864/17905 17945/17986 +f 17904/17945 17827/17868 17867/17908 +f 17865/17906 17904/17945 17946/17987 +f 17905/17946 17865/17906 17947/17988 +f 17905/17946 17906/17947 17828/17869 +f 17866/17907 17906/17947 17948/17989 +f 17869/17910 17949/17990 17867/17908 +f 17866/17907 17950/17991 17907/17948 +f 17951/17992 17908/17949 17868/17909 +f 17950/17991 17868/17909 17907/17948 +f 17910/17951 17831/17872 17909/17950 +f 17869/17910 17910/17951 17952/17993 +f 17911/17952 17832/17873 17953/17994 +f 17945/17986 17864/17905 17911/17952 +f 17870/17911 17871/17912 17915/17956 +f 17912/17953 17913/17954 17797/17838 +f 17870/17911 17954/17995 17912/17953 +f 17832/17873 17913/17954 17953/17994 +f 17873/17914 17874/17915 17872/17913 +f 17915/17956 17834/17875 17914/17955 +f 17955/17996 17914/17955 17872/17913 +f 17872/17913 17835/17876 17956/17997 +f 17956/17997 17835/17876 17916/17957 +f 17916/17957 17836/17877 17957/17998 +f 17917/17958 17957/17998 17836/17877 +f 17918/17959 17958/17999 17875/17916 +f 17876/17917 17875/17916 17959/18000 +f 17959/18000 17917/17958 17876/17917 +f 17960/18001 17919/17960 17877/17918 +f 17920/17961 17839/17880 17919/17960 +f 17877/17918 17908/17949 17951/17992 +f 17878/17919 17921/17962 17961/18002 +f 17878/17919 17958/17999 17918/17959 +f 17962/18003 17921/17962 17879/17920 +f 17920/17961 17962/18003 17879/17920 +f 17880/17921 17963/18004 17922/17963 +f 17964/18005 17841/17882 17922/17963 +f 17923/17964 17841/17882 17964/18005 +f 17924/17965 17881/17922 17923/17964 +f 17845/17886 17925/17966 17926/17967 +f 17882/17923 17927/17968 17925/17966 +f 17926/17967 17963/18004 17880/17921 +f 17965/18006 17884/17925 17883/17924 +f 17966/18007 17883/17924 17885/17926 +f 17909/17950 17884/17925 17967/18008 +f 17966/18007 17885/17926 17924/17965 +f 17928/17969 17887/17928 17848/17889 +f 17928/17969 17886/17927 17935/17976 +f 17929/17970 17887/17928 17891/17932 +f 17888/17929 17968/18009 17890/17931 +f 17930/17971 17850/17891 17969/18010 +f 17970/18011 17888/17929 17930/17971 +f 17931/17972 17889/17930 17932/17973 +f 17969/18010 17850/17891 17931/17972 +f 17890/17931 17968/18009 17893/17934 +f 17971/18012 17932/17973 17891/17932 +f 17972/18013 17892/17933 17933/17974 +f 17852/17893 17934/17975 17933/17974 +f 17892/17933 17973/18014 17927/17968 +f 17934/17975 17893/17934 17974/18015 +f 17895/17936 17975/18016 17894/17935 +f 17936/17977 17935/17976 17853/17894 +f 17936/17977 17894/17935 17976/18017 +f 17937/17978 17977/18018 17895/17936 +f 17978/18019 17937/17978 17854/17895 +f 17979/18020 17855/17896 17938/17979 +f 17938/17979 17896/17937 17980/18021 +f 17939/17980 17855/17896 17981/18022 +f 17898/17939 17897/17938 17939/17980 +f 17899/17940 17898/17939 17982/18023 +f 17983/18024 17940/17981 17899/17940 +f 17941/17982 17859/17900 17942/17983 +f 17902/17943 17858/17899 17941/17982 +f 17901/17942 17943/17984 17900/17941 +f 17942/17983 17900/17941 17943/17984 +f 17861/17902 17940/17981 17984/18025 +f 17984/18025 17943/17984 17861/17902 +f 17902/17943 17985/18026 17903/17944 +f 17985/18026 17944/17985 17903/17944 +f 17825/17866 17944/17985 17986/18027 +f 17980/18021 17896/17937 17945/17986 +f 17987/18028 17904/17945 17867/17908 +f 17947/17988 17865/17906 17946/17987 +f 17987/18028 17946/17987 17904/17945 +f 17947/17988 17988/18029 17905/17946 +f 17989/18030 17906/17947 17905/17946 +f 17948/17989 17906/17947 17990/18031 +f 17948/17989 17950/17991 17866/17907 +f 17869/17910 17952/17993 17949/17990 +f 17867/17908 17949/17990 17991/18032 +f 17950/17991 17951/17992 17868/17909 +f 17967/18008 17910/17951 17909/17950 +f 17910/17951 17992/18033 17952/17993 +f 17953/17994 17993/18034 17911/17952 +f 17945/17986 17911/17952 17993/18034 +f 17954/17995 17870/17911 17915/17956 +f 17913/17954 17912/17953 17994/18035 +f 17994/18035 17912/17953 17954/17995 +f 17953/17994 17913/17954 17994/18035 +f 17995/18036 17915/17956 17914/17955 +f 17955/17996 17996/18037 17914/17955 +f 17872/17913 17956/17997 17955/17996 +f 17997/18038 17956/17997 17916/17957 +f 17916/17957 17957/17998 17998/18039 +f 17917/17958 17999/18040 17957/17998 +f 17959/18000 17875/17916 17958/17999 +f 17917/17958 17959/18000 18000/18041 +f 17960/18001 17877/17918 17951/17992 +f 17919/17960 17960/18001 18001/18042 +f 17919/17960 18002/18043 17920/17961 +f 18003/18044 17878/17919 17961/18002 +f 17921/17962 17962/18003 17961/18002 +f 17958/17999 17878/17919 18003/18044 +f 17920/17961 18004/18045 17962/18003 +f 17922/17963 17963/18004 18005/18046 +f 18006/18047 17964/18005 17922/17963 +f 17923/17964 17964/18005 17924/17965 +f 17925/17966 18007/18048 17926/17967 +f 17927/17968 18008/18049 17925/17966 +f 17963/18004 17926/17967 18009/18050 +f 17884/17925 17965/18006 17967/18008 +f 17883/17924 17966/18007 17965/18006 +f 17966/18007 17924/17965 17964/18005 +f 17887/17928 17928/17969 17971/18012 +f 18010/18051 17928/17969 17935/17976 +f 17971/18012 17891/17932 17887/17928 +f 17888/17929 17970/18011 17968/18009 +f 18011/18052 17930/17971 17969/18010 +f 17930/17971 18011/18052 17970/18011 +f 17931/17972 17932/17973 18012/18053 +f 17969/18010 17931/17972 18013/18054 +f 17893/17934 17968/18009 18014/18055 +f 18015/18056 17932/17973 17971/18012 +f 17973/18014 17892/17933 17972/18013 +f 17972/18013 17933/17974 18016/18057 +f 17933/17974 17934/17975 18016/18057 +f 17927/17968 17973/18014 18017/18058 +f 17893/17934 18014/18055 17974/18015 +f 17934/17975 17974/18015 18018/18059 +f 17895/17936 17977/18018 17975/18016 +f 17975/18016 17976/18017 17894/17935 +f 17936/17977 17976/18017 17935/17976 +f 18019/18060 17977/18018 17937/17978 +f 18019/18060 17937/17978 17978/18019 +f 17855/17896 17979/18020 17981/18022 +f 18020/18061 17979/18020 17938/17979 +f 18020/18061 17938/17979 17980/18021 +f 17939/17980 17981/18022 18021/18062 +f 17898/17939 17939/17980 18021/18062 +f 18022/18063 17982/18023 17898/17939 +f 17982/18023 17983/18024 17899/17940 +f 17940/17981 17983/18024 18023/18064 +f 17942/17983 18024/18065 17941/17982 +f 17941/17982 18025/18066 17902/17943 +f 17984/18025 17942/17983 17943/17984 +f 17940/17981 18026/18067 17984/18025 +f 17902/17943 18025/18066 17985/18026 +f 18027/18068 17944/17985 17985/18026 +f 17986/18027 17944/17985 18028/18069 +f 17945/17986 18029/18070 17980/18021 +f 18030/18071 17987/18028 17867/17908 +f 17947/17988 17946/17987 17988/18029 +f 18031/18072 17946/17987 17987/18028 +f 17905/17946 17988/18029 17989/18030 +f 17906/17947 17989/18030 18032/18073 +f 17906/17947 18032/18073 17990/18031 +f 17990/18031 18033/18074 17948/17989 +f 18034/18075 17950/17991 17948/17989 +f 17949/17990 17952/17993 17991/18032 +f 17991/18032 18030/18071 17867/17908 +f 17960/18001 17951/17992 17950/17991 +f 17967/18008 17992/18033 17910/17951 +f 17992/18033 17991/18032 17952/17993 +f 18035/18076 17993/18034 17953/17994 +f 17993/18034 18029/18070 17945/17986 +f 17954/17995 17915/17956 18036/18077 +f 17954/17995 18037/18078 17994/18035 +f 17994/18035 18038/18079 17953/17994 +f 17915/17956 17995/18036 18036/18077 +f 17995/18036 17914/17955 17996/18037 +f 17996/18037 17955/17996 18039/18080 +f 17955/17996 17956/17997 17997/18038 +f 17997/18038 17916/17957 17998/18039 +f 18040/18081 17998/18039 17957/17998 +f 17999/18040 18040/18081 17957/17998 +f 17999/18040 17917/17958 18000/18041 +f 17959/18000 17958/17999 18041/18082 +f 17959/18000 18041/18082 18000/18041 +f 17960/18001 18042/18083 18001/18042 +f 18043/18084 17919/17960 18001/18042 +f 17919/17960 18043/18084 18002/18043 +f 18002/18043 18004/18045 17920/17961 +f 18044/18085 18003/18044 17961/18002 +f 17962/18003 18045/18086 17961/18002 +f 17958/17999 18003/18044 18046/18087 +f 17962/18003 18004/18045 18045/18086 +f 18047/18088 17922/17963 18005/18046 +f 18009/18050 18005/18046 17963/18004 +f 18006/18047 17922/17963 18048/18089 +f 18006/18047 18049/18090 17964/18005 +f 17925/17966 18008/18049 18007/18048 +f 17926/17967 18007/18048 18009/18050 +f 18050/18091 18008/18049 17927/17968 +f 17967/18008 17965/18006 18051/18092 +f 17966/18007 18049/18090 17965/18006 +f 18049/18090 17966/18007 17964/18005 +f 17971/18012 17928/17969 18015/18056 +f 18010/18051 17935/17976 17976/18017 +f 18015/18056 17928/17969 18010/18051 +f 17970/18011 18052/18093 17968/18009 +f 17969/18010 18053/18094 18011/18052 +f 18011/18052 18054/18095 17970/18011 +f 18012/18053 17932/17973 18015/18056 +f 18012/18053 18055/18096 17931/17972 +f 17931/17972 18055/18096 18013/18054 +f 17969/18010 18013/18054 18056/18097 +f 18014/18055 17968/18009 18052/18093 +f 17973/18014 17972/18013 18057/18098 +f 17972/18013 18016/18057 18058/18099 +f 18018/18059 18016/18057 17934/17975 +f 18017/18058 17973/18014 18057/18098 +f 17927/17968 18017/18058 18050/18091 +f 18059/18100 17974/18015 18014/18055 +f 17974/18015 18059/18100 18018/18059 +f 17975/18016 17977/18018 18060/18101 +f 17976/18017 17975/18016 18060/18101 +f 17977/18018 18019/18060 18061/18102 +f 17978/18019 18061/18102 18019/18060 +f 17981/18022 17979/18020 18062/18103 +f 18063/18104 17979/18020 18020/18061 +f 18064/18105 18020/18061 17980/18021 +f 18065/18106 18021/18062 17981/18022 +f 17898/17939 18021/18062 18022/18063 +f 17982/18023 18022/18063 18066/18107 +f 17983/18024 17982/18023 18067/18108 +f 18026/18067 17940/17981 18023/18064 +f 18023/18064 17983/18024 18068/18109 +f 18024/18065 17942/17983 17984/18025 +f 18069/18110 17941/17982 18024/18065 +f 18025/18066 17941/17982 18069/18110 +f 17984/18025 18026/18067 18070/18111 +f 18071/18112 17985/18026 18025/18066 +f 18027/18068 18028/18069 17944/17985 +f 18072/18113 18027/18068 17985/18026 +f 18028/18069 18073/18114 17986/18027 +f 18029/18070 18064/18105 17980/18021 +f 18031/18072 17987/18028 18030/18071 +f 17946/17987 18031/18072 17988/18029 +f 17988/18029 18074/18115 17989/18030 +f 18075/18116 18032/18073 17989/18030 +f 17990/18031 18032/18073 18076/18117 +f 17990/18031 18076/18117 18033/18074 +f 17948/17989 18033/18074 18034/18075 +f 18042/18083 17950/17991 18034/18075 +f 18030/18071 17991/18032 18077/18118 +f 18042/18083 17960/18001 17950/17991 +f 18077/18118 17992/18033 17967/18008 +f 17992/18033 18077/18118 17991/18032 +f 17953/17994 18038/18079 18035/18076 +f 18035/18076 18078/18119 17993/18034 +f 17993/18034 18078/18119 18029/18070 +f 17954/17995 18036/18077 18037/18078 +f 18037/18078 18079/18120 17994/18035 +f 17994/18035 18080/18121 18038/18079 +f 18036/18077 17995/18036 18081/18122 +f 17996/18037 18081/18122 17995/18036 +f 18039/18080 18082/18123 17996/18037 +f 18083/18124 18039/18080 17955/17996 +f 17955/17996 17997/18038 18084/18125 +f 18085/18126 17997/18038 17998/18039 +f 17998/18039 18040/18081 18085/18126 +f 18040/18081 17999/18040 18000/18041 +f 18086/18127 18041/18082 17958/17999 +f 18041/18082 18086/18127 18000/18041 +f 18001/18042 18042/18083 18087/18128 +f 18002/18043 18043/18084 18001/18042 +f 18004/18045 18002/18043 18088/18129 +f 18003/18044 18044/18085 18046/18087 +f 18089/18130 18044/18085 17961/18002 +f 17961/18002 18045/18086 18089/18130 +f 18046/18087 18090/18131 17958/17999 +f 18088/18129 18045/18086 18004/18045 +f 18048/18089 17922/17963 18047/18088 +f 18047/18088 18005/18046 18009/18050 +f 18049/18090 18006/18047 18048/18089 +f 18007/18048 18008/18049 18091/18132 +f 18091/18132 18009/18050 18007/18048 +f 18008/18049 18050/18091 18092/18133 +f 17967/18008 18051/18092 18077/18118 +f 18049/18090 18051/18092 17965/18006 +f 18010/18051 17976/18017 18093/18134 +f 18010/18051 18094/18135 18015/18056 +f 18095/18136 18052/18093 17970/18011 +f 18056/18097 18053/18094 17969/18010 +f 18096/18137 18011/18052 18053/18094 +f 18011/18052 18096/18137 18054/18095 +f 18095/18136 17970/18011 18054/18095 +f 18015/18056 18094/18135 18012/18053 +f 18012/18053 18097/18138 18055/18096 +f 18097/18138 18013/18054 18055/18096 +f 18056/18097 18013/18054 18098/18139 +f 18014/18055 18052/18093 18095/18136 +f 18058/18099 18057/18098 17972/18013 +f 18099/18140 18058/18099 18016/18057 +f 18100/18141 18016/18057 18018/18059 +f 18017/18058 18057/18098 18101/18142 +f 18017/18058 18102/18143 18050/18091 +f 18014/18055 18103/18144 18059/18100 +f 18018/18059 18059/18100 18104/18145 +f 18060/18101 17977/18018 18105/18146 +f 18093/18134 17976/18017 18060/18101 +f 17977/18018 18061/18102 18105/18146 +f 18061/18102 17978/18019 18106/18147 +f 17979/18020 18063/18104 18062/18103 +f 17981/18022 18062/18103 18107/18148 +f 18108/18149 18063/18104 18020/18061 +f 18064/18105 18108/18149 18020/18061 +f 18021/18062 18065/18106 18022/18063 +f 17981/18022 18109/18150 18065/18106 +f 18110/18151 18066/18107 18022/18063 +f 18067/18108 17982/18023 18066/18107 +f 18067/18108 18111/18152 17983/18024 +f 18112/18153 18026/18067 18023/18064 +f 18111/18152 18068/18109 17983/18024 +f 18023/18064 18068/18109 18113/18154 +f 18024/18065 17984/18025 18070/18111 +f 18070/18111 18069/18110 18024/18065 +f 18114/18155 18025/18066 18069/18110 +f 18115/18156 18070/18111 18026/18067 +f 18025/18066 18114/18155 18071/18112 +f 17985/18026 18071/18112 18072/18113 +f 18028/18069 18027/18068 18116/18157 +f 18116/18157 18027/18068 18072/18113 +f 18117/18158 18073/18114 18028/18069 +f 18118/18159 18064/18105 18029/18070 +f 18031/18072 18030/18071 18051/18092 +f 18031/18072 18119/18160 17988/18029 +f 17989/18030 18074/18115 18075/18116 +f 18119/18160 18074/18115 17988/18029 +f 18075/18116 18120/18161 18032/18073 +f 18076/18117 18032/18073 18120/18161 +f 18033/18074 18076/18117 18121/18162 +f 18122/18163 18034/18075 18033/18074 +f 18034/18075 18123/18164 18042/18083 +f 18077/18118 18051/18092 18030/18071 +f 18035/18076 18038/18079 18124/18165 +f 18078/18119 18035/18076 18124/18165 +f 18125/18166 18029/18070 18078/18119 +f 18036/18077 18126/18167 18037/18078 +f 18079/18120 18037/18078 18127/18168 +f 18079/18120 18080/18121 17994/18035 +f 18038/18079 18080/18121 18124/18165 +f 18126/18167 18036/18077 18081/18122 +f 18081/18122 17996/18037 18082/18123 +f 18082/18123 18039/18080 18128/18169 +f 18128/18169 18039/18080 18083/18124 +f 18084/18125 18083/18124 17955/17996 +f 18084/18125 17997/18038 18085/18126 +f 18040/18081 18129/18170 18085/18126 +f 18000/18041 18086/18127 18040/18081 +f 18090/18131 18086/18127 17958/17999 +f 18042/18083 18123/18164 18087/18128 +f 18087/18128 18002/18043 18001/18042 +f 18087/18128 18088/18129 18002/18043 +f 18130/18171 18046/18087 18044/18085 +f 18131/18172 18044/18085 18089/18130 +f 18045/18086 18131/18172 18089/18130 +f 18090/18131 18046/18087 18132/18173 +f 18045/18086 18088/18129 18133/18174 +f 18048/18089 18047/18088 18134/18175 +f 18135/18176 18047/18088 18009/18050 +f 18136/18177 18049/18090 18048/18089 +f 18137/18178 18091/18132 18008/18049 +f 18091/18132 18135/18176 18009/18050 +f 18137/18178 18008/18049 18092/18133 +f 18092/18133 18050/18091 18138/18179 +f 18051/18092 18049/18090 18136/18177 +f 18139/18180 18010/18051 18093/18134 +f 18094/18135 18010/18051 18139/18180 +f 18056/18097 18140/18181 18053/18094 +f 18140/18181 18096/18137 18053/18094 +f 18096/18137 18141/18182 18054/18095 +f 18054/18095 18141/18182 18095/18136 +f 18097/18138 18012/18053 18094/18135 +f 18013/18054 18097/18138 18142/18183 +f 18142/18183 18098/18139 18013/18054 +f 18098/18139 18143/18184 18056/18097 +f 18014/18055 18095/18136 18103/18144 +f 18101/18142 18057/18098 18058/18099 +f 18099/18140 18101/18142 18058/18099 +f 18099/18140 18016/18057 18100/18141 +f 18018/18059 18104/18145 18100/18141 +f 18101/18142 18102/18143 18017/18058 +f 18050/18091 18102/18143 18144/18185 +f 18103/18144 18104/18145 18059/18100 +f 18105/18146 18145/18186 18060/18101 +f 18060/18101 18146/18187 18093/18134 +f 18106/18147 18105/18146 18061/18102 +f 18063/18104 18147/18188 18062/18103 +f 18147/18188 18107/18148 18062/18103 +f 18107/18148 18148/18189 17981/18022 +f 18063/18104 18108/18149 18149/18190 +f 18064/18105 18118/18159 18108/18149 +f 18022/18063 18065/18106 18110/18151 +f 18150/18191 18065/18106 18109/18150 +f 18148/18189 18109/18150 17981/18022 +f 18066/18107 18110/18151 18151/18192 +f 18066/18107 18111/18152 18067/18108 +f 18113/18154 18112/18153 18023/18064 +f 18112/18153 18115/18156 18026/18067 +f 18152/18193 18068/18109 18111/18152 +f 18152/18193 18113/18154 18068/18109 +f 18069/18110 18070/18111 18153/18194 +f 18114/18155 18069/18110 18153/18194 +f 18154/18195 18070/18111 18115/18156 +f 18114/18155 18155/18196 18071/18112 +f 18071/18112 18156/18197 18072/18113 +f 18117/18158 18028/18069 18116/18157 +f 18116/18157 18072/18113 18157/18198 +f 18118/18159 18029/18070 18125/18166 +f 18158/18199 18031/18072 18051/18092 +f 18119/18160 18031/18072 18159/18200 +f 18074/18115 18160/18201 18075/18116 +f 18074/18115 18119/18160 18161/18202 +f 18162/18203 18120/18161 18075/18116 +f 18120/18161 18163/18204 18076/18117 +f 18033/18074 18121/18162 18164/18205 +f 18076/18117 18163/18204 18121/18162 +f 18122/18163 18165/18206 18034/18075 +f 18122/18163 18033/18074 18164/18205 +f 18034/18075 18165/18206 18123/18164 +f 18078/18119 18124/18165 18125/18166 +f 18037/18078 18126/18167 18166/18207 +f 18167/18208 18079/18120 18127/18168 +f 18127/18168 18037/18078 18166/18207 +f 18168/18209 18080/18121 18079/18120 +f 18169/18210 18124/18165 18080/18121 +f 18126/18167 18081/18122 18170/18211 +f 18171/18212 18081/18122 18082/18123 +f 18128/18169 18172/18213 18082/18123 +f 18083/18124 18084/18125 18128/18169 +f 18084/18125 18085/18126 18128/18169 +f 18173/18214 18129/18170 18040/18081 +f 18085/18126 18129/18170 18174/18215 +f 18040/18081 18086/18127 18173/18214 +f 18090/18131 18175/18216 18086/18127 +f 18088/18129 18087/18128 18123/18164 +f 18132/18173 18046/18087 18130/18171 +f 18130/18171 18044/18085 18176/18217 +f 18131/18172 18176/18217 18044/18085 +f 18131/18172 18045/18086 18133/18174 +f 18177/18218 18090/18131 18132/18173 +f 18088/18129 18123/18164 18133/18174 +f 18047/18088 18178/18219 18134/18175 +f 18179/18220 18048/18089 18134/18175 +f 18178/18219 18047/18088 18135/18176 +f 18136/18177 18048/18089 18179/18220 +f 18180/18221 18091/18132 18137/18178 +f 18135/18176 18091/18132 18180/18221 +f 18138/18179 18137/18178 18092/18133 +f 18138/18179 18050/18091 18144/18185 +f 18136/18177 18158/18199 18051/18092 +f 18181/18222 18139/18180 18093/18134 +f 18139/18180 18181/18222 18094/18135 +f 18140/18181 18056/18097 18143/18184 +f 18096/18137 18140/18181 18182/18223 +f 18096/18137 18183/18224 18141/18182 +f 18103/18144 18095/18136 18141/18182 +f 18097/18138 18094/18135 18184/18225 +f 18142/18183 18097/18138 18185/18226 +f 18186/18227 18098/18139 18142/18183 +f 18098/18139 13955/18228 18143/18184 +f 18101/18142 18099/18140 18187/18229 +f 18100/18141 18188/18230 18099/18140 +f 18100/18141 18104/18145 18189/18231 +f 18187/18229 18102/18143 18101/18142 +f 18102/18143 18187/18229 18144/18185 +f 18104/18145 18103/18144 18190/18232 +f 18060/18101 18145/18186 18191/18233 +f 18145/18186 18105/18146 18192/18234 +f 18060/18101 18193/18235 18146/18187 +f 18194/18236 18093/18134 18146/18187 +f 18105/18146 18106/18147 18192/18234 +f 18147/18188 18063/18104 18149/18190 +f 18107/18148 18147/18188 18195/18237 +f 18148/18189 18107/18148 18196/18238 +f 18149/18190 18108/18149 18118/18159 +f 18065/18106 18150/18191 18110/18151 +f 18109/18150 18197/18239 18150/18191 +f 18109/18150 18148/18189 18196/18238 +f 18150/18191 18151/18192 18110/18151 +f 18066/18107 18151/18192 18111/18152 +f 18112/18153 18113/18154 18152/18193 +f 18112/18153 18198/18240 18115/18156 +f 18152/18193 18111/18152 18199/18241 +f 18200/18242 18153/18194 18070/18111 +f 18153/18194 18155/18196 18114/18155 +f 18154/18195 18115/18156 18198/18240 +f 18070/18111 18154/18195 18200/18242 +f 18201/18243 18071/18112 18155/18196 +f 18071/18112 18201/18243 18156/18197 +f 18157/18198 18072/18113 18156/18197 +f 18116/18157 18202/18244 18117/18158 +f 18202/18244 18116/18157 18157/18198 +f 18118/18159 18125/18166 18149/18190 +f 18158/18199 18159/18200 18031/18072 +f 18203/18245 18119/18160 18159/18200 +f 18160/18201 18074/18115 18204/18246 +f 18162/18203 18075/18116 18160/18201 +f 18161/18202 18119/18160 18203/18245 +f 18205/18247 18074/18115 18161/18202 +f 18163/18204 18120/18161 18162/18203 +f 18121/18162 18206/18248 18164/18205 +f 18121/18162 18163/18204 18206/18248 +f 18207/18249 18165/18206 18122/18163 +f 18164/18205 18208/18250 18122/18163 +f 18209/18251 18123/18164 18165/18206 +f 18124/18165 18210/18252 18125/18166 +f 18170/18211 18166/18207 18126/18167 +f 18211/18253 18167/18208 18127/18168 +f 18212/18254 18079/18120 18167/18208 +f 18166/18207 18213/18255 18127/18168 +f 18080/18121 18168/18209 18169/18210 +f 18168/18209 18079/18120 18212/18254 +f 18124/18165 18169/18210 18214/18256 +f 18170/18211 18081/18122 18171/18212 +f 18171/18212 18082/18123 18215/18257 +f 18216/18258 18082/18123 18172/18213 +f 18217/18259 18172/18213 18128/18169 +f 18085/18126 18217/18259 18128/18169 +f 18218/18260 18129/18170 18173/18214 +f 18085/18126 18174/18215 18217/18259 +f 18129/18170 18219/18261 18174/18215 +f 18086/18127 18175/18216 18173/18214 +f 18220/18262 18175/18216 18090/18131 +f 18130/18171 18221/18263 18132/18173 +f 18176/18217 18222/18264 18130/18171 +f 18176/18217 18131/18172 18223/18265 +f 18209/18251 18131/18172 18133/18174 +f 18177/18218 18224/18266 18090/18131 +f 18225/18267 18177/18218 18132/18173 +f 18123/18164 18209/18251 18133/18174 +f 18134/18175 18178/18219 18226/18268 +f 18227/18269 18179/18220 18134/18175 +f 18226/18268 18178/18219 18135/18176 +f 18179/18220 18158/18199 18136/18177 +f 18228/18270 18180/18221 18137/18178 +f 18135/18176 18180/18221 18226/18268 +f 18137/18178 18138/18179 18228/18270 +f 18144/18185 18229/18271 18138/18179 +f 18194/18236 18181/18222 18093/18134 +f 18181/18222 18184/18225 18094/18135 +f 18230/18272 18140/18181 18143/18184 +f 18230/18272 18182/18223 18140/18181 +f 18182/18223 18183/18224 18096/18137 +f 18141/18182 18183/18224 18231/18273 +f 18103/18144 18141/18182 18190/18232 +f 18184/18225 18185/18226 18097/18138 +f 18142/18183 18185/18226 18232/18274 +f 18186/18227 13799/18275 18098/18139 +f 18142/18183 18232/18274 18186/18227 +f 18098/18139 13799/18275 13955/18228 +f 18143/18184 13955/18228 14087/18276 +f 18188/18230 18187/18229 18099/18140 +f 18233/18277 18188/18230 18100/18141 +f 18100/18141 18189/18231 18233/18277 +f 18189/18231 18104/18145 18190/18232 +f 18234/18278 18144/18185 18187/18229 +f 18191/18233 18145/18186 18235/18279 +f 18060/18101 18191/18233 18236/18280 +f 18235/18279 18145/18186 18192/18234 +f 18146/18187 18193/18235 18237/18281 +f 18193/18235 18060/18101 18236/18280 +f 18194/18236 18146/18187 18237/18281 +f 18238/18282 18192/18234 18106/18147 +f 18239/18283 18147/18188 18149/18190 +f 18147/18188 18239/18283 18195/18237 +f 18107/18148 18195/18237 18240/18284 +f 18196/18238 18107/18148 18240/18284 +f 18241/18285 18197/18239 18109/18150 +f 18150/18191 18197/18239 18242/18286 +f 18196/18238 18241/18285 18109/18150 +f 18150/18191 18243/18287 18151/18192 +f 18111/18152 18151/18192 18199/18241 +f 18112/18153 18152/18193 18244/18288 +f 18112/18153 18245/18289 18198/18240 +f 18152/18193 18199/18241 18246/18290 +f 18200/18242 18155/18196 18153/18194 +f 18198/18240 18247/18291 18154/18195 +f 18200/18242 18154/18195 18248/18292 +f 18201/18243 18155/18196 18249/18293 +f 18156/18197 18201/18243 18250/18294 +f 18157/18198 18156/18197 18250/18294 +f 18157/18198 18250/18294 18202/18244 +f 18149/18190 18125/18166 18251/18295 +f 18159/18200 18158/18199 18252/18296 +f 18203/18245 18159/18200 18252/18296 +f 18205/18247 18204/18246 18074/18115 +f 18253/18297 18160/18201 18204/18246 +f 18162/18203 18160/18201 18254/18298 +f 18205/18247 18161/18202 18203/18245 +f 18163/18204 18162/18203 18255/18299 +f 18206/18248 18256/18300 18164/18205 +f 18257/18301 18206/18248 18163/18204 +f 18122/18163 18208/18250 18207/18249 +f 18165/18206 18207/18249 18209/18251 +f 18208/18250 18164/18205 18258/18302 +f 18210/18252 18124/18165 18214/18256 +f 18125/18166 18210/18252 18214/18256 +f 18213/18255 18166/18207 18170/18211 +f 18167/18208 18211/18253 18259/18303 +f 18213/18255 18211/18253 18127/18168 +f 18167/18208 18260/18304 18212/18254 +f 18168/18209 18261/18305 18169/18210 +f 18262/18306 18168/18209 18212/18254 +f 18214/18256 18169/18210 18261/18305 +f 18170/18211 18171/18212 18263/18307 +f 18215/18257 18082/18123 18216/18258 +f 18171/18212 18215/18257 18263/18307 +f 18216/18258 18172/18213 18264/18308 +f 18217/18259 18174/18215 18172/18213 +f 18219/18261 18129/18170 18218/18260 +f 18173/18214 18265/18309 18218/18260 +f 18219/18261 18172/18213 18174/18215 +f 18265/18309 18173/18214 18175/18216 +f 18265/18309 18175/18216 18220/18262 +f 18224/18266 18220/18262 18090/18131 +f 18132/18173 18221/18263 18225/18267 +f 18130/18171 18222/18264 18221/18263 +f 18266/18310 18222/18264 18176/18217 +f 18223/18265 18266/18310 18176/18217 +f 18223/18265 18131/18172 18207/18249 +f 18207/18249 18131/18172 18209/18251 +f 18267/18311 18224/18266 18177/18218 +f 18177/18218 18225/18267 18268/18312 +f 18226/18268 18269/18313 18134/18175 +f 18134/18175 18270/18314 18227/18269 +f 18227/18269 18271/18315 18179/18220 +f 18158/18199 18179/18220 18252/18296 +f 18226/18268 18180/18221 18228/18270 +f 18138/18179 18229/18271 18228/18270 +f 18272/18316 18229/18271 18144/18185 +f 18273/18317 18181/18222 18194/18236 +f 18184/18225 18181/18222 18274/18318 +f 18143/18184 18275/18319 18230/18272 +f 18182/18223 18230/18272 18276/18320 +f 18182/18223 18231/18273 18183/18224 +f 18231/18273 18277/18321 18141/18182 +f 18141/18182 18278/18322 18190/18232 +f 18279/18323 18185/18226 18184/18225 +f 18185/18226 18280/18324 18232/18274 +f 18186/18227 18281/18325 13799/18275 +f 18281/18325 18186/18227 18232/18274 +f 18143/18184 14087/18276 18282/18326 +f 18188/18230 18283/18327 18187/18229 +f 18283/18327 18188/18230 18233/18277 +f 18189/18231 18277/18321 18233/18277 +f 18278/18322 18189/18231 18190/18232 +f 18284/18328 18144/18185 18234/18278 +f 18234/18278 18187/18229 18285/18329 +f 18235/18279 18286/18330 18191/18233 +f 18287/18331 18236/18280 18191/18233 +f 18288/18332 18235/18279 18192/18234 +f 18237/18281 18193/18235 18289/18333 +f 18236/18280 18290/18334 18193/18235 +f 18194/18236 18237/18281 18273/18317 +f 18291/18335 18192/18234 18238/18282 +f 18149/18190 18251/18295 18239/18283 +f 18239/18283 18292/18336 18195/18237 +f 18293/18337 18240/18284 18195/18237 +f 18240/18284 18241/18285 18196/18238 +f 18197/18239 18241/18285 18294/18338 +f 18150/18191 18242/18286 18243/18287 +f 18197/18239 18294/18338 18242/18286 +f 18151/18192 18243/18287 18295/18339 +f 18151/18192 18295/18339 18199/18241 +f 18246/18290 18244/18288 18152/18193 +f 18245/18289 18112/18153 18244/18288 +f 18296/18340 18198/18240 18245/18289 +f 18199/18241 18297/18341 18246/18290 +f 18155/18196 18200/18242 18248/18292 +f 18296/18340 18247/18291 18198/18240 +f 18154/18195 18247/18291 18298/18342 +f 18248/18292 18154/18195 18298/18342 +f 18299/18343 18249/18293 18155/18196 +f 18249/18293 18300/18344 18201/18243 +f 18201/18243 18300/18344 18250/18294 +f 18202/18244 18250/18294 18301/18345 +f 18251/18295 18125/18166 18302/18346 +f 18252/18296 18303/18347 18203/18245 +f 18205/18247 18304/18348 18204/18246 +f 18254/18298 18160/18201 18253/18297 +f 18253/18297 18204/18246 18305/18349 +f 18306/18350 18162/18203 18254/18298 +f 18205/18247 18203/18245 18304/18348 +f 18162/18203 18306/18350 18255/18299 +f 18163/18204 18255/18299 18257/18301 +f 18307/18351 18256/18300 18206/18248 +f 18256/18300 18258/18302 18164/18205 +f 18307/18351 18206/18248 18257/18301 +f 18308/18352 18207/18249 18208/18250 +f 18258/18302 18309/18353 18208/18250 +f 18302/18346 18125/18166 18214/18256 +f 18310/18354 18213/18255 18170/18211 +f 18311/18355 18259/18303 18211/18253 +f 18259/18303 18260/18304 18167/18208 +f 18211/18253 18213/18255 18310/18354 +f 18212/18254 18260/18304 18312/18356 +f 18168/18209 18262/18306 18261/18305 +f 18313/18357 18262/18306 18212/18254 +f 18314/18358 18214/18256 18261/18305 +f 18310/18354 18170/18211 18263/18307 +f 18216/18258 18264/18308 18215/18257 +f 18215/18257 18264/18308 18263/18307 +f 18264/18308 18172/18213 18315/18359 +f 18316/18360 18219/18261 18218/18260 +f 18220/18262 18218/18260 18265/18309 +f 18172/18213 18219/18261 18315/18359 +f 18220/18262 18224/18266 18316/18360 +f 18221/18263 18317/18361 18225/18267 +f 18222/18264 18317/18361 18221/18263 +f 18266/18310 18318/18362 18222/18264 +f 18319/18363 18266/18310 18223/18265 +f 18223/18265 18207/18249 18320/18364 +f 18224/18266 18267/18311 18321/18365 +f 18267/18311 18177/18218 18268/18312 +f 18225/18267 18322/18366 18268/18312 +f 18269/18313 18226/18268 18323/18367 +f 18269/18313 18270/18314 18134/18175 +f 18270/18314 18324/18368 18227/18269 +f 18227/18269 18325/18369 18271/18315 +f 18271/18315 18326/18370 18179/18220 +f 18252/18296 18179/18220 18326/18370 +f 18228/18270 18323/18367 18226/18268 +f 18228/18270 18229/18271 18327/18371 +f 18272/18316 18327/18371 18229/18271 +f 18328/18372 18272/18316 18144/18185 +f 18273/18317 18274/18318 18181/18222 +f 18274/18318 18329/18373 18184/18225 +f 18275/18319 18276/18320 18230/18272 +f 18275/18319 18143/18184 18282/18326 +f 18182/18223 18276/18320 18231/18273 +f 18277/18321 18278/18322 18141/18182 +f 18231/18273 18330/18374 18277/18321 +f 18185/18226 18279/18323 18280/18324 +f 18184/18225 18329/18373 18279/18323 +f 18331/18375 18232/18274 18280/18324 +f 13799/18275 18281/18325 13802/18376 +f 18232/18274 18331/18375 18281/18325 +f 14087/18276 14147/18377 18282/18326 +f 18283/18327 18285/18329 18187/18229 +f 18233/18277 18332/18378 18283/18327 +f 18277/18321 18189/18231 18278/18322 +f 18277/18321 18333/18379 18233/18277 +f 18284/18328 18328/18372 18144/18185 +f 18334/18380 18284/18328 18234/18278 +f 18335/18381 18234/18278 18285/18329 +f 18336/18382 18286/18330 18235/18279 +f 18191/18233 18286/18330 18337/18383 +f 18236/18280 18287/18331 18290/18334 +f 18337/18383 18287/18331 18191/18233 +f 18235/18279 18288/18332 18336/18382 +f 18288/18332 18192/18234 18291/18335 +f 18289/18333 18273/18317 18237/18281 +f 18289/18333 18193/18235 18338/18384 +f 18338/18384 18193/18235 18290/18334 +f 18339/18385 18291/18335 18238/18282 +f 18239/18283 18251/18295 18292/18336 +f 18195/18237 18292/18336 18293/18337 +f 18240/18284 18293/18337 18340/18386 +f 18240/18284 18340/18386 18241/18285 +f 18294/18338 18241/18285 18341/18387 +f 18342/18388 18243/18287 18242/18286 +f 18294/18338 18343/18389 18242/18286 +f 18295/18339 18243/18287 18344/18390 +f 18345/18391 18199/18241 18295/18339 +f 18244/18288 18246/18290 18346/18392 +f 18245/18289 18244/18288 18347/18393 +f 18348/18394 18296/18340 18245/18289 +f 18199/18241 18345/18391 18297/18341 +f 18297/18341 18349/18395 18246/18290 +f 18299/18343 18155/18196 18248/18292 +f 18247/18291 18296/18340 18348/18394 +f 18247/18291 18348/18394 18298/18342 +f 18350/18396 18248/18292 18298/18342 +f 18299/18343 18351/18397 18249/18293 +f 18351/18397 18300/18344 18249/18293 +f 18250/18294 18300/18344 18352/18398 +f 18301/18345 18250/18294 18352/18398 +f 18302/18346 18353/18399 18251/18295 +f 18303/18347 18354/18400 18203/18245 +f 18326/18370 18303/18347 18252/18296 +f 18304/18348 18355/18401 18204/18246 +f 18254/18298 18253/18297 18356/18402 +f 18355/18401 18305/18349 18204/18246 +f 18305/18349 18357/18403 18253/18297 +f 18358/18404 18306/18350 18254/18298 +f 18203/18245 18354/18400 18304/18348 +f 18359/18405 18255/18299 18306/18350 +f 18255/18299 18359/18405 18257/18301 +f 18307/18351 18360/18406 18256/18300 +f 18361/18407 18258/18302 18256/18300 +f 18307/18351 18257/18301 18362/18408 +f 18208/18250 18363/18409 18308/18352 +f 18320/18364 18207/18249 18308/18352 +f 18309/18353 18258/18302 18361/18407 +f 18309/18353 18363/18409 18208/18250 +f 18364/18410 18302/18346 18214/18256 +f 18365/18411 18259/18303 18311/18355 +f 18310/18354 18311/18355 18211/18253 +f 18260/18304 18259/18303 18366/18412 +f 18366/18412 18312/18356 18260/18304 +f 18312/18356 18313/18357 18212/18254 +f 18314/18358 18261/18305 18262/18306 +f 18367/18413 18262/18306 18313/18357 +f 18214/18256 18314/18358 18368/18414 +f 18263/18307 18369/18415 18310/18354 +f 18264/18308 18369/18415 18263/18307 +f 18369/18415 18264/18308 18315/18359 +f 18316/18360 18218/18260 18220/18262 +f 18219/18261 18316/18360 18315/18359 +f 18316/18360 18224/18266 18370/18416 +f 18225/18267 18317/18361 18371/18417 +f 18317/18361 18222/18264 18318/18362 +f 18372/18418 18318/18362 18266/18310 +f 18266/18310 18319/18363 18373/18419 +f 18223/18265 18374/18420 18319/18363 +f 18320/18364 18374/18420 18223/18265 +f 18375/18421 18321/18365 18267/18311 +f 18224/18266 18321/18365 18370/18416 +f 18375/18421 18267/18311 18268/18312 +f 18225/18267 18371/18417 18322/18366 +f 18376/18422 18268/18312 18322/18366 +f 18269/18313 18323/18367 18377/18423 +f 18377/18423 18270/18314 18269/18313 +f 18324/18368 18378/18424 18227/18269 +f 18324/18368 18270/18314 18377/18423 +f 18227/18269 18378/18424 18325/18369 +f 18271/18315 18325/18369 18379/18425 +f 18326/18370 18271/18315 18379/18425 +f 18327/18371 18323/18367 18228/18270 +f 18327/18371 18272/18316 18380/18426 +f 18380/18426 18272/18316 18328/18372 +f 18381/18427 18274/18318 18273/18317 +f 18329/18373 18274/18318 18381/18427 +f 18382/18428 18276/18320 18275/18319 +f 18275/18319 18282/18326 18382/18428 +f 18231/18273 18276/18320 18383/18429 +f 18330/18374 18231/18273 18384/18430 +f 18330/18374 18333/18379 18277/18321 +f 18279/18323 18385/18431 18280/18324 +f 18329/18373 18385/18431 18279/18323 +f 18386/18432 18331/18375 18280/18324 +f 18387/18433 13802/18376 18281/18325 +f 18387/18433 18281/18325 18331/18375 +f 18282/18326 14147/18377 18388/18434 +f 18285/18329 18283/18327 18332/18378 +f 18333/18379 18332/18378 18233/18277 +f 18389/18435 18328/18372 18284/18328 +f 18284/18328 18334/18380 18390/18436 +f 18334/18380 18234/18278 18335/18381 +f 18332/18378 18335/18381 18285/18329 +f 18391/18437 18286/18330 18336/18382 +f 18392/18438 18337/18383 18286/18330 +f 18287/18331 18337/18383 18290/18334 +f 18288/18332 18291/18335 18336/18382 +f 18393/18439 18273/18317 18289/18333 +f 18289/18333 18338/18384 18393/18439 +f 18290/18334 18394/18440 18338/18384 +f 18291/18335 18339/18385 18395/18441 +f 18292/18336 18251/18295 18353/18399 +f 18292/18336 18396/18442 18293/18337 +f 18397/18443 18340/18386 18293/18337 +f 18341/18387 18241/18285 18340/18386 +f 18294/18338 18341/18387 18398/18444 +f 18399/18445 18342/18388 18242/18286 +f 18344/18390 18243/18287 18342/18388 +f 18343/18389 18399/18445 18242/18286 +f 18343/18389 18294/18338 18398/18444 +f 18344/18390 18400/18446 18295/18339 +f 18400/18446 18345/18391 18295/18339 +f 18346/18392 18401/18447 18244/18288 +f 18246/18290 18349/18395 18346/18392 +f 18347/18393 18348/18394 18245/18289 +f 18347/18393 18244/18288 18401/18447 +f 18345/18391 18402/18448 18297/18341 +f 18297/18341 18403/18449 18349/18395 +f 18299/18343 18248/18292 18404/18450 +f 18298/18342 18348/18394 18350/18396 +f 18248/18292 18350/18396 18405/18451 +f 18351/18397 18299/18343 18406/18452 +f 18407/18453 18300/18344 18351/18397 +f 18300/18344 18407/18453 18352/18398 +f 18352/18398 18408/18454 18301/18345 +f 18353/18399 18302/18346 18364/18410 +f 18354/18400 18303/18347 18409/18455 +f 18303/18347 18326/18370 18410/18456 +f 18355/18401 18304/18348 18411/18457 +f 18356/18402 18253/18297 18357/18403 +f 18412/18458 18254/18298 18356/18402 +f 18305/18349 18355/18401 18413/18459 +f 18357/18403 18305/18349 18414/18460 +f 18412/18458 18358/18404 18254/18298 +f 18306/18350 18358/18404 18415/18461 +f 18304/18348 18354/18400 18411/18457 +f 18359/18405 18306/18350 18416/18462 +f 18257/18301 18359/18405 18417/18463 +f 18256/18300 18360/18406 18418/18464 +f 18360/18406 18307/18351 18362/18408 +f 18256/18300 18419/18465 18361/18407 +f 18362/18408 18257/18301 18420/18466 +f 18421/18467 18308/18352 18363/18409 +f 18308/18352 18421/18467 18320/18364 +f 18422/18468 18309/18353 18361/18407 +f 18363/18409 18309/18353 18423/18469 +f 18364/18410 18214/18256 18424/18470 +f 18311/18355 18425/18471 18365/18411 +f 18366/18412 18259/18303 18365/18411 +f 18369/18415 18311/18355 18310/18354 +f 18312/18356 18366/18412 18426/18472 +f 18313/18357 18312/18356 18367/18413 +f 18262/18306 18427/18473 18314/18358 +f 18428/18474 18262/18306 18367/18413 +f 18214/18256 18368/18414 18424/18470 +f 18314/18358 18429/18475 18368/18414 +f 18315/18359 18370/18416 18369/18415 +f 18316/18360 18370/18416 18315/18359 +f 18371/18417 18317/18361 18372/18418 +f 18318/18362 18372/18418 18317/18361 +f 18430/18476 18372/18418 18266/18310 +f 18373/18419 18431/18477 18266/18310 +f 18432/18478 18373/18419 18319/18363 +f 18432/18478 18319/18363 18374/18420 +f 18421/18467 18374/18420 18320/18364 +f 18321/18365 18375/18421 18433/18479 +f 18321/18365 18434/18480 18370/18416 +f 18435/18481 18375/18421 18268/18312 +f 18371/18417 18436/18482 18322/18366 +f 18376/18422 18437/18483 18268/18312 +f 18438/18484 18376/18422 18322/18366 +f 18323/18367 18439/18485 18377/18423 +f 18440/18486 18378/18424 18324/18368 +f 18377/18423 18440/18486 18324/18368 +f 18441/18487 18325/18369 18378/18424 +f 18379/18425 18325/18369 18442/18488 +f 18443/18489 18326/18370 18379/18425 +f 18323/18367 18327/18371 18380/18426 +f 18328/18372 18439/18485 18380/18426 +f 18381/18427 18273/18317 18393/18439 +f 18329/18373 18381/18427 18393/18439 +f 18382/18428 18444/18490 18276/18320 +f 18382/18428 18282/18326 18388/18434 +f 18384/18430 18231/18273 18383/18429 +f 18276/18320 18445/18491 18383/18429 +f 18384/18430 18333/18379 18330/18374 +f 18385/18431 18386/18432 18280/18324 +f 18329/18373 18393/18439 18385/18431 +f 18386/18432 18387/18433 18331/18375 +f 13801/18492 13802/18376 18387/18433 +f 18388/18434 14147/18377 14085/18493 +f 18333/18379 18335/18381 18332/18378 +f 18389/18435 18446/18494 18328/18372 +f 18390/18436 18389/18435 18284/18328 +f 18334/18380 18447/18495 18390/18436 +f 18448/18496 18334/18380 18335/18381 +f 18395/18441 18391/18437 18336/18382 +f 18391/18437 18449/18497 18286/18330 +f 18450/18498 18337/18383 18392/18438 +f 18286/18330 18449/18497 18392/18438 +f 18337/18383 18451/18499 18290/18334 +f 18336/18382 18291/18335 18395/18441 +f 18393/18439 18338/18384 18452/18500 +f 18394/18440 18453/18501 18338/18384 +f 18290/18334 18454/18502 18394/18440 +f 18353/18399 18455/18503 18292/18336 +f 18456/18504 18396/18442 18292/18336 +f 18397/18443 18293/18337 18396/18442 +f 18457/18505 18340/18386 18397/18443 +f 18457/18505 18341/18387 18340/18386 +f 18341/18387 18458/18506 18398/18444 +f 18344/18390 18342/18388 18399/18445 +f 18343/18389 18459/18507 18399/18445 +f 18459/18507 18343/18389 18398/18444 +f 18344/18390 18460/18508 18400/18446 +f 18345/18391 18400/18446 18461/18509 +f 18346/18392 18349/18395 18401/18447 +f 18462/18510 18348/18394 18347/18393 +f 18347/18393 18401/18447 18463/18511 +f 18402/18448 18345/18391 18461/18509 +f 18403/18449 18297/18341 18402/18448 +f 18349/18395 18403/18449 18464/18512 +f 18465/18513 18404/18450 18248/18292 +f 18466/18514 18299/18343 18404/18450 +f 18348/18394 18467/18515 18350/18396 +f 18465/18513 18248/18292 18405/18451 +f 18405/18451 18350/18396 18468/18516 +f 18406/18452 18469/18517 18351/18397 +f 18406/18452 18299/18343 18466/18514 +f 18470/18518 18407/18453 18351/18397 +f 18471/18519 18352/18398 18407/18453 +f 18408/18454 18352/18398 18471/18519 +f 18353/18399 18364/18410 18472/18520 +f 18409/18455 18303/18347 18410/18456 +f 18354/18400 18409/18455 18411/18457 +f 18326/18370 18443/18489 18410/18456 +f 18355/18401 18411/18457 18413/18459 +f 18356/18402 18357/18403 18473/18521 +f 18474/18522 18412/18458 18356/18402 +f 18443/18489 18305/18349 18413/18459 +f 18379/18425 18414/18460 18305/18349 +f 18414/18460 18473/18521 18357/18403 +f 18412/18458 18475/18523 18358/18404 +f 18415/18461 18416/18462 18306/18350 +f 18415/18461 18358/18404 18475/18523 +f 18416/18462 18417/18463 18359/18405 +f 18257/18301 18417/18463 18420/18466 +f 18360/18406 18476/18524 18418/18464 +f 18256/18300 18418/18464 18419/18465 +f 18360/18406 18362/18408 18477/18525 +f 18422/18468 18361/18407 18419/18465 +f 18362/18408 18420/18466 18478/18526 +f 18363/18409 18479/18527 18421/18467 +f 18480/18528 18309/18353 18422/18468 +f 18480/18528 18423/18469 18309/18353 +f 18423/18469 18479/18527 18363/18409 +f 18481/18529 18364/18410 18424/18470 +f 18425/18471 18311/18355 18369/18415 +f 18365/18411 18425/18471 18482/18530 +f 18365/18411 18482/18530 18366/18412 +f 18483/18531 18426/18472 18366/18412 +f 18426/18472 18484/18532 18312/18356 +f 18312/18356 18484/18532 18367/18413 +f 18428/18474 18427/18473 18262/18306 +f 18314/18358 18427/18473 18429/18475 +f 18367/18413 18485/18533 18428/18474 +f 18368/18414 18429/18475 18424/18470 +f 18369/18415 18370/18416 18425/18471 +f 18436/18482 18371/18417 18372/18418 +f 18430/18476 18266/18310 18431/18477 +f 18372/18418 18430/18476 18436/18482 +f 18373/18419 18486/18534 18431/18477 +f 18373/18419 18432/18478 18486/18534 +f 18432/18478 18374/18420 18487/18535 +f 18421/18467 18488/18536 18374/18420 +f 18321/18365 18433/18479 18489/18537 +f 18375/18421 18490/18538 18433/18479 +f 18434/18480 18321/18365 18491/18539 +f 18370/18416 18434/18480 18492/18540 +f 18490/18538 18375/18421 18435/18481 +f 18437/18483 18435/18481 18268/18312 +f 18438/18484 18322/18366 18436/18482 +f 8687/18541 18437/18483 18376/18422 +f 8553/18542 18376/18422 18438/18484 +f 18380/18426 18439/18485 18323/18367 +f 18440/18486 18377/18423 18439/18485 +f 18378/18424 18440/18486 18493/18543 +f 14949/18544 18325/18369 18441/18487 +f 18494/18545 18441/18487 18378/18424 +f 18325/18369 14949/18544 18442/18488 +f 18442/18488 18414/18460 18379/18425 +f 18305/18349 18443/18489 18379/18425 +f 18439/18485 18328/18372 18493/18543 +f 18276/18320 18444/18490 18445/18491 +f 18444/18490 18382/18428 13989/18546 +f 13989/18546 18382/18428 18388/18434 +f 18495/18547 18384/18430 18383/18429 +f 18496/18548 18383/18429 18445/18491 +f 18448/18496 18333/18379 18384/18430 +f 18497/18549 18386/18432 18385/18431 +f 18393/18439 18452/18500 18385/18431 +f 18498/18550 18387/18433 18386/18432 +f 18387/18433 13800/18551 13801/18492 +f 18388/18434 14085/18493 13989/18546 +f 18333/18379 18448/18496 18335/18381 +f 18328/18372 18446/18494 18493/18543 +f 18499/18552 18446/18494 18389/18435 +f 18500/18553 18389/18435 18390/18436 +f 18501/18554 18390/18436 18447/18495 +f 18448/18496 18447/18495 18334/18380 +f 18395/18441 18502/18555 18391/18437 +f 18502/18555 18449/18497 18391/18437 +f 18450/18498 18451/18499 18337/18383 +f 18503/18556 18450/18498 18392/18438 +f 18503/18556 18392/18438 18449/18497 +f 18451/18499 18504/18557 18290/18334 +f 18338/18384 18453/18501 18452/18500 +f 18453/18501 18394/18440 18505/18558 +f 18506/18559 18394/18440 18454/18502 +f 18290/18334 18504/18557 18454/18502 +f 18472/18520 18455/18503 18353/18399 +f 18292/18336 18455/18503 18456/18504 +f 18507/18560 18396/18442 18456/18504 +f 18397/18443 18396/18442 18508/18561 +f 18508/18561 18457/18505 18397/18443 +f 18341/18387 18457/18505 18458/18506 +f 18459/18507 18398/18444 18458/18506 +f 18344/18390 18399/18445 18460/18508 +f 18459/18507 18509/18562 18399/18445 +f 18460/18508 18510/18563 18400/18446 +f 18461/18509 18400/18446 18511/18564 +f 18401/18447 18349/18395 18512/18565 +f 18347/18393 18463/18511 18462/18510 +f 18462/18510 18513/18566 18348/18394 +f 18512/18565 18463/18511 18401/18447 +f 18461/18509 18514/18567 18402/18448 +f 18515/18568 18403/18449 18402/18448 +f 18464/18512 18512/18565 18349/18395 +f 18464/18512 18403/18449 18516/18569 +f 18517/18570 18404/18450 18465/18513 +f 18466/18514 18404/18450 18518/18571 +f 18513/18566 18467/18515 18348/18394 +f 18467/18515 18468/18516 18350/18396 +f 18519/18572 18465/18513 18405/18451 +f 18405/18451 18468/18516 18519/18572 +f 18466/18514 18469/18517 18406/18452 +f 18470/18518 18351/18397 18469/18517 +f 18407/18453 18470/18518 18471/18519 +f 18520/18573 18408/18454 18471/18519 +f 18472/18520 18364/18410 18481/18529 +f 18443/18489 18409/18455 18410/18456 +f 18411/18457 18409/18455 18521/18574 +f 18411/18457 18521/18574 18413/18459 +f 18473/18521 18474/18522 18356/18402 +f 18474/18522 18522/18575 18412/18458 +f 18413/18459 18523/18576 18443/18489 +f 18414/18460 18524/18577 18473/18521 +f 18522/18575 18475/18523 18412/18458 +f 18525/18578 18416/18462 18415/18461 +f 18415/18461 18475/18523 18526/18579 +f 18417/18463 18416/18462 18527/18580 +f 18420/18466 18417/18463 18528/18581 +f 18476/18524 18360/18406 18477/18525 +f 18476/18524 18529/18582 18418/18464 +f 18418/18464 18530/18583 18419/18465 +f 18362/18408 18478/18526 18477/18525 +f 18419/18465 18530/18583 18422/18468 +f 18420/18466 18531/18584 18478/18526 +f 18421/18467 18479/18527 18488/18536 +f 18422/18468 18532/18585 18480/18528 +f 18423/18469 18480/18528 18479/18527 +f 18481/18529 18424/18470 18533/18586 +f 18482/18530 18425/18471 18534/18587 +f 18483/18531 18366/18412 18482/18530 +f 18535/18588 18426/18472 18483/18531 +f 18484/18532 18426/18472 18536/18589 +f 18367/18413 18484/18532 18485/18533 +f 18537/18590 18427/18473 18428/18474 +f 18429/18475 18427/18473 18533/18586 +f 18537/18590 18428/18474 18485/18533 +f 18533/18586 18424/18470 18429/18475 +f 18425/18471 18370/18416 18492/18540 +f 18431/18477 18538/18591 18430/18476 +f 18436/18482 18430/18476 18538/18591 +f 18431/18477 18486/18534 18539/18592 +f 18486/18534 18432/18478 18540/18593 +f 18487/18535 18374/18420 18488/18536 +f 18541/18594 18432/18478 18487/18535 +f 18489/18537 18491/18539 18321/18365 +f 18489/18537 18433/18479 18490/18538 +f 18491/18539 18492/18540 18434/18480 +f 18435/18481 18542/18595 18490/18538 +f 18437/18483 8720/18596 18435/18481 +f 18543/18597 18438/18484 18436/18482 +f 8687/18541 8720/18596 18437/18483 +f 18376/18422 8597/18598 8687/18541 +f 8597/18598 18376/18422 8553/18542 +f 18544/18599 8553/18542 18438/18484 +f 18440/18486 18439/18485 18493/18543 +f 18494/18545 18378/18424 18493/18543 +f 14949/18544 18441/18487 14798/18600 +f 18494/18545 14798/18600 18441/18487 +f 18545/18601 18442/18488 14949/18544 +f 18442/18488 18545/18601 18414/18460 +f 13924/18602 18445/18491 18444/18490 +f 13989/18546 13988/18603 18444/18490 +f 18495/18547 18448/18496 18384/18430 +f 18495/18547 18383/18429 18546/18604 +f 18496/18548 18546/18604 18383/18429 +f 18547/18605 18496/18548 18445/18491 +f 18548/18606 18386/18432 18497/18549 +f 18497/18549 18385/18431 18452/18500 +f 13800/18551 18387/18433 18498/18550 +f 18498/18550 18386/18432 18548/18606 +f 18493/18543 18446/18494 18549/18607 +f 18446/18494 18499/18552 18550/18608 +f 18500/18553 18499/18552 18389/18435 +f 18390/18436 18551/18609 18500/18553 +f 18447/18495 18552/18610 18501/18554 +f 18501/18554 18553/18611 18390/18436 +f 18447/18495 18448/18496 18495/18547 +f 18502/18555 18503/18556 18449/18497 +f 18451/18499 18450/18498 18554/18612 +f 18450/18498 18503/18556 18555/18613 +f 18504/18557 18451/18499 18556/18614 +f 18452/18500 18453/18501 18557/18615 +f 18394/18440 18506/18559 18505/18558 +f 18453/18501 18505/18558 18558/18616 +f 18559/18617 18506/18559 18454/18502 +f 18504/18557 18560/18618 18454/18502 +f 18472/18520 18456/18504 18455/18503 +f 18561/18619 18507/18560 18456/18504 +f 18562/18620 18396/18442 18507/18560 +f 18562/18620 18508/18561 18396/18442 +f 18457/18505 18508/18561 18563/18621 +f 18457/18505 18564/18622 18458/18506 +f 18458/18506 18565/18623 18459/18507 +f 18460/18508 18399/18445 18566/18624 +f 18399/18445 18509/18562 18566/18624 +f 18459/18507 18565/18623 18509/18562 +f 18460/18508 18567/18625 18510/18563 +f 18400/18446 18510/18563 18511/18564 +f 18461/18509 18511/18564 18514/18567 +f 18513/18566 18462/18510 18463/18511 +f 18568/18626 18463/18511 18512/18565 +f 18514/18567 18569/18627 18402/18448 +f 18403/18449 18515/18568 18516/18569 +f 18569/18627 18515/18568 18402/18448 +f 18464/18512 18568/18626 18512/18565 +f 18516/18569 18570/18628 18464/18512 +f 18518/18571 18404/18450 18517/18570 +f 18517/18570 18465/18513 18571/18629 +f 18572/18630 18466/18514 18518/18571 +f 18467/18515 18513/18566 18573/18631 +f 18574/18632 18468/18516 18467/18515 +f 18519/18572 18571/18629 18465/18513 +f 18519/18572 18468/18516 18575/18633 +f 18572/18630 18469/18517 18466/18514 +f 18576/18634 18470/18518 18469/18517 +f 18471/18519 18470/18518 18577/18635 +f 18578/18636 18408/18454 18520/18573 +f 18579/18637 18520/18573 18471/18519 +f 18481/18529 18580/18638 18472/18520 +f 18409/18455 18443/18489 18523/18576 +f 18521/18574 18409/18455 18523/18576 +f 18521/18574 18523/18576 18413/18459 +f 18473/18521 18581/18639 18474/18522 +f 18474/18522 18582/18640 18522/18575 +f 18414/18460 18545/18601 18524/18577 +f 18524/18577 18583/18641 18473/18521 +f 18584/18642 18475/18523 18522/18575 +f 18527/18580 18416/18462 18525/18578 +f 18526/18579 18525/18578 18415/18461 +f 18475/18523 18585/18643 18526/18579 +f 18528/18581 18417/18463 18527/18580 +f 18528/18581 18531/18584 18420/18466 +f 18476/18524 18477/18525 18586/18644 +f 18476/18524 18586/18644 18529/18582 +f 18530/18583 18418/18464 18529/18582 +f 18586/18644 18477/18525 18478/18526 +f 18587/18645 18422/18468 18530/18583 +f 18531/18584 18586/18644 18478/18526 +f 18479/18527 18532/18585 18488/18536 +f 18480/18528 18532/18585 18479/18527 +f 18587/18645 18532/18585 18422/18468 +f 18533/18586 18427/18473 18481/18529 +f 18588/18646 18534/18587 18425/18471 +f 18534/18587 18483/18531 18482/18530 +f 18535/18588 18589/18647 18426/18472 +f 18535/18588 18483/18531 18534/18587 +f 18589/18647 18536/18589 18426/18472 +f 18485/18533 18484/18532 18536/18589 +f 18427/18473 18537/18590 18481/18529 +f 18485/18533 18590/18648 18537/18590 +f 18425/18471 18492/18540 18588/18646 +f 18591/18649 18538/18591 18431/18477 +f 18436/18482 18538/18591 18592/18650 +f 18486/18534 18540/18593 18539/18592 +f 18591/18649 18431/18477 18539/18592 +f 18541/18594 18540/18593 18432/18478 +f 18488/18536 18593/18651 18487/18535 +f 18594/18652 18541/18594 18487/18535 +f 18489/18537 18595/18653 18491/18539 +f 18595/18653 18489/18537 18490/18538 +f 18596/18654 18492/18540 18491/18539 +f 18435/18481 18597/18655 18542/18595 +f 18490/18538 18542/18595 18595/18653 +f 18435/18481 8720/18596 18597/18655 +f 18543/18597 18544/18599 18438/18484 +f 18543/18597 18436/18482 18598/18656 +f 18544/18599 18599/18657 8553/18542 +f 18494/18545 18493/18543 18600/18658 +f 14950/18659 14798/18600 18494/18545 +f 14949/18544 14947/18660 18545/18601 +f 13924/18602 18547/18605 18445/18491 +f 18444/18490 13988/18603 13924/18602 +f 18546/18604 18447/18495 18495/18547 +f 18546/18604 18496/18548 18601/18661 +f 18601/18661 18496/18548 18547/18605 +f 18548/18606 18497/18549 18602/18662 +f 18497/18549 18452/18500 18603/18663 +f 13800/18551 18498/18550 13709/18664 +f 18498/18550 18548/18606 18604/18665 +f 18549/18607 18605/18666 18493/18543 +f 18549/18607 18446/18494 18550/18608 +f 18550/18608 18499/18552 18500/18553 +f 18553/18611 18551/18609 18390/18436 +f 18500/18553 18551/18609 18606/18667 +f 18552/18610 18447/18495 18546/18604 +f 18552/18610 18607/18668 18501/18554 +f 18553/18611 18501/18554 18608/18669 +f 18609/18670 18503/18556 18502/18555 +f 18450/18498 18555/18613 18554/18612 +f 18554/18612 18610/18671 18451/18499 +f 18555/18613 18503/18556 18554/18612 +f 18610/18671 18556/18614 18451/18499 +f 18560/18618 18504/18557 18556/18614 +f 18603/18663 18452/18500 18557/18615 +f 18453/18501 18611/18672 18557/18615 +f 18506/18559 18612/18673 18505/18558 +f 18558/18616 18505/18558 18612/18673 +f 18613/18674 18453/18501 18558/18616 +f 18614/18675 18506/18559 18559/18617 +f 18559/18617 18454/18502 18615/18676 +f 18454/18502 18560/18618 18615/18676 +f 18561/18619 18456/18504 18472/18520 +f 18561/18619 18580/18638 18507/18560 +f 18507/18560 18616/18677 18562/18620 +f 18508/18561 18562/18620 18617/18678 +f 18508/18561 18617/18678 18563/18621 +f 18563/18621 18564/18622 18457/18505 +f 18564/18622 18565/18623 18458/18506 +f 18460/18508 18566/18624 18618/18679 +f 18509/18562 18619/18680 18566/18624 +f 18565/18623 18620/18681 18509/18562 +f 18460/18508 18618/18679 18567/18625 +f 18567/18625 18621/18682 18510/18563 +f 18511/18564 18510/18563 18621/18682 +f 18511/18564 18622/18683 18514/18567 +f 18513/18566 18463/18511 18573/18631 +f 18573/18631 18463/18511 18568/18626 +f 18514/18567 18622/18683 18569/18627 +f 18516/18569 18515/18568 18623/18684 +f 18624/18685 18515/18568 18569/18627 +f 18568/18626 18464/18512 18625/18686 +f 18516/18569 18626/18687 18570/18628 +f 18570/18628 18627/18688 18464/18512 +f 18517/18570 18572/18630 18518/18571 +f 18517/18570 18571/18629 18628/18689 +f 18467/18515 18573/18631 18574/18632 +f 18468/18516 18574/18632 18575/18633 +f 18519/18572 18629/18690 18571/18629 +f 18630/18691 18519/18572 18575/18633 +f 18576/18634 18469/18517 18572/18630 +f 18576/18634 18631/18692 18470/18518 +f 18632/18693 18577/18635 18470/18518 +f 18577/18635 18579/18637 18471/18519 +f 18520/18573 18633/18694 18578/18636 +f 18634/18695 18520/18573 18579/18637 +f 18580/18638 18561/18619 18472/18520 +f 18635/18696 18580/18638 18481/18529 +f 18583/18641 18581/18639 18473/18521 +f 18581/18639 18582/18640 18474/18522 +f 18636/18697 18522/18575 18582/18640 +f 18637/18698 18524/18577 18545/18601 +f 18638/18699 18583/18641 18524/18577 +f 18475/18523 18584/18642 18585/18643 +f 18522/18575 18636/18697 18584/18642 +f 18525/18578 18639/18700 18527/18580 +f 18526/18579 18585/18643 18525/18578 +f 18528/18581 18527/18580 18639/18700 +f 18531/18584 18528/18581 18640/18701 +f 18641/18702 18529/18582 18586/18644 +f 18530/18583 18529/18582 18642/18703 +f 18530/18583 18642/18703 18587/18645 +f 18643/18704 18586/18644 18531/18584 +f 18644/18705 18488/18536 18532/18585 +f 18645/18706 18532/18585 18587/18645 +f 18535/18588 18534/18587 18588/18646 +f 18589/18647 18535/18588 18646/18707 +f 18536/18589 18589/18647 18647/18708 +f 18536/18589 18648/18709 18485/18533 +f 18537/18590 18635/18696 18481/18529 +f 18590/18648 18485/18533 18648/18709 +f 18635/18696 18537/18590 18590/18648 +f 18588/18646 18492/18540 18596/18654 +f 18591/18649 18649/18710 18538/18591 +f 18436/18482 18592/18650 18598/18656 +f 18538/18591 18650/18711 18592/18650 +f 18539/18592 18540/18593 18651/18712 +f 18652/18713 18591/18649 18539/18592 +f 18651/18712 18540/18593 18541/18594 +f 18487/18535 18593/18651 18594/18652 +f 18644/18705 18593/18651 18488/18536 +f 18594/18652 18653/18714 18541/18594 +f 18491/18539 18595/18653 18654/18715 +f 18654/18715 18596/18654 18491/18539 +f 18597/18655 18655/18716 18542/18595 +f 18656/18717 18595/18653 18542/18595 +f 8720/18596 18655/18716 18597/18655 +f 18544/18599 18543/18597 18599/18657 +f 18598/18656 18599/18657 18543/18597 +f 8553/18542 18599/18657 8517/18718 +f 18605/18666 18600/18658 18493/18543 +f 18494/18545 18600/18658 14950/18659 +f 18545/18601 14947/18660 18657/18719 +f 13677/18720 18547/18605 13924/18602 +f 18546/18604 18601/18661 18552/18610 +f 18601/18661 18547/18605 13576/18721 +f 18497/18549 18603/18663 18602/18662 +f 18658/18722 18548/18606 18602/18662 +f 13709/18664 18498/18550 18604/18665 +f 18548/18606 18658/18722 18604/18665 +f 18605/18666 18549/18607 18550/18608 +f 18659/18723 18550/18608 18500/18553 +f 18608/18669 18551/18609 18553/18611 +f 18606/18667 18551/18609 18660/18724 +f 18659/18723 18500/18553 18606/18667 +f 18501/18554 18607/18668 18661/18725 +f 18552/18610 18662/18726 18607/18668 +f 18608/18669 18501/18554 18661/18725 +f 18503/18556 18609/18670 18554/18612 +f 18554/18612 18663/18727 18610/18671 +f 18610/18671 18664/18728 18556/18614 +f 18665/18729 18560/18618 18556/18614 +f 18603/18663 18557/18615 18666/18730 +f 18611/18672 18453/18501 18667/18731 +f 18557/18615 18611/18672 18668/18732 +f 18614/18675 18612/18673 18506/18559 +f 18558/18616 18612/18673 18669/18733 +f 18667/18731 18453/18501 18613/18674 +f 18558/18616 18669/18733 18613/18674 +f 18670/18734 18614/18675 18559/18617 +f 18671/18735 18559/18617 18615/18676 +f 18560/18618 18672/18736 18615/18676 +f 18507/18560 18580/18638 18616/18677 +f 18562/18620 18616/18677 18617/18678 +f 18563/18621 18617/18678 18673/18737 +f 18564/18622 18563/18621 18674/18738 +f 18674/18738 18565/18623 18564/18622 +f 18675/18739 18618/18679 18566/18624 +f 18676/18740 18566/18624 18619/18680 +f 18509/18562 18620/18681 18619/18680 +f 18565/18623 18674/18738 18620/18681 +f 18567/18625 18618/18679 18677/18741 +f 18678/18742 18621/18682 18567/18625 +f 18621/18682 18622/18683 18511/18564 +f 18568/18626 18679/18743 18573/18631 +f 18680/18744 18569/18627 18622/18683 +f 18515/18568 18681/18745 18623/18684 +f 18516/18569 18623/18684 18626/18687 +f 18515/18568 18624/18685 18681/18745 +f 18569/18627 18680/18744 18624/18685 +f 18625/18686 18679/18743 18568/18626 +f 18464/18512 18627/18688 18625/18686 +f 18682/18746 18570/18628 18626/18687 +f 18627/18688 18570/18628 18683/18747 +f 18684/18748 18572/18630 18517/18570 +f 18628/18689 18571/18629 18685/18749 +f 18517/18570 18628/18689 18686/18750 +f 18573/18631 18687/18751 18574/18632 +f 18574/18632 18688/18752 18575/18633 +f 18630/18691 18629/18690 18519/18572 +f 18571/18629 18629/18690 18685/18749 +f 18630/18691 18575/18633 18689/18753 +f 18572/18630 18684/18748 18576/18634 +f 18631/18692 18576/18634 18690/18754 +f 18470/18518 18631/18692 18632/18693 +f 18577/18635 18632/18693 18691/18755 +f 18691/18755 18579/18637 18577/18635 +f 18578/18636 18633/18694 18692/18756 +f 18633/18694 18520/18573 18693/18757 +f 18579/18637 18691/18755 18634/18695 +f 18693/18757 18520/18573 18634/18695 +f 18580/18638 18635/18696 18616/18677 +f 18583/18641 18694/18758 18581/18639 +f 18694/18758 18582/18640 18581/18639 +f 18582/18640 18695/18759 18636/18697 +f 18637/18698 18545/18601 18696/18760 +f 18697/18761 18524/18577 18637/18698 +f 18583/18641 18638/18699 18698/18762 +f 18697/18761 18638/18699 18524/18577 +f 18584/18642 18699/18763 18585/18643 +f 18584/18642 18636/18697 18700/18764 +f 18639/18700 18525/18578 18585/18643 +f 18701/18765 18528/18581 18639/18700 +f 18528/18581 18701/18765 18640/18701 +f 18702/18766 18531/18584 18640/18701 +f 18641/18702 18703/18767 18529/18582 +f 18586/18644 18704/18768 18641/18702 +f 18642/18703 18529/18582 18705/18769 +f 18642/18703 18706/18770 18587/18645 +f 18707/18771 18586/18644 18643/18704 +f 18708/18772 18643/18704 18531/18584 +f 18644/18705 18532/18585 18645/18706 +f 18706/18770 18645/18706 18587/18645 +f 18535/18588 18588/18646 18646/18707 +f 18647/18708 18589/18647 18646/18707 +f 18536/18589 18647/18708 18709/18773 +f 18648/18709 18536/18589 18709/18773 +f 18648/18709 18710/18774 18590/18648 +f 18711/18775 18635/18696 18590/18648 +f 18712/18776 18588/18646 18596/18654 +f 18652/18713 18649/18710 18591/18649 +f 18650/18711 18538/18591 18649/18710 +f 18713/18777 18598/18656 18592/18650 +f 18713/18777 18592/18650 18650/18711 +f 18714/18778 18539/18592 18651/18712 +f 18652/18713 18539/18592 18715/18779 +f 18651/18712 18541/18594 18653/18714 +f 18594/18652 18593/18651 18644/18705 +f 18653/18714 18594/18652 18645/18706 +f 18595/18653 18656/18717 18654/18715 +f 18596/18654 18654/18715 18712/18776 +f 18542/18595 18655/18716 18716/18780 +f 18716/18780 18656/18717 18542/18595 +f 8720/18596 8719/18781 18655/18716 +f 18713/18777 18599/18657 18598/18656 +f 18599/18657 18713/18777 8517/18718 +f 18717/18782 18600/18658 18605/18666 +f 18600/18658 14799/18783 14950/18659 +f 18657/18719 18696/18760 18545/18601 +f 18657/18719 14947/18660 15229/18784 +f 13576/18721 18547/18605 13677/18720 +f 18601/18661 13576/18721 18552/18610 +f 18603/18663 18666/18730 18602/18662 +f 18658/18722 18602/18662 18718/18785 +f 13709/18664 18604/18665 18719/18786 +f 18719/18786 18604/18665 18658/18722 +f 18659/18723 18605/18666 18550/18608 +f 18608/18669 18720/18787 18551/18609 +f 14184/18788 18660/18724 18551/18609 +f 18659/18723 18606/18667 18660/18724 +f 18721/18789 18661/18725 18607/18668 +f 13469/18790 18662/18726 18552/18610 +f 18722/18791 18607/18668 18662/18726 +f 18608/18669 18661/18725 18721/18789 +f 18554/18612 18609/18670 18723/18792 +f 18610/18671 18663/18727 18664/18728 +f 18723/18792 18663/18727 18554/18612 +f 18556/18614 18664/18728 18724/18793 +f 18672/18736 18560/18618 18665/18729 +f 18556/18614 18724/18793 18665/18729 +f 18666/18730 18557/18615 18668/18732 +f 18611/18672 18667/18731 18725/18794 +f 18668/18732 18611/18672 18726/18795 +f 18612/18673 18614/18675 18727/18796 +f 18612/18673 18728/18797 18669/18733 +f 18729/18798 18667/18731 18613/18674 +f 18729/18798 18613/18674 18669/18733 +f 18730/18799 18670/18734 18559/18617 +f 18614/18675 18670/18734 18727/18796 +f 18672/18736 18671/18735 18615/18676 +f 18730/18799 18559/18617 18671/18735 +f 18616/18677 18711/18775 18617/18678 +f 18673/18737 18617/18678 18731/18800 +f 18673/18737 18674/18738 18563/18621 +f 18675/18739 18566/18624 18676/18740 +f 18677/18741 18618/18679 18675/18739 +f 18619/18680 18732/18801 18676/18740 +f 18620/18681 18733/18802 18619/18680 +f 18734/18803 18620/18681 18674/18738 +f 18567/18625 18677/18741 18735/18804 +f 18622/18683 18621/18682 18678/18742 +f 18678/18742 18567/18625 18735/18804 +f 18573/18631 18679/18743 18687/18751 +f 18680/18744 18622/18683 18736/18805 +f 18737/18806 18623/18684 18681/18745 +f 18626/18687 18623/18684 18738/18807 +f 18681/18745 18624/18685 18739/18808 +f 18624/18685 18680/18744 18739/18808 +f 18679/18743 18625/18686 18687/18751 +f 18627/18688 18683/18747 18625/18686 +f 18740/18809 18682/18746 18626/18687 +f 18570/18628 18682/18746 18683/18747 +f 18517/18570 18686/18750 18684/18748 +f 18629/18690 18628/18689 18685/18749 +f 18741/18810 18686/18750 18628/18689 +f 18574/18632 18687/18751 18742/18811 +f 18688/18752 18574/18632 18742/18811 +f 18689/18753 18575/18633 18688/18752 +f 18629/18690 18630/18691 18743/18812 +f 18744/18813 18630/18691 18689/18753 +f 18576/18634 18684/18748 18690/18754 +f 18745/18814 18631/18692 18690/18754 +f 18631/18692 18745/18814 18632/18693 +f 18632/18693 18745/18814 18691/18755 +f 18633/18694 18746/18815 18692/18756 +f 18633/18694 18693/18757 18747/18816 +f 18634/18695 18691/18755 18748/18817 +f 18693/18757 18634/18695 18749/18818 +f 18635/18696 18711/18775 18616/18677 +f 18583/18641 18750/18819 18694/18758 +f 18582/18640 18694/18758 18751/18820 +f 18700/18764 18636/18697 18695/18759 +f 18582/18640 18751/18820 18695/18759 +f 18696/18760 18752/18821 18637/18698 +f 18752/18821 18697/18761 18637/18698 +f 18638/18699 18753/18822 18698/18762 +f 18583/18641 18698/18762 18750/18819 +f 18638/18699 18697/18761 18753/18822 +f 18699/18763 18754/18823 18585/18643 +f 18699/18763 18584/18642 18700/18764 +f 18754/18823 18639/18700 18585/18643 +f 18699/18763 18701/18765 18639/18700 +f 18701/18765 18702/18766 18640/18701 +f 18531/18584 18702/18766 18755/18824 +f 18704/18768 18703/18767 18641/18702 +f 18705/18769 18529/18582 18703/18767 +f 18704/18768 18586/18644 18707/18771 +f 18756/18825 18642/18703 18705/18769 +f 18642/18703 18757/18826 18706/18770 +f 18643/18704 18708/18772 18707/18771 +f 18755/18824 18708/18772 18531/18584 +f 18594/18652 18644/18705 18645/18706 +f 18758/18827 18645/18706 18706/18770 +f 18759/18828 18646/18707 18588/18646 +f 18646/18707 18760/18829 18647/18708 +f 18709/18773 18647/18708 18761/18830 +f 18709/18773 18762/18831 18648/18709 +f 18710/18774 18711/18775 18590/18648 +f 18710/18774 18648/18709 18763/18832 +f 18712/18776 18759/18828 18588/18646 +f 18652/18713 18764/18833 18649/18710 +f 18765/18834 18650/18711 18649/18710 +f 18713/18777 18650/18711 18766/18835 +f 18715/18779 18539/18592 18714/18778 +f 18651/18712 18758/18827 18714/18778 +f 18764/18833 18652/18713 18715/18779 +f 18758/18827 18651/18712 18653/18714 +f 18758/18827 18653/18714 18645/18706 +f 18767/18836 18654/18715 18656/18717 +f 18654/18715 18767/18836 18712/18776 +f 18716/18780 18655/18716 8706/18837 +f 18656/18717 18716/18780 18768/18838 +f 8719/18781 8706/18837 18655/18716 +f 8517/18718 18713/18777 8477/18839 +f 14799/18783 18600/18658 18717/18782 +f 18605/18666 18659/18723 18717/18782 +f 18696/18760 18657/18719 18769/18840 +f 18769/18840 18657/18719 15229/18784 +f 13576/18721 13469/18790 18552/18610 +f 18770/18841 18602/18662 18666/18730 +f 18718/18785 18602/18662 18770/18841 +f 18771/18842 18658/18722 18718/18785 +f 18719/18786 13406/18843 13709/18664 +f 18658/18722 18771/18842 18719/18786 +f 18608/18669 18722/18791 18720/18787 +f 18720/18787 14184/18788 18551/18609 +f 14253/18844 18660/18724 14184/18788 +f 18772/18845 18659/18723 18660/18724 +f 18607/18668 18722/18791 18721/18789 +f 18662/18726 13469/18790 13675/18846 +f 18662/18726 13675/18846 18722/18791 +f 18721/18789 18722/18791 18608/18669 +f 18663/18727 18773/18847 18664/18728 +f 18663/18727 18723/18792 18774/18848 +f 18773/18847 18724/18793 18664/18728 +f 18665/18729 18775/18849 18672/18736 +f 18665/18729 18724/18793 18776/18850 +f 18668/18732 18777/18851 18666/18730 +f 18778/18852 18725/18794 18667/18731 +f 18726/18795 18611/18672 18725/18794 +f 18726/18795 18777/18851 18668/18732 +f 18779/18853 18612/18673 18727/18796 +f 18728/18797 18612/18673 18779/18853 +f 18728/18797 18780/18854 18669/18733 +f 18729/18798 18781/18855 18667/18731 +f 18729/18798 18669/18733 18780/18854 +f 18782/18856 18670/18734 18730/18799 +f 18727/18796 18670/18734 18783/18857 +f 18784/18858 18671/18735 18672/18736 +f 18617/18678 18711/18775 18731/18800 +f 18731/18800 18763/18832 18673/18737 +f 18734/18803 18674/18738 18673/18737 +f 18675/18739 18676/18740 18732/18801 +f 18785/18859 18677/18741 18675/18739 +f 18619/18680 18786/18860 18732/18801 +f 18733/18802 18786/18860 18619/18680 +f 18734/18803 18733/18802 18620/18681 +f 18677/18741 18785/18859 18735/18804 +f 18622/18683 18678/18742 18736/18805 +f 18787/18861 18678/18742 18735/18804 +f 18736/18805 18788/18862 18680/18744 +f 18737/18806 18681/18745 18739/18808 +f 18623/18684 18737/18806 18789/18863 +f 18790/18864 18626/18687 18738/18807 +f 18623/18684 18789/18863 18738/18807 +f 18788/18862 18739/18808 18680/18744 +f 18687/18751 18625/18686 18791/18865 +f 18791/18865 18625/18686 18683/18747 +f 18792/18866 18682/18746 18740/18809 +f 18626/18687 18790/18864 18740/18809 +f 18682/18746 18793/18867 18683/18747 +f 18684/18748 18686/18750 18794/18868 +f 18628/18689 18629/18690 18743/18812 +f 18741/18810 18628/18689 18743/18812 +f 18686/18750 18741/18810 18795/18869 +f 18796/18870 18742/18811 18687/18751 +f 18688/18752 18742/18811 18797/18871 +f 18689/18753 18688/18752 18744/18813 +f 18630/18691 18744/18813 18743/18812 +f 18794/18868 18690/18754 18684/18748 +f 18798/18872 18745/18814 18690/18754 +f 18745/18814 18799/18873 18691/18755 +f 18800/18874 18746/18815 18633/18694 +f 18692/18756 18746/18815 18801/18875 +f 18693/18757 18800/18874 18747/18816 +f 18747/18816 18800/18874 18633/18694 +f 18691/18755 18799/18873 18748/18817 +f 18634/18695 18748/18817 18749/18818 +f 18749/18818 18802/18876 18693/18757 +f 15346/18877 18694/18758 18750/18819 +f 18751/18820 18694/18758 15346/18877 +f 18803/18878 18700/18764 18695/18759 +f 15401/18879 18695/18759 18751/18820 +f 18752/18821 18696/18760 18769/18840 +f 18697/18761 18752/18821 18769/18840 +f 18753/18822 18769/18840 18698/18762 +f 18750/18819 18698/18762 15288/18880 +f 18753/18822 18697/18761 18769/18840 +f 18754/18823 18699/18763 18639/18700 +f 18804/18881 18699/18763 18700/18764 +f 18699/18763 18805/18882 18701/18765 +f 18805/18882 18702/18766 18701/18765 +f 18702/18766 18806/18883 18755/18824 +f 18807/18884 18703/18767 18704/18768 +f 18808/18885 18705/18769 18703/18767 +f 18809/18886 18704/18768 18707/18771 +f 18756/18825 18757/18826 18642/18703 +f 18705/18769 18810/18887 18756/18825 +f 18757/18826 18764/18833 18706/18770 +f 18811/18888 18707/18771 18708/18772 +f 18812/18889 18708/18772 18755/18824 +f 18758/18827 18706/18770 18715/18779 +f 18813/18890 18646/18707 18759/18828 +f 18646/18707 18814/18891 18760/18829 +f 18761/18830 18647/18708 18760/18829 +f 18709/18773 18761/18830 18815/18892 +f 18648/18709 18762/18831 18763/18832 +f 18815/18892 18762/18831 18709/18773 +f 18731/18800 18711/18775 18710/18774 +f 18731/18800 18710/18774 18763/18832 +f 18813/18890 18759/18828 18712/18776 +f 18816/18893 18649/18710 18764/18833 +f 18650/18711 18765/18834 18766/18835 +f 18649/18710 18816/18893 18765/18834 +f 18817/18894 18713/18777 18766/18835 +f 18758/18827 18715/18779 18714/18778 +f 18706/18770 18764/18833 18715/18779 +f 18768/18838 18767/18836 18656/18717 +f 18767/18836 18813/18890 18712/18776 +f 18716/18780 8706/18837 18818/18895 +f 18716/18780 18818/18895 18768/18838 +f 8477/18839 18713/18777 18817/18894 +f 14473/18896 14799/18783 18717/18782 +f 18659/18723 18772/18845 18717/18782 +f 15229/18784 15288/18880 18769/18840 +f 18666/18730 18819/18897 18770/18841 +f 18718/18785 18770/18841 18820/18898 +f 18820/18898 18771/18842 18718/18785 +f 18719/18786 18821/18899 13406/18843 +f 18822/18900 18719/18786 18771/18842 +f 18722/18791 14058/18901 18720/18787 +f 18720/18787 14058/18901 14184/18788 +f 14253/18844 18823/18902 18660/18724 +f 18660/18724 18823/18902 18772/18845 +f 18722/18791 13675/18846 13923/18903 +f 18774/18848 18773/18847 18663/18727 +f 18773/18847 18776/18850 18724/18793 +f 18776/18850 18775/18849 18665/18729 +f 18824/18904 18672/18736 18775/18849 +f 18819/18897 18666/18730 18777/18851 +f 18825/18905 18725/18794 18778/18852 +f 18667/18731 18781/18855 18778/18852 +f 18725/18794 18826/18906 18726/18795 +f 18726/18795 18827/18907 18777/18851 +f 18727/18796 18828/18908 18779/18853 +f 18728/18797 18779/18853 18829/18909 +f 18728/18797 18829/18909 18780/18854 +f 18729/18798 18780/18854 18781/18855 +f 18830/18910 18670/18734 18782/18856 +f 18828/18908 18727/18796 18783/18857 +f 18830/18910 18783/18857 18670/18734 +f 18672/18736 18824/18904 18784/18858 +f 18734/18803 18673/18737 18763/18832 +f 18785/18859 18675/18739 18732/18801 +f 18732/18801 18786/18860 18831/18911 +f 18786/18860 18733/18802 18832/18912 +f 18733/18802 18734/18803 18832/18912 +f 18785/18859 18833/18913 18735/18804 +f 18678/18742 18787/18861 18736/18805 +f 18834/18914 18787/18861 18735/18804 +f 18835/18915 18788/18862 18736/18805 +f 18739/18808 18788/18862 18737/18806 +f 18789/18863 18737/18806 18836/18916 +f 18738/18807 18837/18917 18790/18864 +f 18789/18863 18837/18917 18738/18807 +f 18791/18865 18838/18918 18687/18751 +f 18839/18919 18791/18865 18683/18747 +f 18740/18809 18790/18864 18792/18866 +f 18793/18867 18682/18746 18792/18866 +f 18839/18919 18683/18747 18793/18867 +f 18795/18869 18794/18868 18686/18750 +f 18840/18920 18741/18810 18743/18812 +f 18795/18869 18741/18810 18841/18921 +f 18742/18811 18796/18870 18842/18922 +f 18687/18751 18838/18918 18796/18870 +f 18742/18811 18842/18922 18797/18871 +f 18797/18871 18744/18813 18688/18752 +f 18743/18812 18744/18813 18840/18920 +f 18843/18923 18690/18754 18794/18868 +f 18798/18872 18690/18754 18843/18923 +f 18844/18924 18745/18814 18798/18872 +f 18844/18924 18799/18873 18745/18814 +f 18800/18874 18845/18925 18746/18815 +f 18846/18926 18801/18875 18746/18815 +f 18800/18874 18693/18757 18847/18927 +f 18799/18873 18848/18928 18748/18817 +f 18749/18818 18748/18817 18802/18876 +f 18847/18927 18693/18757 18802/18876 +f 15346/18877 18750/18819 15228/18929 +f 18751/18820 15346/18877 15401/18879 +f 18803/18878 18804/18881 18700/18764 +f 18695/18759 15401/18879 18803/18878 +f 18769/18840 15288/18880 18698/18762 +f 15228/18929 18750/18819 15288/18880 +f 18804/18881 18805/18882 18699/18763 +f 18702/18766 18805/18882 18806/18883 +f 18806/18883 18849/18930 18755/18824 +f 18807/18884 18808/18885 18703/18767 +f 18850/18931 18807/18884 18704/18768 +f 18810/18887 18705/18769 18808/18885 +f 18707/18771 18850/18931 18809/18886 +f 18809/18886 18850/18931 18704/18768 +f 18851/18932 18757/18826 18756/18825 +f 18851/18932 18756/18825 18810/18887 +f 18764/18833 18757/18826 18851/18932 +f 18852/18933 18707/18771 18811/18888 +f 18853/18934 18811/18888 18708/18772 +f 18853/18934 18708/18772 18812/18889 +f 18755/18824 18849/18930 18812/18889 +f 18813/18890 18814/18891 18646/18707 +f 18814/18891 18854/18935 18760/18829 +f 18854/18935 18761/18830 18760/18829 +f 18761/18830 18855/18936 18815/18892 +f 18762/18831 18856/18937 18763/18832 +f 18815/18892 18856/18937 18762/18831 +f 18764/18833 18851/18932 18816/18893 +f 18857/18938 18766/18835 18765/18834 +f 18858/18939 18765/18834 18816/18893 +f 18766/18835 18859/18940 18817/18894 +f 18767/18836 18768/18838 18860/18941 +f 18860/18941 18813/18890 18767/18836 +f 18818/18895 8706/18837 18861/18942 +f 18861/18942 18768/18838 18818/18895 +f 8477/18839 18817/18894 8388/18943 +f 18717/18782 18772/18845 14473/18896 +f 18819/18897 18862/18944 18770/18841 +f 18863/18945 18820/18898 18770/18841 +f 18864/18946 18771/18842 18820/18898 +f 18719/18786 18822/18900 18821/18899 +f 18821/18899 12940/18947 13406/18843 +f 18771/18842 18865/18948 18822/18900 +f 14058/18901 18722/18791 13923/18903 +f 14253/18844 14324/18949 18823/18902 +f 18772/18845 18823/18902 14324/18949 +f 18773/18847 18774/18848 18866/18950 +f 18866/18950 18776/18850 18773/18847 +f 18776/18850 18867/18951 18775/18849 +f 18867/18951 18824/18904 18775/18849 +f 18777/18851 18868/18952 18819/18897 +f 18825/18905 18826/18906 18725/18794 +f 18778/18852 18781/18855 18825/18905 +f 18827/18907 18726/18795 18826/18906 +f 18777/18851 18827/18907 18868/18952 +f 18869/18953 18779/18853 18828/18908 +f 18779/18853 18870/18954 18829/18909 +f 18781/18855 18780/18854 18829/18909 +f 18830/18910 18782/18856 18871/18955 +f 18828/18908 18783/18857 18869/18953 +f 18869/18953 18783/18857 18830/18910 +f 18872/18956 18784/18858 18824/18904 +f 18832/18912 18734/18803 18763/18832 +f 18831/18911 18785/18859 18732/18801 +f 18873/18957 18831/18911 18786/18860 +f 18786/18860 18832/18912 18874/18958 +f 18833/18913 18785/18859 18875/18959 +f 18833/18913 18834/18914 18735/18804 +f 18736/18805 18787/18861 18835/18915 +f 18835/18915 18787/18861 18834/18914 +f 18788/18862 18835/18915 18876/18960 +f 18836/18916 18737/18806 18788/18862 +f 18877/18961 18789/18863 18836/18916 +f 18878/18962 18790/18864 18837/18917 +f 18837/18917 18789/18863 18877/18961 +f 18838/18918 18791/18865 18839/18919 +f 18878/18962 18792/18866 18790/18864 +f 18793/18867 18792/18866 18879/18963 +f 18879/18963 18839/18919 18793/18867 +f 18794/18868 18795/18869 18843/18923 +f 18840/18920 18841/18921 18741/18810 +f 18841/18921 18880/18964 18795/18869 +f 18842/18922 18796/18870 18881/18965 +f 18881/18965 18796/18870 18838/18918 +f 18842/18922 18840/18920 18797/18871 +f 18840/18920 18744/18813 18797/18871 +f 18882/18966 18798/18872 18843/18923 +f 18798/18872 18883/18967 18844/18924 +f 18844/18924 18848/18928 18799/18873 +f 18847/18927 18845/18925 18800/18874 +f 18746/18815 18845/18925 18846/18926 +f 18801/18875 18846/18926 18884/18968 +f 18848/18928 18802/18876 18748/18817 +f 18802/18876 18885/18969 18847/18927 +f 18804/18881 18803/18878 18805/18882 +f 15401/18879 15452/18970 18803/18878 +f 18805/18882 15452/18970 18806/18883 +f 18849/18930 18806/18883 15452/18970 +f 18807/18884 18886/18971 18808/18885 +f 18850/18931 18887/18972 18807/18884 +f 18808/18885 18888/18973 18810/18887 +f 18889/18974 18850/18931 18707/18771 +f 18816/18893 18851/18932 18810/18887 +f 18889/18974 18707/18771 18852/18933 +f 18890/18975 18852/18933 18811/18888 +f 18853/18934 18891/18976 18811/18888 +f 18853/18934 18812/18889 18892/18977 +f 18812/18889 18849/18930 15552/18978 +f 18854/18935 18814/18891 18813/18890 +f 18893/18979 18761/18830 18854/18935 +f 18761/18830 18894/18980 18855/18936 +f 18895/18981 18815/18892 18855/18936 +f 18856/18937 18832/18912 18763/18832 +f 18895/18981 18856/18937 18815/18892 +f 18859/18940 18766/18835 18857/18938 +f 18896/18982 18857/18938 18765/18834 +f 18888/18973 18858/18939 18816/18893 +f 18858/18939 18897/18983 18765/18834 +f 8388/18943 18817/18894 18859/18940 +f 18860/18941 18768/18838 18861/18942 +f 18860/18941 18854/18935 18813/18890 +f 18861/18942 8706/18837 8704/18984 +f 18772/18845 14324/18949 14473/18896 +f 18862/18944 18819/18897 18868/18952 +f 18770/18841 18862/18944 18898/18985 +f 18899/18986 18820/18898 18863/18945 +f 18900/18987 18863/18945 18770/18841 +f 18864/18946 18820/18898 18901/18988 +f 18865/18948 18771/18842 18864/18946 +f 18902/18989 18821/18899 18822/18900 +f 18821/18899 12665/18990 12940/18947 +f 18865/18948 18902/18989 18822/18900 +f 18866/18950 18774/18848 18903/18991 +f 18867/18951 18776/18850 18866/18950 +f 18824/18904 18867/18951 18904/18992 +f 18905/18993 18826/18906 18825/18905 +f 18829/18909 18825/18905 18781/18855 +f 18906/18994 18827/18907 18826/18906 +f 18868/18952 18827/18907 18906/18994 +f 18779/18853 18869/18953 18870/18954 +f 18870/18954 18825/18905 18829/18909 +f 18907/18995 18830/18910 18871/18955 +f 18830/18910 18907/18995 18869/18953 +f 18824/18904 18904/18992 18872/18956 +f 18831/18911 18908/18996 18785/18859 +f 18909/18997 18831/18911 18873/18957 +f 18873/18957 18786/18860 18910/18998 +f 18874/18958 18832/18912 18856/18937 +f 18910/18998 18786/18860 18874/18958 +f 18785/18859 18908/18996 18875/18959 +f 18875/18959 18911/18999 18833/18913 +f 18833/18913 18911/18999 18834/18914 +f 18834/18914 18911/18999 18835/18915 +f 18876/18960 18835/18915 18912/19000 +f 18836/18916 18788/18862 18876/18960 +f 18836/18916 18876/18960 18877/18961 +f 18877/18961 18878/18962 18837/18917 +f 18881/18965 18838/18918 18839/18919 +f 18878/18962 18879/18963 18792/18866 +f 18879/18963 18881/18965 18839/18919 +f 18913/19001 18843/18923 18795/18869 +f 18914/19002 18841/18921 18840/18920 +f 18880/18964 18841/18921 18914/19002 +f 18795/18869 18880/18964 18913/19001 +f 18881/18965 18915/19003 18842/18922 +f 18840/18920 18842/18922 18915/19003 +f 18843/18923 18913/19001 18882/18966 +f 18882/18966 18916/19004 18798/18872 +f 18883/18967 18848/18928 18844/18924 +f 18798/18872 18916/19004 18883/18967 +f 18917/19005 18845/18925 18847/18927 +f 18846/18926 18845/18925 18918/19006 +f 18846/18926 18918/19006 18884/18968 +f 18919/19007 18801/18875 18884/18968 +f 18883/18967 18802/18876 18848/18928 +f 18885/18969 18802/18876 18920/19008 +f 18885/18969 18917/19005 18847/18927 +f 18803/18878 15452/18970 18805/18882 +f 15452/18970 15552/18978 18849/18930 +f 18887/18972 18886/18971 18807/18884 +f 18921/19009 18808/18885 18886/18971 +f 18850/18931 18922/19010 18887/18972 +f 18888/18973 18816/18893 18810/18887 +f 18921/19009 18888/18973 18808/18885 +f 18850/18931 18889/18974 18922/19010 +f 18923/19011 18889/18974 18852/18933 +f 18852/18933 18890/18975 18923/19011 +f 18890/18975 18811/18888 18924/19012 +f 18891/18976 18853/18934 18892/18977 +f 18811/18888 18891/18976 18924/19012 +f 18812/18889 15552/18978 18892/18977 +f 18893/18979 18854/18935 18925/19013 +f 18894/18980 18761/18830 18893/18979 +f 18926/19014 18855/18936 18894/18980 +f 18927/19015 18895/18981 18855/18936 +f 18928/19016 18856/18937 18895/18981 +f 18857/18938 8396/19017 18859/18940 +f 8396/19017 18857/18938 18896/18982 +f 18896/18982 18765/18834 18897/18983 +f 18888/18973 18929/19018 18858/18939 +f 18858/18939 18930/19019 18897/18983 +f 8351/19020 8388/18943 18859/18940 +f 18931/19021 18860/18941 18861/18942 +f 18860/18941 18932/19022 18854/18935 +f 18861/18942 8704/18984 18933/19023 +f 18862/18944 18868/18952 18934/19024 +f 18898/18985 18862/18944 18935/19025 +f 18898/18985 18900/18987 18770/18841 +f 18820/18898 18899/18986 18901/18988 +f 18899/18986 18863/18945 18936/19026 +f 18863/18945 18900/18987 18936/19026 +f 18901/18988 18937/19027 18864/18946 +f 18864/18946 18938/19028 18865/18948 +f 18821/18899 18902/18989 18939/19029 +f 18939/19029 12665/18990 18821/18899 +f 18865/18948 12797/19030 18902/18989 +f 18903/18991 18940/19031 18866/18950 +f 18867/18951 18866/18950 18940/19031 +f 18904/18992 18867/18951 18941/19032 +f 18826/18906 18905/18993 18942/19033 +f 18905/18993 18825/18905 18870/18954 +f 18942/19033 18906/18994 18826/18906 +f 18868/18952 18906/18994 18935/19025 +f 18869/18953 18907/18995 18870/18954 +f 18907/18995 18871/18955 18943/19034 +f 18944/19035 18872/18956 18904/18992 +f 18945/19036 18908/18996 18831/18911 +f 18946/19037 18909/18997 18873/18957 +f 18831/18911 18909/18997 18945/19036 +f 18873/18957 18910/18998 18947/19038 +f 18874/18958 18856/18937 18928/19016 +f 18947/19038 18910/18998 18874/18958 +f 18908/18996 18948/19039 18875/18959 +f 18875/18959 18948/19039 18911/18999 +f 18835/18915 18911/18999 18912/19000 +f 18949/19040 18876/18960 18912/19000 +f 18877/18961 18876/18960 18949/19040 +f 18877/18961 18950/19041 18878/18962 +f 18879/18963 18878/18962 18915/19003 +f 18915/19003 18881/18965 18879/18963 +f 18914/19002 18840/18920 18915/19003 +f 18914/19002 18951/19042 18880/18964 +f 18880/18964 18951/19042 18913/19001 +f 18952/19043 18882/18966 18913/19001 +f 18916/19004 18882/18966 18953/19044 +f 18916/19004 18954/19045 18883/18967 +f 18918/19006 18845/18925 18917/19005 +f 18884/18968 18918/19006 18955/19046 +f 18884/18968 18956/19047 18919/19007 +f 18802/18876 18883/18967 18920/19008 +f 18885/18969 18920/19008 18957/19048 +f 18917/19005 18885/18969 18958/19049 +f 18959/19050 18886/18971 18887/18972 +f 18886/18971 18960/19051 18921/19009 +f 18887/18972 18922/19010 18961/19052 +f 18888/18973 18921/19009 18929/19018 +f 18962/19053 18922/19010 18889/18974 +f 18923/19011 18963/19054 18889/18974 +f 18890/18975 18963/19054 18923/19011 +f 18964/19055 18890/18975 18924/19012 +f 18892/18977 15651/19056 18891/18976 +f 18891/18976 15820/19057 18924/19012 +f 15651/19056 18892/18977 15552/18978 +f 18925/19013 18854/18935 18965/19058 +f 18893/18979 18925/19013 18894/18980 +f 18927/19015 18855/18936 18926/19014 +f 18966/19059 18926/19014 18894/18980 +f 18895/18981 18927/19015 18967/19060 +f 18967/19060 18928/19016 18895/18981 +f 18859/18940 8396/19017 8351/19020 +f 8353/19061 8396/19017 18896/18982 +f 8353/19061 18896/18982 18897/18983 +f 18929/19018 18968/19062 18858/18939 +f 18969/19063 18930/19019 18858/18939 +f 18930/19019 8353/19061 18897/18983 +f 18861/18942 18933/19023 18931/19021 +f 18860/18941 18931/19021 18932/19022 +f 18854/18935 18932/19022 18965/19058 +f 8685/19064 18933/19023 8704/18984 +f 18935/19025 18934/19024 18868/18952 +f 18862/18944 18934/19024 18935/19025 +f 18970/19065 18898/18985 18935/19025 +f 18900/18987 18898/18985 18971/19066 +f 18901/18988 18899/18986 18972/19067 +f 18973/19068 18899/18986 18936/19026 +f 18936/19026 18900/18987 18974/19069 +f 18937/19027 18938/19028 18864/18946 +f 18937/19027 18901/18988 18972/19067 +f 18938/19028 12797/19030 18865/18948 +f 12797/19030 18939/19029 18902/18989 +f 18939/19029 12532/19070 12665/18990 +f 18975/19071 18940/19031 18903/18991 +f 18941/19032 18867/18951 18940/19031 +f 18941/19032 18976/19072 18904/18992 +f 18942/19033 18905/18993 18977/19073 +f 18905/18993 18870/18954 18943/19034 +f 18942/19033 18978/19074 18906/18994 +f 18970/19065 18935/19025 18906/18994 +f 18943/19034 18870/18954 18907/18995 +f 18871/18955 18979/19075 18943/19034 +f 18944/19035 18904/18992 18980/19076 +f 18908/18996 18945/19036 18981/19077 +f 18873/18957 18947/19038 18946/19037 +f 18909/18997 18946/19037 18982/19078 +f 18909/18997 18983/19079 18945/19036 +f 18874/18958 18928/19016 18967/19060 +f 18984/19080 18947/19038 18874/18958 +f 18948/19039 18908/18996 18981/19077 +f 18948/19039 18985/19081 18911/18999 +f 18912/19000 18911/18999 18986/19082 +f 18949/19040 18912/19000 18987/19083 +f 18987/19083 18877/18961 18949/19040 +f 18877/18961 18987/19083 18950/19041 +f 18878/18962 18950/19041 18988/19084 +f 18878/18962 18989/19085 18915/19003 +f 18989/19085 18914/19002 18915/19003 +f 18990/19086 18951/19042 18914/19002 +f 18991/19087 18913/19001 18951/19042 +f 18952/19043 18992/19088 18882/18966 +f 18913/19001 18991/19087 18952/19043 +f 18954/19045 18916/19004 18953/19044 +f 18953/19044 18882/18966 18993/19089 +f 18954/19045 18994/19090 18883/18967 +f 18955/19046 18918/19006 18917/19005 +f 18955/19046 18956/19047 18884/18968 +f 18956/19047 18995/19091 18919/19007 +f 18883/18967 18994/19090 18920/19008 +f 18957/19048 18920/19008 18994/19090 +f 18957/19048 18958/19049 18885/18969 +f 18917/19005 18958/19049 18955/19046 +f 18959/19050 18960/19051 18886/18971 +f 18887/18972 18961/19052 18959/19050 +f 18921/19009 18960/19051 18929/19018 +f 18922/19010 8245/19092 18961/19052 +f 18922/19010 18962/19053 18996/19093 +f 18963/19054 18962/19053 18889/18974 +f 18963/19054 18890/18975 18964/19055 +f 18924/19012 18997/19094 18964/19055 +f 15731/19095 18891/18976 15651/19056 +f 18924/19012 15820/19057 18997/19094 +f 15820/19057 18891/18976 15731/19095 +f 18998/19096 18925/19013 18965/19058 +f 18925/19013 18999/19097 18894/18980 +f 19000/19098 18927/19015 18926/19014 +f 18966/19059 18894/18980 19001/19099 +f 19000/19098 18926/19014 18966/19059 +f 18927/19015 19002/19100 18967/19060 +f 18969/19063 18858/18939 18968/19062 +f 18929/19018 19003/19101 18968/19062 +f 8394/19102 18930/19019 18969/19063 +f 19004/19103 8353/19061 18930/19019 +f 18933/19023 8703/19104 18931/19021 +f 19005/19105 18932/19022 18931/19021 +f 18965/19058 18932/19022 19005/19105 +f 8685/19064 8703/19104 18933/19023 +f 18898/18985 18970/19065 18978/19074 +f 18978/19074 18971/19066 18898/18985 +f 18900/18987 18971/19066 19006/19106 +f 18899/18986 18973/19068 18972/19067 +f 19007/19107 18973/19068 18936/19026 +f 19006/19106 18974/19069 18900/18987 +f 18974/19069 19007/19107 18936/19026 +f 12797/19030 18938/19028 18937/19027 +f 12667/19108 18937/19027 18972/19067 +f 18939/19029 12797/19030 12532/19070 +f 18975/19071 18941/19032 18940/19031 +f 19008/19109 18976/19072 18941/19032 +f 18904/18992 18976/19072 18980/19076 +f 18977/19073 18905/18993 18943/19034 +f 18977/19073 18978/19074 18942/19033 +f 18906/18994 18978/19074 18970/19065 +f 18979/19075 19009/19110 18943/19034 +f 19010/19111 18979/19075 18871/18955 +f 18980/19076 19011/19112 18944/19035 +f 18945/19036 18983/19079 18981/19077 +f 18947/19038 19012/19113 18946/19037 +f 18909/18997 18982/19078 19013/19114 +f 18982/19078 18946/19037 19012/19113 +f 18983/19079 18909/18997 19013/19114 +f 18874/18958 18967/19060 19014/19115 +f 19012/19113 18947/19038 18984/19080 +f 18984/19080 18874/18958 19015/19116 +f 18948/19039 18981/19077 19016/19117 +f 18948/19039 19017/19118 18985/19081 +f 18986/19082 18911/18999 18985/19081 +f 19018/19119 18912/19000 18986/19082 +f 18912/19000 19019/19120 18987/19083 +f 18987/19083 19020/19121 18950/19041 +f 18950/19041 19021/19122 18988/19084 +f 18989/19085 18878/18962 18988/19084 +f 18989/19085 18990/19086 18914/19002 +f 18951/19042 18990/19086 19022/19123 +f 19022/19123 18991/19087 18951/19042 +f 18992/19088 18952/19043 19023/19124 +f 18993/19089 18882/18966 18992/19088 +f 18991/19087 19024/19125 18952/19043 +f 19025/19126 18954/19045 18953/19044 +f 19026/19127 18953/19044 18993/19089 +f 18954/19045 19025/19126 18994/19090 +f 18955/19046 19027/19128 18956/19047 +f 19027/19128 18995/19091 18956/19047 +f 18919/19007 18995/19091 19028/19129 +f 18994/19090 19029/19130 18957/19048 +f 18958/19049 18957/19048 19030/19131 +f 19030/19131 18955/19046 18958/19049 +f 19003/19101 18960/19051 18959/19050 +f 18961/19052 19031/19132 18959/19050 +f 19003/19101 18929/19018 18960/19051 +f 18961/19052 8245/19092 19031/19132 +f 8347/19133 8245/19092 18922/19010 +f 18962/19053 19032/19134 18996/19093 +f 18996/19093 8347/19133 18922/19010 +f 18963/19054 18964/19055 18962/19053 +f 19032/19134 18964/19055 18997/19094 +f 18997/19094 15820/19057 15843/19135 +f 18999/19097 18925/19013 18998/19096 +f 18965/19058 19033/19136 18998/19096 +f 18999/19097 19001/19099 18894/18980 +f 19000/19098 19034/19137 18927/19015 +f 19035/19138 18966/19059 19001/19099 +f 18966/19059 19035/19138 19000/19098 +f 19002/19100 18927/19015 19034/19137 +f 19014/19115 18967/19060 19002/19100 +f 19003/19101 18969/19063 18968/19062 +f 18930/19019 8394/19102 8395/19139 +f 8394/19102 18969/19063 8350/19140 +f 8353/19061 19004/19103 8307/19141 +f 19004/19103 18930/19019 8395/19139 +f 8730/19142 18931/19021 8703/19104 +f 19005/19105 18931/19021 8730/19142 +f 19005/19105 19036/19143 18965/19058 +f 18971/19066 18978/19074 19037/19144 +f 19006/19106 18971/19066 19037/19144 +f 19038/19145 18972/19067 18973/19068 +f 18973/19068 19007/19107 19039/19146 +f 19040/19147 18974/19069 19006/19106 +f 18974/19069 19041/19148 19007/19107 +f 12797/19030 18937/19027 19042/19149 +f 12535/19150 18937/19027 12667/19108 +f 19038/19145 12667/19108 18972/19067 +f 18941/19032 18975/19071 19008/19109 +f 18976/19072 19008/19109 19043/19151 +f 18976/19072 19044/19152 18980/19076 +f 19009/19110 18977/19073 18943/19034 +f 18977/19073 19037/19144 18978/19074 +f 18979/19075 19045/19153 19009/19110 +f 19010/19111 19046/19154 18979/19075 +f 19011/19112 18980/19076 19047/19155 +f 18983/19079 19048/19156 18981/19077 +f 18982/19078 19049/19157 19013/19114 +f 19012/19113 19050/19158 18982/19078 +f 19051/19159 18983/19079 19013/19114 +f 18874/18958 19014/19115 19015/19116 +f 19050/19158 19012/19113 18984/19080 +f 19015/19116 19050/19158 18984/19080 +f 18981/19077 19052/19160 19016/19117 +f 19016/19117 19017/19118 18948/19039 +f 19017/19118 19053/19161 18985/19081 +f 19053/19161 18986/19082 18985/19081 +f 18912/19000 19018/19119 19019/19120 +f 18986/19082 19053/19161 19018/19119 +f 18987/19083 19019/19120 19054/19162 +f 19020/19121 18987/19083 19054/19162 +f 19020/19121 19021/19122 18950/19041 +f 18988/19084 19021/19122 19055/19163 +f 18988/19084 18990/19086 18989/19085 +f 19056/19164 19022/19123 18990/19086 +f 19024/19125 18991/19087 19022/19123 +f 18952/19043 19057/19165 19023/19124 +f 19058/19166 18992/19088 19023/19124 +f 18993/19089 18992/19088 19059/19167 +f 19024/19125 19060/19168 18952/19043 +f 18953/19044 19061/19169 19025/19126 +f 18993/19089 19059/19167 19026/19127 +f 19026/19127 19061/19169 18953/19044 +f 19029/19130 18994/19090 19025/19126 +f 19027/19128 18955/19046 19062/19170 +f 19063/19171 18995/19091 19027/19128 +f 18995/19091 19064/19172 19028/19129 +f 18919/19007 19028/19129 19065/19173 +f 19029/19130 19066/19174 18957/19048 +f 19030/19131 18957/19048 19066/19174 +f 19030/19131 19062/19170 18955/19046 +f 19067/19175 19003/19101 18959/19050 +f 19031/19132 19067/19175 18959/19050 +f 8245/19092 8195/19176 19031/19132 +f 19032/19134 18962/19053 18964/19055 +f 19032/19134 8347/19133 18996/19093 +f 19068/19177 19032/19134 18997/19094 +f 19068/19177 18997/19094 15843/19135 +f 18999/19097 18998/19096 19033/19136 +f 19033/19136 18965/19058 19036/19143 +f 19001/19099 18999/19097 19069/19178 +f 19034/19137 19000/19098 19070/19179 +f 19071/19180 19035/19138 19001/19099 +f 19035/19138 19070/19179 19000/19098 +f 19072/19181 19002/19100 19034/19137 +f 19002/19100 19073/19182 19014/19115 +f 19003/19101 8393/19183 18969/19063 +f 8350/19140 18969/19063 8393/19183 +f 8307/19141 19004/19103 8395/19139 +f 8730/19142 19074/19184 19005/19105 +f 19005/19105 19074/19184 19036/19143 +f 19006/19106 19037/19144 19075/19185 +f 19038/19145 18973/19068 19039/19146 +f 19007/19107 19041/19148 19039/19146 +f 19041/19148 18974/19069 19040/19147 +f 19006/19106 19076/19186 19040/19147 +f 19042/19149 18937/19027 12535/19150 +f 12797/19030 19042/19149 12666/19187 +f 19077/19188 12667/19108 19038/19145 +f 19043/19151 19044/19152 18976/19072 +f 19047/19155 18980/19076 19044/19152 +f 18977/19073 19009/19110 19078/19189 +f 19037/19144 18977/19073 19079/19190 +f 18979/19075 19046/19154 19045/19153 +f 19078/19189 19009/19110 19045/19153 +f 19046/19154 19010/19111 19080/19191 +f 19081/19192 19011/19112 19047/19155 +f 19051/19159 19048/19156 18983/19079 +f 18981/19077 19048/19156 19082/19193 +f 18982/19078 19083/19194 19049/19157 +f 19051/19159 19013/19114 19049/19157 +f 19050/19158 19084/19195 18982/19078 +f 19014/19115 19085/19196 19015/19116 +f 19050/19158 19015/19116 19084/19195 +f 19052/19160 18981/19077 19086/19197 +f 19016/19117 19052/19160 19017/19118 +f 19087/19198 19053/19161 19017/19118 +f 19018/19119 19088/19199 19019/19120 +f 19089/19200 19018/19119 19053/19161 +f 19054/19162 19019/19120 19090/19201 +f 19054/19162 19090/19201 19020/19121 +f 19020/19121 19091/19202 19021/19122 +f 19021/19122 19091/19202 19055/19163 +f 19056/19164 18988/19084 19055/19163 +f 18990/19086 18988/19084 19056/19164 +f 19022/19123 19056/19164 19092/19203 +f 19092/19203 19024/19125 19022/19123 +f 19057/19165 18952/19043 19060/19168 +f 19057/19165 19093/19204 19023/19124 +f 19094/19205 19058/19166 19023/19124 +f 19058/19166 19059/19167 18992/19088 +f 19095/19206 19060/19168 19024/19125 +f 19061/19169 19096/19207 19025/19126 +f 19026/19127 19059/19167 19097/19208 +f 19061/19169 19026/19127 19098/19209 +f 19099/19210 19029/19130 19025/19126 +f 19027/19128 19062/19170 19100/19211 +f 18995/19091 19063/19171 19064/19172 +f 19027/19128 19100/19211 19063/19171 +f 19028/19129 19064/19172 19065/19173 +f 19066/19174 19029/19130 19099/19210 +f 19066/19174 19101/19212 19030/19131 +f 19101/19212 19062/19170 19030/19131 +f 8302/19213 19003/19101 19067/19175 +f 19067/19175 19031/19132 8296/19214 +f 8296/19214 19031/19132 8195/19176 +f 8347/19133 19032/19134 8478/19215 +f 19068/19177 8478/19215 19032/19134 +f 15843/19135 19102/19216 19068/19177 +f 19069/19178 18999/19097 19033/19136 +f 19036/19143 19103/19217 19033/19136 +f 19104/19218 19001/19099 19069/19178 +f 19105/19219 19034/19137 19070/19179 +f 19071/19180 19106/19220 19035/19138 +f 19001/19099 19107/19221 19071/19180 +f 19070/19179 19035/19138 19108/19222 +f 19072/19181 19073/19182 19002/19100 +f 19034/19137 19105/19219 19072/19181 +f 19073/19182 19085/19196 19014/19115 +f 8302/19213 8393/19183 19003/19101 +f 8718/19223 19074/19184 8730/19142 +f 19103/19217 19036/19143 19074/19184 +f 19075/19185 19037/19144 19079/19190 +f 19076/19186 19006/19106 19075/19185 +f 19038/19145 19039/19146 19077/19188 +f 19039/19146 19041/19148 19077/19188 +f 19041/19148 19040/19147 19109/19224 +f 19109/19224 19040/19147 19076/19186 +f 19042/19149 12535/19150 12666/19187 +f 12667/19108 19077/19188 12668/19225 +f 19110/19226 19044/19152 19043/19151 +f 19044/19152 19111/19227 19047/19155 +f 18977/19073 19078/19189 19079/19190 +f 19112/19228 19045/19153 19046/19154 +f 19045/19153 19113/19229 19078/19189 +f 19114/19230 19046/19154 19080/19191 +f 19047/19155 19115/19231 19081/19192 +f 19048/19156 19051/19159 19116/19232 +f 19117/19233 18981/19077 19082/19193 +f 19082/19193 19048/19156 19116/19232 +f 19084/19195 19083/19194 18982/19078 +f 19118/19234 19049/19157 19083/19194 +f 19051/19159 19049/19157 19119/19235 +f 19015/19116 19085/19196 19084/19195 +f 19117/19233 19086/19197 18981/19077 +f 19120/19236 19052/19160 19086/19197 +f 19087/19198 19017/19118 19052/19160 +f 19053/19161 19087/19198 19121/19237 +f 19089/19200 19088/19199 19018/19119 +f 19019/19120 19088/19199 19090/19201 +f 19122/19238 19089/19200 19053/19161 +f 19123/19239 19020/19121 19090/19201 +f 19091/19202 19020/19121 19124/19240 +f 19091/19202 19125/19241 19055/19163 +f 19056/19164 19055/19163 19126/19242 +f 19092/19203 19056/19164 19126/19242 +f 19127/19243 19024/19125 19092/19203 +f 19057/19165 19060/19168 19128/19244 +f 19057/19165 19129/19245 19093/19204 +f 19023/19124 19093/19204 19094/19205 +f 19130/19246 19058/19166 19094/19205 +f 19131/19247 19059/19167 19058/19166 +f 19024/19125 19127/19243 19095/19206 +f 19128/19244 19060/19168 19095/19206 +f 19099/19210 19025/19126 19096/19207 +f 19132/19248 19096/19207 19061/19169 +f 19097/19208 19098/19209 19026/19127 +f 19131/19247 19097/19208 19059/19167 +f 19132/19248 19061/19169 19098/19209 +f 19133/19249 19100/19211 19062/19170 +f 19134/19250 19064/19172 19063/19171 +f 19100/19211 19134/19250 19063/19171 +f 19135/19251 19065/19173 19064/19172 +f 19099/19210 19136/19252 19066/19174 +f 19066/19174 19136/19252 19101/19212 +f 19101/19212 19133/19249 19062/19170 +f 8302/19213 19067/19175 8296/19214 +f 19068/19177 19102/19216 8478/19215 +f 15862/19253 19102/19216 15843/19135 +f 19069/19178 19033/19136 19137/19254 +f 19033/19136 19103/19217 19137/19254 +f 19137/19254 19104/19218 19069/19178 +f 19107/19221 19001/19099 19104/19218 +f 19105/19219 19070/19179 19108/19222 +f 19106/19220 19108/19222 19035/19138 +f 19106/19220 19071/19180 8716/19255 +f 19107/19221 8716/19255 19071/19180 +f 19073/19182 19072/19181 19138/19256 +f 19072/19181 19105/19219 19139/19257 +f 19073/19182 19083/19194 19085/19196 +f 19074/19184 8718/19223 19103/19217 +f 19140/19258 19075/19185 19079/19190 +f 19076/19186 19075/19185 19141/19259 +f 19041/19148 19142/19260 19077/19188 +f 19142/19260 19041/19148 19109/19224 +f 19109/19224 19076/19186 19143/19261 +f 19077/19188 19144/19262 12668/19225 +f 19111/19227 19044/19152 19110/19226 +f 19047/19155 19111/19227 19115/19231 +f 19078/19189 19145/19263 19079/19190 +f 19045/19153 19112/19228 19113/19229 +f 19046/19154 19146/19264 19112/19228 +f 19078/19189 19113/19229 19145/19263 +f 19147/19265 19114/19230 19080/19191 +f 19046/19154 19114/19230 19148/19266 +f 19149/19267 19081/19192 19115/19231 +f 19051/19159 19119/19235 19116/19232 +f 19117/19233 19082/19193 19150/19268 +f 19151/19269 19082/19193 19116/19232 +f 19084/19195 19085/19196 19083/19194 +f 19118/19234 19083/19194 19073/19182 +f 19152/19270 19049/19157 19118/19234 +f 19119/19235 19049/19157 19153/19271 +f 19117/19233 19150/19268 19086/19197 +f 19154/19272 19052/19160 19120/19236 +f 19155/19273 19120/19236 19086/19197 +f 19154/19272 19087/19198 19052/19160 +f 19087/19198 19154/19272 19121/19237 +f 19121/19237 19122/19238 19053/19161 +f 19123/19239 19088/19199 19089/19200 +f 19088/19199 19123/19239 19090/19201 +f 19089/19200 19122/19238 19156/19274 +f 19157/19275 19020/19121 19123/19239 +f 19124/19240 19158/19276 19091/19202 +f 19157/19275 19124/19240 19020/19121 +f 19125/19241 19091/19202 19158/19276 +f 19126/19242 19055/19163 19125/19241 +f 19092/19203 19126/19242 19127/19243 +f 19057/19165 19128/19244 19129/19245 +f 19093/19204 19129/19245 19159/19277 +f 19159/19277 19094/19205 19093/19204 +f 19160/19278 19058/19166 19130/19246 +f 19094/19205 19160/19278 19130/19246 +f 19058/19166 19160/19278 19131/19247 +f 19127/19243 19161/19279 19095/19206 +f 19162/19280 19128/19244 19095/19206 +f 19099/19210 19096/19207 19163/19281 +f 19096/19207 19132/19248 19163/19281 +f 19098/19209 19097/19208 19164/19282 +f 19097/19208 19131/19247 19164/19282 +f 19098/19209 19164/19282 19132/19248 +f 19100/19211 19133/19249 19165/19283 +f 19064/19172 19134/19250 19166/19284 +f 19134/19250 19100/19211 19165/19283 +f 19135/19251 19064/19172 19166/19284 +f 19163/19281 19136/19252 19099/19210 +f 19136/19252 19167/19285 19101/19212 +f 19168/19286 19133/19249 19101/19212 +f 19137/19254 19103/19217 19104/19218 +f 19107/19221 19104/19218 8701/19287 +f 19108/19222 19169/19288 19105/19219 +f 19169/19288 19108/19222 19106/19220 +f 19106/19220 8716/19255 8722/19289 +f 8716/19255 19107/19221 8678/19290 +f 19072/19181 19170/19291 19138/19256 +f 19138/19256 19171/19292 19073/19182 +f 19172/19293 19139/19257 19105/19219 +f 19139/19257 19170/19291 19072/19181 +f 8701/19287 19103/19217 8718/19223 +f 19173/19294 19140/19258 19079/19190 +f 19140/19258 19141/19259 19075/19185 +f 19143/19261 19076/19186 19141/19259 +f 19142/19260 19144/19262 19077/19188 +f 19142/19260 19109/19224 19174/19295 +f 19175/19296 19109/19224 19143/19261 +f 12537/19297 12668/19225 19144/19262 +f 19176/19298 19111/19227 19110/19226 +f 19111/19227 19149/19267 19115/19231 +f 19079/19190 19145/19263 19173/19294 +f 19177/19299 19113/19229 19112/19228 +f 19146/19264 19046/19154 19178/19300 +f 19177/19299 19112/19228 19146/19264 +f 19113/19229 19179/19301 19145/19263 +f 19147/19265 19180/19302 19114/19230 +f 19181/19303 19147/19265 19080/19191 +f 19148/19266 19114/19230 19182/19304 +f 19178/19300 19046/19154 19148/19266 +f 19183/19305 19081/19192 19149/19267 +f 19119/19235 19184/19306 19116/19232 +f 19082/19193 19151/19269 19150/19268 +f 19116/19232 19184/19306 19151/19269 +f 19073/19182 19152/19270 19118/19234 +f 19185/19307 19049/19157 19152/19270 +f 19185/19307 19153/19271 19049/19157 +f 19153/19271 19186/19308 19119/19235 +f 19086/19197 19150/19268 19155/19273 +f 19187/19309 19154/19272 19120/19236 +f 19187/19309 19120/19236 19155/19273 +f 19154/19272 19188/19310 19121/19237 +f 19122/19238 19121/19237 19189/19311 +f 19089/19200 19190/19312 19123/19239 +f 19122/19238 19189/19311 19156/19274 +f 19089/19200 19156/19274 19191/19313 +f 19157/19275 19123/19239 19190/19312 +f 19158/19276 19124/19240 19192/19314 +f 19124/19240 19157/19275 19193/19315 +f 19158/19276 19194/19316 19125/19241 +f 19125/19241 19127/19243 19126/19242 +f 19129/19245 19128/19244 19195/19317 +f 19196/19318 19159/19277 19129/19245 +f 19197/19319 19094/19205 19159/19277 +f 19094/19205 19198/19320 19160/19278 +f 19131/19247 19160/19278 19199/19321 +f 19200/19322 19161/19279 19127/19243 +f 19162/19280 19095/19206 19161/19279 +f 19162/19280 19201/19323 19128/19244 +f 19202/19324 19163/19281 19132/19248 +f 19164/19282 19131/19247 19199/19321 +f 19202/19324 19132/19248 19164/19282 +f 19168/19286 19165/19283 19133/19249 +f 19134/19250 19203/19325 19166/19284 +f 19134/19250 19165/19283 19203/19325 +f 19135/19251 19166/19284 19204/19326 +f 19136/19252 19163/19281 19205/19327 +f 19167/19285 19168/19286 19101/19212 +f 19167/19285 19136/19252 19205/19327 +f 19104/19218 19103/19217 8701/19287 +f 8678/19290 19107/19221 8701/19287 +f 19206/19328 19105/19219 19169/19288 +f 19169/19288 19106/19220 19207/19329 +f 19106/19220 8722/19289 8724/19330 +f 19138/19256 19170/19291 19208/19331 +f 19208/19331 19171/19292 19138/19256 +f 19209/19332 19073/19182 19171/19292 +f 19172/19293 19210/19333 19139/19257 +f 19206/19328 19172/19293 19105/19219 +f 19139/19257 19210/19333 19170/19291 +f 19173/19294 19179/19301 19140/19258 +f 19141/19259 19140/19258 19211/19334 +f 19141/19259 19211/19334 19143/19261 +f 19174/19295 19144/19262 19142/19260 +f 19109/19224 19175/19296 19174/19295 +f 19143/19261 19212/19335 19175/19296 +f 19144/19262 19174/19295 12537/19297 +f 19111/19227 19176/19298 19213/19336 +f 19183/19305 19149/19267 19111/19227 +f 19173/19294 19145/19263 19179/19301 +f 19113/19229 19177/19299 19214/19337 +f 19146/19264 19178/19300 19215/19338 +f 19177/19299 19146/19264 19215/19338 +f 19179/19301 19113/19229 19214/19337 +f 19181/19303 19180/19302 19147/19265 +f 19182/19304 19114/19230 19180/19302 +f 19080/19191 19216/19339 19181/19303 +f 19217/19340 19148/19266 19182/19304 +f 19218/19341 19081/19192 19183/19305 +f 19186/19308 19184/19306 19119/19235 +f 19150/19268 19151/19269 19219/19342 +f 19151/19269 19184/19306 19220/19343 +f 19209/19332 19152/19270 19073/19182 +f 19221/19344 19185/19307 19152/19270 +f 19153/19271 19185/19307 19222/19345 +f 19222/19345 19186/19308 19153/19271 +f 19155/19273 19150/19268 19219/19342 +f 19154/19272 19187/19309 19188/19310 +f 19219/19342 19187/19309 19155/19273 +f 19121/19237 19188/19310 19189/19311 +f 19190/19312 19089/19200 19223/19346 +f 19189/19311 19224/19347 19156/19274 +f 19225/19348 19191/19313 19156/19274 +f 19089/19200 19191/19313 19226/19349 +f 19157/19275 19190/19312 19193/19315 +f 19192/19314 19124/19240 19193/19315 +f 19227/19350 19158/19276 19192/19314 +f 19194/19316 19158/19276 19228/19351 +f 19125/19241 19194/19316 19127/19243 +f 19195/19317 19229/19352 19129/19245 +f 19128/19244 19230/19353 19195/19317 +f 19229/19352 19196/19318 19129/19245 +f 19159/19277 19196/19318 19231/19354 +f 19197/19319 19198/19320 19094/19205 +f 19231/19354 19197/19319 19159/19277 +f 19198/19320 19232/19355 19160/19278 +f 19199/19321 19160/19278 19233/19356 +f 19161/19279 19200/19322 19234/19357 +f 19200/19322 19127/19243 19194/19316 +f 19161/19279 19234/19357 19162/19280 +f 19230/19353 19128/19244 19201/19323 +f 19234/19357 19201/19323 19162/19280 +f 19202/19324 19205/19327 19163/19281 +f 19199/19321 19235/19358 19164/19282 +f 19202/19324 19164/19282 19236/19359 +f 19165/19283 19168/19286 19237/19360 +f 19204/19326 19166/19284 19203/19325 +f 19165/19283 19237/19360 19203/19325 +f 19204/19326 19238/19361 19135/19251 +f 19168/19286 19167/19285 19239/19362 +f 19167/19285 19205/19327 19240/19363 +f 19241/19364 19206/19328 19169/19288 +f 19242/19365 19207/19329 19106/19220 +f 19207/19329 19241/19364 19169/19288 +f 8724/19330 19242/19365 19106/19220 +f 19243/19366 19208/19331 19170/19291 +f 19171/19292 19208/19331 19244/19367 +f 19209/19332 19171/19292 19245/19368 +f 19210/19333 19172/19293 19246/19369 +f 19172/19293 19206/19328 19247/19370 +f 19210/19333 19246/19369 19170/19291 +f 19140/19258 19179/19301 19211/19334 +f 19211/19334 19248/19371 19143/19261 +f 19174/19295 19175/19296 19249/19372 +f 19212/19335 19143/19261 19250/19373 +f 19212/19335 19249/19372 19175/19296 +f 19174/19295 19249/19372 12537/19297 +f 19176/19298 19251/19374 19213/19336 +f 19183/19305 19111/19227 19213/19336 +f 19252/19375 19214/19337 19177/19299 +f 19253/19376 19215/19338 19178/19300 +f 19254/19377 19177/19299 19215/19338 +f 19214/19337 19255/19378 19179/19301 +f 19180/19302 19181/19303 19256/19379 +f 19182/19304 19180/19302 19256/19379 +f 19257/19380 19216/19339 19080/19191 +f 19258/19381 19181/19303 19216/19339 +f 19259/19382 19217/19340 19182/19304 +f 19183/19305 19260/19383 19218/19341 +f 19081/19192 19218/19341 19261/19384 +f 19186/19308 19262/19385 19184/19306 +f 19219/19342 19151/19269 19263/19386 +f 19184/19306 19262/19385 19220/19343 +f 19220/19343 19263/19386 19151/19269 +f 19264/19387 19152/19270 19209/19332 +f 19221/19344 19265/19388 19185/19307 +f 19152/19270 19264/19387 19221/19344 +f 19265/19388 19222/19345 19185/19307 +f 19222/19345 19266/19389 19186/19308 +f 19188/19310 19187/19309 19267/19390 +f 19267/19390 19187/19309 19219/19342 +f 19189/19311 19188/19310 19224/19347 +f 19223/19346 19268/19391 19190/19312 +f 19269/19392 19223/19346 19089/19200 +f 19224/19347 19270/19393 19156/19274 +f 19191/19313 19225/19348 19271/19394 +f 19270/19393 19225/19348 19156/19274 +f 19226/19349 19191/19313 19271/19394 +f 19226/19349 19269/19392 19089/19200 +f 19190/19312 19268/19391 19193/19315 +f 19192/19314 19193/19315 19268/19391 +f 19227/19350 19192/19314 19272/19395 +f 19228/19351 19158/19276 19227/19350 +f 19194/19316 19228/19351 19273/19396 +f 19274/19397 19229/19352 19195/19317 +f 19275/19398 19195/19317 19230/19353 +f 19274/19397 19196/19318 19229/19352 +f 19231/19354 19196/19318 19276/19399 +f 19197/19319 19231/19354 19198/19320 +f 19233/19356 19160/19278 19232/19355 +f 19232/19355 19198/19320 19276/19399 +f 19233/19356 19235/19358 19199/19321 +f 19200/19322 19201/19323 19234/19357 +f 19200/19322 19194/19316 19273/19396 +f 19230/19353 19201/19323 19277/19400 +f 19278/19401 19205/19327 19202/19324 +f 19235/19358 19236/19359 19164/19282 +f 19279/19402 19202/19324 19236/19359 +f 19168/19286 19280/19403 19237/19360 +f 19203/19325 19281/19404 19204/19326 +f 19282/19405 19203/19325 19237/19360 +f 19281/19404 19238/19361 19204/19326 +f 19168/19286 19239/19362 19280/19403 +f 19283/19406 19239/19362 19167/19285 +f 19240/19363 19283/19406 19167/19285 +f 19278/19401 19240/19363 19205/19327 +f 19206/19328 19241/19364 19247/19370 +f 19207/19329 19242/19365 19284/19407 +f 19284/19407 19241/19364 19207/19329 +f 8724/19330 8728/19408 19242/19365 +f 19170/19291 19246/19369 19243/19366 +f 19243/19366 19244/19367 19208/19331 +f 19245/19368 19171/19292 19244/19367 +f 19264/19387 19209/19332 19245/19368 +f 19247/19370 19246/19369 19172/19293 +f 19179/19301 19255/19378 19211/19334 +f 19211/19334 19255/19378 19248/19371 +f 19143/19261 19248/19371 19285/19409 +f 19212/19335 19250/19373 19286/19410 +f 19285/19409 19250/19373 19143/19261 +f 19287/19411 19249/19372 19212/19335 +f 12537/19297 19249/19372 12538/19412 +f 19213/19336 19251/19374 19288/19413 +f 19213/19336 19289/19414 19183/19305 +f 19255/19378 19214/19337 19252/19375 +f 19254/19377 19252/19375 19177/19299 +f 19254/19377 19215/19338 19253/19376 +f 19181/19303 19290/19415 19256/19379 +f 19182/19304 19256/19379 19259/19382 +f 19216/19339 19257/19380 19291/19416 +f 19181/19303 19258/19381 19290/19415 +f 19291/19416 19258/19381 19216/19339 +f 19259/19382 19292/19417 19217/19340 +f 19260/19383 19183/19305 19289/19414 +f 19293/19418 19218/19341 19260/19383 +f 19293/19418 19261/19384 19218/19341 +f 19266/19389 19262/19385 19186/19308 +f 19219/19342 19263/19386 19270/19393 +f 19220/19343 19262/19385 19294/19419 +f 19294/19419 19263/19386 19220/19343 +f 19295/19420 19265/19388 19221/19344 +f 19295/19420 19221/19344 19264/19387 +f 19296/19421 19222/19345 19265/19388 +f 19266/19389 19222/19345 19297/19422 +f 19224/19347 19188/19310 19267/19390 +f 19267/19390 19219/19342 19270/19393 +f 19298/19423 19268/19391 19223/19346 +f 19298/19423 19223/19346 19269/19392 +f 19270/19393 19224/19347 19267/19390 +f 19225/19348 19299/19424 19271/19394 +f 19270/19393 19300/19425 19225/19348 +f 19226/19349 19271/19394 19301/19426 +f 19298/19423 19269/19392 19226/19349 +f 19268/19391 19302/19427 19192/19314 +f 19272/19395 19192/19314 19302/19427 +f 19272/19395 19303/19428 19227/19350 +f 19227/19350 19304/19429 19228/19351 +f 19304/19429 19273/19396 19228/19351 +f 19305/19430 19274/19397 19195/19317 +f 19306/19431 19195/19317 19275/19398 +f 19230/19353 19277/19400 19275/19398 +f 19276/19399 19196/19318 19274/19397 +f 19276/19399 19198/19320 19231/19354 +f 19233/19356 19232/19355 19235/19358 +f 19232/19355 19276/19399 19307/19432 +f 19201/19323 19200/19322 19308/19433 +f 19200/19322 19273/19396 19309/19434 +f 19277/19400 19201/19323 19310/19435 +f 19278/19401 19202/19324 19311/19436 +f 19312/19437 19236/19359 19235/19358 +f 19279/19402 19236/19359 19312/19437 +f 19202/19324 19279/19402 19311/19436 +f 19237/19360 19280/19403 19313/19438 +f 19281/19404 19203/19325 19282/19405 +f 19282/19405 19237/19360 19314/19439 +f 19238/19361 19281/19404 19315/19440 +f 19280/19403 19239/19362 19316/19441 +f 19283/19406 19316/19441 19239/19362 +f 19240/19363 19317/19442 19283/19406 +f 19278/19401 19318/19443 19240/19363 +f 19247/19370 19241/19364 19284/19407 +f 19242/19365 19319/19444 19284/19407 +f 19320/19445 19242/19365 8728/19408 +f 19246/19369 19321/19446 19243/19366 +f 19322/19447 19244/19367 19243/19366 +f 19244/19367 19323/19448 19245/19368 +f 19264/19387 19245/19368 19295/19420 +f 19321/19446 19246/19369 19247/19370 +f 19324/19449 19248/19371 19255/19378 +f 19285/19409 19248/19371 19324/19449 +f 19287/19411 19212/19335 19286/19410 +f 19286/19410 19250/19373 19325/19450 +f 19325/19450 19250/19373 19285/19409 +f 19249/19372 19287/19411 12538/19412 +f 19326/19451 19288/19413 19251/19374 +f 19213/19336 19288/19413 19289/19414 +f 19252/19375 19254/19377 19255/19378 +f 19254/19377 19253/19376 19327/19452 +f 19259/19382 19256/19379 19290/19415 +f 19328/19453 19291/19416 19257/19380 +f 19258/19381 19291/19416 19290/19415 +f 19292/19417 19329/19454 19217/19340 +f 19292/19417 19259/19382 19330/19455 +f 19260/19383 19289/19414 19326/19451 +f 19293/19418 19260/19383 19331/19456 +f 19328/19453 19261/19384 19293/19418 +f 19262/19385 19266/19389 19297/19422 +f 19300/19425 19270/19393 19263/19386 +f 19262/19385 19297/19422 19294/19419 +f 19294/19419 19300/19425 19263/19386 +f 19295/19420 19332/19457 19265/19388 +f 19333/19458 19296/19421 19265/19388 +f 19334/19459 19222/19345 19296/19421 +f 19222/19345 19335/19460 19297/19422 +f 19302/19427 19268/19391 19298/19423 +f 19336/19461 19299/19424 19225/19348 +f 19337/19462 19271/19394 19299/19424 +f 19300/19425 19338/19463 19225/19348 +f 19301/19426 19298/19423 19226/19349 +f 19339/19464 19301/19426 19271/19394 +f 19340/19465 19272/19395 19302/19427 +f 19272/19395 19341/19466 19303/19428 +f 19303/19428 19342/19467 19227/19350 +f 19342/19467 19304/19429 19227/19350 +f 19304/19429 19343/19468 19273/19396 +f 19305/19430 19307/19432 19274/19397 +f 19195/19317 19306/19431 19305/19430 +f 19275/19398 19344/19469 19306/19431 +f 19277/19400 19345/19470 19275/19398 +f 19274/19397 19307/19432 19276/19399 +f 19232/19355 19346/19471 19235/19358 +f 19307/19432 19347/19472 19232/19355 +f 19308/19433 19200/19322 19309/19434 +f 19310/19435 19201/19323 19308/19433 +f 19273/19396 19348/19473 19309/19434 +f 19310/19435 19349/19474 19277/19400 +f 19278/19401 19311/19436 19318/19443 +f 19346/19471 19312/19437 19235/19358 +f 19279/19402 19312/19437 19350/19475 +f 19311/19436 19279/19402 19350/19475 +f 19280/19403 19351/19476 19313/19438 +f 19237/19360 19313/19438 19352/19477 +f 19281/19404 19282/19405 19315/19440 +f 19314/19439 19353/19478 19282/19405 +f 19314/19439 19237/19360 19352/19477 +f 19354/19479 19238/19361 19315/19440 +f 19316/19441 19351/19476 19280/19403 +f 19283/19406 19355/19480 19316/19441 +f 19240/19363 19318/19443 19317/19442 +f 19317/19442 19355/19480 19283/19406 +f 19319/19444 19247/19370 19284/19407 +f 19319/19444 19242/19365 19320/19445 +f 8723/19481 19320/19445 8728/19408 +f 19243/19366 19321/19446 19322/19447 +f 19323/19448 19244/19367 19322/19447 +f 19245/19368 19323/19448 19332/19457 +f 19295/19420 19245/19368 19332/19457 +f 19319/19444 19321/19446 19247/19370 +f 19327/19452 19324/19449 19255/19378 +f 19324/19449 19356/19482 19285/19409 +f 12941/19483 19287/19411 19286/19410 +f 19357/19484 19286/19410 19325/19450 +f 19285/19409 19356/19482 19325/19450 +f 12538/19412 19287/19411 12669/19485 +f 19358/19486 19326/19451 19251/19374 +f 19288/19413 19326/19451 19289/19414 +f 19254/19377 19327/19452 19255/19378 +f 19253/19376 19359/19487 19327/19452 +f 19330/19455 19259/19382 19290/19415 +f 19291/19416 19328/19453 19293/19418 +f 19290/19415 19291/19416 19331/19456 +f 19329/19454 19292/19417 19360/19488 +f 19361/19489 19292/19417 19330/19455 +f 19362/19490 19260/19383 19326/19451 +f 19362/19490 19331/19456 19260/19383 +f 19331/19456 19291/19416 19293/19418 +f 19294/19419 19297/19422 19363/19491 +f 19294/19419 19364/19492 19300/19425 +f 19265/19388 19332/19457 19333/19458 +f 19296/19421 19333/19458 19365/19493 +f 19335/19460 19222/19345 19334/19459 +f 19366/19494 19334/19459 19296/19421 +f 19335/19460 19363/19491 19297/19422 +f 19301/19426 19302/19427 19298/19423 +f 19367/19495 19336/19461 19225/19348 +f 19299/19424 19336/19461 19368/19496 +f 19299/19424 19368/19496 19337/19462 +f 19337/19462 19339/19464 19271/19394 +f 19338/19463 19300/19425 19364/19492 +f 19338/19463 19367/19495 19225/19348 +f 19339/19464 19340/19465 19301/19426 +f 19272/19395 19340/19465 19369/19497 +f 19302/19427 19301/19426 19340/19465 +f 19370/19498 19341/19466 19272/19395 +f 19371/19499 19303/19428 19341/19466 +f 19372/19500 19342/19467 19303/19428 +f 19342/19467 19372/19500 19304/19429 +f 19343/19468 19348/19473 19273/19396 +f 19373/19501 19343/19468 19304/19429 +f 19307/19432 19305/19430 19347/19472 +f 19306/19431 19374/19502 19305/19430 +f 19375/19503 19344/19469 19275/19398 +f 19306/19431 19344/19469 19376/19504 +f 19345/19470 19375/19503 19275/19398 +f 19345/19470 19277/19400 19349/19474 +f 19346/19471 19232/19355 19347/19472 +f 19377/19505 19308/19433 19309/19434 +f 19378/19506 19310/19435 19308/19433 +f 19309/19434 19348/19473 19379/19507 +f 19349/19474 19310/19435 19380/19508 +f 19381/19509 19318/19443 19311/19436 +f 19312/19437 19346/19471 19382/19510 +f 19350/19475 19312/19437 19382/19510 +f 19383/19511 19311/19436 19350/19475 +f 19384/19512 19313/19438 19351/19476 +f 19385/19513 19352/19477 19313/19438 +f 19315/19440 19282/19405 19353/19478 +f 19353/19478 19314/19439 19386/19514 +f 19352/19477 19386/19514 19314/19439 +f 19315/19440 19387/19515 19354/19479 +f 19316/19441 19355/19480 19351/19476 +f 19318/19443 19388/19516 19317/19442 +f 19317/19442 19389/19517 19355/19480 +f 19320/19445 19390/19518 19319/19444 +f 19390/19518 19320/19445 8723/19481 +f 19322/19447 19321/19446 19391/19519 +f 19391/19519 19323/19448 19322/19447 +f 19332/19457 19323/19448 19392/19520 +f 19319/19444 19390/19518 19321/19446 +f 19393/19521 19324/19449 19327/19452 +f 19393/19521 19356/19482 19324/19449 +f 19287/19411 12941/19483 12669/19485 +f 19286/19410 19357/19484 12941/19483 +f 19394/19522 19357/19484 19325/19450 +f 19325/19450 19356/19482 19394/19522 +f 19326/19451 19358/19486 19362/19490 +f 19358/19486 19251/19374 19395/19523 +f 19327/19452 19359/19487 19396/19524 +f 19397/19525 19330/19455 19290/19415 +f 19290/19415 19331/19456 19397/19525 +f 19360/19488 19292/19417 19361/19489 +f 19329/19454 19360/19488 19398/19526 +f 19399/19527 19361/19489 19330/19455 +f 19362/19490 19400/19528 19331/19456 +f 19401/19529 19294/19419 19363/19491 +f 19364/19492 19294/19419 19401/19529 +f 19332/19457 19402/19530 19333/19458 +f 19333/19458 19403/19531 19365/19493 +f 19365/19493 19366/19494 19296/19421 +f 19335/19460 19334/19459 19404/19532 +f 19334/19459 19366/19494 19405/19533 +f 19406/19534 19363/19491 19335/19460 +f 19367/19495 19368/19496 19336/19461 +f 19368/19496 19407/19535 19337/19462 +f 19408/19536 19339/19464 19337/19462 +f 19338/19463 19364/19492 19409/19537 +f 19367/19495 19338/19463 19410/19538 +f 19340/19465 19339/19464 19411/19539 +f 19412/19540 19369/19497 19340/19465 +f 19369/19497 19413/19541 19272/19395 +f 19370/19498 19272/19395 19413/19541 +f 19341/19466 19370/19498 19371/19499 +f 19414/19542 19303/19428 19371/19499 +f 19414/19542 19372/19500 19303/19428 +f 19372/19500 19373/19501 19304/19429 +f 19415/19543 19348/19473 19343/19468 +f 19373/19501 19416/19544 19343/19468 +f 19305/19430 19374/19502 19347/19472 +f 19374/19502 19306/19431 19376/19504 +f 19375/19503 19417/19545 19344/19469 +f 19418/19546 19376/19504 19344/19469 +f 19345/19470 19419/19547 19375/19503 +f 19420/19548 19345/19470 19349/19474 +f 19347/19472 19374/19502 19346/19471 +f 19308/19433 19377/19505 19378/19506 +f 19379/19507 19377/19505 19309/19434 +f 19310/19435 19378/19506 19380/19508 +f 19379/19507 19348/19473 19415/19543 +f 19420/19548 19349/19474 19380/19508 +f 19318/19443 19381/19509 19421/19549 +f 19311/19436 19422/19550 19381/19509 +f 19382/19510 19346/19471 19423/19551 +f 19350/19475 19382/19510 19383/19511 +f 19422/19550 19311/19436 19383/19511 +f 19385/19513 19313/19438 19384/19512 +f 19424/19552 19384/19512 19351/19476 +f 19352/19477 19385/19513 19425/19553 +f 19353/19478 19387/19515 19315/19440 +f 19353/19478 19386/19514 19387/19515 +f 19386/19514 19352/19477 19425/19553 +f 19355/19480 19424/19552 19351/19476 +f 19389/19517 19317/19442 19388/19516 +f 19388/19516 19318/19443 19426/19554 +f 19355/19480 19389/19517 19427/19555 +f 8723/19481 8715/19556 19390/19518 +f 19391/19519 19321/19446 8715/19556 +f 19323/19448 19391/19519 19392/19520 +f 19332/19457 19392/19520 19428/19557 +f 8715/19556 19321/19446 19390/19518 +f 19429/19558 19393/19521 19327/19452 +f 19393/19521 19430/19559 19356/19482 +f 12942/19560 12941/19483 19357/19484 +f 19357/19484 19394/19522 19431/19561 +f 19394/19522 19356/19482 19432/19562 +f 19358/19486 19433/19563 19362/19490 +f 19358/19486 19395/19523 19434/19564 +f 19359/19487 19435/19565 19396/19524 +f 19429/19558 19327/19452 19396/19524 +f 19397/19525 19436/19566 19330/19455 +f 19397/19525 19331/19456 19437/19567 +f 19360/19488 19361/19489 19398/19526 +f 19438/19568 19329/19454 19398/19526 +f 19361/19489 19399/19527 19439/19569 +f 19330/19455 19440/19570 19399/19527 +f 19433/19563 19400/19528 19362/19490 +f 19437/19567 19331/19456 19400/19528 +f 19363/19491 19406/19534 19401/19529 +f 19401/19529 19441/19571 19364/19492 +f 19402/19530 19403/19531 19333/19458 +f 19428/19557 19402/19530 19332/19457 +f 19403/19531 19366/19494 19365/19493 +f 19404/19532 19334/19459 19405/19533 +f 19335/19460 19404/19532 19406/19534 +f 19366/19494 19442/19572 19405/19533 +f 19367/19495 19443/19573 19368/19496 +f 19368/19496 19444/19574 19407/19535 +f 19408/19536 19337/19462 19407/19535 +f 19408/19536 19445/19575 19339/19464 +f 19364/19492 19441/19571 19409/19537 +f 19409/19537 19446/19576 19338/19463 +f 19367/19495 19410/19538 19447/19577 +f 19446/19576 19410/19538 19338/19463 +f 19411/19539 19339/19464 19445/19575 +f 19340/19465 19411/19539 19412/19540 +f 19369/19497 19412/19540 19448/19578 +f 19449/19579 19413/19541 19369/19497 +f 19413/19541 19450/19580 19370/19498 +f 19450/19580 19371/19499 19370/19498 +f 19371/19499 19451/19581 19414/19542 +f 19373/19501 19372/19500 19414/19542 +f 19416/19544 19415/19543 19343/19468 +f 19416/19544 19373/19501 19414/19542 +f 19423/19551 19374/19502 19376/19504 +f 19452/19582 19417/19545 19375/19503 +f 19418/19546 19344/19469 19417/19545 +f 19418/19546 19453/19583 19376/19504 +f 19454/19584 19419/19547 19345/19470 +f 19419/19547 19455/19585 19375/19503 +f 19454/19584 19345/19470 19420/19548 +f 19423/19551 19346/19471 19374/19502 +f 19456/19586 19378/19506 19377/19505 +f 19377/19505 19379/19507 19457/19587 +f 19380/19508 19378/19506 19456/19586 +f 19416/19544 19379/19507 19415/19543 +f 19456/19586 19420/19548 19380/19508 +f 19458/19588 19421/19549 19381/19509 +f 19426/19554 19318/19443 19421/19549 +f 19458/19588 19381/19509 19422/19550 +f 19382/19510 19423/19551 19459/19589 +f 19459/19589 19383/19511 19382/19510 +f 19422/19550 19383/19511 19459/19589 +f 19460/19590 19385/19513 19384/19512 +f 19384/19512 19424/19552 19461/19591 +f 19425/19553 19385/19513 19462/19592 +f 19387/19515 19386/19514 19463/19593 +f 19425/19553 19464/19594 19386/19514 +f 19427/19555 19424/19552 19355/19480 +f 19389/19517 19388/19516 19465/19595 +f 19466/19596 19388/19516 19426/19554 +f 19467/19597 19427/19555 19389/19517 +f 8715/19556 8725/19598 19391/19519 +f 19468/19599 19392/19520 19391/19519 +f 19428/19557 19392/19520 19468/19599 +f 19429/19558 19430/19559 19393/19521 +f 19430/19559 19432/19562 19356/19482 +f 19357/19484 19431/19561 12942/19560 +f 19431/19561 19394/19522 19432/19562 +f 19433/19563 19358/19486 19469/19600 +f 19434/19564 19469/19600 19358/19486 +f 19434/19564 19395/19523 19470/19601 +f 19471/19602 19396/19524 19435/19565 +f 19429/19558 19396/19524 19472/19603 +f 19473/19604 19436/19566 19397/19525 +f 19436/19566 19440/19570 19330/19455 +f 19473/19604 19397/19525 19437/19567 +f 19361/19489 19439/19569 19398/19526 +f 19474/19605 19438/19568 19398/19526 +f 19439/19569 19399/19527 19475/19606 +f 19399/19527 19440/19570 19476/19607 +f 19469/19600 19400/19528 19433/19563 +f 19400/19528 19477/19608 19437/19567 +f 19478/19609 19401/19529 19406/19534 +f 19401/19529 19478/19609 19441/19571 +f 19479/19610 19403/19531 19402/19530 +f 19402/19530 19428/19557 19479/19610 +f 19403/19531 19480/19611 19366/19494 +f 19481/19612 19404/19532 19405/19533 +f 19482/19613 19406/19534 19404/19532 +f 19442/19572 19366/19494 19480/19611 +f 19405/19533 19442/19572 19481/19612 +f 19444/19574 19368/19496 19443/19573 +f 19483/19614 19443/19573 19367/19495 +f 19407/19535 19444/19574 19484/19615 +f 19408/19536 19407/19535 19485/19616 +f 19486/19617 19445/19575 19408/19536 +f 19441/19571 19487/19618 19409/19537 +f 19409/19537 19487/19618 19446/19576 +f 19447/19577 19410/19538 19446/19576 +f 19367/19495 19447/19577 19483/19614 +f 19445/19575 19412/19540 19411/19539 +f 19448/19578 19412/19540 19486/19617 +f 19449/19579 19369/19497 19448/19578 +f 19488/19619 19413/19541 19449/19579 +f 19413/19541 19488/19619 19450/19580 +f 19489/19620 19371/19499 19450/19580 +f 19371/19499 19490/19621 19451/19581 +f 19414/19542 19451/19581 19416/19544 +f 19423/19551 19376/19504 19491/19622 +f 19492/19623 19417/19545 19452/19582 +f 19375/19503 19455/19585 19452/19582 +f 19492/19623 19418/19546 19417/19545 +f 19418/19546 19493/19624 19453/19583 +f 19453/19583 19494/19625 19376/19504 +f 19454/19584 19495/19626 19419/19547 +f 19496/19627 19455/19585 19419/19547 +f 19454/19584 19420/19548 19497/19628 +f 19497/19628 19456/19586 19377/19505 +f 19457/19587 19379/19507 19416/19544 +f 19498/19629 19377/19505 19457/19587 +f 19420/19548 19456/19586 19497/19628 +f 19426/19554 19421/19549 19458/19588 +f 19458/19588 19422/19550 19499/19630 +f 19423/19551 19500/19631 19459/19589 +f 19459/19589 19501/19632 19422/19550 +f 19460/19590 19462/19592 19385/19513 +f 19460/19590 19384/19512 19461/19591 +f 19461/19591 19424/19552 19502/19633 +f 19425/19553 19462/19592 19464/19594 +f 19386/19514 19464/19594 19463/19593 +f 19424/19552 19427/19555 19502/19633 +f 19389/19517 19465/19595 19467/19597 +f 19388/19516 19466/19596 19465/19595 +f 19426/19554 19503/19634 19466/19596 +f 19467/19597 19504/19635 19427/19555 +f 19391/19519 8725/19598 19468/19599 +f 19479/19610 19428/19557 19468/19599 +f 19430/19559 19429/19558 19505/19636 +f 19506/19637 19432/19562 19430/19559 +f 12942/19560 19431/19561 12943/19638 +f 19432/19562 19507/19639 19431/19561 +f 19469/19600 19434/19564 19508/19640 +f 19434/19564 19470/19601 19508/19640 +f 19471/19602 19435/19565 19509/19641 +f 19396/19524 19471/19602 19472/19603 +f 19429/19558 19472/19603 19505/19636 +f 19436/19566 19473/19604 19508/19640 +f 19510/19642 19440/19570 19436/19566 +f 19473/19604 19437/19567 19508/19640 +f 19439/19569 19474/19605 19398/19526 +f 19511/19643 19438/19568 19474/19605 +f 19474/19605 19439/19569 19475/19606 +f 19475/19606 19399/19527 19476/19607 +f 19440/19570 19510/19642 19476/19607 +f 19400/19528 19469/19600 19477/19608 +f 19437/19567 19477/19608 19469/19600 +f 19406/19534 19482/19613 19478/19609 +f 19441/19571 19478/19609 19487/19618 +f 19403/19531 19479/19610 19480/19611 +f 19481/19612 19512/19644 19404/19532 +f 19513/19645 19482/19613 19404/19532 +f 19442/19572 19480/19611 19514/19646 +f 19481/19612 19442/19572 19514/19646 +f 19443/19573 19515/19647 19444/19574 +f 19443/19573 19483/19614 19515/19647 +f 19485/19616 19407/19535 19484/19615 +f 19444/19574 19515/19647 19484/19615 +f 19408/19536 19485/19616 19516/19648 +f 19445/19575 19486/19617 19412/19540 +f 19408/19536 19516/19648 19486/19617 +f 19487/19618 19517/19649 19446/19576 +f 19483/19614 19447/19577 19446/19576 +f 19486/19617 19518/19650 19448/19578 +f 19488/19619 19449/19579 19448/19578 +f 19450/19580 19488/19619 19489/19620 +f 19519/19651 19371/19499 19489/19620 +f 19451/19581 19490/19621 19416/19544 +f 19371/19499 19519/19651 19490/19621 +f 19491/19622 19520/19652 19423/19551 +f 19376/19504 19494/19625 19491/19622 +f 19452/19582 15959/19653 19492/19623 +f 19455/19585 19521/19654 19452/19582 +f 19418/19546 19492/19623 19493/19624 +f 19493/19624 16033/19655 19453/19583 +f 19453/19583 19522/19656 19494/19625 +f 19454/19584 19498/19629 19495/19626 +f 19419/19547 19495/19626 19496/19627 +f 19455/19585 19496/19627 19523/19657 +f 19454/19584 19497/19628 19498/19629 +f 19497/19628 19377/19505 19498/19629 +f 19457/19587 19416/19544 19490/19621 +f 19524/19658 19498/19629 19457/19587 +f 19426/19554 19458/19588 19525/19659 +f 19499/19630 19422/19550 19501/19632 +f 19458/19588 19499/19630 19525/19659 +f 19520/19652 19500/19631 19423/19551 +f 19459/19589 19500/19631 19501/19632 +f 19526/19660 19462/19592 19460/19590 +f 19461/19591 19526/19660 19460/19590 +f 19461/19591 19502/19633 19527/19661 +f 19464/19594 19462/19592 19528/19662 +f 19463/19593 19464/19594 19529/19663 +f 19504/19635 19502/19633 19427/19555 +f 19467/19597 19465/19595 19530/19664 +f 19531/19665 19465/19595 19466/19596 +f 19503/19634 19532/19666 19466/19596 +f 19503/19634 19426/19554 19533/19667 +f 19534/19668 19504/19635 19467/19597 +f 19535/19669 19468/19599 8725/19598 +f 19479/19610 19468/19599 19535/19669 +f 19536/19670 19430/19559 19505/19636 +f 19506/19637 19430/19559 19536/19670 +f 19506/19637 19507/19639 19432/19562 +f 19507/19639 12943/19638 19431/19561 +f 19437/19567 19469/19600 19508/19640 +f 19508/19640 19470/19601 19537/19671 +f 19538/19672 19471/19602 19509/19641 +f 19472/19603 19471/19602 19539/19673 +f 19472/19603 19540/19674 19505/19636 +f 19508/19640 19537/19671 19436/19566 +f 19436/19566 19537/19671 19510/19642 +f 19541/19675 19511/19643 19474/19605 +f 19475/19606 19541/19675 19474/19605 +f 19475/19606 19476/19607 19542/19676 +f 19510/19642 19542/19676 19476/19607 +f 19478/19609 19482/19613 19543/19677 +f 19487/19618 19478/19609 19543/19677 +f 19479/19610 19544/19678 19480/19611 +f 19514/19646 19512/19644 19481/19612 +f 19512/19644 19513/19645 19404/19532 +f 19482/19613 19513/19645 19545/19679 +f 19546/19680 19514/19646 19480/19611 +f 19483/19614 19547/19681 19515/19647 +f 19484/19615 19548/19682 19485/19616 +f 19515/19647 19549/19683 19484/19615 +f 19516/19648 19485/19616 19550/19684 +f 19486/19617 19516/19648 19518/19650 +f 19446/19576 19517/19649 19551/19685 +f 19552/19686 19517/19649 19487/19618 +f 19551/19685 19483/19614 19446/19576 +f 19518/19650 19488/19619 19448/19578 +f 19489/19620 19488/19619 19553/19687 +f 19489/19620 19554/19688 19519/19651 +f 19524/19658 19490/19621 19519/19651 +f 19491/19622 19555/19689 19520/19652 +f 19491/19622 19494/19625 19555/19689 +f 15959/19653 19556/19690 19492/19623 +f 19521/19654 15959/19653 19452/19582 +f 19521/19654 19455/19585 19557/19691 +f 19493/19624 19492/19623 15972/19692 +f 16033/19655 19493/19624 15972/19692 +f 19453/19583 16033/19655 19522/19656 +f 19494/19625 19522/19656 19558/19693 +f 19495/19626 19498/19629 19524/19658 +f 19524/19658 19496/19627 19495/19626 +f 19557/19691 19455/19585 19523/19657 +f 19496/19627 19559/19694 19523/19657 +f 19457/19587 19490/19621 19524/19658 +f 19525/19659 19533/19667 19426/19554 +f 19501/19632 19525/19659 19499/19630 +f 19560/19695 19500/19631 19520/19652 +f 19525/19659 19501/19632 19500/19631 +f 19561/19696 19462/19592 19526/19660 +f 19526/19660 19461/19591 19562/19697 +f 19563/19698 19527/19661 19502/19633 +f 19527/19661 19562/19697 19461/19591 +f 19462/19592 19561/19696 19528/19662 +f 19529/19663 19464/19594 19528/19662 +f 19504/19635 19564/19699 19502/19633 +f 19530/19664 19465/19595 19565/19700 +f 19530/19664 19534/19668 19467/19597 +f 19465/19595 19531/19665 19566/19701 +f 19532/19666 19531/19665 19466/19596 +f 19503/19634 19567/19702 19532/19666 +f 19568/19703 19503/19634 19533/19667 +f 19569/19704 19504/19635 19534/19668 +f 8725/19598 8700/19705 19535/19669 +f 19570/19706 19479/19610 19535/19669 +f 19505/19636 19571/19707 19536/19670 +f 19572/19708 19506/19637 19536/19670 +f 19506/19637 13188/19709 19507/19639 +f 13188/19709 12943/19638 19507/19639 +f 19537/19671 19470/19601 19510/19642 +f 19471/19602 19538/19672 19539/19673 +f 19509/19641 19573/19710 19538/19672 +f 19539/19673 19540/19674 19472/19603 +f 19540/19674 19574/19711 19505/19636 +f 19542/19676 19541/19675 19475/19606 +f 19482/19613 19575/19712 19543/19677 +f 19552/19686 19487/19618 19543/19677 +f 19544/19678 19479/19610 19570/19706 +f 19544/19678 19576/19713 19480/19611 +f 19577/19714 19512/19644 19514/19646 +f 19577/19714 19513/19645 19512/19644 +f 19575/19712 19482/19613 19545/19679 +f 19513/19645 19578/19715 19545/19679 +f 19579/19716 19546/19680 19480/19611 +f 19546/19680 19577/19714 19514/19646 +f 19483/19614 19580/19717 19547/19681 +f 19547/19681 19549/19683 19515/19647 +f 19548/19682 19484/19615 19581/19718 +f 19550/19684 19485/19616 19548/19682 +f 19549/19683 19582/19719 19484/19615 +f 19516/19648 19550/19684 19583/19720 +f 19584/19721 19518/19650 19516/19648 +f 19585/19722 19551/19685 19517/19649 +f 19552/19686 19585/19722 19517/19649 +f 19483/19614 19551/19685 19586/19723 +f 19584/19721 19488/19619 19518/19650 +f 19587/19724 19489/19620 19553/19687 +f 19553/19687 19488/19619 19584/19721 +f 19554/19688 19588/19725 19519/19651 +f 19489/19620 19587/19724 19554/19688 +f 19589/19726 19524/19658 19519/19651 +f 19555/19689 19590/19727 19520/19652 +f 19494/19625 19590/19727 19555/19689 +f 19556/19690 15959/19653 15958/19728 +f 19556/19690 15972/19692 19492/19623 +f 15959/19653 19521/19654 15953/19729 +f 19521/19654 19557/19691 15943/19730 +f 16033/19655 16066/19731 19522/19656 +f 16066/19731 19558/19693 19522/19656 +f 19591/19732 19494/19625 19558/19693 +f 19496/19627 19524/19658 19559/19694 +f 15973/19733 19557/19691 19523/19657 +f 19559/19694 15973/19733 19523/19657 +f 19525/19659 19568/19703 19533/19667 +f 19560/19695 19568/19703 19500/19631 +f 19520/19652 19592/19734 19560/19695 +f 19568/19703 19525/19659 19500/19631 +f 19526/19660 19593/19735 19561/19696 +f 19594/19736 19526/19660 19562/19697 +f 19562/19697 19527/19661 19563/19698 +f 19502/19633 19595/19737 19563/19698 +f 19596/19738 19528/19662 19561/19696 +f 19528/19662 19596/19738 19529/19663 +f 19504/19635 19597/19739 19564/19699 +f 19595/19737 19502/19633 19564/19699 +f 19465/19595 19566/19701 19565/19700 +f 19534/19668 19530/19664 19565/19700 +f 19598/19740 19566/19701 19531/19665 +f 19599/19741 19531/19665 19532/19666 +f 19567/19702 19503/19634 19568/19703 +f 19567/19702 19600/19742 19532/19666 +f 19504/19635 19569/19704 19597/19739 +f 19569/19704 19534/19668 19565/19700 +f 19601/19743 19535/19669 8700/19705 +f 19535/19669 8675/19744 19570/19706 +f 19571/19707 19505/19636 19574/19711 +f 19602/19745 19536/19670 19571/19707 +f 19506/19637 19572/19708 13188/19709 +f 19536/19670 19602/19745 19572/19708 +f 19539/19673 19538/19672 19603/19746 +f 19573/19710 19603/19746 19538/19672 +f 19540/19674 19539/19673 19604/19747 +f 19540/19674 19604/19747 19574/19711 +f 19575/19712 19605/19748 19543/19677 +f 19543/19677 19605/19748 19552/19686 +f 19570/19706 19606/19749 19544/19678 +f 19576/19713 19544/19678 19607/19750 +f 19480/19611 19576/19713 19579/19716 +f 19578/19715 19513/19645 19577/19714 +f 19575/19712 19545/19679 19608/19751 +f 19609/19752 19545/19679 19578/19715 +f 19546/19680 19579/19716 19577/19714 +f 19580/19717 19483/19614 19586/19723 +f 19580/19717 19610/19753 19547/19681 +f 19549/19683 19547/19681 19611/19754 +f 19612/19755 19581/19718 19484/19615 +f 19613/19756 19548/19682 19581/19718 +f 19548/19682 19614/19757 19550/19684 +f 19549/19683 19615/19758 19582/19719 +f 19484/19615 19582/19719 19612/19755 +f 19583/19720 19550/19684 19616/19759 +f 19516/19648 19583/19720 19584/19721 +f 19551/19685 19585/19722 19586/19723 +f 19585/19722 19552/19686 19617/19760 +f 19553/19687 19618/19761 19587/19724 +f 19618/19761 19553/19687 19584/19721 +f 19588/19725 19554/19688 16103/19762 +f 19588/19725 19589/19726 19519/19651 +f 19587/19724 19619/19763 19554/19688 +f 19620/19764 19524/19658 19589/19726 +f 19590/19727 19592/19734 19520/19652 +f 19494/19625 19621/19765 19590/19727 +f 15972/19692 19556/19690 15958/19728 +f 15953/19729 19521/19654 15943/19730 +f 15943/19730 19557/19691 15973/19733 +f 19558/19693 16066/19731 16080/19766 +f 19591/19732 19622/19767 19494/19625 +f 19558/19693 16080/19766 19591/19732 +f 19559/19694 19524/19658 15982/19768 +f 15973/19733 19559/19694 15982/19768 +f 19560/19695 19623/19769 19568/19703 +f 19592/19734 19624/19770 19560/19695 +f 19594/19736 19593/19735 19526/19660 +f 19625/19771 19561/19696 19593/19735 +f 19626/19772 19594/19736 19562/19697 +f 19563/19698 19627/19773 19562/19697 +f 19628/19774 19563/19698 19595/19737 +f 19596/19738 19561/19696 19625/19771 +f 19564/19699 19597/19739 19629/19775 +f 19564/19699 19629/19775 19595/19737 +f 19566/19701 19630/19776 19565/19700 +f 19531/19665 19599/19741 19598/19740 +f 19631/19777 19566/19701 19598/19740 +f 19599/19741 19532/19666 19600/19742 +f 19568/19703 19623/19769 19567/19702 +f 19632/19778 19600/19742 19567/19702 +f 19597/19739 19569/19704 19633/19779 +f 19565/19700 19633/19779 19569/19704 +f 8675/19744 19535/19669 19601/19743 +f 8700/19705 8652/19780 19601/19743 +f 8650/19781 19570/19706 8675/19744 +f 19634/19782 19571/19707 19574/19711 +f 19635/19783 19602/19745 19571/19707 +f 13188/19709 19572/19708 12944/19784 +f 19602/19745 13189/19785 19572/19708 +f 19636/19786 19539/19673 19603/19746 +f 19573/19710 19637/19787 19603/19746 +f 19636/19786 19604/19747 19539/19673 +f 19574/19711 19604/19747 19638/19788 +f 19575/19712 19608/19751 19605/19748 +f 19552/19686 19605/19748 19617/19760 +f 19639/19789 19544/19678 19606/19749 +f 19570/19706 8650/19781 19606/19749 +f 19607/19750 19544/19678 19639/19789 +f 19640/19790 19576/19713 19607/19750 +f 19579/19716 19576/19713 19641/19791 +f 19578/19715 19577/19714 19579/19716 +f 19608/19751 19545/19679 19642/19792 +f 19545/19679 19609/19752 19642/19792 +f 19578/19715 19643/19793 19609/19752 +f 19610/19753 19580/19717 19586/19723 +f 19610/19753 19611/19754 19547/19681 +f 19611/19754 19615/19758 19549/19683 +f 19612/19755 19644/19794 19581/19718 +f 19644/19794 19613/19756 19581/19718 +f 19613/19756 19614/19757 19548/19682 +f 19550/19684 19614/19757 19645/19795 +f 19582/19719 19615/19758 19646/19796 +f 19582/19719 19646/19796 19612/19755 +f 19616/19759 19550/19684 19647/19797 +f 19583/19720 19616/19759 19648/19798 +f 19583/19720 19618/19761 19584/19721 +f 19586/19723 19585/19722 19649/19799 +f 19617/19760 19649/19799 19585/19722 +f 19618/19761 19650/19800 19587/19724 +f 19619/19763 16103/19762 19554/19688 +f 16103/19762 19651/19801 19588/19725 +f 19588/19725 19620/19764 19589/19726 +f 19619/19763 19587/19724 19650/19800 +f 19620/19764 15982/19768 19524/19658 +f 19590/19727 19652/19802 19592/19734 +f 19653/19803 19590/19727 19621/19765 +f 19494/19625 19622/19767 19621/19765 +f 19591/19732 19654/19804 19622/19767 +f 19654/19804 19591/19732 16080/19766 +f 19624/19770 19623/19769 19560/19695 +f 19652/19802 19624/19770 19592/19734 +f 19593/19735 19594/19736 19655/19805 +f 19593/19735 19656/19806 19625/19771 +f 19657/19807 19594/19736 19626/19772 +f 19562/19697 19627/19773 19626/19772 +f 19563/19698 19658/19808 19627/19773 +f 19658/19808 19563/19698 19628/19774 +f 19629/19775 19628/19774 19595/19737 +f 19656/19806 19596/19738 19625/19771 +f 19629/19775 19597/19739 19659/19809 +f 19630/19776 19566/19701 19631/19777 +f 19630/19776 19633/19779 19565/19700 +f 19600/19742 19598/19740 19599/19741 +f 19631/19777 19598/19740 19660/19810 +f 19567/19702 19623/19769 19632/19778 +f 19600/19742 19632/19778 19660/19810 +f 19597/19739 19633/19779 19659/19809 +f 8651/19811 8675/19744 19601/19743 +f 8652/19780 8651/19811 19601/19743 +f 19634/19782 19574/19711 19661/19812 +f 19635/19783 19571/19707 19634/19782 +f 19662/19813 19602/19745 19635/19783 +f 19572/19708 13189/19785 12944/19784 +f 13189/19785 19602/19745 19662/19813 +f 19603/19746 19663/19814 19636/19786 +f 19637/19787 19663/19814 19603/19746 +f 19604/19747 19636/19786 19663/19814 +f 19661/19812 19574/19711 19638/19788 +f 19638/19788 19604/19747 19664/19815 +f 19608/19751 19617/19760 19605/19748 +f 19639/19789 19606/19749 8650/19781 +f 19639/19789 19665/19816 19607/19750 +f 19576/19713 19640/19790 19641/19791 +f 19666/19817 19640/19790 19607/19750 +f 19641/19791 19667/19818 19579/19716 +f 19667/19818 19578/19715 19579/19716 +f 19668/19819 19608/19751 19642/19792 +f 19609/19752 19668/19819 19642/19792 +f 19643/19793 19669/19820 19609/19752 +f 19578/19715 19667/19818 19643/19793 +f 19670/19821 19610/19753 19586/19723 +f 19611/19754 19610/19753 19671/19822 +f 19615/19758 19611/19754 19672/19823 +f 19612/19755 19673/19824 19644/19794 +f 19674/19825 19613/19756 19644/19794 +f 19614/19757 19613/19756 19675/19826 +f 19614/19757 19675/19826 19645/19795 +f 19645/19795 19647/19797 19550/19684 +f 19646/19796 19615/19758 19672/19823 +f 19673/19824 19612/19755 19646/19796 +f 19616/19759 19647/19797 19676/19827 +f 19583/19720 19648/19798 19618/19761 +f 19648/19798 19616/19759 19677/19828 +f 19649/19799 19678/19829 19586/19723 +f 19617/19760 19608/19751 19649/19799 +f 19648/19798 19650/19800 19618/19761 +f 19619/19763 19679/19830 16103/19762 +f 19680/19831 19651/19801 16103/19762 +f 19588/19725 19651/19801 19620/19764 +f 19650/19800 19679/19830 19619/19763 +f 15982/19768 19620/19764 16024/19832 +f 19653/19803 19652/19802 19590/19727 +f 19681/19833 19653/19803 19621/19765 +f 19621/19765 19622/19767 19682/19834 +f 19682/19834 19622/19767 19654/19804 +f 16139/19835 19654/19804 16080/19766 +f 19623/19769 19624/19770 19683/19836 +f 19652/19802 19653/19803 19624/19770 +f 19594/19736 19657/19807 19655/19805 +f 19656/19806 19593/19735 19655/19805 +f 19657/19807 19626/19772 19684/19837 +f 19627/19773 19685/19838 19626/19772 +f 19658/19808 19686/19839 19627/19773 +f 19686/19839 19658/19808 19628/19774 +f 19629/19775 19687/19840 19628/19774 +f 19659/19809 19688/19841 19629/19775 +f 19631/19777 19689/19842 19630/19776 +f 19630/19776 19690/19843 19633/19779 +f 19600/19742 19660/19810 19598/19740 +f 19691/19844 19631/19777 19660/19810 +f 19623/19769 19683/19836 19632/19778 +f 19692/19845 19660/19810 19632/19778 +f 19633/19779 19693/19846 19659/19809 +f 19661/19812 19694/19847 19634/19782 +f 19635/19783 19634/19782 19695/19848 +f 19635/19783 19695/19848 19662/19813 +f 13190/19849 13189/19785 19662/19813 +f 19663/19814 19637/19787 19696/19850 +f 19697/19851 19604/19747 19663/19814 +f 19698/19852 19661/19812 19638/19788 +f 19604/19747 19697/19851 19664/19815 +f 19699/19853 19638/19788 19664/19815 +f 19639/19789 8650/19781 8617/19854 +f 19665/19816 19639/19789 8649/19855 +f 19607/19750 19665/19816 19666/19817 +f 19640/19790 19700/19856 19641/19791 +f 19666/19817 8726/19857 19640/19790 +f 19701/19858 19667/19818 19641/19791 +f 19608/19751 19668/19819 19702/19859 +f 19668/19819 19609/19752 19669/19820 +f 19643/19793 19703/19860 19669/19820 +f 19643/19793 19667/19818 19701/19858 +f 19610/19753 19670/19821 19704/19861 +f 19586/19723 19678/19829 19670/19821 +f 19671/19822 19610/19753 19704/19861 +f 19611/19754 19671/19822 19672/19823 +f 19673/19824 19705/19862 19644/19794 +f 19674/19825 19675/19826 19613/19756 +f 19706/19863 19674/19825 19644/19794 +f 19645/19795 19675/19826 19674/19825 +f 19647/19797 19645/19795 19676/19827 +f 19646/19796 19672/19823 19673/19824 +f 19677/19828 19616/19759 19676/19827 +f 19648/19798 19677/19828 19707/19864 +f 19649/19799 19708/19865 19678/19829 +f 19702/19859 19649/19799 19608/19751 +f 19650/19800 19648/19798 19709/19866 +f 19679/19830 16121/19867 16103/19762 +f 19680/19831 16103/19762 16055/19868 +f 16024/19832 19651/19801 19680/19831 +f 19620/19764 19651/19801 16024/19832 +f 19650/19800 19710/19869 19679/19830 +f 19711/19870 19653/19803 19681/19833 +f 19681/19833 19621/19765 19712/19871 +f 19712/19871 19621/19765 19682/19834 +f 19654/19804 16166/19872 19682/19834 +f 19654/19804 16139/19835 16166/19872 +f 19683/19836 19624/19770 19653/19803 +f 19713/19873 19655/19805 19657/19807 +f 19714/19874 19656/19806 19655/19805 +f 19684/19837 19626/19772 19685/19838 +f 19715/19875 19657/19807 19684/19837 +f 19716/19876 19685/19838 19627/19773 +f 19686/19839 19717/19877 19627/19773 +f 19687/19840 19686/19839 19628/19774 +f 19687/19840 19629/19775 19688/19841 +f 19718/19878 19688/19841 19659/19809 +f 19719/19879 19630/19776 19689/19842 +f 19689/19842 19631/19777 19720/19880 +f 19690/19843 19630/19776 19719/19879 +f 19633/19779 19690/19843 19693/19846 +f 19631/19777 19691/19844 19720/19880 +f 19660/19810 19721/19881 19691/19844 +f 19632/19778 19683/19836 19711/19870 +f 19721/19881 19660/19810 19692/19845 +f 19632/19778 19711/19870 19692/19845 +f 19693/19846 19722/19882 19659/19809 +f 19695/19848 19634/19782 19694/19847 +f 19698/19852 19694/19847 19661/19812 +f 19695/19848 13190/19849 19662/19813 +f 19697/19851 19663/19814 19696/19850 +f 19696/19850 19637/19787 19723/19883 +f 19724/19884 19698/19852 19638/19788 +f 19664/19815 19697/19851 19699/19853 +f 19699/19853 19724/19884 19638/19788 +f 19639/19789 8617/19854 8649/19855 +f 19665/19816 8649/19855 8699/19885 +f 8699/19885 19666/19817 19665/19816 +f 19700/19856 19640/19790 8726/19857 +f 19701/19858 19641/19791 19700/19856 +f 8696/19886 8726/19857 19666/19817 +f 19702/19859 19668/19819 19708/19865 +f 19669/19820 19725/19887 19668/19819 +f 19701/19858 19703/19860 19643/19793 +f 19726/19888 19669/19820 19703/19860 +f 19678/19829 19704/19861 19670/19821 +f 19727/19889 19671/19822 19704/19861 +f 19728/19890 19672/19823 19671/19822 +f 19729/19891 19705/19862 19673/19824 +f 19644/19794 19705/19862 19730/19892 +f 19674/19825 19706/19863 19731/19893 +f 19730/19892 19706/19863 19644/19794 +f 19645/19795 19674/19825 19676/19827 +f 19673/19824 19672/19823 19729/19891 +f 19676/19827 19732/19894 19677/19828 +f 19709/19866 19648/19798 19707/19864 +f 19707/19864 19677/19828 19733/19895 +f 19702/19859 19708/19865 19649/19799 +f 19708/19865 19734/19896 19678/19829 +f 19710/19869 19650/19800 19709/19866 +f 19679/19830 19710/19869 16121/19867 +f 16055/19868 16024/19832 19680/19831 +f 19735/19897 19711/19870 19681/19833 +f 19683/19836 19653/19803 19711/19870 +f 19736/19898 19681/19833 19712/19871 +f 19712/19871 19682/19834 16166/19872 +f 19655/19805 19713/19873 19714/19874 +f 19713/19873 19657/19807 19737/19899 +f 19685/19838 19738/19900 19684/19837 +f 19657/19807 19715/19875 19737/19899 +f 19738/19900 19715/19875 19684/19837 +f 19716/19876 19738/19900 19685/19838 +f 19627/19773 19739/19901 19716/19876 +f 19740/19902 19717/19877 19686/19839 +f 19627/19773 19717/19877 19739/19901 +f 19687/19840 19741/19903 19686/19839 +f 19687/19840 19688/19841 19741/19903 +f 19742/19904 19688/19841 19718/19878 +f 19659/19809 19722/19882 19718/19878 +f 19719/19879 19689/19842 19743/19905 +f 19689/19842 19720/19880 19744/19906 +f 19690/19843 19719/19879 19693/19846 +f 19691/19844 19744/19906 19720/19880 +f 19721/19881 19744/19906 19691/19844 +f 19692/19845 19745/19907 19721/19881 +f 19711/19870 19745/19907 19692/19845 +f 19722/19882 19693/19846 19746/19908 +f 19747/19909 19695/19848 19694/19847 +f 19748/19910 19694/19847 19698/19852 +f 19695/19848 13407/19911 13190/19849 +f 19697/19851 19696/19850 19699/19853 +f 19696/19850 19723/19883 19749/19912 +f 19698/19852 19724/19884 19750/19913 +f 19699/19853 19751/19914 19724/19884 +f 8696/19886 19666/19817 8699/19885 +f 19700/19856 8726/19857 8727/19915 +f 19700/19856 19752/19916 19701/19858 +f 19668/19819 19725/19887 19708/19865 +f 19725/19887 19669/19820 19753/19917 +f 19703/19860 19701/19858 19754/19918 +f 19669/19820 19726/19888 19753/19917 +f 19755/19919 19704/19861 19678/19829 +f 19756/19920 19671/19822 19727/19889 +f 19727/19889 19704/19861 19757/19921 +f 19728/19890 19671/19822 19758/19922 +f 19728/19890 19759/19923 19672/19823 +f 19729/19891 19730/19892 19705/19862 +f 19731/19893 19676/19827 19674/19825 +f 19672/19823 19759/19923 19729/19891 +f 19676/19827 19731/19893 19732/19894 +f 19677/19828 19732/19894 19733/19895 +f 19710/19869 19709/19866 19707/19864 +f 19707/19864 19733/19895 19710/19869 +f 19734/19896 19708/19865 19725/19887 +f 19678/19829 19734/19896 19755/19919 +f 19710/19869 16146/19924 16121/19867 +f 19735/19897 19745/19907 19711/19870 +f 19681/19833 19760/19925 19735/19897 +f 19736/19898 19760/19925 19681/19833 +f 19736/19898 19712/19871 16224/19926 +f 16224/19926 19712/19871 16166/19872 +f 19714/19874 19713/19873 19761/19927 +f 19713/19873 19737/19899 19761/19927 +f 19715/19875 19762/19928 19737/19899 +f 19715/19875 19738/19900 19763/19929 +f 19716/19876 19764/19930 19738/19900 +f 19765/19931 19716/19876 19739/19901 +f 19717/19877 19740/19902 19766/19932 +f 19740/19902 19686/19839 19741/19903 +f 19717/19877 19767/19933 19739/19901 +f 19741/19903 19688/19841 19742/19904 +f 19742/19904 19718/19878 19768/19934 +f 19768/19934 19718/19878 19722/19882 +f 19689/19842 19769/19935 19743/19905 +f 19743/19905 19693/19846 19719/19879 +f 19770/19936 19689/19842 19744/19906 +f 19771/19937 19744/19906 19721/19881 +f 19745/19907 19772/19938 19721/19881 +f 19746/19908 19693/19846 19743/19905 +f 19746/19908 19768/19934 19722/19882 +f 19694/19847 19773/19939 19747/19909 +f 19774/19940 19695/19848 19747/19909 +f 19748/19910 19698/19852 19775/19941 +f 19748/19910 19773/19939 19694/19847 +f 19695/19848 19774/19940 13407/19911 +f 19696/19850 19776/19942 19699/19853 +f 19776/19942 19696/19850 19749/19912 +f 19750/19913 19724/19884 19777/19943 +f 19750/19913 19778/19944 19698/19852 +f 19699/19853 19779/19945 19751/19914 +f 19724/19884 19751/19914 19779/19945 +f 19752/19916 19700/19856 8727/19915 +f 19701/19858 19752/19916 19754/19918 +f 19725/19887 19753/19917 19780/19946 +f 19726/19888 19781/19947 19753/19917 +f 19704/19861 19755/19919 19782/19948 +f 19727/19889 19783/19949 19756/19920 +f 19758/19922 19671/19822 19756/19920 +f 19704/19861 19782/19948 19757/19921 +f 19784/19950 19728/19890 19758/19922 +f 19728/19890 19784/19950 19759/19923 +f 19785/19951 19730/19892 19729/19891 +f 19759/19923 19785/19951 19729/19891 +f 19732/19894 19731/19893 19786/19952 +f 19733/19895 19732/19894 19787/19953 +f 19710/19869 19733/19895 19788/19954 +f 19734/19896 19725/19887 19780/19946 +f 19755/19919 19734/19896 19789/19955 +f 16146/19924 19710/19869 19788/19954 +f 19772/19938 19745/19907 19735/19897 +f 19735/19897 19760/19925 19772/19938 +f 19760/19925 19736/19898 16279/19956 +f 16224/19926 16279/19956 19736/19898 +f 19790/19957 19761/19927 19737/19899 +f 19762/19928 19790/19957 19737/19899 +f 19715/19875 19763/19929 19762/19928 +f 19763/19929 19738/19900 19764/19930 +f 19764/19930 19716/19876 19791/19958 +f 19765/19931 19791/19958 19716/19876 +f 19739/19901 19792/19959 19765/19931 +f 19793/19960 19766/19932 19740/19902 +f 19717/19877 19766/19932 19767/19933 +f 19741/19903 19794/19961 19740/19902 +f 19767/19933 19792/19959 19739/19901 +f 19741/19903 19742/19904 19794/19961 +f 19768/19934 19795/19962 19742/19904 +f 19743/19905 19769/19935 19796/19963 +f 19797/19964 19769/19935 19689/19842 +f 19797/19964 19689/19842 19770/19936 +f 19798/19965 19770/19936 19744/19906 +f 19744/19906 19771/19937 19798/19965 +f 19771/19937 19721/19881 19799/19966 +f 19772/19938 19799/19966 19721/19881 +f 19800/19967 19746/19908 19743/19905 +f 19768/19934 19746/19908 19801/19968 +f 19802/19969 19747/19909 19773/19939 +f 19774/19940 19747/19909 19802/19969 +f 19773/19939 19748/19910 19775/19941 +f 19775/19941 19698/19852 19778/19944 +f 13407/19911 19774/19940 13291/19970 +f 19779/19945 19699/19853 19776/19942 +f 19776/19942 19749/19912 19803/19971 +f 19777/19943 19724/19884 19804/19972 +f 19777/19943 19805/19973 19750/19913 +f 19750/19913 19806/19974 19778/19944 +f 19779/19945 19804/19972 19724/19884 +f 19752/19916 8727/19915 8729/19975 +f 19754/19918 19752/19916 8729/19975 +f 19807/19976 19780/19946 19753/19917 +f 19753/19917 19781/19947 19807/19976 +f 19782/19948 19755/19919 19808/19977 +f 19783/19949 19809/19978 19756/19920 +f 19809/19978 19758/19922 19756/19920 +f 19782/19948 19810/19979 19757/19921 +f 19809/19978 19784/19950 19758/19922 +f 19811/19980 19759/19923 19784/19950 +f 19812/19981 19730/19892 19785/19951 +f 19759/19923 19811/19980 19785/19951 +f 19786/19952 19787/19953 19732/19894 +f 19787/19953 19788/19954 19733/19895 +f 19789/19955 19734/19896 19780/19946 +f 19808/19977 19755/19919 19789/19955 +f 19788/19954 19813/19982 16146/19924 +f 19760/19925 19799/19966 19772/19938 +f 19760/19925 16279/19956 19814/19983 +f 19762/19928 19763/19929 19815/19984 +f 19764/19930 19816/19985 19763/19929 +f 19791/19958 19817/19986 19764/19930 +f 19791/19958 19765/19931 19792/19959 +f 19818/19987 19766/19932 19793/19960 +f 19794/19961 19793/19960 19740/19902 +f 19767/19933 19766/19932 19819/19988 +f 19820/19989 19792/19959 19767/19933 +f 19821/19990 19794/19961 19742/19904 +f 19822/19991 19742/19904 19795/19962 +f 19823/19992 19795/19962 19768/19934 +f 19769/19935 19797/19964 19796/19963 +f 19796/19963 19800/19967 19743/19905 +f 19770/19936 19824/19993 19797/19964 +f 19770/19936 19798/19965 19825/19994 +f 19825/19994 19798/19965 19771/19937 +f 19826/19995 19771/19937 19799/19966 +f 19801/19968 19746/19908 19800/19967 +f 19801/19968 19827/19996 19768/19934 +f 19802/19969 19773/19939 19828/19997 +f 19802/19969 13291/19970 19774/19940 +f 19773/19939 19775/19941 19828/19997 +f 19778/19944 19829/19998 19775/19941 +f 19776/19942 19830/19999 19779/19945 +f 19803/19971 19749/19912 19831/20000 +f 19830/19999 19776/19942 19803/19971 +f 19832/20001 19777/19943 19804/19972 +f 19777/19943 19833/20002 19805/19973 +f 19805/19973 19806/19974 19750/19913 +f 19778/19944 19806/19974 19834/20003 +f 19779/19945 19835/20004 19804/19972 +f 19807/19976 19789/19955 19780/19946 +f 19810/19979 19782/19948 19808/19977 +f 19783/19949 19836/20005 19809/19978 +f 19809/19978 19837/20006 19784/19950 +f 19811/19980 19784/19950 19838/20007 +f 19839/20008 19730/19892 19812/19981 +f 19811/19980 19812/19981 19785/19951 +f 19788/19954 19787/19953 19840/20009 +f 19789/19955 19841/20010 19808/19977 +f 16196/20011 16146/19924 19813/19982 +f 19840/20009 19813/19982 19788/19954 +f 19760/19925 19826/19995 19799/19966 +f 19842/20012 19760/19925 19814/19983 +f 16279/19956 16277/20013 19814/19983 +f 19816/19985 19815/19984 19763/19929 +f 19817/19986 19816/19985 19764/19930 +f 19817/19986 19791/19958 19843/20014 +f 19792/19959 19820/19989 19791/19958 +f 19766/19932 19818/19987 19819/19988 +f 19793/19960 19844/20015 19818/19987 +f 19793/19960 19794/19961 19845/20016 +f 19819/19988 19820/19989 19767/19933 +f 19742/19904 19822/19991 19821/19990 +f 19845/20016 19794/19961 19821/19990 +f 19795/19962 19846/20017 19822/19991 +f 19847/20018 19795/19962 19823/19992 +f 19823/19992 19768/19934 19827/19996 +f 19796/19963 19797/19964 19848/20019 +f 19800/19967 19796/19963 19849/20020 +f 19850/20021 19824/19993 19770/19936 +f 19797/19964 19824/19993 19851/20022 +f 19850/20021 19770/19936 19825/19994 +f 19852/20023 19825/19994 19771/19937 +f 19771/19937 19826/19995 19852/20023 +f 19801/19968 19800/19967 19849/20020 +f 19853/20024 19827/19996 19801/19968 +f 19854/20025 19802/19969 19828/19997 +f 19802/19969 19855/20026 13291/19970 +f 19828/19997 19775/19941 19856/20027 +f 19829/19998 19778/19944 19834/20003 +f 19857/20028 19775/19941 19829/19998 +f 19779/19945 19830/19999 19835/20004 +f 19831/20000 19858/20029 19803/19971 +f 19858/20029 19830/19999 19803/19971 +f 19777/19943 19832/20001 19833/20002 +f 19804/19972 19835/20004 19832/20001 +f 19833/20002 19859/20030 19805/19973 +f 19806/19974 19805/19973 19860/20031 +f 19806/19974 19861/20032 19834/20003 +f 19789/19955 19807/19976 19841/20010 +f 19841/20010 19810/19979 19808/19977 +f 19837/20006 19809/19978 19836/20005 +f 19784/19950 19837/20006 19838/20007 +f 19838/20007 19839/20008 19811/19980 +f 19812/19981 19811/19980 19839/20008 +f 16196/20011 19813/19982 19840/20009 +f 19760/19925 19842/20012 19826/19995 +f 19862/20033 19842/20012 19814/19983 +f 16277/20013 19863/20034 19814/19983 +f 19864/20035 19815/19984 19816/19985 +f 19816/19985 19817/19986 19864/20035 +f 19843/20014 19865/20036 19817/19986 +f 19791/19958 19866/20037 19843/20014 +f 19820/19989 19867/20038 19791/19958 +f 19868/20039 19819/19988 19818/19987 +f 19844/20015 19793/19960 19869/20040 +f 19818/19987 19844/20015 19868/20039 +f 19793/19960 19845/20016 19869/20040 +f 19820/19989 19819/19988 19870/20041 +f 19821/19990 19822/19991 19871/20042 +f 19872/20043 19845/20016 19821/19990 +f 19846/20017 19795/19962 19847/20018 +f 19822/19991 19846/20017 19871/20042 +f 19873/20044 19847/20018 19823/19992 +f 19823/19992 19827/19996 19874/20045 +f 19797/19964 19851/20022 19848/20019 +f 19848/20019 19875/20046 19796/19963 +f 19796/19963 19875/20046 19849/20020 +f 19876/20047 19824/19993 19850/20021 +f 19851/20022 19824/19993 19877/20048 +f 19878/20049 19850/20021 19825/19994 +f 19852/20023 19878/20049 19825/19994 +f 19842/20012 19852/20023 19826/19995 +f 19849/20020 19879/20050 19801/19968 +f 19801/19968 19879/20050 19853/20024 +f 19827/19996 19853/20024 19874/20045 +f 19854/20025 19855/20026 19802/19969 +f 19880/20051 19854/20025 19828/19997 +f 19856/20027 19775/19941 19857/20028 +f 19881/20052 19828/19997 19856/20027 +f 19857/20028 19829/19998 19834/20003 +f 19835/20004 19830/19999 19882/20053 +f 19858/20029 19831/20000 19883/20054 +f 19882/20053 19830/19999 19858/20029 +f 19832/20001 19882/20053 19833/20002 +f 19832/20001 19835/20004 19882/20053 +f 19833/20002 19884/20055 19859/20030 +f 19859/20030 19885/20056 19805/19973 +f 19806/19974 19860/20031 19861/20032 +f 19860/20031 19805/19973 19886/20057 +f 19834/20003 19861/20032 19887/20058 +f 19888/20059 19842/20012 19862/20033 +f 19863/20034 19862/20033 19814/19983 +f 16277/20013 16278/20060 19863/20034 +f 19817/19986 19889/20061 19864/20035 +f 19890/20062 19865/20036 19843/20014 +f 19889/20061 19817/19986 19865/20036 +f 19867/20038 19866/20037 19791/19958 +f 19843/20014 19866/20037 19890/20062 +f 19820/19989 19891/20063 19867/20038 +f 19819/19988 19868/20039 19891/20063 +f 19892/20064 19844/20015 19869/20040 +f 19868/20039 19844/20015 19893/20065 +f 19894/20066 19869/20040 19845/20016 +f 19891/20063 19870/20041 19819/19988 +f 19870/20041 19891/20063 19820/19989 +f 19871/20042 19872/20043 19821/19990 +f 19845/20016 19872/20043 19894/20066 +f 19846/20017 19847/20018 19895/20067 +f 19895/20067 19871/20042 19846/20017 +f 19896/20068 19847/20018 19873/20044 +f 19897/20069 19873/20044 19823/19992 +f 19874/20045 19897/20069 19823/19992 +f 19898/20070 19848/20019 19851/20022 +f 19848/20019 19899/20071 19875/20046 +f 19900/20072 19849/20020 19875/20046 +f 16456/20073 19876/20047 19850/20021 +f 19877/20048 19824/19993 19876/20047 +f 19901/20074 19851/20022 19877/20048 +f 19850/20021 19878/20049 19902/20075 +f 19852/20023 19888/20059 19878/20049 +f 19888/20059 19852/20023 19842/20012 +f 19879/20050 19849/20020 19900/20072 +f 19903/20076 19853/20024 19879/20050 +f 19853/20024 19903/20076 19874/20045 +f 19904/20077 19880/20051 19828/19997 +f 19857/20028 19887/20058 19856/20027 +f 19881/20052 19904/20077 19828/19997 +f 19856/20027 19905/20078 19881/20052 +f 19834/20003 19887/20058 19857/20028 +f 19831/20000 19906/20079 19883/20054 +f 19883/20054 19907/20080 19858/20029 +f 19882/20053 19858/20029 19907/20080 +f 19833/20002 19882/20053 19884/20055 +f 19884/20055 19908/20081 19859/20030 +f 19908/20081 19885/20056 19859/20030 +f 19805/19973 19885/20056 19886/20057 +f 19860/20031 19909/20082 19861/20032 +f 19909/20082 19860/20031 19886/20057 +f 19887/20058 19861/20032 19910/20083 +f 19911/20084 19888/20059 19862/20033 +f 19863/20034 19911/20084 19862/20033 +f 19863/20034 16278/20060 19911/20084 +f 19864/20035 19889/20061 19912/20085 +f 19865/20036 19890/20062 19913/20086 +f 19865/20036 19914/20087 19889/20061 +f 19915/20088 19866/20037 19867/20038 +f 19866/20037 19916/20089 19890/20062 +f 19891/20063 19917/20090 19867/20038 +f 19891/20063 19868/20039 19893/20065 +f 19844/20015 19892/20064 19893/20065 +f 19918/20091 19892/20064 19869/20040 +f 19894/20066 19918/20091 19869/20040 +f 19894/20066 19872/20043 19871/20042 +f 19847/20018 19896/20068 19895/20067 +f 19896/20068 19871/20042 19895/20067 +f 19873/20044 19897/20069 19896/20068 +f 19874/20045 19919/20092 19897/20069 +f 19848/20019 19898/20070 19899/20071 +f 19901/20074 19898/20070 19851/20022 +f 19875/20046 19899/20071 19920/20093 +f 19875/20046 19920/20093 19900/20072 +f 16456/20073 19921/20094 19876/20047 +f 16456/20073 19850/20021 19902/20075 +f 19876/20047 19921/20094 19877/20048 +f 19901/20074 19877/20048 19921/20094 +f 19922/20095 19902/20075 19878/20049 +f 19888/20059 19923/20096 19878/20049 +f 19879/20050 19900/20072 19903/20076 +f 19919/20092 19874/20045 19903/20076 +f 19856/20027 19887/20058 19924/20097 +f 19905/20078 19925/20098 19881/20052 +f 19856/20027 19924/20097 19905/20078 +f 19926/20099 19883/20054 19906/20079 +f 19883/20054 19926/20099 19907/20080 +f 19882/20053 19907/20080 19884/20055 +f 19907/20080 19908/20081 19884/20055 +f 19885/20056 19927/20100 19886/20057 +f 19861/20032 19909/20082 19928/20101 +f 19929/20102 19909/20082 19886/20057 +f 19910/20083 19861/20032 19928/20101 +f 19910/20083 19930/20103 19887/20058 +f 19888/20059 19911/20084 19923/20096 +f 16278/20060 16326/20104 19911/20084 +f 19914/20087 19912/20085 19889/20061 +f 19913/20086 19890/20062 19931/20105 +f 19932/20106 19865/20036 19913/20086 +f 19932/20106 19914/20087 19865/20036 +f 19867/20038 19933/20107 19915/20088 +f 19916/20089 19866/20037 19915/20088 +f 19934/20108 19890/20062 19916/20089 +f 19917/20090 19933/20107 19867/20038 +f 19935/20109 19917/20090 19891/20063 +f 19935/20109 19891/20063 19893/20065 +f 19892/20064 19935/20109 19893/20065 +f 19892/20064 19918/20091 19935/20109 +f 19936/20110 19918/20091 19894/20066 +f 19871/20042 19936/20110 19894/20066 +f 19896/20068 19936/20110 19871/20042 +f 19937/20111 19896/20068 19897/20069 +f 19919/20092 19938/20112 19897/20069 +f 19899/20071 19898/20070 19939/20113 +f 19939/20113 19898/20070 19901/20074 +f 19899/20071 19940/20114 19920/20093 +f 19941/20115 19900/20072 19920/20093 +f 19921/20094 16456/20073 16493/20116 +f 16404/20117 16456/20073 19902/20075 +f 19901/20074 19921/20094 16610/20118 +f 19902/20075 19922/20095 16404/20117 +f 19923/20096 19922/20095 19878/20049 +f 19900/20072 19941/20115 19903/20076 +f 19919/20092 19903/20076 19941/20115 +f 19924/20097 19887/20058 19930/20103 +f 19905/20078 19924/20097 19925/20098 +f 19926/20099 19906/20079 19908/20081 +f 19908/20081 19907/20080 19926/20099 +f 19942/20119 19927/20100 19885/20056 +f 19943/20120 19886/20057 19927/20100 +f 19928/20101 19909/20082 19944/20121 +f 19909/20082 19929/20102 19945/20122 +f 19943/20120 19929/20102 19886/20057 +f 19910/20083 19928/20101 19944/20121 +f 19930/20103 19910/20083 19946/20123 +f 19911/20084 16326/20104 19923/20096 +f 19947/20124 19913/20086 19931/20105 +f 19948/20125 19931/20105 19890/20062 +f 19932/20106 19913/20086 19947/20124 +f 19933/20107 19949/20126 19915/20088 +f 19950/20127 19916/20089 19915/20088 +f 19934/20108 19916/20089 19951/20128 +f 19948/20125 19890/20062 19934/20108 +f 19933/20107 19917/20090 19952/20129 +f 19917/20090 19935/20109 19952/20129 +f 19935/20109 19918/20091 19953/20130 +f 19936/20110 19954/20131 19918/20091 +f 19896/20068 19955/20132 19936/20110 +f 19956/20133 19937/20111 19897/20069 +f 19896/20068 19937/20111 19955/20132 +f 19897/20069 19938/20112 19956/20133 +f 19957/20134 19938/20112 19919/20092 +f 19899/20071 19939/20113 19958/20135 +f 19901/20074 19959/20136 19939/20113 +f 19920/20093 19940/20114 19960/20137 +f 19899/20071 19958/20135 19940/20114 +f 19961/20138 19941/20115 19920/20093 +f 16610/20118 19921/20094 16493/20116 +f 16610/20118 19962/20139 19901/20074 +f 16404/20117 19922/20095 19923/20096 +f 19957/20134 19919/20092 19941/20115 +f 19963/20140 19924/20097 19930/20103 +f 19925/20098 19924/20097 19964/20141 +f 19965/20142 19927/20100 19942/20119 +f 19942/20119 19885/20056 19966/20143 +f 19965/20142 19943/20120 19927/20100 +f 19967/20144 19944/20121 19909/20082 +f 19943/20120 19945/20122 19929/20102 +f 19945/20122 19968/20145 19909/20082 +f 19944/20121 19969/20146 19910/20083 +f 19946/20123 19910/20083 19969/20146 +f 19946/20123 19970/20147 19930/20103 +f 19923/20096 16326/20104 16404/20117 +f 19931/20105 19971/20148 19947/20124 +f 19948/20125 19971/20148 19931/20105 +f 19972/20149 19932/20106 19947/20124 +f 19949/20126 19950/20127 19915/20088 +f 19973/20150 19949/20126 19933/20107 +f 19950/20127 19951/20128 19916/20089 +f 19951/20128 19974/20151 19934/20108 +f 19975/20152 19948/20125 19934/20108 +f 19933/20107 19952/20129 19976/20153 +f 19935/20109 19977/20154 19952/20129 +f 19918/20091 19978/20155 19953/20130 +f 19953/20130 19977/20154 19935/20109 +f 19936/20110 19955/20132 19954/20131 +f 19978/20155 19918/20091 19954/20131 +f 19956/20133 19979/20156 19937/20111 +f 19980/20157 19955/20132 19937/20111 +f 19938/20112 19981/20158 19956/20133 +f 19982/20159 19938/20112 19957/20134 +f 19983/20160 19958/20135 19939/20113 +f 19901/20074 19962/20139 19959/20136 +f 19959/20136 19983/20160 19939/20113 +f 19940/20114 19984/20161 19960/20137 +f 19960/20137 19985/20162 19920/20093 +f 19958/20135 19984/20161 19940/20114 +f 19920/20093 19986/20163 19961/20138 +f 19957/20134 19941/20115 19961/20138 +f 19962/20139 16610/20118 19959/20136 +f 19970/20147 19963/20140 19930/20103 +f 19987/20164 19924/20097 19963/20140 +f 19987/20164 19964/20141 19924/20097 +f 19988/20165 19965/20142 19942/20119 +f 19989/20166 19942/20119 19966/20143 +f 19943/20120 19965/20142 19990/20167 +f 19967/20144 19991/20168 19944/20121 +f 19909/20082 19968/20145 19967/20144 +f 19990/20167 19945/20122 19943/20120 +f 19968/20145 19945/20122 19990/20167 +f 19944/20121 19992/20169 19969/20146 +f 19969/20146 19992/20169 19946/20123 +f 19992/20169 19970/20147 19946/20123 +f 19971/20148 19948/20125 19947/20124 +f 19972/20149 19947/20124 19993/20170 +f 19994/20171 19950/20127 19949/20126 +f 19976/20153 19973/20150 19933/20107 +f 19995/20172 19949/20126 19973/20150 +f 19951/20128 19950/20127 19974/20151 +f 19934/20108 19974/20151 19975/20152 +f 19948/20125 19975/20152 19996/20173 +f 19952/20129 19977/20154 19976/20153 +f 19953/20130 19978/20155 19977/20154 +f 19954/20131 19955/20132 19980/20157 +f 19997/20174 19978/20155 19954/20131 +f 19981/20158 19979/20156 19956/20133 +f 19979/20156 19998/20175 19937/20111 +f 19998/20175 19980/20157 19937/20111 +f 19981/20158 19938/20112 19982/20159 +f 19999/20176 19982/20159 19957/20134 +f 19958/20135 19983/20160 16714/20177 +f 19959/20136 16661/20178 19983/20160 +f 20000/20179 19960/20137 19984/20161 +f 19985/20162 19960/20137 20000/20179 +f 19986/20163 19920/20093 19985/20162 +f 19984/20161 19958/20135 16765/20180 +f 19961/20138 19986/20163 19999/20176 +f 19999/20176 19957/20134 19961/20138 +f 16610/20118 16661/20178 19959/20136 +f 19963/20140 19970/20147 20001/20181 +f 19963/20140 20002/20182 19987/20164 +f 19965/20142 19988/20165 20003/20183 +f 19942/20119 19989/20166 19988/20165 +f 19966/20143 20004/20184 19989/20166 +f 19965/20142 20003/20183 19990/20167 +f 19991/20168 20005/20185 19944/20121 +f 19968/20145 19991/20168 19967/20144 +f 20006/20186 19968/20145 19990/20167 +f 20007/20187 19992/20169 19944/20121 +f 20008/20188 19970/20147 19992/20169 +f 19948/20125 20009/20189 19947/20124 +f 20009/20189 19993/20170 19947/20124 +f 20010/20190 19994/20171 19949/20126 +f 19950/20127 19994/20171 19974/20151 +f 20011/20191 19973/20150 19976/20153 +f 19995/20172 20012/20192 19949/20126 +f 20011/20191 19995/20172 19973/20150 +f 19996/20173 19975/20152 19974/20151 +f 20009/20189 19948/20125 19996/20173 +f 19977/20154 20013/20193 19976/20153 +f 19978/20155 19997/20174 19977/20154 +f 19980/20157 19997/20174 19954/20131 +f 20014/20194 19979/20156 19981/20158 +f 20015/20195 19998/20175 19979/20156 +f 19980/20157 19998/20175 19997/20174 +f 19982/20159 20014/20194 19981/20158 +f 19982/20159 19999/20176 20016/20196 +f 16765/20180 19958/20135 16714/20177 +f 16661/20178 16714/20177 19983/20160 +f 20017/20197 20000/20179 19984/20161 +f 20018/20198 19985/20162 20000/20179 +f 19985/20162 20016/20196 19986/20163 +f 19984/20161 16765/20180 16788/20199 +f 20016/20196 19999/20176 19986/20163 +f 20002/20182 19963/20140 20001/20181 +f 19970/20147 20008/20188 20001/20181 +f 20019/20200 20003/20183 19988/20165 +f 20020/20201 19988/20165 19989/20166 +f 20021/20202 19989/20166 20004/20184 +f 20003/20183 20022/20203 19990/20167 +f 20005/20185 19991/20168 20006/20186 +f 19944/20121 20005/20185 20007/20187 +f 19991/20168 19968/20145 20006/20186 +f 20022/20203 20006/20186 19990/20167 +f 19992/20169 20007/20187 15316/20204 +f 19993/20170 20009/20189 20023/20205 +f 19949/20126 20012/20192 20010/20190 +f 20010/20190 20024/20206 19994/20171 +f 19994/20171 20025/20207 19974/20151 +f 20013/20193 20011/20191 19976/20153 +f 19995/20172 20026/20208 20012/20192 +f 20027/20209 19995/20172 20011/20191 +f 19996/20173 19974/20151 20028/20210 +f 19996/20173 20023/20205 20009/20189 +f 19977/20154 19997/20174 20013/20193 +f 20029/20211 19979/20156 20014/20194 +f 20013/20193 19998/20175 20015/20195 +f 20015/20195 19979/20156 20029/20211 +f 19998/20175 20013/20193 19997/20174 +f 20014/20194 19982/20159 20030/20212 +f 19982/20159 20016/20196 20031/20213 +f 20017/20197 20032/20214 20000/20179 +f 20017/20197 19984/20161 16788/20199 +f 20032/20214 20018/20198 20000/20179 +f 19985/20162 20018/20198 20033/20215 +f 20016/20196 19985/20162 20033/20215 +f 20034/20216 20003/20183 20019/20200 +f 20035/20217 20019/20200 19988/20165 +f 20036/20218 20020/20201 19989/20166 +f 20020/20201 20037/20219 19988/20165 +f 20021/20202 20004/20184 20038/20220 +f 20039/20221 19989/20166 20021/20202 +f 20003/20183 20040/20222 20022/20203 +f 20006/20186 20022/20203 20005/20185 +f 15189/20223 20007/20187 20005/20185 +f 20007/20187 15189/20223 15316/20204 +f 20010/20190 20012/20192 20041/20224 +f 20024/20206 20010/20190 20042/20225 +f 19994/20171 20024/20206 20025/20207 +f 19974/20151 20025/20207 20043/20226 +f 20013/20193 20044/20227 20011/20191 +f 20026/20208 20045/20228 20012/20192 +f 20027/20209 20026/20208 19995/20172 +f 20046/20229 20027/20209 20011/20191 +f 20028/20210 19974/20151 20043/20226 +f 20047/20230 19996/20173 20028/20210 +f 20023/20205 19996/20173 20048/20231 +f 20030/20212 20029/20211 20014/20194 +f 20044/20227 20013/20193 20015/20195 +f 20029/20211 20049/20232 20015/20195 +f 19982/20159 20031/20213 20030/20212 +f 20033/20215 20031/20213 20016/20196 +f 20032/20214 20017/20197 16835/20233 +f 16788/20199 16835/20233 20017/20197 +f 20032/20214 20050/20234 20018/20198 +f 20051/20235 20033/20215 20018/20198 +f 20034/20216 20040/20222 20003/20183 +f 20034/20216 20019/20200 20052/20236 +f 20019/20200 20035/20217 20053/20237 +f 19988/20165 20037/20219 20035/20217 +f 20020/20201 20036/20218 20054/20238 +f 19989/20166 20039/20221 20036/20218 +f 20054/20238 20037/20219 20020/20201 +f 20055/20239 20038/20220 20004/20184 +f 20056/20240 20021/20202 20038/20220 +f 20039/20221 20021/20202 20057/20241 +f 20005/20185 20022/20203 20040/20222 +f 20005/20185 20040/20222 15189/20223 +f 20042/20225 20010/20190 20041/20224 +f 20012/20192 20045/20228 20041/20224 +f 20042/20225 20025/20207 20024/20206 +f 20043/20226 20025/20207 20058/20242 +f 20011/20191 20044/20227 20059/20243 +f 20045/20228 20026/20208 20060/20244 +f 20026/20208 20027/20209 20061/20245 +f 20027/20209 20046/20229 20061/20245 +f 20011/20191 20062/20246 20046/20229 +f 20043/20226 20063/20247 20028/20210 +f 20048/20231 19996/20173 20047/20230 +f 20064/20248 20047/20230 20028/20210 +f 20051/20235 20029/20211 20030/20212 +f 20015/20195 20049/20232 20044/20227 +f 20051/20235 20049/20232 20029/20211 +f 20031/20213 20051/20235 20030/20212 +f 20031/20213 20033/20215 20051/20235 +f 20032/20214 16835/20233 16871/20249 +f 20065/20250 20018/20198 20050/20234 +f 20032/20214 20066/20251 20050/20234 +f 20065/20250 20051/20235 20018/20198 +f 15048/20252 20040/20222 20034/20216 +f 20019/20200 20067/20253 20052/20236 +f 20068/20254 20034/20216 20052/20236 +f 20053/20237 20067/20253 20019/20200 +f 20035/20217 20069/20255 20053/20237 +f 20035/20217 20037/20219 20069/20255 +f 20070/20256 20054/20238 20036/20218 +f 20039/20221 20071/20257 20036/20218 +f 20072/20258 20037/20219 20054/20238 +f 20055/20239 20073/20259 20038/20220 +f 20057/20241 20021/20202 20056/20240 +f 20073/20259 20056/20240 20038/20220 +f 20057/20241 20074/20260 20039/20221 +f 15048/20252 15189/20223 20040/20222 +f 20075/20261 20042/20225 20041/20224 +f 20041/20224 20045/20228 20076/20262 +f 20077/20263 20025/20207 20042/20225 +f 20025/20207 20077/20263 20058/20242 +f 20063/20247 20043/20226 20058/20242 +f 20049/20232 20059/20243 20044/20227 +f 20059/20243 20062/20246 20011/20191 +f 20026/20208 20078/20264 20060/20244 +f 20045/20228 20060/20244 20079/20265 +f 20078/20264 20026/20208 20061/20245 +f 20061/20245 20046/20229 20080/20266 +f 20046/20229 20062/20246 20081/20267 +f 20028/20210 20063/20247 20064/20248 +f 20047/20230 20064/20248 20048/20231 +f 20065/20250 20049/20232 20051/20235 +f 20066/20251 20032/20214 16871/20249 +f 20050/20234 16967/20268 20065/20250 +f 20050/20234 20066/20251 16967/20268 +f 15048/20252 20034/20216 20068/20254 +f 20067/20253 20082/20269 20052/20236 +f 20068/20254 20052/20236 20082/20269 +f 20083/20270 20067/20253 20053/20237 +f 20069/20255 20084/20271 20053/20237 +f 20037/20219 20072/20258 20069/20255 +f 20072/20258 20054/20238 20070/20256 +f 20071/20257 20070/20256 20036/20218 +f 20071/20257 20039/20221 20085/20272 +f 20073/20259 20055/20239 20086/20273 +f 20056/20240 20087/20274 20057/20241 +f 20073/20259 20088/20275 20056/20240 +f 20074/20260 20057/20241 20087/20274 +f 20085/20272 20039/20221 20074/20260 +f 20077/20263 20042/20225 20075/20261 +f 20041/20224 20076/20262 20075/20261 +f 20076/20262 20045/20228 20079/20265 +f 20058/20242 20077/20263 20089/20276 +f 20090/20277 20063/20247 20058/20242 +f 20059/20243 20049/20232 20091/20278 +f 20062/20246 20059/20243 20092/20279 +f 20060/20244 20078/20264 20093/20280 +f 20060/20244 20093/20280 20079/20265 +f 20078/20264 20061/20245 20080/20266 +f 20081/20267 20080/20266 20046/20229 +f 20081/20267 20062/20246 17180/20281 +f 20090/20277 20064/20248 20063/20247 +f 20094/20282 20048/20231 20064/20248 +f 20095/20283 20049/20232 20065/20250 +f 20066/20251 16871/20249 16917/20284 +f 17002/20285 20065/20250 16967/20268 +f 16967/20268 20066/20251 16917/20284 +f 20068/20254 14898/20286 15048/20252 +f 20067/20253 20096/20287 20082/20269 +f 20082/20269 20096/20287 20068/20254 +f 20084/20271 20083/20270 20053/20237 +f 20067/20253 20083/20270 20097/20288 +f 20084/20271 20069/20255 20098/20289 +f 20099/20290 20069/20255 20072/20258 +f 20100/20291 20072/20258 20070/20256 +f 20071/20257 20101/20292 20070/20256 +f 20085/20272 20101/20292 20071/20257 +f 20102/20293 20086/20273 20055/20239 +f 20103/20294 20073/20259 20086/20273 +f 20088/20275 20087/20274 20056/20240 +f 20073/20259 20103/20294 20088/20275 +f 20087/20274 20104/20295 20074/20260 +f 20105/20296 20085/20272 20074/20260 +f 20106/20297 20077/20263 20075/20261 +f 20076/20262 20106/20297 20075/20261 +f 20106/20297 20076/20262 20079/20265 +f 20077/20263 20107/20298 20089/20276 +f 20089/20276 20090/20277 20058/20242 +f 20059/20243 20091/20278 20092/20279 +f 20095/20283 20091/20278 20049/20232 +f 17180/20281 20062/20246 20092/20279 +f 20108/20299 20093/20280 20078/20264 +f 20093/20280 20109/20300 20079/20265 +f 20078/20264 20080/20266 20110/20301 +f 20094/20282 20064/20248 20090/20277 +f 20095/20283 20065/20250 20111/20302 +f 20065/20250 17002/20285 20111/20302 +f 20096/20287 14898/20286 20068/20254 +f 20097/20288 20096/20287 20067/20253 +f 20112/20303 20083/20270 20084/20271 +f 20083/20270 20113/20304 20097/20288 +f 20098/20289 20069/20255 20114/20305 +f 20098/20289 20112/20303 20084/20271 +f 20114/20305 20069/20255 20099/20290 +f 20072/20258 20115/20306 20099/20290 +f 20072/20258 20100/20291 20115/20306 +f 20100/20291 20070/20256 20101/20292 +f 20085/20272 20105/20296 20101/20292 +f 20103/20294 20086/20273 20102/20293 +f 20104/20295 20087/20274 20088/20275 +f 20088/20275 20103/20294 20104/20295 +f 20104/20295 20116/20307 20074/20260 +f 20116/20307 20105/20296 20074/20260 +f 20106/20297 20107/20298 20077/20263 +f 20117/20308 20106/20297 20079/20265 +f 20089/20276 20107/20298 20118/20309 +f 20089/20276 20118/20309 20090/20277 +f 20091/20278 20119/20310 20092/20279 +f 20091/20278 20095/20283 20120/20311 +f 20121/20312 17180/20281 20092/20279 +f 20122/20313 20093/20280 20108/20299 +f 20108/20299 20078/20264 20110/20301 +f 20123/20314 20109/20300 20093/20280 +f 20109/20300 20117/20308 20079/20265 +f 20090/20277 20118/20309 20094/20282 +f 20111/20302 20120/20311 20095/20283 +f 20111/20302 17002/20285 17030/20315 +f 14898/20286 20096/20287 14900/20316 +f 20124/20317 20096/20287 20097/20288 +f 20083/20270 20112/20303 20113/20304 +f 20113/20304 20124/20317 20097/20288 +f 20098/20289 20114/20305 20125/20318 +f 20112/20303 20098/20289 20125/20318 +f 20099/20290 20126/20319 20114/20305 +f 20099/20290 20115/20306 20126/20319 +f 20127/20320 20115/20306 20100/20291 +f 20128/20321 20100/20291 20101/20292 +f 20128/20321 20101/20292 20105/20296 +f 20129/20322 20103/20294 20102/20293 +f 20130/20323 20104/20295 20103/20294 +f 20116/20307 20104/20295 20130/20323 +f 20131/20324 20105/20296 20116/20307 +f 20107/20298 20106/20297 20132/20325 +f 20117/20308 20133/20326 20106/20297 +f 20107/20298 20132/20325 20118/20309 +f 20119/20310 20091/20278 20120/20311 +f 20119/20310 20134/20327 20092/20279 +f 17180/20281 20121/20312 20135/20328 +f 20136/20329 20121/20312 20092/20279 +f 20093/20280 20122/20313 20123/20314 +f 20122/20313 20108/20299 20137/20330 +f 20137/20330 20108/20299 20110/20301 +f 20117/20308 20109/20300 20123/20314 +f 20120/20311 20111/20302 20138/20331 +f 17030/20315 17064/20332 20111/20302 +f 20096/20287 20124/20317 14900/20316 +f 20139/20333 20113/20304 20112/20303 +f 20140/20334 20124/20317 20113/20304 +f 20114/20305 20141/20335 20125/20318 +f 20112/20303 20125/20318 20139/20333 +f 20126/20319 20141/20335 20114/20305 +f 20126/20319 20115/20306 20127/20320 +f 20100/20291 20128/20321 20127/20320 +f 20131/20324 20128/20321 20105/20296 +f 20103/20294 20129/20322 20130/20323 +f 20102/20293 20142/20336 20129/20322 +f 20130/20323 20129/20322 20116/20307 +f 20116/20307 20129/20322 20131/20324 +f 20133/20326 20132/20325 20106/20297 +f 20123/20314 20133/20326 20117/20308 +f 20118/20309 20132/20325 20143/20337 +f 20120/20311 20144/20338 20119/20310 +f 20134/20327 20119/20310 20145/20339 +f 20134/20327 20136/20329 20092/20279 +f 20121/20312 20146/20340 20135/20328 +f 17180/20281 20135/20328 17165/20341 +f 20121/20312 20136/20329 20147/20342 +f 20122/20313 20133/20326 20123/20314 +f 20138/20331 20111/20302 20148/20343 +f 20144/20338 20120/20311 20138/20331 +f 17064/20332 20148/20343 20111/20302 +f 14900/20316 20124/20317 14826/20344 +f 15054/20345 20113/20304 20139/20333 +f 20140/20334 20113/20304 15054/20345 +f 20124/20317 20140/20334 14826/20344 +f 20141/20335 20149/20346 20125/20318 +f 20150/20347 20139/20333 20125/20318 +f 20126/20319 20151/20348 20141/20335 +f 20127/20320 20151/20348 20126/20319 +f 20127/20320 20128/20321 20151/20348 +f 20128/20321 20131/20324 20152/20349 +f 20131/20324 20129/20322 20142/20336 +f 20153/20350 20142/20336 20102/20293 +f 20132/20325 20133/20326 20154/20351 +f 20132/20325 20154/20351 20143/20337 +f 20145/20339 20119/20310 20144/20338 +f 20155/20352 20134/20327 20145/20339 +f 20134/20327 20155/20352 20136/20329 +f 20146/20340 20121/20312 20147/20342 +f 20146/20340 20156/20353 20135/20328 +f 20135/20328 20156/20353 17165/20341 +f 20147/20342 20136/20329 20155/20352 +f 20122/20313 20154/20351 20133/20326 +f 20148/20343 20144/20338 20138/20331 +f 17064/20332 17088/20354 20148/20343 +f 20157/20355 15054/20345 20139/20333 +f 15054/20345 14904/20356 20140/20334 +f 20140/20334 14904/20356 14826/20344 +f 20141/20335 20158/20357 20149/20346 +f 20149/20346 20150/20347 20125/20318 +f 20150/20347 20157/20355 20139/20333 +f 20158/20357 20141/20335 20151/20348 +f 20152/20349 20151/20348 20128/20321 +f 20159/20358 20152/20349 20131/20324 +f 20131/20324 20142/20336 20159/20358 +f 20160/20359 20142/20336 20153/20350 +f 20161/20360 20145/20339 20144/20338 +f 20162/20361 20155/20352 20145/20339 +f 20155/20352 20146/20340 20147/20342 +f 20146/20340 20163/20362 20156/20353 +f 17165/20341 20156/20353 17157/20363 +f 20161/20360 20144/20338 20148/20343 +f 17088/20354 20164/20364 20148/20343 +f 15054/20345 20157/20355 15190/20365 +f 20149/20346 20158/20357 20165/20366 +f 20150/20347 20149/20346 20166/20367 +f 20166/20367 20157/20355 20150/20347 +f 20158/20357 20151/20348 20167/20368 +f 20152/20349 20167/20368 20151/20348 +f 20167/20368 20152/20349 20159/20358 +f 20159/20358 20142/20336 20168/20369 +f 20168/20369 20142/20336 20160/20359 +f 20153/20350 20169/20370 20160/20359 +f 20145/20339 20161/20360 20162/20361 +f 20170/20371 20155/20352 20162/20361 +f 20170/20371 20146/20340 20155/20352 +f 20170/20371 20163/20362 20146/20340 +f 20171/20372 20156/20353 20163/20362 +f 20171/20372 17157/20363 20156/20353 +f 20164/20364 20161/20360 20148/20343 +f 20164/20364 17088/20354 17115/20373 +f 15190/20365 20157/20355 20166/20367 +f 20149/20346 20165/20366 20172/20374 +f 20165/20366 20158/20357 20173/20375 +f 20174/20376 20166/20367 20149/20346 +f 20167/20368 20175/20377 20158/20357 +f 20167/20368 20159/20358 20176/20378 +f 20159/20358 20168/20369 20177/20379 +f 20160/20359 20178/20380 20168/20369 +f 20169/20370 20179/20381 20160/20359 +f 20161/20360 20164/20364 20162/20361 +f 20162/20361 20180/20382 20170/20371 +f 20163/20362 20170/20371 20181/20383 +f 20181/20383 20171/20372 20163/20362 +f 20171/20372 20182/20384 17157/20363 +f 20162/20361 20164/20364 17115/20373 +f 15190/20365 20166/20367 20183/20385 +f 20172/20374 20165/20366 20184/20386 +f 20149/20346 20172/20374 20174/20376 +f 20175/20377 20173/20375 20158/20357 +f 20185/20387 20165/20366 20173/20375 +f 20174/20376 20186/20388 20166/20367 +f 20175/20377 20167/20368 20176/20378 +f 20159/20358 20187/20389 20176/20378 +f 20159/20358 20177/20379 20187/20389 +f 20177/20379 20168/20369 20188/20390 +f 20168/20369 20178/20380 20188/20390 +f 20179/20381 20178/20380 20160/20359 +f 20181/20383 20170/20371 20180/20382 +f 20162/20361 17115/20373 20180/20382 +f 20182/20384 20171/20372 20181/20383 +f 17143/20391 17157/20363 20182/20384 +f 20189/20392 20183/20385 20166/20367 +f 15119/20393 15190/20365 20183/20385 +f 20185/20387 20184/20386 20165/20366 +f 20172/20374 20184/20386 20190/20394 +f 20174/20376 20172/20374 20190/20394 +f 20175/20377 20191/20395 20173/20375 +f 20192/20396 20185/20387 20173/20375 +f 20190/20394 20186/20388 20174/20376 +f 20186/20388 20189/20392 20166/20367 +f 20176/20378 20191/20395 20175/20377 +f 20176/20378 20187/20389 20193/20397 +f 20194/20398 20187/20389 20177/20379 +f 20177/20379 20188/20390 20194/20398 +f 20178/20380 20179/20381 20188/20390 +f 17143/20391 20181/20383 20180/20382 +f 20180/20382 17115/20373 17129/20399 +f 20182/20384 20181/20383 17143/20391 +f 20183/20385 20189/20392 20195/20400 +f 20183/20385 20196/20401 15119/20393 +f 20197/20402 20184/20386 20185/20387 +f 20198/20403 20190/20394 20184/20386 +f 20173/20375 20191/20395 20192/20396 +f 20192/20396 20199/20404 20185/20387 +f 20200/20405 20186/20388 20190/20394 +f 20186/20388 20200/20405 20189/20392 +f 20176/20378 20193/20397 20191/20395 +f 17143/20391 20180/20382 17129/20399 +f 20189/20392 20201/20406 20195/20400 +f 20202/20407 20183/20385 20195/20400 +f 20202/20407 20196/20401 20183/20385 +f 20196/20401 15120/20408 15119/20393 +f 20184/20386 20197/20402 20203/20409 +f 20185/20387 20204/20410 20197/20402 +f 20190/20394 20198/20403 20205/20411 +f 20184/20386 20203/20409 20198/20403 +f 20199/20404 20206/20412 20185/20387 +f 20190/20394 20207/20413 20200/20405 +f 20189/20392 20200/20405 20201/20406 +f 20195/20400 20201/20406 20208/20414 +f 20208/20414 20202/20407 20195/20400 +f 20209/20415 20196/20401 20202/20407 +f 20209/20415 15120/20408 20196/20401 +f 20203/20409 20197/20402 20204/20410 +f 20206/20412 20204/20410 20185/20387 +f 20198/20403 20210/20416 20205/20411 +f 20205/20411 20211/20417 20190/20394 +f 20203/20409 20212/20418 20198/20403 +f 20207/20413 20190/20394 20211/20417 +f 20207/20413 20213/20419 20200/20405 +f 20200/20405 20213/20419 20201/20406 +f 20214/20420 20208/20414 20201/20406 +f 20208/20414 20209/20415 20202/20407 +f 20215/20421 15120/20408 20209/20415 +f 20204/20410 20216/20422 20203/20409 +f 20206/20412 20217/20423 20204/20410 +f 20211/20417 20205/20411 20210/20416 +f 20198/20403 20212/20418 20210/20416 +f 20212/20418 20203/20409 20216/20422 +f 20213/20419 20207/20413 20211/20417 +f 20218/20424 20201/20406 20213/20419 +f 20201/20406 20219/20425 20214/20420 +f 20214/20420 20215/20421 20208/20414 +f 20215/20421 20209/20415 20208/20414 +f 15121/20426 15120/20408 20215/20421 +f 20204/20410 20217/20423 20216/20422 +f 20211/20417 20210/20416 20220/20427 +f 20221/20428 20210/20416 20212/20418 +f 20222/20429 20212/20418 20216/20422 +f 20213/20419 20211/20417 20223/20430 +f 20224/20431 20201/20406 20218/20424 +f 20223/20430 20218/20424 20213/20419 +f 20201/20406 20224/20431 20219/20425 +f 20214/20420 20219/20425 15261/20432 +f 20215/20421 20214/20420 15261/20432 +f 15121/20426 20215/20421 15261/20432 +f 20217/20423 20225/20433 20216/20422 +f 20220/20427 20210/20416 20221/20428 +f 20220/20427 20226/20434 20211/20417 +f 20221/20428 20212/20418 20227/20435 +f 20216/20422 20225/20433 20222/20429 +f 20212/20418 20222/20429 20228/20436 +f 20223/20430 20211/20417 20229/20437 +f 20230/20438 20224/20431 20218/20424 +f 20223/20430 20229/20437 20218/20424 +f 20224/20431 20230/20438 20219/20425 +f 20219/20425 20231/20439 15261/20432 +f 20217/20423 20232/20440 20225/20433 +f 20221/20428 20233/20441 20220/20427 +f 20229/20437 20211/20417 20226/20434 +f 20234/20442 20226/20434 20220/20427 +f 20212/20418 20228/20436 20227/20435 +f 20227/20435 20235/20443 20221/20428 +f 20236/20444 20222/20429 20225/20433 +f 20222/20429 20237/20445 20228/20436 +f 20230/20438 20218/20424 20238/20446 +f 20218/20424 20229/20437 20226/20434 +f 20231/20439 20219/20425 20230/20438 +f 20239/20447 15261/20432 20231/20439 +f 20232/20440 20236/20444 20225/20433 +f 20233/20441 20221/20428 20240/20448 +f 20220/20427 20233/20441 20241/20449 +f 20226/20434 20234/20442 20238/20446 +f 20241/20449 20234/20442 20220/20427 +f 20228/20436 20242/20450 20227/20435 +f 20243/20451 20235/20443 20227/20435 +f 20235/20443 20240/20448 20221/20428 +f 20236/20444 20237/20445 20222/20429 +f 20237/20445 20242/20450 20228/20436 +f 20238/20446 20218/20424 20226/20434 +f 20231/20439 20230/20438 20238/20446 +f 15261/20432 20239/20447 15375/20452 +f 20239/20447 20231/20439 20238/20446 +f 20232/20440 20244/20453 20236/20444 +f 20245/20454 20233/20441 20240/20448 +f 20241/20449 20233/20441 20246/20455 +f 20234/20442 20241/20449 20238/20446 +f 20242/20450 20243/20451 20227/20435 +f 20235/20443 20243/20451 20247/20456 +f 20240/20448 20235/20443 20248/20457 +f 20236/20444 20249/20458 20237/20445 +f 20249/20458 20242/20450 20237/20445 +f 15375/20452 20239/20447 20250/20459 +f 20239/20447 20238/20446 20251/20460 +f 20244/20453 20249/20458 20236/20444 +f 20245/20454 20240/20448 20252/20461 +f 20246/20455 20233/20441 20245/20454 +f 20246/20455 20253/20462 20241/20449 +f 20241/20449 20254/20463 20238/20446 +f 20243/20451 20242/20450 20249/20458 +f 20247/20456 20255/20464 20235/20443 +f 20247/20456 20243/20451 20249/20458 +f 20248/20457 20235/20443 20255/20464 +f 20252/20461 20240/20448 20248/20457 +f 20250/20459 20239/20447 20251/20460 +f 20250/20459 20256/20465 15375/20452 +f 20251/20460 20238/20446 20254/20463 +f 20244/20453 20257/20466 20249/20458 +f 20252/20461 20258/20467 20245/20454 +f 20245/20454 20258/20467 20246/20455 +f 20246/20455 20259/20468 20253/20462 +f 20253/20462 20260/20469 20241/20449 +f 20260/20469 20254/20463 20241/20449 +f 20261/20470 20255/20464 20247/20456 +f 20249/20458 20257/20466 20247/20456 +f 20262/20471 20248/20457 20255/20464 +f 20248/20457 20263/20472 20252/20461 +f 20251/20460 20254/20463 20250/20459 +f 20256/20465 15481/20473 15375/20452 +f 20254/20463 20256/20465 20250/20459 +f 20244/20453 20264/20474 20257/20466 +f 20258/20467 20252/20461 20265/20475 +f 20258/20467 20266/20476 20246/20455 +f 20266/20476 20259/20468 20246/20455 +f 20256/20465 20253/20462 20259/20468 +f 20260/20469 20253/20462 20256/20465 +f 20254/20463 20260/20469 20256/20465 +f 20267/20477 20261/20470 20247/20456 +f 20262/20471 20255/20464 20261/20470 +f 20257/20466 20268/20478 20247/20456 +f 20248/20457 20262/20471 20269/20479 +f 20270/20480 20252/20461 20263/20472 +f 20263/20472 20248/20457 20269/20479 +f 20271/20481 15481/20473 20256/20465 +f 20264/20474 20272/20482 20257/20466 +f 20252/20461 20273/20483 20265/20475 +f 20265/20475 20266/20476 20258/20467 +f 20259/20468 20266/20476 20271/20481 +f 20256/20465 20259/20468 20271/20481 +f 20267/20477 20274/20484 20261/20470 +f 20267/20477 20247/20456 20268/20478 +f 20274/20484 20262/20471 20261/20470 +f 20275/20485 20268/20478 20257/20466 +f 20269/20479 20262/20471 20276/20486 +f 20270/20480 20273/20483 20252/20461 +f 20263/20472 20277/20487 20270/20480 +f 20278/20488 20263/20472 20269/20479 +f 15486/20489 15481/20473 20271/20481 +f 20272/20482 20275/20485 20257/20466 +f 20265/20475 20273/20483 20279/20490 +f 20265/20475 20280/20491 20266/20476 +f 20271/20481 20266/20476 20280/20491 +f 20267/20477 20281/20492 20274/20484 +f 20267/20477 20268/20478 20275/20485 +f 20274/20484 20276/20486 20262/20471 +f 20278/20488 20269/20479 20276/20486 +f 20282/20493 20273/20483 20270/20480 +f 20282/20493 20270/20480 20277/20487 +f 20277/20487 20263/20472 20283/20494 +f 20263/20472 20278/20488 20284/20495 +f 15485/20496 15486/20489 20271/20481 +f 20285/20497 20275/20485 20272/20482 +f 20279/20490 20273/20483 15534/20498 +f 20265/20475 20279/20490 20280/20491 +f 20280/20491 15485/20496 20271/20481 +f 20267/20477 20275/20485 20281/20492 +f 20274/20484 20281/20492 20286/20499 +f 20274/20484 20287/20500 20276/20486 +f 20278/20488 20276/20486 20288/20501 +f 15534/20498 20273/20483 20282/20493 +f 20277/20487 20289/20502 20282/20493 +f 20284/20495 20283/20494 20263/20472 +f 20290/20503 20277/20487 20283/20494 +f 20284/20495 20278/20488 20291/20504 +f 20275/20485 20285/20497 20292/20505 +f 20293/20506 20285/20497 20272/20482 +f 15485/20496 20279/20490 15534/20498 +f 20279/20490 15485/20496 20280/20491 +f 20294/20507 20281/20492 20275/20485 +f 20287/20500 20274/20484 20286/20499 +f 20281/20492 20295/20508 20286/20499 +f 20287/20500 20288/20501 20276/20486 +f 20288/20501 20296/20509 20278/20488 +f 15534/20498 20282/20493 15578/20510 +f 20289/20502 15578/20510 20282/20493 +f 20290/20503 20289/20502 20277/20487 +f 20291/20504 20283/20494 20284/20495 +f 20297/20511 20290/20503 20283/20494 +f 20296/20509 20291/20504 20278/20488 +f 20285/20497 20298/20512 20292/20505 +f 20275/20485 20292/20505 20299/20513 +f 20285/20497 20293/20506 20300/20514 +f 20281/20492 20294/20507 20295/20508 +f 20275/20485 20299/20513 20294/20507 +f 20287/20500 20286/20499 20288/20501 +f 20295/20508 20301/20515 20286/20499 +f 20302/20516 20296/20509 20288/20501 +f 20289/20502 20303/20517 15578/20510 +f 20289/20502 20290/20503 20304/20518 +f 20291/20504 20305/20519 20283/20494 +f 20297/20511 20306/20520 20290/20503 +f 20297/20511 20283/20494 20305/20519 +f 20291/20504 20296/20509 20307/20521 +f 20298/20512 20285/20497 20300/20514 +f 20298/20512 20308/20522 20292/20505 +f 20309/20523 20299/20513 20292/20505 +f 20293/20506 20310/20524 20300/20514 +f 20301/20515 20295/20508 20294/20507 +f 20299/20513 20311/20525 20294/20507 +f 20312/20526 20288/20501 20286/20499 +f 20301/20515 20312/20526 20286/20499 +f 20296/20509 20302/20516 20307/20521 +f 20288/20501 20313/20527 20302/20516 +f 20304/20518 20303/20517 20289/20502 +f 20303/20517 20314/20528 15578/20510 +f 20304/20518 20290/20503 20306/20520 +f 20291/20504 20307/20521 20305/20519 +f 20306/20520 20297/20511 20315/20529 +f 20305/20519 20316/20530 20297/20511 +f 20298/20512 20300/20514 20310/20524 +f 20298/20512 20317/20531 20308/20522 +f 20308/20522 20318/20532 20292/20505 +f 20299/20513 20309/20523 20319/20533 +f 20309/20523 20292/20505 20318/20532 +f 20301/20515 20294/20507 20311/20525 +f 20311/20525 20299/20513 20319/20533 +f 20312/20526 20320/20534 20288/20501 +f 20301/20515 20311/20525 20312/20526 +f 20307/20521 20302/20516 20321/20535 +f 20288/20501 20322/20536 20313/20527 +f 20323/20537 20302/20516 20313/20527 +f 20304/20518 20324/20538 20303/20517 +f 20303/20517 20325/20539 20314/20528 +f 20314/20528 15663/20540 15578/20510 +f 20304/20518 20306/20520 20324/20538 +f 20307/20521 20326/20541 20305/20519 +f 20316/20530 20315/20529 20297/20511 +f 20327/20542 20306/20520 20315/20529 +f 20326/20541 20316/20530 20305/20519 +f 20298/20512 20310/20524 20328/20543 +f 20308/20522 20317/20531 20329/20544 +f 20328/20543 20317/20531 20298/20512 +f 20318/20532 20308/20522 20329/20544 +f 20319/20533 20309/20523 20330/20545 +f 20318/20532 20330/20545 20309/20523 +f 20319/20533 20331/20546 20311/20525 +f 20312/20526 20332/20547 20320/20534 +f 20322/20536 20288/20501 20320/20534 +f 20332/20547 20312/20526 20311/20525 +f 20321/20535 20333/20548 20307/20521 +f 20323/20537 20321/20535 20302/20516 +f 20334/20549 20313/20527 20322/20536 +f 20313/20527 20335/20550 20323/20537 +f 20325/20539 20303/20517 20324/20538 +f 15663/20540 20314/20528 20325/20539 +f 20324/20538 20306/20520 20327/20542 +f 20333/20548 20326/20541 20307/20521 +f 20336/20551 20315/20529 20316/20530 +f 20327/20542 20315/20529 15698/20552 +f 20326/20541 20336/20551 20316/20530 +f 20310/20524 20337/20553 20328/20543 +f 20329/20544 20317/20531 20338/20554 +f 20328/20543 20339/20555 20317/20531 +f 20318/20532 20329/20544 20330/20545 +f 20319/20533 20330/20545 20340/20556 +f 20331/20546 20319/20533 20340/20556 +f 20311/20525 20331/20546 20332/20547 +f 20320/20534 20332/20547 20341/20557 +f 20320/20534 20342/20558 20322/20536 +f 20321/20535 20343/20559 20333/20548 +f 20323/20537 20343/20559 20321/20535 +f 20322/20536 20344/20560 20334/20549 +f 20313/20527 20334/20549 20335/20550 +f 20343/20559 20323/20537 20335/20550 +f 20327/20542 20325/20539 20324/20538 +f 15663/20540 20325/20539 15690/20561 +f 20333/20548 20345/20562 20326/20541 +f 20336/20551 20346/20563 20315/20529 +f 20315/20529 20346/20563 15698/20552 +f 15698/20552 15690/20561 20327/20542 +f 20336/20551 20326/20541 20345/20562 +f 20337/20553 20310/20524 20347/20564 +f 20339/20555 20328/20543 20337/20553 +f 20339/20555 20338/20554 20317/20531 +f 20329/20544 20338/20554 20330/20545 +f 20330/20545 20338/20554 20340/20556 +f 20340/20556 20348/20565 20331/20546 +f 20331/20546 20349/20566 20332/20547 +f 20332/20547 20350/20567 20341/20557 +f 20341/20557 20351/20568 20320/20534 +f 20344/20560 20322/20536 20342/20558 +f 20320/20534 20351/20568 20342/20558 +f 20352/20569 20333/20548 20343/20559 +f 20334/20549 20344/20560 20353/20570 +f 20335/20550 20334/20549 20354/20571 +f 20335/20550 20355/20572 20343/20559 +f 15690/20561 20325/20539 20327/20542 +f 20356/20573 20345/20562 20333/20548 +f 20346/20563 20336/20551 20357/20574 +f 20358/20575 15698/20552 20346/20563 +f 20336/20551 20345/20562 20359/20576 +f 20360/20577 20337/20553 20347/20564 +f 20339/20555 20337/20553 20361/20578 +f 20338/20554 20339/20555 20340/20556 +f 20348/20565 20340/20556 20361/20578 +f 20331/20546 20348/20565 20349/20566 +f 20332/20547 20349/20566 20350/20567 +f 20350/20567 20362/20579 20341/20557 +f 20351/20568 20341/20557 20362/20579 +f 20344/20560 20342/20558 20363/20580 +f 20364/20581 20342/20558 20351/20568 +f 20365/20582 20333/20548 20352/20569 +f 20355/20572 20352/20569 20343/20559 +f 20366/20583 20334/20549 20353/20570 +f 20344/20560 20363/20580 20353/20570 +f 20366/20583 20354/20571 20334/20549 +f 20355/20572 20335/20550 20354/20571 +f 20356/20573 20359/20576 20345/20562 +f 20333/20548 20365/20582 20356/20573 +f 20336/20551 20359/20576 20357/20574 +f 20346/20563 20357/20574 20358/20575 +f 15698/20552 20358/20575 15659/20584 +f 20360/20577 20367/20585 20337/20553 +f 20339/20555 20361/20578 20340/20556 +f 20368/20586 20361/20578 20337/20553 +f 20348/20565 20361/20578 20368/20586 +f 20369/20587 20349/20566 20348/20565 +f 20369/20587 20350/20567 20349/20566 +f 20362/20579 20350/20567 20370/20588 +f 20362/20579 20371/20589 20351/20568 +f 20363/20580 20342/20558 20364/20581 +f 20372/20590 20364/20581 20351/20568 +f 20365/20582 20352/20569 20373/20591 +f 20355/20572 20374/20592 20352/20569 +f 20353/20570 20375/20593 20366/20583 +f 20353/20570 20363/20580 20376/20594 +f 20366/20583 20377/20595 20354/20571 +f 20378/20596 20355/20572 20354/20571 +f 20359/20576 20356/20573 20379/20597 +f 20380/20598 20356/20573 20365/20582 +f 20359/20576 20381/20599 20357/20574 +f 20358/20575 20357/20574 20382/20600 +f 20358/20575 20382/20600 15659/20584 +f 20368/20586 20337/20553 20367/20585 +f 20383/20601 20367/20585 20360/20577 +f 20384/20602 20348/20565 20368/20586 +f 20384/20602 20369/20587 20348/20565 +f 20350/20567 20369/20587 20385/20603 +f 20370/20588 20386/20604 20362/20579 +f 20350/20567 20387/20605 20370/20588 +f 20371/20589 20362/20579 20386/20604 +f 20372/20590 20351/20568 20371/20589 +f 20363/20580 20364/20581 20372/20590 +f 20365/20582 20373/20591 20380/20598 +f 20352/20569 20374/20592 20373/20591 +f 20388/20606 20374/20592 20355/20572 +f 20375/20593 20353/20570 20376/20594 +f 20377/20595 20366/20583 20375/20593 +f 20372/20590 20376/20594 20363/20580 +f 20378/20596 20354/20571 20377/20595 +f 20378/20596 20388/20606 20355/20572 +f 20379/20597 20356/20573 20389/20607 +f 20379/20597 20390/20608 20359/20576 +f 20389/20607 20356/20573 20380/20598 +f 20359/20576 20390/20608 20381/20599 +f 20381/20599 20391/20609 20357/20574 +f 20382/20600 20357/20574 20391/20609 +f 20382/20600 15604/20610 15659/20584 +f 20392/20611 20368/20586 20367/20585 +f 20367/20585 20383/20601 20392/20611 +f 20368/20586 20393/20612 20384/20602 +f 20384/20602 20394/20613 20369/20587 +f 20385/20603 20369/20587 20394/20613 +f 20350/20567 20385/20603 20387/20605 +f 20386/20604 20370/20588 20395/20614 +f 20395/20614 20370/20588 20387/20605 +f 20371/20589 20396/20615 20372/20590 +f 20397/20616 20380/20598 20373/20591 +f 20373/20591 20374/20592 20398/20617 +f 20399/20618 20374/20592 20388/20606 +f 20376/20594 20400/20619 20375/20593 +f 20377/20595 20375/20593 20401/20620 +f 20376/20594 20372/20590 20402/20621 +f 20403/20622 20378/20596 20377/20595 +f 20388/20606 20378/20596 20399/20618 +f 20389/20607 20404/20623 20379/20597 +f 20390/20608 20379/20597 20405/20624 +f 20380/20598 20406/20625 20389/20607 +f 20381/20599 20390/20608 20407/20626 +f 20382/20600 20391/20609 20381/20599 +f 15604/20610 20382/20600 20408/20627 +f 20392/20611 20393/20612 20368/20586 +f 20394/20613 20384/20602 20393/20612 +f 20385/20603 20394/20613 20409/20628 +f 20409/20628 20387/20605 20385/20603 +f 20410/20629 20395/20614 20387/20605 +f 20402/20621 20372/20590 20396/20615 +f 20411/20630 20380/20598 20397/20616 +f 20373/20591 20398/20617 20397/20616 +f 20374/20592 20399/20618 20398/20617 +f 20412/20631 20400/20619 20376/20594 +f 20400/20619 20401/20620 20375/20593 +f 20377/20595 20401/20620 20413/20632 +f 20402/20621 20412/20631 20376/20594 +f 20414/20633 20403/20622 20377/20595 +f 20378/20596 20403/20622 20399/20618 +f 20404/20623 20389/20607 20406/20625 +f 20405/20624 20379/20597 20404/20623 +f 20407/20626 20390/20608 20405/20624 +f 20380/20598 20411/20630 20406/20625 +f 20407/20626 20382/20600 20381/20599 +f 20382/20600 20407/20626 20408/20627 +f 15655/20634 15604/20610 20408/20627 +f 20415/20635 20394/20613 20393/20612 +f 20409/20628 20394/20613 20416/20636 +f 20387/20605 20409/20628 20410/20629 +f 20397/20616 20417/20637 20411/20630 +f 20397/20616 20398/20617 20418/20638 +f 20399/20618 20419/20639 20398/20617 +f 20400/20619 20412/20631 20420/20640 +f 20420/20640 20401/20620 20400/20619 +f 20413/20632 20401/20620 20421/20641 +f 20377/20595 20413/20632 20422/20642 +f 20402/20621 20423/20643 20412/20631 +f 20419/20639 20403/20622 20414/20633 +f 20377/20595 20422/20642 20414/20633 +f 20403/20622 20419/20639 20399/20618 +f 20404/20623 20406/20625 20424/20644 +f 20424/20644 20405/20624 20404/20623 +f 20407/20626 20405/20624 20425/20645 +f 20411/20630 20426/20646 20406/20625 +f 20427/20647 20408/20627 20407/20626 +f 15655/20634 20408/20627 20428/20648 +f 20416/20636 20394/20613 20415/20635 +f 20429/20649 20409/20628 20416/20636 +f 20409/20628 20429/20649 20410/20629 +f 20417/20637 20397/20616 20418/20638 +f 20411/20630 20417/20637 20426/20646 +f 20398/20617 20430/20650 20418/20638 +f 20431/20651 20398/20617 20419/20639 +f 20412/20631 20423/20643 20420/20640 +f 20401/20620 20420/20640 20432/20652 +f 20421/20641 20401/20620 20432/20652 +f 20433/20653 20413/20632 20421/20641 +f 20434/20654 20422/20642 20413/20632 +f 20414/20633 20435/20655 20419/20639 +f 20436/20656 20424/20644 20406/20625 +f 20436/20656 20405/20624 20424/20644 +f 20405/20624 20437/20657 20425/20645 +f 20438/20658 20407/20626 20425/20645 +f 20426/20646 20439/20659 20406/20625 +f 20438/20658 20427/20647 20407/20626 +f 20428/20648 20408/20627 20427/20647 +f 20428/20648 15556/20660 15655/20634 +f 20417/20637 20418/20638 20440/20661 +f 20441/20662 20426/20646 20417/20637 +f 20430/20650 20398/20617 20431/20651 +f 20430/20650 20442/20663 20418/20638 +f 20419/20639 20435/20655 20431/20651 +f 20432/20652 20420/20640 20423/20643 +f 20443/20664 20421/20641 20432/20652 +f 20444/20665 20433/20653 20421/20641 +f 20413/20632 20433/20653 20445/20666 +f 20445/20666 20434/20654 20413/20632 +f 20446/20667 20435/20655 20414/20633 +f 20436/20656 20406/20625 20447/20668 +f 20405/20624 20436/20656 20448/20669 +f 20405/20624 20449/20670 20437/20657 +f 20437/20657 20449/20670 20425/20645 +f 20438/20658 20425/20645 20450/20671 +f 20426/20646 20451/20672 20439/20659 +f 20439/20659 20447/20668 20406/20625 +f 20450/20671 20427/20647 20438/20658 +f 20428/20648 20427/20647 20452/20673 +f 20428/20648 20453/20674 15556/20660 +f 20454/20675 20440/20661 20418/20638 +f 20455/20676 20417/20637 20440/20661 +f 20426/20646 20441/20662 20451/20672 +f 20417/20637 20455/20676 20441/20662 +f 20456/20677 20430/20650 20431/20651 +f 20418/20638 20442/20663 20454/20675 +f 20430/20650 20456/20677 20442/20663 +f 20431/20651 20435/20655 20457/20678 +f 20458/20679 20432/20652 20423/20643 +f 20443/20664 20444/20665 20421/20641 +f 20443/20664 20432/20652 20458/20679 +f 20433/20653 20444/20665 20459/20680 +f 20445/20666 20433/20653 20459/20680 +f 20445/20666 20460/20681 20434/20654 +f 20461/20682 20435/20655 20446/20667 +f 20447/20668 20448/20669 20436/20656 +f 20405/20624 20448/20669 20449/20670 +f 20462/20683 20425/20645 20449/20670 +f 20463/20684 20450/20671 20425/20645 +f 20439/20659 20451/20672 20447/20668 +f 20427/20647 20450/20671 15765/20685 +f 20427/20647 15735/20686 20452/20673 +f 20453/20674 20428/20648 20452/20673 +f 15656/20687 15556/20660 20453/20674 +f 20454/20675 20455/20676 20440/20661 +f 20464/20688 20451/20672 20441/20662 +f 20455/20676 20465/20689 20441/20662 +f 20457/20678 20456/20677 20431/20651 +f 20442/20663 20466/20690 20454/20675 +f 20466/20690 20442/20663 20456/20677 +f 20457/20678 20435/20655 20461/20682 +f 20459/20680 20444/20665 20467/20691 +f 20445/20666 20459/20680 20468/20692 +f 20460/20681 20445/20666 20468/20692 +f 20446/20667 20469/20693 20461/20682 +f 20470/20694 20448/20669 20447/20668 +f 20449/20670 20448/20669 20471/20695 +f 20462/20683 20463/20684 20425/20645 +f 20471/20695 20462/20683 20449/20670 +f 15844/20696 20450/20671 20463/20684 +f 20447/20668 20451/20672 20472/20697 +f 15735/20686 20427/20647 15765/20685 +f 20450/20671 15844/20696 15765/20685 +f 20452/20673 15735/20686 15656/20687 +f 20452/20673 15656/20687 20453/20674 +f 20454/20675 20473/20698 20455/20676 +f 20474/20699 20451/20672 20464/20688 +f 20465/20689 20464/20688 20441/20662 +f 20473/20698 20465/20689 20455/20676 +f 20456/20677 20457/20678 20466/20690 +f 20473/20698 20454/20675 20466/20690 +f 20466/20690 20457/20678 20461/20682 +f 20468/20692 20459/20680 20467/20691 +f 20461/20682 20469/20693 20466/20690 +f 20469/20693 20446/20667 20475/20700 +f 20470/20694 20471/20695 20448/20669 +f 20470/20694 20447/20668 20472/20697 +f 20463/20684 20462/20683 15880/20701 +f 20471/20695 20476/20702 20462/20683 +f 15880/20701 15844/20696 20463/20684 +f 20451/20672 20474/20699 20472/20697 +f 20464/20688 20477/20703 20474/20699 +f 20465/20689 20478/20704 20464/20688 +f 20479/20705 20465/20689 20473/20698 +f 20473/20698 20466/20690 20479/20705 +f 20466/20690 20469/20693 20479/20705 +f 20469/20693 20475/20700 20480/20706 +f 20481/20707 20471/20695 20470/20694 +f 20481/20707 20470/20694 20472/20697 +f 15880/20701 20462/20683 20476/20702 +f 20476/20702 20471/20695 20482/20708 +f 20474/20699 20483/20709 20472/20697 +f 20484/20710 20474/20699 20477/20703 +f 20485/20711 20477/20703 20464/20688 +f 20479/20705 20478/20704 20465/20689 +f 20485/20711 20464/20688 20478/20704 +f 20479/20705 20469/20693 20480/20706 +f 20480/20706 20475/20700 20486/20712 +f 20471/20695 20481/20707 20487/20713 +f 20483/20709 20481/20707 20472/20697 +f 20476/20702 15890/20714 15880/20701 +f 20482/20708 20471/20695 20488/20715 +f 20489/20716 20476/20702 20482/20708 +f 20474/20699 20484/20710 20483/20709 +f 20484/20710 20477/20703 20490/20717 +f 20491/20718 20477/20703 20485/20711 +f 20478/20704 20479/20705 20492/20719 +f 20485/20711 20478/20704 20492/20719 +f 20493/20720 20479/20705 20480/20706 +f 20486/20712 20475/20700 20494/20721 +f 20480/20706 20486/20712 20495/20722 +f 20496/20723 20487/20713 20481/20707 +f 20488/20715 20471/20695 20487/20713 +f 20496/20723 20481/20707 20483/20709 +f 15902/20724 15890/20714 20476/20702 +f 20482/20708 20488/20715 20489/20716 +f 20489/20716 15902/20724 20476/20702 +f 20483/20709 20484/20710 20497/20725 +f 20497/20725 20484/20710 20490/20717 +f 20490/20717 20477/20703 20491/20718 +f 20498/20726 20491/20718 20485/20711 +f 20479/20705 20493/20720 20492/20719 +f 20485/20711 20492/20719 20499/20727 +f 20480/20706 20495/20722 20493/20720 +f 20500/20728 20486/20712 20494/20721 +f 20501/20729 20495/20722 20486/20712 +f 20488/20715 20487/20713 20496/20723 +f 20502/20730 20496/20723 20483/20709 +f 20503/20731 20489/20716 20488/20715 +f 15911/20732 15902/20724 20489/20716 +f 20504/20733 20483/20709 20497/20725 +f 20505/20734 20497/20725 20490/20717 +f 20491/20718 20506/20735 20490/20717 +f 20485/20711 20499/20727 20498/20726 +f 20498/20726 20507/20736 20491/20718 +f 20499/20727 20492/20719 20493/20720 +f 20508/20737 20493/20720 20495/20722 +f 20486/20712 20500/20728 20501/20729 +f 20494/20721 20509/20738 20500/20728 +f 20501/20729 20510/20739 20495/20722 +f 20496/20723 20511/20740 20488/20715 +f 20502/20730 20512/20741 20496/20723 +f 20504/20733 20502/20730 20483/20709 +f 20503/20731 15915/20742 20489/20716 +f 20511/20740 20503/20731 20488/20715 +f 20489/20716 15915/20742 15911/20732 +f 20513/20743 20504/20733 20497/20725 +f 20505/20734 20513/20743 20497/20725 +f 20506/20735 20505/20734 20490/20717 +f 20506/20735 20491/20718 20514/20744 +f 20515/20745 20498/20726 20499/20727 +f 20507/20736 20498/20726 20515/20745 +f 20514/20744 20491/20718 20507/20736 +f 20508/20737 20499/20727 20493/20720 +f 20495/20722 20510/20739 20508/20737 +f 20500/20728 20516/20746 20501/20729 +f 20517/20747 20500/20728 20509/20738 +f 20501/20729 20518/20748 20510/20739 +f 20511/20740 20496/20723 20519/20749 +f 20520/20750 20512/20741 20502/20730 +f 20519/20749 20496/20723 20512/20741 +f 20521/20751 20502/20730 20504/20733 +f 15915/20742 20503/20731 20522/20752 +f 20511/20740 20523/20753 20503/20731 +f 20513/20743 20524/20754 20504/20733 +f 20513/20743 20505/20734 20525/20755 +f 20525/20755 20505/20734 20506/20735 +f 20525/20755 20506/20735 20514/20744 +f 20515/20745 20499/20727 20526/20756 +f 20515/20745 20527/20757 20507/20736 +f 20527/20757 20514/20744 20507/20736 +f 20508/20737 20526/20756 20499/20727 +f 20526/20756 20508/20737 20510/20739 +f 20517/20747 20516/20746 20500/20728 +f 20516/20746 20518/20748 20501/20729 +f 20528/20758 20517/20747 20509/20738 +f 20526/20756 20510/20739 20518/20748 +f 20523/20753 20511/20740 20519/20749 +f 20529/20759 20512/20741 20520/20750 +f 20521/20751 20520/20750 20502/20730 +f 20512/20741 20529/20759 20519/20749 +f 20504/20733 20524/20754 20521/20751 +f 15915/20742 20522/20752 15916/20760 +f 20503/20731 20523/20753 20522/20752 +f 20530/20761 20524/20754 20513/20743 +f 20513/20743 20525/20755 20530/20761 +f 20525/20755 20514/20744 20531/20762 +f 20515/20745 20526/20756 20532/20763 +f 20515/20745 20533/20764 20527/20757 +f 20531/20762 20514/20744 20527/20757 +f 20517/20747 20534/20765 20516/20746 +f 20516/20746 20535/20766 20518/20748 +f 20528/20758 20536/20767 20517/20747 +f 20537/20768 20528/20758 20509/20738 +f 20532/20763 20526/20756 20518/20748 +f 20538/20769 20523/20753 20519/20749 +f 20520/20750 20521/20751 20529/20759 +f 20529/20759 20538/20769 20519/20749 +f 20539/20770 20521/20751 20524/20754 +f 20540/20771 15916/20760 20522/20752 +f 20540/20771 20522/20752 20523/20753 +f 20524/20754 20530/20761 20539/20770 +f 20525/20755 20541/20772 20530/20761 +f 20531/20762 20541/20772 20525/20755 +f 20542/20773 20515/20745 20532/20763 +f 20533/20764 20515/20745 20542/20773 +f 20527/20757 20533/20764 20543/20774 +f 20543/20774 20531/20762 20527/20757 +f 20534/20765 20517/20747 20536/20767 +f 20535/20766 20516/20746 20534/20765 +f 20544/20775 20518/20748 20535/20766 +f 20536/20767 20528/20758 20545/20776 +f 20546/20777 20528/20758 20537/20768 +f 20544/20775 20532/20763 20518/20748 +f 20523/20753 20538/20769 20540/20771 +f 20547/20778 20529/20759 20521/20751 +f 20529/20759 20548/20779 20538/20769 +f 20539/20770 20549/20780 20521/20751 +f 20550/20781 15916/20760 20540/20771 +f 20530/20761 20541/20772 20539/20770 +f 20531/20762 20551/20782 20541/20772 +f 20532/20763 20544/20775 20542/20773 +f 20552/20783 20533/20764 20542/20773 +f 20533/20764 20553/20784 20543/20774 +f 20551/20782 20531/20762 20543/20774 +f 20536/20767 20554/20785 20534/20765 +f 20534/20765 20555/20786 20535/20766 +f 20552/20783 20544/20775 20535/20766 +f 20546/20777 20545/20776 20528/20758 +f 20545/20776 20554/20785 20536/20767 +f 20556/20787 20546/20777 20537/20768 +f 20538/20769 20557/20788 20540/20771 +f 20547/20778 20548/20779 20529/20759 +f 20521/20751 20549/20780 20547/20778 +f 20548/20779 20558/20789 20538/20769 +f 20541/20772 20549/20780 20539/20770 +f 20557/20788 20550/20781 20540/20771 +f 20549/20780 20541/20772 20551/20782 +f 20544/20775 20552/20783 20542/20773 +f 20552/20783 20559/20790 20533/20764 +f 20553/20784 20533/20764 20559/20790 +f 20543/20774 20553/20784 20560/20791 +f 20551/20782 20543/20774 20561/20792 +f 20554/20785 20562/20793 20534/20765 +f 20555/20786 20534/20765 20562/20793 +f 20555/20786 20563/20794 20535/20766 +f 20535/20766 20563/20794 20552/20783 +f 20546/20777 20564/20795 20545/20776 +f 20565/20796 20554/20785 20545/20776 +f 20564/20795 20546/20777 20556/20787 +f 20537/20768 20566/20797 20556/20787 +f 20558/20789 20557/20788 20538/20769 +f 20547/20778 20567/20798 20548/20779 +f 20567/20798 20547/20778 20549/20780 +f 20558/20789 20548/20779 20568/20799 +f 20557/20788 20569/20800 20550/20781 +f 20549/20780 20551/20782 20570/20801 +f 20559/20790 20552/20783 20571/20802 +f 20572/20803 20553/20784 20559/20790 +f 20560/20791 20561/20792 20543/20774 +f 20560/20791 20553/20784 20573/20804 +f 20551/20782 20561/20792 20574/20805 +f 20575/20806 20562/20793 20554/20785 +f 20576/20807 20555/20786 20562/20793 +f 20576/20807 20563/20794 20555/20786 +f 20571/20802 20552/20783 20563/20794 +f 20564/20795 20565/20796 20545/20776 +f 20565/20796 20575/20806 20554/20785 +f 20564/20795 20556/20787 20577/20808 +f 20566/20797 20578/20809 20556/20787 +f 20579/20810 20557/20788 20558/20789 +f 20580/20811 20548/20779 20567/20798 +f 20570/20801 20567/20798 20549/20780 +f 20581/20812 20558/20789 20568/20799 +f 20548/20779 20582/20813 20568/20799 +f 20569/20800 20557/20788 20579/20810 +f 20551/20782 20583/20814 20570/20801 +f 20571/20802 20572/20803 20559/20790 +f 20584/20815 20553/20784 20572/20803 +f 20585/20816 20561/20792 20560/20791 +f 20553/20784 20584/20815 20573/20804 +f 20573/20804 20586/20817 20560/20791 +f 20561/20792 20587/20818 20574/20805 +f 20574/20805 20588/20819 20551/20782 +f 20575/20806 20589/20820 20562/20793 +f 20576/20807 20562/20793 20589/20820 +f 20563/20794 20576/20807 20590/20821 +f 20571/20802 20563/20794 20590/20821 +f 20565/20796 20564/20795 20591/20822 +f 20591/20822 20575/20806 20565/20796 +f 20564/20795 20577/20808 20591/20822 +f 20556/20787 20592/20823 20577/20808 +f 20566/20797 20593/20824 20578/20809 +f 20556/20787 20578/20809 20592/20823 +f 20581/20812 20579/20810 20558/20789 +f 20582/20813 20548/20779 20580/20811 +f 20580/20811 20567/20798 20570/20801 +f 20581/20812 20568/20799 20594/20825 +f 20568/20799 20582/20813 20595/20826 +f 20579/20810 20596/20827 20569/20800 +f 20583/20814 20551/20782 20588/20819 +f 20580/20811 20570/20801 20583/20814 +f 20571/20802 20597/20828 20572/20803 +f 20598/20829 20584/20815 20572/20803 +f 20587/20818 20561/20792 20585/20816 +f 20585/20816 20560/20791 20586/20817 +f 20573/20804 20584/20815 20599/20830 +f 20573/20804 20600/20831 20586/20817 +f 20574/20805 20587/20818 20601/20832 +f 20574/20805 20602/20833 20588/20819 +f 20575/20806 20603/20834 20589/20820 +f 20604/20835 20576/20807 20589/20820 +f 20590/20821 20576/20807 20605/20836 +f 20606/20837 20571/20802 20590/20821 +f 20591/20822 20607/20838 20575/20806 +f 20577/20808 20607/20838 20591/20822 +f 20608/20839 20577/20808 20592/20823 +f 20593/20824 20592/20823 20578/20809 +f 20579/20810 20581/20812 20609/20840 +f 20610/20841 20582/20813 20580/20811 +f 20611/20842 20581/20812 20594/20825 +f 20568/20799 20612/20843 20594/20825 +f 20595/20826 20612/20843 20568/20799 +f 20582/20813 20613/20844 20595/20826 +f 20609/20840 20596/20827 20579/20810 +f 20614/20845 20583/20814 20588/20819 +f 20614/20845 20580/20811 20583/20814 +f 20597/20828 20571/20802 20606/20837 +f 20615/20846 20572/20803 20597/20828 +f 20584/20815 20598/20829 20599/20830 +f 20615/20846 20598/20829 20572/20803 +f 20585/20816 20616/20847 20587/20818 +f 20585/20816 20586/20817 20616/20847 +f 20600/20831 20573/20804 20599/20830 +f 20586/20817 20600/20831 20617/20848 +f 20602/20833 20574/20805 20601/20832 +f 20587/20818 20616/20847 20601/20832 +f 20588/20819 20602/20833 20618/20849 +f 20589/20820 20603/20834 20619/20850 +f 20607/20838 20603/20834 20575/20806 +f 20605/20836 20576/20807 20604/20835 +f 20604/20835 20589/20820 20619/20850 +f 20590/20821 20605/20836 20606/20837 +f 20607/20838 20577/20808 20608/20839 +f 20608/20839 20592/20823 20620/20851 +f 20592/20823 20593/20824 20621/20852 +f 20609/20840 20581/20812 20611/20842 +f 20610/20841 20613/20844 20582/20813 +f 20580/20811 20614/20845 20610/20841 +f 20611/20842 20594/20825 20612/20843 +f 20612/20843 20595/20826 20622/20853 +f 20613/20844 20623/20854 20595/20826 +f 20596/20827 20609/20840 20624/20855 +f 20614/20845 20588/20819 20618/20849 +f 20625/20856 20597/20828 20606/20837 +f 20625/20856 20615/20846 20597/20828 +f 20626/20857 20599/20830 20598/20829 +f 20598/20829 20615/20846 20626/20857 +f 20627/20858 20616/20847 20586/20817 +f 20600/20831 20599/20830 20626/20857 +f 20600/20831 20628/20859 20617/20848 +f 20586/20817 20617/20848 20627/20858 +f 3050/20860 20602/20833 20601/20832 +f 20629/20861 20601/20832 20616/20847 +f 20630/20862 20618/20849 20602/20833 +f 20619/20850 20603/20834 20631/20863 +f 20632/20864 20603/20834 20607/20838 +f 20633/20865 20605/20836 20604/20835 +f 20619/20850 20631/20863 20604/20835 +f 20634/20866 20606/20837 20605/20836 +f 20635/20867 20607/20838 20608/20839 +f 20620/20851 20592/20823 20636/20868 +f 20620/20851 20637/20869 20608/20839 +f 20621/20852 20593/20824 20638/20870 +f 20621/20852 20639/20871 20592/20823 +f 20609/20840 20611/20842 20640/20872 +f 20610/20841 20641/20873 20613/20844 +f 20614/20845 20641/20873 20610/20841 +f 20642/20874 20611/20842 20612/20843 +f 20622/20853 20642/20874 20612/20843 +f 20622/20853 20595/20826 20623/20854 +f 3256/20875 20623/20854 20613/20844 +f 20609/20840 20640/20872 20624/20855 +f 20614/20845 20618/20849 20641/20873 +f 20606/20837 20634/20866 20625/20856 +f 20643/20876 20615/20846 20625/20856 +f 20615/20846 20643/20876 20626/20857 +f 20644/20877 20616/20847 20627/20858 +f 20600/20831 20626/20857 20645/20878 +f 20628/20859 20600/20831 20646/20879 +f 20617/20848 20628/20859 20647/20880 +f 20627/20858 20617/20848 20644/20877 +f 3050/20860 3102/20881 20602/20833 +f 3050/20860 20601/20832 3048/20882 +f 20601/20832 20629/20861 3048/20882 +f 20616/20847 20648/20883 20629/20861 +f 20630/20862 20602/20833 3102/20881 +f 3203/20884 20618/20849 20630/20862 +f 20603/20834 20632/20864 20631/20863 +f 20607/20838 20635/20867 20632/20864 +f 20649/20885 20633/20865 20604/20835 +f 20633/20865 20650/20886 20605/20836 +f 20604/20835 20631/20863 20651/20887 +f 20605/20836 20652/20888 20634/20866 +f 20608/20839 20637/20869 20635/20867 +f 20639/20871 20636/20868 20592/20823 +f 20653/20889 20620/20851 20636/20868 +f 20637/20869 20620/20851 20653/20889 +f 20593/20824 20654/20890 20638/20870 +f 20621/20852 20638/20870 20655/20891 +f 20655/20891 20639/20871 20621/20852 +f 20611/20842 20656/20892 20640/20872 +f 20613/20844 20641/20873 3256/20875 +f 20611/20842 20642/20874 20657/20893 +f 20658/20894 20642/20874 20622/20853 +f 3277/20895 20622/20853 20623/20854 +f 3256/20875 3277/20895 20623/20854 +f 20624/20855 20640/20872 20656/20892 +f 20618/20849 3203/20884 20641/20873 +f 20659/20896 20625/20856 20634/20866 +f 20643/20876 20625/20856 20660/20897 +f 20626/20857 20643/20876 20645/20878 +f 20616/20847 20644/20877 20648/20883 +f 20645/20878 20646/20879 20600/20831 +f 20628/20859 20646/20879 20661/20898 +f 20644/20877 20617/20848 20647/20880 +f 20628/20859 20662/20899 20647/20880 +f 20629/20861 2926/20900 3048/20882 +f 2926/20900 20629/20861 20648/20883 +f 20630/20862 3102/20881 3134/20901 +f 3203/20884 20630/20862 3134/20901 +f 20632/20864 20663/20902 20631/20863 +f 20663/20902 20632/20864 20635/20867 +f 20651/20887 20649/20885 20604/20835 +f 20664/20903 20633/20865 20649/20885 +f 20664/20903 20650/20886 20633/20865 +f 20650/20886 20652/20888 20605/20836 +f 20631/20863 20665/20904 20651/20887 +f 20652/20888 20659/20896 20634/20866 +f 20635/20867 20637/20869 20663/20902 +f 20666/20905 20636/20868 20639/20871 +f 20636/20868 20666/20905 20653/20889 +f 20653/20889 20667/20906 20637/20869 +f 20668/20907 20638/20870 20654/20890 +f 20655/20891 20638/20870 20668/20907 +f 20669/20908 20639/20871 20655/20891 +f 20656/20892 20611/20842 20657/20893 +f 3203/20884 3256/20875 20641/20873 +f 20642/20874 20658/20894 20657/20893 +f 20658/20894 20622/20853 3277/20895 +f 20670/20909 20625/20856 20659/20896 +f 20660/20897 20625/20856 20670/20909 +f 20660/20897 20645/20878 20643/20876 +f 20671/20910 20648/20883 20644/20877 +f 20645/20878 20672/20911 20646/20879 +f 2667/20912 20661/20898 20646/20879 +f 20662/20899 20628/20859 20661/20898 +f 20662/20899 20644/20877 20647/20880 +f 20648/20883 2794/20913 2926/20900 +f 20665/20904 20631/20863 20663/20902 +f 20667/20906 20649/20885 20651/20887 +f 20649/20885 20673/20914 20664/20903 +f 20674/20915 20650/20886 20664/20903 +f 20675/20916 20652/20888 20650/20886 +f 20651/20887 20665/20904 20667/20906 +f 20659/20896 20652/20888 20675/20916 +f 20637/20869 20665/20904 20663/20902 +f 20676/20917 20666/20905 20639/20871 +f 20653/20889 20666/20905 20677/20918 +f 20665/20904 20637/20869 20667/20906 +f 20653/20889 20673/20914 20667/20906 +f 20654/20890 20678/20919 20668/20907 +f 20679/20920 20655/20891 20668/20907 +f 20680/20921 20669/20908 20655/20891 +f 20669/20908 20676/20917 20639/20871 +f 20657/20893 20658/20894 20656/20892 +f 20681/20922 20670/20909 20659/20896 +f 20670/20909 20672/20911 20660/20897 +f 20645/20878 20660/20897 20672/20911 +f 20671/20910 2794/20913 20648/20883 +f 20671/20910 20644/20877 20662/20899 +f 20646/20879 20672/20911 20682/20923 +f 20661/20898 2667/20912 2730/20924 +f 2667/20912 20646/20879 20683/20925 +f 20661/20898 2730/20924 20662/20899 +f 20673/20914 20649/20885 20667/20906 +f 20664/20903 20673/20914 20684/20926 +f 20664/20903 20684/20926 20674/20915 +f 20674/20915 20685/20927 20650/20886 +f 20650/20886 20686/20928 20675/20916 +f 20659/20896 20675/20916 20681/20922 +f 20676/20917 20687/20929 20666/20905 +f 20666/20905 20687/20929 20677/20918 +f 20653/20889 20677/20918 20673/20914 +f 20654/20890 20688/20930 20678/20919 +f 20668/20907 20678/20919 20679/20920 +f 20655/20891 20679/20920 20680/20921 +f 20680/20921 20689/20931 20669/20908 +f 20687/20929 20676/20917 20669/20908 +f 20670/20909 20681/20922 20690/20932 +f 20670/20909 20690/20932 20672/20911 +f 2794/20913 20671/20910 2729/20933 +f 20671/20910 20662/20899 2729/20933 +f 20682/20923 20683/20925 20646/20879 +f 20690/20932 20682/20923 20672/20911 +f 20683/20925 2441/20934 2667/20912 +f 2729/20933 20662/20899 2730/20924 +f 20673/20914 20691/20935 20684/20926 +f 20684/20926 20692/20936 20674/20915 +f 20685/20927 20693/20937 20650/20886 +f 20674/20915 20694/20938 20685/20927 +f 20686/20928 20681/20922 20675/20916 +f 20650/20886 20693/20937 20686/20928 +f 20695/20939 20677/20918 20687/20929 +f 20691/20935 20673/20914 20677/20918 +f 20678/20919 20688/20930 20696/20940 +f 20678/20919 20696/20940 20679/20920 +f 20679/20920 20697/20941 20680/20921 +f 20689/20931 20680/20921 20696/20940 +f 20669/20908 20689/20931 20687/20929 +f 20698/20942 20690/20932 20681/20922 +f 20699/20943 20683/20925 20682/20923 +f 20682/20923 20690/20932 20699/20943 +f 20683/20925 2256/20944 2441/20934 +f 20691/20935 20700/20945 20684/20926 +f 20684/20926 20701/20946 20692/20936 +f 20692/20936 20702/20947 20674/20915 +f 20693/20937 20685/20927 20703/20948 +f 20685/20927 20694/20938 20704/20949 +f 20705/20950 20694/20938 20674/20915 +f 20698/20942 20681/20922 20686/20928 +f 20693/20937 20706/20951 20686/20928 +f 20707/20952 20677/20918 20695/20939 +f 20687/20929 20708/20953 20695/20939 +f 20691/20935 20677/20918 20709/20954 +f 20688/20930 20710/20955 20696/20940 +f 20697/20941 20679/20920 20696/20940 +f 20680/20921 20697/20941 20696/20940 +f 20696/20940 20711/20956 20689/20931 +f 20689/20931 20712/20957 20687/20929 +f 20698/20942 20713/20958 20690/20932 +f 2345/20959 20683/20925 20699/20943 +f 20690/20932 20713/20958 20699/20943 +f 2345/20959 2256/20944 20683/20925 +f 20700/20945 20691/20935 20714/20960 +f 20701/20946 20684/20926 20700/20945 +f 20701/20946 20715/20961 20692/20936 +f 20702/20947 20692/20936 20715/20961 +f 20674/20915 20702/20947 20705/20950 +f 20685/20927 20716/20962 20703/20948 +f 20693/20937 20703/20948 20717/20963 +f 20694/20938 20718/20964 20704/20949 +f 20716/20962 20685/20927 20704/20949 +f 20705/20950 20719/20965 20694/20938 +f 20686/20928 20706/20951 20698/20942 +f 20720/20966 20706/20951 20693/20937 +f 20707/20952 20709/20954 20677/20918 +f 20695/20939 20721/20967 20707/20952 +f 20695/20939 20708/20953 20721/20967 +f 20712/20957 20708/20953 20687/20929 +f 20691/20935 20709/20954 20714/20960 +f 20696/20940 20710/20955 20711/20956 +f 20712/20957 20689/20931 20711/20956 +f 20722/20968 20713/20958 20698/20942 +f 2521/20969 2345/20959 20699/20943 +f 20713/20958 2521/20969 20699/20943 +f 20714/20960 20701/20946 20700/20945 +f 20701/20946 20723/20970 20715/20961 +f 20715/20961 20724/20971 20702/20947 +f 20725/20972 20705/20950 20702/20947 +f 20726/20973 20703/20948 20716/20962 +f 20717/20963 20703/20948 20726/20973 +f 20717/20963 20720/20966 20693/20937 +f 20718/20964 20694/20938 20727/20974 +f 20704/20949 20718/20964 20716/20962 +f 20694/20938 20719/20965 20728/20975 +f 20719/20965 20705/20950 20729/20976 +f 20698/20942 20706/20951 20730/20977 +f 20731/20978 20706/20951 20720/20966 +f 20709/20954 20707/20952 20732/20979 +f 20721/20967 20733/20980 20707/20952 +f 20721/20967 20708/20953 20734/20981 +f 20735/20982 20708/20953 20712/20957 +f 20732/20979 20714/20960 20709/20954 +f 20736/20983 20711/20956 20710/20955 +f 20712/20957 20711/20956 20737/20984 +f 20738/20985 20713/20958 20722/20968 +f 20730/20977 20722/20968 20698/20942 +f 20713/20958 20738/20985 2521/20969 +f 20714/20960 20723/20970 20701/20946 +f 20723/20970 20739/20986 20715/20961 +f 20715/20961 20740/20987 20724/20971 +f 20702/20947 20724/20971 20741/20988 +f 20725/20972 20702/20947 20741/20988 +f 20742/20989 20705/20950 20725/20972 +f 20743/20990 20726/20973 20716/20962 +f 20731/20978 20717/20963 20726/20973 +f 20731/20978 20720/20966 20717/20963 +f 20694/20938 20728/20975 20727/20974 +f 20727/20974 20744/20991 20718/20964 +f 20744/20991 20716/20962 20718/20964 +f 20719/20965 20745/20992 20728/20975 +f 20729/20976 20705/20950 20742/20989 +f 20729/20976 20745/20992 20719/20965 +f 20730/20977 20706/20951 20731/20978 +f 20707/20952 20746/20993 20732/20979 +f 20707/20952 20733/20980 20747/20994 +f 20721/20967 20748/20995 20733/20980 +f 20721/20967 20734/20981 20749/20996 +f 20734/20981 20708/20953 20735/20982 +f 20712/20957 20737/20984 20735/20982 +f 20732/20979 20746/20993 20714/20960 +f 20736/20983 20737/20984 20711/20956 +f 20750/20997 20738/20985 20722/20968 +f 20750/20997 20722/20968 20730/20977 +f 20738/20985 2439/20998 2521/20969 +f 20714/20960 20746/20993 20723/20970 +f 20739/20986 20723/20970 20751/20999 +f 20740/20987 20715/20961 20739/20986 +f 20724/20971 20740/20987 20752/21000 +f 20724/20971 20753/21001 20741/20988 +f 20741/20988 20754/21002 20725/20972 +f 20742/20989 20725/20972 20754/21002 +f 20755/21003 20743/20990 20716/20962 +f 20756/21004 20726/20973 20743/20990 +f 20726/20973 20750/20997 20731/20978 +f 20728/20975 20745/20992 20727/20974 +f 20744/20991 20727/20974 20757/21005 +f 20758/21006 20716/20962 20744/20991 +f 20729/20976 20742/20989 20759/21007 +f 20729/20976 20757/21005 20745/20992 +f 20730/20977 20731/20978 20750/20997 +f 20746/20993 20707/20952 20747/20994 +f 20747/20994 20733/20980 20748/20995 +f 20748/20995 20721/20967 20749/20996 +f 20760/21008 20749/20996 20734/20981 +f 20760/21008 20734/20981 20735/20982 +f 20737/20984 20761/21009 20735/20982 +f 20736/20983 20762/21010 20737/20984 +f 20763/21011 20738/20985 20750/20997 +f 20738/20985 20763/21011 2439/20998 +f 20751/20999 20723/20970 20746/20993 +f 20751/20999 20764/21012 20739/20986 +f 20740/20987 20739/20986 20765/21013 +f 20724/20971 20752/21000 20766/21014 +f 20740/20987 20765/21013 20752/21000 +f 20724/20971 20766/21014 20753/21001 +f 20741/20988 20753/21001 20767/21015 +f 20767/21015 20754/21002 20741/20988 +f 20754/21002 20768/21016 20742/20989 +f 20755/21003 20769/21017 20743/20990 +f 20716/20962 20758/21006 20755/21003 +f 20769/21017 20756/21004 20743/20990 +f 20756/21004 20750/20997 20726/20973 +f 20757/21005 20727/20974 20745/20992 +f 20757/21005 20770/21018 20744/20991 +f 20770/21018 20758/21006 20744/20991 +f 20742/20989 20771/21019 20759/21007 +f 20772/21020 20729/20976 20759/21007 +f 20729/20976 20772/21020 20757/21005 +f 20751/20999 20746/20993 20747/20994 +f 20773/21021 20747/20994 20748/20995 +f 20749/20996 20774/21022 20748/20995 +f 20775/21023 20749/20996 20760/21008 +f 20761/21009 20760/21008 20735/20982 +f 20737/20984 20762/21010 20761/21009 +f 20736/20983 20776/21024 20762/21010 +f 20750/20997 20756/21004 20763/21011 +f 20777/21025 2439/20998 20763/21011 +f 20751/20999 20778/21026 20764/21012 +f 20764/21012 20765/21013 20739/20986 +f 20752/21000 20779/21027 20766/21014 +f 20752/21000 20765/21013 20779/21027 +f 20766/21014 20780/21028 20753/21001 +f 20781/21029 20767/21015 20753/21001 +f 20754/21002 20767/21015 20768/21016 +f 20768/21016 20771/21019 20742/20989 +f 20782/21030 20769/21017 20755/21003 +f 20755/21003 20758/21006 20770/21018 +f 20783/21031 20756/21004 20769/21017 +f 20770/21018 20757/21005 20784/21032 +f 20771/21019 20785/21033 20759/21007 +f 20759/21007 20786/21034 20772/21020 +f 20784/21032 20757/21005 20772/21020 +f 20747/20994 20773/21021 20751/20999 +f 20748/20995 20787/21035 20773/21021 +f 20775/21023 20774/21022 20749/20996 +f 20788/21036 20748/20995 20774/21022 +f 20789/21037 20775/21023 20760/21008 +f 20790/21038 20760/21008 20761/21009 +f 20761/21009 20762/21010 20791/21039 +f 20776/21024 20791/21039 20762/21010 +f 20777/21025 20763/21011 20756/21004 +f 2253/21040 2439/20998 20777/21025 +f 20773/21021 20778/21026 20751/20999 +f 20764/21012 20778/21026 20792/21041 +f 20764/21012 20792/21041 20765/21013 +f 20779/21027 20793/21042 20766/21014 +f 20765/21013 20794/21043 20779/21027 +f 20795/21044 20753/21001 20780/21028 +f 20766/21014 20793/21042 20780/21028 +f 20781/21029 20796/21045 20767/21015 +f 20781/21029 20753/21001 20795/21044 +f 20767/21015 20796/21045 20768/21016 +f 20768/21016 20797/21046 20771/21019 +f 20769/21017 20782/21030 2069/21047 +f 20782/21030 20755/21003 20798/21048 +f 20770/21018 20799/21049 20755/21003 +f 20777/21025 20756/21004 20783/21031 +f 2156/21050 20783/21031 20769/21017 +f 20784/21032 20799/21049 20770/21018 +f 20800/21051 20785/21033 20771/21019 +f 20786/21034 20759/21007 20785/21033 +f 20772/21020 20786/21034 20784/21032 +f 20801/21052 20787/21035 20748/20995 +f 20802/21053 20773/21021 20787/21035 +f 20774/21022 20775/21023 20803/21054 +f 20804/21055 20788/21036 20774/21022 +f 20788/21036 20801/21052 20748/20995 +f 20760/21008 20790/21038 20789/21037 +f 20805/21056 20775/21023 20789/21037 +f 20790/21038 20761/21009 20789/21037 +f 20791/21039 20806/21057 20761/21009 +f 20791/21039 20776/21024 20806/21057 +f 2253/21040 20777/21025 20783/21031 +f 20807/21058 20778/21026 20773/21021 +f 20792/21041 20778/21026 20808/21059 +f 20792/21041 20794/21043 20765/21013 +f 20793/21042 20779/21027 20809/21060 +f 20794/21043 20809/21060 20779/21027 +f 20780/21028 20810/21061 20795/21044 +f 20780/21028 20793/21042 20811/21062 +f 20796/21045 20781/21029 20812/21063 +f 20795/21044 20813/21064 20781/21029 +f 20768/21016 20796/21045 20814/21065 +f 20797/21046 20768/21016 20814/21065 +f 20771/21019 20797/21046 20800/21051 +f 20782/21030 1971/21066 2069/21047 +f 2069/21047 2156/21050 20769/21017 +f 20755/21003 20799/21049 20798/21048 +f 20798/21048 20815/21067 20782/21030 +f 2253/21040 20783/21031 2156/21050 +f 20816/21068 20799/21049 20784/21032 +f 20817/21069 20785/21033 20800/21051 +f 20817/21069 20786/21034 20785/21033 +f 20786/21034 20818/21070 20784/21032 +f 20801/21052 20819/21071 20787/21035 +f 20802/21053 20807/21058 20773/21021 +f 20819/21071 20802/21053 20787/21035 +f 20803/21054 20820/21072 20774/21022 +f 20775/21023 20805/21056 20803/21054 +f 20821/21073 20788/21036 20804/21055 +f 20820/21072 20804/21055 20774/21022 +f 20788/21036 20821/21073 20801/21052 +f 20806/21057 20805/21056 20789/21037 +f 20789/21037 20761/21009 20806/21057 +f 20808/21059 20778/21026 20807/21058 +f 20808/21059 20822/21074 20792/21041 +f 20823/21075 20794/21043 20792/21041 +f 20809/21060 20824/21076 20793/21042 +f 20823/21075 20809/21060 20794/21043 +f 20810/21061 20780/21028 20811/21062 +f 20810/21061 20813/21064 20795/21044 +f 20793/21042 20825/21077 20811/21062 +f 20796/21045 20812/21063 20826/21078 +f 20812/21063 20781/21029 20813/21064 +f 20796/21045 20826/21078 20814/21065 +f 20827/21079 20797/21046 20814/21065 +f 20797/21046 20828/21080 20800/21051 +f 20782/21030 20815/21067 1971/21066 +f 20798/21048 20799/21049 20829/21081 +f 20815/21067 20798/21048 20829/21081 +f 20784/21032 20830/21082 20816/21068 +f 20799/21049 20816/21068 20831/21083 +f 20828/21080 20817/21069 20800/21051 +f 20832/21084 20786/21034 20817/21069 +f 20832/21084 20818/21070 20786/21034 +f 20833/21085 20784/21032 20818/21070 +f 20801/21052 20834/21086 20819/21071 +f 20802/21053 20835/21087 20807/21058 +f 20819/21071 20836/21088 20802/21053 +f 20820/21072 20803/21054 20837/21089 +f 20803/21054 20805/21056 20838/21090 +f 20820/21072 20821/21073 20804/21055 +f 20834/21086 20801/21052 20821/21073 +f 20805/21056 20806/21057 20839/21091 +f 20808/21059 20807/21058 20840/21092 +f 20808/21059 20840/21092 20822/21074 +f 20823/21075 20792/21041 20822/21074 +f 20823/21075 20824/21076 20809/21060 +f 20793/21042 20824/21076 20841/21093 +f 20842/21094 20810/21061 20811/21062 +f 20843/21095 20813/21064 20810/21061 +f 20793/21042 20844/21096 20825/21077 +f 20811/21062 20825/21077 20845/21097 +f 20826/21078 20812/21063 20813/21064 +f 20826/21078 20827/21079 20814/21065 +f 20827/21079 20828/21080 20797/21046 +f 20815/21067 2071/21098 1971/21066 +f 20799/21049 20831/21083 20829/21081 +f 20846/21099 20815/21067 20829/21081 +f 20830/21082 20784/21032 20833/21085 +f 20846/21099 20816/21068 20830/21082 +f 20816/21068 20846/21099 20831/21083 +f 20817/21069 20828/21080 20847/21100 +f 20817/21069 20847/21100 20832/21084 +f 20818/21070 20832/21084 20848/21101 +f 20818/21070 20849/21102 20833/21085 +f 20834/21086 20836/21088 20819/21071 +f 20850/21103 20835/21087 20802/21053 +f 20851/21104 20807/21058 20835/21087 +f 20802/21053 20836/21088 20850/21103 +f 20838/21090 20837/21089 20803/21054 +f 20838/21090 20805/21056 20839/21091 +f 20852/21105 20821/21073 20820/21072 +f 20821/21073 20853/21106 20834/21086 +f 20806/21057 20854/21107 20839/21091 +f 20851/21104 20840/21092 20807/21058 +f 20840/21092 20855/21108 20822/21074 +f 20822/21074 20856/21109 20823/21075 +f 20857/21110 20824/21076 20823/21075 +f 20824/21076 20858/21111 20841/21093 +f 20841/21093 20844/21096 20793/21042 +f 20811/21062 20859/21112 20842/21094 +f 20843/21095 20810/21061 20842/21094 +f 20843/21095 20860/21113 20813/21064 +f 20825/21077 20844/21096 20861/21114 +f 20862/21115 20845/21097 20825/21077 +f 20859/21112 20811/21062 20845/21097 +f 20826/21078 20813/21064 20860/21113 +f 20826/21078 20863/21116 20827/21079 +f 20864/21117 20828/21080 20827/21079 +f 20846/21099 2071/21098 20815/21067 +f 20846/21099 20829/21081 20831/21083 +f 2070/21118 20830/21082 20833/21085 +f 20846/21099 20830/21082 2071/21098 +f 20828/21080 20864/21117 20847/21100 +f 20865/21119 20832/21084 20847/21100 +f 20818/21070 20848/21101 20849/21102 +f 20848/21101 20832/21084 20865/21119 +f 20849/21102 1869/21120 20833/21085 +f 20834/21086 20866/21121 20836/21088 +f 20835/21087 20850/21103 20867/21122 +f 20835/21087 20867/21122 20851/21104 +f 20836/21088 20868/21123 20850/21103 +f 20854/21107 20837/21089 20838/21090 +f 20838/21090 20839/21091 20854/21107 +f 20821/21073 20852/21105 20853/21106 +f 20834/21086 20853/21106 20869/21124 +f 20840/21092 20851/21104 20870/21125 +f 20871/21126 20855/21108 20840/21092 +f 20822/21074 20855/21108 20856/21109 +f 20823/21075 20856/21109 20857/21110 +f 20857/21110 20872/21127 20824/21076 +f 20844/21096 20841/21093 20858/21111 +f 20872/21127 20858/21111 20824/21076 +f 20873/21128 20842/21094 20859/21112 +f 20860/21113 20843/21095 20842/21094 +f 20825/21077 20861/21114 20862/21115 +f 20844/21096 20874/21129 20861/21114 +f 20862/21115 20875/21130 20845/21097 +f 20845/21097 20876/21131 20859/21112 +f 20863/21116 20826/21078 20860/21113 +f 20877/21132 20827/21079 20863/21116 +f 20827/21079 20877/21132 20864/21117 +f 2070/21118 2071/21098 20830/21082 +f 1869/21120 2070/21118 20833/21085 +f 20865/21119 20847/21100 20864/21117 +f 20849/21102 20848/21101 1973/21133 +f 20848/21101 20865/21119 20878/21134 +f 1973/21133 1869/21120 20849/21102 +f 20868/21123 20836/21088 20866/21121 +f 20866/21121 20834/21086 20869/21124 +f 20850/21103 20868/21123 20867/21122 +f 20851/21104 20867/21122 20870/21125 +f 20853/21106 20852/21105 20879/21135 +f 20880/21136 20869/21124 20853/21106 +f 20870/21125 20881/21137 20840/21092 +f 20882/21138 20871/21126 20840/21092 +f 20883/21139 20855/21108 20871/21126 +f 20883/21139 20856/21109 20855/21108 +f 20856/21109 20884/21140 20857/21110 +f 20872/21127 20857/21110 20884/21140 +f 20885/21141 20844/21096 20858/21111 +f 20858/21111 20872/21127 20886/21142 +f 20873/21128 20860/21113 20842/21094 +f 20859/21112 20876/21131 20873/21128 +f 20874/21129 20862/21115 20861/21114 +f 20874/21129 20844/21096 20887/21143 +f 20888/21144 20875/21130 20862/21115 +f 20845/21097 20875/21130 20876/21131 +f 20863/21116 20860/21113 20873/21128 +f 20878/21134 20877/21132 20863/21116 +f 20865/21119 20864/21117 20877/21132 +f 1973/21133 20848/21101 20878/21134 +f 20877/21132 20878/21134 20865/21119 +f 20868/21123 20866/21121 20889/21145 +f 20889/21145 20866/21121 20869/21124 +f 20868/21123 20890/21146 20867/21122 +f 20891/21147 20870/21125 20867/21122 +f 20879/21135 20880/21136 20853/21106 +f 20889/21145 20869/21124 20880/21136 +f 20892/21148 20881/21137 20870/21125 +f 20882/21138 20840/21092 20881/21137 +f 20871/21126 20882/21138 20893/21149 +f 20894/21150 20883/21139 20871/21126 +f 20884/21140 20856/21109 20883/21139 +f 20872/21127 20884/21140 20895/21151 +f 20896/21152 20844/21096 20885/21141 +f 20885/21141 20858/21111 20886/21142 +f 20895/21151 20886/21142 20872/21127 +f 20876/21131 1661/21153 20873/21128 +f 20862/21115 20874/21129 20897/21154 +f 20887/21143 20898/21155 20874/21129 +f 20887/21143 20844/21096 20896/21152 +f 20875/21130 20888/21144 1661/21153 +f 20862/21115 20897/21154 20888/21144 +f 20875/21130 1661/21153 20876/21131 +f 20873/21128 1868/21156 20863/21116 +f 1868/21156 20878/21134 20863/21116 +f 1868/21156 1973/21133 20878/21134 +f 20868/21123 20889/21145 20899/21157 +f 20890/21146 20868/21123 20900/21158 +f 20867/21122 20890/21146 20891/21147 +f 20870/21125 20891/21147 20892/21148 +f 20880/21136 20879/21135 20901/21159 +f 20902/21160 20889/21145 20880/21136 +f 20903/21161 20881/21137 20892/21148 +f 20881/21137 20904/21162 20882/21138 +f 20893/21149 20882/21138 20905/21163 +f 20871/21126 20893/21149 20894/21150 +f 20883/21139 20894/21150 20884/21140 +f 20895/21151 20884/21140 20894/21150 +f 20896/21152 20885/21141 20906/21164 +f 20885/21141 20886/21142 20907/21165 +f 20895/21151 20907/21165 20886/21142 +f 1767/21166 20873/21128 1661/21153 +f 20898/21155 20897/21154 20874/21129 +f 20887/21143 20908/21167 20898/21155 +f 20896/21152 20909/21168 20887/21143 +f 1661/21153 20888/21144 20910/21169 +f 20897/21154 20898/21155 20888/21144 +f 1767/21166 1868/21156 20873/21128 +f 20889/21145 20911/21170 20899/21157 +f 20868/21123 20899/21157 20900/21158 +f 20912/21171 20890/21146 20900/21158 +f 20890/21146 20913/21172 20891/21147 +f 20892/21148 20891/21147 20914/21173 +f 20901/21159 20915/21174 20880/21136 +f 20902/21160 20916/21175 20889/21145 +f 20902/21160 20880/21136 20915/21174 +f 20904/21162 20881/21137 20903/21161 +f 20903/21161 20892/21148 20914/21173 +f 20905/21163 20882/21138 20904/21162 +f 20917/21176 20893/21149 20905/21163 +f 20917/21176 20894/21150 20893/21149 +f 20894/21150 20917/21176 20895/21151 +f 20906/21164 20885/21141 20907/21165 +f 20896/21152 20906/21164 20918/21177 +f 20917/21176 20907/21165 20895/21151 +f 20898/21155 20908/21167 20919/21178 +f 20909/21168 20908/21167 20887/21143 +f 20896/21152 20920/21179 20909/21168 +f 20888/21144 20919/21178 20910/21169 +f 1768/21180 1661/21153 20910/21169 +f 20919/21178 20888/21144 20898/21155 +f 20911/21170 20889/21145 20916/21175 +f 20899/21157 20911/21170 20921/21181 +f 20899/21157 20922/21182 20900/21158 +f 20913/21172 20890/21146 20912/21171 +f 20900/21158 20922/21182 20912/21171 +f 20891/21147 20913/21172 20914/21173 +f 20923/21183 20916/21175 20902/21160 +f 20902/21160 20915/21174 20924/21184 +f 20904/21162 20903/21161 20925/21185 +f 20903/21161 20914/21173 20926/21186 +f 20905/21163 20904/21162 20925/21185 +f 20905/21163 20927/21187 20917/21176 +f 20907/21165 20927/21187 20906/21164 +f 20906/21164 20927/21187 20918/21177 +f 20928/21188 20896/21152 20918/21177 +f 20907/21165 20917/21176 20927/21187 +f 20908/21167 20929/21189 20919/21178 +f 20908/21167 20909/21168 20930/21190 +f 20928/21188 20920/21179 20896/21152 +f 20930/21190 20909/21168 20920/21179 +f 20919/21178 20931/21191 20910/21169 +f 20932/21192 1768/21180 20910/21169 +f 20933/21193 20911/21170 20916/21175 +f 20899/21157 20921/21181 20934/21194 +f 20921/21181 20911/21170 20935/21195 +f 20922/21182 20899/21157 20934/21194 +f 20936/21196 20913/21172 20912/21171 +f 20937/21197 20912/21171 20922/21182 +f 20936/21196 20914/21173 20913/21172 +f 20938/21198 20916/21175 20923/21183 +f 20902/21160 20924/21184 20923/21183 +f 20925/21185 20903/21161 20939/21199 +f 20914/21173 20936/21196 20926/21186 +f 20940/21200 20903/21161 20926/21186 +f 20925/21185 20927/21187 20905/21163 +f 20927/21187 20941/21201 20918/21177 +f 20942/21202 20928/21188 20918/21177 +f 20931/21191 20919/21178 20929/21189 +f 20929/21189 20908/21167 20930/21190 +f 20928/21188 20943/21203 20920/21179 +f 20920/21179 20944/21204 20930/21190 +f 20932/21192 20910/21169 20931/21191 +f 1768/21180 20932/21192 1769/21205 +f 20935/21195 20911/21170 20933/21193 +f 20938/21198 20933/21193 20916/21175 +f 20921/21181 20945/21206 20934/21194 +f 20921/21181 20935/21195 20946/21207 +f 20947/21208 20922/21182 20934/21194 +f 20937/21197 20936/21196 20912/21171 +f 20922/21182 20948/21209 20937/21197 +f 20938/21198 20923/21183 20949/21210 +f 20924/21184 20950/21211 20923/21183 +f 20925/21185 20939/21199 20951/21212 +f 20940/21200 20939/21199 20903/21161 +f 20936/21196 20952/21213 20926/21186 +f 20953/21214 20940/21200 20926/21186 +f 20927/21187 20925/21185 20951/21212 +f 20918/21177 20941/21201 20942/21202 +f 20951/21212 20941/21201 20927/21187 +f 20928/21188 20942/21202 20954/21215 +f 20932/21192 20931/21191 20929/21189 +f 20929/21189 20930/21190 2076/21216 +f 20920/21179 20943/21203 20944/21204 +f 20928/21188 20954/21215 20943/21203 +f 20930/21190 20944/21204 2076/21216 +f 1769/21205 20932/21192 2165/21217 +f 20935/21195 20933/21193 20946/21207 +f 20933/21193 20938/21198 20946/21207 +f 20921/21181 20955/21218 20945/21206 +f 20934/21194 20945/21206 20947/21208 +f 20955/21218 20921/21181 20946/21207 +f 20922/21182 20947/21208 20948/21209 +f 20936/21196 20937/21197 20952/21213 +f 20948/21209 20956/21219 20937/21197 +f 20949/21210 20923/21183 20950/21211 +f 20957/21220 20938/21198 20949/21210 +f 20939/21199 20958/21221 20951/21212 +f 20959/21222 20939/21199 20940/21200 +f 20952/21213 20953/21214 20926/21186 +f 20940/21200 20953/21214 20960/21223 +f 20942/21202 20941/21201 20961/21224 +f 20951/21212 20962/21225 20941/21201 +f 20963/21226 20954/21215 20942/21202 +f 20932/21192 20929/21189 2165/21217 +f 2076/21216 2165/21217 20929/21189 +f 20944/21204 20943/21203 20964/21227 +f 20965/21228 20943/21203 20954/21215 +f 1872/21229 2076/21216 20944/21204 +f 20938/21198 20957/21220 20946/21207 +f 20955/21218 20966/21230 20945/21206 +f 20967/21231 20947/21208 20945/21206 +f 20957/21220 20955/21218 20946/21207 +f 20948/21209 20947/21208 20967/21231 +f 20952/21213 20937/21197 20968/21232 +f 20956/21219 20948/21209 20969/21233 +f 20937/21197 20956/21219 20970/21234 +f 20949/21210 20950/21211 20971/21235 +f 20957/21220 20949/21210 20971/21235 +f 20958/21221 20962/21225 20951/21212 +f 20958/21221 20939/21199 20972/21236 +f 20972/21236 20939/21199 20959/21222 +f 20959/21222 20940/21200 20960/21223 +f 20952/21213 20968/21232 20953/21214 +f 20953/21214 20968/21232 20960/21223 +f 20963/21226 20942/21202 20961/21224 +f 20941/21201 20962/21225 20961/21224 +f 20954/21215 20963/21226 20973/21237 +f 20965/21228 20964/21227 20943/21203 +f 20944/21204 20964/21227 2075/21238 +f 20954/21215 20974/21239 20965/21228 +f 1872/21229 20944/21204 2075/21238 +f 20975/21240 20966/21230 20955/21218 +f 20966/21230 20976/21241 20945/21206 +f 20967/21231 20945/21206 20976/21241 +f 20955/21218 20957/21220 20977/21242 +f 20967/21231 20978/21243 20948/21209 +f 20970/21234 20968/21232 20937/21197 +f 20979/21244 20969/21233 20948/21209 +f 20969/21233 20980/21245 20956/21219 +f 20970/21234 20956/21219 20980/21245 +f 20957/21220 20971/21235 20981/21246 +f 20982/21247 20962/21225 20958/21221 +f 20983/21248 20958/21221 20972/21236 +f 20959/21222 20984/21249 20972/21236 +f 20960/21223 20985/21250 20959/21222 +f 20968/21232 20986/21251 20960/21223 +f 20963/21226 20961/21224 20987/21252 +f 20962/21225 20982/21247 20961/21224 +f 20973/21237 20963/21226 20987/21252 +f 20973/21237 20974/21239 20954/21215 +f 20964/21227 20965/21228 20988/21253 +f 2075/21238 20964/21227 20988/21253 +f 20974/21239 20988/21253 20965/21228 +f 20955/21218 20977/21242 20975/21240 +f 20966/21230 20975/21240 20989/21254 +f 20989/21254 20976/21241 20966/21230 +f 20976/21241 20990/21255 20967/21231 +f 20981/21246 20977/21242 20957/21220 +f 20948/21209 20978/21243 20979/21244 +f 20991/21256 20978/21243 20967/21231 +f 20970/21234 20986/21251 20968/21232 +f 20979/21244 20992/21257 20969/21233 +f 20969/21233 20992/21257 20980/21245 +f 20970/21234 20980/21245 20986/21251 +f 20993/21258 20982/21247 20958/21221 +f 20958/21221 20983/21248 20993/21258 +f 20983/21248 20972/21236 20994/21259 +f 20984/21249 20959/21222 20985/21250 +f 20995/21260 20972/21236 20984/21249 +f 20986/21251 20985/21250 20960/21223 +f 20987/21252 20961/21224 20982/21247 +f 20996/21261 20973/21237 20987/21252 +f 20973/21237 20997/21262 20974/21239 +f 2263/21263 2075/21238 20988/21253 +f 20988/21253 20974/21239 20998/21264 +f 20999/21265 20975/21240 20977/21242 +f 20989/21254 21000/21266 20976/21241 +f 21000/21266 20990/21255 20976/21241 +f 20967/21231 20990/21255 20991/21256 +f 20999/21265 20977/21242 20981/21246 +f 21001/21267 20979/21244 20978/21243 +f 20978/21243 20991/21256 21002/21268 +f 21003/21269 20992/21257 20979/21244 +f 20980/21245 20992/21257 21004/21270 +f 20986/21251 20980/21245 20985/21250 +f 20982/21247 20993/21258 21005/21271 +f 20983/21248 21006/21272 20993/21258 +f 21007/21273 20994/21259 20972/21236 +f 20983/21248 20994/21259 21006/21272 +f 21008/21274 20984/21249 20985/21250 +f 20995/21260 21007/21273 20972/21236 +f 20984/21249 21009/21275 20995/21260 +f 20982/21247 20996/21261 20987/21252 +f 20997/21262 20973/21237 20996/21261 +f 20974/21239 20997/21262 21010/21276 +f 20988/21253 21011/21277 2263/21263 +f 20998/21264 20974/21239 21010/21276 +f 20998/21264 21011/21277 20988/21253 +f 20975/21240 20999/21265 21012/21278 +f 21000/21266 21013/21279 20990/21255 +f 20990/21255 21013/21279 20991/21256 +f 20981/21246 21012/21278 20999/21265 +f 21001/21267 21014/21280 20979/21244 +f 21015/21281 21001/21267 20978/21243 +f 21002/21268 21015/21281 20978/21243 +f 21002/21268 20991/21256 21016/21282 +f 21014/21280 21003/21269 20979/21244 +f 20992/21257 21003/21269 21017/21283 +f 20980/21245 21004/21270 20985/21250 +f 20992/21257 21017/21283 21004/21270 +f 21005/21271 20993/21258 21006/21272 +f 20982/21247 21005/21271 20996/21261 +f 20994/21259 21007/21273 21018/21284 +f 21019/21285 21006/21272 20994/21259 +f 20984/21249 21008/21274 21009/21275 +f 21008/21274 20985/21250 21020/21286 +f 21021/21287 21007/21273 20995/21260 +f 21009/21275 21021/21287 20995/21260 +f 20996/21261 21005/21271 20997/21262 +f 21022/21288 21010/21276 20997/21262 +f 21011/21277 2349/21289 2263/21263 +f 20998/21264 21010/21276 21023/21290 +f 20998/21264 21023/21290 21011/21277 +f 21024/21291 21013/21279 21000/21266 +f 20991/21256 21013/21279 21016/21282 +f 21001/21267 21025/21292 21014/21280 +f 21001/21267 21015/21281 21026/21293 +f 21002/21268 21016/21282 21015/21281 +f 21027/21294 21003/21269 21014/21280 +f 21017/21283 21003/21269 21028/21295 +f 21020/21286 20985/21250 21004/21270 +f 21004/21270 21017/21283 21020/21286 +f 21029/21296 21005/21271 21006/21272 +f 21007/21273 21030/21297 21018/21284 +f 21019/21285 20994/21259 21018/21284 +f 21029/21296 21006/21272 21019/21285 +f 21008/21274 21031/21298 21009/21275 +f 21020/21286 21031/21298 21008/21274 +f 21021/21287 21032/21299 21007/21273 +f 21009/21275 21033/21300 21021/21287 +f 21005/21271 21029/21296 20997/21262 +f 21034/21301 21010/21276 21022/21288 +f 20997/21262 21029/21296 21022/21288 +f 2349/21289 21011/21277 2445/21302 +f 21010/21276 21035/21303 21023/21290 +f 2445/21302 21011/21277 21023/21290 +f 21024/21291 21016/21282 21013/21279 +f 21001/21267 21026/21293 21025/21292 +f 21014/21280 21025/21292 21036/21304 +f 21026/21293 21015/21281 21037/21305 +f 21016/21282 21038/21306 21015/21281 +f 21003/21269 21027/21294 21028/21295 +f 21014/21280 21036/21304 21027/21294 +f 21039/21307 21017/21283 21028/21295 +f 21039/21307 21020/21286 21017/21283 +f 21022/21288 21018/21284 21030/21297 +f 21040/21308 21030/21297 21007/21273 +f 21029/21296 21019/21285 21018/21284 +f 21031/21298 21033/21300 21009/21275 +f 21039/21307 21031/21298 21020/21286 +f 21041/21309 21032/21299 21021/21287 +f 21007/21273 21032/21299 21040/21308 +f 21033/21300 21041/21309 21021/21287 +f 21035/21303 21010/21276 21034/21301 +f 21022/21288 21042/21310 21034/21301 +f 21029/21296 21018/21284 21022/21288 +f 21035/21303 2377/21311 21023/21290 +f 21023/21290 2377/21311 2445/21302 +f 21043/21312 21016/21282 21024/21291 +f 21044/21313 21025/21292 21026/21293 +f 21036/21304 21025/21292 21045/21314 +f 21038/21306 21037/21305 21015/21281 +f 21046/21315 21026/21293 21037/21305 +f 21038/21306 21016/21282 21043/21312 +f 21047/21316 21028/21295 21027/21294 +f 21036/21304 21047/21316 21027/21294 +f 21028/21295 21048/21317 21039/21307 +f 21049/21318 21022/21288 21030/21297 +f 21050/21319 21030/21297 21040/21308 +f 21051/21320 21033/21300 21031/21298 +f 21031/21298 21039/21307 21051/21320 +f 21041/21309 21052/21321 21032/21299 +f 21053/21322 21040/21308 21032/21299 +f 21041/21309 21033/21300 21051/21320 +f 21035/21303 21034/21301 21054/21323 +f 21034/21301 21042/21310 21055/21324 +f 21042/21310 21022/21288 21056/21325 +f 2195/21326 2377/21311 21035/21303 +f 21057/21327 21043/21312 21024/21291 +f 21026/21293 21046/21315 21044/21313 +f 21044/21313 21045/21314 21025/21292 +f 21036/21304 21045/21314 21058/21328 +f 21043/21312 21037/21305 21038/21306 +f 21037/21305 21043/21312 21046/21315 +f 21028/21295 21047/21316 21048/21317 +f 21036/21304 21059/21329 21047/21316 +f 21039/21307 21048/21317 21051/21320 +f 21056/21325 21022/21288 21049/21318 +f 21050/21319 21049/21318 21030/21297 +f 21050/21319 21040/21308 21053/21322 +f 21060/21330 21052/21321 21041/21309 +f 21053/21322 21032/21299 21052/21321 +f 21041/21309 21051/21320 21060/21330 +f 21055/21324 21054/21323 21034/21301 +f 21054/21323 2195/21326 21035/21303 +f 21055/21324 21042/21310 21061/21331 +f 21062/21332 21042/21310 21056/21325 +f 21057/21327 21046/21315 21043/21312 +f 21046/21315 21063/21333 21044/21313 +f 21064/21334 21045/21314 21044/21313 +f 21059/21329 21036/21304 21058/21328 +f 21058/21328 21045/21314 21064/21334 +f 21047/21316 21060/21330 21048/21317 +f 21052/21321 21047/21316 21059/21329 +f 21051/21320 21048/21317 21060/21330 +f 21065/21335 21056/21325 21049/21318 +f 21066/21336 21049/21318 21050/21319 +f 21050/21319 21053/21322 21067/21337 +f 21060/21330 21047/21316 21052/21321 +f 21052/21321 21059/21329 21053/21322 +f 21055/21324 21068/21338 21054/21323 +f 21054/21323 21069/21339 2195/21326 +f 21061/21331 21042/21310 21070/21340 +f 21055/21324 21061/21331 21068/21338 +f 21062/21332 21070/21340 21042/21310 +f 21056/21325 21071/21341 21062/21332 +f 21072/21342 21046/21315 21057/21327 +f 21073/21343 21063/21333 21046/21315 +f 21044/21313 21063/21333 21064/21334 +f 21074/21344 21059/21329 21058/21328 +f 21058/21328 21064/21334 21075/21345 +f 21049/21318 21076/21346 21065/21335 +f 21065/21335 21077/21347 21056/21325 +f 21049/21318 21066/21336 21076/21346 +f 21066/21336 21050/21319 21074/21344 +f 21067/21337 21053/21322 21074/21344 +f 21074/21344 21050/21319 21067/21337 +f 21074/21344 21053/21322 21059/21329 +f 21054/21323 21068/21338 21078/21348 +f 21069/21339 2002/21349 2195/21326 +f 21069/21339 21054/21323 21078/21348 +f 21070/21340 2378/21350 21061/21331 +f 21061/21331 2287/21351 21068/21338 +f 21079/21352 21070/21340 21062/21332 +f 21071/21341 21079/21352 21062/21332 +f 21077/21347 21071/21341 21056/21325 +f 21046/21315 21072/21342 21073/21343 +f 21072/21342 21057/21327 21080/21353 +f 21073/21343 21081/21354 21063/21333 +f 21081/21354 21064/21334 21063/21333 +f 21074/21344 21058/21328 21075/21345 +f 21064/21334 21082/21355 21075/21345 +f 21065/21335 21076/21346 21083/21356 +f 21077/21347 21065/21335 21084/21357 +f 21085/21358 21076/21346 21066/21336 +f 21066/21336 21074/21344 21086/21359 +f 21078/21348 21068/21338 21087/21360 +f 2002/21349 21069/21339 21087/21360 +f 21087/21360 21069/21339 21078/21348 +f 2378/21350 21070/21340 21088/21361 +f 21061/21331 2378/21350 2287/21351 +f 21087/21360 21068/21338 2287/21351 +f 21070/21340 21079/21352 21089/21362 +f 21071/21341 21077/21347 21079/21352 +f 21072/21342 21090/21363 21073/21343 +f 21080/21353 21057/21327 21091/21364 +f 21080/21353 21090/21363 21072/21342 +f 21081/21354 21073/21343 21092/21365 +f 21081/21354 21082/21355 21064/21334 +f 21075/21345 21086/21359 21074/21344 +f 21082/21355 21093/21366 21075/21345 +f 21094/21367 21083/21356 21076/21346 +f 21083/21356 21084/21357 21065/21335 +f 21095/21368 21077/21347 21084/21357 +f 21096/21369 21085/21358 21066/21336 +f 21076/21346 21085/21358 21097/21370 +f 21086/21359 21096/21369 21066/21336 +f 2002/21349 21087/21360 21098/21371 +f 2378/21350 21088/21361 21099/21372 +f 21070/21340 21089/21362 21088/21361 +f 2287/21351 21098/21371 21087/21360 +f 21079/21352 21095/21368 21089/21362 +f 21095/21368 21079/21352 21077/21347 +f 21091/21364 21100/21373 21080/21353 +f 21091/21364 21057/21327 21101/21374 +f 21080/21353 21100/21373 21090/21363 +f 21092/21365 21073/21343 21102/21375 +f 21081/21354 21092/21365 21082/21355 +f 21075/21345 21103/21376 21086/21359 +f 21093/21366 21103/21376 21075/21345 +f 21082/21355 21104/21377 21093/21366 +f 21094/21367 21076/21346 21097/21370 +f 21083/21356 21094/21367 21105/21378 +f 21083/21356 21106/21379 21084/21357 +f 21095/21368 21084/21357 21107/21380 +f 21096/21369 21108/21381 21085/21358 +f 21097/21370 21085/21358 21109/21382 +f 21103/21376 21096/21369 21086/21359 +f 1902/21383 2002/21349 21098/21371 +f 21110/21384 21099/21372 21088/21361 +f 21099/21372 21111/21385 2378/21350 +f 21089/21362 21112/21386 21088/21361 +f 2287/21351 2196/21387 21098/21371 +f 21095/21368 21112/21386 21089/21362 +f 21100/21373 21091/21364 21113/21388 +f 21091/21364 21101/21374 21114/21389 +f 21102/21375 21115/21390 21092/21365 +f 21082/21355 21092/21365 21116/21391 +f 21117/21392 21103/21376 21093/21366 +f 21082/21355 21116/21391 21104/21377 +f 21093/21366 21104/21377 21118/21393 +f 21105/21378 21094/21367 21097/21370 +f 21106/21379 21083/21356 21105/21378 +f 21119/21394 21084/21357 21106/21379 +f 21084/21357 21119/21394 21107/21380 +f 21095/21368 21107/21380 21112/21386 +f 21096/21369 21120/21395 21108/21381 +f 21109/21382 21085/21358 21108/21381 +f 21109/21382 21121/21396 21097/21370 +f 21103/21376 21120/21395 21096/21369 +f 1902/21383 21098/21371 2196/21387 +f 21111/21385 21099/21372 21110/21384 +f 21110/21384 21088/21361 21122/21397 +f 2378/21350 21111/21385 2106/21398 +f 21112/21386 21123/21399 21088/21361 +f 21124/21400 21113/21388 21091/21364 +f 21125/21401 21100/21373 21113/21388 +f 21114/21389 21124/21400 21091/21364 +f 21115/21390 21116/21391 21092/21365 +f 21120/21395 21103/21376 21117/21392 +f 21126/21402 21117/21392 21093/21366 +f 21127/21403 21104/21377 21116/21391 +f 21104/21377 21128/21404 21118/21393 +f 21093/21366 21118/21393 21126/21402 +f 21097/21370 21129/21405 21105/21378 +f 21129/21405 21106/21379 21105/21378 +f 21129/21405 21119/21394 21106/21379 +f 21119/21394 21130/21406 21107/21380 +f 21130/21406 21112/21386 21107/21380 +f 21120/21395 21131/21407 21108/21381 +f 21132/21408 21109/21382 21108/21381 +f 21097/21370 21121/21396 21129/21405 +f 21133/21409 21121/21396 21109/21382 +f 21111/21385 21110/21384 2379/21410 +f 21122/21397 21088/21361 21123/21399 +f 21122/21397 2379/21410 21110/21384 +f 2106/21398 21111/21385 2379/21410 +f 21134/21411 21123/21399 21112/21386 +f 21124/21400 21125/21401 21113/21388 +f 21124/21400 21114/21389 21135/21412 +f 21115/21390 21136/21413 21116/21391 +f 21120/21395 21117/21392 21137/21414 +f 21117/21392 21126/21402 21138/21415 +f 21127/21403 21128/21404 21104/21377 +f 21136/21413 21127/21403 21116/21391 +f 21128/21404 21139/21416 21118/21393 +f 21126/21402 21118/21393 21140/21417 +f 21130/21406 21119/21394 21129/21405 +f 21130/21406 21134/21411 21112/21386 +f 21131/21407 21120/21395 21141/21418 +f 21108/21381 21131/21407 21132/21408 +f 21142/21419 21109/21382 21132/21408 +f 21129/21405 21121/21396 21143/21420 +f 21142/21419 21133/21409 21109/21382 +f 21143/21420 21121/21396 21133/21409 +f 21144/21421 21122/21397 21123/21399 +f 2379/21410 21122/21397 21145/21422 +f 21134/21411 21144/21421 21123/21399 +f 21135/21412 21125/21401 21124/21400 +f 21137/21414 21117/21392 21138/21415 +f 21141/21418 21120/21395 21137/21414 +f 21126/21402 21146/21423 21138/21415 +f 21139/21416 21128/21404 21127/21403 +f 21118/21393 21139/21416 21147/21424 +f 21146/21423 21126/21402 21140/21417 +f 21118/21393 21147/21424 21140/21417 +f 21129/21405 21148/21425 21130/21406 +f 21148/21425 21134/21411 21130/21406 +f 21131/21407 21141/21418 21149/21426 +f 21132/21408 21131/21407 21149/21426 +f 21150/21427 21142/21419 21132/21408 +f 21129/21405 21143/21420 21151/21428 +f 21152/21429 21133/21409 21142/21419 +f 21151/21428 21143/21420 21133/21409 +f 21122/21397 21144/21421 21145/21422 +f 2380/21430 2379/21410 21145/21422 +f 21134/21411 21153/21431 21144/21421 +f 21146/21423 21137/21414 21138/21415 +f 21141/21418 21137/21414 21154/21432 +f 21127/21403 21155/21433 21139/21416 +f 21139/21416 21156/21434 21147/21424 +f 21146/21423 21140/21417 21157/21435 +f 21147/21424 21158/21436 21140/21417 +f 21159/21437 21148/21425 21129/21405 +f 21148/21425 21160/21438 21134/21411 +f 21149/21426 21141/21418 21154/21432 +f 21149/21426 21161/21439 21132/21408 +f 21150/21427 21132/21408 21161/21439 +f 21142/21419 21150/21427 21162/21440 +f 21151/21428 21159/21437 21129/21405 +f 21133/21409 21152/21429 21163/21441 +f 21152/21429 21142/21419 21164/21442 +f 21165/21443 21151/21428 21133/21409 +f 21144/21421 21166/21444 21145/21422 +f 2380/21430 21145/21422 21167/21445 +f 21153/21431 21134/21411 21160/21438 +f 21166/21444 21144/21421 21153/21431 +f 21146/21423 21154/21432 21137/21414 +f 21168/21446 21139/21416 21155/21433 +f 21156/21434 21158/21436 21147/21424 +f 21156/21434 21139/21416 21168/21446 +f 21157/21435 21140/21417 21158/21436 +f 21154/21432 21146/21423 21157/21435 +f 21148/21425 21159/21437 21169/21447 +f 21160/21438 21148/21425 21170/21448 +f 21154/21432 21157/21435 21149/21426 +f 21150/21427 21161/21439 21171/21449 +f 21162/21440 21164/21442 21142/21419 +f 21171/21449 21162/21440 21150/21427 +f 21165/21443 21159/21437 21151/21428 +f 21163/21441 21152/21429 21172/21450 +f 21163/21441 21165/21443 21133/21409 +f 21152/21429 21164/21442 21172/21450 +f 21167/21445 21145/21422 21166/21444 +f 21167/21445 21173/21451 2380/21430 +f 21153/21431 21160/21438 21174/21452 +f 21153/21431 21175/21453 21166/21444 +f 21168/21446 21158/21436 21156/21434 +f 21158/21436 21176/21454 21157/21435 +f 21159/21437 21165/21443 21169/21447 +f 21148/21425 21169/21447 21177/21455 +f 21170/21448 21174/21452 21160/21438 +f 21170/21448 21148/21425 21177/21455 +f 21149/21426 21157/21435 21176/21454 +f 21162/21440 21178/21456 21164/21442 +f 21171/21449 21179/21457 21162/21440 +f 21163/21441 21172/21450 21180/21458 +f 21165/21443 21163/21441 21169/21447 +f 21164/21442 21181/21459 21172/21450 +f 21166/21444 21173/21451 21167/21445 +f 2109/21460 2380/21430 21173/21451 +f 21153/21431 21174/21452 21182/21461 +f 21175/21453 21183/21462 21166/21444 +f 21175/21453 21153/21431 21182/21461 +f 21176/21454 21158/21436 21168/21446 +f 21177/21455 21169/21447 21184/21463 +f 21170/21448 21182/21461 21174/21452 +f 21170/21448 21177/21455 21184/21463 +f 21185/21464 21164/21442 21178/21456 +f 21179/21457 21178/21456 21162/21440 +f 21172/21450 21186/21465 21180/21458 +f 21180/21458 21187/21466 21163/21441 +f 21163/21441 21187/21466 21169/21447 +f 21172/21450 21181/21459 21186/21465 +f 21164/21442 21188/21467 21181/21459 +f 21183/21462 21173/21451 21166/21444 +f 2109/21460 21173/21451 2199/21468 +f 21175/21453 21189/21469 21183/21462 +f 21182/21461 21190/21470 21175/21453 +f 21184/21463 21169/21447 21187/21466 +f 21182/21461 21170/21448 21191/21471 +f 21191/21471 21170/21448 21184/21463 +f 21185/21464 21188/21467 21164/21442 +f 21192/21472 21185/21464 21178/21456 +f 21193/21473 21178/21456 21179/21457 +f 21186/21465 21194/21474 21180/21458 +f 21194/21474 21187/21466 21180/21458 +f 21186/21465 21181/21459 21195/21475 +f 21181/21459 21188/21467 21196/21476 +f 21173/21451 21183/21462 2199/21468 +f 21175/21453 21197/21477 21189/21469 +f 21189/21469 2199/21468 21183/21462 +f 21197/21477 21175/21453 21190/21470 +f 21198/21478 21190/21470 21182/21461 +f 21199/21479 21184/21463 21187/21466 +f 21182/21461 21191/21471 21200/21480 +f 21191/21471 21184/21463 21201/21481 +f 21188/21467 21185/21464 21192/21472 +f 21192/21472 21178/21456 21202/21482 +f 21178/21456 21193/21473 21202/21482 +f 21203/21483 21194/21474 21186/21465 +f 21199/21479 21187/21466 21194/21474 +f 21196/21476 21195/21475 21181/21459 +f 21186/21465 21195/21475 21203/21483 +f 21188/21467 21192/21472 21196/21476 +f 2466/21484 21189/21469 21197/21477 +f 21189/21469 2381/21485 2199/21468 +f 21204/21486 21197/21477 21190/21470 +f 21198/21478 21205/21487 21190/21470 +f 21200/21480 21198/21478 21182/21461 +f 21184/21463 21199/21479 21201/21481 +f 21200/21480 21191/21471 21201/21481 +f 21206/21488 21192/21472 21202/21482 +f 21207/21489 21194/21474 21203/21483 +f 21201/21481 21199/21479 21194/21474 +f 21196/21476 21208/21490 21195/21475 +f 21195/21475 21209/21491 21203/21483 +f 21192/21472 21208/21490 21196/21476 +f 21197/21477 21210/21492 2466/21484 +f 2466/21484 2381/21485 21189/21469 +f 21197/21477 21204/21486 21211/21493 +f 21190/21470 21212/21494 21204/21486 +f 21198/21478 21213/21495 21205/21487 +f 21205/21487 21214/21496 21190/21470 +f 21200/21480 21215/21497 21198/21478 +f 21201/21481 21207/21489 21200/21480 +f 21208/21490 21192/21472 21206/21488 +f 21201/21481 21194/21474 21207/21489 +f 21203/21483 21216/21498 21207/21489 +f 21217/21499 21195/21475 21208/21490 +f 21217/21499 21209/21491 21195/21475 +f 21203/21483 21209/21491 21216/21498 +f 2466/21484 21210/21492 2382/21500 +f 21211/21493 21210/21492 21197/21477 +f 21211/21493 21204/21486 21218/21501 +f 21212/21494 21218/21501 21204/21486 +f 21212/21494 21190/21470 21214/21496 +f 21219/21502 21213/21495 21198/21478 +f 21214/21496 21205/21487 21213/21495 +f 21215/21497 21200/21480 21216/21498 +f 21215/21497 21219/21502 21198/21478 +f 21216/21498 21200/21480 21207/21489 +f 21208/21490 21206/21488 21220/21503 +f 21217/21499 21208/21490 21220/21503 +f 21221/21504 21209/21491 21217/21499 +f 21209/21491 21221/21504 21216/21498 +f 21222/21505 2382/21500 21210/21492 +f 21211/21493 21223/21506 21210/21492 +f 21218/21501 21224/21507 21211/21493 +f 21218/21501 21212/21494 21224/21507 +f 21225/21508 21212/21494 21214/21496 +f 21219/21502 21225/21508 21213/21495 +f 21213/21495 21225/21508 21214/21496 +f 21216/21498 21221/21504 21215/21497 +f 21215/21497 21221/21504 21219/21502 +f 21217/21499 21220/21503 21226/21509 +f 21226/21509 21221/21504 21217/21499 +f 2382/21500 21222/21505 21227/21510 +f 21222/21505 21210/21492 21223/21506 +f 21223/21506 21211/21493 21228/21511 +f 21228/21511 21211/21493 21224/21507 +f 21219/21502 21221/21504 21226/21509 +f 2465/21512 2382/21500 21227/21510 +f 21222/21505 21229/21513 21227/21510 +f 21222/21505 21223/21506 21229/21513 +f 21229/21513 21223/21506 21228/21511 +f 2461/21514 2465/21512 21227/21510 +f 21229/21513 2461/21514 21227/21510 +f 21230/21515 21231/21516 21232/21517 +f 21230/21515 21233/21518 21231/21516 +f 21234/21519 21232/21517 21231/21516 +f 21230/21515 21232/21517 21235/21520 +f 21233/21518 21230/21515 21236/21521 +f 21233/21518 21236/21521 21231/21516 +f 21232/21517 21234/21519 21235/21520 +f 21231/21516 21237/21522 21234/21519 +f 21238/21523 21230/21515 21235/21520 +f 21236/21521 21230/21515 21239/21524 +f 21236/21521 21240/21525 21231/21516 +f 21241/21526 21235/21520 21234/21519 +f 21231/21516 21242/21527 21237/21522 +f 21237/21522 21243/21528 21234/21519 +f 21230/21515 21238/21523 21239/21524 +f 21238/21523 21235/21520 21241/21526 +f 21240/21525 21236/21521 21239/21524 +f 21231/21516 21240/21525 21244/21529 +f 21234/21519 21245/21530 21241/21526 +f 21246/21531 21242/21527 21231/21516 +f 21247/21532 21237/21522 21242/21527 +f 21234/21519 21243/21528 21248/21533 +f 21237/21522 21249/21534 21243/21528 +f 21239/21524 21238/21523 21250/21535 +f 21251/21536 21238/21523 21241/21526 +f 21239/21524 21252/21537 21240/21525 +f 21246/21531 21231/21516 21244/21529 +f 21240/21525 21253/21538 21244/21529 +f 21245/21530 21234/21519 21248/21533 +f 21241/21526 21245/21530 21251/21536 +f 21242/21527 21246/21531 21254/21539 +f 21237/21522 21247/21532 21255/21540 +f 21247/21532 21242/21527 21256/21541 +f 21243/21528 21257/21542 21248/21533 +f 21258/21543 21243/21528 21249/21534 +f 21237/21522 21259/21544 21249/21534 +f 21251/21536 21250/21535 21238/21523 +f 21253/21538 21240/21525 21252/21537 +f 21244/21529 21254/21539 21246/21531 +f 21253/21538 21260/21545 21244/21529 +f 21261/21546 21245/21530 21248/21533 +f 21262/21547 21251/21536 21245/21530 +f 21254/21539 21263/21548 21242/21527 +f 21255/21540 21247/21532 21264/21549 +f 21237/21522 21255/21540 21259/21544 +f 21242/21527 21265/21550 21256/21541 +f 21266/21551 21247/21532 21256/21541 +f 21243/21528 21267/21552 21257/21542 +f 21257/21542 21268/21553 21248/21533 +f 21267/21552 21243/21528 21258/21543 +f 21258/21543 21249/21534 21269/21554 +f 21269/21554 21249/21534 21259/21544 +f 21250/21535 21251/21536 21270/21555 +f 21271/21556 21253/21538 21252/21537 +f 21260/21545 21254/21539 21244/21529 +f 21253/21538 21271/21556 21260/21545 +f 21272/21557 21261/21546 21248/21533 +f 21245/21530 21261/21546 21273/21558 +f 21270/21555 21251/21536 21262/21547 +f 21262/21547 21245/21530 21273/21558 +f 21271/21556 21263/21548 21254/21539 +f 21263/21548 21274/21559 21242/21527 +f 21275/21560 21255/21540 21264/21549 +f 21247/21532 21276/21561 21264/21549 +f 21255/21540 21275/21560 21259/21544 +f 21265/21550 21242/21527 21274/21559 +f 21265/21550 21277/21562 21256/21541 +f 21266/21551 21276/21561 21247/21532 +f 21256/21541 21278/21563 21266/21551 +f 21267/21552 21279/21564 21257/21542 +f 21257/21542 21280/21565 21268/21553 +f 21281/21566 21248/21533 21268/21553 +f 21258/21543 21279/21564 21267/21552 +f 21258/21543 21269/21554 21282/21567 +f 21269/21554 21259/21544 21275/21560 +f 21252/21537 21283/21568 21271/21556 +f 21254/21539 21260/21545 21271/21556 +f 21284/21569 21261/21546 21272/21557 +f 21272/21557 21248/21533 21281/21566 +f 21284/21569 21273/21558 21261/21546 +f 21285/21570 21270/21555 21262/21547 +f 21273/21558 21284/21569 21262/21547 +f 21263/21548 21271/21556 21283/21568 +f 21263/21548 21286/21571 21274/21559 +f 21275/21560 21264/21549 21287/21572 +f 21287/21572 21264/21549 21276/21561 +f 21274/21559 21288/21573 21265/21550 +f 21277/21562 21265/21550 21288/21573 +f 21256/21541 21277/21562 21289/21574 +f 21266/21551 21290/21575 21276/21561 +f 21266/21551 21278/21563 21291/21576 +f 21292/21577 21278/21563 21256/21541 +f 21280/21565 21257/21542 21279/21564 +f 21268/21553 21280/21565 21293/21578 +f 21294/21579 21281/21566 21268/21553 +f 21279/21564 21258/21543 21282/21567 +f 21282/21567 21269/21554 21275/21560 +f 21284/21569 21272/21557 21262/21547 +f 21272/21557 21281/21566 21294/21579 +f 21270/21555 21285/21570 21295/21580 +f 21295/21580 21285/21570 21262/21547 +f 21286/21571 21263/21548 21283/21568 +f 21274/21559 21286/21571 21288/21573 +f 21275/21560 21287/21572 21296/21581 +f 21276/21561 21297/21582 21287/21572 +f 21277/21562 21288/21573 21298/21583 +f 21289/21574 21292/21577 21256/21541 +f 21299/21584 21289/21574 21277/21562 +f 21290/21575 21300/21585 21276/21561 +f 21291/21576 21290/21575 21266/21551 +f 21278/21563 21292/21577 21291/21576 +f 21279/21564 21293/21578 21280/21565 +f 21268/21553 21293/21578 21294/21579 +f 21301/21586 21279/21564 21282/21567 +f 21302/21587 21282/21567 21275/21560 +f 21272/21557 21295/21580 21262/21547 +f 21272/21557 21294/21579 21303/21588 +f 21270/21555 21295/21580 21304/21589 +f 21287/21572 21297/21582 21296/21581 +f 21275/21560 21296/21581 21302/21587 +f 21276/21561 21300/21585 21297/21582 +f 21298/21583 21299/21584 21277/21562 +f 21292/21577 21289/21574 21305/21590 +f 21306/21591 21289/21574 21299/21584 +f 21290/21575 21307/21592 21300/21585 +f 21291/21576 21308/21593 21290/21575 +f 21291/21576 21292/21577 21309/21594 +f 21310/21595 21293/21578 21279/21564 +f 21293/21578 21310/21595 21294/21579 +f 21279/21564 21301/21586 21310/21595 +f 21311/21596 21301/21586 21282/21567 +f 21312/21597 21282/21567 21302/21587 +f 21295/21580 21272/21557 21303/21588 +f 21303/21588 21294/21579 21310/21595 +f 21295/21580 21313/21598 21304/21589 +f 21304/21589 21313/21598 21270/21555 +f 21296/21581 21297/21582 21314/21599 +f 21296/21581 21315/21600 21302/21587 +f 21300/21585 21314/21599 21297/21582 +f 21298/21583 21316/21601 21299/21584 +f 21305/21590 21289/21574 21317/21602 +f 21309/21594 21292/21577 21305/21590 +f 21289/21574 21306/21591 21317/21602 +f 21318/21603 21306/21591 21299/21584 +f 21307/21592 21314/21599 21300/21585 +f 21307/21592 21290/21575 21308/21593 +f 21309/21594 21308/21593 21291/21576 +f 21301/21586 21319/21604 21310/21595 +f 21312/21597 21311/21596 21282/21567 +f 21311/21596 21320/21605 21301/21586 +f 21302/21587 21321/21606 21312/21597 +f 21322/21607 21295/21580 21303/21588 +f 21310/21595 21323/21608 21303/21588 +f 21314/21599 21324/21609 21296/21581 +f 21315/21600 21296/21581 21324/21609 +f 21302/21587 21315/21600 21321/21606 +f 21316/21601 21298/21583 21325/21610 +f 21318/21603 21299/21584 21316/21601 +f 21317/21602 21326/21611 21305/21590 +f 21327/21612 21309/21594 21305/21590 +f 21317/21602 21306/21591 21318/21603 +f 21328/21613 21314/21599 21307/21592 +f 21329/21614 21307/21592 21308/21593 +f 21308/21593 21309/21594 21329/21614 +f 21310/21595 21319/21604 21323/21608 +f 21319/21604 21301/21586 21320/21605 +f 21330/21615 21311/21596 21312/21597 +f 21320/21605 21311/21596 21331/21616 +f 21332/21617 21312/21597 21321/21606 +f 21333/21618 21322/21607 21303/21588 +f 21323/21608 21333/21618 21303/21588 +f 21314/21599 21334/21619 21324/21609 +f 21335/21620 21316/21601 21325/21610 +f 21316/21601 21336/21621 21318/21603 +f 21326/21611 21317/21602 21318/21603 +f 21305/21590 21326/21611 21337/21622 +f 21327/21612 21338/21623 21309/21594 +f 21327/21612 21305/21590 21337/21622 +f 21329/21614 21328/21613 21307/21592 +f 21314/21599 21328/21613 21334/21619 +f 21309/21594 21338/21623 21329/21614 +f 21339/21624 21323/21608 21319/21604 +f 21320/21605 21339/21624 21319/21604 +f 21330/21615 21331/21616 21311/21596 +f 21332/21617 21330/21615 21312/21597 +f 21320/21605 21331/21616 21339/21624 +f 21321/21606 21340/21625 21332/21617 +f 21322/21607 21333/21618 21341/21626 +f 21323/21608 21341/21626 21333/21618 +f 21324/21609 21334/21619 21342/21627 +f 21343/21628 21316/21601 21335/21620 +f 21325/21610 21344/21629 21335/21620 +f 21336/21621 21326/21611 21318/21603 +f 21316/21601 21345/21630 21336/21621 +f 21337/21622 21326/21611 21346/21631 +f 21327/21612 21347/21632 21338/21623 +f 21347/21632 21327/21612 21337/21622 +f 21328/21613 21329/21614 21338/21623 +f 21334/21619 21328/21613 21348/21633 +f 21323/21608 21339/21624 21340/21625 +f 21332/21617 21331/21616 21330/21615 +f 21331/21616 21332/21617 21339/21624 +f 21339/21624 21332/21617 21340/21625 +f 21322/21607 21341/21626 21349/21634 +f 21323/21608 21350/21635 21341/21626 +f 21348/21633 21342/21627 21334/21619 +f 21351/21636 21343/21628 21335/21620 +f 21316/21601 21343/21628 21345/21630 +f 21344/21629 21351/21636 21335/21620 +f 21336/21621 21346/21631 21326/21611 +f 21336/21621 21345/21630 21352/21637 +f 21346/21631 21347/21632 21337/21622 +f 21347/21632 21353/21638 21338/21623 +f 21338/21623 21354/21639 21328/21613 +f 21342/21627 21348/21633 21328/21613 +f 21340/21625 21350/21635 21323/21608 +f 21349/21634 21341/21626 21350/21635 +f 21343/21628 21351/21636 21355/21640 +f 21343/21628 21355/21640 21345/21630 +f 21344/21629 21356/21641 21351/21636 +f 21336/21621 21357/21642 21346/21631 +f 21352/21637 21345/21630 21358/21643 +f 21352/21637 21357/21642 21336/21621 +f 21347/21632 21346/21631 21357/21642 +f 21347/21632 21359/21644 21353/21638 +f 21353/21638 21354/21639 21338/21623 +f 21328/21613 21354/21639 21342/21627 +f 21360/21645 21355/21640 21351/21636 +f 21345/21630 21355/21640 21361/21646 +f 21351/21636 21356/21641 21360/21645 +f 21358/21643 21362/21647 21352/21637 +f 21345/21630 21361/21646 21358/21643 +f 21352/21637 21363/21648 21357/21642 +f 21347/21632 21357/21642 21364/21649 +f 21359/21644 21347/21632 21365/21650 +f 21366/21651 21353/21638 21359/21644 +f 21342/21627 21354/21639 21353/21638 +f 21360/21645 21367/21652 21355/21640 +f 21361/21646 21355/21640 21367/21652 +f 21362/21647 21358/21643 21368/21653 +f 21369/21654 21352/21637 21362/21647 +f 21361/21646 21370/21655 21358/21643 +f 21363/21648 21352/21637 21369/21654 +f 21371/21656 21357/21642 21363/21648 +f 21372/21657 21347/21632 21364/21649 +f 21371/21656 21364/21649 21357/21642 +f 21347/21632 21372/21657 21365/21650 +f 21359/21644 21365/21650 21373/21658 +f 21359/21644 21374/21659 21366/21651 +f 21375/21660 21353/21638 21366/21651 +f 21353/21638 21376/21661 21342/21627 +f 21377/21662 21367/21652 21360/21645 +f 21367/21652 21378/21663 21361/21646 +f 21379/21664 21362/21647 21368/21653 +f 21368/21653 21358/21643 21380/21665 +f 21362/21647 21379/21664 21369/21654 +f 21361/21646 21381/21666 21370/21655 +f 21358/21643 21370/21655 21382/21667 +f 21369/21654 21383/21668 21363/21648 +f 21371/21656 21363/21648 21384/21669 +f 21364/21649 21365/21650 21372/21657 +f 21373/21658 21364/21649 21371/21656 +f 21373/21658 21365/21650 21364/21649 +f 21374/21659 21359/21644 21373/21658 +f 21374/21659 21385/21670 21366/21651 +f 21376/21661 21353/21638 21375/21660 +f 21375/21660 21366/21651 21386/21671 +f 21342/21627 21376/21661 21387/21672 +f 21367/21652 21377/21662 21378/21663 +f 21378/21663 21381/21666 21361/21646 +f 21388/21673 21379/21664 21368/21653 +f 21380/21665 21388/21673 21368/21653 +f 21382/21667 21380/21665 21358/21643 +f 21379/21664 21383/21668 21369/21654 +f 21389/21674 21370/21655 21381/21666 +f 21370/21655 21390/21675 21382/21667 +f 21363/21648 21383/21668 21384/21669 +f 21384/21669 21373/21658 21371/21656 +f 21373/21658 21384/21669 21374/21659 +f 21374/21659 21391/21676 21385/21670 +f 21386/21671 21366/21651 21385/21670 +f 21375/21660 21387/21672 21376/21661 +f 21386/21671 21387/21672 21375/21660 +f 21387/21672 21392/21677 21342/21627 +f 21378/21663 21377/21662 21381/21666 +f 21393/21678 21379/21664 21388/21673 +f 21380/21665 21394/21679 21388/21673 +f 21395/21680 21380/21665 21382/21667 +f 21379/21664 21396/21681 21383/21668 +f 21390/21675 21370/21655 21389/21674 +f 21382/21667 21390/21675 21397/21682 +f 21384/21669 21383/21668 21391/21676 +f 21384/21669 21391/21676 21374/21659 +f 21385/21670 21391/21676 21398/21683 +f 21385/21670 21399/21684 21386/21671 +f 21386/21671 21392/21677 21387/21672 +f 21396/21681 21379/21664 21393/21678 +f 21388/21673 21400/21685 21393/21678 +f 21388/21673 21394/21679 21400/21685 +f 21394/21679 21380/21665 21395/21680 +f 21382/21667 21401/21686 21395/21680 +f 21391/21676 21383/21668 21396/21681 +f 21390/21675 21389/21674 21397/21682 +f 21397/21682 21401/21686 21382/21667 +f 21398/21683 21399/21684 21385/21670 +f 21396/21681 21398/21683 21391/21676 +f 21386/21671 21399/21684 21402/21687 +f 21403/21688 21392/21677 21386/21671 +f 21393/21678 21404/21689 21396/21681 +f 21393/21678 21400/21685 21404/21689 +f 21400/21685 21394/21679 21405/21690 +f 21395/21680 21406/21691 21394/21679 +f 21401/21686 21406/21691 21395/21680 +f 21399/21684 21398/21683 21407/21692 +f 21404/21689 21398/21683 21396/21681 +f 21402/21687 21399/21684 21408/21693 +f 21403/21688 21386/21671 21402/21687 +f 21392/21677 21403/21688 21409/21694 +f 21410/21695 21404/21689 21400/21685 +f 21411/21696 21405/21690 21394/21679 +f 21405/21690 21412/21697 21400/21685 +f 21411/21696 21394/21679 21406/21691 +f 21401/21686 21413/21698 21406/21691 +f 21404/21689 21407/21692 21398/21683 +f 21407/21692 21408/21693 21399/21684 +f 21402/21687 21408/21693 21414/21699 +f 21402/21687 21409/21694 21403/21688 +f 21409/21694 21415/21700 21392/21677 +f 21416/21701 21410/21695 21400/21685 +f 21404/21689 21410/21695 21407/21692 +f 21411/21696 21417/21702 21405/21690 +f 21400/21685 21412/21697 21416/21701 +f 21405/21690 21417/21702 21412/21697 +f 21406/21691 21413/21698 21411/21696 +f 21407/21692 21418/21703 21408/21693 +f 21415/21700 21414/21699 21408/21693 +f 21402/21687 21414/21699 21409/21694 +f 21414/21699 21415/21700 21409/21694 +f 21416/21701 21419/21704 21410/21695 +f 21407/21692 21410/21695 21419/21704 +f 21412/21697 21420/21705 21416/21701 +f 21417/21702 21421/21706 21412/21697 +f 21407/21692 21422/21707 21418/21703 +f 21418/21703 21423/21708 21408/21693 +f 21408/21693 21423/21708 21415/21700 +f 21419/21704 21416/21701 21420/21705 +f 21422/21707 21407/21692 21419/21704 +f 21421/21706 21420/21705 21412/21697 +f 21418/21703 21422/21707 21424/21709 +f 21418/21703 21424/21709 21423/21708 +f 21419/21704 21420/21705 21425/21710 +f 21419/21704 21425/21710 21422/21707 +f 21421/21706 21426/21711 21420/21705 +f 21424/21709 21422/21707 21427/21712 +f 21424/21709 21428/21713 21423/21708 +f 21420/21705 21426/21711 21425/21710 +f 21429/21714 21422/21707 21425/21710 +f 21424/21709 21427/21712 21428/21713 +f 21427/21712 21422/21707 21429/21714 +f 21425/21710 21426/21711 21429/21714 +f 21428/21713 21427/21712 21429/21714 +f 21429/21714 21426/21711 21430/21715 +f 21430/21715 21428/21713 21429/21714 +f 21431/21716 21432/21717 21433/21718 +f 21432/21717 21431/21716 21434/21719 +f 21433/21718 21432/21717 21435/21720 +f 21433/21718 21436/21721 21431/21716 +f 21434/21719 21437/21722 21432/21717 +f 21438/21723 21434/21719 21431/21716 +f 21435/21720 21432/21717 21439/21724 +f 21435/21720 21440/21725 21433/21718 +f 21433/21718 21441/21726 21436/21721 +f 21442/21727 21431/21716 21436/21721 +f 21443/21728 21437/21722 21434/21719 +f 21439/21724 21432/21717 21437/21722 +f 21444/21729 21434/21719 21438/21723 +f 21438/21723 21431/21716 21442/21727 +f 21440/21725 21435/21720 21439/21724 +f 21440/21725 21441/21726 21433/21718 +f 21445/21730 21436/21721 21441/21726 +f 21446/21731 21442/21727 21436/21721 +f 21444/21729 21443/21728 21434/21719 +f 21447/21732 21437/21722 21443/21728 +f 21437/21722 21447/21732 21439/21724 +f 21444/21729 21438/21723 21448/21733 +f 21448/21733 21438/21723 21442/21727 +f 21439/21724 21449/21734 21440/21725 +f 21440/21725 21450/21735 21441/21726 +f 21445/21730 21451/21736 21436/21721 +f 21445/21730 21441/21726 21452/21737 +f 21442/21727 21446/21731 21453/21738 +f 21451/21736 21446/21731 21436/21721 +f 21444/21729 21454/21739 21443/21728 +f 21454/21739 21447/21732 21443/21728 +f 21439/21724 21447/21732 21449/21734 +f 21455/21740 21444/21729 21448/21733 +f 21442/21727 21456/21741 21448/21733 +f 21457/21742 21440/21725 21449/21734 +f 21450/21735 21440/21725 21458/21743 +f 21459/21744 21441/21726 21450/21735 +f 21460/21745 21451/21736 21445/21730 +f 21452/21737 21441/21726 21459/21744 +f 21461/21746 21445/21730 21452/21737 +f 21462/21747 21453/21738 21446/21731 +f 21442/21727 21453/21738 21456/21741 +f 21446/21731 21451/21736 21463/21748 +f 21444/21729 21464/21749 21454/21739 +f 21447/21732 21454/21739 21465/21750 +f 21449/21734 21447/21732 21466/21751 +f 21464/21749 21444/21729 21455/21740 +f 21456/21741 21455/21740 21448/21733 +f 21457/21742 21467/21752 21440/21725 +f 21466/21751 21457/21742 21449/21734 +f 21458/21743 21440/21725 21467/21752 +f 21450/21735 21458/21743 21459/21744 +f 21468/21753 21451/21736 21460/21745 +f 21460/21745 21445/21730 21469/21754 +f 21459/21744 21470/21755 21452/21737 +f 21445/21730 21461/21746 21469/21754 +f 21470/21755 21461/21746 21452/21737 +f 21471/21756 21453/21738 21462/21747 +f 21472/21757 21462/21747 21446/21731 +f 21456/21741 21453/21738 21473/21758 +f 21451/21736 21468/21753 21463/21748 +f 21472/21757 21446/21731 21463/21748 +f 21474/21759 21454/21739 21464/21749 +f 21465/21750 21475/21760 21447/21732 +f 21465/21750 21454/21739 21476/21761 +f 21447/21732 21475/21760 21466/21751 +f 21477/21762 21464/21749 21455/21740 +f 21455/21740 21456/21741 21473/21758 +f 21478/21763 21467/21752 21457/21742 +f 21479/21764 21457/21742 21466/21751 +f 21480/21765 21458/21743 21467/21752 +f 21459/21744 21458/21743 21481/21766 +f 21460/21745 21482/21767 21468/21753 +f 21483/21768 21460/21745 21469/21754 +f 21484/21769 21470/21755 21459/21744 +f 21461/21746 21485/21770 21469/21754 +f 21486/21771 21461/21746 21470/21755 +f 21453/21738 21471/21756 21473/21758 +f 21462/21747 21487/21772 21471/21756 +f 21488/21773 21462/21747 21472/21757 +f 21468/21753 21489/21774 21463/21748 +f 21472/21757 21463/21748 21490/21775 +f 21454/21739 21474/21759 21476/21761 +f 21464/21749 21477/21762 21474/21759 +f 21465/21750 21491/21776 21475/21760 +f 21492/21777 21465/21750 21476/21761 +f 21466/21751 21475/21760 21493/21778 +f 21477/21762 21455/21740 21487/21772 +f 21487/21772 21455/21740 21473/21758 +f 21457/21742 21479/21764 21478/21763 +f 21467/21752 21478/21763 21494/21779 +f 21466/21751 21493/21778 21479/21764 +f 21458/21743 21480/21765 21481/21766 +f 21494/21779 21480/21765 21467/21752 +f 21459/21744 21481/21766 21484/21769 +f 21495/21780 21468/21753 21482/21767 +f 21496/21781 21482/21767 21460/21745 +f 21469/21754 21497/21782 21483/21768 +f 21483/21768 21496/21781 21460/21745 +f 21486/21771 21470/21755 21484/21769 +f 21461/21746 21486/21771 21485/21770 +f 21485/21770 21497/21782 21469/21754 +f 21473/21758 21471/21756 21487/21772 +f 21462/21747 21488/21773 21487/21772 +f 21498/21783 21488/21773 21472/21757 +f 21489/21774 21499/21784 21463/21748 +f 21500/21785 21489/21774 21468/21753 +f 21463/21748 21501/21786 21490/21775 +f 21502/21787 21472/21757 21490/21775 +f 21503/21788 21476/21761 21474/21759 +f 21477/21762 21504/21789 21474/21759 +f 21505/21790 21475/21760 21491/21776 +f 21491/21776 21465/21750 21506/21791 +f 21492/21777 21506/21791 21465/21750 +f 21476/21761 21507/21792 21492/21777 +f 21508/21793 21493/21778 21475/21760 +f 21509/21794 21477/21762 21487/21772 +f 21479/21764 21510/21795 21478/21763 +f 21494/21779 21478/21763 21510/21795 +f 21479/21764 21493/21778 21511/21796 +f 21480/21765 21512/21797 21481/21766 +f 21494/21779 21513/21798 21480/21765 +f 21481/21766 21514/21799 21484/21769 +f 21482/21767 21515/21800 21495/21780 +f 21495/21780 21516/21801 21468/21753 +f 21496/21781 21517/21802 21482/21767 +f 21518/21803 21483/21768 21497/21782 +f 21519/21804 21496/21781 21483/21768 +f 21520/21805 21486/21771 21484/21769 +f 21486/21771 21520/21805 21485/21770 +f 21485/21770 21521/21806 21497/21782 +f 21509/21794 21487/21772 21488/21773 +f 21488/21773 21498/21783 21522/21807 +f 21502/21787 21498/21783 21472/21757 +f 21499/21784 21523/21808 21463/21748 +f 21499/21784 21489/21774 21524/21809 +f 21500/21785 21525/21810 21489/21774 +f 21468/21753 21526/21811 21500/21785 +f 21463/21748 21527/21812 21501/21786 +f 21490/21775 21501/21786 21528/21813 +f 21502/21787 21490/21775 21529/21814 +f 21503/21788 21507/21792 21476/21761 +f 21503/21788 21474/21759 21504/21789 +f 21504/21789 21477/21762 21530/21815 +f 21508/21793 21475/21760 21505/21790 +f 21491/21776 21531/21816 21505/21790 +f 21491/21776 21506/21791 21532/21817 +f 21532/21817 21506/21791 21492/21777 +f 21507/21792 21533/21818 21492/21777 +f 21508/21793 21511/21796 21493/21778 +f 21477/21762 21509/21794 21522/21807 +f 21510/21795 21479/21764 21534/21819 +f 21513/21798 21494/21779 21510/21795 +f 21534/21819 21479/21764 21511/21796 +f 21512/21797 21514/21799 21481/21766 +f 21513/21798 21512/21797 21480/21765 +f 21484/21769 21514/21799 21535/21820 +f 21515/21800 21482/21767 21517/21802 +f 21536/21821 21495/21780 21515/21800 +f 21537/21822 21516/21801 21495/21780 +f 21516/21801 21526/21811 21468/21753 +f 21496/21781 21519/21804 21517/21802 +f 21483/21768 21518/21803 21519/21804 +f 21497/21782 21521/21806 21518/21803 +f 21538/21823 21520/21805 21484/21769 +f 21520/21805 21521/21806 21485/21770 +f 21509/21794 21488/21773 21522/21807 +f 21522/21807 21498/21783 21539/21824 +f 21539/21824 21498/21783 21502/21787 +f 21523/21808 21499/21784 21540/21825 +f 21523/21808 21541/21826 21463/21748 +f 21525/21810 21524/21809 21489/21774 +f 21524/21809 21542/21827 21499/21784 +f 21500/21785 21543/21828 21525/21810 +f 21543/21828 21500/21785 21526/21811 +f 21463/21748 21541/21826 21527/21812 +f 21501/21786 21527/21812 21544/21829 +f 21501/21786 21545/21830 21528/21813 +f 21490/21775 21528/21813 21529/21814 +f 21546/21831 21502/21787 21529/21814 +f 21547/21832 21507/21792 21503/21788 +f 21547/21832 21503/21788 21504/21789 +f 21530/21815 21477/21762 21522/21807 +f 21530/21815 21548/21833 21504/21789 +f 21508/21793 21505/21790 21549/21834 +f 21550/21835 21505/21790 21531/21816 +f 21531/21816 21491/21776 21532/21817 +f 21532/21817 21492/21777 21551/21836 +f 21533/21818 21552/21837 21492/21777 +f 21507/21792 21553/21838 21533/21818 +f 21511/21796 21508/21793 21554/21839 +f 21513/21798 21510/21795 21534/21819 +f 21511/21796 21555/21840 21534/21819 +f 21512/21797 21556/21841 21514/21799 +f 21512/21797 21513/21798 21557/21842 +f 21556/21841 21535/21820 21514/21799 +f 21535/21820 21538/21823 21484/21769 +f 21515/21800 21517/21802 21558/21843 +f 21515/21800 21558/21843 21536/21821 +f 21559/21844 21495/21780 21536/21821 +f 21495/21780 21559/21844 21537/21822 +f 21516/21801 21537/21822 21560/21845 +f 21561/21846 21526/21811 21516/21801 +f 21562/21847 21517/21802 21519/21804 +f 21518/21803 21563/21848 21519/21804 +f 21521/21806 21564/21849 21518/21803 +f 21538/21823 21564/21849 21520/21805 +f 21520/21805 21564/21849 21521/21806 +f 21522/21807 21539/21824 21565/21850 +f 21539/21824 21502/21787 21565/21850 +f 21499/21784 21566/21851 21540/21825 +f 21523/21808 21540/21825 21567/21852 +f 21541/21826 21523/21808 21568/21853 +f 21524/21809 21525/21810 21569/21854 +f 21566/21851 21499/21784 21542/21827 +f 21569/21854 21542/21827 21524/21809 +f 21570/21855 21525/21810 21543/21828 +f 21526/21811 21561/21846 21543/21828 +f 21527/21812 21541/21826 21571/21856 +f 21501/21786 21544/21829 21545/21830 +f 21544/21829 21527/21812 21572/21857 +f 21545/21830 21544/21829 21528/21813 +f 21573/21858 21529/21814 21528/21813 +f 21574/21859 21502/21787 21546/21831 +f 21546/21831 21529/21814 21575/21860 +f 21576/21861 21507/21792 21547/21832 +f 21504/21789 21548/21833 21547/21832 +f 21530/21815 21522/21807 21577/21862 +f 21577/21862 21548/21833 21530/21815 +f 21549/21834 21554/21839 21508/21793 +f 21505/21790 21550/21835 21549/21834 +f 21551/21836 21550/21835 21531/21816 +f 21551/21836 21531/21816 21532/21817 +f 21552/21837 21551/21836 21492/21777 +f 21578/21863 21552/21837 21533/21818 +f 21533/21818 21553/21838 21578/21863 +f 21507/21792 21576/21861 21553/21838 +f 21511/21796 21554/21839 21555/21840 +f 21534/21819 21557/21842 21513/21798 +f 21555/21840 21579/21864 21534/21819 +f 21556/21841 21512/21797 21557/21842 +f 21580/21865 21535/21820 21556/21841 +f 21581/21866 21538/21823 21535/21820 +f 21517/21802 21562/21847 21558/21843 +f 21558/21843 21582/21867 21536/21821 +f 21536/21821 21583/21868 21559/21844 +f 21537/21822 21559/21844 21560/21845 +f 21561/21846 21516/21801 21560/21845 +f 21562/21847 21519/21804 21584/21869 +f 21564/21849 21563/21848 21518/21803 +f 21519/21804 21563/21848 21584/21869 +f 21564/21849 21538/21823 21585/21870 +f 21565/21850 21577/21862 21522/21807 +f 21502/21787 21574/21859 21565/21850 +f 21586/21871 21540/21825 21566/21851 +f 21587/21872 21523/21808 21567/21852 +f 21567/21852 21540/21825 21588/21873 +f 21523/21808 21587/21872 21568/21853 +f 21571/21856 21541/21826 21568/21853 +f 21589/21874 21569/21854 21525/21810 +f 21566/21851 21542/21827 21590/21875 +f 21542/21827 21569/21854 21591/21876 +f 21592/21877 21570/21855 21543/21828 +f 21570/21855 21589/21874 21525/21810 +f 21561/21846 21593/21878 21543/21828 +f 21571/21856 21572/21857 21527/21812 +f 21594/21879 21544/21829 21572/21857 +f 21528/21813 21544/21829 21595/21880 +f 21573/21858 21528/21813 21596/21881 +f 21575/21860 21529/21814 21573/21858 +f 21574/21859 21546/21831 21597/21882 +f 21598/21883 21546/21831 21575/21860 +f 21547/21832 21599/21884 21576/21861 +f 21548/21833 21600/21885 21547/21832 +f 21600/21885 21548/21833 21577/21862 +f 21554/21839 21549/21834 21601/21886 +f 21550/21835 21602/21887 21549/21834 +f 21550/21835 21551/21836 21603/21888 +f 21551/21836 21552/21837 21603/21888 +f 21552/21837 21578/21863 21603/21888 +f 21604/21889 21578/21863 21553/21838 +f 21553/21838 21576/21861 21605/21890 +f 21606/21891 21555/21840 21554/21839 +f 21579/21864 21557/21842 21534/21819 +f 21579/21864 21555/21840 21607/21892 +f 21557/21842 21579/21864 21556/21841 +f 21580/21865 21581/21866 21535/21820 +f 21556/21841 21608/21893 21580/21865 +f 21585/21870 21538/21823 21581/21866 +f 21558/21843 21562/21847 21582/21867 +f 21583/21868 21536/21821 21582/21867 +f 21583/21868 21609/21894 21559/21844 +f 21560/21845 21559/21844 21609/21894 +f 21560/21845 21610/21895 21561/21846 +f 21584/21869 21611/21896 21562/21847 +f 21563/21848 21564/21849 21612/21897 +f 21611/21896 21584/21869 21563/21848 +f 21612/21897 21564/21849 21585/21870 +f 21613/21898 21577/21862 21565/21850 +f 21574/21859 21597/21882 21565/21850 +f 21566/21851 21614/21899 21586/21871 +f 21586/21871 21588/21873 21540/21825 +f 21615/21900 21587/21872 21567/21852 +f 21588/21873 21615/21900 21567/21852 +f 21587/21872 21616/21901 21568/21853 +f 21568/21853 21616/21901 21571/21856 +f 21617/21902 21569/21854 21589/21874 +f 21590/21875 21542/21827 21618/21903 +f 21614/21899 21566/21851 21590/21875 +f 21617/21902 21591/21876 21569/21854 +f 21591/21876 21618/21903 21542/21827 +f 21543/21828 21593/21878 21592/21877 +f 21592/21877 21619/21904 21570/21855 +f 21619/21904 21589/21874 21570/21855 +f 21561/21846 21610/21895 21593/21878 +f 21571/21856 21620/21905 21572/21857 +f 21544/21829 21594/21879 21595/21880 +f 21620/21905 21594/21879 21572/21857 +f 21595/21880 21621/21906 21528/21813 +f 21528/21813 21621/21906 21596/21881 +f 21596/21881 21575/21860 21573/21858 +f 21546/21831 21598/21883 21597/21882 +f 21622/21907 21598/21883 21575/21860 +f 21623/21908 21599/21884 21547/21832 +f 21624/21909 21576/21861 21599/21884 +f 21623/21908 21547/21832 21600/21885 +f 21577/21862 21613/21898 21600/21885 +f 21549/21834 21625/21910 21601/21886 +f 21606/21891 21554/21839 21601/21886 +f 21602/21887 21626/21911 21549/21834 +f 21550/21835 21603/21888 21602/21887 +f 21603/21888 21578/21863 21627/21912 +f 21604/21889 21553/21838 21628/21913 +f 21604/21889 21629/21914 21578/21863 +f 21605/21890 21576/21861 21630/21915 +f 21605/21890 21631/21916 21553/21838 +f 21555/21840 21606/21891 21607/21892 +f 21632/21917 21579/21864 21607/21892 +f 21579/21864 21633/21918 21556/21841 +f 21581/21866 21580/21865 21634/21919 +f 21635/21920 21608/21893 21556/21841 +f 21608/21893 21636/21921 21580/21865 +f 21637/21922 21585/21870 21581/21866 +f 21562/21847 21638/21923 21582/21867 +f 21583/21868 21582/21867 21639/21924 +f 21640/21925 21609/21894 21583/21868 +f 21609/21894 21641/21926 21560/21845 +f 21641/21926 21610/21895 21560/21845 +f 21562/21847 21611/21896 21638/21923 +f 21612/21897 21611/21896 21563/21848 +f 21642/21927 21612/21897 21585/21870 +f 21565/21850 21597/21882 21613/21898 +f 21643/21928 21586/21871 21614/21899 +f 21588/21873 21586/21871 21615/21900 +f 21587/21872 21615/21900 21644/21929 +f 21616/21901 21587/21872 21645/21930 +f 21571/21856 21616/21901 21646/21931 +f 21647/21932 21617/21902 21589/21874 +f 21590/21875 21618/21903 21648/21933 +f 21590/21875 21649/21934 21614/21899 +f 21617/21902 21650/21935 21591/21876 +f 21618/21903 21591/21876 21651/21936 +f 21652/21937 21592/21877 21593/21878 +f 21653/21938 21619/21904 21592/21877 +f 21619/21904 21647/21932 21589/21874 +f 21610/21895 21654/21939 21593/21878 +f 21646/21931 21620/21905 21571/21856 +f 21595/21880 21594/21879 21655/21940 +f 21594/21879 21620/21905 21655/21940 +f 21656/21941 21621/21906 21595/21880 +f 21621/21906 21622/21907 21596/21881 +f 21622/21907 21575/21860 21596/21881 +f 21597/21882 21598/21883 21613/21898 +f 21598/21883 21622/21907 21657/21942 +f 21658/21943 21599/21884 21623/21908 +f 21659/21944 21576/21861 21624/21909 +f 21599/21884 21660/21945 21624/21909 +f 21623/21908 21600/21885 21661/21946 +f 21600/21885 21613/21898 21661/21946 +f 21549/21834 21626/21911 21625/21910 +f 21601/21886 21625/21910 21662/21947 +f 21663/21948 21606/21891 21601/21886 +f 21626/21911 21602/21887 21603/21888 +f 21603/21888 21627/21912 21626/21911 +f 21664/21949 21627/21912 21578/21863 +f 21628/21913 21553/21838 21631/21916 +f 21628/21913 21665/21950 21604/21889 +f 21604/21889 21665/21950 21629/21914 +f 21578/21863 21629/21914 21666/21951 +f 21605/21890 21630/21915 21667/21952 +f 21576/21861 21659/21944 21630/21915 +f 21605/21890 21668/21953 21631/21916 +f 21606/21891 21669/21954 21607/21892 +f 21670/21955 21632/21917 21607/21892 +f 21632/21917 21633/21918 21579/21864 +f 21556/21841 21633/21918 21635/21920 +f 21671/21956 21581/21866 21634/21919 +f 21672/21957 21634/21919 21580/21865 +f 21673/21958 21608/21893 21635/21920 +f 21674/21959 21636/21921 21608/21893 +f 21672/21957 21580/21865 21636/21921 +f 21637/21922 21642/21927 21585/21870 +f 21581/21866 21671/21956 21637/21922 +f 21638/21923 21675/21960 21582/21867 +f 21583/21868 21639/21924 21676/21961 +f 21639/21924 21582/21867 21675/21960 +f 21676/21961 21640/21925 21583/21868 +f 21677/21962 21609/21894 21640/21925 +f 21641/21926 21609/21894 21677/21962 +f 21610/21895 21641/21926 21654/21939 +f 21611/21896 21642/21927 21638/21923 +f 21642/21927 21611/21896 21612/21897 +f 21678/21963 21586/21871 21643/21928 +f 21649/21934 21643/21928 21614/21899 +f 21586/21871 21678/21963 21615/21900 +f 21587/21872 21644/21929 21645/21930 +f 21678/21963 21644/21929 21615/21900 +f 21616/21901 21645/21930 21646/21931 +f 21617/21902 21647/21932 21679/21964 +f 21648/21933 21618/21903 21680/21965 +f 21590/21875 21648/21933 21649/21934 +f 21650/21935 21617/21902 21681/21966 +f 21591/21876 21650/21935 21651/21936 +f 21651/21936 21682/21967 21618/21903 +f 21652/21937 21593/21878 21654/21939 +f 21683/21968 21592/21877 21652/21937 +f 21684/21969 21619/21904 21653/21938 +f 21592/21877 21685/21970 21653/21938 +f 21686/21971 21647/21932 21619/21904 +f 21655/21940 21620/21905 21646/21931 +f 21655/21940 21687/21972 21595/21880 +f 21656/21941 21688/21973 21621/21906 +f 21689/21974 21656/21941 21595/21880 +f 21622/21907 21621/21906 21690/21975 +f 21613/21898 21598/21883 21657/21942 +f 21657/21942 21622/21907 21691/21976 +f 21692/21977 21599/21884 21658/21943 +f 21623/21908 21693/21978 21658/21943 +f 21694/21979 21659/21944 21624/21909 +f 21660/21945 21695/21980 21624/21909 +f 21599/21884 21692/21977 21660/21945 +f 21623/21908 21661/21946 21691/21976 +f 21613/21898 21657/21942 21661/21946 +f 21625/21910 21626/21911 21696/21981 +f 21601/21886 21662/21947 21663/21948 +f 21696/21981 21662/21947 21625/21910 +f 21669/21954 21606/21891 21663/21948 +f 21626/21911 21627/21912 21664/21949 +f 21578/21863 21666/21951 21664/21949 +f 21631/21916 21668/21953 21628/21913 +f 21628/21913 21697/21982 21665/21950 +f 21629/21914 21665/21950 21698/21983 +f 21629/21914 21699/21984 21666/21951 +f 21700/21985 21605/21890 21667/21952 +f 21630/21915 21701/21986 21667/21952 +f 21630/21915 21659/21944 21702/21987 +f 21703/21988 21668/21953 21605/21890 +f 21669/21954 21670/21955 21607/21892 +f 21632/21917 21670/21955 21704/21989 +f 21705/21990 21633/21918 21632/21917 +f 21635/21920 21633/21918 21706/21991 +f 21707/21992 21671/21956 21634/21919 +f 21672/21957 21708/21993 21634/21919 +f 21673/21958 21635/21920 21709/21994 +f 21673/21958 21710/21995 21608/21893 +f 21710/21995 21674/21959 21608/21893 +f 21674/21959 21711/21996 21636/21921 +f 21712/21997 21672/21957 21636/21921 +f 21713/21998 21642/21927 21637/21922 +f 21637/21922 21671/21956 21714/21999 +f 21642/21927 21675/21960 21638/21923 +f 21676/21961 21639/21924 21715/22000 +f 21716/22001 21639/21924 21675/21960 +f 21676/21961 21715/22000 21640/21925 +f 21640/21925 21715/22000 21677/21962 +f 21654/21939 21641/21926 21677/21962 +f 21643/21928 21717/22002 21678/21963 +f 21718/22003 21643/21928 21649/21934 +f 21645/21930 21644/21929 21719/22004 +f 21717/22002 21644/21929 21678/21963 +f 21645/21930 21719/22004 21646/21931 +f 21679/21964 21647/21932 21686/21971 +f 21720/22005 21617/21902 21679/21964 +f 21618/21903 21721/22006 21680/21965 +f 21648/21933 21680/21965 21722/22007 +f 21718/22003 21649/21934 21648/21933 +f 21723/22008 21650/21935 21681/21966 +f 21617/21902 21720/22005 21681/21966 +f 21651/21936 21650/21935 21724/22009 +f 21724/22009 21682/21967 21651/21936 +f 21682/21967 21721/22006 21618/21903 +f 21654/21939 21677/21962 21652/21937 +f 21685/21970 21592/21877 21683/21968 +f 21652/21937 21725/22010 21683/21968 +f 21726/22011 21684/21969 21653/21938 +f 21684/21969 21727/22012 21619/21904 +f 21685/21970 21726/22011 21653/21938 +f 21619/21904 21728/22013 21686/21971 +f 21646/21931 21729/22014 21655/21940 +f 21730/22015 21687/21972 21655/21940 +f 21687/21972 21689/21974 21595/21880 +f 21690/21975 21621/21906 21688/21973 +f 21688/21973 21656/21941 21731/22016 +f 21689/21974 21732/22017 21656/21941 +f 21690/21975 21733/22018 21622/21907 +f 21657/21942 21691/21976 21661/21946 +f 21734/22019 21691/21976 21622/21907 +f 21692/21977 21658/21943 21735/22020 +f 21623/21908 21734/22019 21693/21978 +f 21658/21943 21693/21978 21736/22021 +f 21702/21987 21659/21944 21694/21979 +f 21624/21909 21695/21980 21694/21979 +f 21695/21980 21660/21945 21692/21977 +f 21691/21976 21734/22019 21623/21908 +f 21626/21911 21664/21949 21696/21981 +f 21737/22022 21663/21948 21662/21947 +f 21738/22023 21662/21947 21696/21981 +f 21669/21954 21663/21948 21737/22022 +f 21664/21949 21666/21951 21699/21984 +f 21628/21913 21668/21953 21739/22024 +f 21697/21982 21628/21913 21739/22024 +f 21697/21982 21698/21983 21665/21950 +f 21629/21914 21698/21983 21740/22025 +f 21740/22025 21699/21984 21629/21914 +f 21741/22026 21700/21985 21667/21952 +f 21700/21985 21742/22027 21605/21890 +f 21743/22028 21667/21952 21701/21986 +f 21702/21987 21701/21986 21630/21915 +f 21703/21988 21744/22029 21668/21953 +f 21742/22027 21703/21988 21605/21890 +f 21745/22030 21670/21955 21669/21954 +f 21704/21989 21746/22031 21632/21917 +f 21704/21989 21670/21955 21747/22032 +f 21633/21918 21705/21990 21748/22033 +f 21705/21990 21632/21917 21746/22031 +f 21633/21918 21748/22033 21706/21991 +f 21706/21991 21709/21994 21635/21920 +f 21749/22034 21671/21956 21707/21992 +f 21750/22035 21707/21992 21634/21919 +f 21750/22035 21634/21919 21708/21993 +f 21712/21997 21708/21993 21672/21957 +f 21709/21994 21751/22036 21673/21958 +f 21751/22036 21710/21995 21673/21958 +f 21710/21995 21752/22037 21674/21959 +f 21711/21996 21674/21959 21752/22037 +f 21711/21996 21753/22038 21636/21921 +f 21754/22039 21712/21997 21636/21921 +f 21755/22040 21713/21998 21637/21922 +f 21716/22001 21642/21927 21713/21998 +f 21714/21999 21755/22040 21637/21922 +f 21671/21956 21756/22041 21714/21999 +f 21675/21960 21642/21927 21716/22001 +f 21639/21924 21757/22042 21715/22000 +f 21639/21924 21716/22001 21757/22042 +f 21715/22000 21758/22043 21677/21962 +f 21718/22003 21717/22002 21643/21928 +f 21644/21929 21717/22002 21719/22004 +f 21759/22044 21646/21931 21719/22004 +f 21686/21971 21760/22045 21679/21964 +f 21720/22005 21679/21964 21761/22046 +f 21721/22006 21762/22047 21680/21965 +f 21722/22007 21718/22003 21648/21933 +f 21680/21965 21763/22048 21722/22007 +f 21724/22009 21650/21935 21723/22008 +f 21681/21966 21720/22005 21723/22008 +f 21764/22049 21682/21967 21724/22009 +f 21682/21967 21765/22050 21721/22006 +f 21677/21962 21725/22010 21652/21937 +f 21683/21968 21726/22011 21685/21970 +f 21766/22051 21683/21968 21725/22010 +f 21684/21969 21726/22011 21767/22052 +f 21684/21969 21768/22053 21727/22012 +f 21727/22012 21728/22013 21619/21904 +f 21760/22045 21686/21971 21728/22013 +f 21729/22014 21646/21931 21759/22044 +f 21729/22014 21730/22015 21655/21940 +f 21730/22015 21769/22054 21687/21972 +f 21689/21974 21687/21972 21770/22055 +f 21690/21975 21688/21973 21731/22016 +f 21731/22016 21656/21941 21732/22017 +f 21732/22017 21689/21974 21771/22056 +f 21731/22016 21733/22018 21690/21975 +f 21622/21907 21733/22018 21734/22019 +f 21692/21977 21735/22020 21772/22057 +f 21736/22021 21735/22020 21658/21943 +f 21734/22019 21733/22018 21693/21978 +f 21773/22058 21736/22021 21693/21978 +f 21774/22059 21702/21987 21694/21979 +f 21695/21980 21774/22059 21694/21979 +f 21772/22057 21695/21980 21692/21977 +f 21664/21949 21738/22023 21696/21981 +f 21775/22060 21737/22022 21662/21947 +f 21738/22023 21775/22060 21662/21947 +f 21776/22061 21669/21954 21737/22022 +f 21699/21984 21738/22023 21664/21949 +f 21668/21953 21744/22029 21739/22024 +f 21777/22062 21697/21982 21739/22024 +f 21778/22063 21698/21983 21697/21982 +f 21740/22025 21698/21983 21779/22064 +f 21780/22065 21699/21984 21740/22025 +f 21781/22066 21700/21985 21741/22026 +f 21782/22067 21741/22026 21667/21952 +f 21783/22068 21742/22027 21700/21985 +f 21782/22067 21667/21952 21743/22028 +f 21701/21986 21784/22069 21743/22028 +f 21701/21986 21702/21987 21774/22059 +f 21703/21988 21785/22070 21744/22029 +f 21786/22071 21703/21988 21742/22027 +f 21745/22030 21669/21954 21776/22061 +f 21670/21955 21745/22030 21787/22072 +f 21788/22073 21746/22031 21704/21989 +f 21670/21955 21787/22072 21747/22032 +f 21747/22032 21789/22074 21704/21989 +f 21790/22075 21748/22033 21705/21990 +f 21746/22031 21791/22076 21705/21990 +f 21706/21991 21748/22033 21792/22077 +f 21793/22078 21709/21994 21706/21991 +f 21671/21956 21749/22034 21794/22079 +f 21749/22034 21707/21992 21795/22080 +f 21750/22035 21796/22081 21707/21992 +f 21750/22035 21708/21993 21797/22082 +f 21712/21997 21797/22082 21708/21993 +f 21793/22078 21751/22036 21709/21994 +f 21751/22036 21752/22037 21710/21995 +f 21752/22037 21798/22083 21711/21996 +f 21799/22084 21753/22038 21711/21996 +f 21753/22038 21754/22039 21636/21921 +f 21754/22039 21800/22085 21712/21997 +f 21755/22040 21801/22086 21713/21998 +f 21713/21998 21802/22087 21716/22001 +f 21714/21999 21801/22086 21755/22040 +f 21801/22086 21714/21999 21756/22041 +f 21794/22079 21756/22041 21671/21956 +f 21715/22000 21757/22042 21803/22088 +f 21802/22087 21757/22042 21716/22001 +f 21758/22043 21725/22010 21677/21962 +f 21715/22000 21803/22088 21758/22043 +f 21717/22002 21718/22003 21722/22007 +f 21717/22002 21804/22089 21719/22004 +f 21719/22004 21805/22090 21759/22044 +f 21806/22091 21679/21964 21760/22045 +f 21806/22091 21761/22046 21679/21964 +f 21807/22092 21720/22005 21761/22046 +f 21808/22093 21762/22047 21721/22006 +f 21680/21965 21762/22047 21809/22094 +f 21810/22095 21763/22048 21680/21965 +f 21722/22007 21763/22048 21811/22096 +f 21812/22097 21724/22009 21723/22008 +f 21723/22008 21720/22005 21807/22092 +f 21724/22009 21812/22097 21764/22049 +f 21765/22050 21682/21967 21764/22049 +f 21813/22098 21721/22006 21765/22050 +f 21726/22011 21683/21968 21814/22099 +f 21766/22051 21814/22099 21683/21968 +f 21725/22010 21758/22043 21766/22051 +f 21768/22053 21684/21969 21767/22052 +f 21726/22011 21815/22100 21767/22052 +f 21727/22012 21768/22053 21728/22013 +f 21816/22101 21760/22045 21728/22013 +f 21817/22102 21729/22014 21759/22044 +f 21729/22014 21818/22103 21730/22015 +f 21819/22104 21769/22054 21730/22015 +f 21769/22054 21820/22105 21687/21972 +f 21689/21974 21770/22055 21771/22056 +f 21820/22105 21770/22055 21687/21972 +f 21731/22016 21732/22017 21821/22106 +f 21771/22056 21822/22107 21732/22017 +f 21773/22058 21733/22018 21731/22016 +f 21772/22057 21735/22020 21823/22108 +f 21736/22021 21824/22109 21735/22020 +f 21693/21978 21733/22018 21773/22058 +f 21825/22110 21736/22021 21773/22058 +f 21774/22059 21695/21980 21826/22111 +f 21772/22057 21826/22111 21695/21980 +f 21737/22022 21775/22060 21827/22112 +f 21827/22112 21775/22060 21738/22023 +f 21776/22061 21737/22022 21828/22113 +f 21827/22112 21738/22023 21699/21984 +f 21739/22024 21744/22029 21829/22114 +f 21697/21982 21777/22062 21830/22115 +f 21777/22062 21739/22024 21829/22114 +f 21698/21983 21778/22063 21779/22064 +f 21778/22063 21697/21982 21830/22115 +f 21779/22064 21831/22116 21740/22025 +f 21832/22117 21699/21984 21780/22065 +f 21780/22065 21740/22025 21831/22116 +f 21700/21985 21781/22066 21833/22118 +f 21741/22026 21834/22119 21781/22066 +f 21835/22120 21741/22026 21782/22067 +f 21783/22068 21836/22121 21742/22027 +f 21783/22068 21700/21985 21837/22122 +f 21838/22123 21782/22067 21743/22028 +f 21701/21986 21774/22059 21784/22069 +f 21784/22069 21838/22123 21743/22028 +f 21703/21988 21786/22071 21785/22070 +f 21839/22124 21744/22029 21785/22070 +f 21786/22071 21742/22027 21840/22125 +f 21787/22072 21745/22030 21776/22061 +f 21788/22073 21704/21989 21841/22126 +f 21791/22076 21746/22031 21788/22073 +f 21747/22032 21787/22072 21842/22127 +f 21843/22128 21789/22074 21747/22032 +f 21789/22074 21844/22129 21704/21989 +f 21748/22033 21790/22075 21845/22130 +f 21791/22076 21790/22075 21705/21990 +f 21792/22077 21748/22033 21845/22130 +f 21706/21991 21792/22077 21846/22131 +f 21706/21991 21846/22131 21793/22078 +f 21794/22079 21749/22034 21847/22132 +f 21795/22080 21707/21992 21796/22081 +f 21848/22133 21749/22034 21795/22080 +f 21796/22081 21750/22035 21849/22134 +f 21800/22085 21750/22035 21797/22082 +f 21712/21997 21800/22085 21797/22082 +f 21850/22135 21751/22036 21793/22078 +f 21850/22135 21752/22037 21751/22036 +f 21850/22135 21798/22083 21752/22037 +f 21798/22083 21799/22084 21711/21996 +f 21753/22038 21799/22084 21851/22136 +f 21754/22039 21753/22038 21800/22085 +f 21852/22137 21713/21998 21801/22086 +f 21802/22087 21713/21998 21852/22137 +f 21853/22138 21801/22086 21756/22041 +f 21756/22041 21794/22079 21853/22138 +f 21802/22087 21803/22088 21757/22042 +f 21758/22043 21803/22088 21854/22139 +f 21722/22007 21855/22140 21717/22002 +f 21855/22140 21804/22089 21717/22002 +f 21719/22004 21804/22089 21805/22090 +f 21805/22090 21856/22141 21759/22044 +f 21760/22045 21857/22142 21806/22091 +f 21858/22143 21761/22046 21806/22091 +f 21761/22046 21858/22143 21807/22092 +f 21859/22144 21762/22047 21808/22093 +f 21808/22093 21721/22006 21813/22098 +f 21860/22145 21809/22094 21762/22047 +f 21809/22094 21810/22095 21680/21965 +f 21810/22095 21861/22146 21763/22048 +f 21861/22146 21811/22096 21763/22048 +f 21722/22007 21811/22096 21855/22140 +f 21862/22147 21812/22097 21723/22008 +f 21862/22147 21723/22008 21807/22092 +f 21812/22097 21863/22148 21764/22049 +f 21864/22149 21765/22050 21764/22049 +f 21813/22098 21765/22050 21864/22149 +f 21814/22099 21865/22150 21726/22011 +f 21866/22151 21814/22099 21766/22051 +f 21758/22043 21867/22152 21766/22051 +f 21767/22052 21868/22153 21768/22053 +f 21815/22100 21726/22011 21869/22154 +f 21870/22155 21767/22052 21815/22100 +f 21768/22053 21871/22156 21728/22013 +f 21816/22101 21857/22142 21760/22045 +f 21728/22013 21871/22156 21816/22101 +f 21729/22014 21817/22102 21872/22157 +f 21873/22158 21817/22102 21759/22044 +f 21729/22014 21872/22157 21818/22103 +f 21818/22103 21819/22104 21730/22015 +f 21820/22105 21769/22054 21819/22104 +f 21874/22159 21771/22056 21770/22055 +f 21875/22160 21770/22055 21820/22105 +f 21732/22017 21876/22161 21821/22106 +f 21773/22058 21731/22016 21821/22106 +f 21732/22017 21822/22107 21876/22161 +f 21771/22056 21877/22162 21822/22107 +f 21823/22108 21735/22020 21878/22163 +f 21823/22108 21879/22164 21772/22057 +f 21735/22020 21824/22109 21878/22163 +f 21825/22110 21824/22109 21736/22021 +f 21773/22058 21824/22109 21825/22110 +f 21774/22059 21826/22111 21880/22165 +f 21826/22111 21772/22057 21879/22164 +f 21881/22166 21737/22022 21827/22112 +f 21881/22166 21828/22113 21737/22022 +f 21882/22167 21776/22061 21828/22113 +f 21827/22112 21699/21984 21883/22168 +f 21839/22124 21829/22114 21744/22029 +f 21777/22062 21884/22169 21830/22115 +f 21884/22169 21777/22062 21829/22114 +f 21778/22063 21885/22170 21779/22064 +f 21830/22115 21885/22170 21778/22063 +f 21886/22171 21831/22116 21779/22064 +f 21832/22117 21883/22168 21699/21984 +f 21780/22065 21831/22116 21832/22117 +f 21887/22172 21833/22118 21781/22066 +f 21833/22118 21837/22122 21700/21985 +f 21834/22119 21741/22026 21835/22120 +f 21834/22119 21888/22173 21781/22066 +f 21835/22120 21782/22067 21889/22174 +f 21890/22175 21836/22121 21783/22068 +f 21836/22121 21891/22176 21742/22027 +f 21890/22175 21783/22068 21837/22122 +f 21889/22174 21782/22067 21838/22123 +f 21784/22069 21774/22059 21892/22177 +f 21784/22069 21892/22177 21838/22123 +f 21840/22125 21785/22070 21786/22071 +f 21840/22125 21839/22124 21785/22070 +f 21840/22125 21742/22027 21891/22176 +f 21787/22072 21776/22061 21893/22178 +f 21841/22126 21704/21989 21844/22129 +f 21894/22179 21788/22073 21841/22126 +f 21790/22075 21791/22076 21788/22073 +f 21842/22127 21787/22072 21893/22178 +f 21842/22127 21843/22128 21747/22032 +f 21789/22074 21843/22128 21895/22180 +f 21896/22181 21844/22129 21789/22074 +f 21845/22130 21790/22075 21788/22073 +f 21897/22182 21792/22077 21845/22130 +f 21792/22077 21898/22183 21846/22131 +f 21846/22131 21850/22135 21793/22078 +f 21749/22034 21899/22184 21847/22132 +f 21847/22132 21900/22185 21794/22079 +f 21796/22081 21901/22186 21795/22080 +f 21848/22133 21899/22184 21749/22034 +f 21902/22187 21848/22133 21795/22080 +f 21796/22081 21849/22134 21851/22136 +f 21800/22085 21849/22134 21750/22035 +f 21898/22183 21798/22083 21850/22135 +f 21798/22083 21903/22188 21799/22084 +f 21849/22134 21753/22038 21851/22136 +f 21851/22136 21799/22084 21904/22189 +f 21849/22134 21800/22085 21753/22038 +f 21852/22137 21801/22086 21905/22190 +f 21852/22137 21905/22190 21802/22087 +f 21801/22086 21853/22138 21906/22191 +f 21853/22138 21794/22079 21900/22185 +f 21907/22192 21803/22088 21802/22087 +f 21854/22139 21803/22088 21907/22192 +f 21854/22139 21908/22193 21758/22043 +f 21909/22194 21804/22089 21855/22140 +f 21804/22089 21910/22195 21805/22090 +f 21805/22090 21911/22196 21856/22141 +f 21856/22141 21912/22197 21759/22044 +f 21857/22142 21913/22198 21806/22091 +f 21913/22198 21858/22143 21806/22091 +f 21862/22147 21807/22092 21858/22143 +f 21914/22199 21762/22047 21859/22144 +f 21808/22093 21915/22200 21859/22144 +f 21915/22200 21808/22093 21813/22098 +f 21860/22145 21916/22201 21809/22094 +f 21860/22145 21762/22047 21914/22199 +f 21809/22094 21917/22202 21810/22095 +f 21861/22146 21810/22095 21918/22203 +f 21861/22146 21909/22194 21811/22096 +f 21909/22194 21855/22140 21811/22096 +f 21812/22097 21862/22147 21919/22204 +f 21863/22148 21864/22149 21764/22049 +f 21812/22097 21919/22204 21863/22148 +f 21813/22098 21864/22149 21915/22200 +f 21866/22151 21865/22150 21814/22099 +f 21865/22150 21869/22154 21726/22011 +f 21766/22051 21920/22205 21866/22151 +f 21908/22193 21867/22152 21758/22043 +f 21921/22206 21766/22051 21867/22152 +f 21868/22153 21767/22052 21870/22155 +f 21922/22207 21768/22053 21868/22153 +f 21869/22154 21923/22208 21815/22100 +f 21815/22100 21923/22208 21870/22155 +f 21816/22101 21871/22156 21768/22053 +f 21857/22142 21816/22101 21922/22207 +f 21924/22209 21872/22157 21817/22102 +f 21873/22158 21925/22210 21817/22102 +f 21759/22044 21912/22197 21873/22158 +f 21926/22211 21818/22103 21872/22157 +f 21819/22104 21818/22103 21927/22212 +f 21820/22105 21819/22104 21928/22213 +f 21877/22162 21771/22056 21874/22159 +f 21770/22055 21875/22160 21874/22159 +f 21875/22160 21820/22105 21929/22214 +f 21876/22161 21824/22109 21821/22106 +f 21824/22109 21773/22058 21821/22106 +f 21930/22215 21876/22161 21822/22107 +f 21822/22107 21877/22162 21931/22216 +f 21878/22163 21879/22164 21823/22108 +f 21932/22217 21878/22163 21824/22109 +f 21879/22164 21880/22165 21826/22111 +f 21933/22218 21774/22059 21880/22165 +f 21883/22168 21881/22166 21827/22112 +f 21881/22166 21934/22219 21828/22113 +f 21893/22178 21776/22061 21882/22167 +f 21934/22219 21882/22167 21828/22113 +f 21935/22220 21829/22114 21839/22124 +f 21830/22115 21884/22169 21885/22170 +f 21829/22114 21935/22220 21884/22169 +f 21779/22064 21885/22170 21936/22221 +f 21831/22116 21886/22171 21832/22117 +f 21936/22221 21886/22171 21779/22064 +f 21883/22168 21832/22117 21937/22222 +f 21837/22122 21833/22118 21887/22172 +f 21888/22173 21887/22172 21781/22066 +f 21835/22120 21938/22223 21834/22119 +f 21888/22173 21834/22119 21938/22223 +f 21835/22120 21889/22174 21938/22223 +f 21939/22224 21836/22121 21890/22175 +f 21891/22176 21836/22121 21940/22225 +f 21941/22226 21890/22175 21837/22122 +f 21892/22177 21889/22174 21838/22123 +f 21933/22218 21892/22177 21774/22059 +f 21891/22176 21839/22124 21840/22125 +f 21841/22126 21844/22129 21942/22227 +f 21894/22179 21845/22130 21788/22073 +f 21943/22228 21894/22179 21841/22126 +f 21842/22127 21893/22178 21944/22229 +f 21842/22127 21944/22229 21843/22128 +f 21945/22230 21895/22180 21843/22128 +f 21789/22074 21895/22180 21896/22181 +f 21844/22129 21896/22181 21946/22231 +f 21897/22182 21898/22183 21792/22077 +f 21947/22232 21897/22182 21845/22130 +f 21898/22183 21850/22135 21846/22131 +f 21899/22184 21948/22233 21847/22132 +f 21847/22132 21949/22234 21900/22185 +f 21796/22081 21950/22235 21901/22186 +f 21901/22186 21902/22187 21795/22080 +f 21899/22184 21848/22133 21951/22236 +f 21952/22237 21848/22133 21902/22187 +f 21950/22235 21796/22081 21851/22136 +f 21798/22083 21898/22183 21903/22188 +f 21903/22188 21953/22238 21799/22084 +f 21904/22189 21799/22084 21954/22239 +f 21955/22240 21851/22136 21904/22189 +f 21905/22190 21801/22086 21906/22191 +f 21905/22190 21956/22241 21802/22087 +f 21900/22185 21906/22191 21853/22138 +f 21956/22241 21907/22192 21802/22087 +f 21854/22139 21907/22192 21957/22242 +f 21958/22243 21908/22193 21854/22139 +f 21909/22194 21910/22195 21804/22089 +f 21805/22090 21910/22195 21959/22244 +f 21911/22196 21805/22090 21959/22244 +f 21856/22141 21911/22196 21960/22245 +f 21856/22141 21961/22246 21912/22197 +f 21857/22142 21962/22247 21913/22198 +f 21858/22143 21913/22198 21963/22248 +f 21862/22147 21858/22143 21964/22249 +f 21965/22250 21914/22199 21859/22144 +f 21859/22144 21915/22200 21965/22250 +f 21860/22145 21966/22251 21916/22201 +f 21809/22094 21916/22201 21917/22202 +f 21914/22199 21967/22252 21860/22145 +f 21917/22202 21918/22203 21810/22095 +f 21918/22203 21968/22253 21861/22146 +f 21909/22194 21861/22146 21969/22254 +f 21862/22147 21964/22249 21919/22204 +f 21863/22148 21970/22255 21864/22149 +f 21919/22204 21970/22255 21863/22148 +f 21971/22256 21915/22200 21864/22149 +f 21865/22150 21866/22151 21972/22257 +f 21865/22150 21972/22257 21869/22154 +f 21920/22205 21973/22258 21866/22151 +f 21920/22205 21766/22051 21921/22206 +f 21867/22152 21908/22193 21921/22206 +f 21974/22259 21868/22153 21870/22155 +f 21816/22101 21768/22053 21922/22207 +f 21868/22153 21857/22142 21922/22207 +f 21975/22260 21923/22208 21869/22154 +f 21923/22208 21976/22261 21870/22155 +f 21977/22262 21924/22209 21817/22102 +f 21872/22157 21924/22209 21926/22211 +f 21925/22210 21873/22158 21978/22263 +f 21817/22102 21925/22210 21977/22262 +f 21979/22264 21873/22158 21912/22197 +f 21927/22212 21818/22103 21926/22211 +f 21819/22104 21927/22212 21928/22213 +f 21820/22105 21928/22213 21929/22214 +f 21877/22162 21874/22159 21980/22265 +f 21875/22160 21981/22266 21874/22159 +f 21875/22160 21929/22214 21981/22266 +f 21824/22109 21876/22161 21932/22217 +f 21876/22161 21930/22215 21932/22217 +f 21931/22216 21930/22215 21822/22107 +f 21877/22162 21982/22267 21931/22216 +f 21878/22163 21983/22268 21879/22164 +f 21932/22217 21984/22269 21878/22163 +f 21933/22218 21880/22165 21879/22164 +f 21881/22166 21883/22168 21985/22270 +f 21881/22166 21986/22271 21934/22219 +f 21893/22178 21882/22167 21987/22272 +f 21882/22167 21934/22219 21987/22272 +f 21935/22220 21839/22124 21891/22176 +f 21884/22169 21936/22221 21885/22170 +f 21935/22220 21988/22273 21884/22169 +f 21832/22117 21886/22171 21937/22222 +f 21886/22171 21936/22221 21937/22222 +f 21937/22222 21989/22274 21883/22168 +f 21887/22172 21941/22226 21837/22122 +f 21888/22173 21990/22275 21887/22172 +f 21938/22223 21991/22276 21888/22173 +f 21938/22223 21889/22174 21992/22277 +f 21890/22175 21993/22278 21939/22224 +f 21836/22121 21939/22224 21940/22225 +f 21994/22279 21891/22176 21940/22225 +f 21890/22175 21941/22226 21995/22280 +f 21892/22177 21996/22281 21889/22174 +f 21892/22177 21933/22218 21996/22281 +f 21844/22129 21997/22282 21942/22227 +f 21942/22227 21998/22283 21841/22126 +f 21999/22284 21845/22130 21894/22179 +f 21894/22179 21943/22228 22000/22285 +f 21943/22228 21841/22126 22001/22286 +f 21893/22178 22002/22287 21944/22229 +f 21944/22229 21945/22230 21843/22128 +f 21945/22230 21896/22181 21895/22180 +f 22003/22288 21946/22231 21896/22181 +f 21844/22129 21946/22231 21997/22282 +f 21898/22183 21897/22182 21903/22188 +f 21947/22232 21845/22130 22004/22289 +f 21897/22182 21947/22232 22005/22290 +f 21899/22184 21951/22236 21948/22233 +f 21847/22132 21948/22233 21949/22234 +f 21900/22185 21949/22234 22006/22291 +f 21950/22235 22007/22292 21901/22186 +f 22008/22293 21902/22187 21901/22186 +f 22009/22294 21951/22236 21848/22133 +f 21952/22237 22009/22294 21848/22133 +f 21902/22187 22010/22295 21952/22237 +f 21851/22136 22011/22296 21950/22235 +f 21897/22182 21953/22238 21903/22188 +f 21953/22238 21954/22239 21799/22084 +f 21955/22240 21904/22189 21954/22239 +f 22011/22296 21851/22136 21955/22240 +f 21906/22191 22012/22297 21905/22190 +f 21956/22241 21905/22190 22012/22297 +f 21900/22185 22006/22291 21906/22191 +f 21956/22241 22013/22298 21907/22192 +f 22013/22298 21957/22242 21907/22192 +f 21957/22242 21958/22243 21854/22139 +f 21958/22243 22014/22299 21908/22193 +f 21910/22195 21909/22194 22015/22300 +f 21910/22195 22015/22300 21959/22244 +f 22015/22300 21911/22196 21959/22244 +f 22016/22301 21960/22245 21911/22196 +f 21960/22245 22017/22302 21856/22141 +f 22018/22303 21912/22197 21961/22246 +f 22019/22304 21961/22246 21856/22141 +f 21962/22247 21857/22142 22020/22305 +f 21963/22248 21913/22198 21962/22247 +f 21858/22143 21963/22248 21964/22249 +f 21965/22250 21967/22252 21914/22199 +f 21971/22256 21965/22250 21915/22200 +f 21860/22145 21967/22252 21966/22251 +f 21966/22251 22021/22306 21916/22201 +f 21917/22202 21916/22201 22021/22306 +f 22022/22307 21918/22203 21917/22202 +f 21968/22253 21918/22203 22022/22307 +f 21969/22254 21861/22146 21968/22253 +f 21909/22194 21969/22254 22015/22300 +f 21964/22249 22023/22308 21919/22204 +f 21864/22149 21970/22255 21971/22256 +f 22023/22308 21970/22255 21919/22204 +f 21972/22257 21866/22151 21973/22258 +f 21975/22260 21869/22154 21972/22257 +f 21973/22258 21920/22205 21921/22206 +f 21921/22206 21908/22193 22014/22299 +f 21868/22153 21974/22259 22024/22309 +f 21974/22259 21870/22155 21976/22261 +f 21857/22142 21868/22153 22020/22305 +f 22025/22310 21923/22208 21975/22260 +f 21923/22208 22025/22310 21976/22261 +f 21924/22209 21977/22262 22026/22311 +f 21926/22211 21924/22209 21927/22212 +f 21873/22158 22027/22312 21978/22263 +f 21978/22263 22028/22313 21925/22210 +f 22028/22313 21977/22262 21925/22210 +f 21912/22197 22029/22314 21979/22264 +f 22027/22312 21873/22158 21979/22264 +f 21927/22212 22030/22315 21928/22213 +f 22030/22315 21929/22214 21928/22213 +f 21877/22162 21980/22265 21982/22267 +f 21874/22159 22031/22316 21980/22265 +f 21981/22266 22031/22316 21874/22159 +f 21981/22266 21929/22214 22032/22317 +f 21932/22217 21930/22215 21982/22267 +f 21931/22216 21982/22267 21930/22215 +f 22033/22318 21983/22268 21878/22163 +f 21879/22164 21983/22268 21996/22281 +f 21932/22217 21982/22267 21984/22269 +f 21878/22163 21984/22269 22033/22318 +f 21996/22281 21933/22218 21879/22164 +f 21985/22270 21986/22271 21881/22166 +f 21883/22168 21989/22274 21985/22270 +f 21986/22271 22034/22319 21934/22219 +f 21893/22178 21987/22272 22002/22287 +f 21934/22219 22035/22320 21987/22272 +f 22036/22321 21935/22220 21891/22176 +f 21936/22221 21884/22169 22037/22322 +f 21988/22273 21935/22220 22036/22321 +f 21988/22273 22038/22323 21884/22169 +f 22037/22322 21937/22222 21936/22221 +f 22039/22324 21989/22274 21937/22222 +f 21941/22226 21887/22172 22040/22325 +f 22040/22325 21887/22172 21990/22275 +f 21888/22173 22041/22326 21990/22275 +f 21991/22276 21938/22223 22042/22327 +f 22041/22326 21888/22173 21991/22276 +f 21992/22277 22042/22327 21938/22223 +f 21992/22277 21889/22174 22043/22328 +f 21993/22278 21890/22175 22044/22329 +f 21993/22278 22045/22330 21939/22224 +f 21940/22225 21939/22224 22045/22330 +f 21891/22176 21994/22279 22036/22321 +f 21994/22279 21940/22225 22046/22331 +f 22040/22325 21995/22280 21941/22226 +f 22044/22329 21890/22175 21995/22280 +f 21889/22174 21996/22281 22043/22328 +f 21942/22227 21997/22282 22047/22332 +f 22048/22333 21998/22283 21942/22227 +f 22001/22286 21841/22126 21998/22283 +f 21999/22284 22004/22289 21845/22130 +f 21999/22284 21894/22179 22000/22285 +f 22000/22285 21943/22228 22049/22334 +f 21943/22228 22001/22286 22049/22334 +f 21944/22229 22002/22287 22050/22335 +f 22050/22335 21945/22230 21944/22229 +f 22051/22336 21896/22181 21945/22230 +f 21896/22181 22051/22336 22003/22288 +f 22003/22288 22052/22337 21946/22231 +f 21997/22282 21946/22231 22053/22338 +f 22054/22339 21947/22232 22004/22289 +f 22005/22290 21947/22232 22055/22340 +f 22056/22341 21897/22182 22005/22290 +f 22057/22342 21948/22233 21951/22236 +f 21949/22234 21948/22233 22058/22343 +f 22059/22344 22006/22291 21949/22234 +f 22007/22292 22060/22345 21901/22186 +f 22007/22292 21950/22235 22061/22346 +f 22008/22293 22010/22295 21902/22187 +f 21901/22186 22060/22345 22008/22293 +f 21951/22236 22009/22294 22057/22342 +f 22062/22347 22009/22294 21952/22237 +f 22010/22295 22063/22348 21952/22237 +f 21950/22235 22011/22296 22061/22346 +f 21897/22182 22064/22349 21953/22238 +f 21953/22238 22065/22350 21954/22239 +f 22066/22351 21955/22240 21954/22239 +f 22067/22352 22011/22296 21955/22240 +f 22068/22353 22012/22297 21906/22191 +f 22069/22354 21956/22241 22012/22297 +f 22006/22291 22068/22353 21906/22191 +f 21956/22241 22070/22355 22013/22298 +f 21957/22242 22013/22298 22071/22356 +f 21958/22243 21957/22242 22072/22357 +f 22014/22299 21958/22243 22073/22358 +f 22015/22300 22016/22301 21911/22196 +f 22016/22301 22074/22359 21960/22245 +f 22017/22302 22075/22360 21856/22141 +f 21960/22245 22074/22359 22017/22302 +f 22076/22361 21912/22197 22018/22303 +f 21961/22246 22077/22362 22018/22303 +f 22075/22360 22019/22304 21856/22141 +f 21961/22246 22019/22304 22077/22362 +f 22020/22305 22078/22363 21962/22247 +f 22078/22363 21963/22248 21962/22247 +f 21964/22249 21963/22248 22079/22364 +f 22080/22365 21967/22252 21965/22250 +f 22081/22366 21965/22250 21971/22256 +f 21966/22251 21967/22252 22080/22365 +f 22082/22367 22021/22306 21966/22251 +f 22022/22307 21917/22202 22021/22306 +f 22022/22307 22083/22368 21968/22253 +f 21968/22253 22084/22369 21969/22254 +f 21969/22254 22085/22370 22015/22300 +f 21964/22249 22079/22364 22023/22308 +f 21970/22255 22081/22366 21971/22256 +f 21970/22255 22023/22308 22086/22371 +f 21972/22257 21973/22258 22087/22372 +f 21975/22260 21972/22257 22087/22372 +f 22088/22373 21973/22258 21921/22206 +f 22014/22299 22088/22373 21921/22206 +f 22024/22309 21974/22259 22089/22374 +f 22090/22375 21868/22153 22024/22309 +f 21976/22261 22091/22376 21974/22259 +f 21868/22153 22090/22375 22020/22305 +f 21975/22260 22092/22377 22025/22310 +f 22091/22376 21976/22261 22025/22310 +f 21924/22209 22026/22311 21927/22212 +f 22026/22311 21977/22262 22093/22378 +f 21978/22263 22027/22312 22094/22379 +f 21978/22263 22095/22380 22028/22313 +f 21977/22262 22028/22313 22093/22378 +f 22029/22314 21912/22197 22076/22361 +f 22029/22314 22096/22381 21979/22264 +f 22097/22382 22027/22312 21979/22264 +f 22098/22383 22030/22315 21927/22212 +f 21929/22214 22030/22315 22099/22384 +f 21980/22265 22100/22385 21982/22267 +f 21980/22265 22031/22316 22101/22386 +f 21981/22266 22101/22386 22031/22316 +f 22099/22384 22032/22317 21929/22214 +f 22032/22317 22099/22384 21981/22266 +f 22033/22318 22043/22328 21983/22268 +f 21996/22281 21983/22268 22043/22328 +f 22100/22385 21984/22269 21982/22267 +f 21984/22269 22102/22387 22033/22318 +f 21986/22271 21985/22270 22103/22388 +f 21985/22270 21989/22274 22039/22324 +f 22034/22319 21986/22271 22104/22389 +f 22034/22319 22035/22320 21934/22219 +f 22105/22390 22002/22287 21987/22272 +f 22105/22390 21987/22272 22035/22320 +f 22037/22322 21884/22169 22106/22391 +f 22107/22392 21988/22273 22036/22321 +f 22106/22391 21884/22169 22038/22323 +f 21988/22273 22108/22393 22038/22323 +f 22109/22394 21937/22222 22037/22322 +f 22039/22324 21937/22222 22109/22394 +f 21990/22275 22110/22395 22040/22325 +f 22041/22326 22111/22396 21990/22275 +f 22042/22327 22112/22397 21991/22276 +f 22113/22398 22041/22326 21991/22276 +f 22114/22399 22042/22327 21992/22277 +f 21992/22277 22043/22328 22033/22318 +f 21993/22278 22044/22329 22115/22400 +f 22116/22401 22045/22330 21993/22278 +f 21940/22225 22045/22330 22046/22331 +f 22036/22321 21994/22279 22117/22402 +f 22046/22331 22117/22402 21994/22279 +f 22040/22325 22110/22395 21995/22280 +f 22118/22403 22044/22329 21995/22280 +f 22047/22332 21997/22282 22053/22338 +f 22047/22332 22048/22333 21942/22227 +f 22119/22404 21998/22283 22048/22333 +f 22001/22286 21998/22283 22120/22405 +f 22121/22406 22004/22289 21999/22284 +f 22122/22407 21999/22284 22000/22285 +f 22000/22285 22049/22334 22120/22405 +f 22120/22405 22049/22334 22001/22286 +f 22002/22287 22003/22288 22050/22335 +f 22050/22335 22051/22336 21945/22230 +f 22051/22336 22050/22335 22003/22288 +f 21946/22231 22052/22337 22123/22408 +f 22052/22337 22003/22288 22002/22287 +f 21946/22231 22124/22409 22053/22338 +f 22054/22339 22055/22340 21947/22232 +f 22054/22339 22004/22289 22121/22406 +f 22005/22290 22055/22340 22125/22410 +f 22056/22341 22064/22349 21897/22182 +f 22125/22410 22056/22341 22005/22290 +f 21948/22233 22057/22342 22058/22343 +f 22058/22343 22126/22411 21949/22234 +f 22127/22412 22006/22291 22059/22344 +f 21949/22234 22128/22413 22059/22344 +f 22129/22414 22060/22345 22007/22292 +f 22129/22414 22007/22292 22061/22346 +f 22010/22295 22008/22293 22130/22415 +f 22008/22293 22060/22345 22131/22416 +f 22132/22417 22057/22342 22009/22294 +f 22063/22348 22062/22347 21952/22237 +f 22062/22347 22132/22417 22009/22294 +f 22133/22418 22063/22348 22010/22295 +f 22129/22414 22061/22346 22011/22296 +f 21953/22238 22064/22349 22134/22419 +f 21953/22238 22134/22419 22065/22350 +f 22065/22350 22066/22351 21954/22239 +f 22066/22351 22067/22352 21955/22240 +f 22011/22296 22067/22352 22135/22420 +f 22068/22353 22069/22354 22012/22297 +f 22069/22354 22070/22355 21956/22241 +f 22068/22353 22006/22291 22136/22421 +f 22137/22422 22013/22298 22070/22355 +f 22072/22357 21957/22242 22071/22356 +f 22137/22422 22071/22356 22013/22298 +f 21958/22243 22072/22357 22073/22358 +f 22073/22358 22138/22423 22014/22299 +f 22016/22301 22015/22300 22085/22370 +f 22074/22359 22016/22301 22085/22370 +f 22017/22302 22074/22359 22075/22360 +f 22018/22303 22139/22424 22076/22361 +f 22018/22303 22077/22362 22139/22424 +f 22019/22304 22075/22360 22140/22425 +f 22077/22362 22019/22304 22140/22425 +f 22078/22363 22020/22305 22090/22375 +f 21963/22248 22078/22363 22141/22426 +f 22079/22364 21963/22248 22141/22426 +f 22142/22427 22080/22365 21965/22250 +f 22081/22366 22142/22427 21965/22250 +f 21966/22251 22080/22365 22082/22367 +f 22082/22367 22143/22428 22021/22306 +f 22143/22428 22022/22307 22021/22306 +f 22143/22428 22083/22368 22022/22307 +f 21968/22253 22083/22368 22084/22369 +f 22084/22369 22144/22429 21969/22254 +f 21969/22254 22144/22429 22085/22370 +f 22023/22308 22079/22364 22145/22430 +f 22081/22366 21970/22255 22146/22431 +f 22086/22371 22023/22308 22145/22430 +f 21970/22255 22086/22371 22146/22431 +f 22087/22372 21973/22258 22147/22432 +f 22087/22372 22148/22433 21975/22260 +f 21973/22258 22088/22373 22149/22434 +f 22014/22299 22149/22434 22088/22373 +f 22150/22435 22024/22309 22089/22374 +f 21974/22259 22151/22436 22089/22374 +f 22150/22435 22090/22375 22024/22309 +f 21974/22259 22091/22376 22151/22436 +f 22092/22377 22091/22376 22025/22310 +f 21975/22260 22148/22433 22092/22377 +f 22026/22311 22098/22383 21927/22212 +f 22098/22383 22026/22311 22093/22378 +f 22094/22379 22027/22312 22152/22437 +f 21978/22263 22094/22379 22095/22380 +f 22028/22313 22095/22380 22153/22438 +f 22093/22378 22028/22313 22153/22438 +f 22076/22361 22154/22439 22029/22314 +f 22155/22440 22096/22381 22029/22314 +f 22096/22381 22156/22441 21979/22264 +f 22152/22437 22027/22312 22097/22382 +f 22157/22442 22097/22382 21979/22264 +f 22030/22315 22098/22383 22158/22443 +f 22158/22443 22099/22384 22030/22315 +f 21980/22265 22101/22386 22100/22385 +f 22099/22384 22101/22386 21981/22266 +f 21984/22269 22100/22385 22102/22387 +f 22114/22399 22033/22318 22102/22387 +f 22103/22388 22159/22444 21986/22271 +f 21985/22270 22039/22324 22103/22388 +f 22160/22445 22034/22319 22104/22389 +f 22104/22389 21986/22271 22159/22444 +f 22105/22390 22035/22320 22034/22319 +f 22105/22390 22161/22446 22002/22287 +f 22162/22447 22037/22322 22106/22391 +f 22108/22393 21988/22273 22107/22392 +f 22036/22321 22163/22448 22107/22392 +f 22038/22323 22108/22393 22106/22391 +f 22037/22322 22162/22447 22109/22394 +f 22039/22324 22109/22394 22164/22449 +f 22110/22395 21990/22275 22165/22450 +f 22113/22398 22111/22396 22041/22326 +f 21990/22275 22111/22396 22165/22450 +f 22166/22451 21991/22276 22112/22397 +f 22167/22452 22112/22397 22042/22327 +f 22166/22451 22113/22398 21991/22276 +f 22114/22399 22102/22387 22042/22327 +f 22114/22399 21992/22277 22033/22318 +f 22115/22400 22044/22329 22168/22453 +f 21993/22278 22115/22400 22169/22454 +f 22116/22401 22170/22455 22045/22330 +f 22171/22456 22116/22401 21993/22278 +f 22046/22331 22045/22330 22170/22455 +f 22163/22448 22036/22321 22117/22402 +f 22163/22448 22117/22402 22046/22331 +f 21995/22280 22110/22395 22118/22403 +f 22168/22453 22044/22329 22118/22403 +f 22047/22332 22053/22338 22172/22457 +f 22047/22332 22173/22458 22048/22333 +f 21998/22283 22119/22404 22174/22459 +f 22175/22460 22119/22404 22048/22333 +f 21998/22283 22174/22459 22120/22405 +f 22121/22406 21999/22284 22176/22461 +f 22176/22461 21999/22284 22122/22407 +f 22177/22462 22122/22407 22000/22285 +f 22177/22462 22000/22285 22120/22405 +f 22123/22408 22052/22337 22178/22463 +f 21946/22231 22123/22408 22124/22409 +f 22179/22464 22052/22337 22002/22287 +f 22053/22338 22124/22409 22172/22457 +f 22055/22340 22054/22339 22180/22465 +f 22181/22466 22054/22339 22121/22406 +f 22125/22410 22055/22340 22182/22467 +f 22056/22341 22183/22468 22064/22349 +f 22056/22341 22125/22410 22184/22469 +f 22057/22342 22126/22411 22058/22343 +f 21949/22234 22126/22411 22128/22413 +f 22185/22470 22006/22291 22127/22412 +f 22186/22471 22127/22412 22059/22344 +f 22187/22472 22059/22344 22128/22413 +f 22060/22345 22129/22414 22131/22416 +f 22008/22293 22188/22473 22130/22415 +f 22133/22418 22010/22295 22130/22415 +f 22008/22293 22131/22416 22188/22473 +f 22057/22342 22132/22417 22189/22474 +f 22190/22475 22062/22347 22063/22348 +f 22062/22347 22191/22476 22132/22417 +f 22133/22418 22192/22477 22063/22348 +f 22011/22296 22135/22420 22129/22414 +f 22064/22349 22183/22468 22134/22419 +f 22134/22419 22066/22351 22065/22350 +f 22193/22478 22067/22352 22066/22351 +f 22067/22352 22194/22479 22135/22420 +f 22068/22353 22195/22480 22069/22354 +f 22069/22354 22196/22481 22070/22355 +f 22185/22470 22136/22421 22006/22291 +f 22136/22421 22195/22480 22068/22353 +f 22137/22422 22070/22355 22196/22481 +f 22071/22356 22138/22423 22072/22357 +f 22197/22482 22071/22356 22137/22422 +f 22073/22358 22072/22357 22138/22423 +f 22198/22483 22014/22299 22138/22423 +f 22085/22370 22199/22484 22074/22359 +f 22075/22360 22074/22359 22140/22425 +f 22139/22424 22154/22439 22076/22361 +f 22140/22425 22139/22424 22077/22362 +f 22078/22363 22090/22375 22150/22435 +f 22078/22363 22200/22485 22141/22426 +f 22141/22426 22201/22486 22079/22364 +f 22142/22427 22202/22487 22080/22365 +f 22081/22366 22146/22431 22142/22427 +f 22202/22487 22082/22367 22080/22365 +f 22203/22488 22143/22428 22082/22367 +f 22143/22428 22204/22489 22083/22368 +f 22084/22369 22083/22368 22205/22490 +f 22144/22429 22084/22369 22206/22491 +f 22144/22429 22199/22484 22085/22370 +f 22201/22486 22145/22430 22079/22364 +f 22145/22430 22207/22492 22086/22371 +f 22086/22371 22208/22493 22146/22431 +f 22147/22432 21973/22258 22149/22434 +f 22148/22433 22087/22372 22147/22432 +f 22149/22434 22014/22299 22198/22483 +f 22209/22494 22150/22435 22089/22374 +f 22210/22495 22089/22374 22151/22436 +f 22091/22376 22211/22496 22151/22436 +f 22092/22377 22212/22497 22091/22376 +f 22148/22433 22147/22432 22092/22377 +f 22213/22498 22098/22383 22093/22378 +f 22095/22380 22094/22379 22152/22437 +f 22214/22499 22153/22438 22095/22380 +f 22213/22498 22093/22378 22153/22438 +f 22215/22500 22029/22314 22154/22439 +f 22096/22381 22155/22440 22216/22501 +f 22155/22440 22029/22314 22215/22500 +f 22156/22441 22096/22381 22216/22501 +f 22156/22441 22217/22502 21979/22264 +f 22097/22382 22218/22503 22152/22437 +f 22097/22382 22157/22442 22218/22503 +f 21979/22264 22217/22502 22157/22442 +f 22098/22383 22213/22498 22158/22443 +f 22158/22443 22101/22386 22099/22384 +f 22100/22385 22101/22386 22219/22504 +f 22102/22387 22100/22385 22219/22504 +f 22220/22505 22159/22444 22103/22388 +f 22039/22324 22220/22505 22103/22388 +f 22160/22445 22221/22506 22034/22319 +f 22159/22444 22160/22445 22104/22389 +f 22105/22390 22034/22319 22221/22506 +f 22161/22446 22179/22464 22002/22287 +f 22161/22446 22105/22390 22221/22506 +f 22162/22447 22106/22391 22222/22507 +f 22107/22392 22223/22508 22108/22393 +f 22163/22448 22224/22509 22107/22392 +f 22222/22507 22106/22391 22108/22393 +f 22162/22447 22225/22510 22109/22394 +f 22039/22324 22164/22449 22220/22505 +f 22164/22449 22109/22394 22226/22511 +f 22165/22450 22227/22512 22110/22395 +f 22228/22513 22111/22396 22113/22398 +f 22111/22396 22228/22513 22165/22450 +f 22166/22451 22112/22397 22229/22514 +f 22102/22387 22167/22452 22042/22327 +f 22167/22452 22230/22515 22112/22397 +f 22228/22513 22113/22398 22166/22451 +f 22115/22400 22168/22453 22169/22454 +f 22171/22456 21993/22278 22169/22454 +f 22231/22516 22170/22455 22116/22401 +f 22232/22517 22116/22401 22171/22456 +f 22170/22455 22233/22518 22046/22331 +f 22163/22448 22046/22331 22224/22509 +f 22118/22403 22110/22395 22234/22519 +f 22235/22520 22168/22453 22118/22403 +f 22047/22332 22172/22457 22173/22458 +f 22175/22460 22048/22333 22173/22458 +f 22236/22521 22174/22459 22119/22404 +f 22119/22404 22175/22460 22237/22522 +f 22120/22405 22174/22459 22177/22462 +f 22238/22523 22121/22406 22176/22461 +f 22122/22407 22239/22524 22176/22461 +f 22122/22407 22177/22462 22240/22525 +f 22178/22463 22052/22337 22241/22526 +f 22242/22527 22123/22408 22178/22463 +f 22243/22528 22124/22409 22123/22408 +f 22179/22464 22244/22529 22052/22337 +f 22124/22409 22245/22530 22172/22457 +f 22180/22465 22182/22467 22055/22340 +f 22180/22465 22054/22339 22246/22531 +f 22054/22339 22181/22466 22246/22531 +f 22238/22523 22181/22466 22121/22406 +f 22184/22469 22125/22410 22182/22467 +f 22184/22469 22183/22468 22056/22341 +f 22057/22342 22189/22474 22126/22411 +f 22128/22413 22126/22411 22247/22532 +f 22248/22533 22185/22470 22127/22412 +f 22248/22533 22127/22412 22186/22471 +f 22186/22471 22059/22344 22187/22472 +f 22128/22413 22247/22532 22187/22472 +f 22131/22416 22129/22414 22249/22534 +f 22130/22415 22188/22473 22250/22535 +f 22130/22415 22251/22536 22133/22418 +f 22188/22473 22131/22416 22252/22537 +f 22189/22474 22132/22417 22253/22538 +f 22062/22347 22190/22475 22191/22476 +f 22192/22477 22190/22475 22063/22348 +f 22254/22539 22132/22417 22191/22476 +f 22133/22418 22255/22540 22192/22477 +f 22135/22420 22249/22534 22129/22414 +f 22256/22541 22134/22419 22183/22468 +f 22193/22478 22066/22351 22134/22419 +f 22194/22479 22067/22352 22193/22478 +f 22135/22420 22194/22479 22257/22542 +f 22196/22481 22069/22354 22195/22480 +f 22258/22543 22136/22421 22185/22470 +f 22136/22421 22259/22544 22195/22480 +f 22196/22481 22197/22482 22137/22422 +f 22260/22545 22138/22423 22071/22356 +f 22260/22545 22071/22356 22197/22482 +f 22198/22483 22138/22423 22261/22546 +f 22074/22359 22199/22484 22262/22547 +f 22262/22547 22140/22425 22074/22359 +f 22154/22439 22139/22424 22263/22548 +f 22140/22425 22264/22549 22139/22424 +f 22200/22485 22078/22363 22150/22435 +f 22200/22485 22201/22486 22141/22426 +f 22202/22487 22142/22427 22146/22431 +f 22265/22550 22082/22367 22202/22487 +f 22204/22489 22143/22428 22203/22488 +f 22203/22488 22082/22367 22265/22550 +f 22204/22489 22266/22551 22083/22368 +f 22205/22490 22083/22368 22266/22551 +f 22084/22369 22205/22490 22206/22491 +f 22206/22491 22267/22552 22144/22429 +f 22144/22429 22268/22553 22199/22484 +f 22269/22554 22145/22430 22201/22486 +f 22207/22492 22208/22493 22086/22371 +f 22270/22555 22207/22492 22145/22430 +f 22271/22556 22146/22431 22208/22493 +f 22272/22557 22147/22432 22149/22434 +f 22149/22434 22198/22483 22273/22558 +f 22274/22559 22209/22494 22089/22374 +f 22209/22494 22200/22485 22150/22435 +f 22210/22495 22275/22560 22089/22374 +f 22276/22561 22210/22495 22151/22436 +f 22151/22436 22211/22496 22276/22561 +f 22212/22497 22211/22496 22091/22376 +f 22277/22562 22212/22497 22092/22377 +f 22092/22377 22147/22432 22278/22563 +f 22152/22437 22214/22499 22095/22380 +f 22214/22499 22279/22564 22153/22438 +f 22279/22564 22213/22498 22153/22438 +f 22154/22439 5189/22565 22215/22500 +f 22216/22501 22155/22440 5099/22566 +f 22215/22500 5138/22567 22155/22440 +f 5036/22568 22156/22441 22216/22501 +f 22217/22502 22156/22441 22280/22569 +f 22152/22437 22218/22503 22214/22499 +f 4992/22570 22218/22503 22157/22442 +f 4992/22570 22157/22442 22217/22502 +f 4886/22571 22158/22443 22213/22498 +f 4844/22572 22101/22386 22158/22443 +f 22101/22386 4844/22572 22219/22504 +f 22102/22387 22219/22504 22167/22452 +f 22220/22505 22281/22573 22159/22444 +f 22221/22506 22160/22445 22282/22574 +f 22160/22445 22159/22444 22282/22574 +f 22221/22506 22179/22464 22161/22446 +f 22162/22447 22222/22507 22223/22508 +f 22222/22507 22108/22393 22223/22508 +f 22107/22392 22283/22575 22223/22508 +f 22107/22392 22224/22509 22284/22576 +f 22225/22510 22226/22511 22109/22394 +f 22225/22510 22162/22447 22283/22575 +f 22164/22449 22226/22511 22220/22505 +f 22227/22512 22234/22519 22110/22395 +f 22227/22512 22165/22450 22285/22577 +f 22165/22450 22228/22513 22285/22577 +f 22229/22514 22112/22397 22230/22515 +f 22286/22578 22166/22451 22229/22514 +f 22287/22579 22230/22515 22167/22452 +f 22166/22451 22286/22578 22228/22513 +f 22169/22454 22168/22453 22288/22580 +f 22289/22581 22171/22456 22169/22454 +f 22231/22516 22116/22401 22290/22582 +f 22170/22455 22231/22516 22291/22583 +f 22171/22456 22292/22584 22232/22517 +f 22290/22582 22116/22401 22232/22517 +f 22293/22585 22233/22518 22170/22455 +f 22233/22518 22224/22509 22046/22331 +f 22234/22519 22235/22520 22118/22403 +f 22235/22520 22294/22586 22168/22453 +f 22172/22457 22295/22587 22173/22458 +f 22173/22458 22296/22588 22175/22460 +f 22297/22589 22174/22459 22236/22521 +f 22119/22404 22298/22590 22236/22521 +f 22298/22590 22119/22404 22237/22522 +f 22237/22522 22175/22460 22299/22591 +f 22297/22589 22177/22462 22174/22459 +f 22176/22461 22239/22524 22238/22523 +f 22122/22407 22300/22592 22239/22524 +f 22300/22592 22122/22407 22240/22525 +f 22301/22593 22240/22525 22177/22462 +f 22178/22463 22241/22526 22242/22527 +f 22244/22529 22241/22526 22052/22337 +f 22123/22408 22242/22527 22243/22528 +f 22302/22594 22124/22409 22243/22528 +f 22244/22529 22179/22464 22303/22595 +f 22245/22530 22124/22409 22304/22596 +f 22305/22597 22172/22457 22245/22530 +f 22246/22531 22182/22467 22180/22465 +f 22246/22531 22181/22466 22306/22598 +f 22181/22466 22238/22523 22307/22599 +f 22184/22469 22182/22467 22308/22600 +f 22184/22469 22309/22601 22183/22468 +f 22189/22474 22310/22602 22126/22411 +f 22310/22602 22247/22532 22126/22411 +f 22248/22533 22311/22603 22185/22470 +f 22186/22471 22312/22604 22248/22533 +f 22187/22472 22313/22605 22186/22471 +f 22247/22532 22313/22605 22187/22472 +f 22131/22416 22249/22534 22252/22537 +f 22250/22535 22188/22473 22314/22606 +f 22250/22535 22251/22536 22130/22415 +f 22252/22537 22314/22606 22188/22473 +f 22254/22539 22253/22538 22132/22417 +f 22253/22538 22315/22607 22189/22474 +f 22316/22608 22191/22476 22190/22475 +f 22192/22477 22317/22609 22190/22475 +f 22318/22610 22254/22539 22191/22476 +f 22255/22540 22317/22609 22192/22477 +f 22249/22534 22135/22420 22319/22611 +f 22134/22419 22256/22541 22320/22612 +f 22256/22541 22183/22468 22309/22601 +f 22320/22612 22193/22478 22134/22419 +f 22320/22612 22194/22479 22193/22478 +f 22194/22479 22321/22613 22257/22542 +f 22319/22611 22135/22420 22257/22542 +f 22196/22481 22195/22480 22259/22544 +f 22258/22543 22259/22544 22136/22421 +f 22185/22470 22311/22603 22258/22543 +f 22322/22614 22197/22482 22196/22481 +f 22261/22546 22138/22423 22260/22545 +f 22260/22545 22197/22482 22323/22615 +f 22198/22483 22261/22546 22273/22558 +f 22262/22547 22199/22484 22324/22616 +f 22140/22425 22262/22547 22325/22617 +f 22263/22548 22139/22424 22264/22549 +f 22263/22548 5189/22565 22154/22439 +f 22264/22549 22140/22425 22325/22617 +f 22200/22485 22209/22494 22201/22486 +f 22202/22487 22146/22431 22326/22618 +f 22202/22487 22326/22618 22265/22550 +f 22204/22489 22203/22488 22327/22619 +f 22265/22550 22328/22620 22203/22488 +f 22329/22621 22266/22551 22204/22489 +f 22266/22551 22329/22621 22205/22490 +f 22205/22490 22329/22621 22206/22491 +f 22268/22553 22144/22429 22267/22552 +f 22330/22622 22267/22552 22206/22491 +f 22199/22484 22268/22553 22331/22623 +f 22145/22430 22269/22554 22332/22624 +f 22201/22486 22209/22494 22269/22554 +f 22207/22492 22333/22625 22208/22493 +f 22332/22624 22270/22555 22145/22430 +f 22333/22625 22207/22492 22270/22555 +f 22334/22626 22271/22556 22208/22493 +f 22146/22431 22271/22556 22326/22618 +f 22272/22557 22278/22563 22147/22432 +f 22272/22557 22149/22434 22273/22558 +f 22209/22494 22274/22559 22335/22627 +f 22275/22560 22274/22559 22089/22374 +f 22275/22560 22210/22495 22336/22628 +f 22336/22628 22210/22495 22276/22561 +f 22276/22561 22211/22496 22337/22629 +f 22211/22496 22212/22497 22337/22629 +f 22092/22377 22278/22563 22277/22562 +f 22338/22630 22212/22497 22277/22562 +f 22339/22631 22279/22564 22214/22499 +f 22213/22498 22279/22564 22340/22632 +f 5189/22565 5138/22567 22215/22500 +f 22155/22440 5138/22567 5099/22566 +f 5099/22566 5072/22633 22216/22501 +f 22280/22569 22156/22441 5036/22568 +f 22216/22501 5072/22633 5036/22568 +f 22280/22569 5013/22634 22217/22502 +f 22218/22503 4968/22635 22214/22499 +f 4968/22635 22218/22503 4992/22570 +f 22217/22502 5013/22634 4992/22570 +f 4844/22572 22158/22443 4886/22571 +f 22340/22632 4886/22571 22213/22498 +f 22341/22636 22219/22504 4844/22572 +f 22167/22452 22219/22504 22287/22579 +f 22282/22574 22159/22444 22281/22573 +f 22342/22637 22281/22573 22220/22505 +f 22282/22574 22343/22638 22221/22506 +f 22221/22506 22344/22639 22179/22464 +f 22162/22447 22223/22508 22283/22575 +f 22345/22640 22283/22575 22107/22392 +f 22346/22641 22107/22392 22284/22576 +f 22224/22509 22233/22518 22284/22576 +f 22283/22575 22226/22511 22225/22510 +f 22342/22637 22220/22505 22226/22511 +f 22227/22512 22347/22642 22234/22519 +f 22227/22512 22285/22577 22348/22643 +f 22228/22513 22349/22644 22285/22577 +f 22229/22514 22230/22515 22350/22645 +f 22351/22646 22286/22578 22229/22514 +f 22230/22515 22287/22579 22352/22647 +f 22349/22644 22228/22513 22286/22578 +f 22168/22453 22353/22648 22288/22580 +f 22169/22454 22288/22580 22354/22649 +f 22171/22456 22289/22581 22292/22584 +f 22355/22650 22289/22581 22169/22454 +f 22356/22651 22231/22516 22290/22582 +f 22291/22583 22231/22516 22356/22651 +f 22291/22583 22293/22585 22170/22455 +f 22292/22584 22357/22652 22232/22517 +f 22357/22652 22290/22582 22232/22517 +f 22233/22518 22293/22585 22284/22576 +f 22235/22520 22234/22519 22347/22642 +f 22294/22586 22235/22520 22347/22642 +f 22294/22586 22358/22653 22168/22453 +f 22295/22587 22172/22457 22305/22597 +f 22173/22458 22295/22587 22296/22588 +f 22175/22460 22296/22588 22359/22654 +f 22236/22521 22360/22655 22297/22589 +f 22361/22656 22236/22521 22298/22590 +f 22361/22656 22298/22590 22237/22522 +f 22359/22654 22299/22591 22175/22460 +f 22237/22522 22299/22591 22362/22657 +f 22177/22462 22297/22589 22301/22593 +f 22238/22523 22239/22524 22307/22599 +f 22300/22592 22363/22658 22239/22524 +f 22300/22592 22240/22525 22364/22659 +f 22240/22525 22301/22593 22364/22659 +f 22365/22660 22242/22527 22241/22526 +f 22244/22529 22303/22595 22241/22526 +f 22243/22528 22242/22527 22365/22660 +f 22304/22596 22124/22409 22302/22594 +f 22366/22661 22302/22594 22243/22528 +f 22303/22595 22179/22464 22344/22639 +f 22245/22530 22304/22596 22305/22597 +f 22367/22662 22182/22467 22246/22531 +f 22368/22663 22246/22531 22306/22598 +f 22306/22598 22181/22466 22307/22599 +f 22309/22601 22184/22469 22308/22600 +f 22182/22467 22367/22662 22308/22600 +f 22315/22607 22310/22602 22189/22474 +f 22313/22605 22247/22532 22310/22602 +f 22312/22604 22311/22603 22248/22533 +f 22312/22604 22186/22471 22369/22664 +f 22369/22664 22186/22471 22313/22605 +f 22252/22537 22249/22534 22319/22611 +f 22370/22665 22314/22606 22252/22537 +f 22371/22666 22253/22538 22254/22539 +f 22372/22667 22315/22607 22253/22538 +f 22190/22475 22317/22609 22316/22608 +f 22191/22476 22316/22608 22318/22610 +f 22318/22610 22371/22666 22254/22539 +f 22255/22540 22373/22668 22317/22609 +f 22321/22613 22320/22612 22256/22541 +f 22309/22601 22321/22613 22256/22541 +f 22320/22612 22321/22613 22194/22479 +f 22257/22542 22321/22613 22370/22665 +f 22319/22611 22257/22542 22370/22665 +f 22374/22669 22196/22481 22259/22544 +f 22259/22544 22258/22543 22374/22669 +f 22374/22669 22258/22543 22311/22603 +f 22323/22615 22197/22482 22322/22614 +f 22196/22481 22374/22669 22322/22614 +f 22261/22546 22260/22545 22375/22670 +f 22260/22545 22323/22615 22375/22670 +f 22261/22546 22376/22671 22273/22558 +f 22199/22484 22331/22623 22324/22616 +f 22262/22547 22324/22616 22377/22672 +f 22325/22617 22262/22547 22377/22672 +f 22264/22549 22378/22673 22263/22548 +f 22379/22674 5189/22565 22263/22548 +f 22264/22549 22325/22617 22380/22675 +f 22265/22550 22326/22618 22271/22556 +f 22203/22488 22328/22620 22327/22619 +f 22204/22489 22327/22619 22381/22676 +f 22382/22677 22328/22620 22265/22550 +f 22381/22676 22329/22621 22204/22489 +f 22206/22491 22329/22621 22330/22622 +f 22267/22552 22383/22678 22268/22553 +f 22330/22622 22383/22678 22267/22552 +f 22268/22553 22383/22678 22331/22623 +f 22332/22624 22269/22554 22384/22679 +f 22384/22679 22269/22554 22209/22494 +f 22208/22493 22333/22625 22334/22626 +f 22332/22624 22384/22679 22270/22555 +f 22333/22625 22270/22555 22384/22679 +f 22271/22556 22334/22626 22385/22680 +f 22278/22563 22272/22557 22376/22671 +f 22273/22558 22376/22671 22272/22557 +f 22386/22681 22335/22627 22274/22559 +f 22384/22679 22209/22494 22335/22627 +f 22274/22559 22275/22560 22386/22681 +f 22275/22560 22336/22628 22387/22682 +f 22276/22561 22337/22629 22336/22628 +f 22212/22497 22338/22630 22337/22629 +f 22278/22563 22388/22683 22277/22562 +f 22389/22684 22338/22630 22277/22562 +f 4968/22635 22339/22631 22214/22499 +f 22279/22564 22339/22631 22340/22632 +f 22280/22569 5036/22568 4991/22685 +f 4991/22685 5013/22634 22280/22569 +f 22340/22632 4927/22686 4886/22571 +f 22352/22647 22219/22504 22341/22636 +f 4844/22572 4819/22687 22341/22636 +f 22287/22579 22219/22504 22352/22647 +f 22390/22688 22282/22574 22281/22573 +f 22281/22573 22342/22637 22391/22689 +f 22390/22688 22343/22638 22282/22574 +f 22343/22638 22344/22639 22221/22506 +f 22346/22641 22345/22640 22107/22392 +f 22283/22575 22345/22640 22226/22511 +f 22392/22690 22346/22641 22284/22576 +f 22342/22637 22226/22511 22393/22691 +f 22347/22642 22227/22512 22348/22643 +f 22394/22692 22348/22643 22285/22577 +f 22285/22577 22349/22644 22395/22693 +f 22352/22647 22350/22645 22230/22515 +f 22396/22694 22229/22514 22350/22645 +f 22349/22644 22286/22578 22351/22646 +f 22397/22695 22351/22646 22229/22514 +f 22358/22653 22353/22648 22168/22453 +f 22398/22696 22288/22580 22353/22648 +f 22288/22580 22398/22696 22354/22649 +f 22355/22650 22169/22454 22354/22649 +f 22292/22584 22289/22581 22399/22697 +f 22289/22581 22355/22650 22400/22698 +f 22356/22651 22290/22582 22401/22699 +f 22356/22651 22402/22700 22291/22583 +f 22293/22585 22291/22583 22403/22701 +f 22292/22584 22404/22702 22357/22652 +f 22357/22652 22401/22699 22290/22582 +f 22284/22576 22293/22585 22405/22703 +f 22294/22586 22347/22642 22406/22704 +f 22294/22586 22407/22705 22358/22653 +f 22408/22706 22295/22587 22305/22597 +f 22409/22707 22296/22588 22295/22587 +f 22296/22588 22410/22708 22359/22654 +f 22411/22709 22297/22589 22360/22655 +f 22236/22521 22361/22656 22360/22655 +f 22362/22657 22299/22591 22359/22654 +f 22301/22593 22297/22589 22411/22709 +f 22307/22599 22239/22524 22363/22658 +f 22412/22710 22363/22658 22300/22592 +f 22300/22592 22364/22659 22412/22710 +f 22364/22659 22301/22593 22413/22711 +f 22241/22526 22414/22712 22365/22660 +f 22303/22595 22415/22713 22241/22526 +f 22366/22661 22243/22528 22365/22660 +f 22304/22596 22302/22594 22366/22661 +f 22415/22713 22303/22595 22344/22639 +f 22304/22596 22416/22714 22305/22597 +f 22368/22663 22367/22662 22246/22531 +f 22306/22598 22307/22599 22363/22658 +f 22309/22601 22308/22600 22367/22662 +f 22310/22602 22315/22607 22417/22715 +f 22310/22602 22418/22716 22313/22605 +f 22419/22717 22311/22603 22312/22604 +f 22420/22718 22312/22604 22369/22664 +f 22418/22716 22369/22664 22313/22605 +f 22319/22611 22370/22665 22252/22537 +f 22371/22666 22372/22667 22253/22538 +f 22315/22607 22372/22667 22417/22715 +f 22421/22719 22316/22608 22317/22609 +f 22316/22608 22422/22720 22318/22610 +f 22371/22666 22318/22610 22422/22720 +f 22373/22668 22421/22719 22317/22609 +f 22255/22540 22423/22721 22373/22668 +f 22311/22603 22424/22722 22374/22669 +f 22323/22615 22322/22614 22424/22722 +f 22424/22722 22322/22614 22374/22669 +f 22375/22670 22425/22723 22261/22546 +f 22375/22670 22323/22615 22426/22724 +f 22376/22671 22261/22546 22425/22723 +f 22427/22725 22324/22616 22331/22623 +f 22324/22616 22428/22726 22377/22672 +f 22325/22617 22377/22672 22429/22727 +f 22264/22549 22430/22728 22378/22673 +f 22378/22673 22431/22729 22263/22548 +f 5215/22730 5189/22565 22379/22674 +f 22431/22729 22379/22674 22263/22548 +f 22429/22727 22380/22675 22325/22617 +f 22430/22728 22264/22549 22380/22675 +f 22271/22556 22432/22731 22265/22550 +f 22433/22732 22327/22619 22328/22620 +f 22381/22676 22327/22619 22434/22733 +f 22432/22731 22382/22677 22265/22550 +f 22382/22677 22433/22732 22328/22620 +f 22330/22622 22329/22621 22381/22676 +f 22330/22622 22435/22734 22383/22678 +f 22331/22623 22383/22678 22436/22735 +f 22333/22625 22384/22679 22334/22626 +f 22432/22731 22271/22556 22385/22680 +f 22437/22736 22385/22680 22334/22626 +f 22376/22671 22388/22683 22278/22563 +f 22335/22627 22386/22681 22438/22737 +f 22335/22627 22439/22738 22384/22679 +f 22386/22681 22275/22560 22387/22682 +f 22336/22628 22440/22739 22387/22682 +f 22336/22628 22337/22629 22389/22684 +f 22338/22630 22389/22684 22337/22629 +f 22277/22562 22388/22683 22441/22740 +f 22442/22741 22389/22684 22277/22562 +f 4927/22686 22339/22631 4968/22635 +f 4927/22686 22340/22632 22339/22631 +f 22443/22742 22352/22647 22341/22636 +f 4819/22687 22444/22743 22341/22636 +f 22390/22688 22281/22573 22445/22744 +f 22342/22637 22446/22745 22391/22689 +f 22281/22573 22391/22689 22447/22746 +f 22390/22688 22415/22713 22343/22638 +f 22415/22713 22344/22639 22343/22638 +f 22345/22640 22346/22641 22448/22747 +f 22393/22691 22226/22511 22345/22640 +f 22346/22641 22392/22690 22448/22747 +f 22284/22576 22405/22703 22392/22690 +f 22393/22691 22449/22748 22342/22637 +f 22347/22642 22348/22643 22450/22749 +f 22394/22692 22285/22577 22395/22693 +f 22348/22643 22394/22692 22450/22749 +f 22395/22693 22349/22644 22351/22646 +f 22451/22750 22350/22645 22352/22647 +f 22350/22645 22451/22750 22396/22694 +f 22229/22514 22396/22694 22397/22695 +f 22397/22695 22452/22751 22351/22646 +f 22453/22752 22353/22648 22358/22653 +f 22453/22752 22398/22696 22353/22648 +f 22454/22753 22354/22649 22398/22696 +f 22455/22754 22355/22650 22354/22649 +f 22456/22755 22399/22697 22289/22581 +f 22292/22584 22399/22697 22404/22702 +f 22289/22581 22400/22698 22456/22755 +f 22355/22650 22457/22756 22400/22698 +f 22401/22699 22458/22757 22356/22651 +f 22402/22700 22403/22701 22291/22583 +f 22356/22651 22458/22757 22402/22700 +f 22403/22701 22459/22758 22293/22585 +f 22401/22699 22357/22652 22404/22702 +f 22460/22759 22405/22703 22293/22585 +f 22450/22749 22406/22704 22347/22642 +f 22407/22705 22294/22586 22406/22704 +f 22407/22705 22461/22760 22358/22653 +f 22305/22597 22416/22714 22408/22706 +f 22295/22587 22408/22706 22409/22707 +f 22462/22761 22296/22588 22409/22707 +f 22296/22588 22462/22761 22410/22708 +f 22301/22593 22411/22709 22413/22711 +f 22414/22712 22463/22762 22365/22660 +f 22414/22712 22241/22526 22415/22713 +f 22366/22661 22365/22660 22464/22763 +f 22465/22764 22304/22596 22366/22661 +f 22304/22596 22466/22765 22416/22714 +f 22417/22715 22418/22716 22310/22602 +f 22467/22766 22311/22603 22419/22717 +f 22420/22718 22419/22717 22312/22604 +f 22468/22767 22420/22718 22369/22664 +f 22468/22767 22369/22664 22418/22716 +f 22371/22666 22469/22768 22372/22667 +f 22417/22715 22372/22667 22470/22769 +f 22421/22719 22471/22770 22316/22608 +f 22422/22720 22316/22608 22471/22770 +f 22422/22720 22472/22771 22371/22666 +f 22373/22668 22473/22772 22421/22719 +f 22474/22773 22373/22668 22423/22721 +f 22475/22774 22423/22721 22255/22540 +f 22476/22775 22424/22722 22311/22603 +f 22477/22776 22323/22615 22424/22722 +f 22478/22777 22425/22723 22375/22670 +f 22323/22615 22479/22778 22426/22724 +f 22375/22670 22426/22724 22478/22777 +f 22480/22779 22376/22671 22425/22723 +f 22481/22780 22324/22616 22427/22725 +f 22427/22725 22331/22623 22436/22735 +f 22482/22781 22428/22726 22324/22616 +f 22428/22726 22483/22782 22377/22672 +f 22377/22672 22483/22782 22429/22727 +f 22484/22783 22378/22673 22430/22728 +f 22431/22729 22378/22673 22485/22784 +f 22379/22674 22486/22785 5215/22730 +f 22431/22729 22487/22786 22379/22674 +f 22429/22727 22488/22787 22380/22675 +f 22489/22788 22430/22728 22380/22675 +f 22327/22619 22433/22732 22490/22789 +f 22434/22733 22435/22734 22381/22676 +f 22434/22733 22327/22619 22491/22790 +f 22492/22791 22382/22677 22432/22731 +f 22433/22732 22382/22677 22493/22792 +f 22435/22734 22330/22622 22381/22676 +f 22436/22735 22383/22678 22435/22734 +f 22384/22679 22437/22736 22334/22626 +f 22385/22680 22494/22793 22432/22731 +f 22385/22680 22437/22736 22495/22794 +f 22376/22671 22480/22779 22388/22683 +f 22438/22737 22386/22681 22496/22795 +f 22497/22796 22335/22627 22438/22737 +f 22439/22738 22437/22736 22384/22679 +f 22439/22738 22335/22627 22497/22796 +f 22498/22797 22386/22681 22387/22682 +f 22336/22628 22499/22798 22440/22739 +f 22500/22799 22387/22682 22440/22739 +f 22336/22628 22389/22684 22499/22798 +f 22388/22683 22480/22779 22441/22740 +f 22277/22562 22441/22740 22442/22741 +f 22442/22741 22501/22800 22389/22684 +f 22443/22742 22502/22801 22352/22647 +f 22503/22802 22443/22742 22341/22636 +f 22341/22636 22444/22743 22503/22802 +f 22444/22743 4819/22687 4770/22803 +f 22447/22746 22445/22744 22281/22573 +f 22463/22762 22390/22688 22445/22744 +f 22446/22745 22504/22804 22391/22689 +f 22446/22745 22342/22637 22449/22748 +f 22391/22689 22504/22804 22447/22746 +f 22415/22713 22390/22688 22414/22712 +f 22448/22747 22505/22805 22345/22640 +f 22393/22691 22345/22640 22506/22806 +f 22448/22747 22392/22690 22507/22807 +f 22460/22759 22392/22690 22405/22703 +f 22449/22748 22393/22691 22506/22806 +f 22508/22808 22394/22692 22395/22693 +f 22394/22692 22509/22809 22450/22749 +f 22351/22646 22452/22751 22395/22693 +f 22352/22647 22502/22801 22451/22750 +f 22510/22810 22396/22694 22451/22750 +f 22510/22810 22397/22695 22396/22694 +f 22452/22751 22397/22695 22511/22811 +f 22461/22760 22453/22752 22358/22653 +f 22512/22812 22398/22696 22453/22752 +f 22513/22813 22354/22649 22454/22753 +f 22514/22814 22454/22753 22398/22696 +f 22515/22815 22355/22650 22455/22754 +f 22354/22649 22513/22813 22455/22754 +f 22516/22816 22399/22697 22456/22755 +f 22404/22702 22399/22697 22517/22817 +f 22518/22818 22456/22755 22400/22698 +f 22519/22819 22400/22698 22457/22756 +f 22355/22650 22515/22815 22457/22756 +f 22458/22757 22401/22699 22404/22702 +f 22403/22701 22402/22700 22520/22820 +f 22458/22757 22521/22821 22402/22700 +f 22403/22701 22520/22820 22459/22758 +f 22522/22822 22293/22585 22459/22758 +f 22293/22585 22522/22822 22460/22759 +f 22450/22749 22509/22809 22406/22704 +f 22406/22704 22509/22809 22407/22705 +f 22461/22760 22407/22705 22523/22823 +f 22524/22824 22408/22706 22416/22714 +f 22409/22707 22408/22706 22525/22825 +f 22525/22825 22462/22761 22409/22707 +f 22410/22708 22462/22761 22526/22826 +f 22390/22688 22463/22762 22414/22712 +f 22365/22660 22463/22762 22464/22763 +f 22366/22661 22464/22763 22465/22764 +f 22466/22765 22304/22596 22465/22764 +f 22416/22714 22466/22765 22524/22824 +f 22418/22716 22417/22715 22527/22827 +f 22467/22766 22476/22775 22311/22603 +f 22528/22828 22467/22766 22419/22717 +f 22419/22717 22420/22718 22528/22828 +f 22420/22718 22468/22767 22529/22829 +f 22418/22716 22527/22827 22468/22767 +f 22371/22666 22472/22771 22469/22768 +f 22470/22769 22372/22667 22469/22768 +f 22470/22769 22527/22827 22417/22715 +f 22473/22772 22471/22770 22421/22719 +f 22530/22830 22422/22720 22471/22770 +f 22472/22771 22422/22720 22530/22830 +f 22473/22772 22373/22668 22474/22773 +f 22423/22721 22531/22831 22474/22773 +f 22423/22721 22475/22774 22531/22831 +f 22424/22722 22476/22775 22477/22776 +f 22323/22615 22477/22776 22479/22778 +f 22532/22832 22425/22723 22478/22777 +f 22479/22778 22478/22777 22426/22724 +f 22480/22779 22425/22723 22532/22832 +f 22324/22616 22481/22780 22482/22781 +f 22481/22780 22427/22725 22533/22833 +f 22436/22735 22534/22834 22427/22725 +f 22482/22781 22535/22835 22428/22726 +f 22428/22726 22536/22836 22483/22782 +f 22483/22782 22488/22787 22429/22727 +f 22430/22728 22489/22788 22484/22783 +f 22537/22837 22378/22673 22484/22783 +f 22538/22838 22485/22784 22378/22673 +f 22431/22729 22485/22784 22487/22786 +f 22487/22786 22486/22785 22379/22674 +f 22539/22839 5215/22730 22486/22785 +f 22540/22840 22380/22675 22488/22787 +f 22541/22841 22489/22788 22380/22675 +f 22493/22792 22490/22789 22433/22732 +f 22327/22619 22490/22789 22491/22790 +f 22434/22733 22436/22735 22435/22734 +f 22534/22834 22434/22733 22491/22790 +f 22492/22791 22432/22731 22494/22793 +f 22382/22677 22492/22791 22542/22842 +f 22493/22792 22382/22677 22542/22842 +f 22543/22843 22494/22793 22385/22680 +f 22544/22844 22495/22794 22437/22736 +f 22495/22794 22543/22843 22385/22680 +f 22386/22681 22498/22797 22496/22795 +f 22496/22795 22545/22845 22438/22737 +f 22438/22737 22545/22845 22497/22796 +f 22544/22844 22437/22736 22439/22738 +f 22497/22796 22544/22844 22439/22738 +f 22546/22846 22498/22797 22387/22682 +f 22500/22799 22440/22739 22499/22798 +f 22387/22682 22500/22799 22547/22847 +f 22389/22684 22501/22800 22499/22798 +f 22441/22740 22480/22779 22548/22848 +f 22549/22849 22442/22741 22441/22740 +f 22501/22800 22442/22741 22549/22849 +f 22502/22801 22443/22742 22550/22850 +f 22551/22851 22443/22742 22503/22802 +f 22444/22743 22552/22852 22503/22802 +f 22553/22853 22444/22743 4770/22803 +f 22464/22763 22445/22744 22447/22746 +f 22445/22744 22464/22763 22463/22762 +f 22554/22854 22504/22804 22446/22745 +f 22446/22745 22449/22748 22555/22855 +f 22447/22746 22504/22804 22556/22856 +f 22557/22857 22505/22805 22448/22747 +f 22506/22806 22345/22640 22505/22805 +f 22507/22807 22392/22690 22460/22759 +f 22507/22807 22557/22857 22448/22747 +f 22449/22748 22506/22806 22555/22855 +f 22508/22808 22558/22858 22394/22692 +f 22508/22808 22395/22693 22452/22751 +f 22509/22809 22394/22692 22558/22858 +f 22502/22801 22559/22859 22451/22750 +f 22451/22750 22559/22859 22510/22810 +f 22510/22810 22560/22860 22397/22695 +f 22397/22695 22561/22861 22511/22811 +f 22511/22811 22562/22862 22452/22751 +f 22563/22863 22453/22752 22461/22760 +f 22512/22812 22514/22814 22398/22696 +f 22453/22752 22563/22863 22512/22812 +f 22513/22813 22454/22753 22564/22864 +f 22514/22814 22564/22864 22454/22753 +f 22455/22754 22565/22865 22515/22815 +f 22455/22754 22513/22813 22565/22865 +f 22516/22816 22566/22866 22399/22697 +f 22456/22755 22518/22818 22516/22816 +f 22567/22867 22517/22817 22399/22697 +f 22404/22702 22517/22817 22458/22757 +f 22400/22698 22568/22868 22518/22818 +f 22457/22756 22569/22869 22519/22819 +f 22568/22868 22400/22698 22519/22819 +f 22515/22815 22569/22869 22457/22756 +f 22570/22870 22520/22820 22402/22700 +f 22521/22821 22458/22757 22571/22871 +f 22521/22821 22572/22872 22402/22700 +f 22459/22758 22520/22820 22573/22873 +f 22574/22874 22522/22822 22459/22758 +f 22460/22759 22522/22822 22575/22875 +f 22523/22823 22407/22705 22509/22809 +f 22523/22823 22563/22863 22461/22760 +f 22576/22876 22408/22706 22524/22824 +f 22525/22825 22408/22706 22577/22877 +f 22525/22825 22578/22878 22462/22761 +f 22526/22826 22462/22761 22579/22879 +f 22465/22764 22464/22763 22466/22765 +f 22447/22746 22524/22824 22466/22765 +f 22467/22766 22528/22828 22476/22775 +f 22420/22718 22529/22829 22528/22828 +f 22529/22829 22468/22767 22580/22880 +f 22468/22767 22527/22827 22580/22880 +f 22469/22768 22472/22771 22581/22881 +f 22469/22768 22582/22882 22470/22769 +f 22470/22769 22582/22882 22527/22827 +f 22471/22770 22473/22772 22583/22883 +f 22583/22883 22530/22830 22471/22770 +f 22530/22830 22581/22881 22472/22771 +f 22473/22772 22474/22773 22583/22883 +f 22531/22831 22584/22884 22474/22773 +f 22475/22774 22585/22885 22531/22831 +f 22477/22776 22476/22775 22586/22886 +f 22479/22778 22477/22776 22586/22886 +f 22587/22887 22532/22832 22478/22777 +f 22588/22888 22478/22777 22479/22778 +f 22532/22832 22548/22848 22480/22779 +f 22481/22780 22589/22889 22482/22781 +f 22533/22833 22590/22890 22481/22780 +f 22427/22725 22534/22834 22533/22833 +f 22534/22834 22436/22735 22434/22733 +f 22589/22889 22535/22835 22482/22781 +f 22535/22835 22536/22836 22428/22726 +f 22483/22782 22536/22836 22591/22891 +f 22591/22891 22488/22787 22483/22782 +f 22489/22788 22537/22837 22484/22783 +f 22537/22837 22538/22838 22378/22673 +f 22592/22892 22485/22784 22538/22838 +f 22487/22786 22485/22784 22592/22892 +f 22592/22892 22486/22785 22487/22786 +f 22539/22839 22486/22785 22593/22893 +f 5215/22730 22539/22839 5238/22894 +f 22540/22840 22541/22841 22380/22675 +f 22488/22787 22594/22895 22540/22840 +f 22541/22841 22595/22896 22489/22788 +f 22596/22897 22490/22789 22493/22792 +f 22491/22790 22490/22789 22596/22897 +f 22491/22790 22533/22833 22534/22834 +f 22597/22898 22492/22791 22494/22793 +f 22492/22791 22598/22899 22542/22842 +f 22493/22792 22542/22842 22599/22900 +f 22494/22793 22543/22843 22597/22898 +f 22600/22901 22495/22794 22544/22844 +f 22543/22843 22495/22794 22601/22902 +f 22602/22903 22496/22795 22498/22797 +f 22603/22904 22545/22845 22496/22795 +f 22603/22904 22497/22796 22545/22845 +f 22604/22905 22544/22844 22497/22796 +f 22498/22797 22546/22846 22602/22903 +f 22547/22847 22546/22846 22387/22682 +f 22499/22798 22501/22800 22500/22799 +f 22547/22847 22500/22799 22605/22906 +f 22606/22907 22441/22740 22548/22848 +f 22606/22907 22549/22849 22441/22740 +f 22501/22800 22549/22849 22607/22908 +f 22550/22850 22443/22742 22551/22851 +f 22502/22801 22550/22850 22608/22909 +f 22609/22910 22551/22851 22503/22802 +f 22503/22802 22552/22852 22609/22910 +f 22552/22852 22444/22743 22553/22853 +f 22553/22853 4770/22803 22610/22911 +f 22447/22746 22466/22765 22464/22763 +f 22554/22854 22446/22745 22555/22855 +f 22504/22804 22554/22854 22611/22912 +f 22612/22913 22556/22856 22504/22804 +f 22447/22746 22556/22856 22576/22876 +f 22557/22857 22613/22914 22505/22805 +f 22506/22806 22505/22805 22555/22855 +f 22460/22759 22614/22915 22507/22807 +f 22557/22857 22507/22807 22615/22916 +f 22616/22917 22558/22858 22508/22808 +f 22508/22808 22452/22751 22562/22862 +f 22523/22823 22509/22809 22558/22858 +f 22608/22909 22559/22859 22502/22801 +f 22560/22860 22510/22810 22559/22859 +f 22561/22861 22397/22695 22560/22860 +f 22617/22918 22511/22811 22561/22861 +f 22618/22919 22562/22862 22511/22811 +f 22512/22812 22619/22920 22514/22814 +f 22512/22812 22563/22863 22620/22921 +f 22513/22813 22564/22864 22621/22922 +f 22564/22864 22514/22814 22619/22920 +f 22565/22865 22622/22923 22515/22815 +f 22513/22813 22623/22924 22565/22865 +f 22518/22818 22566/22866 22516/22816 +f 22399/22697 22566/22866 22624/22925 +f 22571/22871 22517/22817 22567/22867 +f 22567/22867 22399/22697 22624/22925 +f 22517/22817 22571/22871 22458/22757 +f 22518/22818 22568/22868 22625/22926 +f 22569/22869 22626/22927 22519/22819 +f 22568/22868 22519/22819 22627/22928 +f 22569/22869 22515/22815 22628/22929 +f 22572/22872 22570/22870 22402/22700 +f 22573/22873 22520/22820 22570/22870 +f 22571/22871 22572/22872 22521/22821 +f 22629/22930 22459/22758 22573/22873 +f 22630/22931 22522/22822 22574/22874 +f 22574/22874 22459/22758 22629/22930 +f 22575/22875 22522/22822 22630/22931 +f 22460/22759 22575/22875 22614/22915 +f 22620/22921 22563/22863 22523/22823 +f 22577/22877 22408/22706 22576/22876 +f 22447/22746 22576/22876 22524/22824 +f 22525/22825 22577/22877 22578/22878 +f 22462/22761 22578/22878 22579/22879 +f 22579/22879 22631/22932 22526/22826 +f 22586/22886 22476/22775 22528/22828 +f 22528/22828 22529/22829 22632/22933 +f 22580/22880 22633/22934 22529/22829 +f 22527/22827 22582/22882 22580/22880 +f 22581/22881 22582/22882 22469/22768 +f 22581/22881 22530/22830 22583/22883 +f 22583/22883 22474/22773 22584/22884 +f 22584/22884 22531/22831 22634/22935 +f 22531/22831 22585/22885 22634/22935 +f 22586/22886 22635/22936 22479/22778 +f 22587/22887 22548/22848 22532/22832 +f 22588/22888 22587/22887 22478/22777 +f 22635/22936 22588/22888 22479/22778 +f 22589/22889 22481/22780 22590/22890 +f 22596/22897 22590/22890 22533/22833 +f 22535/22835 22589/22889 22636/22937 +f 22637/22938 22536/22836 22535/22835 +f 22536/22836 22637/22938 22591/22891 +f 22637/22938 22488/22787 22591/22891 +f 22638/22939 22537/22837 22489/22788 +f 22639/22940 22538/22838 22537/22837 +f 22538/22838 22640/22941 22592/22892 +f 22592/22892 22593/22893 22486/22785 +f 22539/22839 22593/22893 22641/22942 +f 5238/22894 22539/22839 22641/22942 +f 22541/22841 22540/22840 22595/22896 +f 22594/22895 22642/22943 22540/22840 +f 22488/22787 22637/22938 22594/22895 +f 22489/22788 22595/22896 22643/22944 +f 22599/22900 22596/22897 22493/22792 +f 22533/22833 22491/22790 22596/22897 +f 22492/22791 22597/22898 22644/22945 +f 22598/22899 22645/22946 22542/22842 +f 22644/22945 22598/22899 22492/22791 +f 22542/22842 22646/22947 22599/22900 +f 22647/22948 22597/22898 22543/22843 +f 22601/22902 22495/22794 22600/22901 +f 22544/22844 22648/22949 22600/22901 +f 22649/22950 22543/22843 22601/22902 +f 22603/22904 22496/22795 22602/22903 +f 22603/22904 22604/22905 22497/22796 +f 22650/22951 22544/22844 22604/22905 +f 22602/22903 22546/22846 22651/22952 +f 22547/22847 22652/22953 22546/22846 +f 22501/22800 22653/22954 22500/22799 +f 22605/22906 22500/22799 22653/22954 +f 22547/22847 22605/22906 22654/22955 +f 22548/22848 22655/22956 22606/22907 +f 22549/22849 22606/22907 22607/22908 +f 22607/22908 22653/22954 22501/22800 +f 22551/22851 22656/22957 22550/22850 +f 22608/22909 22550/22850 22657/22958 +f 22656/22957 22551/22851 22609/22910 +f 22609/22910 22552/22852 22658/22959 +f 22552/22852 22553/22853 22658/22959 +f 4770/22803 4691/22960 22610/22911 +f 22659/22961 22553/22853 22610/22911 +f 22555/22855 22660/22962 22554/22854 +f 22554/22854 22661/22963 22611/22912 +f 22612/22913 22504/22804 22611/22912 +f 22556/22856 22612/22913 22662/22964 +f 22576/22876 22556/22856 22663/22965 +f 22613/22914 22660/22962 22505/22805 +f 22557/22857 22664/22966 22613/22914 +f 22505/22805 22660/22962 22555/22855 +f 22507/22807 22614/22915 22615/22916 +f 22557/22857 22615/22916 22665/22967 +f 22616/22917 22620/22921 22558/22858 +f 22508/22808 22666/22968 22616/22917 +f 22667/22969 22508/22808 22562/22862 +f 22523/22823 22558/22858 22620/22921 +f 22668/22970 22559/22859 22608/22909 +f 22668/22970 22560/22860 22559/22859 +f 22561/22861 22560/22860 22668/22970 +f 22668/22970 22617/22918 22561/22861 +f 22669/22971 22511/22811 22617/22918 +f 22562/22862 22618/22919 22670/22972 +f 22669/22971 22618/22919 22511/22811 +f 22619/22920 22512/22812 22671/22973 +f 22620/22921 22672/22974 22512/22812 +f 22621/22922 22673/22975 22513/22813 +f 22621/22922 22564/22864 22619/22920 +f 22674/22976 22622/22923 22565/22865 +f 22675/22977 22515/22815 22622/22923 +f 22673/22975 22623/22924 22513/22813 +f 22565/22865 22623/22924 22674/22976 +f 22625/22926 22566/22866 22518/22818 +f 22676/22978 22624/22925 22566/22866 +f 22571/22871 22567/22867 22677/22979 +f 22678/22980 22567/22867 22624/22925 +f 22679/22981 22625/22926 22568/22868 +f 22569/22869 22628/22929 22626/22927 +f 22519/22819 22626/22927 22627/22928 +f 22568/22868 22627/22928 22679/22981 +f 22515/22815 22675/22977 22628/22929 +f 22680/22982 22570/22870 22572/22872 +f 22570/22870 22681/22983 22573/22873 +f 22572/22872 22571/22871 22682/22984 +f 22681/22983 22629/22930 22573/22873 +f 22574/22874 22683/22985 22630/22931 +f 22629/22930 22684/22986 22574/22874 +f 22575/22875 22630/22931 22685/22987 +f 22614/22915 22575/22875 22686/22988 +f 22577/22877 22576/22876 22663/22965 +f 22577/22877 22687/22989 22578/22878 +f 22578/22878 22687/22989 22579/22879 +f 22579/22879 22688/22990 22631/22932 +f 22689/22991 22526/22826 22631/22932 +f 22528/22828 22632/22933 22586/22886 +f 22690/22992 22632/22933 22529/22829 +f 22691/22993 22633/22934 22580/22880 +f 22633/22934 22690/22992 22529/22829 +f 22580/22880 22582/22882 22692/22994 +f 22693/22995 22582/22882 22581/22881 +f 22694/22996 22581/22881 22583/22883 +f 22584/22884 22695/22997 22583/22883 +f 22696/22998 22584/22884 22634/22935 +f 22585/22885 22696/22998 22634/22935 +f 22635/22936 22586/22886 22632/22933 +f 22587/22887 22655/22956 22548/22848 +f 22588/22888 22697/22999 22587/22887 +f 22635/22936 22697/22999 22588/22888 +f 22636/22937 22589/22889 22590/22890 +f 22596/22897 22698/23000 22590/22890 +f 22636/22937 22699/23001 22535/22835 +f 22535/22835 22699/23001 22637/22938 +f 22643/22944 22638/22939 22489/22788 +f 22639/22940 22537/22837 22638/22939 +f 22640/22941 22538/22838 22639/22940 +f 22592/22892 22640/22941 22700/23002 +f 22593/22893 22592/22892 22701/23003 +f 22593/22893 22702/23004 22641/22942 +f 5293/23005 5238/22894 22641/22942 +f 22642/22943 22595/22896 22540/22840 +f 22594/22895 22703/23006 22642/22943 +f 22703/23006 22594/22895 22637/22938 +f 22643/22944 22595/22896 22704/23007 +f 22599/22900 22698/23000 22596/22897 +f 22647/22948 22644/22945 22597/22898 +f 22705/23008 22645/22946 22598/22899 +f 22706/23009 22542/22842 22645/22946 +f 22598/22899 22644/22945 22707/23010 +f 22698/23000 22599/22900 22646/22947 +f 22646/22947 22542/22842 22706/23009 +f 22543/22843 22649/22950 22647/22948 +f 22600/22901 22708/23011 22601/22902 +f 22709/23012 22648/22949 22544/22844 +f 22708/23011 22600/22901 22648/22949 +f 22708/23011 22649/22950 22601/22902 +f 22603/22904 22602/22903 22604/22905 +f 22709/23012 22544/22844 22650/22951 +f 22604/22905 22602/22903 22650/22951 +f 22651/22952 22710/23013 22602/22903 +f 22546/22846 22652/22953 22651/22952 +f 22547/22847 22711/23014 22652/22953 +f 22607/22908 22605/22906 22653/22954 +f 22605/22906 22712/23015 22654/22955 +f 22547/22847 22654/22955 22711/23014 +f 22606/22907 22655/22956 22713/23016 +f 22714/23017 22607/22908 22606/22907 +f 22657/22958 22550/22850 22656/22957 +f 22657/22958 22668/22970 22608/22909 +f 22715/23018 22656/22957 22609/22910 +f 22715/23018 22609/22910 22658/22959 +f 22553/22853 22659/22961 22658/22959 +f 4691/22960 4671/23019 22610/22911 +f 4671/23019 22659/22961 22610/22911 +f 22716/23020 22554/22854 22660/22962 +f 22716/23020 22661/22963 22554/22854 +f 22611/22912 22661/22963 22717/23021 +f 22611/22912 22718/23022 22612/22913 +f 22718/23022 22662/22964 22612/22913 +f 22662/22964 22719/23023 22556/22856 +f 22556/22856 22719/23023 22663/22965 +f 22660/22962 22613/22914 22716/23020 +f 22664/22966 22557/22857 22665/22967 +f 22720/23024 22613/22914 22664/22966 +f 22665/22967 22615/22916 22614/22915 +f 22616/22917 22721/23025 22620/22921 +f 22722/23026 22666/22968 22508/22808 +f 22723/23027 22616/22917 22666/22968 +f 22722/23026 22508/22808 22667/22969 +f 22667/22969 22562/22862 22722/23026 +f 22668/22970 22724/23028 22617/22918 +f 22725/23029 22669/22971 22617/22918 +f 22670/22972 22618/22919 22669/22971 +f 22670/22972 22722/23026 22562/22862 +f 22619/22920 22671/22973 22726/23030 +f 22512/22812 22672/22974 22671/22973 +f 22672/22974 22620/22921 22721/23025 +f 22673/22975 22621/22922 22726/23030 +f 22621/22922 22619/22920 22726/23030 +f 22727/23031 22622/22923 22674/22976 +f 22675/22977 22622/22923 22727/23031 +f 22623/22924 22673/22975 22728/23032 +f 22623/22924 22729/23033 22674/22976 +f 22566/22866 22625/22926 22730/23034 +f 22624/22925 22676/22978 22678/22980 +f 22566/22866 22731/23035 22676/22978 +f 22678/22980 22677/22979 22567/22867 +f 22571/22871 22677/22979 22682/22984 +f 22625/22926 22679/22981 22732/23036 +f 22626/22927 22628/22929 22733/23037 +f 22627/22928 22626/22927 22734/23038 +f 22679/22981 22627/22928 22735/23039 +f 22628/22929 22675/22977 22736/23040 +f 22680/22982 22681/22983 22570/22870 +f 22572/22872 22682/22984 22680/22982 +f 22629/22930 22681/22983 22684/22986 +f 22683/22985 22574/22874 22684/22986 +f 22630/22931 22683/22985 22685/22987 +f 22575/22875 22685/22987 22686/22988 +f 22686/22988 22737/23041 22614/22915 +f 22738/23042 22577/22877 22663/22965 +f 22738/23042 22687/22989 22577/22877 +f 22687/22989 22739/23043 22579/22879 +f 22739/23043 22688/22990 22579/22879 +f 22631/22932 22688/22990 22740/23044 +f 22741/23045 22526/22826 22689/22991 +f 22631/22932 22742/23046 22689/22991 +f 22690/22992 22743/23047 22632/22933 +f 22691/22993 22744/23048 22633/22934 +f 22745/23049 22691/22993 22580/22880 +f 22690/22992 22633/22934 22746/23050 +f 22692/22994 22582/22882 22747/23051 +f 22748/23052 22580/22880 22692/22994 +f 22693/22995 22747/23051 22582/22882 +f 22694/22996 22693/22995 22581/22881 +f 22695/22997 22694/22996 22583/22883 +f 22584/22884 22749/23053 22695/22997 +f 22696/22998 22750/23054 22584/22884 +f 22743/23047 22635/22936 22632/22933 +f 22751/23055 22655/22956 22587/22887 +f 22697/22999 22751/23055 22587/22887 +f 22752/23056 22697/22999 22635/22936 +f 22698/23000 22636/22937 22590/22890 +f 22753/23057 22699/23001 22636/22937 +f 22703/23006 22637/22938 22699/23001 +f 22638/22939 22643/22944 22704/23007 +f 22704/23007 22639/22940 22638/22939 +f 22639/22940 22754/23058 22640/22941 +f 22700/23002 22640/22941 22754/23058 +f 22701/23003 22592/22892 22700/23002 +f 22701/23003 22755/23059 22593/22893 +f 22702/23004 5293/23005 22641/22942 +f 22593/22893 22755/23059 22702/23004 +f 22595/22896 22642/22943 22756/23060 +f 22642/22943 22703/23006 22756/23060 +f 22756/23060 22704/23007 22595/22896 +f 22647/22948 22757/23061 22644/22945 +f 22758/23062 22645/22946 22705/23008 +f 22598/22899 22707/23010 22705/23008 +f 22645/22946 22758/23062 22706/23009 +f 22757/23061 22707/23010 22644/22945 +f 22646/22947 22636/22937 22698/23000 +f 22646/22947 22706/23009 22759/23063 +f 22760/23064 22647/22948 22649/22950 +f 22649/22950 22708/23011 22761/23065 +f 22650/22951 22762/23066 22709/23012 +f 22763/23067 22650/22951 22602/22903 +f 22710/23013 22651/22952 22764/23068 +f 22602/22903 22710/23013 22763/23067 +f 22651/22952 22652/22953 22764/23068 +f 22711/23014 22765/23069 22652/22953 +f 22605/22906 22607/22908 22714/23017 +f 22714/23017 22712/23015 22605/22906 +f 22654/22955 22766/23070 22711/23014 +f 22655/22956 22751/23055 22713/23016 +f 22606/22907 22713/23016 22714/23017 +f 22724/23028 22657/22958 22656/22957 +f 22724/23028 22668/22970 22657/22958 +f 22715/23018 22767/23071 22656/22957 +f 22658/22959 22768/23072 22715/23018 +f 22658/22959 22659/22961 22769/23073 +f 22659/22961 4671/23019 22769/23073 +f 22661/22963 22716/23020 22770/23074 +f 22717/23021 22718/23022 22611/22912 +f 22770/23074 22717/23021 22661/22963 +f 22771/23075 22662/22964 22718/23022 +f 22719/23023 22662/22964 22738/23042 +f 22772/23076 22663/22965 22719/23023 +f 22613/22914 22773/23077 22716/23020 +f 22774/23078 22664/22966 22665/22967 +f 22613/22914 22720/23024 22775/23079 +f 22664/22966 22776/23080 22720/23024 +f 22614/22915 22737/23041 22665/22967 +f 22616/22917 22723/23027 22721/23025 +f 22777/23081 22666/22968 22722/23026 +f 22778/23082 22723/23027 22666/22968 +f 22724/23028 22725/23029 22617/22918 +f 22725/23029 22779/23083 22669/22971 +f 22780/23084 22670/22972 22669/22971 +f 22777/23081 22722/23026 22670/22972 +f 22671/22973 22723/23027 22726/23030 +f 22721/23025 22671/22973 22672/22974 +f 22726/23030 22728/23032 22673/22975 +f 22727/23031 22674/22976 22781/23085 +f 22675/22977 22727/23031 22736/23040 +f 22728/23032 22782/23086 22623/22924 +f 22623/22924 22782/23086 22729/23033 +f 22729/23033 22781/23085 22674/22976 +f 22625/22926 22783/23087 22730/23034 +f 22566/22866 22730/23034 22731/23035 +f 22678/22980 22676/22978 22784/23088 +f 22784/23088 22676/22978 22731/23035 +f 22784/23088 22677/22979 22678/22980 +f 22682/22984 22677/22979 22785/23089 +f 22732/23036 22679/22981 22786/23090 +f 22787/23091 22625/22926 22732/23036 +f 22626/22927 22733/23037 22788/23092 +f 22789/23093 22733/23037 22628/22929 +f 22627/22928 22734/23038 22735/23039 +f 22734/23038 22626/22927 22788/23092 +f 22679/22981 22735/23039 22786/23090 +f 22628/22929 22736/23040 22789/23093 +f 22790/23094 22681/22983 22680/22982 +f 22682/22984 22791/23095 22680/22982 +f 22684/22986 22681/22983 22792/23096 +f 22793/23097 22683/22985 22684/22986 +f 22794/23098 22685/22987 22683/22985 +f 22685/22987 22795/23099 22686/22988 +f 22686/22988 22796/23100 22737/23041 +f 22738/23042 22663/22965 22772/23076 +f 22771/23075 22687/22989 22738/23042 +f 22687/22989 22771/23075 22739/23043 +f 22739/23043 22740/23044 22688/22990 +f 22740/23044 22797/23101 22631/22932 +f 22742/23046 22741/23045 22689/22991 +f 22798/23102 22742/23046 22631/22932 +f 22743/23047 22690/22992 22799/23103 +f 22691/22993 22800/23104 22744/23048 +f 22744/23048 22746/23050 22633/22934 +f 22745/23049 22800/23104 22691/22993 +f 22748/23052 22745/23049 22580/22880 +f 22799/23103 22690/22992 22746/23050 +f 22801/23105 22692/22994 22747/23051 +f 22801/23105 22748/23052 22692/22994 +f 22747/23051 22693/22995 22802/23106 +f 22693/22995 22694/22996 22803/23107 +f 22695/22997 22803/23107 22694/22996 +f 22695/22997 22749/23053 22804/23108 +f 22749/23053 22584/22884 22750/23054 +f 22805/23109 22750/23054 22696/22998 +f 22743/23047 22806/23110 22635/22936 +f 22807/23111 22751/23055 22697/22999 +f 22807/23111 22697/22999 22752/23056 +f 22752/23056 22635/22936 22808/23112 +f 22699/23001 22753/23057 22759/23063 +f 22753/23057 22636/22937 22646/22947 +f 22699/23001 22759/23063 22703/23006 +f 22754/23058 22639/22940 22704/23007 +f 22700/23002 22754/23058 22809/23113 +f 22701/23003 22700/23002 22810/23114 +f 22810/23114 22755/23059 22701/23003 +f 5323/23115 5293/23005 22702/23004 +f 22702/23004 22755/23059 5323/23115 +f 22756/23060 22703/23006 22754/23058 +f 22754/23058 22704/23007 22756/23060 +f 22760/23064 22757/23061 22647/22948 +f 22705/23008 22811/23116 22758/23062 +f 22705/23008 22707/23010 22812/23117 +f 22758/23062 22813/23118 22706/23009 +f 22707/23010 22757/23061 22814/23119 +f 22706/23009 22815/23120 22759/23063 +f 22646/22947 22759/23063 22753/23057 +f 22649/22950 22816/23121 22760/23064 +f 22761/23065 22816/23121 22649/22950 +f 22650/22951 22763/23067 22762/23066 +f 22817/23122 22710/23013 22764/23068 +f 22762/23066 22763/23067 22710/23013 +f 22764/23068 22652/22953 22765/23069 +f 22711/23014 22766/23070 22765/23069 +f 22712/23015 22714/23017 22818/23123 +f 22713/23016 22751/23055 22819/23124 +f 22713/23016 22820/23125 22714/23017 +f 22767/23071 22724/23028 22656/22957 +f 22767/23071 22715/23018 22821/23126 +f 22822/23127 22715/23018 22768/23072 +f 22823/23128 22768/23072 22658/22959 +f 22658/22959 22769/23073 22823/23128 +f 22769/23073 4671/23019 22824/23129 +f 22770/23074 22716/23020 22773/23077 +f 22825/23130 22718/23022 22717/23021 +f 22825/23130 22717/23021 22770/23074 +f 22718/23022 22739/23043 22771/23075 +f 22771/23075 22738/23042 22662/22964 +f 22772/23076 22719/23023 22738/23042 +f 22773/23077 22613/22914 22775/23079 +f 22796/23100 22774/23078 22665/22967 +f 22776/23080 22664/22966 22774/23078 +f 22776/23080 22775/23079 22720/23024 +f 22737/23041 22796/23100 22665/22967 +f 22723/23027 22671/22973 22721/23025 +f 22778/23082 22666/22968 22777/23081 +f 22723/23027 22778/23082 22826/23131 +f 22725/23029 22724/23028 22821/23126 +f 22669/22971 22779/23083 22780/23084 +f 22779/23083 22725/23029 22827/23132 +f 22828/23133 22670/22972 22780/23084 +f 22777/23081 22670/22972 22828/23133 +f 22829/23134 22726/23030 22723/23027 +f 22726/23030 22830/23135 22728/23032 +f 22727/23031 22781/23085 22831/23136 +f 22727/23031 22831/23136 22736/23040 +f 22782/23086 22728/23032 22832/23137 +f 22782/23086 22833/23138 22729/23033 +f 22834/23139 22781/23085 22729/23033 +f 22783/23087 22625/22926 22787/23091 +f 22783/23087 22835/23140 22730/23034 +f 22835/23140 22731/23035 22730/23034 +f 22784/23088 22731/23035 22836/23141 +f 22677/22979 22784/23088 22785/23089 +f 22785/23089 22837/23142 22682/22984 +f 22786/23090 22838/23143 22732/23036 +f 22787/23091 22732/23036 22838/23143 +f 22788/23092 22733/23037 22839/23144 +f 22733/23037 22789/23093 22840/23145 +f 22786/23090 22735/23039 22734/23038 +f 22734/23038 22788/23092 22841/23146 +f 22831/23136 22789/23093 22736/23040 +f 22790/23094 22792/23096 22681/22983 +f 22680/22982 22842/23147 22790/23094 +f 22682/22984 22843/23148 22791/23095 +f 22680/22982 22791/23095 22842/23147 +f 22793/23097 22684/22986 22792/23096 +f 22683/22985 22793/23097 22794/23098 +f 22685/22987 22794/23098 22795/23099 +f 22795/23099 22844/23149 22686/22988 +f 22845/23150 22796/23100 22686/22988 +f 22740/23044 22739/23043 22825/23130 +f 22797/23101 22740/23044 22770/23074 +f 22846/23151 22631/22932 22797/23101 +f 22847/23152 22741/23045 22742/23046 +f 22798/23102 22631/22932 22846/23151 +f 22798/23102 22848/23153 22742/23046 +f 22806/23110 22743/23047 22799/23103 +f 22800/23104 22849/23154 22744/23048 +f 22746/23050 22744/23048 22850/23155 +f 22851/23156 22800/23104 22745/23049 +f 22801/23105 22745/23049 22748/23052 +f 22850/23155 22799/23103 22746/23050 +f 22747/23051 22851/23156 22801/23105 +f 22802/23106 22851/23156 22747/23051 +f 22802/23106 22693/22995 22803/23107 +f 22803/23107 22695/22997 22804/23108 +f 22749/23053 22750/23054 22805/23109 +f 22808/23112 22635/22936 22806/23110 +f 22751/23055 22807/23111 22819/23124 +f 22752/23056 22852/23157 22807/23111 +f 22853/23158 22752/23056 22808/23112 +f 22854/23159 22703/23006 22759/23063 +f 22810/23114 22700/23002 22809/23113 +f 22754/23058 22854/23159 22809/23113 +f 5323/23115 22755/23059 22810/23114 +f 22854/23159 22754/23058 22703/23006 +f 22855/23160 22757/23061 22760/23064 +f 22811/23116 22856/23161 22758/23062 +f 22811/23116 22705/23008 22857/23162 +f 22705/23008 22812/23117 22857/23162 +f 22814/23119 22812/23117 22707/23010 +f 22813/23118 22758/23062 22858/23163 +f 22813/23118 22815/23120 22706/23009 +f 22759/23063 22815/23120 22854/23159 +f 22855/23160 22760/23064 22816/23121 +f 22816/23121 22761/23065 22855/23160 +f 22859/23164 22817/23122 22764/23068 +f 22860/23165 22710/23013 22817/23122 +f 22765/23069 22861/23166 22764/23068 +f 22861/23166 22765/23069 22766/23070 +f 22714/23017 22820/23125 22818/23123 +f 22820/23125 22713/23016 22819/23124 +f 22821/23126 22724/23028 22767/23071 +f 22821/23126 22715/23018 22822/23127 +f 22768/23072 22862/23167 22822/23127 +f 22862/23167 22768/23072 22823/23128 +f 22823/23128 22769/23073 22863/23168 +f 22863/23168 22769/23073 22824/23129 +f 22824/23129 4671/23019 4584/23169 +f 22773/23077 22797/23101 22770/23074 +f 22825/23130 22739/23043 22718/23022 +f 22770/23074 22740/23044 22825/23130 +f 22775/23079 22864/23170 22773/23077 +f 22774/23078 22796/23100 22845/23150 +f 22776/23080 22774/23078 22845/23150 +f 22775/23079 22776/23080 22865/23171 +f 22777/23081 22866/23172 22778/23082 +f 22826/23131 22778/23082 22867/23173 +f 22723/23027 22826/23131 22829/23134 +f 22821/23126 22827/23132 22725/23029 +f 22779/23083 22868/23174 22780/23084 +f 22779/23083 22827/23132 22868/23174 +f 22780/23084 22869/23175 22828/23133 +f 22870/23176 22777/23081 22828/23133 +f 22826/23131 22726/23030 22829/23134 +f 22726/23030 22826/23131 22830/23135 +f 22728/23032 22830/23135 22832/23137 +f 22781/23085 22871/23177 22831/23136 +f 22782/23086 22832/23137 22833/23138 +f 22833/23138 22834/23139 22729/23033 +f 22781/23085 22834/23139 22872/23178 +f 22787/23091 22873/23179 22783/23087 +f 22874/23180 22835/23140 22783/23087 +f 22875/23181 22731/23035 22835/23140 +f 22785/23089 22784/23088 22836/23141 +f 22731/23035 22875/23181 22836/23141 +f 22837/23142 22785/23089 22836/23141 +f 22682/22984 22837/23142 22843/23148 +f 22786/23090 22876/23182 22838/23143 +f 22877/23183 22787/23091 22838/23143 +f 22839/23144 22733/23037 22878/23184 +f 22788/23092 22839/23144 22841/23146 +f 22789/23093 22879/23185 22840/23145 +f 22878/23184 22733/23037 22840/23145 +f 22880/23186 22786/23090 22734/23038 +f 22734/23038 22841/23146 22881/23187 +f 22882/23188 22789/23093 22831/23136 +f 22792/23096 22790/23094 22842/23147 +f 22843/23148 22883/23189 22791/23095 +f 22791/23095 22884/23190 22842/23147 +f 22792/23096 22885/23191 22793/23097 +f 22793/23097 22885/23191 22794/23098 +f 22795/23099 22794/23098 22885/23191 +f 22844/23149 22795/23099 22884/23190 +f 22686/22988 22844/23149 22845/23150 +f 22846/23151 22797/23101 22886/23192 +f 22847/23152 22887/23193 22741/23045 +f 22847/23152 22742/23046 22888/23194 +f 22846/23151 22889/23195 22798/23102 +f 22890/23196 22848/23153 22798/23102 +f 22891/23197 22742/23046 22848/23153 +f 22850/23155 22806/23110 22799/23103 +f 22849/23154 22850/23155 22744/23048 +f 22851/23156 22745/23049 22801/23105 +f 22806/23110 22853/23158 22808/23112 +f 22819/23124 22807/23111 22852/23157 +f 22853/23158 22852/23157 22752/23056 +f 22810/23114 22809/23113 22892/23198 +f 22809/23113 22854/23159 22893/23199 +f 22856/23161 22858/23163 22758/23062 +f 22894/23200 22856/23161 22811/23116 +f 22811/23116 22857/23162 22894/23200 +f 22895/23201 22857/23162 22812/23117 +f 22858/23163 22815/23120 22813/23118 +f 22854/23159 22815/23120 22896/23202 +f 22859/23164 22897/23203 22817/23122 +f 22764/23068 22861/23166 22859/23164 +f 22817/23122 22897/23203 22860/23165 +f 22766/23070 22898/23204 22861/23166 +f 22820/23125 22899/23205 22818/23123 +f 22820/23125 22819/23124 22852/23157 +f 22862/23167 22821/23126 22822/23127 +f 22862/23167 22823/23128 22827/23132 +f 22863/23168 22827/23132 22823/23128 +f 4584/23169 22863/23168 22824/23129 +f 22886/23192 22797/23101 22773/23077 +f 22864/23170 22775/23079 22865/23171 +f 22773/23077 22864/23170 22886/23192 +f 22865/23171 22776/23080 22845/23150 +f 4421/23206 22778/23082 22866/23172 +f 22900/23207 22866/23172 22777/23081 +f 22867/23173 22778/23082 22901/23208 +f 22867/23173 22902/23209 22826/23131 +f 22827/23132 22821/23126 22862/23167 +f 4507/23210 22780/23084 22868/23174 +f 22868/23174 22827/23132 22863/23168 +f 22903/23211 22828/23133 22869/23175 +f 22869/23175 22780/23084 4507/23210 +f 22870/23176 22900/23207 22777/23081 +f 22903/23211 22870/23176 22828/23133 +f 22826/23131 22902/23209 22830/23135 +f 22904/23212 22832/23137 22830/23135 +f 22905/23213 22831/23136 22871/23177 +f 22871/23177 22781/23085 22906/23214 +f 22904/23212 22833/23138 22832/23137 +f 22833/23138 22904/23212 22834/23139 +f 22907/23215 22872/23178 22834/23139 +f 22781/23085 22872/23178 22906/23214 +f 22787/23091 22877/23183 22873/23179 +f 22873/23179 22908/23216 22783/23087 +f 22835/23140 22874/23180 22909/23217 +f 22874/23180 22783/23087 22910/23218 +f 22911/23219 22875/23181 22835/23140 +f 22875/23181 22837/23142 22836/23141 +f 22837/23142 22912/23220 22843/23148 +f 22876/23182 22786/23090 22880/23186 +f 22838/23143 22876/23182 22877/23183 +f 22841/23146 22839/23144 22878/23184 +f 22789/23093 22913/23221 22879/23185 +f 22914/23222 22840/23145 22879/23185 +f 22840/23145 22914/23222 22878/23184 +f 22880/23186 22734/23038 22881/23187 +f 22915/23223 22881/23187 22841/23146 +f 22789/23093 22882/23188 22913/23221 +f 22882/23188 22831/23136 22905/23213 +f 22842/23147 22885/23191 22792/23096 +f 22912/23220 22883/23189 22843/23148 +f 22883/23189 22916/23224 22791/23095 +f 22916/23224 22884/23190 22791/23095 +f 22884/23190 22885/23191 22842/23147 +f 22795/23099 22885/23191 22884/23190 +f 22916/23224 22844/23149 22884/23190 +f 22917/23225 22845/23150 22844/23149 +f 22846/23151 22886/23192 22918/23226 +f 22887/23193 22847/23152 22919/23227 +f 22742/23046 22891/23197 22888/23194 +f 22847/23152 22888/23194 22920/23228 +f 22889/23195 22890/23196 22798/23102 +f 22889/23195 22846/23151 22918/23226 +f 22848/23153 22890/23196 22921/23229 +f 22891/23197 22848/23153 22921/23229 +f 22806/23110 22850/23155 22922/23230 +f 22922/23230 22853/23158 22806/23110 +f 22853/23158 22923/23231 22852/23157 +f 22893/23199 22892/23198 22809/23113 +f 22854/23159 22896/23202 22893/23199 +f 22858/23163 22856/23161 22924/23232 +f 22894/23200 22857/23162 22895/23201 +f 22815/23120 22858/23163 22896/23202 +f 22897/23203 22859/23164 22925/23233 +f 22859/23164 22861/23166 22925/23233 +f 22897/23203 22926/23234 22860/23165 +f 22766/23070 22927/23235 22898/23204 +f 22925/23233 22861/23166 22898/23204 +f 22899/23205 22820/23125 22852/23157 +f 22868/23174 22863/23168 4584/23169 +f 22865/23171 22928/23236 22864/23170 +f 22886/23192 22864/23170 22918/23226 +f 22928/23236 22865/23171 22845/23150 +f 22901/23208 22778/23082 4421/23206 +f 4449/23237 4421/23206 22866/23172 +f 22900/23207 4449/23237 22866/23172 +f 22907/23215 22867/23173 22901/23208 +f 22867/23173 22907/23215 22902/23209 +f 22868/23174 4508/23238 4507/23210 +f 22869/23175 22929/23239 22903/23211 +f 4507/23210 4506/23240 22869/23175 +f 22903/23211 22900/23207 22870/23176 +f 22830/23135 22902/23209 22904/23212 +f 22930/23241 22905/23213 22871/23177 +f 22930/23241 22871/23177 22906/23214 +f 22907/23215 22834/23139 22904/23212 +f 22901/23208 22872/23178 22907/23215 +f 22906/23214 22872/23178 4346/23242 +f 22877/23183 22931/23243 22873/23179 +f 22873/23179 22931/23243 22908/23216 +f 22783/23087 22908/23216 22910/23218 +f 22932/23244 22909/23217 22874/23180 +f 22835/23140 22909/23217 22911/23219 +f 22910/23218 22933/23245 22874/23180 +f 22911/23219 22934/23246 22875/23181 +f 22912/23220 22837/23142 22875/23181 +f 22876/23182 22880/23186 22935/23247 +f 22931/23243 22877/23183 22876/23182 +f 22878/23184 22914/23222 22841/23146 +f 22936/23248 22879/23185 22913/23221 +f 22879/23185 22936/23248 22914/23222 +f 22880/23186 22881/23187 22937/23249 +f 22881/23187 22915/23223 22935/23247 +f 22915/23223 22841/23146 22938/23250 +f 22939/23251 22913/23221 22882/23188 +f 22882/23188 22905/23213 22940/23252 +f 22912/23220 22941/23253 22883/23189 +f 22916/23224 22883/23189 22942/23254 +f 22943/23255 22844/23149 22916/23224 +f 22943/23255 22917/23225 22844/23149 +f 22917/23225 22944/23256 22845/23150 +f 22945/23257 22887/23193 22919/23227 +f 22919/23227 22847/23152 22946/23258 +f 22891/23197 22920/23228 22888/23194 +f 22920/23228 22946/23258 22847/23152 +f 22889/23195 22947/23259 22890/23196 +f 22889/23195 22918/23226 22948/23260 +f 22921/23229 22890/23196 22949/23261 +f 22921/23229 22950/23262 22891/23197 +f 22853/23158 22922/23230 22923/23231 +f 22923/23231 22899/23205 22852/23157 +f 22893/23199 22951/23263 22892/23198 +f 22896/23202 22952/23264 22893/23199 +f 22858/23163 22924/23232 22896/23202 +f 22953/23265 22897/23203 22925/23233 +f 22897/23203 22954/23266 22926/23234 +f 22926/23234 22955/23267 22860/23165 +f 22898/23204 22927/23235 22953/23265 +f 22927/23235 22766/23070 22956/23268 +f 22925/23233 22898/23204 22953/23265 +f 4508/23238 22868/23174 4584/23169 +f 22864/23170 22928/23236 22918/23226 +f 22928/23236 22845/23150 22944/23256 +f 22901/23208 4421/23206 4375/23269 +f 22900/23207 22957/23270 4449/23237 +f 22907/23215 22904/23212 22902/23209 +f 22929/23239 22900/23207 22903/23211 +f 22929/23239 22869/23175 4506/23240 +f 22905/23213 22930/23241 22958/23271 +f 22959/23272 22930/23241 22906/23214 +f 4375/23269 22872/23178 22901/23208 +f 4346/23242 22872/23178 4375/23269 +f 22906/23214 4346/23242 4288/23273 +f 22908/23216 22931/23243 22960/23274 +f 22910/23218 22908/23216 22961/23275 +f 22932/23244 22962/23276 22909/23217 +f 22932/23244 22874/23180 22963/23277 +f 22909/23217 22964/23278 22911/23219 +f 22933/23245 22963/23277 22874/23180 +f 22933/23245 22910/23218 22961/23275 +f 22934/23246 22911/23219 22965/23279 +f 22966/23280 22875/23181 22934/23246 +f 22875/23181 22967/23281 22912/23220 +f 22968/23282 22876/23182 22935/23247 +f 22880/23186 22937/23249 22935/23247 +f 22960/23274 22931/23243 22876/23182 +f 22841/23146 22914/23222 22938/23250 +f 4344/23283 22936/23248 22913/23221 +f 22969/23284 22914/23222 22936/23248 +f 22935/23247 22937/23249 22881/23187 +f 22915/23223 22968/23282 22935/23247 +f 22938/23250 22970/23285 22915/23223 +f 22971/23286 22913/23221 22939/23251 +f 22939/23251 22882/23188 22940/23252 +f 22940/23252 22905/23213 22958/23271 +f 22941/23253 22912/23220 22972/23287 +f 22941/23253 22973/23288 22883/23189 +f 22942/23254 22883/23189 22973/23288 +f 22974/23289 22916/23224 22942/23254 +f 22975/23290 22943/23255 22916/23224 +f 22943/23255 22976/23291 22917/23225 +f 22976/23291 22944/23256 22917/23225 +f 22945/23257 22919/23227 22977/23292 +f 22946/23258 22978/23293 22919/23227 +f 22920/23228 22891/23197 22979/23294 +f 22980/23295 22946/23258 22920/23228 +f 22890/23196 22947/23259 22981/23296 +f 22948/23260 22947/23259 22889/23195 +f 22948/23260 22918/23226 22982/23297 +f 22890/23196 22981/23296 22949/23261 +f 22949/23261 22983/23298 22921/23229 +f 22983/23298 22950/23262 22921/23229 +f 22979/23294 22891/23197 22950/23262 +f 22893/23199 22952/23264 22951/23263 +f 22924/23232 22952/23264 22896/23202 +f 22953/23265 22954/23266 22897/23203 +f 22954/23266 22955/23267 22926/23234 +f 22953/23265 22927/23235 22956/23268 +f 22982/23297 22918/23226 22928/23236 +f 22982/23297 22928/23236 22944/23256 +f 22929/23239 22957/23270 22900/23207 +f 4505/23299 4449/23237 22957/23270 +f 22984/23300 22929/23239 4506/23240 +f 22958/23271 22930/23241 22959/23272 +f 4218/23301 22959/23272 22906/23214 +f 4288/23273 4218/23301 22906/23214 +f 22908/23216 22960/23274 22961/23275 +f 22964/23278 22909/23217 22962/23276 +f 22932/23244 22985/23302 22962/23276 +f 22963/23277 22985/23302 22932/23244 +f 22965/23279 22911/23219 22964/23278 +f 22986/23303 22963/23277 22933/23245 +f 22986/23303 22933/23245 22961/23275 +f 22987/23304 22934/23246 22965/23279 +f 22967/23281 22875/23181 22966/23280 +f 22988/23305 22966/23280 22934/23246 +f 22967/23281 22989/23306 22912/23220 +f 22876/23182 22968/23282 22960/23274 +f 22938/23250 22914/23222 22969/23284 +f 22913/23221 22971/23286 4344/23283 +f 22936/23248 4344/23283 22990/23307 +f 22991/23308 22969/23284 22936/23248 +f 22968/23282 22915/23223 22970/23285 +f 22938/23250 22991/23308 22970/23285 +f 22992/23309 22971/23286 22939/23251 +f 22992/23309 22939/23251 22940/23252 +f 22992/23309 22940/23252 22958/23271 +f 22989/23306 22972/23287 22912/23220 +f 22941/23253 22972/23287 22993/23310 +f 22973/23288 22941/23253 22994/23311 +f 22973/23288 22995/23312 22942/23254 +f 22974/23289 22975/23290 22916/23224 +f 22996/23313 22974/23289 22942/23254 +f 22997/23314 22943/23255 22975/23290 +f 22998/23315 22976/23291 22943/23255 +f 22982/23297 22944/23256 22976/23291 +f 22977/23292 22919/23227 22978/23293 +f 22978/23293 22946/23258 22999/23316 +f 22979/23294 22980/23295 22920/23228 +f 22946/23258 22980/23295 22999/23316 +f 22948/23260 22981/23296 22947/23259 +f 23000/23317 22948/23260 22982/23297 +f 23001/23318 22949/23261 22981/23296 +f 22983/23298 22949/23261 23002/23319 +f 22950/23262 22983/23298 23003/23320 +f 23003/23320 22979/23294 22950/23262 +f 23004/23321 22951/23263 22952/23264 +f 22952/23264 22924/23232 23004/23321 +f 22954/23266 22953/23265 23005/23322 +f 22954/23266 23005/23322 22955/23267 +f 23005/23322 22953/23265 22956/23268 +f 22957/23270 22929/23239 22984/23300 +f 22984/23300 4505/23299 22957/23270 +f 4506/23240 4472/23323 22984/23300 +f 22959/23272 22992/23309 22958/23271 +f 4218/23301 4253/23324 22959/23272 +f 22960/23274 22968/23282 22961/23275 +f 22964/23278 22962/23276 23006/23325 +f 23006/23325 22962/23276 22985/23302 +f 22985/23302 22963/23277 23007/23326 +f 23006/23325 22965/23279 22964/23278 +f 23008/23327 22963/23277 22986/23303 +f 23009/23328 22986/23303 22961/23275 +f 22934/23246 22987/23304 22988/23305 +f 22987/23304 22965/23279 23010/23329 +f 22967/23281 22966/23280 23011/23330 +f 23011/23330 22966/23280 22988/23305 +f 22967/23281 23011/23330 22989/23306 +f 22991/23308 22938/23250 22969/23284 +f 22971/23286 4253/23324 4344/23283 +f 4344/23283 4398/23331 22990/23307 +f 22936/23248 22990/23307 22991/23308 +f 23012/23332 22968/23282 22970/23285 +f 22970/23285 22991/23308 23012/23332 +f 22992/23309 23013/23333 22971/23286 +f 22972/23287 22989/23306 23014/23334 +f 22994/23311 22941/23253 22993/23310 +f 22993/23310 22972/23287 23014/23334 +f 22994/23311 23015/23335 22973/23288 +f 22995/23312 22973/23288 23016/23336 +f 22942/23254 22995/23312 23017/23337 +f 23018/23338 22975/23290 22974/23289 +f 22974/23289 22996/23313 23019/23339 +f 22942/23254 23017/23337 22996/23313 +f 23020/23340 22997/23314 22975/23290 +f 22998/23315 22943/23255 22997/23314 +f 23021/23341 22976/23291 22998/23315 +f 23021/23341 22982/23297 22976/23291 +f 22977/23292 22978/23293 23022/23342 +f 23023/23343 22978/23293 22999/23316 +f 22980/23295 22979/23294 22999/23316 +f 23000/23317 22981/23296 22948/23260 +f 23000/23317 22982/23297 23024/23344 +f 22949/23261 23001/23318 23002/23319 +f 22981/23296 23000/23317 23001/23318 +f 23025/23345 22983/23298 23002/23319 +f 23003/23320 22983/23298 23025/23345 +f 22979/23294 23003/23320 23026/23346 +f 4472/23323 4505/23299 22984/23300 +f 22992/23309 22959/23272 23013/23333 +f 4253/23324 23013/23333 22959/23272 +f 22961/23275 22968/23282 23009/23328 +f 23006/23325 22985/23302 23027/23347 +f 23007/23326 22963/23277 23028/23348 +f 22985/23302 23007/23326 23029/23349 +f 23027/23347 22965/23279 23006/23325 +f 22963/23277 23008/23327 23028/23348 +f 23008/23327 22986/23303 23009/23328 +f 23010/23329 22988/23305 22987/23304 +f 22965/23279 23027/23347 23010/23329 +f 23030/23350 23011/23330 22988/23305 +f 23030/23350 22989/23306 23011/23330 +f 23013/23333 4253/23324 22971/23286 +f 22990/23307 4398/23331 4471/23351 +f 23031/23352 22991/23308 22990/23307 +f 22968/23282 23012/23332 23032/23353 +f 23012/23332 22991/23308 23033/23354 +f 23030/23350 23014/23334 22989/23306 +f 22993/23310 23015/23335 22994/23311 +f 23014/23334 23015/23335 22993/23310 +f 22973/23288 23015/23335 23034/23355 +f 22973/23288 23034/23355 23016/23336 +f 23016/23336 23035/23356 22995/23312 +f 23036/23357 23017/23337 22995/23312 +f 23020/23340 22975/23290 23018/23338 +f 23037/23358 23018/23338 22974/23289 +f 23019/23339 23037/23358 22974/23289 +f 23038/23359 23019/23339 22996/23313 +f 22996/23313 23017/23337 23036/23357 +f 22998/23315 22997/23314 23020/23340 +f 22998/23315 23024/23344 23021/23341 +f 23024/23344 22982/23297 23021/23341 +f 23022/23342 23039/23360 22977/23292 +f 23023/23343 23022/23342 22978/23293 +f 23040/23361 23023/23343 22999/23316 +f 23026/23346 22999/23316 22979/23294 +f 23000/23317 23024/23344 23041/23362 +f 23042/23363 23002/23319 23001/23318 +f 23042/23363 23001/23318 23000/23317 +f 23043/23364 23025/23345 23002/23319 +f 23003/23320 23025/23345 23044/23365 +f 23045/23366 23026/23346 23003/23320 +f 23032/23353 23009/23328 22968/23282 +f 22985/23302 23029/23349 23027/23347 +f 23028/23348 23029/23349 23007/23326 +f 23028/23348 23008/23327 23046/23367 +f 23009/23328 23046/23367 23008/23327 +f 23047/23368 22988/23305 23010/23329 +f 23027/23347 23048/23369 23010/23329 +f 22988/23305 23049/23370 23030/23350 +f 23031/23352 22990/23307 4471/23351 +f 23033/23354 22991/23308 23031/23352 +f 23012/23332 23033/23354 23032/23353 +f 23050/23371 23014/23334 23030/23350 +f 23015/23335 23014/23334 23051/23372 +f 23034/23355 23015/23335 23052/23373 +f 23053/23374 23016/23336 23034/23355 +f 23035/23356 23036/23357 22995/23312 +f 23035/23356 23016/23336 23053/23374 +f 23020/23340 23018/23338 23054/23375 +f 23037/23358 23055/23376 23018/23338 +f 23037/23358 23019/23339 23055/23376 +f 23038/23359 22996/23313 23056/23377 +f 23038/23359 23057/23378 23019/23339 +f 22996/23313 23036/23357 23056/23377 +f 23020/23340 23058/23379 22998/23315 +f 23058/23379 23024/23344 22998/23315 +f 23039/23360 23022/23342 23059/23380 +f 23022/23342 23023/23343 23060/23381 +f 23040/23361 23061/23382 23023/23343 +f 22999/23316 23026/23346 23040/23361 +f 23000/23317 23041/23362 23042/23363 +f 23024/23344 23058/23379 23041/23362 +f 23042/23363 23062/23383 23002/23319 +f 23043/23364 23002/23319 23062/23383 +f 23025/23345 23043/23364 23063/23384 +f 23044/23365 23045/23366 23003/23320 +f 23063/23384 23044/23365 23025/23345 +f 23040/23361 23026/23346 23045/23366 +f 23032/23353 23064/23385 23009/23328 +f 23048/23369 23027/23347 23029/23349 +f 23046/23367 23029/23349 23028/23348 +f 23046/23367 23009/23328 23064/23385 +f 23047/23368 23065/23386 22988/23305 +f 23066/23387 23047/23368 23010/23329 +f 23048/23369 23066/23387 23010/23329 +f 23050/23371 23030/23350 23049/23370 +f 23065/23386 23049/23370 22988/23305 +f 4471/23351 23067/23388 23031/23352 +f 23033/23354 23031/23352 23068/23389 +f 23033/23354 23069/23390 23032/23353 +f 23014/23334 23050/23371 23051/23372 +f 23052/23373 23015/23335 23051/23372 +f 23034/23355 23052/23373 23053/23374 +f 23035/23356 23070/23391 23036/23357 +f 23071/23392 23035/23356 23053/23374 +f 23054/23375 23058/23379 23020/23340 +f 23054/23375 23018/23338 23072/23393 +f 23072/23393 23018/23338 23055/23376 +f 23055/23376 23019/23339 23057/23378 +f 23056/23377 23073/23394 23038/23359 +f 23074/23395 23057/23378 23038/23359 +f 23036/23357 23070/23391 23056/23377 +f 23059/23380 23022/23342 23060/23381 +f 23061/23382 23060/23381 23023/23343 +f 23075/23396 23061/23382 23040/23361 +f 23041/23362 23076/23397 23042/23363 +f 23058/23379 23076/23397 23041/23362 +f 23076/23397 23062/23383 23042/23363 +f 23062/23383 23063/23384 23043/23364 +f 23045/23366 23044/23365 23063/23384 +f 23040/23361 23045/23366 23063/23384 +f 23069/23390 23064/23385 23032/23353 +f 23029/23349 23046/23367 23048/23369 +f 23064/23385 23048/23369 23046/23367 +f 23077/23398 23065/23386 23047/23368 +f 23066/23387 23078/23399 23047/23368 +f 23048/23369 23079/23400 23066/23387 +f 23080/23401 23050/23371 23049/23370 +f 23065/23386 23081/23402 23049/23370 +f 23031/23352 23067/23388 23068/23389 +f 4554/23403 23067/23388 4471/23351 +f 23033/23354 23068/23389 23082/23404 +f 23082/23404 23069/23390 23033/23354 +f 23050/23371 23083/23405 23051/23372 +f 23083/23405 23052/23373 23051/23372 +f 23053/23374 23052/23373 23071/23392 +f 23035/23356 23084/23406 23070/23391 +f 23084/23406 23035/23356 23071/23392 +f 23054/23375 23085/23407 23058/23379 +f 23072/23393 23086/23408 23054/23375 +f 23072/23393 23055/23376 23087/23409 +f 23074/23395 23055/23376 23057/23378 +f 23070/23391 23073/23394 23056/23377 +f 23088/23410 23038/23359 23073/23394 +f 23074/23395 23038/23359 23088/23410 +f 23060/23381 23089/23411 23059/23380 +f 23090/23412 23060/23381 23061/23382 +f 23091/23413 23075/23396 23040/23361 +f 23061/23382 23075/23396 23092/23414 +f 23076/23397 23058/23379 23085/23407 +f 23062/23383 23076/23397 23040/23361 +f 23040/23361 23063/23384 23062/23383 +f 23064/23385 23069/23390 23093/23415 +f 23079/23400 23048/23369 23064/23385 +f 23065/23386 23077/23398 23094/23416 +f 23077/23398 23047/23368 23078/23399 +f 23066/23387 23095/23417 23078/23399 +f 23079/23400 23095/23417 23066/23387 +f 23080/23401 23049/23370 23096/23418 +f 23080/23401 23083/23405 23050/23371 +f 23065/23386 23094/23416 23081/23402 +f 23049/23370 23081/23402 23096/23418 +f 23068/23389 23067/23388 4554/23403 +f 4554/23403 23082/23404 23068/23389 +f 23069/23390 23082/23404 23093/23415 +f 23052/23373 23083/23405 23071/23392 +f 23084/23406 23097/23419 23070/23391 +f 23071/23392 23083/23405 23084/23406 +f 23085/23407 23054/23375 23098/23420 +f 23087/23409 23086/23408 23072/23393 +f 23098/23420 23054/23375 23086/23408 +f 23099/23421 23087/23409 23055/23376 +f 23055/23376 23074/23395 23100/23422 +f 23073/23394 23070/23391 23097/23419 +f 23097/23419 23088/23410 23073/23394 +f 23101/23423 23074/23395 23088/23410 +f 23090/23412 23089/23411 23060/23381 +f 23102/23424 23059/23380 23089/23411 +f 23092/23414 23090/23412 23061/23382 +f 23040/23361 23098/23420 23091/23413 +f 23091/23413 23103/23425 23075/23396 +f 23075/23396 23104/23426 23092/23414 +f 23098/23420 23076/23397 23085/23407 +f 23040/23361 23076/23397 23098/23420 +f 23093/23415 23105/23427 23064/23385 +f 23105/23427 23079/23400 23064/23385 +f 23106/23428 23094/23416 23077/23398 +f 23107/23429 23077/23398 23078/23399 +f 23078/23399 23095/23417 23108/23430 +f 23095/23417 23079/23400 23105/23427 +f 23109/23431 23080/23401 23096/23418 +f 23110/23432 23083/23405 23080/23401 +f 23094/23416 23111/23433 23081/23402 +f 23096/23418 23081/23402 23111/23433 +f 23082/23404 4554/23403 4614/23434 +f 23082/23404 4614/23434 23093/23415 +f 23097/23419 23084/23406 23112/23435 +f 23110/23432 23084/23406 23083/23405 +f 23087/23409 23091/23413 23086/23408 +f 23098/23420 23086/23408 23091/23413 +f 23103/23425 23087/23409 23099/23421 +f 23099/23421 23055/23376 23113/23436 +f 23101/23423 23100/23422 23074/23395 +f 23113/23436 23055/23376 23100/23422 +f 23088/23410 23097/23419 23114/23437 +f 23088/23410 23114/23437 23101/23423 +f 23089/23411 23090/23412 23115/23438 +f 23102/23424 23089/23411 23116/23439 +f 23117/23440 23090/23412 23092/23414 +f 23091/23413 23087/23409 23103/23425 +f 23103/23425 23118/23441 23075/23396 +f 23119/23442 23104/23426 23075/23396 +f 23117/23440 23092/23414 23104/23426 +f 23105/23427 23093/23415 23120/23443 +f 23106/23428 23077/23398 23107/23429 +f 23106/23428 23121/23444 23094/23416 +f 23107/23429 23078/23399 23108/23430 +f 23108/23430 23095/23417 23122/23445 +f 23105/23427 23123/23446 23095/23417 +f 23109/23431 23124/23447 23080/23401 +f 23125/23448 23109/23431 23096/23418 +f 23080/23401 23124/23447 23110/23432 +f 23111/23433 23094/23416 23121/23444 +f 23125/23448 23096/23418 23111/23433 +f 4614/23434 23120/23443 23093/23415 +f 23084/23406 23110/23432 23112/23435 +f 23097/23419 23112/23435 23126/23449 +f 23103/23425 23099/23421 23127/23450 +f 23099/23421 23113/23436 23127/23450 +f 23128/23451 23100/23422 23101/23423 +f 23100/23422 23129/23452 23113/23436 +f 23114/23437 23097/23419 23126/23449 +f 23130/23453 23101/23423 23114/23437 +f 23115/23438 23090/23412 23117/23440 +f 23115/23438 23116/23439 23089/23411 +f 23116/23439 23131/23454 23102/23424 +f 23118/23441 23132/23455 23075/23396 +f 23118/23441 23103/23425 23127/23450 +f 23133/23456 23104/23426 23119/23442 +f 23132/23455 23119/23442 23075/23396 +f 23134/23457 23117/23440 23104/23426 +f 23123/23446 23105/23427 23120/23443 +f 23135/23458 23106/23428 23107/23429 +f 23121/23444 23106/23428 23135/23458 +f 23136/23459 23107/23429 23108/23430 +f 23122/23445 23136/23459 23108/23430 +f 23095/23417 23123/23446 23122/23445 +f 23137/23460 23124/23447 23109/23431 +f 23125/23448 23138/23461 23109/23431 +f 23126/23449 23110/23432 23124/23447 +f 23121/23444 23139/23462 23111/23433 +f 23125/23448 23111/23433 23139/23462 +f 23120/23443 4614/23434 4644/23463 +f 23126/23449 23112/23435 23110/23432 +f 23113/23436 23140/23464 23127/23450 +f 23128/23451 23101/23423 23130/23453 +f 23129/23452 23100/23422 23128/23451 +f 23113/23436 23129/23452 23140/23464 +f 23130/23453 23114/23437 23126/23449 +f 23134/23457 23115/23438 23117/23440 +f 23141/23465 23116/23439 23115/23438 +f 23142/23466 23131/23454 23116/23439 +f 23143/23467 23132/23455 23118/23441 +f 23127/23450 23144/23468 23118/23441 +f 23145/23469 23104/23426 23133/23456 +f 23146/23470 23133/23456 23119/23442 +f 23147/23471 23119/23442 23132/23455 +f 23104/23426 23148/23472 23134/23457 +f 23149/23473 23123/23446 23120/23443 +f 23135/23458 23107/23429 23150/23474 +f 23151/23475 23121/23444 23135/23458 +f 23107/23429 23136/23459 23152/23476 +f 23122/23445 23153/23477 23136/23459 +f 23123/23446 23154/23478 23122/23445 +f 23126/23449 23124/23447 23137/23460 +f 23109/23431 23138/23461 23137/23460 +f 23155/23479 23138/23461 23125/23448 +f 23139/23462 23121/23444 23151/23475 +f 23139/23462 23155/23479 23125/23448 +f 23120/23443 4644/23463 23149/23473 +f 23140/23464 23144/23468 23127/23450 +f 23156/23480 23128/23451 23130/23453 +f 23156/23480 23129/23452 23128/23451 +f 23157/23481 23140/23464 23129/23452 +f 23126/23449 23158/23482 23130/23453 +f 23159/23483 23115/23438 23134/23457 +f 23141/23465 23142/23466 23116/23439 +f 23159/23483 23141/23465 23115/23438 +f 23142/23466 2630/23484 23131/23454 +f 23144/23468 23143/23467 23118/23441 +f 23132/23455 23143/23467 23160/23485 +f 23145/23469 23148/23472 23104/23426 +f 23133/23456 23161/23486 23145/23469 +f 23161/23486 23133/23456 23146/23470 +f 23162/23487 23146/23470 23119/23442 +f 23163/23488 23147/23471 23132/23455 +f 23119/23442 23147/23471 23164/23489 +f 23165/23490 23134/23457 23148/23472 +f 23123/23446 23149/23473 23166/23491 +f 23150/23474 23107/23429 23152/23476 +f 23167/23492 23135/23458 23150/23474 +f 23151/23475 23135/23458 23168/23493 +f 23136/23459 23169/23494 23152/23476 +f 23136/23459 23153/23477 23169/23494 +f 23153/23477 23122/23445 23154/23478 +f 23154/23478 23123/23446 23166/23491 +f 23137/23460 23158/23482 23126/23449 +f 23137/23460 23138/23461 23170/23495 +f 23155/23479 23170/23495 23138/23461 +f 23171/23496 23139/23462 23151/23475 +f 23171/23496 23155/23479 23139/23462 +f 23149/23473 4644/23463 4668/23497 +f 23144/23468 23140/23464 23172/23498 +f 23173/23499 23156/23480 23130/23453 +f 23129/23452 23156/23480 23173/23499 +f 23140/23464 23157/23481 23172/23498 +f 23157/23481 23129/23452 23173/23499 +f 23130/23453 23158/23482 23174/23500 +f 23175/23501 23159/23483 23134/23457 +f 23176/23502 23142/23466 23141/23465 +f 23141/23465 23159/23483 23177/23503 +f 23178/23504 2630/23484 23142/23466 +f 23143/23467 23144/23468 23179/23505 +f 23160/23485 23180/23506 23132/23455 +f 23143/23467 23181/23507 23160/23485 +f 23145/23469 23182/23508 23148/23472 +f 23182/23508 23145/23469 23161/23486 +f 23146/23470 23183/23509 23161/23486 +f 23162/23487 23119/23442 23184/23510 +f 23162/23487 23185/23511 23146/23470 +f 23147/23471 23163/23488 23186/23512 +f 23180/23506 23163/23488 23132/23455 +f 23119/23442 23164/23489 23184/23510 +f 23186/23512 23164/23489 23147/23471 +f 23165/23490 23148/23472 23187/23513 +f 23175/23501 23134/23457 23165/23490 +f 23166/23491 23149/23473 4668/23497 +f 23150/23474 23152/23476 23188/23514 +f 23150/23474 23188/23514 23167/23492 +f 23168/23493 23135/23458 23167/23492 +f 23189/23515 23151/23475 23168/23493 +f 23152/23476 23169/23494 23188/23514 +f 23154/23478 23169/23494 23153/23477 +f 23166/23491 23169/23494 23154/23478 +f 23137/23460 23190/23516 23158/23482 +f 23170/23495 23191/23517 23137/23460 +f 23191/23517 23170/23495 23155/23479 +f 23192/23518 23171/23496 23151/23475 +f 23155/23479 23171/23496 23193/23519 +f 23144/23468 23172/23498 23179/23505 +f 23194/23520 23173/23499 23130/23453 +f 23157/23481 23194/23520 23172/23498 +f 23157/23481 23173/23499 23194/23520 +f 23174/23500 23158/23482 23195/23521 +f 23194/23520 23130/23453 23174/23500 +f 23177/23503 23159/23483 23175/23501 +f 23178/23504 23142/23466 23176/23502 +f 23141/23465 23177/23503 23176/23502 +f 23178/23504 2632/23522 2630/23484 +f 23179/23505 23181/23507 23143/23467 +f 23196/23523 23180/23506 23160/23485 +f 23160/23485 23181/23507 23196/23523 +f 23182/23508 23197/23524 23148/23472 +f 23182/23508 23161/23486 23198/23525 +f 23161/23486 23183/23509 23198/23525 +f 23199/23526 23183/23509 23146/23470 +f 23200/23527 23162/23487 23184/23510 +f 23162/23487 23200/23527 23185/23511 +f 23199/23526 23146/23470 23185/23511 +f 23163/23488 23180/23506 23186/23512 +f 23184/23510 23164/23489 23201/23528 +f 23201/23528 23164/23489 23186/23512 +f 23165/23490 23187/23513 23202/23529 +f 23148/23472 23197/23524 23187/23513 +f 23203/23530 23175/23501 23165/23490 +f 4668/23497 4630/23531 23166/23491 +f 23167/23492 23188/23514 23168/23493 +f 23189/23515 23192/23518 23151/23475 +f 23189/23515 23168/23493 23204/23532 +f 23188/23514 23169/23494 23205/23533 +f 23166/23491 23205/23533 23169/23494 +f 23190/23516 23195/23521 23158/23482 +f 23191/23517 23190/23516 23137/23460 +f 23155/23479 23206/23534 23191/23517 +f 23192/23518 23193/23519 23171/23496 +f 23207/23535 23155/23479 23193/23519 +f 23179/23505 23172/23498 23208/23536 +f 23194/23520 23209/23537 23172/23498 +f 23174/23500 23195/23521 23210/23538 +f 23174/23500 23209/23537 23194/23520 +f 23177/23503 23175/23501 23203/23530 +f 23177/23503 23178/23504 23176/23502 +f 2632/23522 23178/23504 23211/23539 +f 23208/23536 23181/23507 23179/23505 +f 23180/23506 23196/23523 23212/23540 +f 23181/23507 23213/23541 23196/23523 +f 23182/23508 23214/23542 23197/23524 +f 23214/23542 23182/23508 23198/23525 +f 23215/23543 23198/23525 23183/23509 +f 23199/23526 23215/23543 23183/23509 +f 23216/23544 23200/23527 23184/23510 +f 23185/23511 23200/23527 23217/23545 +f 23185/23511 23217/23545 23199/23526 +f 23180/23506 23218/23546 23186/23512 +f 23201/23528 23218/23546 23184/23510 +f 23218/23546 23201/23528 23186/23512 +f 23202/23529 23187/23513 23219/23547 +f 23202/23529 23220/23548 23165/23490 +f 23187/23513 23197/23524 23221/23549 +f 23222/23550 23203/23530 23165/23490 +f 4630/23531 23223/23551 23166/23491 +f 23188/23514 23224/23552 23168/23493 +f 23189/23515 23225/23553 23192/23518 +f 23168/23493 23224/23552 23204/23532 +f 23225/23553 23189/23515 23204/23532 +f 23226/23554 23188/23514 23205/23533 +f 23227/23555 23205/23533 23166/23491 +f 23190/23516 23228/23556 23195/23521 +f 23190/23516 23191/23517 23206/23534 +f 23206/23534 23155/23479 23229/23557 +f 23192/23518 23225/23553 23193/23519 +f 23230/23558 23207/23535 23193/23519 +f 23229/23557 23155/23479 23207/23535 +f 23208/23536 23172/23498 23231/23559 +f 23209/23537 23231/23559 23172/23498 +f 23174/23500 23210/23538 23232/23560 +f 23195/23521 23233/23561 23210/23538 +f 23209/23537 23174/23500 23232/23560 +f 23177/23503 23203/23530 23211/23539 +f 23178/23504 23177/23503 23211/23539 +f 23211/23539 2485/23562 2632/23522 +f 23208/23536 23213/23541 23181/23507 +f 23180/23506 23212/23540 23218/23546 +f 23196/23523 23234/23563 23212/23540 +f 23213/23541 23234/23563 23196/23523 +f 23214/23542 23235/23564 23197/23524 +f 23214/23542 23198/23525 23215/23543 +f 23236/23565 23215/23543 23199/23526 +f 23200/23527 23216/23544 23237/23566 +f 23216/23544 23184/23510 23218/23546 +f 23237/23566 23217/23545 23200/23527 +f 23238/23567 23199/23526 23217/23545 +f 23187/23513 23221/23549 23219/23547 +f 2822/23568 23202/23529 23219/23547 +f 23165/23490 23220/23548 23222/23550 +f 2822/23568 23220/23548 23202/23529 +f 23197/23524 23235/23564 23221/23549 +f 23222/23550 23220/23548 23203/23530 +f 23223/23551 4630/23531 4656/23569 +f 23223/23551 23227/23555 23166/23491 +f 23224/23552 23188/23514 23239/23570 +f 23224/23552 23240/23571 23204/23532 +f 23241/23572 23225/23553 23204/23532 +f 23188/23514 23226/23554 23239/23570 +f 23242/23573 23226/23554 23205/23533 +f 23205/23533 23227/23555 23242/23573 +f 23195/23521 23228/23556 23243/23574 +f 23206/23534 23228/23556 23190/23516 +f 23228/23556 23206/23534 23229/23557 +f 23193/23519 23225/23553 23230/23558 +f 23244/23575 23207/23535 23230/23558 +f 23229/23557 23207/23535 23244/23575 +f 23208/23536 23231/23559 23213/23541 +f 23231/23559 23209/23537 23232/23560 +f 23210/23538 23231/23559 23232/23560 +f 23213/23541 23210/23538 23233/23561 +f 23233/23561 23195/23521 23243/23574 +f 23203/23530 2485/23562 23211/23539 +f 23218/23546 23212/23540 23216/23544 +f 23245/23576 23212/23540 23234/23563 +f 23234/23563 23213/23541 23245/23576 +f 23246/23577 23235/23564 23214/23542 +f 23247/23578 23214/23542 23215/23543 +f 23215/23543 23236/23565 23248/23579 +f 23238/23567 23236/23565 23199/23526 +f 23216/23544 23249/23580 23237/23566 +f 23237/23566 23250/23581 23217/23545 +f 23217/23545 23250/23581 23238/23567 +f 23221/23549 23251/23582 23219/23547 +f 2822/23568 23219/23547 23252/23583 +f 2822/23568 2562/23584 23220/23548 +f 23221/23549 23235/23564 23253/23585 +f 23220/23548 2562/23584 23203/23530 +f 4656/23569 23254/23586 23223/23551 +f 23227/23555 23223/23551 23254/23586 +f 23240/23571 23224/23552 23239/23570 +f 23255/23587 23204/23532 23240/23571 +f 23255/23587 23241/23572 23204/23532 +f 23241/23572 23230/23558 23225/23553 +f 23239/23570 23226/23554 23256/23588 +f 23226/23554 23242/23573 23256/23588 +f 23254/23586 23242/23573 23227/23555 +f 23228/23556 23229/23557 23243/23574 +f 23257/23589 23244/23575 23230/23558 +f 23258/23590 23229/23557 23244/23575 +f 23231/23559 23210/23538 23213/23541 +f 23213/23541 23233/23561 23259/23591 +f 23233/23561 23243/23574 23260/23592 +f 23203/23530 2562/23584 2485/23562 +f 23249/23580 23216/23544 23212/23540 +f 23245/23576 23249/23580 23212/23540 +f 23213/23541 23259/23591 23245/23576 +f 23246/23577 23261/23593 23235/23564 +f 23214/23542 23247/23578 23246/23577 +f 23215/23543 23246/23577 23247/23578 +f 23262/23594 23248/23579 23236/23565 +f 23215/23543 23248/23579 23246/23577 +f 23262/23594 23236/23565 23238/23567 +f 23263/23595 23237/23566 23249/23580 +f 23264/23596 23250/23581 23237/23566 +f 23265/23597 23238/23567 23250/23581 +f 23266/23598 23251/23582 23221/23549 +f 23252/23583 23219/23547 23251/23582 +f 2821/23599 2822/23568 23252/23583 +f 23266/23598 23221/23549 23253/23585 +f 23253/23585 23235/23564 23267/23600 +f 23268/23601 23254/23586 4656/23569 +f 23239/23570 23269/23602 23240/23571 +f 4925/23603 23255/23587 23240/23571 +f 23241/23572 23255/23587 23270/23604 +f 23257/23589 23230/23558 23241/23572 +f 23271/23605 23239/23570 23256/23588 +f 23268/23601 23256/23588 23242/23573 +f 23268/23601 23242/23573 23254/23586 +f 23260/23592 23243/23574 23229/23557 +f 23244/23575 23257/23589 23272/23606 +f 23260/23592 23229/23557 23258/23590 +f 23273/23607 23258/23590 23244/23575 +f 23259/23591 23233/23561 23274/23608 +f 23233/23561 23260/23592 23274/23608 +f 23249/23580 23245/23576 23263/23595 +f 23263/23595 23245/23576 23259/23591 +f 23248/23579 23261/23593 23246/23577 +f 23267/23600 23235/23564 23261/23593 +f 23261/23593 23248/23579 23262/23594 +f 23262/23594 23238/23567 23265/23597 +f 23275/23609 23237/23566 23263/23595 +f 23250/23581 23264/23596 23265/23597 +f 23275/23609 23264/23596 23237/23566 +f 2757/23610 23251/23582 23266/23598 +f 23251/23582 2757/23610 23252/23583 +f 2757/23610 2821/23599 23252/23583 +f 23266/23598 23253/23585 23276/23611 +f 23253/23585 23267/23600 23277/23612 +f 4663/23613 23268/23601 4656/23569 +f 23239/23570 23271/23605 23269/23602 +f 23240/23571 23269/23602 4842/23614 +f 4925/23603 23278/23615 23255/23587 +f 4842/23614 4925/23603 23240/23571 +f 23270/23604 23255/23587 23278/23615 +f 23270/23604 23257/23589 23241/23572 +f 23279/23616 23271/23605 23256/23588 +f 23256/23588 23268/23601 4706/23617 +f 23257/23589 23270/23604 23272/23606 +f 23244/23575 23272/23606 23280/23618 +f 23258/23590 23281/23619 23260/23592 +f 23244/23575 23280/23618 23273/23607 +f 23273/23607 23281/23619 23258/23590 +f 23259/23591 23274/23608 23263/23595 +f 23274/23608 23260/23592 23281/23619 +f 23282/23620 23267/23600 23261/23593 +f 23261/23593 23262/23594 23265/23597 +f 23283/23621 23275/23609 23263/23595 +f 23284/23622 23265/23597 23264/23596 +f 23264/23596 23275/23609 23285/23623 +f 2756/23624 2757/23610 23266/23598 +f 23253/23585 23277/23612 23276/23611 +f 2756/23624 23266/23598 23276/23611 +f 23267/23600 23286/23625 23277/23612 +f 4706/23617 23268/23601 4663/23613 +f 23269/23602 23271/23605 23279/23616 +f 23269/23602 4817/23626 4842/23614 +f 4945/23627 23278/23615 4925/23603 +f 23287/23628 23270/23604 23278/23615 +f 4706/23617 23279/23616 23256/23588 +f 23270/23604 23288/23629 23272/23606 +f 23272/23606 23289/23630 23280/23618 +f 23280/23618 23290/23631 23273/23607 +f 23273/23607 23274/23608 23281/23619 +f 23274/23608 23291/23632 23263/23595 +f 23282/23620 23286/23625 23267/23600 +f 23265/23597 23282/23620 23261/23593 +f 23275/23609 23283/23621 23292/23633 +f 23263/23595 23293/23634 23283/23621 +f 23284/23622 23282/23620 23265/23597 +f 23264/23596 23285/23623 23284/23622 +f 23285/23623 23275/23609 23294/23635 +f 23276/23611 23277/23612 23295/23636 +f 2756/23624 23276/23611 23296/23637 +f 23277/23612 23286/23625 23297/23638 +f 4743/23639 23269/23602 23279/23616 +f 4743/23639 4817/23626 23269/23602 +f 4945/23627 5011/23640 23278/23615 +f 23288/23629 23270/23604 23287/23628 +f 23287/23628 23278/23615 5011/23640 +f 4706/23617 4743/23639 23279/23616 +f 23288/23629 23298/23641 23272/23606 +f 23298/23641 23289/23630 23272/23606 +f 23280/23618 23289/23630 23299/23642 +f 23280/23618 23299/23642 23290/23631 +f 23290/23631 23274/23608 23273/23607 +f 23274/23608 23300/23643 23291/23632 +f 23291/23632 23293/23634 23263/23595 +f 23301/23644 23286/23625 23282/23620 +f 23292/23633 23283/23621 23293/23634 +f 23275/23609 23292/23633 23294/23635 +f 23282/23620 23284/23622 23301/23644 +f 23301/23644 23284/23622 23285/23623 +f 23302/23645 23285/23623 23294/23635 +f 23297/23638 23295/23636 23277/23612 +f 23296/23637 23276/23611 23295/23636 +f 2758/23646 2756/23624 23296/23637 +f 23301/23644 23297/23638 23286/23625 +f 23288/23629 23287/23628 23303/23647 +f 23287/23628 5011/23640 23303/23647 +f 23298/23641 23288/23629 23304/23648 +f 23298/23641 23305/23649 23289/23630 +f 23299/23642 23289/23630 23306/23650 +f 23290/23631 23299/23642 23300/23643 +f 23300/23643 23274/23608 23290/23631 +f 23291/23632 23300/23643 23299/23642 +f 23291/23632 23307/23651 23293/23634 +f 23293/23634 23308/23652 23292/23633 +f 23309/23653 23294/23635 23292/23633 +f 23285/23623 23302/23645 23301/23644 +f 23294/23635 23310/23654 23302/23645 +f 23311/23655 23295/23636 23297/23638 +f 23312/23656 23296/23637 23295/23636 +f 2758/23646 23296/23637 23312/23656 +f 23301/23644 23313/23657 23297/23638 +f 23303/23647 23304/23648 23288/23629 +f 5011/23640 23314/23658 23303/23647 +f 23304/23648 23305/23649 23298/23641 +f 23306/23650 23289/23630 23305/23649 +f 23299/23642 23306/23650 23291/23632 +f 23315/23659 23307/23651 23291/23632 +f 23307/23651 23316/23660 23293/23634 +f 23308/23652 23293/23634 23316/23660 +f 23308/23652 23317/23661 23292/23633 +f 23292/23633 23317/23661 23309/23653 +f 23318/23662 23294/23635 23309/23653 +f 23302/23645 23319/23663 23301/23644 +f 23310/23654 23320/23664 23302/23645 +f 23294/23635 23318/23662 23310/23654 +f 23311/23655 23297/23638 23313/23657 +f 23311/23655 23312/23656 23295/23636 +f 2758/23646 23312/23656 23321/23665 +f 23301/23644 23319/23663 23313/23657 +f 23314/23658 23304/23648 23303/23647 +f 5011/23640 5051/23666 23314/23658 +f 23322/23667 23305/23649 23304/23648 +f 23322/23667 23306/23650 23305/23649 +f 23306/23650 23315/23659 23291/23632 +f 23315/23659 23323/23668 23307/23651 +f 23324/23669 23316/23660 23307/23651 +f 23325/23670 23308/23652 23316/23660 +f 23308/23652 23326/23671 23317/23661 +f 23317/23661 23327/23672 23309/23653 +f 23318/23662 23309/23653 23328/23673 +f 23320/23664 23319/23663 23302/23645 +f 23320/23664 23310/23654 23329/23674 +f 23329/23674 23310/23654 23318/23662 +f 23319/23663 23311/23655 23313/23657 +f 23312/23656 23311/23655 23321/23665 +f 2830/23675 2758/23646 23321/23665 +f 23304/23648 23314/23658 23330/23676 +f 23331/23677 23314/23658 5051/23666 +f 23322/23667 23304/23648 23330/23676 +f 23306/23650 23322/23667 23332/23678 +f 23315/23659 23306/23650 23332/23678 +f 23315/23659 23332/23678 23323/23668 +f 23323/23668 23324/23669 23307/23651 +f 23324/23669 23333/23679 23316/23660 +f 23308/23652 23325/23670 23334/23680 +f 23316/23660 23333/23679 23325/23670 +f 23326/23671 23308/23652 23334/23680 +f 23317/23661 23326/23671 23335/23681 +f 23317/23661 23335/23681 23327/23672 +f 23328/23673 23309/23653 23327/23672 +f 23328/23673 23336/23682 23318/23662 +f 23337/23683 23319/23663 23320/23664 +f 23338/23684 23320/23664 23329/23674 +f 23336/23682 23329/23674 23318/23662 +f 23319/23663 23337/23683 23311/23655 +f 23311/23655 23339/23685 23321/23665 +f 23321/23665 23339/23685 2830/23675 +f 23330/23676 23314/23658 23331/23677 +f 23340/23686 23331/23677 5051/23666 +f 23341/23687 23322/23667 23330/23676 +f 23332/23678 23322/23667 23341/23687 +f 23323/23668 23332/23678 23342/23688 +f 23343/23689 23324/23669 23323/23668 +f 23344/23690 23333/23679 23324/23669 +f 23334/23680 23325/23670 23333/23679 +f 23345/23691 23326/23671 23334/23680 +f 23346/23692 23335/23681 23326/23671 +f 23347/23693 23327/23672 23335/23681 +f 23328/23673 23327/23672 23348/23694 +f 23348/23694 23336/23682 23328/23673 +f 23349/23695 23337/23683 23320/23664 +f 23338/23684 23329/23674 23336/23682 +f 23350/23696 23320/23664 23338/23684 +f 23311/23655 23337/23683 23339/23685 +f 2892/23697 2830/23675 23339/23685 +f 23331/23677 23341/23687 23330/23676 +f 5067/23698 23340/23686 5051/23666 +f 23331/23677 23340/23686 23342/23688 +f 23332/23678 23341/23687 23342/23688 +f 23323/23668 23342/23688 23351/23699 +f 23343/23689 23323/23668 23351/23699 +f 23324/23669 23343/23689 23344/23690 +f 23352/23700 23333/23679 23344/23690 +f 23334/23680 23333/23679 23352/23700 +f 23345/23691 23334/23680 23352/23700 +f 23326/23671 23345/23691 23353/23701 +f 23326/23671 23353/23701 23346/23692 +f 23335/23681 23346/23692 23347/23693 +f 23347/23693 23354/23702 23327/23672 +f 23327/23672 23354/23702 23348/23694 +f 23355/23703 23336/23682 23348/23694 +f 23350/23696 23349/23695 23320/23664 +f 23349/23695 2892/23697 23337/23683 +f 23338/23684 23336/23682 23356/23704 +f 23350/23696 23338/23684 23356/23704 +f 23337/23683 2892/23697 23339/23685 +f 23331/23677 23342/23688 23341/23687 +f 23357/23705 23340/23686 5067/23698 +f 23358/23706 23342/23688 23340/23686 +f 23342/23688 23359/23707 23351/23699 +f 23360/23708 23343/23689 23351/23699 +f 23343/23689 23360/23708 23344/23690 +f 23344/23690 23360/23708 23352/23700 +f 23352/23700 23361/23709 23345/23691 +f 23361/23709 23353/23701 23345/23691 +f 23362/23710 23346/23692 23353/23701 +f 23347/23693 23346/23692 23363/23711 +f 23354/23702 23347/23693 23364/23712 +f 23354/23702 23365/23713 23348/23694 +f 23355/23703 23366/23714 23336/23682 +f 23365/23713 23355/23703 23348/23694 +f 2892/23697 23349/23695 23350/23696 +f 23356/23704 23336/23682 23366/23714 +f 23356/23704 2892/23697 23350/23696 +f 23367/23715 23340/23686 23357/23705 +f 5108/23716 23357/23705 5067/23698 +f 23367/23715 23358/23706 23340/23686 +f 23342/23688 23358/23706 23359/23707 +f 23351/23699 23359/23707 23360/23708 +f 23352/23700 23360/23708 23368/23717 +f 23369/23718 23361/23709 23352/23700 +f 23362/23710 23353/23701 23361/23709 +f 23346/23692 23362/23710 23363/23711 +f 23363/23711 23370/23719 23347/23693 +f 23370/23719 23364/23712 23347/23693 +f 23365/23713 23354/23702 23364/23712 +f 23371/23720 23366/23714 23355/23703 +f 23371/23720 23355/23703 23365/23713 +f 23366/23714 3021/23721 23356/23704 +f 3021/23721 2892/23697 23356/23704 +f 23367/23715 23357/23705 23368/23717 +f 5108/23716 23372/23722 23357/23705 +f 23358/23706 23367/23715 23359/23707 +f 23360/23708 23359/23707 23368/23717 +f 23369/23718 23352/23700 23368/23717 +f 23361/23709 23369/23718 23373/23723 +f 23373/23723 23362/23710 23361/23709 +f 23374/23724 23363/23711 23362/23710 +f 23374/23724 23370/23719 23363/23711 +f 23375/23725 23364/23712 23370/23719 +f 23365/23713 23364/23712 23376/23726 +f 23377/23727 23366/23714 23371/23720 +f 23365/23713 23376/23726 23371/23720 +f 3021/23721 23366/23714 3081/23728 +f 23357/23705 23369/23718 23368/23717 +f 23368/23717 23359/23707 23367/23715 +f 5108/23716 5149/23729 23372/23722 +f 23373/23723 23357/23705 23372/23722 +f 23369/23718 23357/23705 23373/23723 +f 23373/23723 23372/23722 23362/23710 +f 23378/23730 23374/23724 23362/23710 +f 23374/23724 23375/23725 23370/23719 +f 23375/23725 23379/23731 23364/23712 +f 23380/23732 23376/23726 23364/23712 +f 23377/23727 3081/23728 23366/23714 +f 23377/23727 23371/23720 23381/23733 +f 23381/23733 23371/23720 23376/23726 +f 23372/23722 5149/23729 23382/23734 +f 23362/23710 23372/23722 23378/23730 +f 23378/23730 23383/23735 23374/23724 +f 23375/23725 23374/23724 23384/23736 +f 23364/23712 23379/23731 23380/23732 +f 23385/23737 23379/23731 23375/23725 +f 3240/23738 23376/23726 23380/23732 +f 3081/23728 23377/23727 23381/23733 +f 23376/23726 3160/23739 23381/23733 +f 23386/23740 23382/23734 5149/23729 +f 23382/23734 23387/23741 23372/23722 +f 23388/23742 23378/23730 23372/23722 +f 23374/23724 23383/23735 23384/23736 +f 23383/23735 23378/23730 23389/23743 +f 23385/23737 23375/23725 23384/23736 +f 23380/23732 23379/23731 3239/23744 +f 23385/23737 23390/23745 23379/23731 +f 3239/23744 3240/23738 23380/23732 +f 23376/23726 3240/23738 3160/23739 +f 23381/23733 3160/23739 3081/23728 +f 23386/23740 5149/23729 5167/23746 +f 23382/23734 23386/23740 23391/23747 +f 23387/23741 23382/23734 23392/23748 +f 23388/23742 23372/23722 23387/23741 +f 23388/23742 23393/23749 23378/23730 +f 23384/23736 23383/23735 23394/23750 +f 23383/23735 23389/23743 23395/23751 +f 23389/23743 23378/23730 23393/23749 +f 23384/23736 23396/23752 23385/23737 +f 23390/23745 3239/23744 23379/23731 +f 23390/23745 23385/23737 3211/23753 +f 3240/23738 3239/23744 3261/23754 +f 23386/23740 5167/23746 23397/23755 +f 23391/23747 23386/23740 23397/23755 +f 23398/23756 23382/23734 23391/23747 +f 23382/23734 23398/23756 23392/23748 +f 23392/23748 23399/23757 23387/23741 +f 23388/23742 23387/23741 23399/23757 +f 23393/23749 23388/23742 23400/23758 +f 23383/23735 23395/23751 23394/23750 +f 23394/23750 23396/23752 23384/23736 +f 23395/23751 23389/23743 23401/23759 +f 23393/23749 23402/23760 23389/23743 +f 23385/23737 23396/23752 3246/23761 +f 3211/23753 3239/23744 23390/23745 +f 3211/23753 23385/23737 3246/23761 +f 36436/39524 23397/23755 5167/23746 +f 36437/39525 36436/39524 5167/23746 +f 36438/39526 23391/23747 23397/23755 +f 36439/39527 36438/39526 23397/23755 +f 36440/39528 23398/23756 23391/23747 +f 36438/39529 36440/39528 23391/23747 +f 23392/23748 23398/23756 23403/23762 +f 23404/23763 23399/23757 23392/23748 +f 23388/23742 23399/23757 23400/23758 +f 23400/23758 23405/23764 23393/23749 +f 23394/23750 23395/23751 23406/23765 +f 23406/23765 23396/23752 23394/23750 +f 23401/23759 23389/23743 23402/23760 +f 23401/23759 23407/23766 23395/23751 +f 23402/23760 23393/23749 23408/23767 +f 3246/23761 23396/23752 3269/23768 +f 5167/23746 36334/39530 36437/39531 +f 23397/23755 36436/39532 36441/39533 +f 23397/23755 36441/39534 36439/39535 +f 23398/23756 36440/39536 36442/39537 +f 36443/39538 23403/23762 23398/23756 +f 36444/39539 36443/39538 23398/23756 +f 23403/23762 23404/23763 23392/23748 +f 23404/23763 23405/23764 23399/23757 +f 23400/23758 23399/23757 23405/23764 +f 23408/23767 23393/23749 23405/23764 +f 23406/23765 23395/23751 23409/23769 +f 23396/23752 23406/23765 3269/23768 +f 23401/23759 23402/23760 23410/23770 +f 23407/23766 23411/23771 23395/23751 +f 23412/23772 23407/23766 23401/23759 +f 23408/23767 23410/23770 23402/23760 +f 23398/23756 36442/39540 36444/39541 +f 23403/23762 36443/39542 36445/39543 +f 36446/39544 23404/23763 23403/23762 +f 36447/39545 36446/39544 23403/23762 +f 23405/23764 23404/23763 23413/23773 +f 23408/23767 23405/23764 23414/23774 +f 23411/23771 23409/23769 23395/23751 +f 23409/23769 23415/23775 23406/23765 +f 3269/23768 23406/23765 23415/23775 +f 23401/23759 23410/23770 23412/23772 +f 23411/23771 23407/23766 23416/23776 +f 23417/23777 23407/23766 23412/23772 +f 23410/23770 23408/23767 23418/23778 +f 23403/23762 36445/39546 36447/39547 +f 36448/39548 23413/23773 23404/23763 +f 36446/39549 36448/39548 23404/23763 +f 23413/23773 23419/23779 23405/23764 +f 23414/23774 23405/23764 23419/23779 +f 23420/23780 23408/23767 23414/23774 +f 23409/23769 23411/23771 23421/23781 +f 23409/23769 23422/23782 23415/23775 +f 23423/23783 23412/23772 23410/23770 +f 23407/23766 23417/23777 23416/23776 +f 23411/23771 23416/23776 23421/23781 +f 23417/23777 23412/23772 23423/23783 +f 23420/23780 23418/23778 23408/23767 +f 23410/23770 23418/23778 23424/23784 +f 23413/23773 36448/39550 36449/39551 +f 36450/39552 23419/23779 23413/23773 +f 36451/39553 36450/39552 23413/23773 +f 23419/23779 23420/23780 23414/23774 +f 23422/23782 23409/23769 23421/23781 +f 36452/39554 23423/23783 23410/23770 +f 36453/39555 36452/39554 23410/23770 +f 36454/39556 23416/23776 23417/23777 +f 36455/39557 36454/39556 23417/23777 +f 36456/39558 23421/23781 23416/23776 +f 36457/39559 36456/39558 23416/23776 +f 36458/39560 23417/23777 23423/23783 +f 36459/39561 36458/39560 23423/23783 +f 23418/23778 23420/23780 23424/23784 +f 36453/39562 23410/23770 23424/23784 +f 36460/39563 36453/39562 23424/23784 +f 23413/23773 36449/39564 36451/39565 +f 23419/23779 36450/39566 36461/39567 +f 36462/39568 23420/23780 23419/23779 +f 36461/39569 36462/39568 23419/23779 +f 23425/23785 23422/23782 23421/23781 +f 23423/23783 36452/39570 36463/39571 +f 23417/23777 36458/39572 36455/39573 +f 23416/23776 36454/39574 36464/39575 +f 23416/23776 36464/39576 36457/39577 +f 23421/23781 36456/39578 36465/39579 +f 23423/23783 36463/39580 36459/39581 +f 36466/39582 23424/23784 23420/23780 +f 36467/39583 36466/39582 23420/23780 +f 23424/23784 36468/39584 36460/39585 +f 23420/23780 36462/39586 36467/39587 +f 36469/39588 23425/23785 23421/23781 +f 36470/39589 36469/39588 23421/23781 +f 23421/23781 36465/39590 36470/39591 +f 23424/23784 36466/39592 36471/39593 +f 23424/23784 36471/39594 36468/39595 +f 23426/23786 23427/23787 23428/23788 +f 23426/23786 23429/23789 23427/23787 +f 23427/23787 23430/23790 23428/23788 +f 23426/23786 23428/23788 23431/23791 +f 23429/23789 23432/23792 23427/23787 +f 23433/23793 23429/23789 23426/23786 +f 23427/23787 23434/23794 23430/23790 +f 23430/23790 23435/23795 23428/23788 +f 23436/23796 23431/23791 23428/23788 +f 23433/23793 23426/23786 23431/23791 +f 23437/23797 23427/23787 23432/23792 +f 23438/23798 23432/23792 23429/23789 +f 23433/23793 23439/23799 23429/23789 +f 23434/23794 23427/23787 23440/23800 +f 23434/23794 23441/23801 23430/23790 +f 23428/23788 23435/23795 23442/23802 +f 23430/23790 23441/23801 23435/23795 +f 23436/23796 23428/23788 23442/23802 +f 23443/23803 23431/23791 23436/23796 +f 23431/23791 23443/23803 23433/23793 +f 23432/23792 23444/23804 23437/23797 +f 23427/23787 23437/23797 23440/23800 +f 23429/23789 23439/23799 23438/23798 +f 23432/23792 23438/23798 23444/23804 +f 23433/23793 23445/23805 23439/23799 +f 23434/23794 23440/23800 23446/23806 +f 23441/23801 23434/23794 23447/23807 +f 23435/23795 23448/23808 23442/23802 +f 23449/23809 23435/23795 23441/23801 +f 23450/23810 23436/23796 23442/23802 +f 23451/23811 23443/23803 23436/23796 +f 23433/23793 23443/23803 23452/23812 +f 23437/23797 23444/23804 23453/23813 +f 23437/23797 23453/23813 23440/23800 +f 23438/23798 23439/23799 23454/23814 +f 23455/23815 23444/23804 23438/23798 +f 23445/23805 23433/23793 23456/23816 +f 23439/23799 23445/23805 23454/23814 +f 23440/23800 23457/23817 23446/23806 +f 23434/23794 23446/23806 23458/23818 +f 23447/23807 23449/23809 23441/23801 +f 23434/23794 23459/23819 23447/23807 +f 23448/23808 23435/23795 23460/23820 +f 23442/23802 23448/23808 23450/23810 +f 23435/23795 23449/23809 23460/23820 +f 23436/23796 23450/23810 23451/23811 +f 23443/23803 23451/23811 23461/23821 +f 23433/23793 23452/23812 23456/23816 +f 23452/23812 23443/23803 23462/23822 +f 23444/23804 23455/23815 23453/23813 +f 23453/23813 23463/23823 23440/23800 +f 23455/23815 23438/23798 23454/23814 +f 23456/23816 23464/23824 23445/23805 +f 23464/23824 23454/23814 23445/23805 +f 23457/23817 23440/23800 23463/23823 +f 23457/23817 23465/23825 23446/23806 +f 23458/23818 23446/23806 23466/23826 +f 23459/23819 23434/23794 23458/23818 +f 23447/23807 23467/23827 23449/23809 +f 23459/23819 23468/23828 23447/23807 +f 23469/23829 23448/23808 23460/23820 +f 23450/23810 23448/23808 23469/23829 +f 23460/23820 23449/23809 23470/23830 +f 23451/23811 23450/23810 23461/23821 +f 23443/23803 23461/23821 23462/23822 +f 23452/23812 23471/23831 23456/23816 +f 23462/23822 23471/23831 23452/23812 +f 23472/23832 23453/23813 23455/23815 +f 23453/23813 23472/23832 23463/23823 +f 23454/23814 23473/23833 23455/23815 +f 23464/23824 23456/23816 23474/23834 +f 23454/23814 23464/23824 23473/23833 +f 23475/23835 23457/23817 23463/23823 +f 23457/23817 23476/23836 23465/23825 +f 23446/23806 23465/23825 23466/23826 +f 23477/23837 23458/23818 23466/23826 +f 23459/23819 23458/23818 23477/23837 +f 23467/23827 23447/23807 23478/23838 +f 23479/23839 23449/23809 23467/23827 +f 23447/23807 23468/23828 23478/23838 +f 23468/23828 23459/23819 23480/23840 +f 23460/23820 23481/23841 23469/23829 +f 23450/23810 23469/23829 23481/23841 +f 23470/23830 23482/23842 23460/23820 +f 23479/23839 23470/23830 23449/23809 +f 23461/23821 23450/23810 23483/23843 +f 23462/23822 23461/23821 23484/23844 +f 23471/23831 23474/23834 23456/23816 +f 23485/23845 23471/23831 23462/23822 +f 23473/23833 23472/23832 23455/23815 +f 23486/23846 23463/23823 23472/23832 +f 23474/23834 23487/23847 23464/23824 +f 23488/23848 23473/23833 23464/23824 +f 23475/23835 23489/23849 23457/23817 +f 23490/23850 23475/23835 23463/23823 +f 23457/23817 23489/23849 23476/23836 +f 23465/23825 23476/23836 23491/23851 +f 23465/23825 23492/23852 23466/23826 +f 23466/23826 23493/23853 23477/23837 +f 23477/23837 23480/23840 23459/23819 +f 23467/23827 23478/23838 23494/23854 +f 23467/23827 23494/23854 23479/23839 +f 23468/23828 23495/23855 23478/23838 +f 23468/23828 23480/23840 23496/23856 +f 23497/23857 23481/23841 23460/23820 +f 23481/23841 23483/23843 23450/23810 +f 23470/23830 23498/23858 23482/23842 +f 23460/23820 23482/23842 23497/23857 +f 23470/23830 23479/23839 23499/23859 +f 23484/23844 23461/23821 23483/23843 +f 23462/23822 23484/23844 23500/23860 +f 23501/23861 23474/23834 23471/23831 +f 23485/23845 23462/23822 23500/23860 +f 23471/23831 23485/23845 23501/23861 +f 23472/23832 23473/23833 23502/23862 +f 23463/23823 23486/23846 23490/23850 +f 23502/23862 23486/23846 23472/23832 +f 23487/23847 23503/23863 23464/23824 +f 23487/23847 23474/23834 23501/23861 +f 23488/23848 23502/23862 23473/23833 +f 23488/23848 23464/23824 23504/23864 +f 23475/23835 23505/23865 23489/23849 +f 23475/23835 23490/23850 23505/23865 +f 23489/23849 23506/23866 23476/23836 +f 23491/23851 23476/23836 23506/23866 +f 23465/23825 23491/23851 23492/23852 +f 23466/23826 23492/23852 23493/23853 +f 23507/23867 23477/23837 23493/23853 +f 23480/23840 23477/23837 23508/23868 +f 23495/23855 23494/23854 23478/23838 +f 23494/23854 23499/23859 23479/23839 +f 23509/23869 23495/23855 23468/23828 +f 23510/23870 23496/23856 23480/23840 +f 23468/23828 23496/23856 23509/23869 +f 23497/23857 23483/23843 23481/23841 +f 23499/23859 23498/23858 23470/23830 +f 23482/23842 23498/23858 23511/23871 +f 23497/23857 23482/23842 23512/23872 +f 23484/23844 23483/23843 23513/23873 +f 23513/23873 23500/23860 23484/23844 +f 23485/23845 23500/23860 23514/23874 +f 23515/23875 23501/23861 23485/23845 +f 23502/23862 23490/23850 23486/23846 +f 23503/23863 23487/23847 23516/23876 +f 23503/23863 23517/23877 23464/23824 +f 23518/23878 23487/23847 23501/23861 +f 23488/23848 23519/23879 23502/23862 +f 23504/23864 23520/23880 23488/23848 +f 23464/23824 23517/23877 23504/23864 +f 23521/23881 23489/23849 23505/23865 +f 23519/23879 23505/23865 23490/23850 +f 23522/23882 23506/23866 23489/23849 +f 23491/23851 23506/23866 23523/23883 +f 23523/23883 23492/23852 23491/23851 +f 23492/23852 23524/23884 23493/23853 +f 23507/23867 23493/23853 23525/23885 +f 23477/23837 23507/23867 23508/23868 +f 23480/23840 23508/23868 23510/23870 +f 23494/23854 23495/23855 23526/23886 +f 23499/23859 23494/23854 23527/23887 +f 23495/23855 23509/23869 23526/23886 +f 23496/23856 23510/23870 23526/23886 +f 23526/23886 23509/23869 23496/23856 +f 23483/23843 23497/23857 23513/23873 +f 23528/23888 23498/23858 23499/23859 +f 23498/23858 23529/23889 23511/23871 +f 23511/23871 23530/23890 23482/23842 +f 23530/23890 23512/23872 23482/23842 +f 23513/23873 23497/23857 23512/23872 +f 23512/23872 23500/23860 23513/23873 +f 23500/23860 23530/23890 23514/23874 +f 23531/23891 23485/23845 23514/23874 +f 23515/23875 23532/23892 23501/23861 +f 23515/23875 23485/23845 23531/23891 +f 23519/23879 23490/23850 23502/23862 +f 23533/23893 23503/23863 23516/23876 +f 23516/23876 23487/23847 23534/23894 +f 23503/23863 23533/23893 23517/23877 +f 23501/23861 23535/23895 23518/23878 +f 23487/23847 23518/23878 23534/23894 +f 23519/23879 23488/23848 23536/23896 +f 23537/23897 23520/23880 23504/23864 +f 23520/23880 23536/23896 23488/23848 +f 23517/23877 23537/23897 23504/23864 +f 23505/23865 23538/23898 23521/23881 +f 23522/23882 23489/23849 23521/23881 +f 23505/23865 23519/23879 23539/23899 +f 23506/23866 23522/23882 23521/23881 +f 23540/23900 23523/23883 23506/23866 +f 23523/23883 23541/23901 23492/23852 +f 23525/23885 23493/23853 23524/23884 +f 23492/23852 23541/23901 23524/23884 +f 23525/23885 23542/23902 23507/23867 +f 23508/23868 23507/23867 23543/23903 +f 23508/23868 23543/23903 23510/23870 +f 23494/23854 23526/23886 23527/23887 +f 23499/23859 23527/23887 23528/23888 +f 23526/23886 23510/23870 23544/23904 +f 23529/23889 23498/23858 23528/23888 +f 23529/23889 23545/23905 23511/23871 +f 23511/23871 23546/23906 23530/23890 +f 23500/23860 23512/23872 23530/23890 +f 23547/23907 23514/23874 23530/23890 +f 23547/23907 23531/23891 23514/23874 +f 23501/23861 23532/23892 23535/23895 +f 23532/23892 23515/23875 23548/23908 +f 23548/23908 23515/23875 23531/23891 +f 23549/23909 23533/23893 23516/23876 +f 23518/23878 23516/23876 23534/23894 +f 23517/23877 23533/23893 23550/23910 +f 23551/23911 23518/23878 23535/23895 +f 23536/23896 23552/23912 23519/23879 +f 23537/23897 23553/23913 23520/23880 +f 23536/23896 23520/23880 23552/23912 +f 23517/23877 23554/23914 23537/23897 +f 23521/23881 23538/23898 23555/23915 +f 23505/23865 23539/23899 23538/23898 +f 23552/23912 23539/23899 23519/23879 +f 23506/23866 23521/23881 23540/23900 +f 23556/23916 23523/23883 23540/23900 +f 23541/23901 23523/23883 23557/23917 +f 23524/23884 23558/23918 23525/23885 +f 23557/23917 23524/23884 23541/23901 +f 23525/23885 23559/23919 23542/23902 +f 23507/23867 23542/23902 23560/23920 +f 23543/23903 23507/23867 23544/23904 +f 23543/23903 23544/23904 23510/23870 +f 23527/23887 23526/23886 23561/23921 +f 23527/23887 23562/23922 23528/23888 +f 23526/23886 23544/23904 23561/23921 +f 23528/23888 23562/23922 23529/23889 +f 23563/23923 23545/23905 23529/23889 +f 23511/23871 23545/23905 23546/23906 +f 23530/23890 23546/23906 23547/23907 +f 23564/23924 23531/23891 23547/23907 +f 23565/23925 23535/23895 23532/23892 +f 23532/23892 23548/23908 23566/23926 +f 23548/23908 23531/23891 23567/23927 +f 23549/23909 23516/23876 23518/23878 +f 23549/23909 23550/23910 23533/23893 +f 23554/23914 23517/23877 23550/23910 +f 23568/23928 23518/23878 23551/23911 +f 23535/23895 23565/23925 23551/23911 +f 23569/23929 23553/23913 23537/23897 +f 23520/23880 23553/23913 23570/23930 +f 23520/23880 23571/23931 23552/23912 +f 23572/23932 23537/23897 23554/23914 +f 23538/23898 23573/23933 23555/23915 +f 23540/23900 23521/23881 23555/23915 +f 23538/23898 23539/23899 23574/23934 +f 23575/23935 23539/23899 23552/23912 +f 23523/23883 23556/23916 23557/23917 +f 23540/23900 23576/23936 23556/23916 +f 23558/23918 23524/23884 23557/23917 +f 23525/23885 23558/23918 23577/23937 +f 23525/23885 23578/23938 23559/23919 +f 23579/23939 23542/23902 23559/23919 +f 23560/23920 23542/23902 23580/23940 +f 23507/23867 23560/23920 23544/23904 +f 23562/23922 23527/23887 23561/23921 +f 23544/23904 23581/23941 23561/23921 +f 23582/23942 23529/23889 23562/23922 +f 23563/23923 23583/23943 23545/23905 +f 23563/23923 23529/23889 23584/23944 +f 23585/23945 23546/23906 23545/23905 +f 23547/23907 23546/23906 23586/23946 +f 23531/23891 23564/23924 23567/23927 +f 23586/23946 23564/23924 23547/23907 +f 23566/23926 23565/23925 23532/23892 +f 23587/23947 23566/23926 23548/23908 +f 23567/23927 23587/23947 23548/23908 +f 23549/23909 23518/23878 23588/23948 +f 23589/23949 23550/23910 23549/23909 +f 23590/23950 23554/23914 23550/23910 +f 23588/23948 23518/23878 23568/23928 +f 23551/23911 23591/23951 23568/23928 +f 23565/23925 23591/23951 23551/23911 +f 23592/23952 23553/23913 23569/23929 +f 23537/23897 23572/23932 23569/23929 +f 23553/23913 23593/23953 23570/23930 +f 23571/23931 23520/23880 23570/23930 +f 23571/23931 23594/23954 23552/23912 +f 23572/23932 23554/23914 23595/23955 +f 23573/23933 23538/23898 23574/23934 +f 23596/23956 23555/23915 23573/23933 +f 23555/23915 23596/23956 23540/23900 +f 23575/23935 23574/23934 23539/23899 +f 23575/23935 23552/23912 23594/23954 +f 23557/23917 23556/23916 23597/23957 +f 23598/23958 23556/23916 23576/23936 +f 23540/23900 23596/23956 23576/23936 +f 23557/23917 23599/23959 23558/23918 +f 23558/23918 23600/23960 23577/23937 +f 23577/23937 23578/23938 23525/23885 +f 23578/23938 23601/23961 23559/23919 +f 23542/23902 23579/23939 23580/23940 +f 23559/23919 23602/23962 23579/23939 +f 23603/23963 23560/23920 23580/23940 +f 23544/23904 23560/23920 23581/23941 +f 23562/23922 23561/23921 23581/23941 +f 23529/23889 23582/23942 23584/23944 +f 23581/23941 23582/23942 23562/23922 +f 23585/23945 23545/23905 23583/23943 +f 23604/23964 23583/23943 23563/23923 +f 23584/23944 23605/23965 23563/23923 +f 23585/23945 23586/23946 23546/23906 +f 23606/23966 23567/23927 23564/23924 +f 23564/23924 23586/23946 23607/23967 +f 23565/23925 23566/23926 23608/23968 +f 23609/23969 23566/23926 23587/23947 +f 23587/23947 23567/23927 23610/23970 +f 23589/23949 23549/23909 23588/23948 +f 23550/23910 23589/23949 23611/23971 +f 23554/23914 23590/23950 23612/23972 +f 23613/23973 23590/23950 23550/23910 +f 23568/23928 23614/23974 23588/23948 +f 23591/23951 23615/23975 23568/23928 +f 23565/23925 23616/23976 23591/23951 +f 23617/23977 23553/23913 23592/23952 +f 23569/23929 23618/23978 23592/23952 +f 23569/23929 23572/23932 23595/23955 +f 23553/23913 23617/23977 23593/23953 +f 23593/23953 23619/23979 23570/23930 +f 23620/23980 23571/23931 23570/23930 +f 23620/23980 23594/23954 23571/23931 +f 23554/23914 23612/23972 23595/23955 +f 23574/23934 23621/23981 23573/23933 +f 23573/23933 23622/23982 23596/23956 +f 23621/23981 23574/23934 23575/23935 +f 23594/23954 23623/23983 23575/23935 +f 23598/23958 23597/23957 23556/23916 +f 23557/23917 23597/23957 23624/23984 +f 23625/23985 23598/23958 23576/23936 +f 23622/23982 23576/23936 23596/23956 +f 23624/23984 23599/23959 23557/23917 +f 23558/23918 23599/23959 23600/23960 +f 23577/23937 23600/23960 23626/23986 +f 23577/23937 23627/23987 23578/23938 +f 23601/23961 23602/23962 23559/23919 +f 23628/23988 23601/23961 23578/23938 +f 23580/23940 23579/23939 23629/23989 +f 23602/23962 23630/23990 23579/23939 +f 23580/23940 23631/23991 23603/23963 +f 23632/23992 23560/23920 23603/23963 +f 23632/23992 23581/23941 23560/23920 +f 23633/23993 23584/23944 23582/23942 +f 23633/23993 23582/23942 23581/23941 +f 23585/23945 23583/23943 23607/23967 +f 23607/23967 23583/23943 23604/23964 +f 23604/23964 23563/23923 23605/23965 +f 23634/23994 23605/23965 23584/23944 +f 23586/23946 23585/23945 23607/23967 +f 23610/23970 23567/23927 23606/23966 +f 23564/23924 23607/23967 23606/23966 +f 23616/23976 23565/23925 23608/23968 +f 23566/23926 23609/23969 23608/23968 +f 23609/23969 23587/23947 23635/23995 +f 23635/23995 23587/23947 23610/23970 +f 23636/23996 23589/23949 23588/23948 +f 23589/23949 23636/23996 23611/23971 +f 23611/23971 23613/23973 23550/23910 +f 23590/23950 23637/23997 23612/23972 +f 23638/23998 23590/23950 23613/23973 +f 23639/23999 23588/23948 23614/23974 +f 23568/23928 23615/23975 23614/23974 +f 23616/23976 23615/23975 23591/23951 +f 23617/23977 23592/23952 23640/24000 +f 23640/24000 23592/23952 23618/23978 +f 23641/24001 23618/23978 23569/23929 +f 23569/23929 23595/23955 23641/24001 +f 23642/24002 23593/23953 23617/23977 +f 23593/23953 23643/24003 23619/23979 +f 23619/23979 23644/24004 23570/23930 +f 23570/23930 23645/24005 23620/23980 +f 23594/23954 23620/23980 23623/23983 +f 23595/23955 23612/23972 23646/24006 +f 23622/23982 23573/23933 23621/23981 +f 23575/23935 23623/23983 23621/23981 +f 23647/24007 23597/23957 23598/23958 +f 23624/23984 23597/23957 23648/24008 +f 23625/23985 23647/24007 23598/23958 +f 23625/23985 23576/23936 23622/23982 +f 23649/24009 23599/23959 23624/23984 +f 23599/23959 23650/24010 23600/23960 +f 23626/23986 23651/24011 23577/23937 +f 23600/23960 23652/24012 23626/23986 +f 23628/23988 23578/23938 23627/23987 +f 23627/23987 23577/23937 23651/24011 +f 23602/23962 23601/23961 23653/24013 +f 23628/23988 23654/24014 23601/23961 +f 23630/23990 23629/23989 23579/23939 +f 23631/23991 23580/23940 23629/23989 +f 23630/23990 23602/23962 23655/24015 +f 23603/23963 23631/23991 23656/24016 +f 23657/24017 23632/23992 23603/23963 +f 23581/23941 23632/23992 23633/23993 +f 23584/23944 23633/23993 23658/24018 +f 23604/23964 23659/24019 23607/23967 +f 23605/23965 23659/24019 23604/23964 +f 23660/24020 23605/23965 23634/23994 +f 23658/24018 23634/23994 23584/23944 +f 23635/23995 23610/23970 23606/23966 +f 23606/23966 23607/23967 23659/24019 +f 23616/23976 23608/23968 23661/24021 +f 23608/23968 23609/23969 23662/24022 +f 23663/24023 23609/23969 23635/23995 +f 23588/23948 23639/23999 23636/23996 +f 23664/24024 23611/23971 23636/23996 +f 23613/23973 23611/23971 23664/24024 +f 23637/23997 23590/23950 23665/24025 +f 23637/23997 23646/24006 23612/23972 +f 23638/23998 23665/24025 23590/23950 +f 23638/23998 23613/23973 23664/24024 +f 23639/23999 23614/23974 23666/24026 +f 23614/23974 23615/23975 23666/24026 +f 23615/23975 23616/23976 23667/24027 +f 23617/23977 23640/24000 23668/24028 +f 23640/24000 23618/23978 23669/24029 +f 23641/24001 23669/24029 23618/23978 +f 23595/23955 23646/24006 23641/24001 +f 23593/23953 23642/24002 23643/24003 +f 23642/24002 23617/23977 23670/24030 +f 23619/23979 23643/24003 23671/24031 +f 23570/23930 23644/24004 23672/24032 +f 23644/24004 23619/23979 23671/24031 +f 23570/23930 23672/24032 23645/24005 +f 23623/23983 23620/23980 23645/24005 +f 23673/24033 23622/23982 23621/23981 +f 23623/23983 23674/24034 23621/23981 +f 23675/24035 23597/23957 23647/24007 +f 23597/23957 23676/24036 23648/24008 +f 23677/24037 23624/23984 23648/24008 +f 23625/23985 23678/24038 23647/24007 +f 23678/24038 23625/23985 23622/23982 +f 23650/24010 23599/23959 23649/24009 +f 23624/23984 23677/24037 23649/24009 +f 23600/23960 23650/24010 23652/24012 +f 23679/24039 23651/24011 23626/23986 +f 23626/23986 23652/24012 23680/24040 +f 23627/23987 23654/24014 23628/23988 +f 23627/23987 23651/24011 23681/24041 +f 23601/23961 23654/24014 23653/24013 +f 23602/23962 23653/24013 23655/24015 +f 23629/23989 23630/23990 23682/24042 +f 23631/23991 23629/23989 23682/24042 +f 23630/23990 23655/24015 23683/24043 +f 23603/23963 23656/24016 23657/24017 +f 23656/24016 23631/23991 23684/24044 +f 23657/24017 23685/24045 23632/23992 +f 23686/24046 23633/23993 23632/23992 +f 23633/23993 23686/24046 23658/24018 +f 23605/23965 23687/24047 23659/24019 +f 23687/24047 23605/23965 23660/24020 +f 23688/24048 23660/24020 23634/23994 +f 23689/24049 23634/23994 23658/24018 +f 23635/23995 23606/23966 23690/24050 +f 23606/23966 23659/24019 23690/24050 +f 23661/24021 23608/23968 23691/24051 +f 23692/24052 23616/23976 23661/24021 +f 23663/24023 23662/24022 23609/23969 +f 23691/24051 23608/23968 23662/24022 +f 23663/24023 23635/23995 23693/24053 +f 23694/24054 23636/23996 23639/23999 +f 23695/24055 23664/24024 23636/23996 +f 23637/23997 23665/24025 23696/24056 +f 23646/24006 23637/23997 23697/24057 +f 23638/23998 23698/24058 23665/24025 +f 23699/24059 23638/23998 23664/24024 +f 23700/24060 23639/23999 23666/24026 +f 23667/24027 23666/24026 23615/23975 +f 23667/24027 23616/23976 23692/24052 +f 23668/24028 23670/24030 23617/23977 +f 23640/24000 23669/24029 23668/24028 +f 23701/24061 23669/24029 23641/24001 +f 23646/24006 23702/24062 23641/24001 +f 23642/24002 23703/24063 23643/24003 +f 23670/24030 23704/24064 23642/24002 +f 23705/24065 23671/24031 23643/24003 +f 23644/24004 23706/24066 23672/24032 +f 23671/24031 23707/24067 23644/24004 +f 23672/24032 23674/24034 23645/24005 +f 23623/23983 23645/24005 23674/24034 +f 23673/24033 23621/23981 23674/24034 +f 23622/23982 23673/24033 23708/24068 +f 23597/23957 23675/24035 23676/24036 +f 23709/24069 23675/24035 23647/24007 +f 23676/24036 23710/24070 23648/24008 +f 23710/24070 23677/24037 23648/24008 +f 23647/24007 23678/24038 23709/24069 +f 23708/24068 23678/24038 23622/23982 +f 23711/24071 23650/24010 23649/24009 +f 23677/24037 23712/24072 23649/24009 +f 23652/24012 23650/24010 23713/24073 +f 23714/24074 23679/24039 23626/23986 +f 23715/24075 23651/24011 23679/24039 +f 23713/24073 23680/24040 23652/24012 +f 23680/24040 23714/24074 23626/23986 +f 23627/23987 23681/24041 23654/24014 +f 23681/24041 23651/24011 23715/24075 +f 23716/24076 23653/24013 23654/24014 +f 23653/24013 23716/24076 23655/24015 +f 23630/23990 23683/24043 23682/24042 +f 23682/24042 23684/24044 23631/23991 +f 23655/24015 23717/24077 23683/24043 +f 23656/24016 23718/24078 23657/24017 +f 23684/24044 23719/24079 23656/24016 +f 23720/24080 23685/24045 23657/24017 +f 23632/23992 23685/24045 23686/24046 +f 23686/24046 23689/24049 23658/24018 +f 23659/24019 23687/24047 23721/24081 +f 23660/24020 23722/24082 23687/24047 +f 23723/24083 23660/24020 23688/24048 +f 23634/23994 23689/24049 23688/24048 +f 23724/24084 23635/23995 23690/24050 +f 23659/24019 23721/24081 23690/24050 +f 23725/24085 23661/24021 23691/24051 +f 23692/24052 23661/24021 23725/24085 +f 23726/24086 23662/24022 23663/24023 +f 23727/24087 23691/24051 23662/24022 +f 23635/23995 23724/24084 23693/24053 +f 23693/24053 23728/24088 23663/24023 +f 23694/24054 23695/24055 23636/23996 +f 23639/23999 23729/24089 23694/24054 +f 23695/24055 23699/24059 23664/24024 +f 23698/24058 23696/24056 23665/24025 +f 23696/24056 23730/24090 23637/23997 +f 23697/24057 23702/24062 23646/24006 +f 23730/24090 23697/24057 23637/23997 +f 23698/24058 23638/23998 23699/24059 +f 23731/24091 23639/23999 23700/24060 +f 23667/24027 23700/24060 23666/24026 +f 23667/24027 23692/24052 23732/24092 +f 23733/24093 23670/24030 23668/24028 +f 23668/24028 23669/24029 23734/24094 +f 23701/24061 23641/24001 23735/24095 +f 23701/24061 23734/24094 23669/24029 +f 23641/24001 23702/24062 23735/24095 +f 23642/24002 23736/24096 23703/24063 +f 23703/24063 23705/24065 23643/24003 +f 23737/24097 23704/24064 23670/24030 +f 23642/24002 23704/24064 23738/24098 +f 23739/24099 23671/24031 23705/24065 +f 23740/24100 23672/24032 23706/24066 +f 23706/24066 23644/24004 23707/24067 +f 23741/24101 23707/24067 23671/24031 +f 23672/24032 23740/24100 23674/24034 +f 23674/24034 23742/24102 23673/24033 +f 23743/24103 23708/24068 23673/24033 +f 23675/24035 23744/24104 23676/24036 +f 23709/24069 23744/24104 23675/24035 +f 23676/24036 23745/24105 23710/24070 +f 23710/24070 23746/24106 23677/24037 +f 23708/24068 23709/24069 23678/24038 +f 23649/24009 23747/24107 23711/24071 +f 23713/24073 23650/24010 23711/24071 +f 23677/24037 23746/24106 23712/24072 +f 23649/24009 23712/24072 23748/24108 +f 23679/24039 23714/24074 23749/24109 +f 23679/24039 23750/24110 23715/24075 +f 23751/24111 23680/24040 23713/24073 +f 23752/24112 23714/24074 23680/24040 +f 23716/24076 23654/24014 23681/24041 +f 23715/24075 23753/24113 23681/24041 +f 23717/24077 23655/24015 23716/24076 +f 23682/24042 23683/24043 23754/24114 +f 23682/24042 23754/24114 23684/24044 +f 23683/24043 23717/24077 23753/24113 +f 23656/24016 23719/24079 23718/24078 +f 23718/24078 23755/24115 23657/24017 +f 23684/24044 23756/24116 23719/24079 +f 23720/24080 23757/24117 23685/24045 +f 23720/24080 23657/24017 23755/24115 +f 23757/24117 23686/24046 23685/24045 +f 23758/24118 23689/24049 23686/24046 +f 23687/24047 23759/24119 23721/24081 +f 23687/24047 23722/24082 23759/24119 +f 23723/24083 23722/24082 23660/24020 +f 23688/24048 23760/24120 23723/24083 +f 23689/24049 23761/24121 23688/24048 +f 23721/24081 23724/24084 23690/24050 +f 23725/24085 23691/24051 23762/24122 +f 23725/24085 23732/24092 23692/24052 +f 23726/24086 23663/24023 23728/24088 +f 23726/24086 23727/24087 23662/24022 +f 23691/24051 23727/24087 23762/24122 +f 23763/24123 23693/24053 23724/24084 +f 23693/24053 23763/24123 23728/24088 +f 23764/24124 23695/24055 23694/24054 +f 23729/24089 23639/23999 23731/24091 +f 23694/24054 23729/24089 23765/24125 +f 23699/24059 23695/24055 23766/24126 +f 23698/24058 23767/24127 23696/24056 +f 23768/24128 23730/24090 23696/24056 +f 23769/24129 23702/24062 23697/24057 +f 23770/24130 23697/24057 23730/24090 +f 23698/24058 23699/24059 23771/24131 +f 23772/24132 23731/24091 23700/24060 +f 23773/24133 23700/24060 23667/24027 +f 23667/24027 23732/24092 23774/24134 +f 23733/24093 23737/24097 23670/24030 +f 23668/24028 23734/24094 23733/24093 +f 23775/24135 23701/24061 23735/24095 +f 23701/24061 23775/24135 23734/24094 +f 23702/24062 23776/24136 23735/24095 +f 23642/24002 23777/24137 23736/24096 +f 23736/24096 23778/24138 23703/24063 +f 23703/24063 23778/24138 23705/24065 +f 23704/24064 23737/24097 23779/24139 +f 23738/24098 23780/24140 23642/24002 +f 23738/24098 23704/24064 23781/24141 +f 23705/24065 23778/24138 23739/24099 +f 23739/24099 23782/24142 23671/24031 +f 23741/24101 23740/24100 23706/24066 +f 23706/24066 23707/24067 23741/24101 +f 23671/24031 23783/24143 23741/24101 +f 23742/24102 23674/24034 23740/24100 +f 23742/24102 23743/24103 23673/24033 +f 23743/24103 23784/24144 23708/24068 +f 23676/24036 23744/24104 23745/24105 +f 23709/24069 23785/24145 23744/24104 +f 23745/24105 23786/24146 23710/24070 +f 23710/24070 23786/24146 23746/24106 +f 23708/24068 23784/24144 23709/24069 +f 23649/24009 23748/24108 23747/24107 +f 23711/24071 23747/24107 23787/24147 +f 23788/24148 23713/24073 23711/24071 +f 23789/24149 23712/24072 23746/24106 +f 23789/24149 23748/24108 23712/24072 +f 23749/24109 23714/24074 23790/24150 +f 23749/24109 23750/24110 23679/24039 +f 23715/24075 23750/24110 23791/24151 +f 23792/24152 23680/24040 23751/24111 +f 23793/24153 23751/24111 23713/24073 +f 23752/24112 23790/24150 23714/24074 +f 23752/24112 23680/24040 23794/24154 +f 23681/24041 23753/24113 23716/24076 +f 23791/24151 23753/24113 23715/24075 +f 23753/24113 23717/24077 23716/24076 +f 23754/24114 23683/24043 23795/24155 +f 23684/24044 23754/24114 23796/24156 +f 23683/24043 23753/24113 23797/24157 +f 23798/24158 23718/24078 23719/24079 +f 23755/24115 23718/24078 23799/24159 +f 23756/24116 23684/24044 23796/24156 +f 23756/24116 23798/24158 23719/24079 +f 23758/24118 23757/24117 23720/24080 +f 23755/24115 23800/24160 23720/24080 +f 23758/24118 23686/24046 23757/24117 +f 23689/24049 23758/24118 23761/24121 +f 23759/24119 23801/24161 23721/24081 +f 23802/24162 23759/24119 23722/24082 +f 23722/24082 23723/24083 23803/24163 +f 23760/24120 23688/24048 23761/24121 +f 23804/24164 23723/24083 23760/24120 +f 23724/24084 23721/24081 23805/24165 +f 23762/24122 23732/24092 23725/24085 +f 23726/24086 23728/24088 23806/24166 +f 23726/24086 23807/24167 23727/24087 +f 23808/24168 23762/24122 23727/24087 +f 23763/24123 23724/24084 23809/24169 +f 23810/24170 23728/24088 23763/24123 +f 23764/24124 23766/24126 23695/24055 +f 23694/24054 23765/24125 23764/24124 +f 23731/24091 23811/24171 23729/24089 +f 23729/24089 23812/24172 23765/24125 +f 23813/24173 23699/24059 23766/24126 +f 23814/24174 23696/24056 23767/24127 +f 23767/24127 23698/24058 23771/24131 +f 23768/24128 23815/24175 23730/24090 +f 23816/24176 23768/24128 23696/24056 +f 23769/24129 23817/24177 23702/24062 +f 23770/24130 23769/24129 23697/24057 +f 23730/24090 23815/24175 23770/24130 +f 23771/24131 23699/24059 23813/24173 +f 23811/24171 23731/24091 23772/24132 +f 23700/24060 23773/24133 23772/24132 +f 23773/24133 23667/24027 23774/24134 +f 23732/24092 23762/24122 23774/24134 +f 23737/24097 23733/24093 23818/24178 +f 23818/24178 23733/24093 23734/24094 +f 23735/24095 23819/24179 23775/24135 +f 23775/24135 23818/24178 23734/24094 +f 23776/24136 23702/24062 23817/24177 +f 23735/24095 23776/24136 23820/24180 +f 23821/24181 23777/24137 23642/24002 +f 23777/24137 23822/24182 23736/24096 +f 23778/24138 23736/24096 23823/24183 +f 23779/24139 23737/24097 23818/24178 +f 23781/24141 23704/24064 23779/24139 +f 23824/24184 23780/24140 23738/24098 +f 23780/24140 23825/24185 23642/24002 +f 23738/24098 23781/24141 23826/24186 +f 23778/24138 23823/24183 23739/24099 +f 23782/24142 23783/24143 23671/24031 +f 23739/24099 23827/24187 23782/24142 +f 23741/24101 23742/24102 23740/24100 +f 23742/24102 23741/24101 23783/24143 +f 23783/24143 23743/24103 23742/24102 +f 23828/24188 23784/24144 23743/24103 +f 23744/24104 23829/24189 23745/24105 +f 23744/24104 23785/24145 23829/24189 +f 23709/24069 23784/24144 23785/24145 +f 23786/24146 23745/24105 23830/24190 +f 23789/24149 23746/24106 23786/24146 +f 23747/24107 23748/24108 23831/24191 +f 23711/24071 23787/24147 23832/24192 +f 23833/24193 23787/24147 23747/24107 +f 23832/24192 23788/24148 23711/24071 +f 23788/24148 23793/24153 23713/24073 +f 23834/24194 23748/24108 23789/24149 +f 23749/24109 23790/24150 23835/24195 +f 23835/24195 23750/24110 23749/24109 +f 23791/24151 23750/24110 23836/24196 +f 23837/24197 23680/24040 23792/24152 +f 23792/24152 23751/24111 16747/24198 +f 16800/24199 23751/24111 23793/24153 +f 23835/24195 23790/24150 23752/24112 +f 23794/24154 23680/24040 23837/24197 +f 23794/24154 23838/24200 23752/24112 +f 23791/24151 23839/24201 23753/24113 +f 23795/24155 23796/24156 23754/24114 +f 23797/24157 23795/24155 23683/24043 +f 23753/24113 23840/24202 23797/24157 +f 23718/24078 23798/24158 23841/24203 +f 23799/24159 23842/24204 23755/24115 +f 23799/24159 23718/24078 23841/24203 +f 23796/24156 23843/24205 23756/24116 +f 23843/24205 23798/24158 23756/24116 +f 23844/24206 23758/24118 23720/24080 +f 23800/24160 23755/24115 23845/24207 +f 23800/24160 23844/24206 23720/24080 +f 23844/24206 23761/24121 23758/24118 +f 23801/24161 23759/24119 23846/24208 +f 23805/24165 23721/24081 23801/24161 +f 23759/24119 23802/24162 23847/24209 +f 23803/24163 23802/24162 23722/24082 +f 23723/24083 23804/24164 23803/24163 +f 23848/24210 23760/24120 23761/24121 +f 23760/24120 23848/24210 23804/24164 +f 23724/24084 23805/24165 23809/24169 +f 23806/24166 23728/24088 23849/24211 +f 23726/24086 23806/24166 23807/24167 +f 23727/24087 23807/24167 23850/24212 +f 23774/24134 23762/24122 23808/24168 +f 23808/24168 23727/24087 23851/24213 +f 23852/24214 23763/24123 23809/24169 +f 23853/24215 23728/24088 23810/24170 +f 23854/24216 23810/24170 23763/24123 +f 23766/24126 23764/24124 23855/24217 +f 23855/24217 23764/24124 23765/24125 +f 23812/24172 23729/24089 23811/24171 +f 23812/24172 23855/24217 23765/24125 +f 23855/24217 23813/24173 23766/24126 +f 23814/24174 23816/24176 23696/24056 +f 23767/24127 23856/24218 23814/24174 +f 23857/24219 23767/24127 23771/24131 +f 23858/24220 23815/24175 23768/24128 +f 23858/24220 23768/24128 23816/24176 +f 23769/24129 23770/24130 23817/24177 +f 23859/24221 23770/24130 23815/24175 +f 23771/24131 23813/24173 23860/24222 +f 23861/24223 23811/24171 23772/24132 +f 23772/24132 23773/24133 23862/24224 +f 23862/24224 23773/24133 23774/24134 +f 23863/24225 23775/24135 23819/24179 +f 23820/24180 23819/24179 23735/24095 +f 23818/24178 23775/24135 23863/24225 +f 23817/24177 23864/24226 23776/24136 +f 23776/24136 23864/24226 23820/24180 +f 23865/24227 23777/24137 23821/24181 +f 23821/24181 23642/24002 23825/24185 +f 23822/24182 23823/24183 23736/24096 +f 23866/24228 23822/24182 23777/24137 +f 23818/24178 23863/24225 23779/24139 +f 23867/24229 23781/24141 23779/24139 +f 23738/24098 23826/24186 23824/24184 +f 23780/24140 23824/24184 23868/24230 +f 23869/24231 23825/24185 23780/24140 +f 23870/24232 23826/24186 23781/24141 +f 23739/24099 23823/24183 23827/24187 +f 23782/24142 23828/24188 23783/24143 +f 23827/24187 23871/24233 23782/24142 +f 23743/24103 23783/24143 23828/24188 +f 23828/24188 23829/24189 23784/24144 +f 23829/24189 23830/24190 23745/24105 +f 23785/24145 23784/24144 23829/24189 +f 23872/24234 23786/24146 23830/24190 +f 23786/24146 23834/24194 23789/24149 +f 23834/24194 23831/24191 23748/24108 +f 23831/24191 23833/24193 23747/24107 +f 23832/24192 23787/24147 23873/24235 +f 23873/24235 23787/24147 23833/24193 +f 23788/24148 23832/24192 23874/24236 +f 23874/24236 23793/24153 23788/24148 +f 23875/24237 23750/24110 23835/24195 +f 23750/24110 23876/24238 23836/24196 +f 23791/24151 23836/24196 23877/24239 +f 23878/24240 23837/24197 23792/24152 +f 23751/24111 16800/24199 16747/24198 +f 23879/24241 23792/24152 16747/24198 +f 16800/24199 23793/24153 23880/24242 +f 23881/24243 23835/24195 23752/24112 +f 23837/24197 23882/24244 23794/24154 +f 23752/24112 23838/24200 23875/24237 +f 23794/24154 23883/24245 23838/24200 +f 23839/24201 23791/24151 23884/24246 +f 23753/24113 23839/24201 23840/24202 +f 23885/24247 23796/24156 23795/24155 +f 23885/24247 23795/24155 23797/24157 +f 23797/24157 23840/24202 23886/24248 +f 23841/24203 23798/24158 23887/24249 +f 23842/24204 23799/24159 23888/24250 +f 23845/24207 23755/24115 23842/24204 +f 23799/24159 23841/24203 23889/24251 +f 23796/24156 23885/24247 23843/24205 +f 23843/24205 23887/24249 23798/24158 +f 23848/24210 23800/24160 23845/24207 +f 23761/24121 23844/24206 23800/24160 +f 23847/24209 23846/24208 23759/24119 +f 23801/24161 23846/24208 23805/24165 +f 23890/24252 23847/24209 23802/24162 +f 23891/24253 23802/24162 23803/24163 +f 23804/24164 23892/24254 23803/24163 +f 23800/24160 23848/24210 23761/24121 +f 23804/24164 23848/24210 23893/24255 +f 23809/24169 23805/24165 23852/24214 +f 23806/24166 23849/24211 23894/24256 +f 23849/24211 23728/24088 23895/24257 +f 23894/24256 23807/24167 23806/24166 +f 23850/24212 23851/24213 23727/24087 +f 23807/24167 23896/24258 23850/24212 +f 23897/24259 23774/24134 23808/24168 +f 23897/24259 23808/24168 23851/24213 +f 23763/24123 23852/24214 23854/24216 +f 23728/24088 23853/24215 23895/24257 +f 23810/24170 23898/24260 23853/24215 +f 23810/24170 23854/24216 23899/24261 +f 23811/24171 23861/24223 23812/24172 +f 23812/24172 23900/24262 23855/24217 +f 23813/24173 23855/24217 23901/24263 +f 23816/24176 23814/24174 23902/24264 +f 23903/24265 23856/24218 23767/24127 +f 23814/24174 23856/24218 23902/24264 +f 23857/24219 23904/24266 23767/24127 +f 23771/24131 23905/24267 23857/24219 +f 23906/24268 23815/24175 23858/24220 +f 23816/24176 23907/24269 23858/24220 +f 23859/24221 23817/24177 23770/24130 +f 23815/24175 23864/24226 23859/24221 +f 23905/24267 23771/24131 23860/24222 +f 23908/24270 23860/24222 23813/24173 +f 23862/24224 23861/24223 23772/24132 +f 23774/24134 23897/24259 23862/24224 +f 23909/24271 23863/24225 23819/24179 +f 23819/24179 23820/24180 23909/24271 +f 23859/24221 23864/24226 23817/24177 +f 23820/24180 23864/24226 23910/24272 +f 23911/24273 23777/24137 23865/24227 +f 23912/24274 23865/24227 23821/24181 +f 23825/24185 23913/24275 23821/24181 +f 23823/24183 23822/24182 23866/24228 +f 23777/24137 23911/24273 23866/24228 +f 23779/24139 23863/24225 23867/24229 +f 23781/24141 23867/24229 23870/24232 +f 23824/24184 23826/24186 23914/24276 +f 23914/24276 23868/24230 23824/24184 +f 23869/24231 23780/24140 23868/24230 +f 23825/24185 23869/24231 23915/24277 +f 23914/24276 23826/24186 23870/24232 +f 23823/24183 23916/24278 23827/24187 +f 23871/24233 23828/24188 23782/24142 +f 23871/24233 23827/24187 23917/24279 +f 23829/24189 23828/24188 23830/24190 +f 23918/24280 23786/24146 23872/24234 +f 23830/24190 23871/24233 23872/24234 +f 23786/24146 23919/24281 23834/24194 +f 23920/24282 23831/24191 23834/24194 +f 23920/24282 23833/24193 23831/24191 +f 23921/24283 23832/24192 23873/24235 +f 23873/24235 23833/24193 23922/24284 +f 23921/24283 23874/24236 23832/24192 +f 23874/24236 23880/24242 23793/24153 +f 23838/24200 23750/24110 23875/24237 +f 23835/24195 23881/24243 23875/24237 +f 23750/24110 23923/24285 23876/24238 +f 23876/24238 23924/24286 23836/24196 +f 23884/24246 23791/24151 23877/24239 +f 23836/24196 23925/24287 23877/24239 +f 23926/24288 23837/24197 23878/24240 +f 23792/24152 16622/24289 23878/24240 +f 16622/24289 23792/24152 23879/24241 +f 23879/24241 16747/24198 16695/24290 +f 16800/24199 23880/24242 16854/24291 +f 23875/24237 23881/24243 23752/24112 +f 23837/24197 23926/24288 23882/24244 +f 23883/24245 23794/24154 23882/24244 +f 23927/24292 23838/24200 23883/24245 +f 23839/24201 23884/24246 23928/24293 +f 23840/24202 23839/24201 23929/24294 +f 23797/24157 23930/24295 23885/24247 +f 23930/24295 23797/24157 23886/24248 +f 23886/24248 23840/24202 23931/24296 +f 23841/24203 23887/24249 23932/24297 +f 23888/24250 23933/24298 23842/24204 +f 23799/24159 23889/24251 23888/24250 +f 23842/24204 23934/24299 23845/24207 +f 23889/24251 23841/24203 23932/24297 +f 23885/24247 23930/24295 23843/24205 +f 23843/24205 23930/24295 23887/24249 +f 23848/24210 23845/24207 23935/24300 +f 23847/24209 23936/24301 23846/24208 +f 23805/24165 23846/24208 23937/24302 +f 23938/24303 23847/24209 23890/24252 +f 23802/24162 23891/24253 23890/24252 +f 23892/24254 23891/24253 23803/24163 +f 23939/24304 23892/24254 23804/24164 +f 23939/24304 23804/24164 23893/24255 +f 23848/24210 23935/24300 23893/24255 +f 23937/24302 23852/24214 23805/24165 +f 23894/24256 23849/24211 23940/24305 +f 23895/24257 23941/24306 23849/24211 +f 23894/24256 23942/24307 23807/24167 +f 23850/24212 23896/24258 23851/24213 +f 23807/24167 23942/24307 23896/24258 +f 23943/24308 23897/24259 23851/24213 +f 23852/24214 23944/24309 23854/24216 +f 23945/24310 23895/24257 23853/24215 +f 23945/24310 23853/24215 23898/24260 +f 23810/24170 23946/24311 23898/24260 +f 23899/24261 23854/24216 23947/24312 +f 23946/24311 23810/24170 23899/24261 +f 23861/24223 23900/24262 23812/24172 +f 23855/24217 23900/24262 23948/24313 +f 23948/24313 23901/24263 23855/24217 +f 23908/24270 23813/24173 23901/24263 +f 23907/24269 23816/24176 23902/24264 +f 23949/24314 23856/24218 23903/24265 +f 23903/24265 23767/24127 23904/24266 +f 23856/24218 23949/24314 23902/24264 +f 23904/24266 23857/24219 23950/24315 +f 23905/24267 23950/24315 23857/24219 +f 23951/24316 23815/24175 23906/24268 +f 23907/24269 23906/24268 23858/24220 +f 23951/24316 23864/24226 23815/24175 +f 23952/24317 23905/24267 23860/24222 +f 23952/24317 23860/24222 23908/24270 +f 23861/24223 23862/24224 23900/24262 +f 23900/24262 23862/24224 23897/24259 +f 23953/24318 23863/24225 23909/24271 +f 23820/24180 23954/24319 23909/24271 +f 23864/24226 23955/24320 23910/24272 +f 23956/24321 23820/24180 23910/24272 +f 23865/24227 23957/24322 23911/24273 +f 23821/24181 23958/24323 23912/24274 +f 23912/24274 23959/24324 23865/24227 +f 23825/24185 23960/24325 23913/24275 +f 23821/24181 23913/24275 23958/24323 +f 23866/24228 23916/24278 23823/24183 +f 23911/24273 23961/24326 23866/24228 +f 23863/24225 23953/24318 23867/24229 +f 23867/24229 23962/24327 23870/24232 +f 23914/24276 23963/24328 23868/24230 +f 23868/24230 23915/24277 23869/24231 +f 23915/24277 23964/24329 23825/24185 +f 23870/24232 23963/24328 23914/24276 +f 23827/24187 23916/24278 23965/24330 +f 23871/24233 23830/24190 23828/24188 +f 23917/24279 23827/24187 23965/24330 +f 23872/24234 23871/24233 23917/24279 +f 23786/24146 23918/24280 23919/24281 +f 23872/24234 23965/24330 23918/24280 +f 23919/24281 23966/24331 23834/24194 +f 23834/24194 23966/24331 23920/24282 +f 23833/24193 23920/24282 23967/24332 +f 23968/24333 23921/24283 23873/24235 +f 23969/24334 23922/24284 23833/24193 +f 23873/24235 23922/24284 23968/24333 +f 23921/24283 23970/24335 23874/24236 +f 23880/24242 23874/24236 23970/24335 +f 23971/24336 23750/24110 23838/24200 +f 23972/24337 23923/24285 23750/24110 +f 23973/24338 23876/24238 23923/24285 +f 23876/24238 23974/24339 23924/24286 +f 23925/24287 23836/24196 23924/24286 +f 23975/24340 23884/24246 23877/24239 +f 23925/24287 23975/24340 23877/24239 +f 23926/24288 23878/24240 16613/24341 +f 23878/24240 16622/24289 16613/24341 +f 23879/24241 16650/24342 16622/24289 +f 16695/24290 16650/24342 23879/24241 +f 23880/24242 23976/24343 16854/24291 +f 23882/24244 23926/24288 23927/24292 +f 23883/24245 23882/24244 23927/24292 +f 23838/24200 23927/24292 23971/24336 +f 23884/24246 23977/24344 23928/24293 +f 23929/24294 23839/24201 23928/24293 +f 23978/24345 23840/24202 23929/24294 +f 23931/24296 23930/24295 23886/24248 +f 23931/24296 23840/24202 23978/24345 +f 23979/24346 23932/24297 23887/24249 +f 23980/24347 23933/24298 23888/24250 +f 23934/24299 23842/24204 23933/24298 +f 23980/24347 23888/24250 23889/24251 +f 23981/24348 23845/24207 23934/24299 +f 23889/24251 23932/24297 23979/24346 +f 23887/24249 23930/24295 23979/24346 +f 23981/24348 23935/24300 23845/24207 +f 23937/24302 23846/24208 23936/24301 +f 23938/24303 23936/24301 23847/24209 +f 23982/24349 23938/24303 23890/24252 +f 23983/24350 23890/24252 23891/24253 +f 23891/24253 23892/24254 23984/24351 +f 23939/24304 23985/24352 23892/24254 +f 23939/24304 23893/24255 23986/24353 +f 23981/24348 23893/24255 23935/24300 +f 23944/24309 23852/24214 23937/24302 +f 23940/24305 23849/24211 23941/24306 +f 23894/24256 23940/24305 23987/24354 +f 23895/24257 23988/24355 23941/24306 +f 23987/24354 23942/24307 23894/24256 +f 23943/24308 23851/24213 23896/24258 +f 23896/24258 23942/24307 23989/24356 +f 23990/24357 23897/24259 23943/24308 +f 23854/24216 23944/24309 23991/24358 +f 23992/24359 23895/24257 23945/24310 +f 23992/24359 23945/24310 23898/24260 +f 23946/24311 23993/24360 23898/24260 +f 23991/24358 23947/24312 23854/24216 +f 23899/24261 23947/24312 23994/24361 +f 23946/24311 23899/24261 23994/24361 +f 23897/24259 23948/24313 23900/24262 +f 23901/24263 23948/24313 23995/24362 +f 23996/24363 23908/24270 23901/24263 +f 23949/24314 23907/24269 23902/24264 +f 23949/24314 23903/24265 23997/24364 +f 23904/24266 23998/24365 23903/24265 +f 23904/24266 23950/24315 23999/24366 +f 24000/24367 23950/24315 23905/24267 +f 24001/24368 23951/24316 23906/24268 +f 24002/24369 23906/24268 23907/24269 +f 23864/24226 23951/24316 23955/24320 +f 23952/24317 24003/24370 23905/24267 +f 23908/24270 24004/24371 23952/24317 +f 23953/24318 23909/24271 23954/24319 +f 24005/24372 23954/24319 23820/24180 +f 23955/24320 24006/24373 23910/24272 +f 23820/24180 23956/24321 24005/24372 +f 24007/24374 23956/24321 23910/24272 +f 23865/24227 23959/24324 23957/24322 +f 23911/24273 23957/24322 23961/24326 +f 23958/24323 24008/24375 23912/24274 +f 24009/24376 23959/24324 23912/24274 +f 23825/24185 24010/24377 23960/24325 +f 23960/24325 23958/24323 23913/24275 +f 23866/24228 23961/24326 23916/24278 +f 23953/24318 23962/24327 23867/24229 +f 24011/24378 23870/24232 23962/24327 +f 23868/24230 23963/24328 24012/24379 +f 24013/24380 23915/24277 23868/24230 +f 23964/24329 23915/24277 24014/24381 +f 24015/24382 23825/24185 23964/24329 +f 23963/24328 23870/24232 24011/24378 +f 23916/24278 23961/24326 23965/24330 +f 23917/24279 23965/24330 23872/24234 +f 23919/24281 23918/24280 24016/24383 +f 24017/24384 23918/24280 23965/24330 +f 23919/24281 24018/24385 23966/24331 +f 23967/24332 23920/24282 23966/24331 +f 23967/24332 24019/24386 23833/24193 +f 23968/24333 23970/24335 23921/24283 +f 23922/24284 23969/24334 24020/24387 +f 23833/24193 24019/24386 23969/24334 +f 23970/24335 23968/24333 23922/24284 +f 24021/24388 23880/24242 23970/24335 +f 24022/24389 23750/24110 23971/24336 +f 23750/24110 24022/24389 23972/24337 +f 24023/24390 23923/24285 23972/24337 +f 24024/24391 23973/24338 23923/24285 +f 23876/24238 23973/24338 24025/24392 +f 23876/24238 24025/24392 23974/24339 +f 23974/24339 24026/24393 23924/24286 +f 23924/24286 24027/24394 23925/24287 +f 23975/24340 24028/24395 23884/24246 +f 24029/24396 23975/24340 23925/24287 +f 24030/24397 23926/24288 16613/24341 +f 16854/24291 23976/24343 16872/24398 +f 23880/24242 24031/24399 23976/24343 +f 23927/24292 23926/24288 24032/24400 +f 23971/24336 23927/24292 24032/24400 +f 23884/24246 24028/24395 23977/24344 +f 24033/24401 23928/24293 23977/24344 +f 23929/24294 23928/24293 24033/24401 +f 24034/24402 23978/24345 23929/24294 +f 23931/24296 23979/24346 23930/24295 +f 23931/24296 23978/24345 24035/24403 +f 23933/24298 23980/24347 24034/24402 +f 24036/24404 23934/24299 23933/24298 +f 23980/24347 23889/24251 23979/24346 +f 23981/24348 23934/24299 24036/24404 +f 23937/24302 23936/24301 23944/24309 +f 23938/24303 24037/24405 23936/24301 +f 24037/24405 23938/24303 23982/24349 +f 23982/24349 23890/24252 24038/24406 +f 23983/24350 24039/24407 23890/24252 +f 23984/24351 23983/24350 23891/24253 +f 23984/24351 23892/24254 23985/24352 +f 23939/24304 24040/24408 23985/24352 +f 24040/24408 23939/24304 23986/24353 +f 23981/24348 24041/24409 23893/24255 +f 24042/24410 23940/24305 23941/24306 +f 23940/24305 24042/24410 23987/24354 +f 23895/24257 23992/24359 23988/24355 +f 23988/24355 24042/24410 23941/24306 +f 24043/24411 23942/24307 23987/24354 +f 23989/24356 23943/24308 23896/24258 +f 23989/24356 23942/24307 24043/24411 +f 23948/24313 23897/24259 23990/24357 +f 23943/24308 23989/24356 23990/24357 +f 23944/24309 24044/24412 23991/24358 +f 23992/24359 23898/24260 23993/24360 +f 23993/24360 23946/24311 24045/24413 +f 23947/24312 23991/24358 24046/24414 +f 23994/24361 23947/24312 24047/24415 +f 23994/24361 24045/24413 23946/24311 +f 23948/24313 23990/24357 23995/24362 +f 23995/24362 23996/24363 23901/24263 +f 24004/24371 23908/24270 23996/24363 +f 23949/24314 24048/24416 23907/24269 +f 23997/24364 23903/24265 23998/24365 +f 24048/24416 23949/24314 23997/24364 +f 23998/24365 23904/24266 23999/24366 +f 23999/24366 23950/24315 24000/24367 +f 24000/24367 23905/24267 24003/24370 +f 23951/24316 24001/24368 23955/24320 +f 24049/24417 24001/24368 23906/24268 +f 24050/24418 23906/24268 24002/24369 +f 23907/24269 24051/24419 24002/24369 +f 24003/24370 23952/24317 24052/24420 +f 23952/24317 24004/24371 24052/24420 +f 23953/24318 23954/24319 24053/24421 +f 24053/24421 23954/24319 24005/24372 +f 24006/24373 23955/24320 24054/24422 +f 24006/24373 24055/24423 23910/24272 +f 24056/24424 24005/24372 23956/24321 +f 24056/24424 23956/24321 24007/24374 +f 24055/24423 24007/24374 23910/24272 +f 23959/24324 24057/24425 23957/24322 +f 23957/24322 24057/24425 23961/24326 +f 24008/24375 23958/24323 24058/24426 +f 24009/24376 23912/24274 24008/24375 +f 24057/24425 23959/24324 24009/24376 +f 23825/24185 24059/24427 24010/24377 +f 23960/24325 24010/24377 24060/24428 +f 23960/24325 24058/24426 23958/24323 +f 23962/24327 23953/24318 24053/24421 +f 24061/24429 24011/24378 23962/24327 +f 24011/24378 24012/24379 23963/24328 +f 24013/24380 23868/24230 24012/24379 +f 24062/24430 23915/24277 24013/24380 +f 23915/24277 24062/24430 24014/24381 +f 24015/24382 23964/24329 24014/24381 +f 24015/24382 24059/24427 23825/24185 +f 23961/24326 24063/24431 23965/24330 +f 24064/24432 24016/24383 23918/24280 +f 24016/24383 24065/24433 23919/24281 +f 24066/24434 23918/24280 24017/24384 +f 23965/24330 24063/24431 24017/24384 +f 24065/24433 24018/24385 23919/24281 +f 23966/24331 24018/24385 24067/24435 +f 24067/24435 23967/24332 23966/24331 +f 24067/24435 24019/24386 23967/24332 +f 23970/24335 23922/24284 24020/24387 +f 24020/24387 23969/24334 24068/24436 +f 23969/24334 24019/24386 24069/24437 +f 24020/24387 24021/24388 23970/24335 +f 24031/24399 23880/24242 24021/24388 +f 23971/24336 24070/24438 24022/24389 +f 23972/24337 24022/24389 24071/24439 +f 24072/24440 23923/24285 24023/24390 +f 24023/24390 23972/24337 24073/24441 +f 24072/24440 24024/24391 23923/24285 +f 23973/24338 24024/24391 24074/24442 +f 24075/24443 24025/24392 23973/24338 +f 24025/24392 24076/24444 23974/24339 +f 24077/24445 24026/24393 23974/24339 +f 23924/24286 24026/24393 24027/24394 +f 24027/24394 24029/24396 23925/24287 +f 24028/24395 23975/24340 24078/24446 +f 23975/24340 24029/24396 24078/24446 +f 24079/24447 23926/24288 24030/24397 +f 24030/24397 16613/24341 16589/24448 +f 24080/24449 16872/24398 23976/24343 +f 24031/24399 24081/24450 23976/24343 +f 24032/24400 23926/24288 24079/24447 +f 23971/24336 24032/24400 24070/24438 +f 24082/24451 23977/24344 24028/24395 +f 24033/24401 23977/24344 24082/24451 +f 24033/24401 24034/24402 23929/24294 +f 23978/24345 24034/24402 24035/24403 +f 23931/24296 24035/24403 23979/24346 +f 24035/24403 24034/24402 23980/24347 +f 24033/24401 23933/24298 24034/24402 +f 23933/24298 24082/24451 24036/24404 +f 23979/24346 24035/24403 23980/24347 +f 23981/24348 24036/24404 24083/24452 +f 23936/24301 24037/24405 23944/24309 +f 24084/24453 24037/24405 23982/24349 +f 23890/24252 24039/24407 24038/24406 +f 23982/24349 24038/24406 24085/24454 +f 24039/24407 23983/24350 23984/24351 +f 24086/24455 23984/24351 23985/24352 +f 23985/24352 24040/24408 24087/24456 +f 24041/24409 23981/24348 24088/24457 +f 24043/24411 23987/24354 24042/24410 +f 23992/24359 24089/24458 23988/24355 +f 23988/24355 24090/24459 24042/24410 +f 24091/24460 23989/24356 24043/24411 +f 23990/24357 23989/24356 24092/24461 +f 23944/24309 24037/24405 24044/24412 +f 24093/24462 23991/24358 24044/24412 +f 24094/24463 23992/24359 23993/24360 +f 24094/24463 23993/24360 24045/24413 +f 24046/24414 23991/24358 24093/24462 +f 24046/24414 24047/24415 23947/24312 +f 24047/24415 24045/24413 23994/24361 +f 24095/24464 23995/24362 23990/24357 +f 23996/24363 23995/24362 24096/24465 +f 24097/24466 24004/24371 23996/24363 +f 23907/24269 24048/24416 24098/24467 +f 24099/24468 23997/24364 23998/24365 +f 24100/24469 24048/24416 23997/24364 +f 23999/24366 24101/24470 23998/24365 +f 24102/24471 23999/24366 24000/24367 +f 24003/24370 24103/24472 24000/24367 +f 24104/24473 23955/24320 24001/24368 +f 24049/24417 24105/24474 24001/24368 +f 24050/24418 24049/24417 23906/24268 +f 24106/24475 24050/24418 24002/24369 +f 24002/24369 24051/24419 24107/24476 +f 24051/24419 23907/24269 24098/24467 +f 24003/24370 24052/24420 24108/24477 +f 24109/24478 24052/24420 24004/24371 +f 24005/24372 24110/24479 24053/24421 +f 24104/24473 24054/24422 23955/24320 +f 24054/24422 24111/24480 24006/24373 +f 24006/24373 24111/24480 24055/24423 +f 24112/24481 24005/24372 24056/24424 +f 24113/24482 24056/24424 24007/24374 +f 24007/24374 24055/24423 24114/24483 +f 24063/24431 23961/24326 24057/24425 +f 24115/24484 24008/24375 24058/24426 +f 24008/24375 24116/24485 24009/24376 +f 24009/24376 24116/24485 24057/24425 +f 24059/24427 24117/24486 24010/24377 +f 24010/24377 24118/24487 24060/24428 +f 24119/24488 23960/24325 24060/24428 +f 24058/24426 23960/24325 24120/24489 +f 24053/24421 24061/24429 23962/24327 +f 24110/24479 24011/24378 24061/24429 +f 24012/24379 24011/24378 24121/24490 +f 24122/24491 24013/24380 24012/24379 +f 24013/24380 24122/24491 24062/24430 +f 24062/24430 24123/24492 24014/24381 +f 24123/24492 24015/24382 24014/24381 +f 24015/24382 24123/24492 24059/24427 +f 23918/24280 24066/24434 24064/24432 +f 24016/24383 24064/24432 24124/24493 +f 24016/24383 24125/24494 24065/24433 +f 24126/24495 24066/24434 24017/24384 +f 24057/24425 24017/24384 24063/24431 +f 24065/24433 24127/24496 24018/24385 +f 24067/24435 24018/24385 24128/24497 +f 24067/24435 24128/24497 24019/24386 +f 24068/24436 23969/24334 24069/24437 +f 24021/24388 24020/24387 24068/24436 +f 24019/24386 24129/24498 24069/24437 +f 24021/24388 24130/24499 24031/24399 +f 24022/24389 24070/24438 24131/24500 +f 23972/24337 24071/24439 24073/24441 +f 24071/24439 24022/24389 24132/24501 +f 24072/24440 24023/24390 24073/24441 +f 24024/24391 24072/24440 24074/24442 +f 23973/24338 24074/24442 24133/24502 +f 23973/24338 24133/24502 24075/24443 +f 24025/24392 24075/24443 24134/24503 +f 24025/24392 24134/24503 24076/24444 +f 24076/24444 24135/24504 23974/24339 +f 24077/24445 23974/24339 24136/24505 +f 24026/24393 24077/24445 24137/24506 +f 24138/24507 24027/24394 24026/24393 +f 24029/24396 24027/24394 24139/24508 +f 24078/24446 24140/24509 24028/24395 +f 24029/24396 24141/24510 24078/24446 +f 24030/24397 16589/24448 24079/24447 +f 24080/24449 16881/24511 16872/24398 +f 24142/24512 24080/24449 23976/24343 +f 24081/24450 24031/24399 24143/24513 +f 24081/24450 24142/24512 23976/24343 +f 24079/24447 24144/24514 24032/24400 +f 24145/24515 24070/24438 24032/24400 +f 24140/24509 24082/24451 24028/24395 +f 24082/24451 23933/24298 24033/24401 +f 24082/24451 24146/24516 24036/24404 +f 23981/24348 24083/24452 24088/24457 +f 24083/24452 24036/24404 24147/24517 +f 24037/24405 24084/24453 24093/24462 +f 24084/24453 23982/24349 24085/24454 +f 24039/24407 24148/24518 24038/24406 +f 24038/24406 24148/24518 24085/24454 +f 24039/24407 23984/24351 24086/24455 +f 24087/24456 24086/24455 23985/24352 +f 24088/24457 24149/24519 24041/24409 +f 24042/24410 24090/24459 24043/24411 +f 23992/24359 24094/24463 24089/24458 +f 24089/24458 24150/24520 23988/24355 +f 24091/24460 24090/24459 23988/24355 +f 24092/24461 23989/24356 24091/24460 +f 24091/24460 24043/24411 24090/24459 +f 24092/24461 24095/24464 23990/24357 +f 24093/24462 24044/24412 24037/24405 +f 24094/24463 24045/24413 24151/24521 +f 24046/24414 24093/24462 24152/24522 +f 24153/24523 24047/24415 24046/24414 +f 24154/24524 24045/24413 24047/24415 +f 23995/24362 24095/24464 24096/24465 +f 24097/24466 23996/24363 24096/24465 +f 24097/24466 24109/24478 24004/24371 +f 24098/24467 24048/24416 24100/24469 +f 23997/24364 24099/24468 24155/24525 +f 24101/24470 24099/24468 23998/24365 +f 23997/24364 24156/24526 24100/24469 +f 23999/24366 24157/24527 24101/24470 +f 23999/24366 24102/24471 24157/24527 +f 24000/24367 24103/24472 24102/24471 +f 24103/24472 24003/24370 24158/24528 +f 24001/24368 24105/24474 24104/24473 +f 24159/24529 24105/24474 24049/24417 +f 24159/24529 24049/24417 24050/24418 +f 24106/24475 24159/24529 24050/24418 +f 24160/24530 24106/24475 24002/24369 +f 24161/24531 24107/24476 24051/24419 +f 24002/24369 24107/24476 24162/24532 +f 24051/24419 24098/24467 24163/24533 +f 24164/24534 24108/24477 24052/24420 +f 24003/24370 24108/24477 24165/24535 +f 24166/24536 24052/24420 24109/24478 +f 24005/24372 24112/24481 24110/24479 +f 24110/24479 24061/24429 24053/24421 +f 24104/24473 24167/24537 24054/24422 +f 24054/24422 24168/24538 24111/24480 +f 24168/24538 24055/24423 24111/24480 +f 24169/24539 24112/24481 24056/24424 +f 24056/24424 24113/24482 24170/24540 +f 24114/24483 24113/24482 24007/24374 +f 24171/24541 24114/24483 24055/24423 +f 24172/24542 24008/24375 24115/24484 +f 24115/24484 24058/24426 24173/24543 +f 24172/24542 24116/24485 24008/24375 +f 24057/24425 24116/24485 24126/24495 +f 24010/24377 24117/24486 24118/24487 +f 24117/24486 24059/24427 24174/24544 +f 24118/24487 24175/24545 24060/24428 +f 24119/24488 24120/24489 23960/24325 +f 24060/24428 24175/24545 24119/24488 +f 24120/24489 24173/24543 24058/24426 +f 24121/24490 24011/24378 24110/24479 +f 24122/24491 24012/24379 24121/24490 +f 24062/24430 24122/24491 3569/24546 +f 24123/24492 24062/24430 24176/24547 +f 24177/24548 24059/24427 24123/24492 +f 24178/24549 24064/24432 24066/24434 +f 24179/24550 24124/24493 24064/24432 +f 24124/24493 24125/24494 24016/24383 +f 24065/24433 24125/24494 24127/24496 +f 24066/24434 24126/24495 24180/24551 +f 24057/24425 24126/24495 24017/24384 +f 24127/24496 24128/24497 24018/24385 +f 24128/24497 24129/24498 24019/24386 +f 24181/24552 24068/24436 24069/24437 +f 24068/24436 24181/24552 24021/24388 +f 24129/24498 24181/24552 24069/24437 +f 24021/24388 24182/24553 24130/24499 +f 24031/24399 24130/24499 24183/24554 +f 24131/24500 24070/24438 24184/24555 +f 24022/24389 24131/24500 24185/24556 +f 24071/24439 16495/24557 24073/24441 +f 24132/24501 24022/24389 24186/24558 +f 24132/24501 16528/24559 24071/24439 +f 16529/24560 24072/24440 24073/24441 +f 24072/24440 16642/24561 24074/24442 +f 24134/24503 24075/24443 24133/24502 +f 24136/24505 24076/24444 24134/24503 +f 24076/24444 24136/24505 24135/24504 +f 23974/24339 24135/24504 24136/24505 +f 24136/24505 24187/24562 24077/24445 +f 24137/24506 24077/24445 24187/24562 +f 24026/24393 24137/24506 24138/24507 +f 24027/24394 24138/24507 24139/24508 +f 24188/24563 24029/24396 24139/24508 +f 24141/24510 24140/24509 24078/24446 +f 24029/24396 24188/24563 24141/24510 +f 24189/24564 24079/24447 16589/24448 +f 24190/24565 16881/24511 24080/24449 +f 24191/24566 24080/24449 24142/24512 +f 24143/24513 24031/24399 24192/24567 +f 24193/24568 24081/24450 24143/24513 +f 24081/24450 24193/24568 24142/24512 +f 24144/24514 24145/24515 24032/24400 +f 24144/24514 24079/24447 24189/24564 +f 24184/24555 24070/24438 24145/24515 +f 24082/24451 24140/24509 24194/24569 +f 24082/24451 24194/24569 24146/24516 +f 24146/24516 24147/24517 24036/24404 +f 24083/24452 24195/24570 24088/24457 +f 24083/24452 24147/24517 24196/24571 +f 24152/24522 24093/24462 24084/24453 +f 24084/24453 24085/24454 24197/24572 +f 24148/24518 24039/24407 24198/24573 +f 24086/24455 24199/24574 24039/24407 +f 24087/24456 24200/24575 24086/24455 +f 24088/24457 24201/24576 24149/24519 +f 24041/24409 24149/24519 24202/24577 +f 24089/24458 24094/24463 24203/24578 +f 24150/24520 24091/24460 23988/24355 +f 24150/24520 24089/24458 24203/24578 +f 24092/24461 24091/24460 24150/24520 +f 24095/24464 24092/24461 24204/24579 +f 24045/24413 24154/24524 24151/24521 +f 24203/24578 24094/24463 24151/24521 +f 24153/24523 24046/24414 24152/24522 +f 24154/24524 24047/24415 24153/24523 +f 24095/24464 24205/24580 24096/24465 +f 24096/24465 24206/24581 24097/24466 +f 24207/24582 24109/24478 24097/24466 +f 24098/24467 24100/24469 24208/24583 +f 24209/24584 24155/24525 24099/24468 +f 24155/24525 24156/24526 23997/24364 +f 24099/24468 24101/24470 24210/24585 +f 24211/24586 24100/24469 24156/24526 +f 24101/24470 24157/24527 24212/24587 +f 24157/24527 24102/24471 24213/24588 +f 24214/24589 24102/24471 24103/24472 +f 24215/24590 24103/24472 24158/24528 +f 24165/24535 24158/24528 24003/24370 +f 24105/24474 24216/24591 24104/24473 +f 24159/24529 24217/24592 24105/24474 +f 24159/24529 24106/24475 24218/24593 +f 24160/24530 24219/24594 24106/24475 +f 24002/24369 24220/24595 24160/24530 +f 24161/24531 24162/24532 24107/24476 +f 24221/24596 24161/24531 24051/24419 +f 24162/24532 24222/24597 24002/24369 +f 24221/24596 24051/24419 24163/24533 +f 24223/24598 24163/24533 24098/24467 +f 24224/24599 24108/24477 24164/24534 +f 24166/24536 24164/24534 24052/24420 +f 24224/24599 24165/24535 24108/24477 +f 24166/24536 24109/24478 24225/24600 +f 24226/24601 24110/24479 24112/24481 +f 24054/24422 24167/24537 24168/24538 +f 24104/24473 24216/24591 24167/24537 +f 24168/24538 24227/24602 24055/24423 +f 24169/24539 24228/24603 24112/24481 +f 24170/24540 24169/24539 24056/24424 +f 24229/24604 24170/24540 24113/24482 +f 24114/24483 24230/24605 24113/24482 +f 24231/24606 24114/24483 24171/24541 +f 24227/24602 24171/24541 24055/24423 +f 24115/24484 24232/24607 24172/24542 +f 24115/24484 24173/24543 24232/24607 +f 24116/24485 24172/24542 24233/24608 +f 24126/24495 24116/24485 24233/24608 +f 24117/24486 24234/24609 24118/24487 +f 24174/24544 24235/24610 24117/24486 +f 24236/24611 24174/24544 24059/24427 +f 24118/24487 24237/24612 24175/24545 +f 24238/24613 24120/24489 24119/24488 +f 24119/24488 24175/24545 24238/24613 +f 24120/24489 24238/24613 24173/24543 +f 24110/24479 24226/24601 24121/24490 +f 24226/24601 24122/24491 24121/24490 +f 24062/24430 3569/24546 24239/24614 +f 3508/24615 3569/24546 24122/24491 +f 24239/24614 24176/24547 24062/24430 +f 24123/24492 24176/24547 24239/24614 +f 24177/24548 24123/24492 24240/24616 +f 24177/24548 24236/24611 24059/24427 +f 24241/24617 24064/24432 24178/24549 +f 24180/24551 24178/24549 24066/24434 +f 24179/24550 24242/24618 24124/24493 +f 24064/24432 24243/24619 24179/24550 +f 24124/24493 24244/24620 24125/24494 +f 24125/24494 24245/24621 24127/24496 +f 24180/24551 24126/24495 24233/24608 +f 24128/24497 24127/24496 24246/24622 +f 24129/24498 24128/24497 24246/24622 +f 24247/24623 24021/24388 24181/24552 +f 24181/24552 24129/24498 24248/24624 +f 24247/24623 24182/24553 24021/24388 +f 24249/24625 24130/24499 24182/24553 +f 24031/24399 24183/24554 24192/24567 +f 24183/24554 24130/24499 24249/24625 +f 24184/24555 24250/24626 24131/24500 +f 24131/24500 24251/24627 24185/24556 +f 24185/24556 24186/24558 24022/24389 +f 24073/24441 16495/24557 16529/24560 +f 16528/24559 16495/24557 24071/24439 +f 16562/24628 24132/24501 24186/24558 +f 24132/24501 16562/24628 16528/24559 +f 16529/24560 16558/24629 24072/24440 +f 24072/24440 16558/24629 16642/24561 +f 24136/24505 24134/24503 24187/24562 +f 24139/24508 24138/24507 24252/24630 +f 24188/24563 24139/24508 24253/24631 +f 24140/24509 24141/24510 24254/24632 +f 24188/24563 24253/24631 24141/24510 +f 24189/24564 16589/24448 16561/24633 +f 24190/24565 24080/24449 24255/24634 +f 16881/24511 24190/24565 16845/24635 +f 24080/24449 24191/24566 24255/24634 +f 24191/24566 24142/24512 24193/24568 +f 24192/24567 24191/24566 24143/24513 +f 24191/24566 24193/24568 24143/24513 +f 24145/24515 24144/24514 24189/24564 +f 24145/24515 24250/24626 24184/24555 +f 24140/24509 24256/24636 24194/24569 +f 24146/24516 24194/24569 24257/24637 +f 24257/24637 24147/24517 24146/24516 +f 24258/24638 24088/24457 24195/24570 +f 24196/24571 24195/24570 24083/24452 +f 24259/24639 24196/24571 24147/24517 +f 24084/24453 24260/24640 24152/24522 +f 24260/24640 24084/24453 24197/24572 +f 24198/24573 24039/24407 24199/24574 +f 24148/24518 24198/24573 24261/24641 +f 24262/24642 24199/24574 24086/24455 +f 24262/24642 24086/24455 24200/24575 +f 24201/24576 24263/24643 24149/24519 +f 24088/24457 24258/24638 24201/24576 +f 24202/24577 24149/24519 24264/24644 +f 24265/24645 24150/24520 24203/24578 +f 24265/24645 24092/24461 24150/24520 +f 24204/24579 24092/24461 24265/24645 +f 24095/24464 24204/24579 24266/24646 +f 24154/24524 24267/24647 24151/24521 +f 24268/24648 24203/24578 24151/24521 +f 24260/24640 24153/24523 24152/24522 +f 24153/24523 24260/24640 24154/24524 +f 24205/24580 24206/24581 24096/24465 +f 24266/24646 24205/24580 24095/24464 +f 24206/24581 24269/24649 24097/24466 +f 24225/24600 24109/24478 24207/24582 +f 24207/24582 24097/24466 24269/24649 +f 24270/24650 24208/24583 24100/24469 +f 24271/24651 24098/24467 24208/24583 +f 24272/24652 24155/24525 24209/24584 +f 24099/24468 24273/24653 24209/24584 +f 24155/24525 24272/24652 24156/24526 +f 24210/24585 24101/24470 24212/24587 +f 24273/24653 24099/24468 24210/24585 +f 24100/24469 24211/24586 24270/24650 +f 24274/24654 24211/24586 24156/24526 +f 24157/24527 24213/24588 24212/24587 +f 24213/24588 24102/24471 24214/24589 +f 24103/24472 24215/24590 24214/24589 +f 24275/24655 24215/24590 24158/24528 +f 24275/24655 24158/24528 24165/24535 +f 24216/24591 24105/24474 24217/24592 +f 24159/24529 24218/24593 24217/24592 +f 24218/24593 24106/24475 24276/24656 +f 24277/24657 24219/24594 24160/24530 +f 24106/24475 24219/24594 24276/24656 +f 24278/24658 24160/24530 24220/24595 +f 24279/24659 24220/24595 24002/24369 +f 24162/24532 24161/24531 24280/24660 +f 24161/24531 24221/24596 24281/24661 +f 24282/24662 24222/24597 24162/24532 +f 24222/24597 24279/24659 24002/24369 +f 24221/24596 24163/24533 24223/24598 +f 24283/24663 24223/24598 24098/24467 +f 24164/24534 24284/24664 24224/24599 +f 24285/24665 24164/24534 24166/24536 +f 24286/24666 24165/24535 24224/24599 +f 24166/24536 24225/24600 24285/24665 +f 24228/24603 24226/24601 24112/24481 +f 24168/24538 24167/24537 24287/24667 +f 24216/24591 3372/24668 24167/24537 +f 24227/24602 24168/24538 24288/24669 +f 24289/24670 24228/24603 24169/24539 +f 24290/24671 24169/24539 24170/24540 +f 24170/24540 24229/24604 24290/24671 +f 24113/24482 24230/24605 24229/24604 +f 24114/24483 24231/24606 24230/24605 +f 24171/24541 24288/24669 24231/24606 +f 24227/24602 24288/24669 24171/24541 +f 24172/24542 24232/24607 24233/24608 +f 24238/24613 24232/24607 24173/24543 +f 24234/24609 24117/24486 24235/24610 +f 24237/24612 24118/24487 24234/24609 +f 24174/24544 24291/24672 24235/24610 +f 24292/24673 24174/24544 24236/24611 +f 24293/24674 24175/24545 24237/24612 +f 24175/24545 24293/24674 24238/24613 +f 24226/24601 24228/24603 24122/24491 +f 24239/24614 3569/24546 3611/24675 +f 3508/24615 24122/24491 24228/24603 +f 24123/24492 24239/24614 24240/24616 +f 24294/24676 24177/24548 24240/24616 +f 24295/24677 24236/24611 24177/24548 +f 24064/24432 24241/24617 24243/24619 +f 24241/24617 24178/24549 24296/24678 +f 24296/24678 24178/24549 24180/24551 +f 24242/24618 24179/24550 24297/24679 +f 24244/24620 24124/24493 24242/24618 +f 24298/24680 24179/24550 24243/24619 +f 24244/24620 24299/24681 24125/24494 +f 24299/24681 24245/24621 24125/24494 +f 24127/24496 24245/24621 24246/24622 +f 24180/24551 24233/24608 24296/24678 +f 24245/24621 24129/24498 24246/24622 +f 24248/24624 24247/24623 24181/24552 +f 24245/24621 24248/24624 24129/24498 +f 24247/24623 24300/24682 24182/24553 +f 24249/24625 24182/24553 24300/24682 +f 24249/24625 24192/24567 24183/24554 +f 24131/24500 24250/24626 24301/24683 +f 24251/24627 24131/24500 24301/24683 +f 24186/24558 24185/24556 24251/24627 +f 24186/24558 24302/24684 16562/24628 +f 24252/24630 24253/24631 24139/24508 +f 24254/24632 24141/24510 24303/24685 +f 24256/24636 24140/24509 24254/24632 +f 24141/24510 24253/24631 24304/24686 +f 16561/24633 24305/24687 24189/24564 +f 24306/24688 24190/24565 24255/24634 +f 16912/24689 16845/24635 24190/24565 +f 24306/24688 24255/24634 24191/24566 +f 24307/24690 24191/24566 24192/24567 +f 24189/24564 24250/24626 24145/24515 +f 24194/24569 24256/24636 24257/24637 +f 24147/24517 24257/24637 24259/24639 +f 24258/24638 24195/24570 24308/24691 +f 24195/24570 24196/24571 24309/24692 +f 24259/24639 24310/24693 24196/24571 +f 24197/24572 24311/24694 24260/24640 +f 24199/24574 24312/24695 24198/24573 +f 24261/24641 24198/24573 24312/24695 +f 24261/24641 24313/24696 24148/24518 +f 24262/24642 24314/24697 24199/24574 +f 24200/24575 24314/24697 24262/24642 +f 24315/24698 24263/24643 24201/24576 +f 24263/24643 24316/24699 24149/24519 +f 24315/24698 24201/24576 24258/24638 +f 24149/24519 24316/24699 24264/24644 +f 24203/24578 24317/24700 24265/24645 +f 24265/24645 24318/24701 24204/24579 +f 24266/24646 24204/24579 24319/24702 +f 24154/24524 24320/24703 24267/24647 +f 24267/24647 24268/24648 24151/24521 +f 24317/24700 24203/24578 24268/24648 +f 24321/24704 24154/24524 24260/24640 +f 24206/24581 24205/24580 24322/24705 +f 24205/24580 24266/24646 24323/24706 +f 24322/24705 24269/24649 24206/24581 +f 24324/24707 24225/24600 24207/24582 +f 24325/24708 24207/24582 24269/24649 +f 24326/24709 24208/24583 24270/24650 +f 24271/24651 24283/24663 24098/24467 +f 24208/24583 24327/24710 24271/24651 +f 24272/24652 24209/24584 24328/24711 +f 24328/24711 24209/24584 24273/24653 +f 24329/24712 24156/24526 24272/24652 +f 24330/24713 24210/24585 24212/24587 +f 24210/24585 24331/24714 24273/24653 +f 24270/24650 24211/24586 24332/24715 +f 24274/24654 24332/24715 24211/24586 +f 24274/24654 24156/24526 24329/24712 +f 24212/24587 24213/24588 24333/24716 +f 24334/24717 24213/24588 24214/24589 +f 24214/24589 24215/24590 24335/24718 +f 24275/24655 24335/24718 24215/24590 +f 24165/24535 24286/24666 24275/24655 +f 24217/24592 3358/24719 24216/24591 +f 24217/24592 24218/24593 24336/24720 +f 24218/24593 24276/24656 24337/24721 +f 24219/24594 24277/24657 24338/24722 +f 24160/24530 24278/24658 24277/24657 +f 24219/24594 24339/24723 24276/24656 +f 24278/24658 24220/24595 24279/24659 +f 24280/24660 24161/24531 24281/24661 +f 24162/24532 24280/24660 24282/24662 +f 24281/24661 24221/24596 24223/24598 +f 24340/24724 24222/24597 24282/24662 +f 24279/24659 24222/24597 24341/24725 +f 24342/24726 24223/24598 24283/24663 +f 24284/24664 24164/24534 24285/24665 +f 24284/24664 24343/24727 24224/24599 +f 24224/24599 24343/24727 24286/24666 +f 24285/24665 24225/24600 24324/24707 +f 24344/24728 24168/24538 24287/24667 +f 24167/24537 3372/24668 24287/24667 +f 3372/24668 24216/24591 3358/24719 +f 24288/24669 24168/24538 24344/24728 +f 24289/24670 3469/24729 24228/24603 +f 24169/24539 24345/24730 24289/24670 +f 24290/24671 24346/24731 24169/24539 +f 24290/24671 24229/24604 24230/24605 +f 24230/24605 24231/24606 24288/24669 +f 24347/24732 24233/24608 24232/24607 +f 24238/24613 24293/24674 24232/24607 +f 24234/24609 24235/24610 24348/24733 +f 24234/24609 24348/24733 24237/24612 +f 24291/24672 24349/24734 24235/24610 +f 24174/24544 24350/24735 24291/24672 +f 24174/24544 24292/24673 24350/24735 +f 24236/24611 24351/24736 24292/24673 +f 24293/24674 24237/24612 24352/24737 +f 3611/24675 24294/24676 24239/24614 +f 3469/24729 3508/24615 24228/24603 +f 24240/24616 24239/24614 24294/24676 +f 24295/24677 24177/24548 24294/24676 +f 24353/24738 24236/24611 24295/24677 +f 24354/24739 24243/24619 24241/24617 +f 24241/24617 24296/24678 24347/24732 +f 24297/24679 24355/24740 24242/24618 +f 24356/24741 24297/24679 24179/24550 +f 24242/24618 24357/24742 24244/24620 +f 24179/24550 24298/24680 24358/24743 +f 24298/24680 24243/24619 24359/24744 +f 24299/24681 24244/24620 24357/24742 +f 24357/24742 24245/24621 24299/24681 +f 24347/24732 24296/24678 24233/24608 +f 24248/24624 24360/24745 24247/24623 +f 24360/24745 24248/24624 24245/24621 +f 24361/24746 24300/24682 24247/24623 +f 24362/24747 24249/24625 24300/24682 +f 24307/24690 24192/24567 24249/24625 +f 24301/24683 24250/24626 24189/24564 +f 24251/24627 24301/24683 24363/24748 +f 24302/24684 24186/24558 24251/24627 +f 16588/24749 16562/24628 24302/24684 +f 24141/24510 24304/24686 24303/24685 +f 24364/24750 24254/24632 24303/24685 +f 24254/24632 24364/24750 24256/24636 +f 24304/24686 24253/24631 24365/24751 +f 16561/24633 16588/24749 24305/24687 +f 24305/24687 24301/24683 24189/24564 +f 24190/24565 24306/24688 24366/24752 +f 16912/24689 24190/24565 24366/24752 +f 24191/24566 24307/24690 24306/24688 +f 24256/24636 24259/24639 24257/24637 +f 24308/24691 24195/24570 24309/24692 +f 24367/24753 24258/24638 24308/24691 +f 24310/24693 24309/24692 24196/24571 +f 24259/24639 24256/24636 24310/24693 +f 24321/24704 24260/24640 24311/24694 +f 24368/24754 24312/24695 24199/24574 +f 24369/24755 24261/24641 24312/24695 +f 24261/24641 24369/24755 24313/24696 +f 24314/24697 24368/24754 24199/24574 +f 24263/24643 24315/24698 24370/24756 +f 24371/24757 24316/24699 24263/24643 +f 24258/24638 24372/24758 24315/24698 +f 24264/24644 24316/24699 24373/24759 +f 24265/24645 24317/24700 24318/24701 +f 24204/24579 24318/24701 24319/24702 +f 24319/24702 24374/24760 24266/24646 +f 24320/24703 24154/24524 24321/24704 +f 24320/24703 24375/24761 24267/24647 +f 24376/24762 24268/24648 24267/24647 +f 24317/24700 24268/24648 24377/24763 +f 24323/24706 24322/24705 24205/24580 +f 24374/24760 24323/24706 24266/24646 +f 24322/24705 24325/24708 24269/24649 +f 24325/24708 24324/24707 24207/24582 +f 24332/24715 24326/24709 24270/24650 +f 24208/24583 24326/24709 24378/24764 +f 24379/24765 24283/24663 24271/24651 +f 24378/24764 24327/24710 24208/24583 +f 24379/24765 24271/24651 24327/24710 +f 24328/24711 24380/24766 24272/24652 +f 24273/24653 24380/24766 24328/24711 +f 24381/24767 24329/24712 24272/24652 +f 24210/24585 24330/24713 24331/24714 +f 24212/24587 24333/24716 24330/24713 +f 24380/24766 24273/24653 24331/24714 +f 24274/24654 24382/24768 24332/24715 +f 24274/24654 24329/24712 24382/24768 +f 24334/24717 24333/24716 24213/24588 +f 24383/24769 24334/24717 24214/24589 +f 24335/24718 24383/24769 24214/24589 +f 24384/24770 24335/24718 24275/24655 +f 24384/24770 24275/24655 24286/24666 +f 3341/24771 3358/24719 24217/24592 +f 24385/24772 24336/24720 24218/24593 +f 24336/24720 3341/24771 24217/24592 +f 24337/24721 24276/24656 24386/24773 +f 24385/24772 24218/24593 24337/24721 +f 24387/24774 24338/24722 24277/24657 +f 24219/24594 24338/24722 24339/24723 +f 24278/24658 24388/24775 24277/24657 +f 24339/24723 24386/24773 24276/24656 +f 24341/24725 24278/24658 24279/24659 +f 24280/24660 24281/24661 24389/24776 +f 24282/24662 24280/24660 24390/24777 +f 24223/24598 24391/24778 24281/24661 +f 24340/24724 24341/24725 24222/24597 +f 24392/24779 24340/24724 24282/24662 +f 24393/24780 24342/24726 24283/24663 +f 24223/24598 24342/24726 24391/24778 +f 24394/24781 24284/24664 24285/24665 +f 24284/24664 24395/24782 24343/24727 +f 24396/24783 24286/24666 24343/24727 +f 24324/24707 24397/24784 24285/24665 +f 24398/24785 24344/24728 24287/24667 +f 3372/24668 24398/24785 24287/24667 +f 24288/24669 24344/24728 24399/24786 +f 3469/24729 24289/24670 3427/24787 +f 3427/24787 24289/24670 24345/24730 +f 24346/24731 24345/24730 24169/24539 +f 24400/24788 24346/24731 24290/24671 +f 24230/24605 24401/24789 24290/24671 +f 24399/24786 24230/24605 24288/24669 +f 24232/24607 24293/24674 24347/24732 +f 24348/24733 24235/24610 24402/24790 +f 24348/24733 24352/24737 24237/24612 +f 24350/24735 24349/24734 24291/24672 +f 24402/24790 24235/24610 24349/24734 +f 24349/24734 24350/24735 24292/24673 +f 24292/24673 24351/24736 24403/24791 +f 24351/24736 24236/24611 24404/24792 +f 24293/24674 24352/24737 24347/24732 +f 24294/24676 3611/24675 24405/24793 +f 24294/24676 24406/24794 24295/24677 +f 24236/24611 24353/24738 24407/24795 +f 24353/24738 24295/24677 24406/24794 +f 24354/24739 24408/24796 24243/24619 +f 24354/24739 24241/24617 24409/24797 +f 24347/24732 24409/24797 24241/24617 +f 24355/24740 24410/24798 24242/24618 +f 24297/24679 24411/24799 24355/24740 +f 24358/24743 24356/24741 24179/24550 +f 24411/24799 24297/24679 24356/24741 +f 24357/24742 24242/24618 24410/24798 +f 24298/24680 17038/24800 24358/24743 +f 24359/24744 24243/24619 24412/24801 +f 17046/24802 24298/24680 24359/24744 +f 24245/24621 24357/24742 24360/24745 +f 24247/24623 24360/24745 24361/24746 +f 24300/24682 24361/24746 24362/24747 +f 24362/24747 24307/24690 24249/24625 +f 24305/24687 24363/24748 24301/24683 +f 24302/24684 24251/24627 24363/24748 +f 24363/24748 16588/24749 24302/24684 +f 24413/24803 24303/24685 24304/24686 +f 24413/24803 24364/24750 24303/24685 +f 24364/24750 24310/24693 24256/24636 +f 24414/24804 24304/24686 24365/24751 +f 24253/24631 24415/24805 24365/24751 +f 24305/24687 16588/24749 24363/24748 +f 24366/24752 24306/24688 24416/24806 +f 16937/24807 16912/24689 24366/24752 +f 24307/24690 24417/24808 24306/24688 +f 24309/24692 24418/24809 24308/24691 +f 24308/24691 24419/24810 24367/24753 +f 24258/24638 24367/24753 24420/24811 +f 24364/24750 24309/24692 24310/24693 +f 24368/24754 24421/24812 24312/24695 +f 24421/24812 24369/24755 24312/24695 +f 24422/24813 24313/24696 24369/24755 +f 24368/24754 24314/24697 24423/24814 +f 24371/24757 24263/24643 24370/24756 +f 24315/24698 24424/24815 24370/24756 +f 24425/24816 24316/24699 24371/24757 +f 24372/24758 24424/24815 24315/24698 +f 24420/24811 24372/24758 24258/24638 +f 24373/24759 24316/24699 24425/24816 +f 24318/24701 24317/24700 24377/24763 +f 24377/24763 24319/24702 24318/24701 +f 24374/24760 24319/24702 24426/24817 +f 24375/24761 24376/24762 24267/24647 +f 24375/24761 24320/24703 24427/24818 +f 24268/24648 24376/24762 24428/24819 +f 24428/24819 24377/24763 24268/24648 +f 24429/24820 24322/24705 24323/24706 +f 24374/24760 24430/24821 24323/24706 +f 24431/24822 24325/24708 24322/24705 +f 24432/24823 24324/24707 24325/24708 +f 24382/24768 24326/24709 24332/24715 +f 24326/24709 24433/24824 24378/24764 +f 24379/24765 24393/24780 24283/24663 +f 24327/24710 24378/24764 24433/24824 +f 24327/24710 24433/24824 24379/24765 +f 24380/24766 24434/24825 24272/24652 +f 24381/24767 24382/24768 24329/24712 +f 24434/24825 24381/24767 24272/24652 +f 24435/24826 24331/24714 24330/24713 +f 24333/24716 24436/24827 24330/24713 +f 24435/24826 24380/24766 24331/24714 +f 24333/24716 24334/24717 24436/24827 +f 24383/24769 24437/24828 24334/24717 +f 24383/24769 24335/24718 24384/24770 +f 24438/24829 24384/24770 24286/24666 +f 24385/24772 3341/24771 24336/24720 +f 24337/24721 24386/24773 24439/24830 +f 3348/24831 24385/24772 24337/24721 +f 24387/24774 24440/24832 24338/24722 +f 24387/24774 24277/24657 24441/24833 +f 24338/24722 24442/24834 24339/24723 +f 24388/24775 24441/24833 24277/24657 +f 24278/24658 24341/24725 24388/24775 +f 24386/24773 24339/24723 24442/24834 +f 24389/24776 24281/24661 24391/24778 +f 24389/24776 24443/24835 24280/24660 +f 24280/24660 24443/24835 24390/24777 +f 24282/24662 24390/24777 24392/24779 +f 24340/24724 24388/24775 24341/24725 +f 24444/24836 24340/24724 24392/24779 +f 24393/24780 24445/24837 24342/24726 +f 24445/24837 24391/24778 24342/24726 +f 24284/24664 24394/24781 24395/24782 +f 24285/24665 24397/24784 24394/24781 +f 24395/24782 24396/24783 24343/24727 +f 24396/24783 24446/24838 24286/24666 +f 24397/24784 24324/24707 24447/24839 +f 24398/24785 24448/24840 24344/24728 +f 3383/24841 24398/24785 3372/24668 +f 24448/24840 24399/24786 24344/24728 +f 24346/24731 3427/24787 24345/24730 +f 24449/24842 24346/24731 24400/24788 +f 24290/24671 24401/24789 24400/24788 +f 24399/24786 24401/24789 24230/24605 +f 24450/24843 24348/24733 24402/24790 +f 24348/24733 24354/24739 24352/24737 +f 24349/24734 24451/24844 24402/24790 +f 24292/24673 24403/24791 24349/24734 +f 24403/24791 24351/24736 24452/24845 +f 24404/24792 24453/24846 24351/24736 +f 24236/24611 24454/24847 24404/24792 +f 24352/24737 24409/24797 24347/24732 +f 3611/24675 3633/24848 24405/24793 +f 24294/24676 24405/24793 24406/24794 +f 24353/24738 24455/24849 24407/24795 +f 24236/24611 24407/24795 24454/24847 +f 24406/24794 24456/24850 24353/24738 +f 24354/24739 24450/24843 24408/24796 +f 24457/24851 24243/24619 24408/24796 +f 24409/24797 24352/24737 24354/24739 +f 24362/24747 24410/24798 24355/24740 +f 24355/24740 24411/24799 24416/24806 +f 24358/24743 24411/24799 24356/24741 +f 24357/24742 24410/24798 24361/24746 +f 17046/24802 17038/24800 24298/24680 +f 17038/24800 16995/24852 24358/24743 +f 24412/24801 24243/24619 24457/24851 +f 24412/24801 24458/24853 24359/24744 +f 24359/24744 17079/24854 17046/24802 +f 24360/24745 24357/24742 24361/24746 +f 24410/24798 24362/24747 24361/24746 +f 24362/24747 24417/24808 24307/24690 +f 24459/24855 24413/24803 24304/24686 +f 24460/24856 24364/24750 24413/24803 +f 24414/24804 24459/24855 24304/24686 +f 24365/24751 24461/24857 24414/24804 +f 24365/24751 24415/24805 24461/24857 +f 24306/24688 24417/24808 24416/24806 +f 24416/24806 16937/24807 24366/24752 +f 24309/24692 24462/24858 24418/24809 +f 24308/24691 24418/24809 24419/24810 +f 24367/24753 24419/24810 24463/24859 +f 24464/24860 24420/24811 24367/24753 +f 24309/24692 24364/24750 24465/24861 +f 24466/24862 24421/24812 24368/24754 +f 24369/24755 24421/24812 24467/24863 +f 24369/24755 24467/24863 24422/24813 +f 24368/24754 24423/24814 24466/24862 +f 24468/24864 24423/24814 24314/24697 +f 24371/24757 24370/24756 24469/24865 +f 8032/24866 24370/24756 24424/24815 +f 24425/24816 24371/24757 24469/24865 +f 24372/24758 24470/24867 24424/24815 +f 24471/24868 24372/24758 24420/24811 +f 24425/24816 8075/24869 24373/24759 +f 24472/24870 24319/24702 24377/24763 +f 24426/24817 24473/24871 24374/24760 +f 24472/24870 24426/24817 24319/24702 +f 24474/24872 24376/24762 24375/24761 +f 24475/24873 24375/24761 24427/24818 +f 24428/24819 24376/24762 24474/24872 +f 24428/24819 24476/24874 24377/24763 +f 24429/24820 24431/24822 24322/24705 +f 24323/24706 24430/24821 24429/24820 +f 24374/24760 24477/24875 24430/24821 +f 24478/24876 24325/24708 24431/24822 +f 24447/24839 24324/24707 24432/24823 +f 24478/24876 24432/24823 24325/24708 +f 24326/24709 24382/24768 24381/24767 +f 24479/24877 24433/24824 24326/24709 +f 24479/24877 24393/24780 24379/24765 +f 24479/24877 24379/24765 24433/24824 +f 24480/24878 24434/24825 24380/24766 +f 24481/24879 24381/24767 24434/24825 +f 36670/39985 24435/24826 24330/24713 +f 36671/39986 36670/39985 24330/24713 +f 24436/24827 24482/24880 24330/24713 +f 24380/24766 24435/24826 24480/24878 +f 24436/24827 24334/24717 24437/24828 +f 24384/24770 24437/24828 24383/24769 +f 24286/24666 24446/24838 24438/24829 +f 24384/24770 24438/24829 24483/24881 +f 3341/24771 24385/24772 3333/24882 +f 24386/24773 24484/24883 24439/24830 +f 24439/24830 3348/24831 24337/24721 +f 3333/24882 24385/24772 3348/24831 +f 24440/24832 24387/24774 24485/24884 +f 24440/24832 24486/24885 24338/24722 +f 24441/24833 24485/24884 24387/24774 +f 24486/24885 24442/24834 24338/24722 +f 24487/24886 24441/24833 24388/24775 +f 24486/24885 24386/24773 24442/24834 +f 24488/24887 24389/24776 24391/24778 +f 36672/39987 24443/24835 24389/24776 +f 36673/39988 36672/39987 24389/24776 +f 24443/24835 24392/24779 24390/24777 +f 24340/24724 24487/24886 24388/24775 +f 24487/24886 24340/24724 24444/24836 +f 24443/24835 24444/24836 24392/24779 +f 36674/39989 24445/24837 24393/24780 +f 36675/39990 36674/39989 24393/24780 +f 36676/39991 24391/24778 24445/24837 +f 36677/39992 36676/39991 24445/24837 +f 24489/24888 24395/24782 24394/24781 +f 24397/24784 24490/24889 24394/24781 +f 24491/24890 24396/24783 24395/24782 +f 24446/24838 24396/24783 24492/24891 +f 24447/24839 24493/24892 24397/24784 +f 24398/24785 3406/24893 24448/24840 +f 24398/24785 3383/24841 3406/24893 +f 24448/24840 24494/24894 24399/24786 +f 3427/24787 24346/24731 24449/24842 +f 24494/24894 24449/24842 24400/24788 +f 24494/24894 24400/24788 24401/24789 +f 24401/24789 24399/24786 24494/24894 +f 24354/24739 24348/24733 24450/24843 +f 24402/24790 24451/24844 24450/24843 +f 24349/24734 24495/24895 24451/24844 +f 24403/24791 24495/24895 24349/24734 +f 24495/24895 24403/24791 24452/24845 +f 24452/24845 24351/24736 24496/24896 +f 24497/24897 24453/24846 24404/24792 +f 24496/24896 24351/24736 24453/24846 +f 24454/24847 24498/24898 24404/24792 +f 24405/24793 3633/24848 24499/24899 +f 24406/24794 24405/24793 24500/24900 +f 24353/24738 4068/24901 24455/24849 +f 24407/24795 24455/24849 24501/24902 +f 24407/24795 24502/24903 24454/24847 +f 24500/24900 24456/24850 24406/24794 +f 24456/24850 24503/24904 24353/24738 +f 24408/24796 24450/24843 24504/24905 +f 24408/24796 24504/24905 24457/24851 +f 24417/24808 24362/24747 24355/24740 +f 24355/24740 24416/24806 24417/24808 +f 24411/24799 16975/24906 24416/24806 +f 24358/24743 16975/24906 24411/24799 +f 16995/24852 16975/24906 24358/24743 +f 24412/24801 24457/24851 24505/24907 +f 24412/24801 24506/24908 24458/24853 +f 24458/24853 17079/24854 24359/24744 +f 24459/24855 24507/24909 24413/24803 +f 24413/24803 24508/24910 24460/24856 +f 24364/24750 24460/24856 24465/24861 +f 24509/24911 24459/24855 24414/24804 +f 24461/24857 24510/24912 24414/24804 +f 24416/24806 16975/24906 16937/24807 +f 24309/24692 24465/24861 24462/24858 +f 24511/24913 24418/24809 24462/24858 +f 24418/24809 24512/24914 24419/24810 +f 24513/24915 24463/24859 24419/24810 +f 24463/24859 24464/24860 24367/24753 +f 24514/24916 24420/24811 24464/24860 +f 24467/24863 24421/24812 24466/24862 +f 24423/24814 24468/24864 24466/24862 +f 24370/24756 8029/24917 24469/24865 +f 8029/24917 24370/24756 8032/24866 +f 24424/24815 8077/24918 8032/24866 +f 8075/24869 24425/24816 24469/24865 +f 24471/24868 24470/24867 24372/24758 +f 24424/24815 24470/24867 24515/24919 +f 24514/24916 24471/24868 24420/24811 +f 24377/24763 24516/24920 24472/24870 +f 24473/24871 24477/24875 24374/24760 +f 24517/24921 24473/24871 24426/24817 +f 24472/24870 24517/24921 24426/24817 +f 24518/24922 24474/24872 24375/24761 +f 24519/24923 24475/24873 24427/24818 +f 24375/24761 24475/24873 24518/24922 +f 24428/24819 24474/24872 24476/24874 +f 24476/24874 24516/24920 24377/24763 +f 24431/24822 24429/24820 24520/24924 +f 24521/24925 24429/24820 24430/24821 +f 24430/24821 24477/24875 24522/24926 +f 24523/24927 24478/24876 24431/24822 +f 24524/24928 24447/24839 24432/24823 +f 24525/24929 24432/24823 24478/24876 +f 24326/24709 24381/24767 24481/24879 +f 24481/24879 24479/24877 24326/24709 +f 24479/24877 24526/24930 24393/24780 +f 24480/24878 24481/24879 24434/24825 +f 24330/24713 36678/39993 36671/39994 +f 24435/24826 36670/39995 36679/39996 +f 24482/24880 24436/24827 24527/24931 +f 36678/39997 24330/24713 24482/24880 +f 36680/39998 36678/39997 24482/24880 +f 36681/39999 24480/24878 24435/24826 +f 36679/40000 36681/39999 24435/24826 +f 24528/24932 24436/24827 24437/24828 +f 24483/24881 24437/24828 24384/24770 +f 24492/24891 24438/24829 24446/24838 +f 24483/24881 24438/24829 24492/24891 +f 24484/24883 24386/24773 24529/24933 +f 24530/24934 24439/24830 24484/24883 +f 3350/24935 3348/24831 24439/24830 +f 24440/24832 24485/24884 24531/24936 +f 24440/24832 24529/24933 24486/24885 +f 24532/24937 24485/24884 24441/24833 +f 24487/24886 24532/24937 24441/24833 +f 24529/24933 24386/24773 24486/24885 +f 36682/40001 24488/24887 24391/24778 +f 36676/40002 36682/40001 24391/24778 +f 36673/40003 24389/24776 24488/24887 +f 36683/40004 36673/40003 24488/24887 +f 24443/24835 36684/40005 36685/40006 +f 24444/24836 24533/24938 24487/24886 +f 36686/40007 24444/24836 24443/24835 +f 36687/40008 36686/40007 24443/24835 +f 36675/40009 24393/24780 24526/24930 +f 36688/40010 36675/40009 24526/24930 +f 24445/24837 36674/40011 36677/40012 +f 24395/24782 24489/24888 24491/24890 +f 24489/24888 24394/24781 24490/24889 +f 24534/24939 24490/24889 24397/24784 +f 24491/24890 24535/24940 24396/24783 +f 24492/24891 24396/24783 24535/24940 +f 24447/24839 24536/24941 24493/24892 +f 24534/24939 24397/24784 24493/24892 +f 3406/24893 24494/24894 24448/24840 +f 24449/24842 3406/24893 3427/24787 +f 3406/24893 24449/24842 24494/24894 +f 24450/24843 24451/24844 24504/24905 +f 24495/24895 24504/24905 24451/24844 +f 24505/24907 24495/24895 24452/24845 +f 24496/24896 24537/24942 24452/24845 +f 24453/24846 24497/24897 24496/24896 +f 24404/24792 24498/24898 24497/24897 +f 24498/24898 24454/24847 24502/24903 +f 24405/24793 24499/24899 24500/24900 +f 3633/24848 3677/24943 24499/24899 +f 4068/24901 24353/24738 24503/24904 +f 4068/24901 24538/24944 24455/24849 +f 24539/24945 24501/24902 24455/24849 +f 24540/24946 24407/24795 24501/24902 +f 24540/24946 24502/24903 24407/24795 +f 24456/24850 24500/24900 24541/24947 +f 24456/24850 24542/24948 24503/24904 +f 24504/24905 24495/24895 24457/24851 +f 24537/24942 24412/24801 24505/24907 +f 24457/24851 24495/24895 24505/24907 +f 24506/24908 24543/24949 24458/24853 +f 24543/24949 24506/24908 24412/24801 +f 17079/24854 24458/24853 24544/24950 +f 24459/24855 24545/24951 24507/24909 +f 24413/24803 24507/24909 24508/24910 +f 24508/24910 24546/24952 24460/24856 +f 24547/24953 24465/24861 24460/24856 +f 24509/24911 24545/24951 24459/24855 +f 24548/24954 24509/24911 24414/24804 +f 24510/24912 24548/24954 24414/24804 +f 24465/24861 24549/24955 24462/24858 +f 24512/24914 24418/24809 24511/24913 +f 24462/24858 24550/24956 24511/24913 +f 24419/24810 24512/24914 24551/24957 +f 24551/24957 24513/24915 24419/24810 +f 24463/24859 24513/24915 24552/24958 +f 24464/24860 24463/24859 24552/24958 +f 24553/24959 24514/24916 24464/24860 +f 24466/24862 24554/24960 24467/24863 +f 24468/24864 24554/24960 24466/24862 +f 8029/24917 8075/24869 24469/24865 +f 8077/24918 24424/24815 24515/24919 +f 24555/24961 24470/24867 24471/24868 +f 24470/24867 24555/24961 24515/24919 +f 24514/24916 24553/24959 24471/24868 +f 24472/24870 24516/24920 24517/24921 +f 24556/24962 24477/24875 24473/24871 +f 24473/24871 24517/24921 24557/24963 +f 24474/24872 24518/24922 24558/24964 +f 24559/24965 24475/24873 24519/24923 +f 24427/24818 24560/24966 24519/24923 +f 24558/24964 24518/24922 24475/24873 +f 24476/24874 24474/24872 24516/24920 +f 24520/24924 24429/24820 24561/24967 +f 24523/24927 24431/24822 24520/24924 +f 24521/24925 24430/24821 24562/24968 +f 24561/24967 24429/24820 24521/24925 +f 24563/24969 24522/24926 24477/24875 +f 24562/24968 24430/24821 24522/24926 +f 24564/24970 24478/24876 24523/24927 +f 24432/24823 24565/24971 24524/24928 +f 24536/24941 24447/24839 24524/24928 +f 24525/24929 24565/24971 24432/24823 +f 24478/24876 24566/24972 24525/24929 +f 24481/24879 24526/24930 24479/24877 +f 24567/24973 24481/24879 24480/24878 +f 36689/40013 24482/24880 24527/24931 +f 36690/40014 36689/40013 24527/24931 +f 36691/40015 24527/24931 24436/24827 +f 36692/40016 36691/40015 24436/24827 +f 24482/24880 36689/40017 36680/40018 +f 24480/24878 36681/40019 36693/40020 +f 36692/40021 24436/24827 24528/24932 +f 36694/40022 36692/40021 24528/24932 +f 24483/24881 24528/24932 24437/24828 +f 24492/24891 24535/24940 24483/24881 +f 24530/24934 24484/24883 24529/24933 +f 24439/24830 24530/24934 3350/24935 +f 24531/24936 24529/24933 24440/24832 +f 24568/24974 24531/24936 24485/24884 +f 24569/24975 24485/24884 24532/24937 +f 24569/24975 24532/24937 24487/24886 +f 24488/24887 36682/40023 36683/40024 +f 24533/24938 24569/24975 24487/24886 +f 36695/40025 24533/24938 24444/24836 +f 36686/40026 36695/40025 24444/24836 +f 24526/24930 36696/40027 36688/40028 +f 36697/40029 24491/24890 24489/24888 +f 36698/40030 36697/40029 24489/24888 +f 24534/24939 24489/24888 24490/24889 +f 36699/40031 24535/24940 24491/24890 +f 36697/40032 36699/40031 24491/24890 +f 24536/24941 24570/24976 24493/24892 +f 24534/24939 24493/24892 24570/24976 +f 24452/24845 24537/24942 24505/24907 +f 24537/24942 24496/24896 24571/24977 +f 24496/24896 24497/24897 24571/24977 +f 24497/24897 24498/24898 24502/24903 +f 24499/24899 24572/24978 24500/24900 +f 3677/24943 3724/24979 24499/24899 +f 4068/24901 24503/24904 24542/24948 +f 24538/24944 24539/24945 24455/24849 +f 24538/24944 4068/24901 4163/24980 +f 24501/24902 24539/24945 24573/24981 +f 24501/24902 24574/24982 24540/24946 +f 24502/24903 24540/24946 24575/24983 +f 24456/24850 24541/24947 24542/24948 +f 24572/24978 24541/24947 24500/24900 +f 24412/24801 24537/24942 24571/24977 +f 24458/24853 24543/24949 24576/24984 +f 24543/24949 24412/24801 24571/24977 +f 24458/24853 24577/24985 24544/24950 +f 17079/24854 24544/24950 24578/24986 +f 24579/24987 24507/24909 24545/24951 +f 24507/24909 24579/24987 24508/24910 +f 24580/24988 24546/24952 24508/24910 +f 24460/24856 24546/24952 24547/24953 +f 24465/24861 24547/24953 24549/24955 +f 24581/24989 24545/24951 24509/24911 +f 24509/24911 24548/24954 24581/24989 +f 24582/24990 24548/24954 24510/24912 +f 24583/24991 24462/24858 24549/24955 +f 24584/24992 24512/24914 24511/24913 +f 24550/24956 24462/24858 24583/24991 +f 24584/24992 24511/24913 24550/24956 +f 24512/24914 24585/24993 24551/24957 +f 24586/24994 24513/24915 24551/24957 +f 24513/24915 24587/24995 24552/24958 +f 24553/24959 24464/24860 24552/24958 +f 8077/24918 24515/24919 8078/24996 +f 24517/24921 24516/24920 24588/24997 +f 24556/24962 24473/24871 24557/24963 +f 24477/24875 24556/24962 24563/24969 +f 24517/24921 24588/24997 24557/24963 +f 24588/24997 24474/24872 24558/24964 +f 24559/24965 24589/24998 24475/24873 +f 24559/24965 24519/24923 24590/24999 +f 24560/24966 24590/24999 24519/24923 +f 24591/25000 24558/24964 24475/24873 +f 24516/24920 24474/24872 24588/24997 +f 24561/24967 24592/25001 24520/24924 +f 24523/24927 24520/24924 24593/25002 +f 24562/24968 24594/25003 24521/24925 +f 24561/24967 24521/24925 24595/25004 +f 24596/25005 24522/24926 24563/24969 +f 24597/25006 24562/24968 24522/24926 +f 24478/24876 24564/24970 24566/24972 +f 24593/25002 24564/24970 24523/24927 +f 24524/24928 24565/24971 24598/25007 +f 24524/24928 24599/25008 24536/24941 +f 24525/24929 24600/25009 24565/24971 +f 24600/25009 24525/24929 24566/24972 +f 24481/24879 24567/24973 24526/24930 +f 36700/40033 24567/24973 24480/24878 +f 36693/40034 36700/40033 24480/24878 +f 24527/24931 36701/40035 36690/40036 +f 24527/24931 36691/40037 36701/40038 +f 24528/24932 36702/40039 36694/40040 +f 24535/24940 24528/24932 24483/24881 +f 24601/25010 24530/24934 24529/24933 +f 3350/24935 24530/24934 3365/25011 +f 24531/24936 24601/25010 24529/24933 +f 24531/24936 24568/24974 24602/25012 +f 24485/24884 24569/24975 24568/24974 +f 24533/24938 24603/25013 24569/24975 +f 24533/24938 36695/40041 36703/40042 +f 36696/40043 24526/24930 24567/24973 +f 36704/40044 36696/40043 24567/24973 +f 24489/24888 36705/40045 36698/40046 +f 36705/40047 24489/24888 24534/24939 +f 36706/40048 36705/40047 24534/24939 +f 24535/24940 36699/40049 36707/40050 +f 24534/24939 24570/24976 24536/24941 +f 24497/24897 24604/25014 24571/24977 +f 24502/24903 24604/25014 24497/24897 +f 3724/24979 24572/24978 24499/24899 +f 24542/24948 24605/25015 4068/24901 +f 24606/25016 24539/24945 24538/24944 +f 24538/24944 4163/24980 24607/25017 +f 24573/24981 24539/24945 24606/25016 +f 24573/24981 24574/24982 24501/24902 +f 24540/24946 24574/24982 24573/24981 +f 24575/24983 24540/24946 24608/25018 +f 24604/25014 24502/24903 24575/24983 +f 24542/24948 24541/24947 24605/25015 +f 24541/24947 24572/24978 24609/25019 +f 24458/24853 24576/24984 24577/24985 +f 24543/24949 24610/25020 24576/24984 +f 24571/24977 24604/25014 24543/24949 +f 24577/24985 24611/25021 24544/24950 +f 24578/24986 24544/24950 24612/25022 +f 4330/25023 17079/24854 24578/24986 +f 24545/24951 24581/24989 24579/24987 +f 24579/24987 24580/24988 24508/24910 +f 24547/24953 24546/24952 24580/24988 +f 24547/24953 24613/25024 24549/24955 +f 24614/25025 24581/24989 24548/24954 +f 24548/24954 24582/24990 24614/25025 +f 24583/24991 24549/24955 24615/25026 +f 24584/24992 24616/25027 24512/24914 +f 24617/25028 24550/24956 24583/24991 +f 24584/24992 24550/24956 24618/25029 +f 24512/24914 24619/25030 24585/24993 +f 24620/25031 24551/24957 24585/24993 +f 24513/24915 24586/24994 24587/24995 +f 24586/24994 24551/24957 24620/25031 +f 24552/24958 24587/24995 24553/24959 +f 24556/24962 24557/24963 24621/25032 +f 24622/25033 24563/24969 24556/24962 +f 24621/25032 24557/24963 24588/24997 +f 24588/24997 24558/24964 24591/25000 +f 24559/24965 24623/25034 24589/24998 +f 24589/24998 24591/25000 24475/24873 +f 24559/24965 24590/24999 24624/25035 +f 24625/25036 24590/24999 24560/24966 +f 24593/25002 24520/24924 24592/25001 +f 24592/25001 24561/24967 24595/25004 +f 24626/25037 24521/24925 24594/25003 +f 24562/24968 24627/25038 24594/25003 +f 24595/25004 24521/24925 24626/25037 +f 24522/24926 24596/25005 24628/25039 +f 24596/25005 24563/24969 24622/25033 +f 24562/24968 24597/25006 24627/25038 +f 24629/25040 24597/25006 24522/24926 +f 24630/25041 24566/24972 24564/24970 +f 24631/25042 24564/24970 24593/25002 +f 24598/25007 24565/24971 24600/25009 +f 24598/25007 24599/25008 24524/24928 +f 24632/25043 24536/24941 24599/25008 +f 24566/24972 24633/25044 24600/25009 +f 24567/24973 36700/40051 36704/40052 +f 36702/40053 24528/24932 24535/24940 +f 36707/40054 36702/40053 24535/24940 +f 24530/24934 24601/25010 24634/25045 +f 3365/25011 24530/24934 24634/25045 +f 24601/25010 24531/24936 24602/25012 +f 24603/25013 24602/25012 24568/24974 +f 24603/25013 24568/24974 24569/24975 +f 36708/40055 24603/25013 24533/24938 +f 36703/40056 36708/40055 24533/24938 +f 24534/24939 36709/40057 36706/40058 +f 24632/25043 24534/24939 24536/24941 +f 3724/24979 3811/25046 24572/24978 +f 24605/25015 3986/25047 4068/24901 +f 24538/24944 24607/25017 24606/25016 +f 24607/25017 4163/24980 4193/25048 +f 24635/25049 24573/24981 24606/25016 +f 24573/24981 24635/25049 24540/24946 +f 24608/25018 24610/25020 24575/24983 +f 24635/25049 24608/25018 24540/24946 +f 24610/25020 24604/25014 24575/24983 +f 24605/25015 24541/24947 24609/25019 +f 3811/25046 24609/25019 24572/24978 +f 24577/24985 24576/24984 24608/25018 +f 24610/25020 24543/24949 24604/25014 +f 24608/25018 24576/24984 24610/25020 +f 24544/24950 24611/25021 24612/25022 +f 24577/24985 24635/25049 24611/25021 +f 24612/25022 4267/25050 24578/24986 +f 24578/24986 4267/25050 4330/25023 +f 24579/24987 24581/24989 24614/25025 +f 24636/25051 24580/24988 24579/24987 +f 24637/25052 24547/24953 24580/24988 +f 24613/25024 24638/25053 24549/24955 +f 24547/24953 24639/25054 24613/25024 +f 24640/25055 24614/25025 24582/24990 +f 24549/24955 24641/25056 24615/25026 +f 24583/24991 24615/25026 24617/25028 +f 24616/25027 24584/24992 24642/25057 +f 24616/25027 24619/25030 24512/24914 +f 24643/25058 24550/24956 24617/25028 +f 24550/24956 24643/25058 24618/25029 +f 24618/25029 24642/25057 24584/24992 +f 24585/24993 24619/25030 24644/25059 +f 24585/24993 24644/25059 24620/25031 +f 24645/25060 24587/24995 24586/24994 +f 24620/25031 24646/25061 24586/24994 +f 24556/24962 24621/25032 24622/25033 +f 24588/24997 24591/25000 24621/25032 +f 24623/25034 24559/24965 24624/25035 +f 24623/25034 24647/25062 24589/24998 +f 24589/24998 24647/25062 24591/25000 +f 24624/25035 24590/24999 24625/25036 +f 24592/25001 24648/25063 24593/25002 +f 24649/25064 24592/25001 24595/25004 +f 24650/25065 24626/25037 24594/25003 +f 24594/25003 24627/25038 24651/25066 +f 24626/25037 24652/25067 24595/25004 +f 24596/25005 24653/25068 24628/25039 +f 24654/25069 24522/24926 24628/25039 +f 24596/25005 24622/25033 24655/25070 +f 24627/25038 24597/25006 24656/25071 +f 24657/25072 24629/25040 24522/24926 +f 24629/25040 24658/25073 24597/25006 +f 24633/25044 24566/24972 24630/25041 +f 24630/25041 24564/24970 24631/25042 +f 24659/25074 24631/25042 24593/25002 +f 24598/25007 24600/25009 24633/25044 +f 24632/25043 24599/25008 24598/25007 +f 24602/25012 24634/25045 24601/25010 +f 24634/25045 24660/25075 3365/25011 +f 24660/25075 24602/25012 24603/25013 +f 24603/25013 36708/40059 36710/40060 +f 36709/40061 24534/24939 24632/25043 +f 36711/40062 36709/40061 24632/25043 +f 24605/25015 24609/25019 3986/25047 +f 24607/25017 24612/25022 24606/25016 +f 4193/25048 4267/25050 24607/25017 +f 24635/25049 24606/25016 24611/25021 +f 24635/25049 24577/24985 24608/25018 +f 3811/25046 3862/25076 24609/25019 +f 24611/25021 24606/25016 24612/25022 +f 4267/25050 24612/25022 24607/25017 +f 24579/24987 24614/25025 24636/25051 +f 24580/24988 24636/25051 24661/25077 +f 24580/24988 24661/25077 24637/25052 +f 24662/25078 24547/24953 24637/25052 +f 24663/25079 24638/25053 24613/25024 +f 24549/24955 24638/25053 24641/25056 +f 24547/24953 24662/25078 24639/25054 +f 24664/25080 24613/25024 24639/25054 +f 24665/25081 24614/25025 24640/25055 +f 24641/25056 24666/25082 24615/25026 +f 24615/25026 24667/25083 24617/25028 +f 24642/25057 24668/25084 24616/25027 +f 24616/25027 24668/25084 24619/25030 +f 24669/25085 24644/25059 24619/25030 +f 24670/25086 24620/25031 24644/25059 +f 24586/24994 24646/25061 24645/25060 +f 24646/25061 24620/25031 24670/25086 +f 24621/25032 24591/25000 24622/25033 +f 24624/25035 24671/25087 24623/25034 +f 24672/25088 24647/25062 24623/25034 +f 24591/25000 24647/25062 24655/25070 +f 24673/25089 24624/25035 24625/25036 +f 24593/25002 24648/25063 24659/25074 +f 24648/25063 24592/25001 24649/25064 +f 24595/25004 24652/25067 24649/25064 +f 24650/25065 24674/25090 24626/25037 +f 24594/25003 24675/25091 24650/25065 +f 24651/25066 24627/25038 24656/25071 +f 24676/25092 24594/25003 24651/25066 +f 24652/25067 24626/25037 24674/25090 +f 24653/25068 24596/25005 24677/25093 +f 24653/25068 24678/25094 24628/25039 +f 24628/25039 24679/25095 24654/25069 +f 24522/24926 24654/25069 24657/25072 +f 24655/25070 24622/25033 24591/25000 +f 24677/25093 24596/25005 24655/25070 +f 24656/25071 24597/25006 24680/25096 +f 24629/25040 24657/25072 24681/25097 +f 24682/25098 24597/25006 24658/25073 +f 24629/25040 24681/25097 24658/25073 +f 24683/25099 24633/25044 24630/25041 +f 24684/25100 24630/25041 24631/25042 +f 24659/25074 24684/25100 24631/25042 +f 24633/25044 24683/25099 24598/25007 +f 24683/25099 24632/25043 24598/25007 +f 24660/25075 24634/25045 24602/25012 +f 3365/25011 24660/25075 3354/25101 +f 24603/25013 24685/25102 24660/25075 +f 36712/40063 24685/25102 24603/25013 +f 36710/40064 36712/40063 24603/25013 +f 24632/25043 36713/40065 36711/40066 +f 3986/25047 24609/25019 3862/25076 +f 24636/25051 24614/25025 24665/25081 +f 24661/25077 24636/25051 24686/25103 +f 24637/25052 24661/25077 24687/25104 +f 24687/25104 24662/25078 24637/25052 +f 24663/25079 24688/25105 24638/25053 +f 24664/25080 24663/25079 24613/25024 +f 24689/25106 24641/25056 24638/25053 +f 24662/25078 24690/25107 24639/25054 +f 24639/25054 24690/25107 24664/25080 +f 24691/25108 24665/25081 24640/25055 +f 24641/25056 24689/25106 24666/25082 +f 24615/25026 24666/25082 24692/25109 +f 24692/25109 24667/25083 24615/25026 +f 24668/25084 24642/25057 24693/25110 +f 24619/25030 24668/25084 24693/25110 +f 24669/25085 24670/25086 24644/25059 +f 24693/25110 24669/25085 24619/25030 +f 24671/25087 24694/25111 24623/25034 +f 24671/25087 24624/25035 24695/25112 +f 24647/25062 24672/25088 24696/25113 +f 24623/25034 24694/25111 24672/25088 +f 24647/25062 24696/25113 24655/25070 +f 24695/25112 24624/25035 24673/25089 +f 24648/25063 24697/25114 24659/25074 +f 24649/25064 24698/25115 24648/25063 +f 24698/25115 24649/25064 24652/25067 +f 24699/25116 24674/25090 24650/25065 +f 24699/25116 24650/25065 24675/25091 +f 24676/25092 24675/25091 24594/25003 +f 24680/25096 24651/25066 24656/25071 +f 24651/25066 24700/25117 24676/25092 +f 24699/25116 24652/25067 24674/25090 +f 24677/25093 24701/25118 24653/25068 +f 24678/25094 24653/25068 24701/25118 +f 24678/25094 24702/25119 24628/25039 +f 24703/25120 24679/25095 24628/25039 +f 24657/25072 24654/25069 24679/25095 +f 24655/25070 24696/25113 24677/25093 +f 24682/25098 24680/25096 24597/25006 +f 24657/25072 24704/25121 24681/25097 +f 24682/25098 24658/25073 24681/25097 +f 24684/25100 24683/25099 24630/25041 +f 24705/25122 24684/25100 24659/25074 +f 36713/40067 24632/25043 24683/25099 +f 36714/40068 36713/40067 24683/25099 +f 24685/25102 3354/25101 24660/25075 +f 24685/25102 36712/40069 36715/40070 +f 24691/25108 24636/25051 24665/25081 +f 24686/25103 24636/25051 24706/25123 +f 24686/25103 24687/25104 24661/25077 +f 24662/25078 24687/25104 24707/25124 +f 24688/25105 24708/25125 24638/25053 +f 24663/25079 24709/25126 24688/25105 +f 24710/25127 24663/25079 24664/25080 +f 24708/25125 24689/25106 24638/25053 +f 24690/25107 24662/25078 24707/25124 +f 24711/25128 24664/25080 24690/25107 +f 24640/25055 24712/25129 24691/25108 +f 24713/25130 24666/25082 24689/25106 +f 24692/25109 24666/25082 24714/25131 +f 24667/25083 24692/25109 24715/25132 +f 24671/25087 24716/25133 24694/25111 +f 24695/25112 24717/25134 24671/25087 +f 24718/25135 24696/25113 24672/25088 +f 24719/25136 24672/25088 24694/25111 +f 24673/25089 24720/25137 24695/25112 +f 24697/25114 24705/25122 24659/25074 +f 24648/25063 24698/25115 24697/25114 +f 24698/25115 24652/25067 24699/25116 +f 24721/25138 24699/25116 24675/25091 +f 24675/25091 24676/25092 24722/25139 +f 24680/25096 24700/25117 24651/25066 +f 24676/25092 24700/25117 24723/25140 +f 24724/25141 24701/25118 24677/25093 +f 24678/25094 24701/25118 24725/25142 +f 24726/25143 24702/25119 24678/25094 +f 24702/25119 24703/25120 24628/25039 +f 24679/25095 24703/25120 24727/25144 +f 24679/25095 24728/25145 24657/25072 +f 24677/25093 24696/25113 24718/25135 +f 24680/25096 24682/25098 24729/25146 +f 24704/25121 24657/25072 24728/25145 +f 24704/25121 24730/25147 24681/25097 +f 24682/25098 24681/25097 24730/25147 +f 36716/40071 24683/25099 24684/25100 +f 36717/40072 36716/40071 24684/25100 +f 36717/40073 24684/25100 24705/25122 +f 36718/40074 36717/40073 24705/25122 +f 24683/25099 36716/40075 36714/40076 +f 36583/40077 3354/25101 24685/25102 +f 36719/40078 36583/40077 24685/25102 +f 24685/25102 36715/40079 36720/40080 +f 24691/25108 24706/25123 24636/25051 +f 24707/25124 24686/25103 24706/25123 +f 24686/25103 24707/25124 24687/25104 +f 24708/25125 24688/25105 8443/25148 +f 24731/25149 24688/25105 24709/25126 +f 24710/25127 24709/25126 24663/25079 +f 24664/25080 24732/25150 24710/25127 +f 24689/25106 24708/25125 24713/25130 +f 24707/25124 24733/25151 24690/25107 +f 24690/25107 24733/25151 24711/25128 +f 24732/25150 24664/25080 24711/25128 +f 24712/25129 24734/25152 24691/25108 +f 24666/25082 24713/25130 24714/25131 +f 24735/25153 24692/25109 24714/25131 +f 24715/25132 24692/25109 24735/25153 +f 24716/25133 24736/25154 24694/25111 +f 24716/25133 24671/25087 24717/25134 +f 24737/25155 24717/25134 24695/25112 +f 24718/25135 24672/25088 24719/25136 +f 24694/25111 24736/25154 24719/25136 +f 24695/25112 24720/25137 24738/25156 +f 24720/25137 24673/25089 24739/25157 +f 24705/25122 24697/25114 24740/25158 +f 24699/25116 24697/25114 24698/25115 +f 24722/25139 24721/25138 24675/25091 +f 24699/25116 24721/25138 24741/25159 +f 24723/25140 24722/25139 24676/25092 +f 24680/25096 24729/25146 24700/25117 +f 36721/40081 24723/25140 24700/25117 +f 36722/40082 36721/40081 24700/25117 +f 24742/25160 24724/25141 24677/25093 +f 24743/25161 24701/25118 24724/25141 +f 24744/25162 24725/25142 24701/25118 +f 24725/25142 24726/25143 24678/25094 +f 24702/25119 24726/25143 24745/25163 +f 24702/25119 24746/25164 24703/25120 +f 24727/25144 24703/25120 24746/25164 +f 24728/25145 24679/25095 24727/25144 +f 24742/25160 24677/25093 24718/25135 +f 24747/25165 24729/25146 24682/25098 +f 24748/25166 24704/25121 24728/25145 +f 24704/25121 24749/25167 24730/25147 +f 24747/25165 24682/25098 24730/25147 +f 36718/40083 24705/25122 24740/25158 +f 36723/40084 36718/40083 24740/25158 +f 24685/25102 36720/40085 36719/40086 +f 24691/25108 24750/25168 24706/25123 +f 24707/25124 24706/25123 24733/25151 +f 24713/25130 24708/25125 8443/25148 +f 24688/25105 8400/25169 8443/25148 +f 24688/25105 24731/25149 8400/25169 +f 24709/25126 24751/25170 24731/25149 +f 24710/25127 24751/25170 24709/25126 +f 24751/25170 24710/25127 24732/25150 +f 24711/25128 24733/25151 24752/25171 +f 24753/25172 24732/25150 24711/25128 +f 24712/25129 24754/25173 24734/25152 +f 24750/25168 24691/25108 24734/25152 +f 8443/25148 24714/25131 24713/25130 +f 8312/25174 24735/25153 24714/25131 +f 24715/25132 24735/25153 24755/25175 +f 24736/25154 24716/25133 24756/25176 +f 24716/25133 24717/25134 24757/25177 +f 24758/25178 24717/25134 24737/25155 +f 24738/25156 24737/25155 24695/25112 +f 24742/25160 24718/25135 24719/25136 +f 24759/25179 24719/25136 24736/25154 +f 24760/25180 24738/25156 24720/25137 +f 24739/25157 24761/25181 24720/25137 +f 24673/25089 24762/25182 24739/25157 +f 24740/25158 24697/25114 24699/25116 +f 24741/25159 24721/25138 24722/25139 +f 24699/25116 24741/25159 24740/25158 +f 36724/40087 24722/25139 24723/25140 +f 36721/40088 36724/40087 24723/25140 +f 24747/25165 24700/25117 24729/25146 +f 36722/40089 24700/25117 24763/25183 +f 36725/40090 36722/40089 24763/25183 +f 24764/25184 24724/25141 24742/25160 +f 24743/25161 24744/25162 24701/25118 +f 24765/25185 24743/25161 24724/25141 +f 24725/25142 24744/25162 24745/25163 +f 24745/25163 24726/25143 24725/25142 +f 24745/25163 24746/25164 24702/25119 +f 24727/25144 24746/25164 24748/25166 +f 24748/25166 24728/25145 24727/25144 +f 24748/25166 24749/25167 24704/25121 +f 24747/25165 24730/25147 24749/25167 +f 24740/25158 36726/40091 36723/40092 +f 24750/25168 24766/25186 24706/25123 +f 24766/25186 24733/25151 24706/25123 +f 24731/25149 24767/25187 8400/25169 +f 24768/25188 24731/25149 24751/25170 +f 24732/25150 24769/25189 24751/25170 +f 24733/25151 24766/25186 24752/25171 +f 24770/25190 24711/25128 24752/25171 +f 24753/25172 24771/25191 24732/25150 +f 24770/25190 24753/25172 24711/25128 +f 24772/25192 24754/25173 24712/25129 +f 24754/25173 24750/25168 24734/25152 +f 8312/25174 24714/25131 8443/25148 +f 8263/25193 24735/25153 8312/25174 +f 8263/25193 24755/25175 24735/25153 +f 24756/25176 24716/25133 24757/25177 +f 24756/25176 24773/25194 24736/25154 +f 24758/25178 24757/25177 24717/25134 +f 24737/25155 24774/25195 24758/25178 +f 24737/25155 24738/25156 24775/25196 +f 24776/25197 24742/25160 24719/25136 +f 24736/25154 24777/25198 24759/25179 +f 24778/25199 24719/25136 24759/25179 +f 24779/25200 24738/25156 24760/25180 +f 24760/25180 24720/25137 24761/25181 +f 24739/25157 24762/25182 24761/25181 +f 36727/40093 24741/25159 24722/25139 +f 36724/40094 36727/40093 24722/25139 +f 36726/40095 24740/25158 24741/25159 +f 36728/40096 36726/40095 24741/25159 +f 24763/25183 24700/25117 24747/25165 +f 24763/25183 36729/40097 36725/40098 +f 24742/25160 24780/25201 24764/25184 +f 24764/25184 24765/25185 24724/25141 +f 24743/25161 24781/25202 24744/25162 +f 24743/25161 24765/25185 24782/25203 +f 24745/25163 24744/25162 24781/25202 +f 24783/25204 24746/25164 24745/25163 +f 24748/25166 24746/25164 24784/25205 +f 24749/25167 24748/25166 24785/25206 +f 24785/25206 24747/25165 24749/25167 +f 24786/25207 24766/25186 24750/25168 +f 24731/25149 24787/25208 24767/25187 +f 24767/25187 24788/25209 8400/25169 +f 24731/25149 24768/25188 24787/25208 +f 24789/25210 24768/25188 24751/25170 +f 24769/25189 24732/25150 24771/25191 +f 24769/25189 24789/25210 24751/25170 +f 24766/25186 24790/25211 24752/25171 +f 24791/25212 24770/25190 24752/25171 +f 24768/25188 24771/25191 24753/25172 +f 24753/25172 24770/25190 24792/25213 +f 24793/25214 24754/25173 24772/25192 +f 24750/25168 24754/25173 24794/25215 +f 8164/25216 24755/25175 8263/25193 +f 24795/25217 24756/25176 24757/25177 +f 24777/25198 24736/25154 24773/25194 +f 24773/25194 24756/25176 24796/25218 +f 24795/25217 24757/25177 24758/25178 +f 24774/25195 24737/25155 24797/25219 +f 24798/25220 24758/25178 24774/25195 +f 24738/25156 24799/25221 24775/25196 +f 24737/25155 24775/25196 24800/25222 +f 24719/25136 24778/25199 24776/25197 +f 24742/25160 24776/25197 24780/25201 +f 24801/25223 24759/25179 24777/25198 +f 24801/25223 24778/25199 24759/25179 +f 24738/25156 24779/25200 24799/25221 +f 24760/25180 24761/25181 24779/25200 +f 24741/25159 36727/40099 36730/40100 +f 24741/25159 36730/40101 36728/40102 +f 24747/25165 24785/25206 24763/25183 +f 24763/25183 36731/40103 36729/40104 +f 24765/25185 24764/25184 24780/25201 +f 24782/25203 24781/25202 24743/25161 +f 24782/25203 24765/25185 24802/25224 +f 24745/25163 24781/25202 24783/25204 +f 24783/25204 24803/25225 24746/25164 +f 24748/25166 24784/25205 24785/25206 +f 24803/25225 24784/25205 24746/25164 +f 24786/25207 24804/25226 24766/25186 +f 24786/25207 24750/25168 24794/25215 +f 24788/25209 24767/25187 24787/25208 +f 8400/25169 24788/25209 8403/25227 +f 24805/25228 24787/25208 24768/25188 +f 24771/25191 24768/25188 24789/25210 +f 24769/25189 24771/25191 24789/25210 +f 24766/25186 24804/25226 24790/25211 +f 24806/25229 24752/25171 24790/25211 +f 24807/25230 24770/25190 24791/25212 +f 24791/25212 24752/25171 24806/25229 +f 24753/25172 24792/25213 24768/25188 +f 24808/25231 24792/25213 24770/25190 +f 24793/25214 24772/25192 24809/25232 +f 24810/25233 24754/25173 24793/25214 +f 24810/25233 24794/25215 24754/25173 +f 24796/25218 24756/25176 24795/25217 +f 24773/25194 24811/25234 24777/25198 +f 24811/25234 24773/25194 24796/25218 +f 24795/25217 24758/25178 24798/25220 +f 24737/25155 24800/25222 24797/25219 +f 24800/25222 24774/25195 24797/25219 +f 24812/25235 24798/25220 24774/25195 +f 24775/25196 24799/25221 24800/25222 +f 24813/25236 24776/25197 24778/25199 +f 24813/25236 24780/25201 24776/25197 +f 24801/25223 24777/25198 24811/25234 +f 24778/25199 24801/25223 24814/25237 +f 36731/40105 24763/25183 24785/25206 +f 36732/40106 36731/40105 24785/25206 +f 24815/25238 24765/25185 24780/25201 +f 36733/40107 24781/25202 24782/25203 +f 36734/40108 36733/40107 24782/25203 +f 36734/40109 24782/25203 24802/25224 +f 36735/40110 36734/40109 24802/25224 +f 24802/25224 24765/25185 24815/25238 +f 36736/40111 24783/25204 24781/25202 +f 36737/40112 36736/40111 24781/25202 +f 36738/40113 24803/25225 24783/25204 +f 36736/40114 36738/40113 24783/25204 +f 24803/25225 24785/25206 24784/25205 +f 24816/25239 24804/25226 24786/25207 +f 24794/25215 24817/25240 24786/25207 +f 24787/25208 24805/25228 24788/25209 +f 24788/25209 8401/25241 8403/25227 +f 24805/25228 24768/25188 24818/25242 +f 24806/25229 24790/25211 24804/25226 +f 24807/25230 24791/25212 24819/25243 +f 24807/25230 24820/25244 24770/25190 +f 24819/25243 24791/25212 24806/25229 +f 24768/25188 24792/25213 24821/25245 +f 24808/25231 24822/25246 24792/25213 +f 24770/25190 24820/25244 24808/25231 +f 24793/25214 24809/25232 24823/25247 +f 24810/25233 24793/25214 24823/25247 +f 24824/25248 24794/25215 24810/25233 +f 24795/25217 24825/25249 24796/25218 +f 24796/25218 24825/25249 24811/25234 +f 24826/25250 24795/25217 24798/25220 +f 24800/25222 24827/25251 24774/25195 +f 24774/25195 24828/25252 24812/25235 +f 24826/25250 24798/25220 24812/25235 +f 24829/25253 24800/25222 24799/25221 +f 24814/25237 24813/25236 24778/25199 +f 24813/25236 24815/25238 24780/25201 +f 24830/25254 24801/25223 24811/25234 +f 36739/40115 24814/25237 24801/25223 +f 36740/40116 36739/40115 24801/25223 +f 36732/40117 24785/25206 24803/25225 +f 36741/40118 36732/40117 24803/25225 +f 24781/25202 36733/40119 36737/40120 +f 24802/25224 36742/40121 36735/40122 +f 36742/40123 24802/25224 24815/25238 +f 36743/40124 36742/40123 24815/25238 +f 24803/25225 36738/40125 36741/40126 +f 24804/25226 24816/25239 24831/25255 +f 24832/25256 24816/25239 24786/25207 +f 24824/25248 24817/25240 24794/25215 +f 24833/25257 24786/25207 24817/25240 +f 24788/25209 24805/25228 8401/25241 +f 24821/25245 24818/25242 24768/25188 +f 24805/25228 24818/25242 24834/25258 +f 24806/25229 24804/25226 24835/25259 +f 24819/25243 24836/25260 24807/25230 +f 24820/25244 24807/25230 24836/25260 +f 24837/25261 24819/25243 24806/25229 +f 24821/25245 24792/25213 24818/25242 +f 24838/25262 24822/25246 24808/25231 +f 24822/25246 24818/25242 24792/25213 +f 24838/25262 24808/25231 24820/25244 +f 24809/25232 24839/25263 24823/25247 +f 24823/25247 24840/25264 24810/25233 +f 24824/25248 24810/25233 24840/25264 +f 36744/40127 24825/25249 24795/25217 +f 36745/40128 36744/40127 24795/25217 +f 24825/25249 24830/25254 24811/25234 +f 36745/40129 24795/25217 24826/25250 +f 36746/40130 36745/40129 24826/25250 +f 24841/25265 24774/25195 24827/25251 +f 24829/25253 24827/25251 24800/25222 +f 24842/25266 24828/25252 24774/25195 +f 24828/25252 24826/25250 24812/25235 +f 24813/25236 24814/25237 24815/25238 +f 36740/40131 24801/25223 24830/25254 +f 36747/40132 36740/40131 24830/25254 +f 24814/25237 36739/40133 36748/40134 +f 36743/40135 24815/25238 24814/25237 +f 36749/40136 36743/40135 24814/25237 +f 24831/25255 24816/25239 24843/25267 +f 24804/25226 24831/25255 24835/25259 +f 24816/25239 24832/25256 24844/25268 +f 24832/25256 24786/25207 24833/25257 +f 24833/25257 24817/25240 24824/25248 +f 8444/25269 8401/25241 24805/25228 +f 24834/25258 24845/25270 24805/25228 +f 24818/25242 8523/25271 24834/25258 +f 24837/25261 24806/25229 24835/25259 +f 24819/25243 24837/25261 24836/25260 +f 24846/25272 24820/25244 24836/25260 +f 24847/25273 24822/25246 24838/25262 +f 24818/25242 24822/25246 24847/25273 +f 24820/25244 24848/25274 24838/25262 +f 24823/25247 24839/25263 24840/25264 +f 24824/25248 24840/25264 24849/25275 +f 24825/25249 36750/40137 36751/40138 +f 36752/40139 24830/25254 24825/25249 +f 36751/40140 36752/40139 24825/25249 +f 24826/25250 36753/40141 36746/40142 +f 24850/25276 24774/25195 24841/25265 +f 24827/25251 24851/25277 24841/25265 +f 24852/25278 24827/25251 24829/25253 +f 24842/25266 24853/25279 24828/25252 +f 24774/25195 24850/25276 24842/25266 +f 24826/25250 24828/25252 24853/25279 +f 24830/25254 36752/40143 36747/40144 +f 24814/25237 36748/40145 36749/40146 +f 24843/25267 24854/25280 24831/25255 +f 24816/25239 24844/25268 24843/25267 +f 24831/25255 24855/25281 24835/25259 +f 24832/25256 24856/25282 24844/25268 +f 24857/25283 24832/25256 24833/25257 +f 24849/25275 24833/25257 24824/25248 +f 24805/25228 24845/25270 8444/25269 +f 24834/25258 8445/25284 24845/25270 +f 8523/25271 24818/25242 24847/25273 +f 24834/25258 8523/25271 8445/25284 +f 24855/25281 24837/25261 24835/25259 +f 24837/25261 24858/25285 24836/25260 +f 24836/25260 24859/25286 24846/25272 +f 24820/25244 24846/25272 24848/25274 +f 24847/25273 24838/25262 24860/25287 +f 24838/25262 24848/25274 24861/25288 +f 24839/25263 24849/25275 24840/25264 +f 36753/40147 24826/25250 24853/25279 +f 36754/40148 36753/40147 24853/25279 +f 24841/25265 24862/25289 24850/25276 +f 24827/25251 24852/25278 24851/25277 +f 24851/25277 24862/25289 24841/25265 +f 24853/25279 24842/25266 24863/25290 +f 24863/25290 24842/25266 24850/25276 +f 24855/25281 24831/25255 24854/25280 +f 24864/25291 24854/25280 24843/25267 +f 24844/25268 24865/25292 24843/25267 +f 24856/25282 24832/25256 24857/25283 +f 24844/25268 24856/25282 24866/25293 +f 8444/25269 24845/25270 8445/25284 +f 8519/25294 8523/25271 24847/25273 +f 24867/25295 24837/25261 24855/25281 +f 24858/25285 24868/25296 24836/25260 +f 24837/25261 24869/25297 24858/25285 +f 24836/25260 24868/25296 24859/25286 +f 24846/25272 24859/25286 24870/25298 +f 24861/25288 24848/25274 24846/25272 +f 24838/25262 24861/25288 24860/25287 +f 8519/25294 24847/25273 24860/25287 +f 24853/25279 36755/40149 36754/40150 +f 24850/25276 24862/25289 24871/25299 +f 36755/40151 24853/25279 24863/25290 +f 36756/40152 36755/40151 24863/25290 +f 24872/25300 24863/25290 24850/25276 +f 24854/25280 24873/25301 24855/25281 +f 24854/25280 24864/25291 24873/25301 +f 24874/25302 24864/25291 24843/25267 +f 24865/25292 24874/25302 24843/25267 +f 24875/25303 24865/25292 24844/25268 +f 24857/25283 24876/25304 24856/25282 +f 24856/25282 24877/25305 24866/25293 +f 24844/25268 24866/25293 24875/25303 +f 24878/25306 24867/25295 24855/25281 +f 24837/25261 24867/25295 24869/25297 +f 24869/25297 24868/25296 24858/25285 +f 24859/25286 24868/25296 24870/25298 +f 24846/25272 24870/25298 24879/25307 +f 24879/25307 24861/25288 24846/25272 +f 8480/25308 8519/25294 24860/25287 +f 24872/25300 24850/25276 24871/25299 +f 36756/40153 24863/25290 24872/25300 +f 36757/40154 36756/40153 24872/25300 +f 24878/25306 24855/25281 24873/25301 +f 24873/25301 24864/25291 24878/25306 +f 24864/25291 24874/25302 24880/25309 +f 24865/25292 24875/25303 24874/25302 +f 24857/25283 24881/25310 24876/25304 +f 24876/25304 24877/25305 24856/25282 +f 24877/25305 24882/25311 24866/25293 +f 24866/25293 24882/25311 24875/25303 +f 24883/25312 24867/25295 24878/25306 +f 24884/25313 24869/25297 24867/25295 +f 24885/25314 24868/25296 24869/25297 +f 24870/25298 24868/25296 24886/25315 +f 36758/40155 24872/25300 24871/25299 +f 36759/40156 36758/40155 24871/25299 +f 24872/25300 36758/40157 36757/40158 +f 24864/25291 24887/25316 24878/25306 +f 24887/25316 24864/25291 24880/25309 +f 24875/25303 24882/25311 24874/25302 +f 24876/25304 24881/25310 24888/25317 +f 24876/25304 24889/25318 24877/25305 +f 24867/25295 24883/25312 24884/25313 +f 24890/25319 24883/25312 24878/25306 +f 24891/25320 24869/25297 24884/25313 +f 24892/25321 24885/25314 24869/25297 +f 24886/25315 24868/25296 24885/25314 +f 24878/25306 24887/25316 24893/25322 +f 24888/25317 24894/25323 24876/25304 +f 24888/25317 24881/25310 24895/25324 +f 24876/25304 24894/25323 24889/25318 +f 24889/25318 24896/25325 24877/25305 +f 24884/25313 24883/25312 24897/25326 +f 24878/25306 24893/25322 24890/25319 +f 24883/25312 24890/25319 24897/25326 +f 24892/25321 24869/25297 24891/25320 +f 24898/25327 24885/25314 24892/25321 +f 24885/25314 24898/25327 24886/25315 +f 24899/25328 24894/25323 24888/25317 +f 24895/25324 24899/25328 24888/25317 +f 24900/25329 24889/25318 24894/25323 +f 24896/25325 24889/25318 24901/25330 +f 24897/25326 24890/25319 24893/25322 +f 24898/25327 24892/25321 24891/25320 +f 24902/25331 24894/25323 24899/25328 +f 24899/25328 24895/25324 24903/25332 +f 24894/25323 24902/25331 24900/25329 +f 24901/25330 24889/25318 24900/25329 +f 24899/25328 24903/25332 24902/25331 +f 24900/25329 24902/25331 24904/25333 +f 24904/25333 24901/25330 24900/25329 +f 24903/25332 24904/25333 24902/25331 +f 24905/25334 36760/40159 36761/40160 +f 36762/40161 24906/25335 24905/25334 +f 36761/40162 36762/40161 24905/25334 +f 24905/25334 36763/40163 36760/40164 +f 24905/25334 36764/40165 36763/40166 +f 24906/25335 24907/25336 24905/25334 +f 24906/25335 36762/40167 36765/40168 +f 36764/40169 24905/25334 24908/25337 +f 36766/40170 36764/40169 24908/25337 +f 36766/40171 24908/25337 35928/38519 +f 36767/40172 36766/40171 35928/38519 +f 24907/25336 24906/25335 24909/25338 +f 24907/25336 24910/25339 24905/25334 +f 36759/40173 24871/25340 24906/25335 +f 36765/40174 36759/40173 24906/25335 +f 24908/25337 35929/38520 35928/38521 +f 24905/25334 24910/25339 24908/25337 +f 24909/25338 24906/25335 24871/25340 +f 24909/25338 24911/25341 24907/25336 +f 24910/25339 24907/25336 24912/25342 +f 24908/25337 35930/38522 35929/38523 +f 24913/25343 24908/25337 24910/25339 +f 24909/25338 24871/25340 24862/25344 +f 24909/25338 24914/25345 24911/25341 +f 24907/25336 24911/25341 24912/25342 +f 24912/25342 24913/25343 24910/25339 +f 35930/38524 24908/25337 24915/25346 +f 35931/38525 35930/38524 24915/25346 +f 24908/25337 24913/25343 24916/25347 +f 24909/25338 24862/25344 24914/25345 +f 24911/25341 24914/25345 24917/25348 +f 24911/25341 24918/25349 24912/25342 +f 24913/25343 24912/25342 24919/25350 +f 24908/25337 24916/25347 24915/25346 +f 24915/25346 35932/38526 35931/38527 +f 24920/25351 24916/25347 24913/25343 +f 24862/25344 24921/25352 24914/25345 +f 24917/25348 24918/25349 24911/25341 +f 24914/25345 24921/25352 24917/25348 +f 24912/25342 24918/25349 24919/25350 +f 24920/25351 24913/25343 24919/25350 +f 24922/25353 24915/25346 24916/25347 +f 24915/25346 35933/38528 35932/38529 +f 24916/25347 24920/25351 24922/25353 +f 24851/25354 24921/25352 24862/25344 +f 24917/25348 24923/25355 24918/25349 +f 24917/25348 24921/25352 24923/25355 +f 24918/25349 24924/25356 24919/25350 +f 24925/25357 24920/25351 24919/25350 +f 35933/38530 24915/25346 24922/25353 +f 35934/38531 35933/38530 24922/25353 +f 24922/25353 24920/25351 24926/25358 +f 24851/25354 24923/25355 24921/25352 +f 24918/25349 24923/25355 24927/25359 +f 24924/25356 24918/25349 24927/25359 +f 24919/25350 24924/25356 24925/25357 +f 24920/25351 24925/25357 24928/25360 +f 35934/38532 24922/25353 24929/25361 +f 35935/38533 35934/38532 24929/25361 +f 24928/25360 24926/25358 24920/25351 +f 24926/25358 24930/25362 24922/25353 +f 24851/25354 24852/25363 24923/25355 +f 24923/25355 24931/25364 24927/25359 +f 24924/25356 24927/25359 24932/25365 +f 24925/25357 24924/25356 24933/25366 +f 24928/25360 24925/25357 24933/25366 +f 24922/25353 24934/25367 24929/25361 +f 24929/25361 35936/38534 35935/38535 +f 24935/25368 24926/25358 24928/25360 +f 24926/25358 24936/25369 24930/25362 +f 24930/25362 24934/25367 24922/25353 +f 24937/25370 24923/25355 24852/25363 +f 24931/25364 24938/25371 24927/25359 +f 24931/25364 24923/25355 24937/25370 +f 24924/25356 24932/25365 24933/25366 +f 24932/25365 24927/25359 24938/25371 +f 24935/25368 24928/25360 24933/25366 +f 24939/25372 24929/25361 24934/25367 +f 35936/38536 24929/25361 24940/25373 +f 35937/38537 35936/38536 24940/25373 +f 24936/25369 24926/25358 24935/25368 +f 24941/25374 24930/25362 24936/25369 +f 24934/25367 24930/25362 24941/25374 +f 24852/25363 24942/25375 24937/25370 +f 24943/25376 24938/25371 24931/25364 +f 24937/25370 24942/25375 24931/25364 +f 24933/25366 24932/25365 24944/25377 +f 24938/25371 24944/25377 24932/25365 +f 24944/25377 24935/25368 24933/25366 +f 24939/25372 24940/25373 24929/25361 +f 24934/25367 24945/25378 24939/25372 +f 24940/25373 35938/38538 35937/38539 +f 24946/25379 24936/25369 24935/25368 +f 24936/25369 24947/25380 24941/25374 +f 24945/25378 24934/25367 24941/25374 +f 24942/25375 24852/25363 24829/25381 +f 24943/25376 24931/25364 24942/25375 +f 24938/25371 24943/25376 24948/25382 +f 24944/25377 24938/25371 24949/25383 +f 24944/25377 24946/25379 24935/25368 +f 24940/25373 24939/25372 24950/25384 +f 24945/25378 24951/25385 24939/25372 +f 35938/38540 24940/25373 24952/25386 +f 35939/38541 35938/38540 24952/25386 +f 24947/25380 24936/25369 24946/25379 +f 24941/25374 24947/25380 24953/25387 +f 24953/25387 24945/25378 24941/25374 +f 24942/25375 24829/25381 24954/25388 +f 24942/25375 24955/25389 24943/25376 +f 24956/25390 24948/25382 24943/25376 +f 24948/25382 24949/25383 24938/25371 +f 24949/25383 24957/25391 24944/25377 +f 24946/25379 24944/25377 24957/25391 +f 24939/25372 24958/25392 24950/25384 +f 24940/25373 24950/25384 24959/25393 +f 24960/25394 24951/25385 24945/25378 +f 24939/25372 24951/25385 24958/25392 +f 24961/25395 24952/25386 24940/25373 +f 24952/25386 35940/38542 35939/38543 +f 24947/25380 24946/25379 24962/25396 +f 24963/25397 24953/25387 24947/25380 +f 24960/25394 24945/25378 24953/25387 +f 24942/25375 24954/25388 24964/25398 +f 24829/25381 24799/25399 24954/25388 +f 24964/25398 24955/25389 24942/25375 +f 24943/25376 24955/25389 24965/25400 +f 24966/25401 24948/25382 24956/25390 +f 24943/25376 24965/25400 24956/25390 +f 24949/25383 24948/25382 24967/25402 +f 24967/25402 24957/25391 24949/25383 +f 24946/25379 24957/25391 24968/25403 +f 24950/25384 24958/25392 24969/25404 +f 24959/25393 24961/25395 24940/25373 +f 24969/25404 24959/25393 24950/25384 +f 24960/25394 24970/25405 24951/25385 +f 24958/25392 24951/25385 24971/25406 +f 24959/25393 24952/25386 24961/25395 +f 24952/25386 35941/38544 35940/38545 +f 24963/25397 24947/25380 24962/25396 +f 24946/25379 24968/25403 24962/25396 +f 24960/25394 24953/25387 24963/25397 +f 24972/25407 24964/25398 24954/25388 +f 24954/25388 24799/25399 24972/25407 +f 24955/25389 24964/25398 24973/25408 +f 24965/25400 24955/25389 24974/25409 +f 24948/25382 24966/25401 24967/25402 +f 24975/25410 24966/25401 24956/25390 +f 24965/25400 24975/25410 24956/25390 +f 24957/25391 24967/25402 24968/25403 +f 24969/25404 24958/25392 24971/25406 +f 24969/25404 24976/25411 24959/25393 +f 24977/25412 24970/25405 24960/25394 +f 24951/25385 24970/25405 24971/25406 +f 24978/25413 24952/25386 24959/25393 +f 35941/38546 24952/25386 24979/25414 +f 35942/38547 35941/38546 24979/25414 +f 24980/25415 24963/25397 24962/25396 +f 24968/25403 24981/25416 24962/25396 +f 24982/25417 24960/25394 24963/25397 +f 24972/25407 24983/25418 24964/25398 +f 24799/25399 24779/25419 24972/25407 +f 24973/25408 24964/25398 24984/25420 +f 24973/25408 24974/25409 24955/25389 +f 24965/25400 24974/25409 24985/25421 +f 24967/25402 24966/25401 24986/25422 +f 24966/25401 24975/25410 24987/25423 +f 24975/25410 24965/25400 24988/25424 +f 24967/25402 24981/25416 24968/25403 +f 24989/25425 24969/25404 24971/25406 +f 24989/25425 24976/25411 24969/25404 +f 24959/25393 24976/25411 24990/25426 +f 24970/25405 24977/25412 24971/25406 +f 24960/25394 24982/25417 24977/25412 +f 24952/25386 24978/25413 24991/25427 +f 24959/25393 24992/25428 24978/25413 +f 24979/25414 24952/25386 24993/25429 +f 24979/25414 35943/38548 35942/38549 +f 24982/25417 24963/25397 24980/25415 +f 24981/25416 24980/25415 24962/25396 +f 24994/25430 24983/25418 24972/25407 +f 24983/25418 24984/25420 24964/25398 +f 24779/25419 24994/25430 24972/25407 +f 24984/25420 24995/25431 24973/25408 +f 24974/25409 24973/25408 24996/25432 +f 24985/25421 24988/25424 24965/25400 +f 24974/25409 24996/25432 24985/25421 +f 24986/25422 24966/25401 24987/25423 +f 24986/25422 24981/25416 24967/25402 +f 24987/25423 24975/25410 24988/25424 +f 24971/25406 24997/25433 24989/25425 +f 24989/25425 24998/25434 24976/25411 +f 24990/25426 24992/25428 24959/25393 +f 24990/25426 24976/25411 24999/25435 +f 24977/25412 24997/25433 24971/25406 +f 24982/25417 25000/25436 24977/25412 +f 24978/25413 24992/25428 24991/25427 +f 24952/25386 24991/25427 24993/25429 +f 24993/25429 25001/25437 24979/25414 +f 35943/38550 24979/25414 25001/25437 +f 35944/38551 35943/38550 25001/25437 +f 24982/25417 24980/25415 25002/25438 +f 24980/25415 24981/25416 25003/25439 +f 24994/25430 24762/25440 24983/25418 +f 24983/25418 25004/25441 24984/25420 +f 24994/25430 24779/25419 24761/25442 +f 24995/25431 24996/25432 24973/25408 +f 24995/25431 24984/25420 25005/25443 +f 24988/25424 24985/25421 25006/25444 +f 25007/25445 24985/25421 24996/25432 +f 25008/25446 24986/25422 24987/25423 +f 25008/25446 24981/25416 24986/25422 +f 24987/25423 24988/25424 25009/25447 +f 24998/25434 24989/25425 24997/25433 +f 24976/25411 24998/25434 24999/25435 +f 25010/25448 24992/25428 24990/25426 +f 24999/25435 25011/25449 24990/25426 +f 24977/25412 25012/25450 24997/25433 +f 25012/25450 24977/25412 25000/25436 +f 25000/25436 24982/25417 25002/25438 +f 24991/25427 24992/25428 25013/25451 +f 25014/25452 24993/25429 24991/25427 +f 24993/25429 25015/25453 25001/25437 +f 25016/25454 35945/38552 35946/38553 +f 35944/38554 25001/25437 25016/25454 +f 35946/38555 35944/38554 25016/25454 +f 25002/25438 24980/25415 25003/25439 +f 25003/25439 24981/25416 25002/25438 +f 25004/25441 24983/25418 24762/25440 +f 24761/25442 24762/25440 24994/25430 +f 25004/25441 25005/25443 24984/25420 +f 25017/25455 24996/25432 24995/25431 +f 25005/25443 25018/25456 24995/25431 +f 25006/25444 24985/25421 25007/25445 +f 25019/25457 24988/25424 25006/25444 +f 24996/25432 25017/25455 25007/25445 +f 25009/25447 25008/25446 24987/25423 +f 25002/25438 24981/25416 25008/25446 +f 25019/25457 25009/25447 24988/25424 +f 25020/25458 24998/25434 24997/25433 +f 24999/25435 24998/25434 25021/25459 +f 24990/25426 25011/25449 25010/25448 +f 25022/25460 24992/25428 25010/25448 +f 25011/25449 24999/25435 25021/25459 +f 25012/25450 25020/25458 24997/25433 +f 25000/25436 25023/25461 25012/25450 +f 25024/25462 25000/25436 25002/25438 +f 25022/25460 25013/25451 24992/25428 +f 24991/25427 25013/25451 25014/25452 +f 24993/25429 25014/25452 25025/25463 +f 24993/25429 25025/25463 25015/25453 +f 25001/25437 25015/25453 8155/25464 +f 25016/25454 35947/38556 35945/38557 +f 25001/25437 8155/25464 25016/25454 +f 25004/25441 24762/25440 25026/25465 +f 25005/25443 25004/25441 25018/25456 +f 24995/25431 25027/25466 25017/25455 +f 24995/25431 25018/25456 25027/25466 +f 25028/25467 25006/25444 25007/25445 +f 25019/25457 25006/25444 25028/25467 +f 25017/25455 25029/25468 25007/25445 +f 25008/25446 25009/25447 25030/25469 +f 25008/25446 25024/25462 25002/25438 +f 25009/25447 25019/25457 25031/25470 +f 24998/25434 25020/25458 25021/25459 +f 25010/25448 25011/25449 25032/25471 +f 25010/25448 25032/25471 25022/25460 +f 25011/25449 25021/25459 25033/25472 +f 25034/25473 25020/25458 25012/25450 +f 25024/25462 25023/25461 25000/25436 +f 25023/25461 25035/25474 25012/25450 +f 25036/25475 25013/25451 25022/25460 +f 25014/25452 25013/25451 25037/25476 +f 25014/25452 25038/25477 25025/25463 +f 25015/25453 25025/25463 25039/25478 +f 25015/25453 8208/25479 8155/25464 +f 35947/38558 25016/25454 25040/25480 +f 35948/38559 35947/38558 25040/25480 +f 8155/25464 8021/25481 25016/25454 +f 25041/25482 25004/25441 25026/25465 +f 24762/25440 24673/25483 25026/25465 +f 25018/25456 25004/25441 25042/25484 +f 25017/25455 25027/25466 25043/25485 +f 25018/25456 25044/25486 25027/25466 +f 25007/25445 25045/25487 25028/25467 +f 25028/25467 25031/25470 25019/25457 +f 25007/25445 25029/25468 25045/25487 +f 25046/25488 25029/25468 25017/25455 +f 25008/25446 25030/25469 25024/25462 +f 25009/25447 25031/25470 25030/25469 +f 25047/25489 25021/25459 25020/25458 +f 25032/25471 25011/25449 25048/25490 +f 25032/25471 25049/25491 25022/25460 +f 25021/25459 25047/25489 25033/25472 +f 25033/25472 25048/25490 25011/25449 +f 25020/25458 25034/25473 25047/25489 +f 25034/25473 25012/25450 25035/25474 +f 25030/25469 25023/25461 25024/25462 +f 25035/25474 25023/25461 25030/25469 +f 25049/25491 25036/25475 25022/25460 +f 25037/25476 25013/25451 25036/25475 +f 25038/25477 25014/25452 25037/25476 +f 25038/25477 25039/25478 25025/25463 +f 25039/25478 8208/25479 25015/25453 +f 25040/25480 25016/25454 8021/25481 +f 25040/25480 35949/38560 35948/38561 +f 25041/25482 25026/25465 25050/25492 +f 25004/25441 25041/25482 25042/25484 +f 24673/25483 25050/25492 25026/25465 +f 25042/25484 25051/25493 25018/25456 +f 25046/25488 25017/25455 25043/25485 +f 25043/25485 25027/25466 25044/25486 +f 25018/25456 25052/25494 25044/25486 +f 25045/25487 25053/25495 25028/25467 +f 25054/25496 25031/25470 25028/25467 +f 25045/25487 25029/25468 25055/25497 +f 25029/25468 25046/25488 25055/25497 +f 25031/25470 25056/25498 25030/25469 +f 25049/25491 25032/25471 25048/25490 +f 25047/25489 25057/25499 25033/25472 +f 25058/25500 25048/25490 25033/25472 +f 25034/25473 25057/25499 25047/25489 +f 25034/25473 25035/25474 25056/25498 +f 25030/25469 25056/25498 25035/25474 +f 25036/25475 25049/25491 25059/25501 +f 25060/25502 25037/25476 25036/25475 +f 25038/25477 25037/25476 25060/25502 +f 25039/25478 25038/25477 25061/25503 +f 25039/25478 25062/25504 8208/25479 +f 25040/25480 8021/25481 7775/25505 +f 35949/38562 25040/25480 7775/25505 +f 35927/38563 35949/38562 7775/25505 +f 25041/25482 25050/25492 25063/25506 +f 25042/25484 25041/25482 25063/25506 +f 24625/25507 25050/25492 24673/25483 +f 25051/25493 25042/25484 25063/25506 +f 25018/25456 25051/25493 25052/25494 +f 25064/25508 25046/25488 25043/25485 +f 25044/25486 25065/25509 25043/25485 +f 25065/25509 25044/25486 25052/25494 +f 25045/25487 25066/25510 25053/25495 +f 25028/25467 25053/25495 25067/25511 +f 25054/25496 25028/25467 25068/25512 +f 25069/25513 25031/25470 25054/25496 +f 25055/25497 25066/25510 25045/25487 +f 25046/25488 25070/25514 25055/25497 +f 25071/25515 25056/25498 25031/25470 +f 25048/25490 25072/25516 25049/25491 +f 25057/25499 25073/25517 25033/25472 +f 25058/25500 25072/25516 25048/25490 +f 25074/25518 25058/25500 25033/25472 +f 25057/25499 25034/25473 25056/25498 +f 25049/25491 25072/25516 25059/25501 +f 25059/25501 25075/25519 25036/25475 +f 25036/25475 25075/25519 25060/25502 +f 25061/25503 25038/25477 25060/25502 +f 25039/25478 25061/25503 25062/25504 +f 8208/25479 25062/25504 8256/25520 +f 25050/25492 25076/25521 25063/25506 +f 24625/25507 25076/25521 25050/25492 +f 25077/25522 25051/25493 25063/25506 +f 25051/25493 25077/25522 25052/25494 +f 25064/25508 25043/25485 25065/25509 +f 25070/25514 25046/25488 25064/25508 +f 25065/25509 25052/25494 25064/25508 +f 25066/25510 25078/25523 25053/25495 +f 25053/25495 25068/25512 25067/25511 +f 25028/25467 25067/25511 25068/25512 +f 25079/25524 25054/25496 25068/25512 +f 25031/25470 25069/25513 25071/25515 +f 25054/25496 25079/25524 25069/25513 +f 25080/25525 25066/25510 25055/25497 +f 25080/25525 25055/25497 25070/25514 +f 25057/25499 25056/25498 25071/25515 +f 25081/25526 25073/25517 25057/25499 +f 25033/25472 25073/25517 25074/25518 +f 25058/25500 25082/25527 25072/25516 +f 25058/25500 25074/25518 25082/25527 +f 25072/25516 25083/25528 25059/25501 +f 25083/25528 25075/25519 25059/25501 +f 25075/25519 25061/25503 25060/25502 +f 25075/25519 25062/25504 25061/25503 +f 8256/25520 25062/25504 25083/25528 +f 25076/25521 25077/25522 25063/25506 +f 25084/25529 25076/25521 24625/25507 +f 25085/25530 25052/25494 25077/25522 +f 25070/25514 25064/25508 25086/25531 +f 25052/25494 25087/25532 25064/25508 +f 25066/25510 25088/25533 25078/25523 +f 25068/25512 25053/25495 25078/25523 +f 25068/25512 25089/25534 25079/25524 +f 25071/25515 25069/25513 25081/25526 +f 25090/25535 25069/25513 25079/25524 +f 25066/25510 25080/25525 25091/25536 +f 25070/25514 25092/25537 25080/25525 +f 25071/25515 25081/25526 25057/25499 +f 25073/25517 25081/25526 25093/25538 +f 25073/25517 25094/25539 25074/25518 +f 25072/25516 25082/25527 25095/25540 +f 25074/25518 25094/25539 25082/25527 +f 25083/25528 25072/25516 25095/25540 +f 25083/25528 25062/25504 25075/25519 +f 25083/25528 25096/25541 8256/25520 +f 25076/25521 25097/25542 25077/25522 +f 25084/25529 25097/25542 25076/25521 +f 24625/25507 24560/25543 25084/25529 +f 25098/25544 25052/25494 25085/25530 +f 25099/25545 25085/25530 25077/25522 +f 25100/25546 25086/25531 25064/25508 +f 25086/25531 25092/25537 25070/25514 +f 25087/25532 25100/25546 25064/25508 +f 25087/25532 25052/25494 25098/25544 +f 25078/25523 25088/25533 25101/25547 +f 25091/25536 25088/25533 25066/25510 +f 25078/25523 25089/25534 25068/25512 +f 25089/25534 25102/25548 25079/25524 +f 25081/25526 25069/25513 25093/25538 +f 25102/25548 25090/25535 25079/25524 +f 25103/25549 25069/25513 25090/25535 +f 25091/25536 25080/25525 25104/25550 +f 25080/25525 25092/25537 25104/25550 +f 25093/25538 25105/25551 25073/25517 +f 25105/25551 25094/25539 25073/25517 +f 25082/25527 25106/25552 25095/25540 +f 25082/25527 25094/25539 25106/25552 +f 25096/25541 25083/25528 25095/25540 +f 8308/25553 8256/25520 25096/25541 +f 25099/25545 25077/25522 25097/25542 +f 25097/25542 25084/25529 25107/25554 +f 25107/25554 25084/25529 24560/25543 +f 25085/25530 25108/25555 25098/25544 +f 25109/25556 25085/25530 25099/25545 +f 25100/25546 25110/25557 25086/25531 +f 25092/25537 25086/25531 25110/25557 +f 25111/25558 25100/25546 25087/25532 +f 25098/25544 25112/25559 25087/25532 +f 25113/25560 25101/25547 25088/25533 +f 25078/25523 25101/25547 25114/25561 +f 25088/25533 25091/25536 25115/25562 +f 25089/25534 25078/25523 25114/25561 +f 25114/25561 25102/25548 25089/25534 +f 25103/25549 25093/25538 25069/25513 +f 25090/25535 25102/25548 25116/25563 +f 25090/25535 25117/25564 25103/25549 +f 8024/25565 25091/25536 25104/25550 +f 25104/25550 25092/25537 25118/25566 +f 25105/25551 25093/25538 25119/25567 +f 25105/25551 25106/25552 25094/25539 +f 25095/25540 25106/25552 25120/25568 +f 25095/25540 25121/25569 25096/25541 +f 25096/25541 25122/25570 8308/25553 +f 25099/25545 25097/25542 25109/25556 +f 25107/25554 25123/25571 25097/25542 +f 24560/25543 24427/25572 25107/25554 +f 25124/25573 25108/25555 25085/25530 +f 25108/25555 25112/25559 25098/25544 +f 25124/25573 25085/25530 25109/25556 +f 25100/25546 25125/25574 25110/25557 +f 25092/25537 25110/25557 25126/25575 +f 25100/25546 25111/25558 25127/25576 +f 25112/25559 25111/25558 25087/25532 +f 25101/25547 25113/25560 25128/25577 +f 25088/25533 25129/25578 25113/25560 +f 25114/25561 25101/25547 25130/25579 +f 8024/25565 25115/25562 25091/25536 +f 25115/25562 25129/25578 25088/25533 +f 25102/25548 25114/25561 25130/25579 +f 25093/25538 25103/25549 25119/25567 +f 25116/25563 25102/25548 25130/25579 +f 25090/25535 25116/25563 25117/25564 +f 25103/25549 25117/25564 25119/25567 +f 8068/25580 8024/25565 25104/25550 +f 25118/25566 8068/25580 25104/25550 +f 25118/25566 25092/25537 25131/25581 +f 25105/25551 25119/25567 25132/25582 +f 25106/25552 25105/25551 25133/25583 +f 25120/25568 25121/25569 25095/25540 +f 25120/25568 25106/25552 25133/25583 +f 25121/25569 25122/25570 25096/25541 +f 8308/25553 25122/25570 8257/25584 +f 25109/25556 25097/25542 25134/25585 +f 25123/25571 25107/25554 25135/25586 +f 25123/25571 25134/25585 25097/25542 +f 25136/25587 25107/25554 24427/25572 +f 25123/25571 25108/25555 25124/25573 +f 25112/25559 25108/25555 25137/25588 +f 25134/25585 25124/25573 25109/25556 +f 25138/25589 25125/25574 25100/25546 +f 25110/25557 25125/25574 25139/25590 +f 25126/25575 25110/25557 25139/25590 +f 25092/25537 25126/25575 25140/25591 +f 25112/25559 25127/25576 25111/25558 +f 25100/25546 25127/25576 25138/25589 +f 25113/25560 25141/25592 25128/25577 +f 25128/25577 25130/25579 25101/25547 +f 25142/25593 25113/25560 25129/25578 +f 7878/25594 25115/25562 8024/25565 +f 25115/25562 7878/25594 25129/25578 +f 25116/25563 25130/25579 25143/25595 +f 25117/25564 25116/25563 25143/25595 +f 25117/25564 25144/25596 25119/25567 +f 25131/25581 8068/25580 25118/25566 +f 25131/25581 25092/25537 25140/25591 +f 25105/25551 25132/25582 25145/25597 +f 25144/25596 25132/25582 25119/25567 +f 25145/25597 25133/25583 25105/25551 +f 25122/25570 25121/25569 25120/25568 +f 25146/25598 25120/25568 25133/25583 +f 25122/25570 8309/25599 8257/25584 +f 25135/25586 25107/25554 25147/25600 +f 25135/25586 25148/25601 25123/25571 +f 25134/25585 25123/25571 25124/25573 +f 25136/25587 25147/25600 25107/25554 +f 25149/25602 25136/25587 24427/25572 +f 25108/25555 25123/25571 25137/25588 +f 25127/25576 25112/25559 25137/25588 +f 25125/25574 25138/25589 25150/25603 +f 25139/25590 25125/25574 25150/25603 +f 25151/25604 25126/25575 25139/25590 +f 25140/25591 25126/25575 25151/25604 +f 25138/25589 25127/25576 25152/25605 +f 25141/25592 25153/25606 25128/25577 +f 25142/25593 25141/25592 25113/25560 +f 25143/25595 25130/25579 25128/25577 +f 25129/25578 7831/25607 25142/25593 +f 7878/25594 7831/25607 25129/25578 +f 25144/25596 25117/25564 25143/25595 +f 25140/25591 8068/25580 25131/25581 +f 25132/25582 25154/25608 25145/25597 +f 25132/25582 25144/25596 25154/25608 +f 25133/25583 25145/25597 25155/25609 +f 25156/25610 25122/25570 25120/25568 +f 25146/25598 25133/25583 25155/25609 +f 25146/25598 25157/25611 25120/25568 +f 25122/25570 25156/25610 8309/25599 +f 25135/25586 25147/25600 25148/25601 +f 25123/25571 25148/25601 25137/25588 +f 25147/25600 25136/25587 25158/25612 +f 25159/25613 25149/25602 24427/25572 +f 25160/25614 25136/25587 25149/25602 +f 25152/25605 25127/25576 25137/25588 +f 25138/25589 25161/25615 25150/25603 +f 25162/25616 25139/25590 25150/25603 +f 25139/25590 25163/25617 25151/25604 +f 25151/25604 25164/25618 25140/25591 +f 25152/25605 25165/25619 25138/25589 +f 25141/25592 25166/25620 25153/25606 +f 25153/25606 25167/25621 25128/25577 +f 25141/25592 25142/25593 25166/25620 +f 25167/25621 25143/25595 25128/25577 +f 25142/25593 7831/25607 7779/25622 +f 25144/25596 25143/25595 25168/25623 +f 25140/25591 7985/25624 8068/25580 +f 25169/25625 25145/25597 25154/25608 +f 25154/25608 25144/25596 25169/25625 +f 25169/25625 25155/25609 25145/25597 +f 25157/25611 25156/25610 25120/25568 +f 25170/25626 25146/25598 25155/25609 +f 25157/25611 25146/25598 25170/25626 +f 8309/25599 25156/25610 25171/25627 +f 25148/25601 25147/25600 25172/25628 +f 25148/25601 25152/25605 25137/25588 +f 25158/25612 25136/25587 25160/25614 +f 25147/25600 25158/25612 25173/25629 +f 25159/25613 25174/25630 25149/25602 +f 24320/25631 25159/25613 24427/25572 +f 25149/25602 25174/25630 25160/25614 +f 25150/25603 25161/25615 25175/25632 +f 25161/25615 25138/25589 25165/25619 +f 25162/25616 25176/25633 25139/25590 +f 25175/25632 25162/25616 25150/25603 +f 25163/25617 25139/25590 25176/25633 +f 25151/25604 25163/25617 25164/25618 +f 25177/25634 25140/25591 25164/25618 +f 25148/25601 25165/25619 25152/25605 +f 25178/25635 25153/25606 25166/25620 +f 25167/25621 25153/25606 25179/25636 +f 25142/25593 25180/25637 25166/25620 +f 25168/25623 25143/25595 25167/25621 +f 25181/25638 25142/25593 7779/25622 +f 25168/25623 25182/25639 25144/25596 +f 25140/25591 25183/25640 7985/25624 +f 25144/25596 25182/25639 25169/25625 +f 25170/25626 25155/25609 25169/25625 +f 25184/25641 25156/25610 25157/25611 +f 25170/25626 25185/25642 25157/25611 +f 8355/25643 8309/25599 25171/25627 +f 25171/25627 25156/25610 25186/25644 +f 25147/25600 25173/25629 25172/25628 +f 25172/25628 25165/25619 25148/25601 +f 25160/25614 25187/25645 25158/25612 +f 25187/25645 25173/25629 25158/25612 +f 24320/25631 25174/25630 25159/25613 +f 25160/25614 25174/25630 25188/25646 +f 25161/25615 25189/25647 25175/25632 +f 25161/25615 25165/25619 25172/25628 +f 25176/25633 25162/25616 25190/25648 +f 25175/25632 25190/25648 25162/25616 +f 25176/25633 25191/25649 25163/25617 +f 25163/25617 25192/25650 25164/25618 +f 25192/25650 25177/25634 25164/25618 +f 25183/25640 25140/25591 25177/25634 +f 25166/25620 25193/25651 25178/25635 +f 25178/25635 25179/25636 25153/25606 +f 25168/25623 25167/25621 25179/25636 +f 25180/25637 25193/25651 25166/25620 +f 25194/25652 25180/25637 25142/25593 +f 25181/25638 25195/25653 25142/25593 +f 25181/25638 7779/25622 25196/25654 +f 25168/25623 25197/25655 25182/25639 +f 25198/25656 7985/25624 25183/25640 +f 25182/25639 25193/25651 25169/25625 +f 25199/25657 25170/25626 25169/25625 +f 25186/25644 25156/25610 25184/25641 +f 25200/25658 25184/25641 25157/25611 +f 25199/25657 25185/25642 25170/25626 +f 25185/25642 25200/25658 25157/25611 +f 8355/25643 25171/25627 25201/25659 +f 25171/25627 25186/25644 25201/25659 +f 25173/25629 25161/25615 25172/25628 +f 25160/25614 25202/25660 25187/25645 +f 25189/25647 25173/25629 25187/25645 +f 24320/25631 24321/25661 25174/25630 +f 24321/25661 25188/25646 25174/25630 +f 25160/25614 25188/25646 25203/25662 +f 25204/25663 25175/25632 25189/25647 +f 25189/25647 25161/25615 25173/25629 +f 25190/25648 25205/25664 25176/25633 +f 25190/25648 25175/25632 25204/25663 +f 25176/25633 25205/25664 25191/25649 +f 25191/25649 25206/25665 25163/25617 +f 25163/25617 25206/25665 25192/25650 +f 25177/25634 25192/25650 25207/25666 +f 25198/25656 25183/25640 25177/25634 +f 25197/25655 25178/25635 25193/25651 +f 25179/25636 25178/25635 25197/25655 +f 25179/25636 25197/25655 25168/25623 +f 25193/25651 25180/25637 25208/25667 +f 25208/25667 25180/25637 25194/25652 +f 25142/25593 25195/25653 25194/25652 +f 25195/25653 25181/25638 25209/25668 +f 25209/25668 25181/25638 25196/25654 +f 7606/25669 25196/25654 7779/25622 +f 25193/25651 25182/25639 25197/25655 +f 7985/25624 25198/25656 7940/25670 +f 25169/25625 25193/25651 25199/25657 +f 25210/25671 25186/25644 25184/25641 +f 25200/25658 25211/25672 25184/25641 +f 25199/25657 25212/25673 25185/25642 +f 25212/25673 25200/25658 25185/25642 +f 25201/25659 8255/25674 8355/25643 +f 25186/25644 25213/25675 25201/25659 +f 25202/25660 25160/25614 25214/25676 +f 25187/25645 25202/25660 25204/25663 +f 25204/25663 25189/25647 25187/25645 +f 24321/25661 24311/25677 25188/25646 +f 25203/25662 25214/25676 25160/25614 +f 25188/25646 24311/25677 25203/25662 +f 25205/25664 25190/25648 25215/25678 +f 25216/25679 25190/25648 25204/25663 +f 25191/25649 25205/25664 25217/25680 +f 25206/25665 25191/25649 25217/25680 +f 25192/25650 25206/25665 25218/25681 +f 25207/25666 25192/25650 25218/25681 +f 25207/25666 25198/25656 25177/25634 +f 25199/25657 25193/25651 25208/25667 +f 25194/25652 25212/25673 25208/25667 +f 25219/25682 25194/25652 25195/25653 +f 25209/25668 25220/25683 25195/25653 +f 25209/25668 25196/25654 25221/25684 +f 25221/25684 25196/25654 7606/25669 +f 7940/25670 25198/25656 25207/25666 +f 25213/25675 25186/25644 25210/25671 +f 25210/25671 25184/25641 25222/25685 +f 25184/25641 25211/25672 25222/25685 +f 25200/25658 25223/25686 25211/25672 +f 25208/25667 25212/25673 25199/25657 +f 25200/25658 25212/25673 25223/25686 +f 25213/25675 8255/25674 25201/25659 +f 25202/25660 25214/25676 25224/25687 +f 25204/25663 25202/25660 25225/25688 +f 24197/25689 25214/25676 25203/25662 +f 24311/25677 24197/25689 25203/25662 +f 25226/25690 25205/25664 25215/25678 +f 25190/25648 25216/25679 25215/25678 +f 25216/25679 25204/25663 25227/25691 +f 25226/25690 25217/25680 25205/25664 +f 25217/25680 25228/25692 25206/25665 +f 25206/25665 25229/25693 25218/25681 +f 25218/25681 25230/25694 25207/25666 +f 25231/25695 25212/25673 25194/25652 +f 25194/25652 25219/25682 25232/25696 +f 25219/25682 25195/25653 25220/25683 +f 25220/25683 25209/25668 25221/25684 +f 7606/25669 7500/25697 25221/25684 +f 25230/25694 7940/25670 25207/25666 +f 25233/25698 25213/25675 25210/25671 +f 25210/25671 25222/25685 25234/25699 +f 25222/25685 25211/25672 25234/25699 +f 25211/25672 25223/25686 25235/25700 +f 25235/25700 25223/25686 25212/25673 +f 8159/25701 8255/25674 25213/25675 +f 25224/25687 25214/25676 25236/25702 +f 25224/25687 25237/25703 25202/25660 +f 25204/25663 25225/25688 25227/25691 +f 25202/25660 25238/25704 25225/25688 +f 24197/25689 25236/25702 25214/25676 +f 25226/25690 25215/25678 25225/25688 +f 25227/25691 25215/25678 25216/25679 +f 25239/25705 25217/25680 25226/25690 +f 25228/25692 25240/25706 25206/25665 +f 25228/25692 25217/25680 25239/25705 +f 25240/25706 25229/25693 25206/25665 +f 25241/25707 25218/25681 25229/25693 +f 25230/25694 25218/25681 25242/25708 +f 25194/25652 25232/25696 25231/25695 +f 25231/25695 25243/25709 25212/25673 +f 25232/25696 25219/25682 25244/25710 +f 25220/25683 25244/25710 25219/25682 +f 25220/25683 25221/25684 7500/25697 +f 25230/25694 7938/25711 7940/25670 +f 25233/25698 25210/25671 25245/25712 +f 25213/25675 25233/25698 8159/25701 +f 25234/25699 25246/25713 25210/25671 +f 25247/25714 25234/25699 25211/25672 +f 25211/25672 25235/25700 25247/25714 +f 25235/25700 25212/25673 25243/25709 +f 25236/25702 25248/25715 25224/25687 +f 25237/25703 25224/25687 25248/25715 +f 25237/25703 25238/25704 25202/25660 +f 25225/25688 25215/25678 25227/25691 +f 25238/25704 25226/25690 25225/25688 +f 25236/25702 24197/25689 25249/25716 +f 25239/25705 25226/25690 25250/25717 +f 25240/25706 25228/25692 25251/25718 +f 25239/25705 25251/25718 25228/25692 +f 25240/25706 25252/25719 25229/25693 +f 25253/25720 25241/25707 25229/25693 +f 25218/25681 25241/25707 25242/25708 +f 7938/25711 25230/25694 25242/25708 +f 25231/25695 25232/25696 25254/25721 +f 25243/25709 25231/25695 25255/25722 +f 25244/25710 25254/25721 25232/25696 +f 25220/25683 7500/25697 25244/25710 +f 7554/25723 25245/25712 25210/25671 +f 25256/25724 25233/25698 25245/25712 +f 25233/25698 8113/25725 8159/25701 +f 7554/25723 25210/25671 25246/25713 +f 25257/25726 25246/25713 25234/25699 +f 25257/25726 25234/25699 25247/25714 +f 25243/25709 25247/25714 25235/25700 +f 25248/25715 25236/25702 25258/25727 +f 25248/25715 25251/25718 25237/25703 +f 25250/25717 25238/25704 25237/25703 +f 25226/25690 25238/25704 25250/25717 +f 24085/25728 25249/25716 24197/25689 +f 25258/25727 25236/25702 25249/25716 +f 25251/25718 25239/25705 25250/25717 +f 25240/25706 25251/25718 25252/25719 +f 25229/25693 25252/25719 25259/25729 +f 25253/25720 25229/25693 25259/25729 +f 25260/25730 25241/25707 25253/25720 +f 25242/25708 25241/25707 25260/25730 +f 7893/25731 7938/25711 25242/25708 +f 25231/25695 25254/25721 25261/25732 +f 25255/25722 25262/25733 25243/25709 +f 25261/25732 25255/25722 25231/25695 +f 25254/25721 25244/25710 7327/25734 +f 7327/25734 25244/25710 7500/25697 +f 25256/25724 25245/25712 7554/25723 +f 25233/25698 25256/25724 8023/25735 +f 8113/25725 25233/25698 8023/25735 +f 25263/25736 7554/25723 25246/25713 +f 25246/25713 25257/25726 25264/25737 +f 25265/25738 25257/25726 25247/25714 +f 25262/25733 25247/25714 25243/25709 +f 25248/25715 25258/25727 25266/25739 +f 25237/25703 25251/25718 25250/25717 +f 25251/25718 25248/25715 25266/25739 +f 25267/25740 25249/25716 24085/25728 +f 25267/25740 25258/25727 25249/25716 +f 25268/25741 25252/25719 25251/25718 +f 25269/25742 25259/25729 25252/25719 +f 25270/25743 25253/25720 25259/25729 +f 25253/25720 25271/25744 25260/25730 +f 25260/25730 7937/25745 25242/25708 +f 7937/25745 7893/25731 25242/25708 +f 25261/25732 25254/25721 7132/25746 +f 25262/25733 25255/25722 25272/25747 +f 25261/25732 7086/25748 25255/25722 +f 25254/25721 7327/25734 7132/25746 +f 25256/25724 7554/25723 7602/25749 +f 8023/25735 25256/25724 25273/25750 +f 25246/25713 25264/25737 25263/25736 +f 7379/25751 7554/25723 25263/25736 +f 25264/25737 25257/25726 25274/25752 +f 25247/25714 25262/25733 25265/25738 +f 25257/25726 25265/25738 25275/25753 +f 25276/25754 25266/25739 25258/25727 +f 25266/25739 25268/25741 25251/25718 +f 24085/25728 25277/25755 25267/25740 +f 25278/25756 25258/25727 25267/25740 +f 25268/25741 25269/25742 25252/25719 +f 25269/25742 25279/25757 25259/25729 +f 25259/25729 25280/25758 25270/25743 +f 25270/25743 25271/25744 25253/25720 +f 25271/25744 25281/25759 25260/25730 +f 25282/25760 7937/25745 25260/25730 +f 7132/25746 7086/25748 25261/25732 +f 25255/25722 7133/25761 25272/25747 +f 25262/25733 25272/25747 25283/25762 +f 7133/25761 25255/25722 7086/25748 +f 7602/25749 25284/25763 25256/25724 +f 25273/25750 25256/25724 25284/25763 +f 25273/25750 7877/25764 8023/25735 +f 25264/25737 25285/25765 25263/25736 +f 25263/25736 25285/25765 7379/25751 +f 25285/25765 25264/25737 25274/25752 +f 25257/25726 25275/25753 25274/25752 +f 25262/25733 25283/25762 25265/25738 +f 25275/25753 25265/25738 25283/25762 +f 25268/25741 25266/25739 25276/25754 +f 25258/25727 25278/25756 25276/25754 +f 25267/25740 25277/25755 25286/25766 +f 24148/25767 25277/25755 24085/25728 +f 25286/25766 25278/25756 25267/25740 +f 25269/25742 25268/25741 25276/25754 +f 25287/25768 25279/25757 25269/25742 +f 25280/25758 25259/25729 25279/25757 +f 25270/25743 25280/25758 25288/25769 +f 25271/25744 25270/25743 25289/25770 +f 25271/25744 25290/25771 25281/25759 +f 25260/25730 25281/25759 25291/25772 +f 7842/25773 7937/25745 25282/25760 +f 25291/25772 25282/25760 25260/25730 +f 7133/25761 25292/25774 25272/25747 +f 25272/25747 25292/25774 25283/25762 +f 7602/25749 7662/25775 25284/25763 +f 25273/25750 25284/25763 7662/25775 +f 7877/25764 25273/25750 7662/25775 +f 7222/25776 7379/25751 25285/25765 +f 25293/25777 25285/25765 25274/25752 +f 25294/25778 25274/25752 25275/25753 +f 25275/25753 25283/25762 25295/25779 +f 25278/25756 25269/25742 25276/25754 +f 25277/25755 25296/25780 25286/25766 +f 25297/25781 25277/25755 24148/25767 +f 25278/25756 25286/25766 25287/25768 +f 25298/25782 25279/25757 25287/25768 +f 25269/25742 25278/25756 25287/25768 +f 25279/25757 25299/25783 25280/25758 +f 25299/25783 25288/25769 25280/25758 +f 25288/25769 25289/25770 25270/25743 +f 25289/25770 25290/25771 25271/25744 +f 25300/25784 25281/25759 25290/25771 +f 25281/25759 25301/25785 25291/25772 +f 7842/25773 25282/25760 25302/25786 +f 25301/25785 25282/25760 25291/25772 +f 7039/25787 25292/25774 7133/25761 +f 25283/25762 25292/25774 25295/25779 +f 25285/25765 25293/25777 7222/25776 +f 25303/25788 25293/25777 25274/25752 +f 25295/25779 25294/25778 25275/25753 +f 25274/25752 25294/25778 25303/25788 +f 25296/25780 25298/25782 25286/25766 +f 25277/25755 25297/25781 25296/25780 +f 24313/25789 25297/25781 24148/25767 +f 25287/25768 25286/25766 25298/25782 +f 25298/25782 25304/25790 25279/25757 +f 25279/25757 25304/25790 25299/25783 +f 25299/25783 25305/25791 25288/25769 +f 25288/25769 25306/25792 25289/25770 +f 25289/25770 25306/25792 25290/25771 +f 25281/25759 25300/25784 25307/25793 +f 25306/25792 25300/25784 25290/25771 +f 25308/25794 25301/25785 25281/25759 +f 25282/25760 25301/25785 25302/25786 +f 7797/25795 7842/25773 25302/25786 +f 25309/25796 25292/25774 7039/25787 +f 25292/25774 25310/25797 25295/25779 +f 7222/25776 25293/25777 7172/25798 +f 25303/25788 7172/25798 25293/25777 +f 25294/25778 25295/25779 25310/25797 +f 25310/25797 25303/25788 25294/25778 +f 25296/25780 25297/25781 25298/25782 +f 25297/25781 24313/25789 25311/25799 +f 25298/25782 25311/25799 25304/25790 +f 25299/25783 25304/25790 25305/25791 +f 25288/25769 25305/25791 25306/25792 +f 25312/25800 25307/25793 25300/25784 +f 25307/25793 25308/25794 25281/25759 +f 25300/25784 25306/25792 25313/25801 +f 25314/25802 25301/25785 25308/25794 +f 25302/25786 25301/25785 25315/25803 +f 25302/25786 25315/25803 7797/25795 +f 25310/25797 25292/25774 25309/25796 +f 6907/25804 25309/25796 7039/25787 +f 7172/25798 25303/25788 6982/25805 +f 25303/25788 25310/25797 25316/25806 +f 25297/25781 25311/25799 25298/25782 +f 24313/25789 25317/25807 25311/25799 +f 25305/25791 25304/25790 25311/25799 +f 25306/25792 25305/25791 25313/25801 +f 25307/25793 25312/25800 25318/25808 +f 25313/25801 25312/25800 25300/25784 +f 25307/25793 25319/25809 25308/25794 +f 25314/25802 25315/25803 25301/25785 +f 25314/25802 25308/25794 25320/25810 +f 7797/25795 25315/25803 25321/25811 +f 25316/25806 25310/25797 25309/25796 +f 25322/25812 25309/25796 6907/25804 +f 6982/25805 25303/25788 25316/25806 +f 25311/25799 25317/25807 25323/25813 +f 24422/25814 25317/25807 24313/25789 +f 25323/25813 25305/25791 25311/25799 +f 25313/25801 25305/25791 25323/25813 +f 25319/25809 25307/25793 25318/25808 +f 25318/25808 25312/25800 25324/25815 +f 25323/25813 25312/25800 25313/25801 +f 25308/25794 25319/25809 25320/25810 +f 25321/25811 25315/25803 25314/25802 +f 25314/25802 25320/25810 25325/25816 +f 25321/25811 7738/25817 7797/25795 +f 25316/25806 25309/25796 25326/25818 +f 6936/25819 25322/25812 6907/25804 +f 25326/25818 25309/25796 25322/25812 +f 25326/25818 6982/25805 25316/25806 +f 25324/25815 25323/25813 25317/25807 +f 24422/25814 25327/25820 25317/25807 +f 25328/25821 25319/25809 25318/25808 +f 25324/25815 25329/25822 25318/25808 +f 25323/25813 25324/25815 25312/25800 +f 25319/25809 25330/25823 25320/25810 +f 25314/25802 25325/25816 25321/25811 +f 25325/25816 25320/25810 7798/25824 +f 25325/25816 7738/25817 25321/25811 +f 25322/25812 6936/25819 25326/25818 +f 6936/25819 6982/25805 25326/25818 +f 25324/25815 25317/25807 25327/25820 +f 25331/25825 25327/25820 24422/25814 +f 25332/25826 25328/25821 25318/25808 +f 25328/25821 25333/25827 25319/25809 +f 25327/25820 25329/25822 25324/25815 +f 25329/25822 25332/25826 25318/25808 +f 25319/25809 25333/25827 25330/25823 +f 25330/25823 25334/25828 25320/25810 +f 25320/25810 25334/25828 7798/25824 +f 25325/25816 7798/25824 7738/25817 +f 25327/25820 25331/25825 25329/25822 +f 24467/25829 25331/25825 24422/25814 +f 25332/25826 25335/25830 25328/25821 +f 25336/25831 25333/25827 25328/25821 +f 25332/25826 25329/25822 25331/25825 +f 25330/25823 25333/25827 25337/25832 +f 25334/25828 25330/25823 7982/25833 +f 7798/25824 25334/25828 25338/25834 +f 25331/25825 24467/25829 24554/25835 +f 25335/25830 25332/25826 25339/25836 +f 25335/25830 25336/25831 25328/25821 +f 25340/25837 25333/25827 25336/25831 +f 25332/25826 25331/25825 24554/25835 +f 25337/25832 25333/25827 25341/25838 +f 7982/25833 25330/25823 25337/25832 +f 25334/25828 7982/25833 25338/25834 +f 7892/25839 7798/25824 25338/25834 +f 24554/25835 25339/25836 25332/25826 +f 25335/25830 25339/25836 25342/25840 +f 25343/25841 25336/25831 25335/25830 +f 25333/25827 25340/25837 25344/25842 +f 25336/25831 25345/25843 25340/25837 +f 25333/25827 25344/25842 25341/25838 +f 25337/25832 25341/25838 25346/25844 +f 7982/25833 25337/25832 7888/25845 +f 25338/25834 7982/25833 7892/25839 +f 24468/25846 25339/25836 24554/25835 +f 25339/25836 25347/25847 25342/25840 +f 25335/25830 25342/25840 25343/25841 +f 25345/25843 25336/25831 25343/25841 +f 25348/25848 25344/25842 25340/25837 +f 25340/25837 25345/25843 25349/25849 +f 25350/25850 25341/25838 25344/25842 +f 25350/25850 25346/25844 25341/25838 +f 25346/25844 25351/25851 25337/25832 +f 25351/25851 7888/25845 25337/25832 +f 24468/25846 25352/25852 25339/25836 +f 25347/25847 25339/25836 25352/25852 +f 25347/25847 25353/25853 25342/25840 +f 25343/25841 25342/25840 25353/25853 +f 25345/25843 25343/25841 25354/25854 +f 25355/25855 25344/25842 25348/25848 +f 25348/25848 25340/25837 25349/25849 +f 25356/25856 25349/25849 25345/25843 +f 25355/25855 25350/25850 25344/25842 +f 25346/25844 25350/25850 25357/25857 +f 25358/25858 25351/25851 25346/25844 +f 25351/25851 7787/25859 7888/25845 +f 25352/25852 24468/25846 25359/25860 +f 25352/25852 25353/25853 25347/25847 +f 25354/25854 25343/25841 25353/25853 +f 25356/25856 25345/25843 25354/25854 +f 25360/25861 25355/25855 25348/25848 +f 25349/25849 25361/25862 25348/25848 +f 25349/25849 25356/25856 25361/25862 +f 25362/25863 25350/25850 25355/25855 +f 25363/25864 25357/25857 25350/25850 +f 25346/25844 25357/25857 25358/25858 +f 25358/25858 25364/25865 25351/25851 +f 25351/25851 25365/25866 7787/25859 +f 25359/25860 24468/25846 24314/25867 +f 25359/25860 25353/25853 25352/25852 +f 25353/25853 25366/25868 25354/25854 +f 25366/25868 25356/25856 25354/25854 +f 25367/25869 25355/25855 25360/25861 +f 25348/25848 25361/25862 25360/25861 +f 25368/25870 25361/25862 25356/25856 +f 25363/25864 25350/25850 25362/25863 +f 25367/25869 25362/25863 25355/25855 +f 25357/25857 25363/25864 25369/25871 +f 25357/25857 25370/25872 25358/25858 +f 25364/25865 25358/25858 25371/25873 +f 25372/25874 25351/25851 25364/25865 +f 7674/25875 7787/25859 25365/25866 +f 25351/25851 25373/25876 25365/25866 +f 24314/25867 25374/25877 25359/25860 +f 25366/25868 25353/25853 25359/25860 +f 25356/25856 25366/25868 25374/25877 +f 25375/25878 25367/25869 25360/25861 +f 25361/25862 25368/25870 25360/25861 +f 25368/25870 25356/25856 25376/25879 +f 25363/25864 25362/25863 25367/25869 +f 25369/25871 25363/25864 25377/25880 +f 25357/25857 25369/25871 25370/25872 +f 25370/25872 25378/25881 25358/25858 +f 25371/25873 25372/25874 25364/25865 +f 25358/25858 25378/25881 25371/25873 +f 25372/25874 7786/25882 25351/25851 +f 7674/25875 25365/25866 25373/25876 +f 25373/25876 25351/25851 7786/25882 +f 25374/25877 24314/25867 24200/25883 +f 25374/25877 25366/25868 25359/25860 +f 25376/25879 25356/25856 25374/25877 +f 25367/25869 25375/25878 25379/25884 +f 25360/25861 25368/25870 25375/25878 +f 25368/25870 25376/25879 24200/25883 +f 25380/25885 25363/25864 25367/25869 +f 25377/25880 25381/25886 25369/25871 +f 25382/25887 25377/25880 25363/25864 +f 25369/25871 25381/25886 25370/25872 +f 25370/25872 25383/25888 25378/25881 +f 25372/25874 25371/25873 25384/25889 +f 25371/25873 25378/25881 25385/25890 +f 7786/25882 25372/25874 7731/25891 +f 7674/25875 25373/25876 7786/25882 +f 25376/25879 25374/25877 24200/25883 +f 24087/25892 25379/25884 25375/25878 +f 25367/25869 25379/25884 25380/25885 +f 24200/25883 25375/25878 25368/25870 +f 25380/25885 25382/25887 25363/25864 +f 25377/25880 25386/25893 25381/25886 +f 25377/25880 25382/25887 25387/25894 +f 25370/25872 25381/25886 25383/25888 +f 25383/25888 25385/25890 25378/25881 +f 25385/25890 25384/25889 25371/25873 +f 25384/25889 25388/25895 25372/25874 +f 7731/25891 25372/25874 25388/25895 +f 24087/25892 25389/25896 25379/25884 +f 24087/25892 25375/25878 24200/25883 +f 25379/25884 25389/25896 25380/25885 +f 25389/25896 25382/25887 25380/25885 +f 25390/25897 25386/25893 25377/25880 +f 25391/25898 25381/25886 25386/25893 +f 25390/25897 25377/25880 25387/25894 +f 25382/25887 25389/25896 25387/25894 +f 25383/25888 25381/25886 25391/25898 +f 25385/25890 25383/25888 25392/25899 +f 25385/25890 25393/25900 25384/25889 +f 25388/25895 25384/25889 25394/25901 +f 25388/25895 7839/25902 7731/25891 +f 25389/25896 24087/25892 24040/25903 +f 25395/25904 25386/25893 25390/25897 +f 25386/25893 25396/25905 25391/25898 +f 25395/25904 25390/25897 25387/25894 +f 24040/25903 25387/25894 25389/25896 +f 25383/25888 25391/25898 25392/25899 +f 25393/25900 25385/25890 25392/25899 +f 25393/25900 25397/25906 25384/25889 +f 25398/25907 25388/25895 25394/25901 +f 25399/25908 25394/25901 25384/25889 +f 25398/25907 7839/25902 25388/25895 +f 25386/25893 25395/25904 25396/25905 +f 25396/25905 25400/25909 25391/25898 +f 25395/25904 25387/25894 25400/25909 +f 23986/25910 25387/25894 24040/25903 +f 25392/25899 25391/25898 25401/25911 +f 25392/25899 25401/25911 25393/25900 +f 25397/25906 25402/25912 25384/25889 +f 25393/25900 25403/25913 25397/25906 +f 25394/25901 25404/25914 25398/25907 +f 25399/25908 25404/25914 25394/25901 +f 25384/25889 25402/25912 25399/25908 +f 25398/25907 7934/25915 7839/25902 +f 25396/25905 25395/25904 25400/25909 +f 25391/25898 25400/25909 25405/25916 +f 25400/25909 25387/25894 23986/25910 +f 25406/25917 25401/25911 25391/25898 +f 25401/25911 25403/25913 25393/25900 +f 25397/25906 25407/25918 25402/25912 +f 25397/25906 25403/25913 25408/25919 +f 25404/25914 25409/25920 25398/25907 +f 25404/25914 25399/25908 25410/25921 +f 25402/25912 25411/25922 25399/25908 +f 25412/25923 7934/25915 25398/25907 +f 23986/25910 25405/25916 25400/25909 +f 25405/25916 25406/25917 25391/25898 +f 25401/25911 25406/25917 25413/25924 +f 25414/25925 25403/25913 25401/25911 +f 25402/25912 25407/25918 25411/25922 +f 25408/25919 25407/25918 25397/25906 +f 25408/25919 25403/25913 25413/25924 +f 25415/25926 25409/25920 25404/25914 +f 25398/25907 25409/25920 25412/25923 +f 25416/25927 25410/25921 25399/25908 +f 25415/25926 25404/25914 25410/25921 +f 25416/25927 25399/25908 25411/25922 +f 7934/25915 25412/25923 8075/25928 +f 25405/25916 23986/25910 23893/25929 +f 25406/25917 25405/25916 24041/25930 +f 25417/25931 25413/25924 25406/25917 +f 25401/25911 25413/25924 25414/25925 +f 25414/25925 25413/25924 25403/25913 +f 25416/25927 25411/25922 25407/25918 +f 25418/25932 25407/25918 25408/25919 +f 25408/25919 25413/25924 25418/25932 +f 25409/25920 25415/25926 25419/25933 +f 25420/25934 25412/25923 25409/25920 +f 25410/25921 25416/25927 25421/25935 +f 25410/25921 25422/25936 25415/25926 +f 8075/25928 25412/25923 25420/25934 +f 25405/25916 23893/25929 24041/25930 +f 25417/25931 25406/25917 24041/25930 +f 25417/25931 25418/25932 25413/25924 +f 25418/25932 25416/25927 25407/25918 +f 25423/25937 25419/25933 25415/25926 +f 25419/25933 25420/25934 25409/25920 +f 25416/25927 25418/25932 25421/25935 +f 25421/25935 25422/25936 25410/25921 +f 25415/25926 25422/25936 25423/25937 +f 24373/25938 8075/25928 25420/25934 +f 24202/25939 25417/25931 24041/25930 +f 25421/25935 25418/25932 25417/25931 +f 25424/25940 25419/25933 25423/25937 +f 25419/25933 24264/25941 25420/25934 +f 25422/25936 25421/25935 25424/25940 +f 25424/25940 25423/25937 25422/25936 +f 25420/25934 24264/25941 24373/25938 +f 24202/25939 25421/25935 25417/25931 +f 24202/25939 25419/25933 25424/25940 +f 25419/25933 24202/25939 24264/25941 +f 25421/25935 24202/25939 25424/25940 +f 25425/25942 36472/39596 36473/39597 +f 25426/25943 36474/39598 36475/39599 +f 36476/39600 25427/25944 25425/25942 +f 36473/39601 36476/39600 25425/25942 +f 36472/39602 25425/25942 25428/25945 +f 36477/39603 36472/39602 25428/25945 +f 25427/25944 36476/39604 36478/39605 +f 25426/25943 36475/39606 36479/39607 +f 25426/25943 36480/39608 36474/39609 +f 25429/25946 25425/25942 25427/25944 +f 25430/25947 25428/25945 25425/25942 +f 25428/25945 36481/39610 36477/39611 +f 36482/39612 25431/25948 25427/25944 +f 36478/39613 36482/39612 25427/25944 +f 36483/39614 25432/25949 25426/25943 +f 36479/39615 36483/39614 25426/25943 +f 36480/39616 25426/25943 25431/25948 +f 36482/39617 36480/39616 25431/25948 +f 25425/25942 25429/25946 25430/25947 +f 25427/25944 25431/25948 25429/25946 +f 25428/25945 25430/25947 25433/25950 +f 36481/39618 25428/25945 25434/25951 +f 36484/39619 36481/39618 25434/25951 +f 25432/25949 36483/39620 36485/39621 +f 25426/25943 25432/25949 25435/25952 +f 25431/25948 25426/25943 25436/25953 +f 25429/25946 25437/25954 25430/25947 +f 25436/25953 25429/25946 25431/25948 +f 25433/25950 25430/25947 25437/25954 +f 25434/25951 25428/25945 25433/25950 +f 25434/25951 36486/39622 36484/39623 +f 36487/39624 25438/25955 25432/25949 +f 36485/39625 36487/39624 25432/25949 +f 25436/25953 25426/25943 25435/25952 +f 25435/25952 25432/25949 25439/25956 +f 25437/25954 25429/25946 25440/25957 +f 25429/25946 25436/25953 25440/25957 +f 15491/25958 25433/25950 25437/25954 +f 25433/25950 25441/25959 25434/25951 +f 25434/25951 36488/39626 36486/39627 +f 25432/25949 25438/25955 25439/25956 +f 25438/25955 36487/39628 36489/39629 +f 25442/25960 25436/25953 25435/25952 +f 25439/25956 25442/25960 25435/25952 +f 25440/25957 25443/25961 25437/25954 +f 25440/25957 25436/25953 25442/25960 +f 25441/25959 25433/25950 15491/25958 +f 25437/25954 15206/25962 15491/25958 +f 36488/39630 25434/25951 25441/25959 +f 36490/39631 36488/39630 25441/25959 +f 25438/25955 25444/25963 25439/25956 +f 36491/39632 25445/25964 25438/25955 +f 36489/39633 36491/39632 25438/25955 +f 25439/25956 25446/25965 25442/25960 +f 25437/25954 25443/25961 15206/25962 +f 25440/25957 25447/25966 25443/25961 +f 25442/25960 25448/25967 25440/25957 +f 15491/25958 15581/25968 25441/25959 +f 25441/25959 36492/39634 36490/39635 +f 25445/25964 36491/39636 36493/39637 +f 25444/25963 25438/25955 25449/25969 +f 25444/25963 25450/25970 25439/25956 +f 25438/25955 25445/25964 25451/25971 +f 25439/25956 25450/25970 25446/25965 +f 25442/25960 25446/25965 25448/25967 +f 15206/25962 25443/25961 15067/25972 +f 25452/25973 25443/25961 25447/25966 +f 25447/25966 25440/25957 25448/25967 +f 36494/39638 25441/25959 15581/25968 +f 36495/39639 36494/39638 15581/25968 +f 25441/25959 36494/39640 36492/39641 +f 25453/25974 36496/39642 36497/39643 +f 36498/39644 25454/25975 25445/25964 +f 36493/39645 36498/39644 25445/25964 +f 25451/25971 25449/25969 25438/25955 +f 25449/25969 25455/25976 25444/25963 +f 25450/25970 25444/25963 25455/25976 +f 25451/25971 25445/25964 25454/25975 +f 25446/25965 25450/25970 25456/25977 +f 25456/25977 25448/25967 25446/25965 +f 25457/25978 15067/25972 25443/25961 +f 25452/25973 25457/25978 25443/25961 +f 25448/25967 25452/25973 25447/25966 +f 15581/25968 36429/39646 36495/39647 +f 25453/25974 36497/39648 36499/39649 +f 36496/39650 25453/25974 25454/25975 +f 36498/39651 36496/39650 25454/25975 +f 25453/25974 36499/39652 36500/39653 +f 25454/25975 25449/25969 25451/25971 +f 25458/25979 25455/25976 25449/25969 +f 25456/25977 25450/25970 25455/25976 +f 25456/25977 25459/25980 25448/25967 +f 25460/25981 15067/25972 25457/25978 +f 25461/25982 25457/25978 25452/25973 +f 25462/25983 25452/25973 25448/25967 +f 25454/25975 25453/25974 25449/25969 +f 25463/25984 36501/39654 36502/39655 +f 25464/25985 36503/39656 36504/39657 +f 36503/39658 25464/25985 25453/25974 +f 36500/39659 36503/39658 25453/25974 +f 25463/25984 36502/39660 36505/39661 +f 25465/25986 25455/25976 25458/25979 +f 25449/25969 25453/25974 25458/25979 +f 25455/25976 25466/25987 25456/25977 +f 25456/25977 25466/25987 25459/25980 +f 25459/25980 25462/25983 25448/25967 +f 14919/25988 15067/25972 25460/25981 +f 25467/25989 25460/25981 25457/25978 +f 25452/25973 25462/25983 25461/25982 +f 25461/25982 25468/25990 25457/25978 +f 36501/39662 25463/25984 25464/25985 +f 36504/39663 36501/39662 25464/25985 +f 25464/25985 25469/25991 25453/25974 +f 36506/39664 25470/25992 25463/25984 +f 36505/39665 36506/39664 25463/25984 +f 25471/25993 25455/25976 25465/25986 +f 25472/25994 25465/25986 25458/25979 +f 25469/25991 25458/25979 25453/25974 +f 25471/25993 25466/25987 25455/25976 +f 25459/25980 25466/25987 25473/25995 +f 25462/25983 25459/25980 25474/25996 +f 25460/25981 25475/25997 14919/25988 +f 25468/25990 25467/25989 25457/25978 +f 25460/25981 25467/25989 25476/25998 +f 25462/25983 25477/25999 25461/25982 +f 25478/26000 25468/25990 25461/25982 +f 25464/25985 25463/25984 25479/26001 +f 25479/26001 25469/25991 25464/25985 +f 25470/25992 36506/39666 36507/39667 +f 25470/25992 25479/26001 25463/25984 +f 25480/26002 25471/25993 25465/25986 +f 25465/25986 25472/25994 25480/26002 +f 25469/25991 25472/25994 25458/25979 +f 25481/26003 25466/25987 25471/25993 +f 25466/25987 25481/26003 25473/25995 +f 25473/25995 25482/26004 25459/25980 +f 25474/25996 25459/25980 25482/26004 +f 25477/25999 25462/25983 25474/25996 +f 14769/26005 14919/25988 25475/25997 +f 25460/25981 25476/25998 25475/25997 +f 25468/25990 14222/26006 25467/25989 +f 25476/25998 25467/25989 14365/26007 +f 25461/25982 25477/25999 25483/26008 +f 14222/26006 25468/25990 25478/26000 +f 25478/26000 25461/25982 25483/26008 +f 25472/25994 25469/25991 25479/26001 +f 36508/39668 25484/26009 25470/25992 +f 36507/39669 36508/39668 25470/25992 +f 25485/26010 25479/26001 25470/25992 +f 25480/26002 25486/26011 25471/25993 +f 25480/26002 25472/25994 14528/26012 +f 25486/26011 25481/26003 25471/25993 +f 25481/26003 25487/26013 25473/25995 +f 25488/26014 25482/26004 25473/25995 +f 25482/26004 25488/26014 25474/25996 +f 25489/26015 25477/25999 25474/25996 +f 14769/26005 25475/25997 14521/26016 +f 25476/25998 14521/26016 25475/25997 +f 14365/26007 25467/25989 14222/26006 +f 14365/26007 14521/26016 25476/25998 +f 25483/26008 25477/25999 25489/26015 +f 25490/26017 14222/26006 25478/26000 +f 25491/26018 25478/26000 25483/26008 +f 25479/26001 25485/26010 25472/25994 +f 14621/26019 36509/39670 36420/39671 +f 36509/39672 14621/26019 25484/26009 +f 36508/39673 36509/39672 25484/26009 +f 25484/26009 25485/26010 25470/25992 +f 14442/26020 25486/26011 25480/26002 +f 14528/26012 14442/26020 25480/26002 +f 25472/25994 25485/26010 14528/26012 +f 25486/26011 25487/26013 25481/26003 +f 25473/25995 25487/26013 25488/26014 +f 25488/26014 25492/26021 25474/25996 +f 25489/26015 25474/25996 25493/26022 +f 25489/26015 25494/26023 25483/26008 +f 14222/26006 25490/26017 14295/26024 +f 25490/26017 25478/26000 25495/26025 +f 25494/26023 25491/26018 25483/26008 +f 25478/26000 25491/26018 25495/26025 +f 25484/26009 14621/26019 25485/26010 +f 14442/26020 25496/26026 25486/26011 +f 14528/26012 25485/26010 14621/26019 +f 25487/26013 25486/26011 25496/26026 +f 25488/26014 25487/26013 25497/26027 +f 25492/26021 25488/26014 25497/26027 +f 25492/26021 25498/26028 25474/25996 +f 25491/26018 25489/26015 25493/26022 +f 25493/26022 25474/25996 25498/26028 +f 25494/26023 25489/26015 25491/26018 +f 25490/26017 25499/26029 14295/26024 +f 25495/26025 25491/26018 25490/26017 +f 25496/26026 14442/26020 14294/26030 +f 25496/26026 25497/26027 25487/26013 +f 25497/26027 25500/26031 25492/26021 +f 25501/26032 25498/26028 25492/26021 +f 14150/26033 25491/26018 25493/26022 +f 25498/26028 25501/26032 25493/26022 +f 25499/26029 14150/26033 14295/26024 +f 25499/26029 25490/26017 25491/26018 +f 25496/26026 14294/26030 25502/26034 +f 25497/26027 25496/26026 25502/26034 +f 25500/26031 25497/26027 25502/26034 +f 25492/26021 25500/26031 25501/26032 +f 14150/26033 25499/26029 25491/26018 +f 14091/26035 14150/26033 25493/26022 +f 25493/26022 25501/26032 14091/26035 +f 25502/26034 14294/26030 25501/26032 +f 25500/26031 25502/26034 25501/26032 +f 14294/26030 14091/26035 25501/26032 +f 15753/26036 36510/39674 36435/39675 +f 36510/39676 15753/26036 25503/26037 +f 36511/39677 36510/39676 25503/26037 +f 25503/26037 36512/39678 36511/39679 +f 15634/26038 25503/26037 15753/26036 +f 25504/26039 36513/39680 36514/39681 +f 36512/39682 25503/26037 25505/26040 +f 36515/39683 36512/39682 25505/26040 +f 15634/26038 15582/26041 25503/26037 +f 25504/26039 36516/39684 36513/39685 +f 36515/39686 25505/26040 25504/26039 +f 36517/39687 36515/39686 25504/26039 +f 25505/26040 25503/26037 15582/26041 +f 25504/26039 36518/39688 36516/39689 +f 25505/26040 15632/26042 25504/26039 +f 15582/26041 15632/26042 25505/26040 +f 36518/39690 25504/26039 25506/26043 +f 36519/39691 36518/39690 25506/26043 +f 15632/26042 25506/26043 25504/26039 +f 25507/26044 36520/39692 36521/39693 +f 36519/39694 25506/26043 25507/26044 +f 36521/39695 36519/39694 25507/26044 +f 25507/26044 36522/39696 36523/39697 +f 25506/26043 15632/26042 15676/26045 +f 25507/26044 36523/39698 36520/39699 +f 25507/26044 25506/26043 25508/26046 +f 36522/39700 25507/26044 25508/26046 +f 36524/39701 36522/39700 25508/26046 +f 25509/26047 36525/39702 36526/39703 +f 25506/26043 15676/26045 25508/26046 +f 36524/39704 25508/26046 25509/26047 +f 36526/39705 36524/39704 25509/26047 +f 36525/39706 25509/26047 25510/26048 +f 36527/39707 36525/39706 25510/26048 +f 25511/26049 25508/26046 15676/26045 +f 25510/26048 36528/39708 36527/39709 +f 25508/26046 25512/26050 25509/26047 +f 25510/26048 25509/26047 25512/26050 +f 15676/26045 25513/26051 25511/26049 +f 25512/26050 25508/26046 25511/26049 +f 36528/39710 25510/26048 25514/26052 +f 36529/39711 36528/39710 25514/26052 +f 25510/26048 25512/26050 25515/26053 +f 15676/26045 15714/26054 25513/26051 +f 25513/26051 25515/26053 25511/26049 +f 25511/26049 25515/26053 25512/26050 +f 25516/26055 36530/39712 36531/39713 +f 36529/39714 25514/26052 25516/26055 +f 36531/39715 36529/39714 25516/26055 +f 25514/26052 25510/26048 25515/26053 +f 25513/26051 15714/26054 15783/26056 +f 25515/26053 25513/26051 15836/26057 +f 25517/26058 36532/39716 36533/39717 +f 36530/39718 25516/26055 25517/26058 +f 36533/39719 36530/39718 25517/26058 +f 25518/26059 25516/26055 25514/26052 +f 25515/26053 25519/26060 25514/26052 +f 15783/26056 15836/26057 25513/26051 +f 25520/26061 25515/26053 15836/26057 +f 36532/39720 25517/26058 25516/26055 +f 36534/39721 36532/39720 25516/26055 +f 25518/26059 25521/26062 25516/26055 +f 25519/26060 25518/26059 25514/26052 +f 25519/26060 25515/26053 25520/26061 +f 25520/26061 15836/26057 25522/26063 +f 25523/26064 36535/39722 36536/39723 +f 36534/39724 25516/26055 25521/26062 +f 36537/39725 36534/39724 25521/26062 +f 25518/26059 25524/26065 25521/26062 +f 25518/26059 25519/26060 25524/26065 +f 25525/26066 25519/26060 25520/26061 +f 25525/26066 25520/26061 25522/26063 +f 36537/39726 25521/26062 25523/26064 +f 36536/39727 36537/39726 25523/26064 +f 25523/26064 36538/39728 36535/39729 +f 25521/26062 25524/26065 25526/26067 +f 25525/26066 25524/26065 25519/26060 +f 25522/26063 25527/26068 25525/26066 +f 25523/26064 25521/26062 25528/26069 +f 36538/39730 25523/26064 25528/26069 +f 36539/39731 36538/39730 25528/26069 +f 25524/26065 25529/26070 25526/26067 +f 25526/26067 25528/26069 25521/26062 +f 25524/26065 25525/26066 25529/26070 +f 25527/26068 25530/26071 25525/26066 +f 25528/26069 36540/39732 36539/39733 +f 25531/26072 25526/26067 25529/26070 +f 25526/26067 25532/26073 25528/26069 +f 25529/26070 25525/26066 25530/26071 +f 25530/26071 25527/26068 25533/26074 +f 25528/26069 36541/39734 36540/39735 +f 25531/26072 25529/26070 25534/26075 +f 25535/26076 25526/26067 25531/26072 +f 25532/26073 25526/26067 25535/26076 +f 25532/26073 25536/26077 25528/26069 +f 25530/26071 25537/26078 25529/26070 +f 25536/26077 36542/39736 36543/39737 +f 25538/26079 25533/26074 25527/26068 +f 25538/26079 25530/26071 25533/26074 +f 36541/39738 25528/26069 25536/26077 +f 36543/39739 36541/39738 25536/26077 +f 25534/26075 25529/26070 25537/26078 +f 25539/26080 25531/26072 25534/26075 +f 25531/26072 25539/26080 25535/26076 +f 25535/26076 25539/26080 25532/26073 +f 25536/26077 25532/26073 25540/26081 +f 25537/26078 25530/26071 25538/26079 +f 36542/39740 25536/26077 25540/26081 +f 36544/39741 36542/39740 25540/26081 +f 25537/26078 25541/26082 25534/26075 +f 25539/26080 25534/26075 25542/26083 +f 25532/26073 25539/26080 25543/26084 +f 25532/26073 25543/26084 25540/26081 +f 25538/26079 25541/26082 25537/26078 +f 25540/26081 36545/39742 36544/39743 +f 25541/26082 3305/26085 25534/26075 +f 25543/26084 25539/26080 25542/26083 +f 25542/26083 25534/26075 3305/26085 +f 36545/39744 25540/26081 25543/26084 +f 36546/39745 36545/39744 25543/26084 +f 25544/26086 36547/39746 36548/39747 +f 3305/26085 25541/26082 3295/26087 +f 25543/26084 25542/26083 25545/26088 +f 25542/26083 3305/26085 3276/26089 +f 36546/39748 25543/26084 25544/26086 +f 36548/39749 36546/39748 25544/26086 +f 25544/26086 36549/39750 36547/39751 +f 3276/26089 25545/26088 25542/26083 +f 25545/26088 25544/26086 25543/26084 +f 36549/39752 25544/26086 3297/26090 +f 36193/39753 36549/39752 3297/26090 +f 25545/26088 3276/26089 3297/26090 +f 3297/26090 25544/26086 25545/26088 +f 25546/26091 36550/39754 36551/39755 +f 25546/26091 36551/39756 36552/39757 +f 36550/39758 25546/26091 13328/26092 +f 36341/39759 36550/39758 13328/26092 +f 36553/39760 25547/26093 25546/26091 +f 36552/39761 36553/39760 25546/26091 +f 25546/26091 25548/26094 13328/26092 +f 25547/26093 36553/39762 36554/39763 +f 25548/26094 25546/26091 25547/26093 +f 25548/26094 13105/26095 13328/26092 +f 36555/39764 25549/26096 25547/26093 +f 36554/39765 36555/39764 25547/26093 +f 25550/26097 25548/26094 25547/26093 +f 25548/26094 25551/26098 13105/26095 +f 36797/40227 25552/26099 36556/39766 +f 36798/40228 36797/40227 36556/39766 +f 25553/26100 36799/40229 36800/40230 +f 25553/26100 36801/40231 36799/40232 +f 36556/39767 25552/26099 25549/26096 +f 36555/39768 36556/39767 25549/26096 +f 25549/26096 25554/26101 25547/26093 +f 25550/26097 25547/26093 25555/26102 +f 25548/26094 25550/26097 25556/26103 +f 25557/26104 13105/26095 25551/26098 +f 25548/26094 25558/26105 25551/26098 +f 36801/40233 25553/26100 25552/26099 +f 36802/40234 36801/40233 25552/26099 +f 25552/26099 36797/40235 36802/40236 +f 36803/40237 25559/26106 25553/26100 +f 36800/40238 36803/40237 25553/26100 +f 25560/26107 25549/26096 25552/26099 +f 25555/26102 25547/26093 25554/26101 +f 25549/26096 25561/26108 25554/26101 +f 25555/26102 25562/26109 25550/26097 +f 25558/26105 25548/26094 25556/26103 +f 25563/26110 25556/26103 25550/26097 +f 12589/26111 13105/26095 25557/26104 +f 25551/26098 25564/26112 25557/26104 +f 25565/26113 25551/26098 25558/26105 +f 25566/26114 25552/26099 25553/26100 +f 25559/26106 25567/26115 25553/26100 +f 25559/26106 36803/40239 36804/40240 +f 25549/26096 25560/26107 25561/26108 +f 25566/26114 25560/26107 25552/26099 +f 25554/26101 25568/26116 25555/26102 +f 25554/26101 25561/26108 25569/26117 +f 25562/26109 25563/26110 25550/26097 +f 25568/26116 25562/26109 25555/26102 +f 25558/26105 25556/26103 25570/26118 +f 25563/26110 25570/26118 25556/26103 +f 25571/26119 12589/26111 25557/26104 +f 25572/26120 25564/26112 25551/26098 +f 25557/26104 25564/26112 25571/26119 +f 25572/26120 25551/26098 25565/26113 +f 25565/26113 25558/26105 25573/26121 +f 25553/26100 25567/26115 25566/26114 +f 25559/26106 25574/26122 25567/26115 +f 36805/40241 25574/26122 25559/26106 +f 36804/40242 36805/40241 25559/26106 +f 25560/26107 25575/26123 25561/26108 +f 25560/26107 25566/26114 25576/26124 +f 25554/26101 25577/26125 25568/26116 +f 25575/26123 25569/26117 25561/26108 +f 25569/26117 25577/26125 25554/26101 +f 25578/26126 25563/26110 25562/26109 +f 25562/26109 25568/26116 25578/26126 +f 25570/26118 25573/26121 25558/26105 +f 25578/26126 25570/26118 25563/26110 +f 12589/26111 25571/26119 12590/26127 +f 25579/26128 25564/26112 25572/26120 +f 25564/26112 25579/26128 25571/26119 +f 25580/26129 25572/26120 25565/26113 +f 25573/26121 25580/26129 25565/26113 +f 25581/26130 25566/26114 25567/26115 +f 25574/26122 25582/26131 25567/26115 +f 25574/26122 36805/40243 36806/40244 +f 25560/26107 25576/26124 25575/26123 +f 25576/26124 25566/26114 25583/26132 +f 25577/26125 25578/26126 25568/26116 +f 25569/26117 25575/26123 25584/26133 +f 25569/26117 25584/26133 25577/26125 +f 25573/26121 25570/26118 25580/26129 +f 25578/26126 25585/26134 25570/26118 +f 12590/26127 25571/26119 25579/26128 +f 25572/26120 12007/26135 25579/26128 +f 25572/26120 25580/26129 25586/26136 +f 25582/26131 25581/26130 25567/26115 +f 25583/26132 25566/26114 25581/26130 +f 25582/26131 25574/26122 25587/26137 +f 36807/40245 25588/26138 25574/26122 +f 36808/40246 36807/40245 25574/26122 +f 25574/26122 36806/40247 36808/40248 +f 25576/26124 25589/26139 25575/26123 +f 25576/26124 25583/26132 25590/26140 +f 25577/26125 25585/26134 25578/26126 +f 25575/26123 25589/26139 25584/26133 +f 25584/26133 25589/26139 25577/26125 +f 25580/26129 25570/26118 11655/26141 +f 25570/26118 25585/26134 11655/26141 +f 12590/26127 25579/26128 12007/26135 +f 25586/26136 12007/26135 25572/26120 +f 25586/26136 25580/26129 11655/26141 +f 25591/26142 25581/26130 25582/26131 +f 25583/26132 25581/26130 25591/26142 +f 25588/26138 25587/26137 25574/26122 +f 25587/26137 25588/26138 25582/26131 +f 36809/40249 25592/26143 25588/26138 +f 36810/40250 36809/40249 25588/26138 +f 25588/26138 36807/40251 36810/40252 +f 25592/26143 36811/40253 36812/40254 +f 25592/26143 36809/40255 36811/40256 +f 25576/26124 25593/26144 25589/26139 +f 25590/26140 25583/26132 25594/26145 +f 25595/26146 25576/26124 25590/26140 +f 25577/26125 11444/26147 25585/26134 +f 11333/26148 25577/26125 25589/26139 +f 11444/26147 11655/26141 25585/26134 +f 11655/26141 12007/26135 25586/26136 +f 25596/26149 25591/26142 25582/26131 +f 25591/26142 25594/26145 25583/26132 +f 25582/26131 25588/26138 25597/26150 +f 25598/26151 25588/26138 25592/26143 +f 36813/40257 25599/26152 25592/26143 +f 36812/40258 36813/40257 25592/26143 +f 25576/26124 25595/26146 25593/26144 +f 11110/26153 25589/26139 25593/26144 +f 25590/26140 25594/26145 25600/26154 +f 25600/26154 25595/26146 25590/26140 +f 11333/26148 11444/26147 25577/26125 +f 11110/26153 11333/26148 25589/26139 +f 25597/26150 25596/26149 25582/26131 +f 25591/26142 25596/26149 25601/26155 +f 25594/26145 25591/26142 25601/26155 +f 25588/26138 25602/26156 25597/26150 +f 25602/26156 25588/26138 25598/26151 +f 25598/26151 25592/26143 25603/26157 +f 25604/26158 36814/40259 36815/40260 +f 25603/26157 25592/26143 25599/26152 +f 36814/40261 25604/26158 25599/26152 +f 36813/40262 36814/40261 25599/26152 +f 25593/26144 25595/26146 10900/26159 +f 11110/26153 25593/26144 10900/26159 +f 25600/26154 25594/26145 25601/26155 +f 25600/26154 25605/26160 25595/26146 +f 25606/26161 25596/26149 25597/26150 +f 25601/26155 25596/26149 25607/26162 +f 25602/26156 25608/26163 25597/26150 +f 25602/26156 25598/26151 25608/26163 +f 25603/26157 25608/26163 25598/26151 +f 25604/26158 36815/40263 36816/40264 +f 25609/26164 25603/26157 25599/26152 +f 25604/26158 25609/26164 25599/26152 +f 25610/26165 10900/26159 25595/26146 +f 25600/26154 25601/26155 25611/26166 +f 25605/26160 25610/26165 25595/26146 +f 25605/26160 25600/26154 25611/26166 +f 25607/26162 25596/26149 25606/26161 +f 25606/26161 25597/26150 25612/26167 +f 25601/26155 25607/26162 25611/26166 +f 25612/26167 25597/26150 25608/26163 +f 25608/26163 25603/26157 25613/26168 +f 25614/26169 36817/40265 36818/40266 +f 25614/26169 36819/40267 36817/40268 +f 36820/40269 25615/26170 25604/26158 +f 36816/40270 36820/40269 25604/26158 +f 25603/26157 25609/26164 25613/26168 +f 25604/26158 25616/26171 25609/26164 +f 25610/26165 10799/26172 10900/26159 +f 11009/26173 25610/26165 25605/26160 +f 25607/26162 25605/26160 25611/26166 +f 25607/26162 25606/26161 25617/26174 +f 25618/26175 25606/26161 25612/26167 +f 25608/26163 25613/26168 25612/26167 +f 36821/40271 36557/39769 25614/26169 +f 36818/40272 36821/40271 25614/26169 +f 36557/39769 36821/40273 36822/40274 +f 36819/40275 25614/26169 25615/26170 +f 36820/40276 36819/40275 25615/26170 +f 25615/26170 25616/26171 25604/26158 +f 25609/26164 25619/26176 25613/26168 +f 25620/26177 25609/26164 25616/26171 +f 11009/26173 10799/26172 25610/26165 +f 25621/26178 11009/26173 25605/26160 +f 25605/26160 25607/26162 25617/26174 +f 25606/26161 25618/26175 25617/26174 +f 25622/26179 25618/26175 25612/26167 +f 25612/26167 25613/26168 25622/26179 +f 36558/39770 25623/26180 25614/26169 +f 36557/39771 36558/39770 25614/26169 +f 25624/26181 25615/26170 25614/26169 +f 25616/26171 25615/26170 25624/26181 +f 25609/26164 25625/26182 25619/26176 +f 25619/26176 25622/26179 25613/26168 +f 25616/26171 25626/26183 25620/26177 +f 25625/26182 25609/26164 25620/26177 +f 25621/26178 25627/26184 11009/26173 +f 25617/26174 25621/26178 25605/26160 +f 25618/26175 25628/26185 25617/26174 +f 25628/26185 25618/26175 25622/26179 +f 25629/26186 36559/39772 36560/39773 +f 25623/26180 36558/39774 36561/39775 +f 25624/26181 25614/26169 25623/26180 +f 25624/26181 25626/26183 25616/26171 +f 25630/26187 25619/26176 25625/26182 +f 25622/26179 25619/26176 25630/26187 +f 25631/26188 25620/26177 25626/26183 +f 25625/26182 25620/26177 25632/26189 +f 25627/26184 10936/26190 11009/26173 +f 25633/26191 25627/26184 25621/26178 +f 25628/26185 25621/26178 25617/26174 +f 25628/26185 25622/26179 25634/26192 +f 36559/39776 25629/26186 25635/26193 +f 36562/39777 36559/39776 25635/26193 +f 36823/40277 25636/26194 25629/26186 +f 36824/40278 36823/40277 25629/26186 +f 36824/40279 25629/26186 36560/39778 +f 36825/40280 36824/40279 36560/39778 +f 36563/39779 25637/26195 25623/26180 +f 36561/39780 36563/39779 25623/26180 +f 25638/26196 25624/26181 25623/26180 +f 25626/26183 25624/26181 25639/26197 +f 25634/26192 25630/26187 25625/26182 +f 25622/26179 25630/26187 25634/26192 +f 25632/26189 25620/26177 25631/26188 +f 25631/26188 25626/26183 25640/26198 +f 25625/26182 25632/26189 25634/26192 +f 10936/26190 25627/26184 25641/26199 +f 25641/26199 25627/26184 25633/26191 +f 25633/26191 25621/26178 25642/26200 +f 25628/26185 25642/26200 25621/26178 +f 25642/26200 25628/26185 25634/26192 +f 25636/26194 36826/40281 36827/40282 +f 25636/26194 36823/40283 36826/40284 +f 36562/39781 25635/26193 25643/26201 +f 36564/39782 36562/39781 25643/26201 +f 25644/26202 25635/26193 25629/26186 +f 25636/26194 25645/26203 25629/26186 +f 36564/39783 25643/26201 25637/26195 +f 36563/39784 36564/39783 25637/26195 +f 25623/26180 25637/26195 25638/26196 +f 25624/26181 25638/26196 25639/26197 +f 25640/26198 25626/26183 25639/26197 +f 25631/26188 25646/26204 25632/26189 +f 25631/26188 25640/26198 25647/26205 +f 25634/26192 25632/26189 25646/26204 +f 25641/26199 25648/26206 10936/26190 +f 25633/26191 25642/26200 25641/26199 +f 25634/26192 25649/26207 25642/26200 +f 36828/40285 25650/26208 25636/26194 +f 36827/40286 36828/40285 25636/26194 +f 25635/26193 25651/26209 25643/26201 +f 25652/26210 25635/26193 25644/26202 +f 25653/26211 25644/26202 25629/26186 +f 25654/26212 25645/26203 25636/26194 +f 25629/26186 25645/26203 25655/26213 +f 25643/26201 25656/26214 25637/26195 +f 25637/26195 25657/26215 25638/26196 +f 25638/26196 25657/26215 25639/26197 +f 25658/26216 25640/26198 25639/26197 +f 25631/26188 25659/26217 25646/26204 +f 25647/26205 25640/26198 25660/26218 +f 25647/26205 25659/26217 25631/26188 +f 25634/26192 25646/26204 25649/26207 +f 10936/26190 25648/26206 10729/26219 +f 25641/26199 25642/26200 25648/26206 +f 25642/26200 25649/26207 25646/26204 +f 25650/26208 36829/40287 36830/40288 +f 25654/26212 25636/26194 25650/26208 +f 25661/26220 25643/26201 25651/26209 +f 25651/26209 25635/26193 25652/26210 +f 25644/26202 25653/26211 25652/26210 +f 25629/26186 25655/26213 25653/26211 +f 25662/26221 25645/26203 25654/26212 +f 25655/26213 25645/26203 25663/26222 +f 25643/26201 25661/26220 25656/26214 +f 25656/26214 25657/26215 25637/26195 +f 25657/26215 25658/26216 25639/26197 +f 25660/26218 25640/26198 25658/26216 +f 25646/26204 25659/26217 25664/26223 +f 25660/26218 25665/26224 25647/26205 +f 25647/26205 25666/26225 25659/26217 +f 10729/26219 25648/26206 25667/26226 +f 25664/26223 25648/26206 25642/26200 +f 25664/26223 25642/26200 25646/26204 +f 25650/26208 36830/40289 36831/40290 +f 25650/26208 25668/26227 25654/26212 +f 25661/26220 25651/26209 25652/26210 +f 25653/26211 25669/26228 25652/26210 +f 25655/26213 25663/26222 25653/26211 +f 25645/26203 25662/26221 25670/26229 +f 25654/26212 25668/26227 25662/26221 +f 25663/26222 25645/26203 25670/26229 +f 25671/26230 25656/26214 25661/26220 +f 25656/26214 25672/26231 25657/26215 +f 25672/26231 25658/26216 25657/26215 +f 25660/26218 25658/26216 25672/26231 +f 25664/26223 25659/26217 25673/26232 +f 25665/26224 25666/26225 25647/26205 +f 25665/26224 25660/26218 25674/26233 +f 25659/26217 25666/26225 25675/26234 +f 25667/26226 25648/26206 25664/26223 +f 10523/26235 10729/26219 25667/26226 +f 36832/40291 25676/26236 25650/26208 +f 36831/40292 36832/40291 25650/26208 +f 25676/26236 25668/26227 25650/26208 +f 25652/26210 25677/26237 25661/26220 +f 25653/26211 25663/26222 25669/26228 +f 25652/26210 25669/26228 25677/26237 +f 25678/26238 25670/26229 25662/26221 +f 25662/26221 25668/26227 25679/26239 +f 25670/26229 25680/26240 25663/26222 +f 25656/26214 25671/26230 25674/26233 +f 25661/26220 25681/26241 25671/26230 +f 25674/26233 25672/26231 25656/26214 +f 25660/26218 25672/26231 25674/26233 +f 25659/26217 25675/26234 25673/26232 +f 25664/26223 25673/26232 25667/26226 +f 25665/26224 25682/26242 25666/26225 +f 25681/26241 25665/26224 25674/26233 +f 25675/26234 25666/26225 25683/26243 +f 25667/26226 25684/26244 10523/26235 +f 25685/26245 36833/40293 36834/40294 +f 25686/26246 36835/40295 36836/40296 +f 36837/40297 25686/26246 25676/26236 +f 36832/40298 36837/40297 25676/26236 +f 25686/26246 36837/40299 36835/40300 +f 25668/26227 25676/26236 25687/26247 +f 25677/26237 25681/26241 25661/26220 +f 25663/26222 25688/26248 25669/26228 +f 25669/26228 25689/26249 25677/26237 +f 25670/26229 25678/26238 25680/26240 +f 25662/26221 25690/26250 25678/26238 +f 25690/26250 25662/26221 25679/26239 +f 25687/26247 25679/26239 25668/26227 +f 25663/26222 25680/26240 25688/26248 +f 25674/26233 25671/26230 25681/26241 +f 25675/26234 25691/26251 25673/26232 +f 25667/26226 25673/26232 25684/26244 +f 25682/26242 25692/26252 25666/26225 +f 25693/26253 25682/26242 25665/26224 +f 25665/26224 25681/26241 25693/26253 +f 25683/26243 25666/26225 25692/26252 +f 25694/26254 25675/26234 25683/26243 +f 10339/26255 10523/26235 25684/26244 +f 25685/26245 36834/40301 36838/40302 +f 36833/40303 25685/26245 25686/26246 +f 36836/40304 36833/40303 25686/26246 +f 25686/26246 25695/26256 25676/26236 +f 25676/26236 25695/26256 25687/26247 +f 25677/26237 25693/26253 25681/26241 +f 25689/26249 25669/26228 25688/26248 +f 25693/26253 25677/26237 25689/26249 +f 25680/26240 25678/26238 25696/26257 +f 25690/26250 25697/26258 25678/26238 +f 25690/26250 25679/26239 25687/26247 +f 25696/26257 25688/26248 25680/26240 +f 25675/26234 25694/26254 25691/26251 +f 25691/26251 25684/26244 25673/26232 +f 25692/26252 25682/26242 25698/26259 +f 25682/26242 25693/26253 25699/26260 +f 25692/26252 25700/26261 25683/26243 +f 25700/26261 25694/26254 25683/26243 +f 25691/26251 10339/26255 25684/26244 +f 36839/40305 25701/26262 25685/26245 +f 36838/40306 36839/40305 25685/26245 +f 25686/26246 25685/26245 25702/26263 +f 25703/26264 36840/40307 36841/40308 +f 25704/26265 25695/26256 25686/26246 +f 25687/26247 25695/26256 25705/26266 +f 25706/26267 25689/26249 25688/26248 +f 25693/26253 25689/26249 25699/26260 +f 25706/26267 25696/26257 25678/26238 +f 25707/26268 25697/26258 25690/26250 +f 25697/26258 25706/26267 25678/26238 +f 25707/26268 25690/26250 25687/26247 +f 25696/26257 25706/26267 25688/26248 +f 25694/26254 25708/26269 25691/26251 +f 25699/26260 25698/26259 25682/26242 +f 25692/26252 25698/26259 25709/26270 +f 25692/26252 25710/26271 25700/26261 +f 25694/26254 25700/26261 25708/26269 +f 25711/26272 10339/26255 25691/26251 +f 25685/26245 25701/26262 25702/26263 +f 36840/40309 25703/26264 25701/26262 +f 36839/40310 36840/40309 25701/26262 +f 25702/26263 25712/26273 25686/26246 +f 36842/40311 25713/26274 25703/26264 +f 36841/40312 36842/40311 25703/26264 +f 25712/26273 25704/26265 25686/26246 +f 25704/26265 25705/26266 25695/26256 +f 25705/26266 25714/26275 25687/26247 +f 25715/26276 25689/26249 25706/26267 +f 25699/26260 25689/26249 25715/26276 +f 25697/26258 25707/26268 25716/26277 +f 25697/26258 25717/26278 25706/26267 +f 25714/26275 25707/26268 25687/26247 +f 25708/26269 25711/26272 25691/26251 +f 25715/26276 25698/26259 25699/26260 +f 25698/26259 25718/26279 25709/26270 +f 25710/26271 25692/26252 25709/26270 +f 25710/26271 25719/26280 25700/26261 +f 25720/26281 25708/26269 25700/26261 +f 10339/26255 25711/26272 10247/26282 +f 25702/26263 25701/26262 25721/26283 +f 25701/26262 25703/26264 25722/26284 +f 25702/26263 25721/26283 25712/26273 +f 25723/26285 25703/26264 25713/26274 +f 36843/40313 25724/26286 25713/26274 +f 36842/40314 36843/40313 25713/26274 +f 25712/26273 25705/26266 25704/26265 +f 25714/26275 25705/26266 25725/26287 +f 25726/26288 25715/26276 25706/26267 +f 25716/26277 25707/26268 25727/26289 +f 25697/26258 25716/26277 25717/26278 +f 25717/26278 25726/26288 25706/26267 +f 25725/26287 25707/26268 25714/26275 +f 25711/26272 25708/26269 25728/26290 +f 25726/26288 25698/26259 25715/26276 +f 25698/26259 25726/26288 25718/26279 +f 25718/26279 25729/26291 25709/26270 +f 25729/26291 25710/26271 25709/26270 +f 25700/26261 25719/26280 25720/26281 +f 25710/26271 25730/26292 25719/26280 +f 25728/26290 25708/26269 25720/26281 +f 25711/26272 25728/26290 10247/26282 +f 25721/26283 25701/26262 25722/26284 +f 25703/26264 25731/26293 25722/26284 +f 25732/26294 25712/26273 25721/26283 +f 25724/26286 36843/40315 36844/40316 +f 25713/26274 25733/26295 25723/26285 +f 25703/26264 25723/26285 25731/26293 +f 25734/26296 25713/26274 25724/26286 +f 25705/26266 25712/26273 25735/26297 +f 25705/26266 25735/26297 25725/26287 +f 25727/26289 25707/26268 25725/26287 +f 25727/26289 25736/26298 25716/26277 +f 25717/26278 25716/26277 25737/26299 +f 25726/26288 25717/26278 25738/26300 +f 25738/26300 25718/26279 25726/26288 +f 25739/26301 25729/26291 25718/26279 +f 25710/26271 25729/26291 10003/26302 +f 25719/26280 10079/26303 25720/26281 +f 25730/26292 25710/26271 10003/26302 +f 25719/26280 25730/26292 9925/26304 +f 25720/26281 10079/26303 25728/26290 +f 25740/26305 10247/26282 25728/26290 +f 25741/26306 25721/26283 25722/26284 +f 25722/26284 25731/26293 25741/26306 +f 25735/26297 25712/26273 25732/26294 +f 25732/26294 25721/26283 25742/26307 +f 25724/26286 36844/40317 36845/40318 +f 25733/26295 25743/26308 25723/26285 +f 25713/26274 25734/26296 25733/26295 +f 25731/26293 25723/26285 25744/26309 +f 25745/26310 25734/26296 25724/26286 +f 25725/26287 25735/26297 25746/26311 +f 25725/26287 25747/26312 25727/26289 +f 25736/26298 25737/26299 25716/26277 +f 25736/26298 25727/26289 25747/26312 +f 25737/26299 25748/26313 25717/26278 +f 25738/26300 25717/26278 25748/26313 +f 25739/26301 25718/26279 25738/26300 +f 25749/26314 25729/26291 25739/26301 +f 25729/26291 10007/26315 10003/26302 +f 25719/26280 9925/26304 10079/26303 +f 10003/26302 9852/26316 25730/26292 +f 9925/26304 25730/26292 9852/26316 +f 25740/26305 25728/26290 10079/26303 +f 10079/26303 10247/26282 25740/26305 +f 25741/26306 25742/26307 25721/26283 +f 25744/26309 25741/26306 25731/26293 +f 25746/26311 25735/26297 25732/26294 +f 25732/26294 25742/26307 25750/26317 +f 36846/40319 25751/26318 25724/26286 +f 36845/40320 36846/40319 25724/26286 +f 25743/26308 25733/26295 25752/26319 +f 25743/26308 25744/26309 25723/26285 +f 25752/26319 25733/26295 25734/26296 +f 25753/26320 25734/26296 25745/26310 +f 25745/26310 25724/26286 25754/26321 +f 25746/26311 25747/26312 25725/26287 +f 25736/26298 25748/26313 25737/26299 +f 25736/26298 25747/26312 25755/26322 +f 25748/26313 25739/26301 25738/26300 +f 25739/26301 25756/26323 25749/26314 +f 25729/26291 25749/26314 10007/26315 +f 25757/26324 25742/26307 25741/26306 +f 25741/26306 25744/26309 25758/26325 +f 25759/26326 25746/26311 25732/26294 +f 25750/26317 25759/26326 25732/26294 +f 25750/26317 25742/26307 25760/26327 +f 25761/26328 36847/40321 36848/40322 +f 25754/26321 25724/26286 25751/26318 +f 36847/40323 25761/26328 25751/26318 +f 36846/40324 36847/40323 25751/26318 +f 25762/26329 25743/26308 25752/26319 +f 25744/26309 25743/26308 25763/26330 +f 25734/26296 25764/26331 25752/26319 +f 25765/26332 25753/26320 25745/26310 +f 25734/26296 25753/26320 25764/26331 +f 25765/26332 25745/26310 25754/26321 +f 25746/26311 25759/26326 25747/26312 +f 25736/26298 25766/26333 25748/26313 +f 25767/26334 25755/26322 25747/26312 +f 25766/26333 25736/26298 25755/26322 +f 25748/26313 25768/26335 25739/26301 +f 25756/26323 25739/26301 25768/26335 +f 25756/26323 9932/26336 25749/26314 +f 10007/26315 25749/26314 9932/26336 +f 25757/26324 25769/26337 25742/26307 +f 25741/26306 25758/26325 25757/26324 +f 25770/26338 25758/26325 25744/26309 +f 25760/26327 25759/26326 25750/26317 +f 25760/26327 25742/26307 25769/26337 +f 36849/40325 25771/26339 25761/26328 +f 36848/40326 36849/40325 25761/26328 +f 25751/26318 25772/26340 25754/26321 +f 25751/26318 25761/26328 25773/26341 +f 25762/26329 25774/26342 25743/26308 +f 25775/26343 25762/26329 25752/26319 +f 25776/26344 25763/26330 25743/26308 +f 25744/26309 25763/26330 25770/26338 +f 25752/26319 25764/26331 25775/26343 +f 25753/26320 25765/26332 25777/26345 +f 25753/26320 25778/26346 25764/26331 +f 25765/26332 25754/26321 25779/26347 +f 25747/26312 25759/26326 25767/26334 +f 25748/26313 25766/26333 25768/26335 +f 25780/26348 25755/26322 25767/26334 +f 25768/26335 25766/26333 25755/26322 +f 25756/26323 25768/26335 25781/26349 +f 9932/26336 25756/26323 10083/26350 +f 25782/26351 25769/26337 25757/26324 +f 25757/26324 25758/26325 25783/26352 +f 25770/26338 25783/26352 25758/26325 +f 25759/26326 25760/26327 25767/26334 +f 25760/26327 25769/26337 25767/26334 +f 25771/26339 36849/40327 36850/40328 +f 25771/26339 25784/26353 25761/26328 +f 25754/26321 25772/26340 25785/26354 +f 25751/26318 25773/26341 25772/26340 +f 25784/26353 25773/26341 25761/26328 +f 25775/26343 25774/26342 25762/26329 +f 25774/26342 25776/26344 25743/26308 +f 25763/26330 25776/26344 25786/26355 +f 25786/26355 25770/26338 25763/26330 +f 25778/26346 25775/26343 25764/26331 +f 25777/26345 25765/26332 25779/26347 +f 25753/26320 25777/26345 25778/26346 +f 25779/26347 25754/26321 25785/26354 +f 25780/26348 25768/26335 25755/26322 +f 25767/26334 25769/26337 25780/26348 +f 25768/26335 25780/26348 25781/26349 +f 10083/26350 25756/26323 25781/26349 +f 25782/26351 25787/26356 25769/26337 +f 25757/26324 25783/26352 25782/26351 +f 25783/26352 25770/26338 25786/26355 +f 36851/40329 10819/26357 25771/26339 +f 36850/40330 36851/40329 25771/26339 +f 25784/26353 25771/26339 25788/26358 +f 25772/26340 25773/26341 25785/26354 +f 25784/26353 25789/26359 25773/26341 +f 25790/26360 25774/26342 25775/26343 +f 25791/26361 25776/26344 25774/26342 +f 25786/26355 25776/26344 25791/26361 +f 25778/26346 25792/26362 25775/26343 +f 25777/26345 25779/26347 25793/26363 +f 25794/26364 25778/26346 25777/26345 +f 25785/26354 25795/26365 25779/26347 +f 25769/26337 25796/26366 25780/26348 +f 25781/26349 25780/26348 25796/26366 +f 25781/26349 10006/26367 10083/26350 +f 25769/26337 25787/26356 25797/26368 +f 25798/26369 25787/26356 25782/26351 +f 25782/26351 25783/26352 25798/26369 +f 25798/26369 25783/26352 25786/26355 +f 25799/26370 25771/26339 10819/26357 +f 25784/26353 25788/26358 25800/26371 +f 25771/26339 25799/26370 25788/26358 +f 25785/26354 25773/26341 25795/26365 +f 25784/26353 25801/26372 25789/26359 +f 25795/26365 25773/26341 25789/26359 +f 25790/26360 25791/26361 25774/26342 +f 25775/26343 25792/26362 25790/26360 +f 25791/26361 25798/26369 25786/26355 +f 25792/26362 25778/26346 25802/26373 +f 25779/26347 25795/26365 25793/26363 +f 25777/26345 25793/26363 25794/26364 +f 25794/26364 25802/26373 25778/26346 +f 25797/26368 25796/26366 25769/26337 +f 25781/26349 25796/26366 10006/26367 +f 25787/26356 25796/26366 25797/26368 +f 9930/26374 25787/26356 25798/26369 +f 25799/26370 10819/26357 10604/26375 +f 25803/26376 25800/26371 25788/26358 +f 25784/26353 25800/26371 25804/26377 +f 25803/26376 25788/26358 25799/26370 +f 25784/26353 25804/26377 25801/26372 +f 25805/26378 25789/26359 25801/26372 +f 25806/26379 25795/26365 25789/26359 +f 25807/26380 25791/26361 25790/26360 +f 25808/26381 25790/26360 25792/26362 +f 25791/26361 25809/26382 25798/26369 +f 25792/26362 25802/26373 25808/26381 +f 25793/26363 25795/26365 25806/26379 +f 25793/26363 25810/26383 25794/26364 +f 25811/26384 25802/26373 25794/26364 +f 10006/26367 25796/26366 25787/26356 +f 25787/26356 9930/26374 10006/26367 +f 9930/26374 25798/26369 9927/26385 +f 25799/26370 10604/26375 25812/26386 +f 25800/26371 25803/26376 25813/26387 +f 25804/26377 25800/26371 25814/26388 +f 25803/26376 25799/26370 25815/26389 +f 25816/26390 25801/26372 25804/26377 +f 25801/26372 25816/26390 25805/26378 +f 25789/26359 25805/26378 25806/26379 +f 25807/26380 25790/26360 25808/26381 +f 25809/26382 25791/26361 25807/26380 +f 9927/26385 25798/26369 25809/26382 +f 25808/26381 25802/26373 25807/26380 +f 25806/26379 25817/26391 25793/26363 +f 25810/26383 25818/26392 25794/26364 +f 25819/26393 25810/26383 25793/26363 +f 25818/26392 25811/26384 25794/26364 +f 25811/26384 25807/26380 25802/26373 +f 10416/26394 25812/26386 10604/26375 +f 25815/26389 25799/26370 25812/26386 +f 25814/26388 25800/26371 25813/26387 +f 25820/26395 25813/26387 25803/26376 +f 25814/26388 25821/26396 25804/26377 +f 25820/26395 25803/26376 25815/26389 +f 25821/26396 25816/26390 25804/26377 +f 25805/26378 25816/26390 25822/26397 +f 25806/26379 25805/26378 25817/26391 +f 25807/26380 10167/26398 25809/26382 +f 25809/26382 10167/26398 9927/26385 +f 25817/26391 25819/26393 25793/26363 +f 25810/26383 25823/26399 25818/26392 +f 25823/26399 25810/26383 25819/26393 +f 25824/26400 25811/26384 25818/26392 +f 25811/26384 10167/26398 25807/26380 +f 25812/26386 10416/26394 25815/26389 +f 25813/26387 25821/26396 25814/26388 +f 25813/26387 25820/26395 25825/26401 +f 10416/26394 25820/26395 25815/26389 +f 25822/26397 25816/26390 25821/26396 +f 25822/26397 25826/26402 25805/26378 +f 25826/26402 25817/26391 25805/26378 +f 25819/26393 25817/26391 25823/26399 +f 25817/26391 25818/26392 25823/26399 +f 10167/26398 25811/26384 25824/26400 +f 25818/26392 25827/26403 25824/26400 +f 25821/26396 25813/26387 25825/26401 +f 25825/26401 25820/26395 10340/26404 +f 10416/26394 10340/26404 25820/26395 +f 25821/26396 25828/26405 25822/26397 +f 25828/26405 25826/26402 25822/26397 +f 25827/26403 25817/26391 25826/26402 +f 25827/26403 25818/26392 25817/26391 +f 10167/26398 25824/26400 10086/26406 +f 10169/26407 25824/26400 25827/26403 +f 25828/26405 25821/26396 25825/26401 +f 25825/26401 10340/26404 25829/26408 +f 25830/26409 25826/26402 25828/26405 +f 25826/26402 25830/26409 25827/26403 +f 10086/26406 25824/26400 10169/26407 +f 25827/26403 10088/26410 10169/26407 +f 25828/26405 25825/26401 25829/26408 +f 10340/26404 10168/26411 25829/26408 +f 25829/26408 25830/26409 25828/26405 +f 10088/26410 25827/26403 25830/26409 +f 10168/26411 25830/26409 25829/26408 +f 10168/26411 10088/26410 25830/26409 +f 25831/26412 36852/40331 36853/40332 +f 36854/40333 35950/38564 25831/26412 +f 36853/40334 36854/40333 25831/26412 +f 25831/26412 36855/40335 36852/40336 +f 35951/38565 25832/26413 25831/26412 +f 35950/38566 35951/38565 25831/26412 +f 25831/26412 36856/40337 36855/40338 +f 25833/26414 36857/40339 36858/40340 +f 25832/26413 35951/38567 35952/38568 +f 25832/26413 25834/26415 25831/26412 +f 25833/26414 36858/40341 36859/40342 +f 36856/40343 25831/26412 25834/26415 +f 36860/40344 36856/40343 25834/26415 +f 25833/26414 36861/40345 36857/40346 +f 35953/38569 25835/26416 25832/26413 +f 35952/38570 35953/38569 25832/26413 +f 25832/26413 25836/26417 25834/26415 +f 36862/40347 25837/26418 25833/26414 +f 36859/40348 36862/40347 25833/26414 +f 36860/40349 25834/26415 25838/26419 +f 36863/40350 36860/40349 25838/26419 +f 36861/40351 25833/26414 25839/26420 +f 36864/40352 36861/40351 25839/26420 +f 25840/26421 36865/40353 36866/40354 +f 25841/26422 35954/38571 35955/38572 +f 25841/26422 35955/38573 35956/38574 +f 25841/26422 35957/38575 35954/38576 +f 35957/38577 25841/26422 25835/26416 +f 35953/38578 35957/38577 25835/26416 +f 25832/26413 25835/26416 25842/26423 +f 25842/26423 25834/26415 25836/26417 +f 25836/26417 25832/26413 25842/26423 +f 36863/40355 25838/26419 25837/26418 +f 36862/40356 36863/40355 25837/26418 +f 25843/26424 25833/26414 25837/26418 +f 25838/26419 25834/26415 25842/26423 +f 36864/40357 25839/26420 25844/26425 +f 36867/40358 36864/40357 25844/26425 +f 25843/26424 25839/26420 25833/26414 +f 25844/26425 36868/40359 36867/40360 +f 36869/40361 25845/26426 25840/26421 +f 36866/40362 36869/40361 25840/26421 +f 25840/26421 36870/40363 36865/40364 +f 25841/26422 35956/38579 35958/38580 +f 25841/26422 25846/26427 25835/26416 +f 25842/26423 25835/26416 25846/26427 +f 25838/26419 25842/26423 25837/26418 +f 25847/26428 25843/26424 25837/26418 +f 25839/26420 25848/26429 25844/26425 +f 25849/26430 25839/26420 25843/26424 +f 36868/40365 25844/26425 25848/26429 +f 36871/40366 36868/40365 25848/26429 +f 36871/40367 25848/26429 25845/26426 +f 36869/40368 36871/40367 25845/26426 +f 25840/26421 25845/26426 25850/26431 +f 36870/40369 25840/26421 25851/26432 +f 36872/40370 36870/40369 25851/26432 +f 25851/26432 36873/40371 36872/40372 +f 35959/38581 25852/26433 25841/26422 +f 35958/38582 35959/38581 25841/26422 +f 25853/26434 25846/26427 25841/26422 +f 25846/26427 25854/26435 25842/26423 +f 25842/26423 25854/26435 25837/26418 +f 25855/26436 25847/26428 25837/26418 +f 25847/26428 25849/26430 25843/26424 +f 25848/26429 25839/26420 25856/26437 +f 25839/26420 25849/26430 25856/26437 +f 25857/26438 25845/26426 25848/26429 +f 25840/26421 25850/26431 25851/26432 +f 25850/26431 25845/26426 25858/26439 +f 36873/40373 25851/26432 25859/26440 +f 36874/40374 36873/40373 25859/26440 +f 25859/26440 36875/40375 36874/40376 +f 25852/26433 35959/38583 35960/38584 +f 25841/26422 25852/26433 25853/26434 +f 25853/26434 25860/26441 25846/26427 +f 25855/26436 25854/26435 25846/26427 +f 25854/26435 25855/26436 25837/26418 +f 25847/26428 25855/26436 25861/26442 +f 25862/26443 25849/26430 25847/26428 +f 25856/26437 25857/26438 25848/26429 +f 25849/26430 25863/26444 25856/26437 +f 25857/26438 25864/26445 25845/26426 +f 25865/26446 25851/26432 25850/26431 +f 25850/26431 25858/26439 25866/26447 +f 25845/26426 25864/26445 25858/26439 +f 25851/26432 25865/26446 25859/26440 +f 36875/40377 25859/26440 25867/26448 +f 36876/40378 36875/40377 25867/26448 +f 25868/26449 36877/40379 36878/40380 +f 25852/26433 35960/38585 35961/38586 +f 25853/26434 25852/26433 25869/26450 +f 25853/26434 25870/26451 25860/26441 +f 25846/26427 25860/26441 25855/26436 +f 25861/26442 25855/26436 25871/26452 +f 25861/26442 25862/26443 25847/26428 +f 25862/26443 25863/26444 25849/26430 +f 25856/26437 25872/26453 25857/26438 +f 25863/26444 25873/26454 25856/26437 +f 25864/26445 25857/26438 25874/26455 +f 25866/26447 25865/26446 25850/26431 +f 25866/26447 25858/26439 25875/26456 +f 25864/26445 25875/26456 25858/26439 +f 25865/26446 25876/26457 25859/26440 +f 36876/40381 25867/26448 25877/26458 +f 36879/40382 36876/40381 25877/26458 +f 25876/26457 25867/26448 25859/26440 +f 25868/26449 36880/40383 36877/40384 +f 36879/40385 25877/26458 25868/26449 +f 36878/40386 36879/40385 25868/26449 +f 35962/38587 25878/26459 25852/26433 +f 35961/38588 35962/38587 25852/26433 +f 25879/26460 25853/26434 25869/26450 +f 25880/26461 25869/26450 25852/26433 +f 25879/26460 25870/26451 25853/26434 +f 25881/26462 25860/26441 25870/26451 +f 25855/26436 25860/26441 25882/26463 +f 25882/26463 25871/26452 25855/26436 +f 25883/26464 25861/26442 25871/26452 +f 25862/26443 25861/26442 25883/26464 +f 25884/26465 25863/26444 25862/26443 +f 25857/26438 25872/26453 25874/26455 +f 25872/26453 25856/26437 25885/26466 +f 25873/26454 25863/26444 25884/26465 +f 25856/26437 25873/26454 25885/26466 +f 25875/26456 25864/26445 25874/26455 +f 25865/26446 25866/26447 25886/26467 +f 25875/26456 25887/26468 25866/26447 +f 25888/26469 25876/26457 25865/26446 +f 25867/26448 25889/26470 25877/26458 +f 25889/26470 25867/26448 25876/26457 +f 36880/40387 25868/26449 25890/26471 +f 36881/40388 36880/40387 25890/26471 +f 25877/26458 25890/26471 25868/26449 +f 25880/26461 25852/26433 25878/26459 +f 25878/26459 35962/38589 35963/38590 +f 25879/26460 25869/26450 25891/26472 +f 25869/26450 25880/26461 25891/26472 +f 25892/26473 25870/26451 25879/26460 +f 25881/26462 25882/26463 25860/26441 +f 25870/26451 25892/26473 25881/26462 +f 25871/26452 25882/26463 25893/26474 +f 25871/26452 25894/26475 25883/26464 +f 25895/26476 25862/26443 25883/26464 +f 25884/26465 25862/26443 25895/26476 +f 25874/26455 25872/26453 25896/26477 +f 25872/26453 25885/26466 25897/26478 +f 25873/26454 25884/26465 25898/26479 +f 25885/26466 25873/26454 25897/26478 +f 25899/26480 25875/26456 25874/26455 +f 25888/26469 25865/26446 25886/26467 +f 25900/26481 25886/26467 25866/26447 +f 25887/26468 25875/26456 25901/26482 +f 25866/26447 25887/26468 25900/26481 +f 25902/26483 25876/26457 25888/26469 +f 25877/26458 25889/26470 25890/26471 +f 25889/26470 25876/26457 25903/26484 +f 36881/40389 25890/26471 25904/26485 +f 36882/40390 36881/40389 25904/26485 +f 25904/26485 36883/40391 36882/40392 +f 25880/26461 25878/26459 25905/26486 +f 35964/38591 25906/26487 25878/26459 +f 35963/38592 35964/38591 25878/26459 +f 25879/26460 25891/26472 25907/26488 +f 25880/26461 25905/26486 25891/26472 +f 25907/26488 25892/26473 25879/26460 +f 25892/26473 25882/26463 25881/26462 +f 25882/26463 25908/26489 25893/26474 +f 25894/26475 25871/26452 25893/26474 +f 25894/26475 25909/26490 25883/26464 +f 25895/26476 25883/26464 25910/26491 +f 25895/26476 25911/26492 25884/26465 +f 25896/26477 25899/26480 25874/26455 +f 25896/26477 25872/26453 25897/26478 +f 25912/26493 25898/26479 25884/26465 +f 25913/26494 25873/26454 25898/26479 +f 25873/26454 25913/26494 25897/26478 +f 25899/26480 25901/26482 25875/26456 +f 25888/26469 25886/26467 25914/26495 +f 25886/26467 25900/26481 25915/26496 +f 25901/26482 25916/26497 25887/26468 +f 25917/26498 25900/26481 25887/26468 +f 25918/26499 25876/26457 25902/26483 +f 25919/26500 25902/26483 25888/26469 +f 25904/26485 36884/40393 36883/40394 +f 25920/26501 25890/26471 25889/26470 +f 25921/26502 25889/26470 25903/26484 +f 25903/26484 25876/26457 25918/26499 +f 25904/26485 25890/26471 25920/26501 +f 25905/26486 25878/26459 25906/26487 +f 25922/26503 35965/38593 35966/38594 +f 35965/38595 25922/26503 25906/26487 +f 35964/38596 35965/38595 25906/26487 +f 25891/26472 25923/26504 25907/26488 +f 25924/26505 25891/26472 25905/26486 +f 25925/26506 25892/26473 25907/26488 +f 25908/26489 25882/26463 25892/26473 +f 25908/26489 25926/26507 25893/26474 +f 25893/26474 25909/26490 25894/26475 +f 25883/26464 25909/26490 25927/26508 +f 25895/26476 25910/26491 25911/26492 +f 25910/26491 25883/26464 25927/26508 +f 25928/26509 25884/26465 25911/26492 +f 25899/26480 25896/26477 25929/26510 +f 25897/26478 25930/26511 25896/26477 +f 25898/26479 25912/26493 25931/26512 +f 25884/26465 25928/26509 25912/26493 +f 25913/26494 25898/26479 25931/26512 +f 25913/26494 25932/26513 25897/26478 +f 25933/26514 25901/26482 25899/26480 +f 25934/26515 25914/26495 25886/26467 +f 25888/26469 25914/26495 25919/26500 +f 25915/26496 25900/26481 25917/26498 +f 25886/26467 25915/26496 25934/26515 +f 25901/26482 25935/26516 25916/26497 +f 25916/26497 25917/26498 25887/26468 +f 25902/26483 25936/26517 25918/26499 +f 25919/26500 25937/26518 25902/26483 +f 36884/40395 25904/26485 25938/26519 +f 36885/40396 36884/40395 25938/26519 +f 25939/26520 36886/40397 36887/40398 +f 25940/26521 36888/40399 36889/40400 +f 25941/26522 36890/40401 36891/40402 +f 25889/26470 13682/26523 25920/26501 +f 25921/26502 13682/26523 25889/26470 +f 25942/26524 25921/26502 25903/26484 +f 25903/26484 25918/26499 25943/26525 +f 25920/26501 13580/26526 25904/26485 +f 25944/26527 25905/26486 25906/26487 +f 25922/26503 35966/38597 35967/38598 +f 25906/26487 25922/26503 25945/26528 +f 25923/26504 25891/26472 25946/26529 +f 25923/26504 25947/26530 25907/26488 +f 25946/26529 25891/26472 25924/26505 +f 25905/26486 25944/26527 25924/26505 +f 25948/26531 25892/26473 25925/26506 +f 25907/26488 25947/26530 25925/26506 +f 25892/26473 25948/26531 25908/26489 +f 25908/26489 25948/26531 25926/26507 +f 25926/26507 25909/26490 25893/26474 +f 25909/26490 25949/26532 25927/26508 +f 25910/26491 25950/26533 25911/26492 +f 25927/26508 25949/26532 25910/26491 +f 25928/26509 25911/26492 25950/26533 +f 25929/26510 25896/26477 25930/26511 +f 25929/26510 25933/26514 25899/26480 +f 25932/26513 25930/26511 25897/26478 +f 25931/26512 25912/26493 25951/26534 +f 25928/26509 25951/26534 25912/26493 +f 25931/26512 25932/26513 25913/26494 +f 25933/26514 25952/26535 25901/26482 +f 25953/26536 25914/26495 25934/26515 +f 25937/26518 25919/26500 25914/26495 +f 25917/26498 25954/26537 25915/26496 +f 25934/26515 25915/26496 25955/26538 +f 25935/26516 25901/26482 25956/26539 +f 25917/26498 25916/26497 25935/26516 +f 25902/26483 25937/26518 25936/26517 +f 25936/26517 25957/26540 25918/26499 +f 36885/40403 25938/26519 25939/26520 +f 36887/40404 36885/40403 25939/26520 +f 25938/26519 25904/26485 13580/26526 +f 36886/40405 25939/26520 25941/26522 +f 36891/40406 36886/40405 25941/26522 +f 36888/40407 25940/26521 25958/26541 +f 36892/40408 36888/40407 25958/26541 +f 36890/40409 25941/26522 25940/26521 +f 36889/40410 36890/40409 25940/26521 +f 13682/26523 13681/26542 25920/26501 +f 13682/26523 25921/26502 13479/26543 +f 25943/26525 25942/26524 25903/26484 +f 25942/26524 25959/26544 25921/26502 +f 25918/26499 25957/26540 25943/26525 +f 13681/26542 13580/26526 25920/26501 +f 25906/26487 25945/26528 25944/26527 +f 35968/38599 25945/26528 25922/26503 +f 35967/38600 35968/38599 25922/26503 +f 25946/26529 25947/26530 25923/26504 +f 25946/26529 25924/26505 25960/26545 +f 25960/26545 25924/26505 25944/26527 +f 25925/26506 14186/26546 25948/26531 +f 25925/26506 25947/26530 25961/26547 +f 25962/26548 25926/26507 25948/26531 +f 25909/26490 25926/26507 25949/26532 +f 13990/26549 25950/26533 25910/26491 +f 13990/26549 25910/26491 25949/26532 +f 25928/26509 25950/26533 25951/26534 +f 25930/26511 25963/26550 25929/26510 +f 25929/26510 25952/26535 25933/26514 +f 25932/26513 25963/26550 25930/26511 +f 25951/26534 25963/26550 25931/26512 +f 25931/26512 25963/26550 25932/26513 +f 25956/26539 25901/26482 25952/26535 +f 25937/26518 25914/26495 25953/26536 +f 25955/26538 25953/26536 25934/26515 +f 25915/26496 25954/26537 25955/26538 +f 25954/26537 25917/26498 25964/26551 +f 25935/26516 25956/26539 25964/26551 +f 25917/26498 25935/26516 25964/26551 +f 25965/26552 25936/26517 25937/26518 +f 25936/26517 25965/26552 25957/26540 +f 25939/26520 25938/26519 25966/26553 +f 13580/26526 13363/26554 25938/26519 +f 25967/26555 25941/26522 25939/26520 +f 25958/26541 36893/40411 36892/40412 +f 25940/26521 25967/26555 25958/26541 +f 25941/26522 25967/26555 25940/26521 +f 13479/26543 25921/26502 25959/26544 +f 25968/26556 25942/26524 25943/26525 +f 25942/26524 13259/26557 25959/26544 +f 25943/26525 25957/26540 25969/26558 +f 25944/26527 25945/26528 25970/26559 +f 35969/38601 25971/26560 25945/26528 +f 35968/38602 35969/38601 25945/26528 +f 25972/26561 35970/38603 35971/38604 +f 25946/26529 25961/26547 25947/26530 +f 25973/26562 25946/26529 25960/26545 +f 25944/26527 25974/26563 25960/26545 +f 25925/26506 25975/26564 14186/26546 +f 13991/26565 25948/26531 14186/26546 +f 25961/26547 25975/26564 25925/26506 +f 25926/26507 25962/26548 25949/26532 +f 25962/26548 25948/26531 13991/26565 +f 25950/26533 13990/26549 13853/26566 +f 25949/26532 25976/26567 13990/26549 +f 13853/26566 25951/26534 25950/26533 +f 25952/26535 25929/26510 25963/26550 +f 25951/26534 13679/26568 25963/26550 +f 25956/26539 25952/26535 13583/26569 +f 25953/26536 25965/26552 25937/26518 +f 25955/26538 25977/26570 25953/26536 +f 25977/26570 25955/26538 25954/26537 +f 25964/26551 25978/26571 25954/26537 +f 25964/26551 25956/26539 25978/26571 +f 25957/26540 25965/26552 25979/26572 +f 25938/26519 13012/26573 25966/26553 +f 25966/26553 25967/26555 25939/26520 +f 25938/26519 13363/26554 13012/26573 +f 25958/26541 36894/40413 36893/40414 +f 25980/26574 25958/26541 25967/26555 +f 25959/26544 13259/26557 13479/26543 +f 25968/26556 13259/26557 25942/26524 +f 25969/26558 25968/26556 25943/26525 +f 25979/26572 25969/26558 25957/26540 +f 25971/26560 25970/26559 25945/26528 +f 25944/26527 25970/26559 25974/26563 +f 35970/38605 25972/26561 25971/26560 +f 35969/38606 35970/38605 25971/26560 +f 25972/26561 35971/38607 35972/38608 +f 25946/26529 25973/26562 25961/26547 +f 25981/26575 25973/26562 25960/26545 +f 25974/26563 25981/26575 25960/26545 +f 25975/26564 25961/26547 25982/26576 +f 25962/26548 25976/26567 25949/26532 +f 13991/26565 25976/26567 25962/26548 +f 13990/26549 25976/26567 13991/26565 +f 13679/26568 25951/26534 13853/26566 +f 25963/26550 13679/26568 25952/26535 +f 25952/26535 13679/26568 13583/26569 +f 13583/26569 25978/26571 25956/26539 +f 25953/26536 25983/26577 25965/26552 +f 25983/26577 25953/26536 25977/26570 +f 25954/26537 25978/26571 25977/26570 +f 25965/26552 25984/26578 25979/26572 +f 25966/26553 13012/26573 25985/26579 +f 25967/26555 25966/26553 25985/26579 +f 25958/26541 36895/40415 36894/40416 +f 25967/26555 25986/26580 25980/26574 +f 25987/26581 25958/26541 25980/26574 +f 13016/26582 13259/26557 25968/26556 +f 25968/26556 25969/26558 25988/26583 +f 25979/26572 25984/26578 25969/26558 +f 25971/26560 25989/26584 25970/26559 +f 25970/26559 25990/26585 25974/26563 +f 25972/26561 25991/26586 25971/26560 +f 25972/26561 35972/38609 35973/38610 +f 25961/26547 25973/26562 25992/26587 +f 25973/26562 25981/26575 25993/26588 +f 25974/26563 25993/26588 25981/26575 +f 25992/26587 25982/26576 25961/26547 +f 25982/26576 25994/26589 25975/26564 +f 13583/26569 25995/26590 25978/26571 +f 25983/26577 25984/26578 25965/26552 +f 25977/26570 25996/26591 25983/26577 +f 25978/26571 25995/26590 25977/26570 +f 13012/26573 12746/26592 25985/26579 +f 25986/26580 25967/26555 25985/26579 +f 36895/40417 25958/26541 25997/26593 +f 36896/40418 36895/40417 25997/26593 +f 25980/26574 25986/26580 25998/26594 +f 25958/26541 25987/26581 25997/26593 +f 25987/26581 25980/26574 12377/26595 +f 13016/26582 25968/26556 13146/26596 +f 25988/26583 25969/26558 25984/26578 +f 25968/26556 25988/26583 13146/26596 +f 25971/26560 25999/26597 25989/26584 +f 25989/26584 26000/26598 25970/26559 +f 25970/26559 26001/26599 25990/26585 +f 25990/26585 26002/26600 25974/26563 +f 35974/38611 25991/26586 25972/26561 +f 35973/38612 35974/38611 25972/26561 +f 25999/26597 25971/26560 25991/26586 +f 25993/26588 25992/26587 25973/26562 +f 25993/26588 25974/26563 26002/26600 +f 25992/26587 26003/26601 25982/26576 +f 25994/26589 25982/26576 26003/26601 +f 25995/26590 13583/26569 13145/26602 +f 25984/26578 25983/26577 26004/26603 +f 25995/26590 25996/26591 25977/26570 +f 26004/26603 25983/26577 25996/26591 +f 12746/26592 25986/26580 25985/26579 +f 12259/26604 36787/40419 36897/40420 +f 36896/40421 25997/26593 12259/26604 +f 36897/40422 36896/40421 12259/26604 +f 12626/26605 25998/26594 25986/26580 +f 25998/26594 12377/26595 25980/26574 +f 25987/26581 12374/26606 25997/26593 +f 12377/26595 12374/26606 25987/26581 +f 25988/26583 25984/26578 13146/26596 +f 26005/26607 25989/26584 25999/26597 +f 25989/26584 26005/26607 26000/26598 +f 26006/26608 25970/26559 26000/26598 +f 26006/26608 26001/26599 25970/26559 +f 25990/26585 26001/26599 26007/26609 +f 26002/26600 25990/26585 26008/26610 +f 25991/26586 35974/38613 35975/38614 +f 25991/26586 26009/26611 25999/26597 +f 25992/26587 25993/26588 26008/26610 +f 26008/26610 25993/26588 26002/26600 +f 26003/26601 25992/26587 26008/26610 +f 13145/26602 25996/26591 25995/26590 +f 25984/26578 26004/26603 13146/26596 +f 25996/26591 13015/26612 26004/26603 +f 25986/26580 12746/26592 12626/26605 +f 25997/26593 12486/26613 12259/26604 +f 25998/26594 12626/26605 12263/26614 +f 12377/26595 25998/26594 12263/26614 +f 12374/26606 12486/26613 25997/26593 +f 25999/26597 26010/26615 26005/26607 +f 26006/26608 26000/26598 26005/26607 +f 26001/26599 26006/26608 26007/26609 +f 25990/26585 26007/26609 26011/26616 +f 26011/26616 26008/26610 25990/26585 +f 35976/38615 26012/26617 25991/26586 +f 35975/38616 35976/38615 25991/26586 +f 26010/26615 25999/26597 26009/26611 +f 26009/26611 25991/26586 26012/26617 +f 26003/26601 26008/26610 26011/26616 +f 25996/26591 13145/26602 13015/26612 +f 26004/26603 13015/26612 13146/26596 +f 26013/26618 26005/26607 26010/26615 +f 26014/26619 26006/26608 26005/26607 +f 26007/26609 26006/26608 26015/26620 +f 26007/26609 26016/26621 26011/26616 +f 35977/38617 26017/26622 26012/26617 +f 35976/38618 35977/38617 26012/26617 +f 26010/26615 26009/26611 26018/26623 +f 26012/26617 26018/26623 26009/26611 +f 26017/26622 35977/38619 35978/38620 +f 26005/26607 26013/26618 26019/26624 +f 26010/26615 26020/26625 26013/26618 +f 26015/26620 26006/26608 26014/26619 +f 26014/26619 26005/26607 26019/26624 +f 26007/26609 26015/26620 26016/26621 +f 26017/26622 26021/26626 26012/26617 +f 26022/26627 26010/26615 26018/26623 +f 26018/26623 26012/26617 26023/26628 +f 26017/26622 35978/38621 35979/38622 +f 26013/26618 26024/26629 26019/26624 +f 26020/26625 26010/26615 26025/26630 +f 26020/26625 26024/26629 26013/26618 +f 26012/26617 26021/26626 26023/26628 +f 35980/38623 26021/26626 26017/26622 +f 35979/38624 35980/38623 26017/26622 +f 26022/26627 26025/26630 26010/26615 +f 26026/26631 26022/26627 26018/26623 +f 26023/26628 26027/26632 26018/26623 +f 26021/26626 35980/38625 35981/38626 +f 26025/26630 26028/26633 26020/26625 +f 26021/26626 26027/26632 26023/26628 +f 26025/26630 26022/26627 26029/26634 +f 26018/26623 26027/26632 26026/26631 +f 26022/26627 26026/26631 26029/26634 +f 35982/38627 26030/26635 26021/26626 +f 35981/38628 35982/38627 26021/26626 +f 26029/26634 26028/26633 26025/26630 +f 26027/26632 26021/26626 26030/26635 +f 26026/26631 26027/26632 26031/26636 +f 26029/26634 26026/26631 26032/26637 +f 26033/26638 35983/38629 35984/38630 +f 26033/26638 35984/38631 35985/38632 +f 35983/38633 26033/26638 26030/26635 +f 35982/38634 35983/38633 26030/26635 +f 26027/26632 26030/26635 26034/26639 +f 26032/26637 26026/26631 26031/26636 +f 26027/26632 26034/26639 26031/26636 +f 35986/38635 26035/26640 26033/26638 +f 35985/38636 35986/38635 26033/26638 +f 26033/26638 26034/26639 26030/26635 +f 26031/26636 26036/26641 26032/26637 +f 26034/26639 26037/26642 26031/26636 +f 26033/26638 26035/26640 26038/26643 +f 35987/38637 26039/26644 26035/26640 +f 35986/38638 35987/38637 26035/26640 +f 6400/26645 35988/38639 35989/38640 +f 26034/26639 26033/26638 26038/26643 +f 26031/26636 26037/26642 26036/26641 +f 26037/26642 26034/26639 26038/26643 +f 26039/26644 6307/26646 26035/26640 +f 35988/38641 6400/26645 26039/26644 +f 35987/38642 35988/38641 26039/26644 +f 6400/26645 35989/38643 35990/38644 +f 26039/26644 6400/26645 6307/26646 +f 26035/26640 6307/26646 6216/26647 +f 35991/38645 6483/26648 6400/26645 +f 35990/38646 35991/38645 6400/26645 +f 6483/26648 35991/38647 35992/38648 +f 35993/38649 6401/26649 6483/26648 +f 35992/38650 35993/38649 6483/26648 +f 11353/26650 36898/40423 36772/40424 +f 6401/26649 35993/38651 35880/38652 +f 11353/26650 36899/40425 36898/40426 +f 11353/26650 36900/40427 36899/40428 +f 36900/40429 11353/26650 11034/26651 +f 36901/40430 36900/40429 11034/26651 +f 26040/26652 36902/40431 36903/40432 +f 36901/40433 11034/26651 26040/26652 +f 36903/40434 36901/40433 26040/26652 +f 26041/26653 36904/40435 36905/40436 +f 36902/40437 26040/26652 26042/26654 +f 36906/40438 36902/40437 26042/26654 +f 26040/26652 11034/26651 10821/26655 +f 36904/40439 26041/26653 26043/26656 +f 36907/40440 36904/40439 26043/26656 +f 36908/40441 26044/26657 26041/26653 +f 36905/40442 36908/40441 26041/26653 +f 26043/26656 36909/40443 36907/40444 +f 26043/26656 36910/40445 36909/40446 +f 10717/26658 26042/26654 26040/26652 +f 36906/40447 26042/26654 26044/26657 +f 36908/40448 36906/40447 26044/26657 +f 26040/26652 10821/26655 10717/26658 +f 26041/26653 26045/26659 26043/26656 +f 10508/26660 26041/26653 26044/26657 +f 26043/26656 36911/40449 36910/40450 +f 26046/26661 36912/40451 36913/40452 +f 26042/26654 10717/26658 10514/26662 +f 26044/26657 26042/26654 26047/26663 +f 10508/26660 26045/26659 26041/26653 +f 26043/26656 26045/26659 26048/26664 +f 26044/26657 10419/26665 10508/26660 +f 36911/40453 26043/26656 26048/26664 +f 36914/40454 36911/40453 26048/26664 +f 36915/40455 26049/26666 26046/26661 +f 36913/40456 36915/40455 26046/26661 +f 26046/26661 36916/40457 36912/40458 +f 26047/26663 26042/26654 10514/26662 +f 26050/26667 26044/26657 26047/26663 +f 26045/26659 10508/26660 10420/26668 +f 26045/26659 10607/26669 26048/26664 +f 10419/26665 26044/26657 26050/26667 +f 36914/40459 26048/26664 26049/26666 +f 36915/40460 36914/40459 26049/26666 +f 26046/26661 26049/26666 10820/26670 +f 36916/40461 26046/26661 10819/26671 +f 36917/40462 36916/40461 10819/26671 +f 10514/26662 10418/26672 26047/26663 +f 26047/26663 10418/26672 26050/26667 +f 10607/26669 26045/26659 10420/26668 +f 26048/26664 10607/26669 26049/26666 +f 10419/26665 26050/26667 10418/26672 +f 10820/26670 26049/26666 10714/26673 +f 10712/26674 26046/26661 10820/26670 +f 10819/26671 36851/40463 36917/40464 +f 10712/26674 10819/26671 26046/26661 +f 10714/26673 26049/26666 10607/26669 +f 26051/26675 26052/26676 26053/26677 +f 26052/26676 26051/26675 26054/26678 +f 26055/26679 26053/26677 26052/26676 +f 26051/26675 26053/26677 26056/26680 +f 26054/26678 26057/26681 26052/26676 +f 26051/26675 26056/26680 26054/26678 +f 26055/26679 26052/26676 26058/26682 +f 26059/26683 26053/26677 26055/26679 +f 26060/26684 26056/26680 26053/26677 +f 26057/26681 26054/26678 26061/26685 +f 26052/26676 26057/26681 26058/26682 +f 26062/26686 26054/26678 26056/26680 +f 26058/26682 26063/26687 26055/26679 +f 26053/26677 26059/26683 26064/26688 +f 26055/26679 26065/26689 26059/26683 +f 26060/26684 26066/26690 26056/26680 +f 26067/26691 26060/26684 26053/26677 +f 26068/26692 26061/26685 26054/26678 +f 26057/26681 26061/26685 26058/26682 +f 26062/26686 26056/26680 26066/26690 +f 26054/26678 26062/26686 26068/26692 +f 26055/26679 26063/26687 26069/26693 +f 26058/26682 26070/26694 26063/26687 +f 26059/26683 26071/26695 26064/26688 +f 26064/26688 26067/26691 26053/26677 +f 26069/26693 26065/26689 26055/26679 +f 26065/26689 26072/26696 26059/26683 +f 26073/26697 26066/26690 26060/26684 +f 26074/26698 26060/26684 26067/26691 +f 26061/26685 26068/26692 26075/26699 +f 26070/26694 26058/26682 26061/26685 +f 26062/26686 26066/26690 26068/26692 +f 26063/26687 26076/26700 26069/26693 +f 26076/26700 26063/26687 26070/26694 +f 26071/26695 26059/26683 26077/26701 +f 26071/26695 26078/26702 26064/26688 +f 26078/26702 26067/26691 26064/26688 +f 26069/26693 26079/26703 26065/26689 +f 26072/26696 26077/26701 26059/26683 +f 26080/26704 26072/26696 26065/26689 +f 26073/26697 26081/26705 26066/26690 +f 26073/26697 26060/26684 26082/26706 +f 26082/26706 26060/26684 26074/26698 +f 26067/26691 26083/26707 26074/26698 +f 26061/26685 26075/26699 22956/26708 +f 26068/26692 26081/26705 26075/26699 +f 22654/26709 26070/26694 26061/26685 +f 26066/26690 26081/26705 26068/26692 +f 26076/26700 26084/26710 26069/26693 +f 22712/26711 26076/26700 26070/26694 +f 26071/26695 26077/26701 26085/26712 +f 26086/26713 26078/26702 26071/26695 +f 26067/26691 26078/26702 26087/26714 +f 26079/26703 26080/26704 26065/26689 +f 26069/26693 26088/26715 26079/26703 +f 26089/26716 26077/26701 26072/26696 +f 26090/26717 26072/26696 26080/26704 +f 26073/26697 26091/26718 26081/26705 +f 26092/26719 26073/26697 26082/26706 +f 26074/26698 26093/26720 26082/26706 +f 26067/26691 26087/26714 26083/26707 +f 26094/26721 26074/26698 26083/26707 +f 23005/26722 22956/26708 26075/26699 +f 22956/26708 22766/26723 26061/26685 +f 26075/26699 26081/26705 26095/26724 +f 26070/26694 22654/26709 22712/26711 +f 26061/26685 22766/26723 22654/26709 +f 26069/26693 26084/26710 26096/26725 +f 26076/26700 22818/26726 26084/26710 +f 26076/26700 22712/26711 22818/26726 +f 26089/26716 26085/26712 26077/26701 +f 26085/26712 26086/26713 26071/26695 +f 26086/26713 26097/26727 26078/26702 +f 26087/26714 26078/26702 26098/26728 +f 26080/26704 26079/26703 26099/26729 +f 26088/26715 26069/26693 26096/26725 +f 26099/26729 26079/26703 26088/26715 +f 26090/26717 26089/26716 26072/26696 +f 26090/26717 26080/26704 26099/26729 +f 26081/26705 26091/26718 26100/26730 +f 26091/26718 26073/26697 26092/26719 +f 26092/26719 26082/26706 26093/26720 +f 26074/26698 26101/26731 26093/26720 +f 26087/26714 26102/26732 26083/26707 +f 26074/26698 26094/26721 26101/26731 +f 26083/26707 26103/26733 26094/26721 +f 26095/26724 23005/26722 26075/26699 +f 26081/26705 26100/26730 26095/26724 +f 26084/26710 22850/26734 26096/26725 +f 26104/26735 26084/26710 22818/26726 +f 26105/26736 26085/26712 26089/26716 +f 26086/26713 26085/26712 26106/26737 +f 26078/26702 26097/26727 26098/26728 +f 26086/26713 26106/26737 26097/26727 +f 26107/26738 26087/26714 26098/26728 +f 26096/26725 26108/26739 26088/26715 +f 26099/26729 26088/26715 26109/26740 +f 26105/26736 26089/26716 26090/26717 +f 26099/26729 26110/26741 26090/26717 +f 26091/26718 26111/26742 26100/26730 +f 26112/26743 26091/26718 26092/26719 +f 26093/26720 26112/26743 26092/26719 +f 26093/26720 26101/26731 26112/26743 +f 26087/26714 26113/26744 26102/26732 +f 26102/26732 26103/26733 26083/26707 +f 26094/26721 26103/26733 26101/26731 +f 26114/26745 23005/26722 26095/26724 +f 26095/26724 26100/26730 26114/26745 +f 26115/26746 22850/26734 26084/26710 +f 22849/26747 26096/26725 22850/26734 +f 26104/26735 26115/26746 26084/26710 +f 26104/26735 22818/26726 22899/26748 +f 26106/26737 26085/26712 26105/26736 +f 26098/26728 26097/26727 26116/26749 +f 26117/26750 26097/26727 26106/26737 +f 26118/26751 26087/26714 26107/26738 +f 26098/26728 26116/26749 26107/26738 +f 26096/26725 26119/26752 26108/26739 +f 26109/26740 26088/26715 26108/26739 +f 26109/26740 26110/26741 26099/26729 +f 26105/26736 26090/26717 26110/26741 +f 26112/26743 26111/26742 26091/26718 +f 26111/26742 26114/26745 26100/26730 +f 26101/26731 26120/26753 26112/26743 +f 26118/26751 26113/26744 26087/26714 +f 26102/26732 26113/26744 26121/26754 +f 26103/26733 26102/26732 26122/26755 +f 26103/26733 26123/26756 26101/26731 +f 22850/26734 26115/26746 22922/26757 +f 26096/26725 22849/26747 26119/26752 +f 26115/26746 26104/26735 26124/26758 +f 26124/26758 26104/26735 22899/26748 +f 26106/26737 26105/26736 26125/26759 +f 26116/26749 26097/26727 26117/26750 +f 26117/26750 26106/26737 26125/26759 +f 26107/26738 26126/26760 26118/26751 +f 26126/26760 26107/26738 26116/26749 +f 26119/26752 26127/26761 26108/26739 +f 26127/26761 26109/26740 26108/26739 +f 26109/26740 26128/26762 26110/26741 +f 26105/26736 26110/26741 26125/26759 +f 26112/26743 26129/26763 26111/26742 +f 26111/26742 26130/26764 26114/26745 +f 26112/26743 26120/26753 26129/26763 +f 26101/26731 26131/26765 26120/26753 +f 26132/26766 26113/26744 26118/26751 +f 26121/26754 26113/26744 26133/26767 +f 26134/26768 26102/26732 26121/26754 +f 26123/26756 26103/26733 26122/26755 +f 26134/26768 26122/26755 26102/26732 +f 26101/26731 26123/26756 26131/26765 +f 26115/26746 22923/26769 22922/26757 +f 22849/26747 26135/26770 26119/26752 +f 26124/26758 22923/26769 26115/26746 +f 22923/26769 26124/26758 22899/26748 +f 26117/26750 26126/26760 26116/26749 +f 26125/26759 26136/26771 26117/26750 +f 26126/26760 26132/26766 26118/26751 +f 26137/26772 26127/26761 26119/26752 +f 26109/26740 26127/26761 26138/26773 +f 26128/26762 26109/26740 26138/26773 +f 26139/26774 26110/26741 26128/26762 +f 26140/26775 26125/26759 26110/26741 +f 26129/26763 26141/26776 26111/26742 +f 26111/26742 26141/26776 26130/26764 +f 26142/26777 26129/26763 26120/26753 +f 26142/26777 26120/26753 26131/26765 +f 26113/26744 26132/26766 26133/26767 +f 26143/26778 26121/26754 26133/26767 +f 26121/26754 26143/26778 26134/26768 +f 26123/26756 26122/26755 26144/26779 +f 26122/26755 26134/26768 26144/26779 +f 26123/26756 26144/26779 26131/26765 +f 26135/26770 22849/26747 22800/26780 +f 26119/26752 26135/26770 26137/26772 +f 26117/26750 26145/26781 26126/26760 +f 26117/26750 26136/26771 26146/26782 +f 26125/26759 26140/26775 26136/26771 +f 26147/26783 26132/26766 26126/26760 +f 26127/26761 26137/26772 26148/26784 +f 26148/26784 26138/26773 26127/26761 +f 26138/26773 26149/26785 26128/26762 +f 26128/26762 26149/26785 26139/26774 +f 26110/26741 26139/26774 26140/26775 +f 26129/26763 26150/26786 26141/26776 +f 26151/26787 26130/26764 26141/26776 +f 26129/26763 26142/26777 26150/26786 +f 26131/26765 26152/26788 26142/26777 +f 26153/26789 26133/26767 26132/26766 +f 26133/26767 21193/26790 26143/26778 +f 26154/26791 26134/26768 26143/26778 +f 26144/26779 26134/26768 26154/26791 +f 26144/26779 26155/26792 26131/26765 +f 26156/26793 26135/26770 22800/26780 +f 26137/26772 26135/26770 26157/26794 +f 26158/26795 26126/26760 26145/26781 +f 26145/26781 26117/26750 26159/26796 +f 26146/26782 26136/26771 26160/26797 +f 26159/26796 26117/26750 26146/26782 +f 26136/26771 26140/26775 26160/26797 +f 26147/26783 21202/26798 26132/26766 +f 26161/26799 26147/26783 26126/26760 +f 26157/26794 26148/26784 26137/26772 +f 26162/26800 26138/26773 26148/26784 +f 26149/26785 26138/26773 26163/26801 +f 26164/26802 26139/26774 26149/26785 +f 26165/26803 26140/26775 26139/26774 +f 26150/26786 26166/26804 26141/26776 +f 26167/26805 26130/26764 26151/26787 +f 26166/26804 26151/26787 26141/26776 +f 26142/26777 26168/26806 26150/26786 +f 26168/26806 26142/26777 26152/26788 +f 26152/26788 26131/26765 26155/26792 +f 21193/26790 26133/26767 26153/26789 +f 21202/26798 26153/26789 26132/26766 +f 26143/26778 21193/26790 26169/26807 +f 26154/26791 26143/26778 26169/26807 +f 26170/26808 26144/26779 26154/26791 +f 26155/26792 26144/26779 26171/26809 +f 26156/26793 22800/26780 22851/26810 +f 26135/26770 26156/26793 26157/26794 +f 26161/26799 26126/26760 26158/26795 +f 26172/26811 26158/26795 26145/26781 +f 26159/26796 26173/26812 26145/26781 +f 26174/26813 26146/26782 26160/26797 +f 26174/26813 26159/26796 26146/26782 +f 26140/26775 26175/26814 26160/26797 +f 21202/26798 26147/26783 21206/26815 +f 21206/26815 26147/26783 26161/26799 +f 26157/26794 26162/26800 26148/26784 +f 26163/26801 26138/26773 26162/26800 +f 26163/26801 26176/26816 26149/26785 +f 26164/26802 26149/26785 26177/26817 +f 26164/26802 26165/26803 26139/26774 +f 26178/26818 26140/26775 26165/26803 +f 26179/26819 26166/26804 26150/26786 +f 26167/26805 26151/26787 26166/26804 +f 26152/26788 26180/26820 26168/26806 +f 26152/26788 26155/26792 26181/26821 +f 21202/26798 21193/26790 26153/26789 +f 21193/26790 21179/26822 26169/26807 +f 26169/26807 26170/26808 26154/26791 +f 26170/26808 26171/26809 26144/26779 +f 26155/26792 26171/26809 26181/26821 +f 22851/26810 22802/26823 26156/26793 +f 26182/26824 26157/26794 26156/26793 +f 21220/26825 26161/26799 26158/26795 +f 26172/26811 26183/26826 26158/26795 +f 26145/26781 26173/26812 26172/26811 +f 26173/26812 26159/26796 26174/26813 +f 26175/26814 26174/26813 26160/26797 +f 26175/26814 26140/26775 26178/26818 +f 21220/26825 21206/26815 26161/26799 +f 26162/26800 26157/26794 26182/26824 +f 26184/26827 26163/26801 26162/26800 +f 26176/26816 26163/26801 26184/26827 +f 26149/26785 26176/26816 26177/26817 +f 26164/26802 26177/26817 26185/26828 +f 26185/26828 26165/26803 26164/26802 +f 26165/26803 26185/26828 26178/26818 +f 26179/26819 26167/26805 26166/26804 +f 26180/26820 26152/26788 26181/26821 +f 26169/26807 21179/26822 21171/26829 +f 26169/26807 26186/26830 26170/26808 +f 26187/26831 26171/26809 26170/26808 +f 26188/26832 26181/26821 26171/26809 +f 22802/26823 26189/26833 26156/26793 +f 26156/26793 26189/26833 26182/26824 +f 26183/26826 21220/26825 26158/26795 +f 26172/26811 26190/26834 26183/26826 +f 26191/26835 26172/26811 26173/26812 +f 26191/26835 26173/26812 26174/26813 +f 26174/26813 26175/26814 26191/26835 +f 26192/26836 26175/26814 26178/26818 +f 26162/26800 26182/26824 26193/26837 +f 26184/26827 26162/26800 26193/26837 +f 26184/26827 26194/26838 26176/26816 +f 26195/26839 26177/26817 26176/26816 +f 26185/26828 26177/26817 26195/26839 +f 26178/26818 26185/26828 26196/26840 +f 26181/26821 26188/26832 26180/26820 +f 21171/26829 26186/26830 26169/26807 +f 26170/26808 26186/26830 26197/26841 +f 26187/26831 26188/26832 26171/26809 +f 26187/26831 26170/26808 26197/26841 +f 22803/26842 26189/26833 22802/26823 +f 26182/26824 26189/26833 26193/26837 +f 21220/26825 26183/26826 21226/26843 +f 26190/26834 26198/26844 26183/26826 +f 26172/26811 26191/26835 26190/26834 +f 26175/26814 26199/26845 26191/26835 +f 26192/26836 26199/26845 26175/26814 +f 26178/26818 26200/26846 26192/26836 +f 26184/26827 26193/26837 26201/26847 +f 26195/26839 26176/26816 26194/26838 +f 26194/26838 26184/26827 26202/26848 +f 26195/26839 26196/26840 26185/26828 +f 26178/26818 26196/26840 26203/26849 +f 26189/26833 22803/26842 26204/26850 +f 26189/26833 26204/26850 26193/26837 +f 26183/26826 26205/26851 21226/26843 +f 26198/26844 26190/26834 26191/26835 +f 26198/26844 26206/26852 26183/26826 +f 26199/26845 26198/26844 26191/26835 +f 26199/26845 26192/26836 26207/26853 +f 26208/26854 26192/26836 26200/26846 +f 26178/26818 26203/26849 26200/26846 +f 26193/26837 26209/26855 26201/26847 +f 26201/26847 26202/26848 26184/26827 +f 26210/26856 26195/26839 26194/26838 +f 26202/26848 26211/26857 26194/26838 +f 26212/26858 26196/26840 26195/26839 +f 26196/26840 26212/26858 26203/26849 +f 22803/26842 22804/26859 26204/26850 +f 26193/26837 26204/26850 26209/26855 +f 26183/26826 26206/26852 26205/26851 +f 26205/26851 21219/26860 21226/26843 +f 26206/26852 26198/26844 26207/26853 +f 26199/26845 26207/26853 26198/26844 +f 26213/26861 26207/26853 26192/26836 +f 26208/26854 26200/26846 26214/26862 +f 26213/26861 26192/26836 26208/26854 +f 26200/26846 26203/26849 26210/26856 +f 26215/26863 26201/26847 26209/26855 +f 26216/26864 26202/26848 26201/26847 +f 26194/26838 26211/26857 26210/26856 +f 26210/26856 26212/26858 26195/26839 +f 26202/26848 26216/26864 26211/26857 +f 26203/26849 26212/26858 26210/26856 +f 26209/26855 26204/26850 22804/26859 +f 26217/26865 26205/26851 26206/26852 +f 26218/26866 21219/26860 26205/26851 +f 26206/26852 26207/26853 26217/26865 +f 26213/26861 26219/26867 26207/26853 +f 26211/26857 26214/26862 26200/26846 +f 26214/26862 26220/26868 26208/26854 +f 26208/26854 26221/26869 26213/26861 +f 26211/26857 26200/26846 26210/26856 +f 26201/26847 26215/26863 26216/26864 +f 22805/26870 26215/26863 26209/26855 +f 26222/26871 26211/26857 26216/26864 +f 26209/26855 22804/26859 22749/26872 +f 26205/26851 26217/26865 26218/26866 +f 26218/26866 21225/26873 21219/26860 +f 26207/26853 26219/26867 26217/26865 +f 26223/26874 26219/26867 26213/26861 +f 26211/26857 26224/26875 26214/26862 +f 26214/26862 26224/26875 26220/26868 +f 26220/26868 26225/26876 26208/26854 +f 26223/26874 26213/26861 26221/26869 +f 26208/26854 26226/26877 26221/26869 +f 26216/26864 26215/26863 26227/26878 +f 22805/26870 26228/26879 26215/26863 +f 22749/26872 22805/26870 26209/26855 +f 26211/26857 26222/26871 26229/26880 +f 26227/26878 26222/26871 26216/26864 +f 26219/26867 26218/26866 26217/26865 +f 21225/26873 26218/26866 26219/26867 +f 26219/26867 26223/26874 26230/26881 +f 26224/26875 26211/26857 26229/26880 +f 26220/26868 26224/26875 26231/26882 +f 26225/26876 26226/26877 26208/26854 +f 26225/26876 26220/26868 26231/26882 +f 26232/26883 26223/26874 26221/26869 +f 26232/26883 26221/26869 26226/26877 +f 26233/26884 26227/26878 26215/26863 +f 26228/26879 22805/26870 22696/26885 +f 26215/26863 26228/26879 26233/26884 +f 26222/26871 26234/26886 26229/26880 +f 26227/26878 26234/26886 26222/26871 +f 21225/26873 26219/26867 26235/26887 +f 26236/26888 26219/26867 26230/26881 +f 26237/26889 26230/26881 26223/26874 +f 26234/26886 26224/26875 26229/26880 +f 26238/26890 26231/26882 26224/26875 +f 26239/26891 26226/26877 26225/26876 +f 26225/26876 26231/26882 26239/26891 +f 26232/26883 26237/26889 26223/26874 +f 26240/26892 26232/26883 26226/26877 +f 26227/26878 26233/26884 26234/26886 +f 22696/26885 26241/26893 26228/26879 +f 26242/26894 26233/26884 26228/26879 +f 26219/26867 26236/26888 26235/26887 +f 21225/26873 26235/26887 21212/26895 +f 26243/26896 26236/26888 26230/26881 +f 26230/26881 26237/26889 26244/26897 +f 26245/26898 26224/26875 26234/26886 +f 26238/26890 26246/26899 26231/26882 +f 26224/26875 26245/26898 26238/26890 +f 26239/26891 26240/26892 26226/26877 +f 26239/26891 26231/26882 26247/26900 +f 26240/26892 26237/26889 26232/26883 +f 26234/26886 26233/26884 26245/26898 +f 26228/26879 26241/26893 26242/26894 +f 26248/26901 26241/26893 22696/26885 +f 26242/26894 26249/26902 26233/26884 +f 26236/26888 26250/26903 26235/26887 +f 21212/26895 26235/26887 26250/26903 +f 26243/26896 26250/26903 26236/26888 +f 26243/26896 26230/26881 21224/26904 +f 26237/26889 26251/26905 26244/26897 +f 21224/26904 26230/26881 26244/26897 +f 26238/26890 26252/26906 26246/26899 +f 26247/26900 26231/26882 26246/26899 +f 26238/26890 26245/26898 26253/26907 +f 26240/26892 26239/26891 26254/26908 +f 26255/26909 26239/26891 26247/26900 +f 26240/26892 26256/26910 26237/26889 +f 26245/26898 26233/26884 26249/26902 +f 26242/26894 26241/26893 26257/26911 +f 26258/26912 26241/26893 26248/26901 +f 22585/26913 26248/26901 22696/26885 +f 26242/26894 26259/26914 26249/26902 +f 26250/26903 21224/26904 21212/26895 +f 26243/26896 21224/26904 26250/26903 +f 26244/26897 26251/26905 21228/26915 +f 26237/26889 26256/26910 26251/26905 +f 21224/26904 26244/26897 21228/26915 +f 26252/26906 26238/26890 26260/26916 +f 26246/26899 26252/26906 26247/26900 +f 26253/26907 26245/26898 26261/26917 +f 26260/26916 26238/26890 26253/26907 +f 26256/26910 26240/26892 26254/26908 +f 26254/26908 26239/26891 26262/26918 +f 26255/26909 26247/26900 26263/26919 +f 26262/26918 26239/26891 26255/26909 +f 26249/26902 26261/26917 26245/26898 +f 26257/26911 26259/26914 26242/26894 +f 26258/26912 26257/26911 26241/26893 +f 26258/26912 26248/26901 26264/26920 +f 26248/26901 22585/26913 26264/26920 +f 26249/26902 26259/26914 26265/26921 +f 26251/26905 21229/26922 21228/26915 +f 26251/26905 26256/26910 21229/26922 +f 26252/26906 26260/26916 26266/26923 +f 26247/26900 26252/26906 26263/26919 +f 26267/26924 26253/26907 26261/26917 +f 26253/26907 26268/26925 26260/26916 +f 26254/26908 26269/26926 26256/26910 +f 26270/26927 26254/26908 26262/26918 +f 26263/26919 26271/26928 26255/26909 +f 26262/26918 26255/26909 26271/26928 +f 26265/26921 26261/26917 26249/26902 +f 26259/26914 26257/26911 26265/26921 +f 26272/26929 26257/26911 26258/26912 +f 26273/26930 26258/26912 26264/26920 +f 22585/26913 22475/26931 26264/26920 +f 26269/26926 21229/26922 26256/26910 +f 26252/26906 26266/26923 26263/26919 +f 3105/26932 26266/26923 26260/26916 +f 26268/26925 26253/26907 26267/26924 +f 26267/26924 26261/26917 26274/26933 +f 26260/26916 26268/26925 3105/26932 +f 26269/26926 26254/26908 26270/26927 +f 26275/26934 26270/26927 26262/26918 +f 2737/26935 26271/26928 26263/26919 +f 26275/26934 26262/26918 26271/26928 +f 26276/26936 26261/26917 26265/26921 +f 26257/26911 26272/26929 26265/26921 +f 26272/26929 26258/26912 26277/26937 +f 26277/26937 26258/26912 26273/26930 +f 26264/26920 26278/26938 26273/26930 +f 22475/26931 26278/26938 26264/26920 +f 2461/26939 21229/26922 26269/26926 +f 2737/26935 26263/26919 26266/26923 +f 3105/26932 2994/26940 26266/26923 +f 26267/26924 26279/26941 26268/26925 +f 26276/26936 26274/26933 26261/26917 +f 26274/26933 26280/26942 26267/26924 +f 3105/26932 26268/26925 3172/26943 +f 26269/26926 26270/26927 2616/26944 +f 26275/26934 2616/26944 26270/26927 +f 26271/26928 2737/26935 2738/26945 +f 26275/26934 26271/26928 2738/26945 +f 26276/26936 26265/26921 26281/26946 +f 26281/26946 26265/26921 26272/26929 +f 26272/26929 26277/26937 26281/26946 +f 26277/26937 26273/26930 26282/26947 +f 26273/26930 26278/26938 26283/26948 +f 26278/26938 22475/26931 26284/26949 +f 2461/26939 26269/26926 2616/26944 +f 2737/26935 26266/26923 2994/26940 +f 26268/26925 26279/26941 3172/26943 +f 26267/26924 26285/26950 26279/26941 +f 26276/26936 26286/26951 26274/26933 +f 26280/26942 26285/26950 26267/26924 +f 26287/26952 26280/26942 26274/26933 +f 2616/26944 26275/26934 2738/26945 +f 26281/26946 26288/26953 26276/26936 +f 26277/26937 26288/26953 26281/26946 +f 26289/26954 26282/26947 26273/26930 +f 26277/26937 26282/26947 26288/26953 +f 26283/26948 26278/26938 26284/26949 +f 26273/26930 26283/26948 26289/26954 +f 22255/26955 26284/26949 22475/26931 +f 26279/26941 26290/26956 3172/26943 +f 26285/26950 26290/26956 26279/26941 +f 26286/26951 26276/26936 26288/26953 +f 26274/26933 26286/26951 26287/26952 +f 26285/26950 26280/26942 26291/26957 +f 26291/26957 26280/26942 26287/26952 +f 26282/26947 26289/26954 26292/26958 +f 26292/26958 26288/26953 26282/26947 +f 26284/26949 26293/26959 26283/26948 +f 26283/26948 26293/26959 26289/26954 +f 22255/26955 26294/26960 26284/26949 +f 3171/26961 3172/26943 26290/26956 +f 26295/26962 26290/26956 26285/26950 +f 26286/26951 26288/26953 26296/26963 +f 26287/26952 26286/26951 26297/26964 +f 26295/26962 26285/26950 26291/26957 +f 26298/26965 26291/26957 26287/26952 +f 26292/26958 26289/26954 26293/26959 +f 26299/26966 26288/26953 26292/26958 +f 26293/26959 26284/26949 26300/26967 +f 22133/26968 26294/26960 22255/26955 +f 26284/26949 26294/26960 26301/26969 +f 26290/26956 26302/26970 3171/26961 +f 26303/26971 26290/26956 26295/26962 +f 26286/26951 26296/26963 26304/26972 +f 26296/26963 26288/26953 26299/26966 +f 26304/26972 26297/26964 26286/26951 +f 26305/26973 26287/26952 26297/26964 +f 26298/26965 26295/26962 26291/26957 +f 26287/26952 26305/26973 26298/26965 +f 26292/26958 26293/26959 26306/26974 +f 26306/26974 26299/26966 26292/26958 +f 26307/26975 26293/26959 26300/26967 +f 22251/26976 26300/26967 26284/26949 +f 26308/26977 26294/26960 22133/26968 +f 26308/26977 26301/26969 26294/26960 +f 26308/26977 26284/26949 26301/26969 +f 3171/26961 26302/26970 3135/26978 +f 26302/26970 26290/26956 26303/26971 +f 26303/26971 26295/26962 26309/26979 +f 26310/26980 26304/26972 26296/26963 +f 26310/26980 26296/26963 26299/26966 +f 26311/26981 26297/26964 26304/26972 +f 26297/26964 26311/26981 26305/26973 +f 26309/26979 26295/26962 26298/26965 +f 26298/26965 26305/26973 26312/26982 +f 26293/26959 26307/26975 26306/26974 +f 26299/26966 26306/26974 26313/26983 +f 26307/26975 26300/26967 22251/26976 +f 26284/26949 26308/26977 22251/26976 +f 22133/26968 22251/26976 26308/26977 +f 26302/26970 26314/26984 3135/26978 +f 26302/26970 26303/26971 26315/26985 +f 26316/26986 26303/26971 26309/26979 +f 26304/26972 26310/26980 26317/26987 +f 26313/26983 26310/26980 26299/26966 +f 26311/26981 26304/26972 26317/26987 +f 26318/26988 26305/26973 26311/26981 +f 26298/26965 26312/26982 26309/26979 +f 26312/26982 26305/26973 26319/26989 +f 26307/26975 26320/26990 26306/26974 +f 26313/26983 26306/26974 26321/26991 +f 26307/26975 22251/26976 22250/26992 +f 26322/26993 26314/26984 26302/26970 +f 26314/26984 26323/26994 3135/26978 +f 26303/26971 26316/26986 26315/26985 +f 26324/26995 26302/26970 26315/26985 +f 26316/26986 26309/26979 26312/26982 +f 26310/26980 26313/26983 26317/26987 +f 26311/26981 26317/26987 26318/26988 +f 26305/26973 26318/26988 26319/26989 +f 26316/26986 26312/26982 26319/26989 +f 26320/26990 26307/26975 22250/26992 +f 26306/26974 26320/26990 26321/26991 +f 26313/26983 26321/26991 26325/26996 +f 26326/26997 26314/26984 26322/26993 +f 26302/26970 26324/26995 26322/26993 +f 26323/26994 26314/26984 26327/26998 +f 3136/26999 3135/26978 26323/26994 +f 26316/26986 26328/27000 26315/26985 +f 26329/27001 26324/26995 26315/26985 +f 26313/26983 26325/26996 26317/26987 +f 26318/26988 26317/26987 26325/26996 +f 26318/26988 26330/27002 26319/26989 +f 26331/27003 26316/26986 26319/26989 +f 22314/27004 26320/26990 22250/26992 +f 22314/27004 26321/26991 26320/26990 +f 26332/27005 26325/26996 26321/26991 +f 26327/26998 26314/26984 26326/26997 +f 26326/26997 26322/26993 26333/27006 +f 26333/27006 26322/26993 26324/26995 +f 26323/26994 26327/26998 3136/26999 +f 26328/27000 26334/27007 26315/26985 +f 26331/27003 26328/27000 26316/26986 +f 26324/26995 26329/27001 26335/27008 +f 26315/26985 26334/27007 26329/27001 +f 26318/26988 26325/26996 26332/27005 +f 26330/27002 26331/27003 26319/26989 +f 26330/27002 26318/26988 26336/27009 +f 26337/27010 26321/26991 22314/27004 +f 26332/27005 26321/26991 26337/27010 +f 26327/26998 26326/26997 26338/27011 +f 26338/27011 26326/26997 26333/27006 +f 26339/27012 26333/27006 26324/26995 +f 3136/26999 26327/26998 26340/27013 +f 26334/27007 26328/27000 26339/27012 +f 26331/27003 26341/27014 26328/27000 +f 26324/26995 26335/27008 26339/27012 +f 26335/27008 26329/27001 26334/27007 +f 26342/27015 26318/26988 26332/27005 +f 26330/27002 26343/27016 26331/27003 +f 26343/27016 26330/27002 26336/27009 +f 26336/27009 26318/26988 26342/27015 +f 22314/27004 26344/27017 26337/27010 +f 26342/27015 26332/27005 26337/27010 +f 26345/27018 26327/26998 26338/27011 +f 26338/27011 26333/27006 26346/27019 +f 26333/27006 26339/27012 26347/27020 +f 26340/27013 2932/27021 3136/26999 +f 26345/27018 26340/27013 26327/26998 +f 26334/27007 26339/27012 26335/27008 +f 26347/27020 26339/27012 26328/27000 +f 26328/27000 26341/27014 26347/27020 +f 26343/27016 26341/27014 26331/27003 +f 26343/27016 26336/27009 26342/27015 +f 26348/27022 26344/27017 22314/27004 +f 26337/27010 26344/27017 26349/27023 +f 26342/27015 26337/27010 26350/27024 +f 26345/27018 26338/27011 26346/27019 +f 26351/27025 26346/27019 26333/27006 +f 26352/27026 26333/27006 26347/27020 +f 2932/27021 26340/27013 2992/27027 +f 26353/27028 26340/27013 26345/27018 +f 26341/27014 26352/27026 26347/27020 +f 26350/27024 26341/27014 26343/27016 +f 26343/27016 26342/27015 26350/27024 +f 26344/27017 26348/27022 26354/27029 +f 22314/27004 22370/27030 26348/27022 +f 26349/27023 26350/27024 26337/27010 +f 26355/27031 26349/27023 26344/27017 +f 26356/27032 26345/27018 26346/27019 +f 26357/27033 26346/27019 26351/27025 +f 26351/27025 26333/27006 26352/27026 +f 2992/27027 26340/27013 26358/27034 +f 26359/27035 26340/27013 26353/27028 +f 26359/27035 26353/27028 26345/27018 +f 26341/27014 26360/27036 26352/27026 +f 26341/27014 26350/27024 26360/27036 +f 26354/27029 26348/27022 22370/27030 +f 26354/27029 26361/27037 26344/27017 +f 26349/27023 26362/27038 26350/27024 +f 26363/27039 26349/27023 26355/27031 +f 26344/27017 26361/27037 26355/27031 +f 26356/27032 26346/27019 26364/27040 +f 26345/27018 26356/27032 26359/27035 +f 26357/27033 26351/27025 26365/27041 +f 26346/27019 26357/27033 26364/27040 +f 26351/27025 26352/27026 26360/27036 +f 26359/27035 26358/27034 26340/27013 +f 2992/27027 26358/27034 2799/27042 +f 26360/27036 26350/27024 26362/27038 +f 22370/27030 22321/27043 26354/27029 +f 22321/27043 26361/27037 26354/27029 +f 26362/27038 26349/27023 26366/27044 +f 26363/27039 26355/27031 26367/27045 +f 26349/27023 26363/27039 26368/27046 +f 26361/27037 22321/27043 26355/27031 +f 26364/27040 2802/27047 26356/27032 +f 26356/27032 2802/27047 26359/27035 +f 26369/27048 26357/27033 26365/27041 +f 26362/27038 26365/27041 26351/27025 +f 26357/27033 26370/27049 26364/27040 +f 26351/27025 26360/27036 26362/27038 +f 26358/27034 26359/27035 2799/27042 +f 26369/27048 26362/27038 26366/27044 +f 26349/27023 26368/27046 26366/27044 +f 26371/27050 26367/27045 26355/27031 +f 26363/27039 26367/27045 26372/27051 +f 26372/27051 26368/27046 26363/27039 +f 26355/27031 22321/27043 26371/27050 +f 26364/27040 26370/27049 2802/27047 +f 2799/27042 26359/27035 2802/27047 +f 26357/27033 26369/27048 26373/27052 +f 26365/27041 26362/27038 26369/27048 +f 26370/27049 26357/27033 26373/27052 +f 26369/27048 26366/27044 26374/27053 +f 26375/27054 26366/27044 26368/27046 +f 26376/27055 26367/27045 26371/27050 +f 26372/27051 26367/27045 26377/27056 +f 26368/27046 26372/27051 26378/27057 +f 26371/27050 22321/27043 22309/27058 +f 26379/27059 2802/27047 26370/27049 +f 26373/27052 26369/27048 26374/27053 +f 26370/27049 26373/27052 26380/27060 +f 26374/27053 26366/27044 26375/27054 +f 26368/27046 26381/27061 26375/27054 +f 26382/27062 26376/27055 26371/27050 +f 26376/27055 26383/27063 26367/27045 +f 26367/27045 26384/27064 26377/27056 +f 26372/27051 26377/27056 26381/27061 +f 26378/27057 26372/27051 26381/27061 +f 26381/27061 26368/27046 26378/27057 +f 26371/27050 22309/27058 26382/27062 +f 2612/27065 2802/27047 26379/27059 +f 26380/27060 26379/27059 26370/27049 +f 26385/27066 26373/27052 26374/27053 +f 26380/27060 26373/27052 26385/27066 +f 26374/27053 26375/27054 26386/27067 +f 26381/27061 26386/27067 26375/27054 +f 26376/27055 26382/27062 26387/27068 +f 26384/27064 26367/27045 26383/27063 +f 26383/27063 26376/27055 26387/27068 +f 2538/27069 26377/27056 26384/27064 +f 26388/27070 26381/27061 26377/27056 +f 26389/27071 26382/27062 22309/27058 +f 26380/27060 2612/27065 26379/27059 +f 26386/27067 26385/27066 26374/27053 +f 2457/27072 26380/27060 26385/27066 +f 26386/27067 26381/27061 26388/27070 +f 26382/27062 26389/27071 26387/27068 +f 26383/27063 2542/27073 26384/27064 +f 26390/27074 26383/27063 26387/27068 +f 26377/27056 2538/27069 26388/27070 +f 26384/27064 2609/27075 2538/27069 +f 26389/27071 22309/27058 22367/27076 +f 2457/27072 2612/27065 26380/27060 +f 26386/27067 26391/27077 26385/27066 +f 2457/27072 26385/27066 26391/27077 +f 26391/27077 26386/27067 26388/27070 +f 26389/27071 26392/27078 26387/27068 +f 2542/27073 2609/27075 26384/27064 +f 2542/27073 26383/27063 26390/27074 +f 26387/27068 26393/27079 26390/27074 +f 2538/27069 26391/27077 26388/27070 +f 26394/27080 26389/27071 22367/27076 +f 26391/27077 2538/27069 2457/27072 +f 26392/27078 26389/27071 26394/27080 +f 26392/27078 26393/27079 26387/27068 +f 2279/27081 2542/27073 26390/27074 +f 26395/27082 26390/27074 26393/27079 +f 26396/27083 26394/27080 22367/27076 +f 26397/27084 26392/27078 26394/27080 +f 26398/27085 26393/27079 26392/27078 +f 26390/27074 26395/27082 2279/27081 +f 26395/27082 26393/27079 26398/27085 +f 26399/27086 26394/27080 26396/27083 +f 22368/27087 26396/27083 22367/27076 +f 26398/27085 26392/27078 26397/27084 +f 26397/27084 26394/27080 26400/27088 +f 2182/27089 2279/27081 26395/27082 +f 2182/27089 26395/27082 26398/27085 +f 26394/27080 26399/27086 26400/27088 +f 26401/27090 26399/27086 26396/27083 +f 22368/27087 26402/27091 26396/27083 +f 26398/27085 26397/27084 26399/27086 +f 26400/27088 26399/27086 26397/27084 +f 2360/27092 2182/27089 26398/27085 +f 26401/27090 26396/27083 26403/27093 +f 26401/27090 2360/27092 26399/27086 +f 22306/27094 26402/27091 22368/27087 +f 26396/27083 26402/27091 26403/27093 +f 26398/27085 26399/27086 2360/27092 +f 26403/27093 26404/27095 26401/27090 +f 26404/27095 2360/27092 26401/27090 +f 26402/27091 22306/27094 26405/27096 +f 26403/27093 26402/27091 26406/27097 +f 26404/27095 26403/27093 26407/27098 +f 2360/27092 26404/27095 26407/27098 +f 22306/27094 22363/27099 26405/27096 +f 26408/27100 26402/27091 26405/27096 +f 26402/27091 26409/27101 26406/27097 +f 26407/27098 26403/27093 26406/27097 +f 2272/27102 2360/27092 26407/27098 +f 22363/27099 26410/27103 26405/27096 +f 26402/27091 26408/27100 26409/27101 +f 26405/27096 26410/27103 26408/27100 +f 26406/27097 26409/27101 26407/27098 +f 2359/27104 2272/27102 26407/27098 +f 26411/27105 26410/27103 22363/27099 +f 26408/27100 26410/27103 26409/27101 +f 26409/27101 2359/27104 26407/27098 +f 26410/27103 26411/27105 26412/27106 +f 26411/27105 22363/27099 26413/27107 +f 26410/27103 2533/27108 26409/27101 +f 2533/27108 2359/27104 26409/27101 +f 26411/27105 26413/27107 26412/27106 +f 2533/27108 26410/27103 26412/27106 +f 26413/27107 22363/27099 22412/27109 +f 26412/27106 26413/27107 22412/27109 +f 2532/27110 2533/27108 26412/27106 +f 26412/27106 22412/27109 26414/27111 +f 2532/27110 26412/27106 26414/27111 +f 26414/27111 22412/27109 26415/27112 +f 26414/27111 2672/27113 2532/27110 +f 26414/27111 26415/27112 26416/27114 +f 22412/27109 22364/27115 26415/27112 +f 2672/27113 26414/27111 26417/27116 +f 26418/27117 26416/27114 26415/27112 +f 26417/27116 26414/27111 26416/27114 +f 26418/27117 26415/27112 22364/27115 +f 2672/27113 26417/27116 26419/27118 +f 26418/27117 26417/27116 26416/27114 +f 26418/27117 22364/27115 22413/27119 +f 2560/27120 2672/27113 26419/27118 +f 26417/27116 26418/27117 26419/27118 +f 26419/27118 26418/27117 22413/27119 +f 26420/27121 2560/27120 26419/27118 +f 26419/27118 22413/27119 26420/27121 +f 26420/27121 2494/27122 2560/27120 +f 26420/27121 22413/27119 26421/27123 +f 2494/27122 26420/27121 2410/27124 +f 22413/27119 22411/27125 26421/27123 +f 26420/27121 26421/27123 26422/27126 +f 2410/27124 26420/27121 26423/27127 +f 26421/27123 22411/27125 26424/27128 +f 26424/27128 26422/27126 26421/27123 +f 26423/27127 26420/27121 26422/27126 +f 2410/27124 26423/27127 26425/27129 +f 22360/27130 26424/27128 22411/27125 +f 26426/27131 26422/27126 26424/27128 +f 26425/27129 26423/27127 26422/27126 +f 26425/27129 26427/27132 2410/27124 +f 22360/27130 26426/27131 26424/27128 +f 26422/27126 26426/27131 26428/27133 +f 26428/27133 26425/27129 26422/27126 +f 26429/27134 26427/27132 26425/27129 +f 2411/27135 2410/27124 26427/27132 +f 26426/27131 22360/27130 26430/27136 +f 26431/27137 26428/27133 26426/27131 +f 26425/27129 26428/27133 26429/27134 +f 26429/27134 26432/27138 26427/27132 +f 2411/27135 26427/27132 26433/27139 +f 26430/27136 26431/27137 26426/27131 +f 26430/27136 22360/27130 22361/27140 +f 26431/27137 26432/27138 26428/27133 +f 26428/27133 26432/27138 26429/27134 +f 26433/27139 26427/27132 26432/27138 +f 26434/27141 2411/27135 26433/27139 +f 26435/27142 26431/27137 26430/27136 +f 22361/27140 26435/27142 26430/27136 +f 26432/27138 26431/27137 26436/27143 +f 26432/27138 26436/27143 26433/27139 +f 26434/27141 2231/27144 2411/27135 +f 26436/27143 26434/27141 26433/27139 +f 26431/27137 26435/27142 26436/27143 +f 26437/27145 26435/27142 22361/27140 +f 2232/27146 2231/27144 26434/27141 +f 26436/27143 26438/27147 26434/27141 +f 26435/27142 26438/27147 26436/27143 +f 22237/27148 26437/27145 22361/27140 +f 26435/27142 26437/27145 26438/27147 +f 2232/27146 26434/27141 26439/27149 +f 26434/27141 26438/27147 26440/27150 +f 26441/27151 26437/27145 22237/27148 +f 26437/27145 26440/27150 26438/27147 +f 26439/27149 2233/27152 2232/27146 +f 26434/27141 26440/27150 26439/27149 +f 26437/27145 26441/27151 26442/27153 +f 26443/27154 26441/27151 22237/27148 +f 26440/27150 26437/27145 26444/27155 +f 26445/27156 2233/27152 26439/27149 +f 26444/27155 26439/27149 26440/27150 +f 26441/27151 26446/27157 26442/27153 +f 26437/27145 26442/27153 26444/27155 +f 22237/27148 22362/27158 26443/27154 +f 26443/27154 26447/27159 26441/27151 +f 26445/27156 26439/27149 26444/27155 +f 26445/27156 26448/27160 2233/27152 +f 26446/27157 26445/27156 26442/27153 +f 26446/27157 26441/27151 26449/27161 +f 26445/27156 26444/27155 26442/27153 +f 22362/27158 26447/27159 26443/27154 +f 26447/27159 26450/27162 26441/27151 +f 26448/27160 26451/27163 2233/27152 +f 26451/27163 26448/27160 26445/27156 +f 26446/27157 26451/27163 26445/27156 +f 26452/27164 26446/27157 26449/27161 +f 26441/27151 26450/27162 26449/27161 +f 26447/27159 22362/27158 26453/27165 +f 26454/27166 26450/27162 26447/27159 +f 2233/27152 26451/27163 2135/27167 +f 26451/27163 26446/27157 26455/27168 +f 26452/27164 26449/27161 26456/27169 +f 26452/27164 26455/27168 26446/27157 +f 26449/27161 26450/27162 26456/27169 +f 26454/27166 26447/27159 26453/27165 +f 22362/27158 26457/27170 26453/27165 +f 26450/27162 26454/27166 26458/27171 +f 2135/27167 26451/27163 2040/27172 +f 26455/27168 2040/27172 26451/27163 +f 26452/27164 26456/27169 26459/27173 +f 26455/27168 26452/27164 26460/27174 +f 26456/27169 26450/27162 26458/27171 +f 26461/27175 26454/27166 26453/27165 +f 26457/27170 26462/27176 26453/27165 +f 22359/27177 26457/27170 22362/27158 +f 26458/27171 26454/27166 26461/27175 +f 2136/27178 2040/27172 26455/27168 +f 26456/27169 26463/27179 26459/27173 +f 26459/27173 26464/27180 26452/27164 +f 26465/27181 26460/27174 26452/27164 +f 26460/27174 2136/27178 26455/27168 +f 26456/27169 26458/27171 26466/27182 +f 26453/27165 26462/27176 26461/27175 +f 26467/27183 26462/27176 26457/27170 +f 26457/27170 22359/27177 26467/27183 +f 26461/27175 26468/27184 26458/27171 +f 26456/27169 26466/27182 26463/27179 +f 26459/27173 26463/27179 26469/27185 +f 26464/27180 26465/27181 26452/27164 +f 26470/27186 26464/27180 26459/27173 +f 26460/27174 26465/27181 2220/27187 +f 26460/27174 2220/27187 2136/27178 +f 26466/27182 26458/27171 26468/27184 +f 26471/27188 26461/27175 26462/27176 +f 26472/27189 26462/27176 26467/27183 +f 26467/27183 22359/27177 22410/27190 +f 26461/27175 26473/27191 26468/27184 +f 26474/27192 26463/27179 26466/27182 +f 26469/27185 26463/27179 26474/27192 +f 26459/27173 26469/27185 26475/27193 +f 26465/27181 26464/27180 26470/27186 +f 26470/27186 26459/27173 26475/27193 +f 2030/27194 2220/27187 26465/27181 +f 26468/27184 26476/27195 26466/27182 +f 26462/27176 26472/27189 26471/27188 +f 26471/27188 26477/27196 26461/27175 +f 26478/27197 26472/27189 26467/27183 +f 26467/27183 22410/27190 26478/27197 +f 26461/27175 26477/27196 26473/27191 +f 26476/27195 26468/27184 26473/27191 +f 26476/27195 26474/27192 26466/27182 +f 26479/27198 26469/27185 26474/27192 +f 26475/27193 26469/27185 26480/27199 +f 26465/27181 26470/27186 2124/27200 +f 26475/27193 2312/27201 26470/27186 +f 2030/27194 26465/27181 2124/27200 +f 26481/27202 26471/27188 26472/27189 +f 22977/27203 26477/27196 26471/27188 +f 26472/27189 26478/27197 26482/27204 +f 26478/27197 22410/27190 26483/27205 +f 26477/27196 23039/27206 26473/27191 +f 26476/27195 26473/27191 23059/27207 +f 26474/27192 26476/27195 26484/27208 +f 26469/27185 26479/27198 26480/27199 +f 26479/27198 26474/27192 26485/27209 +f 26475/27193 26480/27199 2401/27210 +f 26470/27186 2221/27211 2124/27200 +f 26470/27186 2312/27201 2221/27211 +f 2401/27210 2312/27201 26475/27193 +f 26482/27204 26481/27202 26472/27189 +f 26471/27188 26481/27202 22945/27212 +f 26477/27196 22977/27203 23039/27206 +f 22945/27212 22977/27203 26471/27188 +f 26486/27213 26482/27204 26478/27197 +f 26478/27197 26483/27205 26486/27213 +f 22526/27214 26483/27205 22410/27190 +f 23059/27207 26473/27191 23039/27206 +f 26484/27208 26476/27195 23059/27207 +f 26487/27215 26474/27192 26484/27208 +f 26488/27216 26480/27199 26479/27198 +f 26479/27198 26485/27209 26488/27216 +f 26474/27192 26489/27217 26485/27209 +f 2401/27210 26480/27199 26488/27216 +f 26481/27202 26482/27204 26486/27213 +f 26481/27202 22887/27218 22945/27212 +f 26483/27205 22741/27219 26486/27213 +f 26483/27205 22526/27214 22741/27219 +f 26484/27208 23059/27207 23102/27220 +f 26484/27208 2399/27221 26487/27215 +f 26487/27215 26489/27217 26474/27192 +f 26488/27216 26485/27209 2310/27222 +f 2310/27222 26485/27209 26489/27217 +f 2217/27223 2401/27210 26488/27216 +f 22887/27218 26481/27202 26486/27213 +f 22741/27219 22887/27218 26486/27213 +f 26490/27224 26484/27208 23102/27220 +f 2399/27221 26484/27208 26490/27224 +f 26487/27215 2399/27221 2402/27225 +f 2402/27225 26489/27217 26487/27215 +f 2310/27222 2217/27223 26488/27216 +f 2310/27222 26489/27217 26491/27226 +f 26490/27224 23102/27220 26492/27227 +f 2399/27221 26490/27224 26493/27228 +f 26491/27226 26489/27217 2402/27225 +f 2311/27229 2310/27222 26491/27226 +f 26494/27230 26490/27224 26492/27227 +f 23131/27231 26492/27227 23102/27220 +f 2400/27232 2399/27221 26493/27228 +f 26490/27224 26495/27233 26493/27228 +f 2311/27229 26491/27226 2402/27225 +f 26494/27230 26495/27233 26490/27224 +f 26492/27227 2481/27234 26494/27230 +f 23131/27231 26496/27235 26492/27227 +f 2483/27236 2400/27232 26493/27228 +f 26493/27228 26495/27233 26497/27237 +f 26495/27233 26494/27230 26497/27237 +f 2481/27234 2397/27238 26494/27230 +f 26496/27235 2481/27234 26492/27227 +f 26496/27235 23131/27231 2630/27239 +f 26497/27237 2483/27236 26493/27228 +f 26497/27237 26494/27230 2397/27238 +f 2482/27240 2481/27234 26496/27235 +f 2630/27239 2482/27240 26496/27235 +f 26497/27237 2397/27238 2483/27236 +f 26498/27241 26499/27242 26500/27243 +f 26498/27241 26501/27244 26499/27242 +f 26500/27243 26499/27242 26502/27245 +f 26498/27241 26500/27243 26503/27246 +f 26501/27244 26498/27241 26504/27247 +f 26505/27248 26499/27242 26501/27244 +f 26505/27248 26502/27245 26499/27242 +f 26500/27243 26502/27245 26506/27249 +f 26507/27250 26503/27246 26500/27243 +f 26508/27251 26498/27241 26503/27246 +f 26504/27247 26498/27241 26509/27252 +f 26504/27247 26510/27253 26501/27244 +f 26511/27254 26505/27248 26501/27244 +f 26512/27255 26502/27245 26505/27248 +f 26500/27243 26506/27249 26507/27250 +f 26502/27245 26513/27256 26506/27249 +f 26507/27250 26514/27257 26503/27246 +f 26508/27251 26503/27246 26515/27258 +f 26498/27241 26508/27251 26516/27259 +f 26516/27259 26509/27252 26498/27241 +f 26504/27247 26509/27252 26517/27260 +f 26504/27247 26518/27261 26510/27253 +f 26510/27253 26519/27262 26501/27244 +f 26520/27263 26511/27254 26501/27244 +f 26505/27248 26511/27254 26521/27264 +f 26505/27248 26522/27265 26512/27255 +f 26513/27256 26502/27245 26512/27255 +f 26507/27250 26506/27249 26523/27266 +f 26524/27267 26506/27249 26513/27256 +f 26503/27246 26514/27257 26515/27258 +f 26523/27266 26514/27257 26507/27250 +f 26525/27268 26508/27251 26515/27258 +f 26525/27268 26516/27259 26508/27251 +f 26509/27252 26516/27259 26517/27260 +f 26526/27269 26504/27247 26517/27260 +f 26518/27261 26504/27247 26527/27270 +f 26519/27262 26510/27253 26518/27261 +f 26519/27262 26520/27263 26501/27244 +f 26511/27254 26520/27263 26528/27271 +f 26505/27248 26521/27264 26522/27265 +f 26529/27272 26521/27264 26511/27254 +f 26512/27255 26522/27265 26530/27273 +f 26530/27273 26513/27256 26512/27255 +f 26523/27266 26506/27249 26524/27267 +f 26513/27256 26530/27273 26524/27267 +f 26515/27258 26514/27257 26531/27274 +f 26514/27257 26523/27266 26532/27275 +f 26533/27276 26525/27268 26515/27258 +f 26516/27259 26525/27268 26534/27277 +f 26516/27259 26535/27278 26517/27260 +f 26517/27260 26536/27279 26526/27269 +f 26526/27269 26527/27270 26504/27247 +f 26518/27261 26527/27270 26537/27280 +f 26519/27262 26518/27261 26538/27281 +f 26528/27271 26520/27263 26519/27262 +f 26529/27272 26511/27254 26528/27271 +f 26522/27265 26521/27264 26539/27282 +f 26540/27283 26521/27264 26529/27272 +f 26530/27273 26522/27265 26539/27282 +f 26541/27284 26523/27266 26524/27267 +f 26524/27267 26530/27273 26542/27285 +f 26543/27286 26531/27274 26514/27257 +f 26515/27258 26531/27274 26533/27276 +f 26523/27266 22924/27287 26532/27275 +f 26514/27257 26532/27275 22856/27288 +f 26525/27268 26533/27276 26544/27289 +f 26534/27277 26525/27268 26544/27289 +f 26516/27259 26534/27277 26535/27278 +f 26535/27278 26536/27279 26517/27260 +f 26536/27279 26545/27290 26526/27269 +f 26526/27269 26545/27290 26527/27270 +f 26546/27291 26518/27261 26537/27280 +f 26547/27292 26537/27280 26527/27270 +f 26548/27293 26538/27281 26518/27261 +f 26519/27262 26538/27281 26528/27271 +f 26549/27294 26529/27272 26528/27271 +f 26550/27295 26539/27282 26521/27264 +f 26521/27264 26540/27283 26550/27295 +f 26551/27296 26540/27283 26529/27272 +f 26530/27273 26539/27282 26552/27297 +f 26553/27298 26523/27266 26541/27284 +f 26541/27284 26524/27267 26542/27285 +f 26530/27273 26552/27297 26542/27285 +f 22895/27299 26531/27274 26543/27286 +f 26543/27286 26514/27257 22856/27288 +f 26531/27274 26554/27300 26533/27276 +f 22924/27287 26523/27266 26553/27298 +f 22924/27287 22856/27288 26532/27275 +f 26533/27276 26555/27301 26544/27289 +f 26544/27289 26556/27302 26534/27277 +f 26557/27303 26535/27278 26534/27277 +f 26558/27304 26536/27279 26535/27278 +f 26536/27279 26559/27305 26545/27290 +f 26545/27290 26559/27305 26527/27270 +f 26546/27291 26548/27293 26518/27261 +f 26537/27280 26560/27306 26546/27291 +f 26560/27306 26537/27280 26547/27292 +f 26561/27307 26547/27292 26527/27270 +f 26562/27308 26538/27281 26548/27293 +f 26528/27271 26538/27281 26562/27308 +f 26549/27294 26528/27271 26562/27308 +f 26529/27272 26549/27294 26563/27309 +f 26564/27310 26539/27282 26550/27295 +f 26540/27283 26565/27311 26550/27295 +f 26565/27311 26540/27283 26551/27296 +f 26563/27309 26551/27296 26529/27272 +f 26539/27282 26564/27310 26552/27297 +f 26566/27312 26553/27298 26541/27284 +f 26567/27313 26541/27284 26542/27285 +f 26567/27313 26542/27285 26552/27297 +f 26554/27300 26531/27274 22895/27299 +f 26543/27286 22894/27314 22895/27299 +f 22856/27288 22894/27314 26543/27286 +f 26533/27276 26554/27300 26568/27315 +f 22924/27287 26553/27298 23004/27316 +f 26544/27289 26555/27301 26569/27317 +f 26568/27315 26555/27301 26533/27276 +f 26544/27289 26569/27317 26556/27302 +f 26534/27277 26556/27302 26557/27303 +f 26557/27303 26570/27318 26535/27278 +f 26559/27305 26536/27279 26558/27304 +f 26535/27278 26570/27318 26558/27304 +f 26527/27270 26559/27305 26561/27307 +f 26548/27293 26546/27291 26571/27319 +f 26546/27291 26560/27306 26572/27320 +f 26560/27306 26547/27292 26573/27321 +f 26561/27307 26573/27321 26547/27292 +f 26562/27308 26548/27293 26574/27322 +f 26562/27308 26574/27322 26549/27294 +f 26575/27323 26563/27309 26549/27294 +f 26564/27310 26550/27295 26576/27324 +f 26577/27325 26550/27295 26565/27311 +f 26565/27311 26551/27296 26578/27326 +f 26563/27309 26579/27327 26551/27296 +f 26564/27310 26580/27328 26552/27297 +f 23004/27316 26553/27298 26566/27312 +f 26566/27312 26541/27284 26567/27313 +f 26552/27297 26581/27329 26567/27313 +f 26554/27300 22895/27299 22812/27330 +f 26582/27331 26568/27315 26554/27300 +f 26583/27332 26569/27317 26555/27301 +f 26582/27331 26555/27301 26568/27315 +f 26584/27333 26556/27302 26569/27317 +f 26556/27302 26584/27333 26557/27303 +f 26570/27318 26557/27303 26585/27334 +f 26558/27304 26586/27335 26559/27305 +f 26558/27304 26570/27318 26586/27335 +f 26586/27335 26561/27307 26559/27305 +f 26587/27336 26571/27319 26546/27291 +f 26571/27319 26588/27337 26548/27293 +f 26572/27320 26587/27336 26546/27291 +f 26573/27321 26572/27320 26560/27306 +f 26589/27338 26573/27321 26561/27307 +f 26548/27293 26588/27337 26574/27322 +f 26590/27339 26549/27294 26574/27322 +f 26563/27309 26575/27323 26591/27340 +f 26592/27341 26575/27323 26549/27294 +f 26550/27295 26577/27325 26576/27324 +f 26564/27310 26576/27324 26593/27342 +f 26594/27343 26577/27325 26565/27311 +f 26578/27326 26594/27343 26565/27311 +f 26579/27327 26578/27326 26551/27296 +f 26563/27309 26591/27340 26579/27327 +f 26564/27310 26595/27344 26580/27328 +f 26552/27297 26580/27328 26596/27345 +f 23004/27316 26566/27312 26597/27346 +f 26567/27313 26598/27347 26566/27312 +f 26567/27313 26581/27329 26599/27348 +f 26600/27349 26581/27329 26552/27297 +f 26554/27300 22812/27330 22814/27350 +f 26582/27331 26554/27300 22814/27350 +f 26601/27351 26583/27332 26555/27301 +f 26583/27332 26584/27333 26569/27317 +f 26555/27301 26582/27331 26601/27351 +f 26584/27333 26602/27352 26557/27303 +f 26585/27334 26586/27335 26570/27318 +f 26603/27353 26585/27334 26557/27303 +f 26561/27307 26586/27335 26604/27354 +f 26605/27355 26571/27319 26587/27336 +f 26588/27337 26571/27319 26605/27355 +f 26606/27356 26572/27320 26573/27321 +f 26604/27354 26589/27338 26561/27307 +f 26589/27338 26606/27356 26573/27321 +f 26574/27322 26588/27337 26607/27357 +f 26590/27339 26592/27341 26549/27294 +f 26608/27358 26590/27339 26574/27322 +f 26591/27340 26575/27323 26609/27359 +f 26575/27323 26592/27341 26609/27359 +f 26577/27325 26610/27360 26576/27324 +f 26564/27310 26593/27342 26595/27344 +f 26576/27324 26610/27360 26593/27342 +f 26577/27325 26594/27343 26611/27361 +f 26594/27343 26578/27326 26612/27362 +f 26579/27327 26613/27363 26578/27326 +f 26591/27340 26613/27363 26579/27327 +f 26614/27364 26580/27328 26595/27344 +f 26596/27345 26600/27349 26552/27297 +f 26596/27345 26580/27328 26615/27365 +f 26598/27347 26597/27346 26566/27312 +f 26598/27347 23004/27316 26597/27346 +f 26599/27348 26598/27347 26567/27313 +f 26599/27348 26581/27329 26616/27366 +f 26616/27366 26581/27329 26600/27349 +f 26582/27331 22814/27350 26617/27367 +f 26602/27352 26583/27332 26601/27351 +f 26583/27332 26602/27352 26584/27333 +f 26601/27351 26582/27331 26618/27368 +f 26557/27303 26602/27352 26603/27353 +f 26619/27369 26586/27335 26585/27334 +f 26603/27353 26620/27370 26585/27334 +f 26586/27335 26619/27369 26604/27354 +f 26605/27355 26587/27336 26621/27371 +f 26605/27355 26607/27357 26588/27337 +f 26589/27338 26604/27354 26622/27372 +f 26607/27357 26608/27358 26574/27322 +f 26592/27341 26590/27339 26608/27358 +f 26591/27340 26609/27359 26623/27373 +f 26592/27341 26624/27374 26609/27359 +f 26611/27361 26610/27360 26577/27325 +f 26593/27342 26625/27375 26595/27344 +f 26610/27360 26626/27376 26593/27342 +f 26611/27361 26594/27343 26612/27362 +f 26613/27363 26612/27362 26578/27326 +f 26591/27340 26623/27373 26613/27363 +f 26580/27328 26614/27364 26627/27377 +f 26628/27378 26614/27364 26595/27344 +f 26629/27379 26600/27349 26596/27345 +f 26615/27365 26630/27380 26596/27345 +f 26627/27377 26615/27365 26580/27328 +f 22951/27381 23004/27316 26598/27347 +f 26631/27382 26598/27347 26599/27348 +f 26632/27383 26599/27348 26616/27366 +f 26616/27366 26600/27349 26629/27379 +f 26633/27384 26617/27367 22814/27350 +f 26618/27368 26582/27331 26617/27367 +f 26634/27385 26602/27352 26601/27351 +f 26618/27368 26635/27386 26601/27351 +f 26603/27353 26602/27352 26634/27385 +f 26636/27387 26619/27369 26585/27334 +f 26637/27388 26620/27370 26603/27353 +f 26585/27334 26620/27370 26638/27389 +f 26619/27369 26639/27390 26604/27354 +f 26621/27371 26640/27391 26605/27355 +f 26641/27392 26621/27371 26587/27336 +f 26605/27355 26642/27393 26607/27357 +f 26604/27354 26639/27390 26622/27372 +f 26607/27357 26624/27374 26608/27358 +f 26592/27341 26608/27358 26624/27374 +f 26623/27373 26609/27359 26643/27394 +f 26624/27374 26644/27395 26609/27359 +f 26611/27361 26645/27396 26610/27360 +f 26626/27376 26625/27375 26593/27342 +f 26625/27375 26646/27397 26595/27344 +f 26647/27398 26626/27376 26610/27360 +f 26648/27399 26611/27361 26612/27362 +f 26612/27362 26613/27363 26649/27400 +f 26623/27373 26643/27394 26613/27363 +f 26627/27377 26614/27364 26650/27401 +f 26650/27401 26614/27364 26628/27378 +f 26628/27378 26595/27344 26646/27397 +f 26651/27402 26629/27379 26596/27345 +f 26615/27365 26652/27403 26630/27380 +f 26596/27345 26630/27380 26651/27402 +f 26615/27365 26627/27377 26653/27404 +f 26654/27405 22951/27381 26598/27347 +f 26631/27382 26654/27405 26598/27347 +f 26632/27383 26631/27382 26599/27348 +f 26655/27406 26632/27383 26616/27366 +f 26616/27366 26629/27379 26656/27407 +f 26633/27384 26618/27368 26617/27367 +f 26633/27384 22814/27350 22757/27408 +f 26635/27386 26634/27385 26601/27351 +f 26633/27384 26635/27386 26618/27368 +f 26634/27385 26657/27409 26603/27353 +f 26585/27334 26658/27410 26636/27387 +f 26639/27390 26619/27369 26636/27387 +f 26620/27370 26637/27388 26659/27411 +f 26657/27409 26637/27388 26603/27353 +f 26638/27389 26620/27370 26660/27412 +f 26658/27410 26585/27334 26638/27389 +f 26640/27391 26621/27371 26661/27413 +f 26642/27393 26605/27355 26640/27391 +f 26621/27371 26641/27392 26662/27414 +f 26624/27374 26607/27357 26642/27393 +f 26663/27415 26622/27372 26639/27390 +f 26644/27395 26643/27394 26609/27359 +f 26624/27374 26642/27393 26644/27395 +f 26648/27399 26645/27396 26611/27361 +f 26610/27360 26645/27396 26664/27416 +f 26646/27397 26625/27375 26626/27376 +f 26664/27416 26647/27398 26610/27360 +f 26647/27398 26665/27417 26626/27376 +f 26648/27399 26612/27362 26649/27400 +f 26649/27400 26613/27363 26666/27418 +f 26613/27363 26643/27394 26666/27418 +f 26667/27419 26627/27377 26650/27401 +f 26650/27401 26628/27378 26668/27420 +f 26646/27397 26668/27420 26628/27378 +f 26651/27402 26669/27421 26629/27379 +f 26653/27404 26652/27403 26615/27365 +f 26630/27380 26652/27403 26670/27422 +f 26669/27421 26651/27402 26630/27380 +f 26671/27423 26653/27404 26627/27377 +f 26654/27405 22892/27424 22951/27381 +f 26654/27405 26631/27382 26672/27425 +f 26632/27383 26655/27406 26631/27382 +f 26616/27366 26673/27426 26655/27406 +f 26669/27421 26656/27407 26629/27379 +f 26656/27407 26673/27426 26616/27366 +f 26633/27384 22757/27408 22855/27427 +f 26634/27385 26635/27386 26674/27428 +f 26635/27386 26633/27384 26675/27429 +f 26657/27409 26634/27385 26674/27428 +f 26658/27410 26676/27430 26636/27387 +f 26636/27387 26677/27431 26639/27390 +f 26678/27432 26659/27411 26637/27388 +f 26659/27411 26660/27412 26620/27370 +f 26657/27409 26679/27433 26637/27388 +f 26638/27389 26660/27412 26680/27434 +f 26681/27435 26658/27410 26638/27389 +f 26661/27413 26621/27371 26662/27414 +f 26661/27413 26666/27418 26640/27391 +f 26644/27395 26642/27393 26640/27391 +f 26639/27390 26682/27436 26663/27415 +f 26683/27437 26622/27372 26663/27415 +f 26643/27394 26644/27395 26640/27391 +f 26664/27416 26645/27396 26648/27399 +f 26626/27376 26684/27438 26646/27397 +f 26665/27417 26647/27398 26664/27416 +f 26684/27438 26626/27376 26665/27417 +f 26685/27439 26648/27399 26649/27400 +f 26649/27400 26666/27418 26685/27439 +f 26640/27391 26666/27418 26643/27394 +f 26671/27423 26627/27377 26667/27419 +f 26686/27440 26667/27419 26650/27401 +f 26687/27441 26650/27401 26668/27420 +f 26646/27397 26684/27438 26668/27420 +f 26652/27403 26653/27404 26670/27422 +f 26688/27442 26630/27380 26670/27422 +f 26630/27380 26688/27442 26669/27421 +f 26689/27443 26653/27404 26671/27423 +f 26654/27405 26690/27444 22892/27424 +f 26631/27382 26691/27445 26672/27425 +f 26654/27405 26672/27425 26690/27444 +f 26655/27406 26691/27445 26631/27382 +f 26692/27446 26655/27406 26673/27426 +f 26656/27407 26669/27421 26693/27447 +f 26673/27426 26656/27407 26694/27448 +f 22855/27427 26695/27449 26633/27384 +f 26674/27428 26635/27386 26675/27429 +f 26633/27384 26695/27449 26675/27429 +f 26679/27433 26657/27409 26674/27428 +f 26696/27450 26676/27430 26658/27410 +f 26676/27430 26697/27451 26636/27387 +f 26697/27451 26677/27431 26636/27387 +f 26677/27431 26682/27436 26639/27390 +f 26659/27411 26678/27432 26698/27452 +f 26637/27388 26699/27453 26678/27432 +f 26698/27452 26660/27412 26659/27411 +f 26637/27388 26679/27433 26700/27454 +f 26680/27434 26660/27412 26698/27452 +f 26681/27435 26638/27389 26680/27434 +f 26658/27410 26681/27435 26696/27450 +f 26661/27413 26662/27414 26701/27455 +f 26701/27455 26666/27418 26661/27413 +f 26663/27415 26682/27436 26683/27437 +f 26664/27416 26648/27399 26702/27456 +f 26665/27417 26664/27416 26702/27456 +f 26665/27417 26703/27457 26684/27438 +f 26648/27399 26685/27439 26704/27458 +f 26701/27455 26685/27439 26666/27418 +f 5315/27459 26671/27423 26667/27419 +f 26686/27440 26705/27460 26667/27419 +f 26650/27401 26687/27441 26686/27440 +f 26703/27457 26687/27441 26668/27420 +f 26703/27457 26668/27420 26684/27438 +f 26653/27404 26689/27443 26670/27422 +f 5346/27461 26688/27442 26670/27422 +f 26693/27447 26669/27421 26688/27442 +f 5316/27462 26689/27443 26671/27423 +f 22810/27463 22892/27424 26690/27444 +f 26691/27445 26690/27444 26672/27425 +f 26706/27464 26691/27445 26655/27406 +f 26655/27406 26692/27446 26706/27464 +f 26692/27446 26673/27426 26706/27464 +f 26693/27447 26707/27465 26656/27407 +f 26706/27464 26673/27426 26694/27448 +f 26656/27407 26707/27465 26694/27448 +f 22855/27427 26708/27466 26695/27449 +f 26675/27429 26709/27467 26674/27428 +f 26695/27449 26709/27467 26675/27429 +f 26674/27428 26710/27468 26679/27433 +f 26697/27451 26676/27430 26696/27450 +f 26677/27431 26697/27451 26711/27469 +f 26712/27470 26682/27436 26677/27431 +f 26698/27452 26678/27432 26713/27471 +f 26678/27432 26699/27453 26713/27471 +f 26699/27453 26637/27388 26714/27472 +f 26679/27433 26710/27468 26700/27454 +f 26715/27473 26637/27388 26700/27454 +f 26680/27434 26698/27452 26716/27474 +f 26681/27435 26680/27434 26717/27475 +f 26681/27435 26717/27475 26696/27450 +f 26662/27414 26718/27476 26701/27455 +f 26683/27437 26682/27436 26719/27477 +f 26720/27478 26702/27456 26648/27399 +f 26702/27456 26703/27457 26665/27417 +f 26720/27478 26648/27399 26704/27458 +f 26685/27439 26701/27455 26704/27458 +f 5316/27462 26671/27423 5315/27459 +f 26705/27460 5315/27459 26667/27419 +f 26705/27460 26686/27440 26721/27479 +f 26686/27440 26687/27441 26721/27479 +f 26722/27480 26687/27441 26703/27457 +f 26670/27422 26689/27443 5337/27481 +f 26693/27447 26688/27442 5346/27461 +f 5337/27481 5346/27461 26670/27422 +f 5316/27462 5337/27481 26689/27443 +f 26690/27444 5323/27482 22810/27463 +f 26690/27444 26691/27445 5333/27483 +f 26706/27464 26723/27484 26691/27445 +f 26707/27465 26693/27447 5341/27485 +f 26723/27484 26706/27464 26694/27448 +f 26707/27465 5326/27486 26694/27448 +f 26709/27467 26695/27449 26708/27466 +f 22855/27427 22761/27487 26708/27466 +f 26674/27428 26709/27467 26724/27488 +f 26674/27428 26725/27489 26710/27468 +f 26697/27451 26696/27450 26711/27469 +f 26711/27469 26726/27490 26677/27431 +f 26719/27477 26682/27436 26712/27470 +f 26677/27431 26726/27490 26712/27470 +f 26713/27471 26716/27474 26698/27452 +f 26699/27453 26727/27491 26713/27471 +f 26715/27473 26714/27472 26637/27388 +f 26699/27453 26714/27472 26728/27492 +f 26700/27454 26710/27468 26729/27493 +f 26700/27454 26729/27493 26715/27473 +f 26717/27475 26680/27434 26716/27474 +f 26717/27475 26730/27494 26696/27450 +f 26701/27455 26718/27476 26704/27458 +f 26702/27456 26720/27478 26731/27495 +f 26731/27495 26703/27457 26702/27456 +f 26704/27458 26732/27496 26720/27478 +f 26705/27460 26733/27497 5315/27459 +f 26721/27479 26733/27497 26705/27460 +f 26687/27441 26734/27498 26721/27479 +f 26703/27457 26735/27499 26722/27480 +f 26722/27480 26734/27498 26687/27441 +f 5341/27485 26693/27447 5346/27461 +f 5323/27482 26690/27444 5310/27500 +f 26691/27445 26723/27484 5333/27483 +f 5310/27500 26690/27444 5333/27483 +f 5341/27485 5326/27486 26707/27465 +f 26723/27484 26694/27448 5325/27501 +f 26694/27448 5326/27486 5325/27501 +f 26708/27466 26724/27488 26709/27467 +f 26708/27466 22761/27487 26724/27488 +f 26724/27488 26725/27489 26674/27428 +f 26710/27468 26725/27489 26736/27502 +f 26696/27450 26726/27490 26711/27469 +f 26719/27477 26712/27470 26737/27503 +f 26712/27470 26726/27490 26737/27503 +f 26727/27491 26716/27474 26713/27471 +f 26699/27453 26728/27492 26727/27491 +f 26715/27473 26738/27504 26714/27472 +f 26728/27492 26714/27472 26739/27505 +f 26740/27506 26729/27493 26710/27468 +f 26740/27506 26715/27473 26729/27493 +f 26717/27475 26716/27474 26741/27507 +f 26730/27494 26726/27490 26696/27450 +f 26717/27475 26742/27508 26730/27494 +f 26718/27476 26732/27496 26704/27458 +f 26720/27478 17209/27509 26731/27495 +f 26735/27499 26703/27457 26731/27495 +f 26732/27496 17209/27509 26720/27478 +f 26733/27497 5300/27510 5315/27459 +f 26733/27497 26721/27479 26743/27511 +f 26721/27479 26734/27498 26744/27512 +f 26722/27480 26735/27499 26745/27513 +f 26744/27512 26734/27498 26722/27480 +f 5333/27483 26723/27484 5324/27514 +f 5324/27514 26723/27484 5325/27501 +f 22761/27487 22708/27515 26724/27488 +f 26725/27489 26724/27488 22648/27516 +f 26736/27502 26725/27489 26746/27517 +f 26747/27518 26710/27468 26736/27502 +f 26716/27474 26727/27491 26748/27519 +f 26727/27491 26728/27492 26749/27520 +f 26715/27473 26750/27521 26738/27504 +f 26738/27504 26739/27505 26714/27472 +f 26751/27522 26728/27492 26739/27505 +f 26740/27506 26710/27468 26747/27518 +f 26750/27521 26715/27473 26740/27506 +f 26741/27507 26716/27474 26748/27519 +f 26741/27507 26742/27508 26717/27475 +f 26726/27490 26730/27494 26752/27523 +f 26742/27508 26753/27524 26730/27494 +f 17209/27509 17212/27525 26731/27495 +f 17212/27525 26735/27499 26731/27495 +f 26733/27497 5336/27526 5300/27510 +f 26744/27512 26743/27511 26721/27479 +f 26743/27511 5336/27526 26733/27497 +f 26745/27513 26735/27499 26754/27527 +f 26745/27513 26755/27528 26722/27480 +f 26756/27529 26744/27512 26722/27480 +f 22648/27516 26724/27488 22708/27515 +f 26757/27530 26725/27489 22648/27516 +f 26746/27517 26725/27489 26757/27530 +f 26736/27502 26746/27517 26758/27531 +f 26759/27532 26747/27518 26736/27502 +f 26748/27519 26727/27491 26753/27524 +f 26749/27520 26728/27492 26751/27522 +f 26749/27520 26760/27533 26727/27491 +f 26761/27534 26738/27504 26750/27521 +f 26738/27504 26762/27535 26739/27505 +f 26739/27505 26763/27536 26751/27522 +f 26747/27518 26759/27532 26740/27506 +f 26750/27521 26740/27506 26764/27537 +f 26742/27508 26741/27507 26748/27519 +f 26730/27494 26753/27524 26752/27523 +f 26753/27524 26742/27508 26748/27519 +f 17212/27525 26765/27538 26735/27499 +f 26756/27529 26743/27511 26744/27512 +f 5344/27539 5336/27526 26743/27511 +f 26766/27540 26745/27513 26754/27527 +f 26735/27499 26765/27538 26754/27527 +f 26745/27513 26767/27541 26755/27528 +f 26722/27480 26755/27528 26756/27529 +f 26757/27530 22648/27516 26768/27542 +f 26757/27530 26769/27543 26746/27517 +f 26746/27517 26770/27544 26758/27531 +f 26758/27531 26771/27545 26736/27502 +f 26759/27532 26736/27502 26771/27545 +f 26760/27533 26753/27524 26727/27491 +f 26749/27520 26751/27522 26760/27533 +f 26761/27534 26762/27535 26738/27504 +f 26761/27534 26750/27521 26772/27546 +f 26762/27535 26763/27536 26739/27505 +f 26763/27536 26773/27547 26751/27522 +f 26764/27537 26740/27506 26759/27532 +f 26772/27546 26750/27521 26764/27537 +f 26752/27523 26753/27524 26760/27533 +f 26765/27538 17212/27525 17217/27548 +f 26756/27529 5344/27539 26743/27511 +f 26766/27540 26767/27541 26745/27513 +f 26754/27527 17221/27549 26766/27540 +f 26754/27527 26765/27538 17221/27549 +f 26755/27528 26767/27541 26774/27550 +f 26756/27529 26755/27528 5352/27551 +f 22648/27516 22709/27552 26768/27542 +f 26757/27530 26768/27542 26769/27543 +f 26770/27544 26746/27517 26769/27543 +f 26775/27553 26758/27531 26770/27544 +f 26758/27531 26776/27554 26771/27545 +f 26771/27545 26764/27537 26759/27532 +f 26751/27522 26777/27555 26760/27533 +f 26761/27534 26778/27556 26762/27535 +f 26778/27556 26761/27534 26772/27546 +f 26779/27557 26763/27536 26762/27535 +f 26773/27547 26780/27558 26751/27522 +f 26781/27559 26773/27547 26763/27536 +f 26782/27560 26772/27546 26764/27537 +f 26760/27533 26783/27561 26752/27523 +f 17221/27549 26765/27538 17217/27548 +f 5352/27551 5344/27539 26756/27529 +f 26784/27562 26767/27541 26766/27540 +f 17221/27549 26785/27563 26766/27540 +f 26767/27541 26784/27562 26774/27550 +f 26755/27528 26774/27550 26786/27564 +f 26755/27528 5357/27565 5352/27551 +f 22709/27552 26787/27566 26768/27542 +f 26768/27542 26787/27566 26769/27543 +f 26769/27543 26787/27566 26770/27544 +f 26775/27553 26788/27567 26758/27531 +f 26789/27568 26775/27553 26770/27544 +f 26790/27569 26776/27554 26758/27531 +f 26791/27570 26771/27545 26776/27554 +f 26782/27560 26764/27537 26771/27545 +f 26777/27555 26751/27522 26792/27571 +f 26793/27572 26760/27533 26777/27555 +f 26779/27557 26762/27535 26778/27556 +f 26772/27546 26794/27573 26778/27556 +f 26779/27557 26781/27559 26763/27536 +f 26780/27558 26773/27547 26795/27574 +f 26792/27571 26751/27522 26780/27558 +f 26796/27575 26773/27547 26781/27559 +f 26772/27546 26782/27560 26794/27573 +f 26783/27561 26760/27533 26793/27572 +f 26784/27562 26766/27540 26797/27576 +f 17221/27549 26798/27577 26785/27563 +f 26785/27563 26797/27576 26766/27540 +f 26797/27576 26774/27550 26784/27562 +f 26755/27528 26786/27564 26799/27578 +f 26800/27579 26786/27564 26774/27550 +f 5357/27565 26755/27528 26799/27578 +f 26787/27566 22709/27552 22762/27580 +f 22762/27580 26770/27544 26787/27566 +f 26790/27569 26758/27531 26788/27567 +f 26775/27553 22860/27581 26788/27567 +f 22762/27580 26789/27568 26770/27544 +f 26775/27553 26789/27568 22860/27581 +f 26801/27582 26776/27554 26790/27569 +f 26771/27545 26791/27570 26782/27560 +f 26776/27554 26802/27583 26791/27570 +f 26777/27555 26792/27571 26793/27572 +f 26778/27556 26794/27573 26803/27584 +f 26796/27575 26795/27574 26773/27547 +f 26795/27574 26792/27571 26780/27558 +f 26804/27585 26794/27573 26782/27560 +f 17220/27586 26798/27577 17221/27549 +f 26785/27563 26798/27577 26805/27587 +f 26785/27563 26805/27587 26797/27576 +f 26800/27579 26774/27550 26797/27576 +f 26799/27578 26786/27564 26806/27588 +f 26800/27579 26807/27589 26786/27564 +f 5358/27590 5357/27565 26799/27578 +f 22955/27591 26790/27569 26788/27567 +f 22860/27581 22955/27591 26788/27567 +f 22710/27592 26789/27568 22762/27580 +f 22860/27581 26789/27568 22710/27592 +f 26808/27593 26776/27554 26801/27582 +f 26809/27594 26801/27582 26790/27569 +f 26804/27585 26782/27560 26791/27570 +f 26791/27570 26802/27583 26804/27585 +f 26776/27554 26808/27593 26802/27583 +f 26803/27584 26794/27573 26810/27595 +f 26778/27556 26803/27584 26811/27596 +f 26810/27595 26794/27573 26804/27585 +f 26798/27577 17220/27586 17219/27597 +f 26798/27577 17219/27597 26805/27587 +f 26812/27598 26797/27576 26805/27587 +f 26800/27579 26797/27576 26807/27589 +f 26799/27578 26806/27588 26813/27599 +f 26806/27588 26786/27564 26814/27600 +f 26807/27589 26815/27601 26786/27564 +f 26799/27578 26816/27602 5358/27590 +f 26809/27594 26790/27569 22955/27591 +f 26817/27603 26808/27593 26801/27582 +f 26801/27582 26809/27594 26817/27603 +f 26802/27583 26818/27604 26804/27585 +f 26808/27593 26819/27605 26802/27583 +f 26803/27584 26810/27595 26820/27606 +f 26803/27584 26167/27607 26811/27596 +f 26818/27604 26810/27595 26804/27585 +f 17215/27608 26805/27587 17219/27597 +f 26805/27587 17215/27608 26812/27598 +f 26797/27576 26812/27598 26807/27589 +f 26806/27588 26821/27609 26813/27599 +f 26813/27599 26816/27602 26799/27578 +f 26814/27600 26786/27564 26815/27601 +f 26822/27610 26806/27588 26814/27600 +f 26815/27601 26807/27589 26823/27611 +f 5353/27612 5358/27590 26816/27602 +f 26824/27613 26809/27594 22955/27591 +f 26808/27593 26817/27603 26825/27614 +f 26114/27615 26817/27603 26809/27594 +f 26802/27583 26819/27605 26818/27604 +f 26826/27616 26819/27605 26808/27593 +f 26820/27606 26810/27595 26818/27604 +f 26820/27606 26827/27617 26803/27584 +f 26167/27607 26803/27584 26828/27618 +f 26812/27598 17215/27608 26829/27619 +f 26823/27611 26807/27589 26812/27598 +f 26822/27610 26821/27609 26806/27588 +f 5353/27612 26813/27599 26821/27609 +f 26816/27602 26813/27599 5353/27612 +f 26814/27600 26815/27601 26830/27620 +f 26831/27621 26822/27610 26814/27600 +f 26823/27611 26832/27622 26815/27601 +f 26114/27615 26809/27594 26824/27613 +f 26824/27613 22955/27591 26114/27615 +f 26826/27616 26808/27593 26825/27614 +f 26817/27603 26130/27623 26825/27614 +f 26130/27623 26817/27603 26114/27615 +f 26818/27604 26819/27605 26833/27624 +f 26819/27605 26826/27616 26833/27624 +f 26820/27606 26818/27604 26833/27624 +f 26827/27617 26820/27606 26833/27624 +f 26803/27584 26827/27617 26828/27618 +f 26828/27618 26130/27623 26167/27607 +f 17215/27608 26834/27625 26829/27619 +f 26812/27598 26829/27619 26823/27611 +f 26821/27609 26822/27610 26835/27626 +f 5345/27627 5353/27612 26821/27609 +f 26815/27601 26832/27622 26830/27620 +f 26830/27620 26831/27621 26814/27600 +f 26831/27621 26836/27628 26822/27610 +f 26829/27619 26832/27622 26823/27611 +f 22955/27591 23005/27629 26114/27615 +f 26825/27614 26130/27623 26826/27616 +f 26826/27616 26827/27617 26833/27624 +f 26827/27617 26826/27616 26828/27618 +f 26828/27618 26826/27616 26130/27623 +f 26834/27625 26832/27622 26829/27619 +f 26834/27625 17215/27608 17207/27630 +f 26835/27626 26822/27610 26836/27628 +f 26835/27626 5345/27627 26821/27609 +f 26830/27620 26832/27622 26837/27631 +f 26838/27632 26831/27621 26830/27620 +f 26831/27621 17179/27633 26836/27628 +f 26839/27634 26832/27622 26834/27625 +f 26839/27634 26834/27625 17207/27630 +f 26835/27626 26836/27628 5349/27635 +f 26835/27626 5349/27635 5345/27627 +f 26840/27636 26837/27631 26832/27622 +f 26838/27632 26830/27620 26837/27631 +f 26838/27632 26841/27637 26831/27621 +f 26831/27621 26841/27637 17179/27633 +f 5349/27635 26836/27628 17179/27633 +f 26840/27636 26832/27622 26839/27634 +f 17207/27630 17194/27638 26839/27634 +f 26842/27639 26837/27631 26840/27636 +f 26837/27631 26842/27639 26838/27632 +f 26838/27632 26842/27639 26841/27637 +f 17171/27640 17179/27633 26841/27637 +f 17187/27641 26840/27636 26839/27634 +f 17194/27638 17187/27641 26839/27634 +f 17170/27642 26842/27639 26840/27636 +f 26842/27639 17171/27640 26841/27637 +f 26840/27636 17187/27641 17170/27642 +f 17170/27642 17163/27643 26842/27639 +f 17163/27643 17171/27640 26842/27639 +f 26843/27644 26844/27645 26845/27646 +f 19810/27647 26844/27645 26843/27644 +f 26844/27645 26846/27648 26845/27646 +f 26843/27644 26845/27646 26847/27649 +f 26846/27648 26844/27645 19810/27647 +f 19757/27650 19810/27647 26843/27644 +f 26845/27646 26846/27648 26848/27651 +f 26845/27646 26849/27652 26847/27649 +f 19757/27650 26843/27644 26847/27649 +f 19810/27647 26850/27653 26846/27648 +f 26848/27651 26846/27648 26851/27654 +f 26852/27655 26845/27646 26848/27651 +f 26849/27652 26845/27646 26853/27656 +f 26847/27649 26849/27652 26854/27657 +f 26847/27649 19727/27658 19757/27650 +f 19841/27659 26850/27653 19810/27647 +f 26846/27648 26850/27653 26851/27654 +f 26851/27654 26855/27660 26848/27651 +f 26845/27646 26852/27655 26856/27661 +f 26857/27662 26852/27655 26848/27651 +f 26858/27663 26853/27656 26845/27646 +f 26859/27664 26849/27652 26853/27656 +f 19836/27665 26854/27657 26849/27652 +f 19727/27658 26847/27649 26854/27657 +f 26860/27666 26850/27653 19841/27659 +f 26861/27667 26851/27654 26850/27653 +f 26855/27660 26851/27654 26861/27667 +f 26855/27660 26862/27668 26848/27651 +f 26856/27661 26852/27655 26863/27669 +f 26858/27663 26845/27646 26856/27661 +f 26848/27651 26862/27668 26857/27662 +f 26857/27662 26864/27670 26852/27655 +f 26865/27671 26853/27656 26858/27663 +f 19836/27665 26849/27652 26859/27664 +f 26853/27656 26866/27672 26859/27664 +f 26854/27657 19836/27665 19783/27673 +f 26854/27657 19783/27673 19727/27658 +f 26860/27666 19841/27659 19807/27674 +f 26860/27666 26867/27675 26850/27653 +f 26850/27653 26867/27675 26861/27667 +f 26861/27667 26868/27676 26855/27660 +f 26862/27668 26855/27660 26869/27677 +f 26863/27669 26852/27655 26864/27670 +f 26870/27678 26856/27661 26863/27669 +f 26871/27679 26858/27663 26856/27661 +f 26862/27668 26872/27680 26857/27662 +f 26864/27670 26857/27662 26873/27681 +f 26853/27656 26865/27671 26866/27672 +f 26874/27682 26865/27671 26858/27663 +f 26875/27683 19836/27665 26859/27664 +f 26859/27664 26866/27672 26876/27684 +f 26877/27685 26860/27666 19807/27674 +f 26860/27666 26878/27686 26867/27675 +f 26868/27676 26861/27667 26867/27675 +f 26868/27676 26879/27687 26855/27660 +f 26869/27677 26855/27660 26880/27688 +f 26862/27668 26869/27677 26881/27689 +f 26863/27669 26864/27670 26882/27690 +f 26871/27679 26856/27661 26870/27678 +f 26883/27691 26870/27678 26863/27669 +f 26871/27679 26874/27682 26858/27663 +f 26884/27692 26872/27680 26862/27668 +f 26885/27693 26857/27662 26872/27680 +f 26857/27662 26885/27693 26873/27681 +f 26873/27681 26886/27694 26864/27670 +f 26887/27695 26866/27672 26865/27671 +f 26888/27696 26865/27671 26874/27682 +f 26889/27697 26875/27683 26859/27664 +f 19836/27665 26875/27683 19837/27698 +f 26876/27684 26890/27699 26859/27664 +f 26876/27684 26866/27672 26887/27695 +f 26878/27686 26860/27666 26877/27685 +f 19807/27674 19781/27700 26877/27685 +f 26867/27675 26878/27686 26891/27701 +f 26868/27676 26867/27675 26892/27702 +f 26855/27660 26879/27687 26880/27688 +f 26879/27687 26868/27676 26893/27703 +f 26880/27688 26894/27704 26869/27677 +f 26881/27689 26869/27677 26895/27705 +f 26881/27689 26884/27692 26862/27668 +f 26863/27669 26882/27690 26883/27691 +f 26886/27694 26882/27690 26864/27670 +f 26896/27706 26871/27679 26870/27678 +f 26897/27707 26870/27678 26883/27691 +f 26898/27708 26874/27682 26871/27679 +f 26884/27692 26899/27709 26872/27680 +f 26900/27710 26885/27693 26872/27680 +f 26873/27681 26885/27693 26901/27711 +f 26902/27712 26886/27694 26873/27681 +f 26887/27695 26865/27671 26888/27696 +f 26903/27713 26888/27696 26874/27682 +f 26904/27714 26875/27683 26889/27697 +f 26890/27699 26889/27697 26859/27664 +f 19837/27698 26875/27683 26904/27714 +f 26876/27684 26905/27715 26890/27699 +f 26876/27684 26887/27695 26905/27715 +f 26877/27685 26891/27701 26878/27686 +f 26906/27716 26877/27685 19781/27700 +f 26891/27701 26892/27702 26867/27675 +f 26868/27676 26892/27702 26893/27703 +f 26879/27687 26907/27717 26880/27688 +f 26893/27703 26908/27718 26879/27687 +f 26894/27704 26880/27688 26909/27719 +f 26895/27705 26869/27677 26894/27704 +f 26910/27720 26881/27689 26895/27705 +f 26884/27692 26881/27689 26910/27720 +f 26883/27691 26882/27690 26911/27721 +f 26912/27722 26882/27690 26886/27694 +f 26871/27679 26896/27706 26898/27708 +f 26870/27678 26897/27707 26896/27706 +f 26883/27691 26913/27723 26897/27707 +f 26898/27708 26903/27713 26874/27682 +f 26872/27680 26899/27709 26914/27724 +f 26899/27709 26884/27692 26915/27725 +f 26901/27711 26885/27693 26900/27710 +f 26914/27724 26900/27710 26872/27680 +f 26902/27712 26873/27681 26901/27711 +f 26916/27726 26886/27694 26902/27712 +f 26888/27696 26917/27727 26887/27695 +f 26917/27727 26888/27696 26903/27713 +f 26904/27714 26889/27697 26918/27728 +f 26890/27699 26918/27728 26889/27697 +f 19837/27698 26904/27714 19838/27729 +f 26919/27730 26890/27699 26905/27715 +f 26920/27731 26905/27715 26887/27695 +f 26877/27685 26921/27732 26891/27701 +f 26922/27733 26877/27685 26906/27716 +f 26906/27716 19781/27700 26923/27734 +f 26892/27702 26891/27701 26924/27735 +f 26892/27702 26908/27718 26893/27703 +f 26925/27736 26907/27717 26879/27687 +f 26926/27737 26880/27688 26907/27717 +f 26879/27687 26908/27718 26925/27736 +f 26909/27719 26880/27688 26926/27737 +f 26894/27704 26909/27719 26927/27738 +f 26894/27704 26927/27738 26895/27705 +f 26928/27739 26910/27720 26895/27705 +f 26915/27725 26884/27692 26910/27720 +f 26911/27721 26913/27723 26883/27691 +f 26912/27722 26911/27721 26882/27690 +f 26886/27694 26929/27740 26912/27722 +f 26930/27741 26898/27708 26896/27706 +f 26897/27707 26930/27741 26896/27706 +f 26931/27742 26897/27707 26913/27723 +f 26898/27708 26932/27743 26903/27713 +f 26899/27709 26933/27744 26914/27724 +f 26915/27725 26934/27745 26899/27709 +f 26901/27711 26900/27710 26935/27746 +f 26900/27710 26914/27724 26936/27747 +f 26937/27748 26902/27712 26901/27711 +f 26916/27726 26929/27740 26886/27694 +f 26937/27748 26916/27726 26902/27712 +f 26920/27731 26887/27695 26917/27727 +f 26917/27727 26903/27713 26938/27749 +f 26939/27750 26904/27714 26918/27728 +f 26890/27699 26919/27730 26918/27728 +f 26904/27714 26939/27750 19838/27729 +f 26940/27751 26919/27730 26905/27715 +f 26920/27731 26941/27752 26905/27715 +f 26922/27733 26921/27732 26877/27685 +f 26921/27732 26942/27753 26891/27701 +f 26922/27733 26906/27716 26943/27754 +f 26944/27755 26906/27716 26923/27734 +f 26945/27756 26923/27734 19781/27700 +f 26924/27735 26891/27701 26942/27753 +f 26908/27718 26892/27702 26924/27735 +f 26907/27717 26925/27736 26946/27757 +f 26907/27717 26947/27758 26926/27737 +f 26925/27736 26908/27718 26946/27757 +f 26948/27759 26909/27719 26926/27737 +f 26927/27738 26909/27719 26949/27760 +f 26949/27760 26895/27705 26927/27738 +f 26915/27725 26910/27720 26928/27739 +f 26895/27705 26950/27761 26928/27739 +f 26913/27723 26911/27721 26951/27762 +f 26952/27763 26911/27721 26912/27722 +f 26952/27763 26912/27722 26929/27740 +f 26932/27743 26898/27708 26930/27741 +f 26931/27742 26930/27741 26897/27707 +f 26913/27723 26953/27764 26931/27742 +f 26932/27743 26938/27749 26903/27713 +f 26934/27745 26933/27744 26899/27709 +f 26914/27724 26933/27744 26936/27747 +f 26915/27725 26933/27744 26934/27745 +f 26900/27710 26936/27747 26935/27746 +f 26954/27765 26901/27711 26935/27746 +f 26955/27766 26937/27748 26901/27711 +f 26929/27740 26916/27726 26956/27767 +f 26937/27748 26957/27768 26916/27726 +f 26917/27727 26958/27769 26920/27731 +f 26917/27727 26938/27749 26959/27770 +f 26960/27771 26939/27750 26918/27728 +f 26940/27751 26918/27728 26919/27730 +f 19838/27729 26939/27750 26961/27772 +f 26905/27715 26941/27752 26940/27751 +f 26941/27752 26920/27731 26962/27773 +f 26921/27732 26922/27733 26963/27774 +f 26921/27732 26963/27774 26942/27753 +f 26906/27716 26964/27775 26943/27754 +f 26965/27776 26922/27733 26943/27754 +f 26944/27755 26964/27775 26906/27716 +f 26945/27756 26944/27755 26923/27734 +f 19781/27700 19726/27777 26945/27756 +f 26942/27753 26966/27778 26924/27735 +f 26966/27778 26908/27718 26924/27735 +f 26947/27758 26907/27717 26946/27757 +f 26947/27758 26967/27779 26926/27737 +f 26908/27718 26968/27780 26946/27757 +f 26926/27737 26969/27781 26948/27759 +f 26949/27760 26909/27719 26948/27759 +f 26950/27761 26895/27705 26949/27760 +f 26950/27761 26915/27725 26928/27739 +f 26952/27763 26951/27762 26911/27721 +f 26951/27762 26970/27782 26913/27723 +f 26952/27763 26929/27740 26951/27762 +f 26930/27741 26971/27783 26932/27743 +f 26931/27742 26971/27783 26930/27741 +f 26971/27783 26931/27742 26953/27764 +f 26970/27782 26953/27764 26913/27723 +f 26938/27749 26932/27743 26972/27784 +f 26936/27747 26933/27744 26973/27785 +f 26933/27744 26915/27725 26950/27761 +f 26935/27746 26936/27747 26974/27786 +f 26935/27746 26974/27786 26954/27765 +f 26901/27711 26954/27765 26955/27766 +f 26937/27748 26955/27766 26975/27787 +f 26956/27767 26916/27726 26976/27788 +f 26956/27767 26951/27762 26929/27740 +f 26976/27788 26916/27726 26957/27768 +f 26975/27787 26957/27768 26937/27748 +f 26977/27789 26958/27769 26917/27727 +f 26958/27769 26978/27790 26920/27731 +f 26979/27791 26917/27727 26959/27770 +f 26972/27784 26959/27770 26938/27749 +f 26918/27728 26940/27751 26960/27771 +f 26960/27771 26961/27772 26939/27750 +f 26961/27772 19839/27792 19838/27729 +f 26960/27771 26940/27751 26941/27752 +f 26941/27752 26962/27773 26980/27793 +f 26920/27731 26978/27790 26962/27773 +f 26963/27774 26922/27733 26965/27776 +f 26942/27753 26963/27774 26981/27794 +f 26943/27754 26964/27775 26982/27795 +f 26965/27776 26943/27754 26983/27796 +f 26984/27797 26964/27775 26944/27755 +f 26945/27756 26985/27798 26944/27755 +f 19726/27777 26986/27799 26945/27756 +f 26981/27794 26966/27778 26942/27753 +f 26987/27800 26908/27718 26966/27778 +f 26968/27780 26947/27758 26946/27757 +f 26967/27779 26969/27781 26926/27737 +f 26967/27779 26947/27758 26988/27801 +f 26908/27718 26987/27800 26968/27780 +f 26969/27781 26949/27760 26948/27759 +f 26949/27760 26989/27802 26950/27761 +f 26956/27767 26970/27782 26951/27762 +f 26972/27784 26932/27743 26971/27783 +f 26990/27803 26971/27783 26953/27764 +f 26970/27782 26991/27804 26953/27764 +f 26973/27785 26992/27805 26936/27747 +f 26973/27785 26933/27744 26993/27806 +f 26933/27744 26950/27761 26993/27806 +f 26992/27805 26974/27786 26936/27747 +f 26994/27807 26954/27765 26974/27786 +f 26975/27787 26955/27766 26954/27765 +f 26976/27788 26995/27808 26956/27767 +f 26976/27788 26957/27768 26994/27807 +f 26957/27768 26975/27787 26996/27809 +f 26958/27769 26977/27789 26997/27810 +f 26917/27727 26998/27811 26977/27789 +f 26997/27810 26978/27790 26958/27769 +f 26998/27811 26917/27727 26979/27791 +f 26959/27770 26999/27812 26979/27791 +f 26972/27784 27000/27813 26959/27770 +f 27001/27814 26961/27772 26960/27771 +f 26961/27772 27001/27814 19839/27792 +f 26980/27793 26960/27771 26941/27752 +f 27002/27815 26980/27793 26962/27773 +f 26978/27790 27002/27815 26962/27773 +f 26965/27776 26981/27794 26963/27774 +f 26982/27795 26964/27775 27003/27816 +f 26983/27796 26943/27754 26982/27795 +f 26983/27796 27004/27817 26965/27776 +f 26964/27775 26984/27797 27003/27816 +f 26944/27755 26985/27798 26984/27797 +f 26985/27798 26945/27756 27005/27818 +f 26986/27799 27005/27818 26945/27756 +f 26986/27799 19726/27777 19703/27819 +f 26981/27794 26968/27780 26966/27778 +f 26968/27780 26987/27800 26966/27778 +f 26947/27758 26968/27780 26988/27801 +f 27006/27820 26969/27781 26967/27779 +f 26988/27801 27006/27820 26967/27779 +f 26969/27781 27006/27820 26949/27760 +f 27006/27820 26989/27802 26949/27760 +f 26993/27806 26950/27761 26989/27802 +f 26995/27808 26970/27782 26956/27767 +f 26990/27803 26972/27784 26971/27783 +f 26953/27764 26991/27804 26990/27803 +f 26991/27804 26970/27782 27007/27821 +f 27008/27822 26992/27805 26973/27785 +f 26973/27785 26993/27806 27008/27822 +f 26992/27805 27009/27823 26974/27786 +f 27009/27823 26994/27807 26974/27786 +f 26994/27807 26996/27809 26954/27765 +f 26954/27765 26996/27809 26975/27787 +f 26994/27807 26995/27808 26976/27788 +f 26996/27809 26994/27807 26957/27768 +f 26977/27789 27010/27824 26997/27810 +f 26977/27789 26998/27811 27010/27824 +f 26997/27810 27011/27825 26978/27790 +f 27010/27824 26998/27811 26979/27791 +f 27010/27824 26979/27791 26999/27812 +f 26999/27812 26959/27770 27000/27813 +f 26990/27803 27000/27813 26972/27784 +f 27012/27826 27001/27814 26960/27771 +f 27013/27827 19839/27792 27001/27814 +f 26980/27793 27012/27826 26960/27771 +f 26980/27793 27002/27815 27014/27828 +f 26978/27790 27015/27829 27002/27815 +f 26981/27794 26965/27776 27004/27817 +f 27016/27830 26982/27795 27003/27816 +f 26982/27795 27016/27830 26983/27796 +f 8535/27831 27004/27817 26983/27796 +f 27003/27816 26984/27797 27016/27830 +f 27017/27832 26984/27797 26985/27798 +f 27005/27818 27018/27833 26985/27798 +f 27019/27834 27005/27818 26986/27799 +f 26986/27799 19703/27819 27019/27834 +f 26968/27780 26981/27794 26988/27801 +f 27006/27820 26988/27801 27020/27835 +f 27006/27820 27021/27836 26989/27802 +f 26993/27806 26989/27802 27022/27837 +f 27007/27821 26970/27782 26995/27808 +f 26990/27803 26991/27804 27023/27838 +f 27024/27839 26991/27804 27007/27821 +f 27009/27823 26992/27805 27008/27822 +f 27008/27822 26993/27806 27022/27837 +f 27024/27839 26994/27807 27009/27823 +f 26994/27807 27024/27839 26995/27808 +f 26997/27810 27010/27824 27011/27825 +f 26978/27790 27011/27825 27015/27829 +f 27025/27840 27010/27824 26999/27812 +f 27026/27841 26999/27812 27000/27813 +f 26990/27803 27023/27838 27000/27813 +f 27001/27814 27012/27826 27013/27827 +f 19839/27792 27013/27827 27027/27842 +f 27012/27826 26980/27793 27028/27843 +f 27029/27844 27014/27828 27002/27815 +f 27028/27843 26980/27793 27014/27828 +f 27015/27829 27029/27844 27002/27815 +f 27004/27817 8646/27845 26981/27794 +f 26983/27796 27016/27830 8535/27831 +f 8535/27831 8646/27845 27004/27817 +f 26984/27797 27030/27846 27016/27830 +f 26985/27798 27018/27833 27017/27832 +f 27030/27846 26984/27797 27017/27832 +f 27031/27847 27018/27833 27005/27818 +f 27005/27818 27019/27834 27031/27847 +f 27032/27848 27019/27834 19703/27819 +f 26981/27794 8646/27845 26988/27801 +f 27020/27835 26988/27801 8645/27849 +f 27020/27835 27021/27836 27006/27820 +f 27021/27836 27033/27850 26989/27802 +f 26989/27802 27033/27850 27022/27837 +f 27007/27821 26995/27808 27024/27839 +f 27023/27838 26991/27804 27024/27839 +f 27034/27851 27009/27823 27008/27822 +f 27022/27837 27035/27852 27008/27822 +f 27024/27839 27009/27823 27034/27851 +f 27036/27853 27011/27825 27010/27824 +f 27011/27825 27037/27854 27015/27829 +f 27025/27840 27036/27853 27010/27824 +f 27036/27853 27025/27840 26999/27812 +f 27026/27841 27038/27855 26999/27812 +f 27039/27856 27026/27841 27000/27813 +f 27023/27838 27039/27856 27000/27813 +f 27013/27827 27012/27826 27040/27857 +f 19730/27858 19839/27792 27027/27842 +f 27027/27842 27013/27827 27041/27859 +f 27028/27843 27040/27857 27012/27826 +f 27042/27860 27014/27828 27029/27844 +f 27028/27843 27014/27828 27043/27861 +f 27029/27844 27015/27829 27037/27854 +f 27016/27830 27030/27846 8535/27831 +f 27018/27833 27044/27862 27017/27832 +f 27017/27832 27045/27863 27030/27846 +f 27046/27864 27018/27833 27031/27847 +f 27019/27834 27032/27848 27031/27847 +f 19703/27819 27047/27865 27032/27848 +f 26988/27801 8646/27845 8645/27849 +f 8645/27849 27048/27866 27020/27835 +f 27020/27835 27049/27867 27021/27836 +f 27033/27850 27021/27836 27050/27868 +f 27022/27837 27033/27850 27051/27869 +f 27023/27838 27024/27839 27052/27870 +f 27008/27822 27035/27852 27034/27851 +f 27035/27852 27022/27837 27053/27871 +f 27024/27839 27034/27851 27052/27870 +f 27037/27854 27011/27825 27036/27853 +f 27038/27855 27036/27853 26999/27812 +f 27038/27855 27026/27841 27054/27872 +f 27026/27841 27039/27856 27055/27873 +f 27039/27856 27023/27838 27056/27874 +f 27041/27859 27013/27827 27040/27857 +f 19730/27858 27027/27842 27057/27875 +f 27041/27859 27058/27876 27027/27842 +f 27028/27843 27059/27877 27040/27857 +f 27060/27878 27042/27860 27029/27844 +f 27014/27828 27042/27860 27043/27861 +f 27059/27877 27028/27843 27043/27861 +f 27061/27879 27029/27844 27037/27854 +f 27062/27880 8535/27831 27030/27846 +f 27044/27862 27018/27833 27046/27864 +f 27017/27832 27044/27862 27045/27863 +f 27062/27880 27030/27846 27045/27863 +f 27046/27864 27031/27847 27063/27881 +f 27032/27848 27064/27882 27031/27847 +f 27047/27865 19703/27819 19754/27883 +f 27064/27882 27032/27848 27047/27865 +f 8645/27849 8610/27884 27048/27866 +f 27020/27835 27048/27866 27049/27867 +f 27050/27868 27021/27836 27049/27867 +f 27065/27885 27033/27850 27050/27868 +f 27051/27869 27066/27886 27022/27837 +f 27033/27850 27067/27887 27051/27869 +f 27052/27870 27068/27888 27023/27838 +f 27035/27852 27069/27889 27034/27851 +f 27066/27886 27053/27871 27022/27837 +f 27069/27889 27035/27852 27053/27871 +f 27034/27851 27068/27888 27052/27870 +f 27037/27854 27036/27853 27038/27855 +f 27054/27872 27070/27890 27038/27855 +f 27055/27873 27054/27872 27026/27841 +f 27055/27873 27039/27856 27071/27891 +f 27056/27874 27023/27838 27072/27892 +f 27071/27891 27039/27856 27056/27874 +f 27040/27857 27059/27877 27041/27859 +f 19706/27893 19730/27858 27057/27875 +f 27057/27875 27027/27842 27073/27894 +f 27041/27859 27074/27895 27058/27876 +f 27058/27876 27073/27894 27027/27842 +f 27042/27860 27060/27878 27075/27896 +f 27061/27879 27060/27878 27029/27844 +f 27043/27861 27042/27860 27076/27897 +f 27043/27861 27077/27898 27059/27877 +f 27037/27854 27038/27855 27061/27879 +f 8535/27831 27062/27880 8453/27899 +f 27046/27864 27078/27900 27044/27862 +f 27045/27863 27044/27862 27079/27901 +f 27062/27880 27045/27863 27079/27901 +f 27063/27881 27031/27847 27064/27882 +f 27080/27902 27046/27864 27063/27881 +f 27047/27865 19754/27883 27081/27903 +f 27063/27881 27064/27882 27047/27865 +f 27082/27904 27048/27866 8610/27884 +f 27083/27905 27049/27867 27048/27866 +f 27049/27867 27083/27905 27050/27868 +f 27067/27887 27033/27850 27065/27885 +f 27083/27905 27065/27885 27050/27868 +f 27084/27906 27066/27886 27051/27869 +f 27085/27907 27051/27869 27067/27887 +f 27072/27892 27023/27838 27068/27888 +f 27034/27851 27069/27889 27086/27908 +f 27087/27909 27053/27871 27066/27886 +f 27053/27871 27086/27908 27069/27889 +f 27034/27851 27086/27908 27068/27888 +f 27070/27890 27061/27879 27038/27855 +f 27088/27910 27070/27890 27054/27872 +f 27054/27872 27055/27873 27088/27910 +f 27055/27873 27071/27891 24880/27911 +f 27072/27892 27089/27912 27056/27874 +f 27090/27913 27071/27891 27056/27874 +f 27059/27877 27074/27895 27041/27859 +f 27091/27914 19706/27893 27057/27875 +f 27057/27875 27073/27894 27092/27915 +f 27093/27916 27058/27876 27074/27895 +f 27093/27916 27073/27894 27058/27876 +f 27075/27896 27060/27878 27094/27917 +f 27075/27896 27076/27897 27042/27860 +f 27095/27918 27060/27878 27061/27879 +f 27076/27897 27096/27919 27043/27861 +f 27043/27861 27096/27919 27077/27898 +f 27074/27895 27059/27877 27077/27898 +f 27097/27920 8453/27899 27062/27880 +f 27046/27864 27080/27902 27078/27900 +f 27044/27862 27078/27900 27079/27901 +f 27079/27901 27078/27900 27062/27880 +f 27063/27881 27081/27903 27080/27902 +f 8729/27921 27081/27903 19754/27883 +f 27047/27865 27081/27903 27063/27881 +f 27082/27904 27083/27905 27048/27866 +f 8567/27922 27082/27904 8610/27884 +f 27083/27905 27067/27887 27065/27885 +f 27087/27909 27066/27886 27084/27906 +f 27085/27907 27084/27906 27051/27869 +f 27067/27887 27098/27923 27085/27907 +f 27099/27924 27072/27892 27068/27888 +f 27053/27871 27087/27909 27100/27925 +f 27053/27871 27100/27925 27086/27908 +f 27086/27908 27100/27925 27068/27888 +f 27095/27918 27061/27879 27070/27890 +f 27070/27890 27088/27910 27101/27926 +f 27055/27873 24880/27911 27088/27910 +f 27071/27891 27090/27913 24880/27911 +f 27099/27924 27089/27912 27072/27892 +f 27056/27874 27089/27912 27090/27913 +f 19731/27927 19706/27893 27091/27914 +f 27057/27875 27102/27928 27091/27914 +f 27103/27929 27057/27875 27092/27915 +f 27092/27915 27073/27894 27093/27916 +f 27093/27916 27074/27895 27104/27930 +f 27095/27918 27094/27917 27060/27878 +f 27075/27896 27094/27917 27105/27931 +f 27076/27897 27075/27896 27106/27932 +f 27107/27933 27096/27919 27076/27897 +f 27108/27934 27077/27898 27096/27919 +f 27074/27895 27077/27898 27109/27935 +f 27062/27880 27078/27900 27097/27920 +f 8453/27899 27097/27920 8493/27936 +f 27110/27937 27078/27900 27080/27902 +f 27081/27903 27111/27938 27080/27902 +f 27111/27938 27081/27903 8729/27921 +f 27112/27939 27083/27905 27082/27904 +f 27112/27939 27082/27904 8567/27922 +f 27067/27887 27083/27905 27112/27939 +f 27113/27940 27087/27909 27084/27906 +f 27084/27906 27085/27907 27114/27941 +f 27114/27941 27085/27907 27098/27923 +f 27098/27923 27067/27887 27112/27939 +f 27100/27925 27099/27924 27068/27888 +f 27115/27942 27100/27925 27087/27909 +f 27070/27890 27101/27926 27095/27918 +f 27101/27926 27088/27910 24874/27943 +f 27088/27910 24880/27911 24874/27943 +f 24880/27911 27090/27913 27116/27944 +f 27117/27945 27089/27912 27099/27924 +f 27090/27913 27089/27912 27118/27946 +f 27102/27928 19731/27927 27091/27914 +f 27057/27875 27103/27929 27102/27928 +f 27103/27929 27092/27915 27119/27947 +f 27119/27947 27092/27915 27093/27916 +f 27093/27916 27104/27930 27120/27948 +f 27109/27935 27104/27930 27074/27895 +f 27121/27949 27094/27917 27095/27918 +f 27122/27950 27075/27896 27105/27931 +f 24896/27951 27105/27931 27094/27917 +f 27075/27896 27122/27950 27106/27932 +f 27076/27897 27106/27932 27107/27933 +f 27123/27952 27096/27919 27107/27933 +f 27108/27934 27109/27935 27077/27898 +f 27123/27952 27108/27934 27096/27919 +f 27078/27900 8493/27936 27097/27920 +f 8493/27936 27078/27900 27110/27937 +f 27110/27937 27080/27902 27124/27953 +f 27080/27902 27111/27938 27125/27954 +f 27125/27954 27111/27938 8729/27921 +f 27112/27939 8567/27922 27126/27955 +f 27127/27956 27113/27940 27084/27906 +f 27115/27942 27087/27909 27113/27940 +f 27114/27941 27128/27957 27084/27906 +f 27098/27923 27129/27958 27114/27941 +f 27126/27955 27098/27923 27112/27939 +f 27100/27925 27115/27942 27099/27924 +f 27101/27926 27130/27959 27095/27918 +f 24882/27960 27101/27926 24874/27943 +f 27090/27913 27131/27961 27116/27944 +f 24880/27911 27116/27944 24887/27962 +f 27118/27946 27089/27912 27117/27945 +f 27099/27924 27115/27942 27117/27945 +f 27131/27961 27090/27913 27118/27946 +f 27102/27928 19786/27963 19731/27927 +f 27132/27964 27102/27928 27103/27929 +f 27133/27965 27103/27929 27119/27947 +f 27120/27948 27119/27947 27093/27916 +f 27134/27966 27120/27948 27104/27930 +f 27135/27967 27104/27930 27109/27935 +f 27121/27949 24896/27951 27094/27917 +f 27121/27949 27095/27918 27130/27959 +f 27105/27931 27136/27968 27122/27950 +f 27105/27931 24896/27951 24901/27969 +f 27107/27933 27106/27932 27122/27950 +f 27135/27967 27123/27952 27107/27933 +f 27123/27952 27109/27935 27108/27934 +f 27110/27937 8456/27970 8493/27936 +f 27137/27971 27124/27953 27080/27902 +f 27110/27937 27124/27953 27138/27972 +f 27080/27902 27125/27954 27137/27971 +f 27139/27973 27125/27954 8729/27921 +f 8567/27922 8600/27974 27126/27955 +f 27113/27940 27127/27956 27117/27945 +f 27084/27906 27140/27975 27127/27956 +f 27115/27942 27113/27940 27117/27945 +f 27114/27941 27141/27976 27128/27957 +f 27084/27906 27128/27957 27140/27975 +f 27129/27958 27098/27923 27126/27955 +f 27129/27958 27142/27977 27114/27941 +f 24882/27960 27130/27959 27101/27926 +f 24887/27962 27116/27944 27131/27961 +f 27127/27956 27118/27946 27117/27945 +f 27131/27961 27118/27946 27143/27978 +f 19786/27963 27102/27928 27144/27979 +f 27102/27928 27132/27964 27145/27980 +f 27133/27965 27132/27964 27103/27929 +f 27119/27947 27146/27981 27133/27965 +f 27119/27947 27120/27948 27147/27982 +f 27134/27966 27104/27930 27148/27983 +f 27120/27948 27134/27966 27147/27982 +f 27104/27930 27135/27967 27148/27983 +f 27123/27952 27135/27967 27109/27935 +f 24896/27951 27121/27949 24877/27984 +f 24877/27984 27121/27949 27130/27959 +f 24901/27969 27136/27968 27105/27931 +f 27122/27950 27136/27968 27149/27985 +f 27122/27950 27150/27986 27107/27933 +f 27107/27933 27148/27983 27135/27967 +f 27138/27972 8456/27970 27110/27937 +f 27138/27972 27124/27953 27137/27971 +f 27137/27971 27125/27954 27139/27973 +f 8698/27987 27139/27973 8729/27921 +f 8600/27974 27151/27988 27126/27955 +f 27127/27956 27140/27975 27143/27978 +f 27152/27989 27128/27957 27141/27976 +f 27142/27977 27141/27976 27114/27941 +f 27140/27975 27128/27957 27152/27989 +f 27126/27955 27151/27988 27129/27958 +f 27129/27958 27153/27990 27142/27977 +f 24877/27984 27130/27959 24882/27960 +f 27131/27961 27154/27991 24887/27962 +f 27143/27978 27118/27946 27127/27956 +f 27155/27992 27131/27961 27143/27978 +f 27144/27979 27102/27928 27145/27980 +f 19786/27963 27144/27979 27156/27993 +f 27145/27980 27132/27964 27157/27994 +f 27132/27964 27133/27965 27157/27994 +f 27158/27995 27146/27981 27119/27947 +f 27146/27981 27157/27994 27133/27965 +f 27158/27995 27119/27947 27147/27982 +f 27150/27986 27134/27966 27148/27983 +f 27134/27966 27159/27996 27147/27982 +f 24901/27969 24904/27997 27136/27968 +f 27149/27985 27136/27968 24904/27997 +f 27160/27998 27122/27950 27149/27985 +f 27150/27986 27122/27950 27160/27998 +f 27150/27986 27148/27983 27107/27933 +f 27138/27972 8537/27999 8456/27970 +f 27161/28000 27138/27972 27137/27971 +f 27139/27973 27161/28000 27137/27971 +f 27139/27973 8698/27987 27161/28000 +f 27151/27988 8600/27974 8634/28001 +f 27152/27989 27143/27978 27140/27975 +f 27152/27989 27141/27976 27162/28002 +f 27142/27977 27163/28003 27141/27976 +f 27129/27958 27151/27988 27164/28004 +f 27153/27990 27165/28005 27142/27977 +f 27164/28004 27153/27990 27129/27958 +f 27166/28006 27154/27991 27131/27961 +f 27154/27991 24893/28007 24887/27962 +f 27162/28002 27131/27961 27155/27992 +f 27155/27992 27143/27978 27152/27989 +f 27144/27979 27145/27980 27167/28008 +f 27168/28009 27156/27993 27144/27979 +f 27156/27993 19787/28010 19786/27963 +f 27169/28011 27145/27980 27157/27994 +f 27170/28012 27146/27981 27158/27995 +f 27157/27994 27146/27981 27169/28011 +f 27147/27982 27171/28013 27158/27995 +f 27134/27966 27150/27986 27159/27996 +f 27147/27982 27159/27996 27171/28013 +f 27172/28014 27149/27985 24904/27997 +f 27160/27998 27149/27985 27173/28015 +f 27174/28016 27150/27986 27160/27998 +f 27161/28000 8537/27999 27138/27972 +f 27161/28000 8698/27987 8614/28017 +f 8634/28001 27164/28004 27151/27988 +f 27141/27976 27163/28003 27162/28002 +f 27155/27992 27152/27989 27162/28002 +f 27163/28003 27142/27977 27175/28018 +f 27153/27990 27176/28019 27165/28005 +f 27165/28005 27175/28018 27142/27977 +f 27177/28020 27153/27990 27164/28004 +f 27178/28021 27154/27991 27166/28006 +f 27166/28006 27131/27961 27162/28002 +f 24893/28007 27154/27991 27178/28021 +f 27179/28022 27167/28008 27145/27980 +f 27167/28008 27168/28009 27144/27979 +f 27168/28009 27180/28023 27156/27993 +f 27156/27993 27181/28024 19787/28010 +f 27179/28022 27145/27980 27169/28011 +f 27182/28025 27146/27981 27170/28012 +f 27158/27995 27171/28013 27170/28012 +f 27169/28011 27146/27981 27183/28026 +f 27159/27996 27150/27986 27174/28016 +f 27184/28027 27171/28013 27159/27996 +f 24904/27997 27185/28028 27172/28014 +f 27172/28014 27186/28029 27149/27985 +f 27187/28030 27160/27998 27173/28015 +f 27173/28015 27149/27985 27186/28029 +f 27174/28016 27160/27998 27187/28030 +f 8614/28017 8537/27999 27161/28000 +f 27188/28031 27164/28004 8634/28001 +f 27163/28003 27166/28006 27162/28002 +f 27163/28003 27175/28018 27189/28032 +f 27176/28019 27153/27990 27177/28020 +f 27176/28019 27190/28033 27165/28005 +f 27175/28018 27165/28005 27189/28032 +f 27164/28004 27188/28031 27177/28020 +f 27178/28021 27166/28006 27189/28032 +f 24893/28007 27178/28021 27191/28034 +f 27179/28022 27168/28009 27167/28008 +f 27180/28023 27168/28009 27181/28024 +f 27181/28024 27156/27993 27180/28023 +f 19787/28010 27181/28024 27192/28035 +f 27169/28011 27193/28036 27179/28022 +f 27194/28037 27182/28025 27170/28012 +f 27183/28026 27146/27981 27182/28025 +f 27184/28027 27170/28012 27171/28013 +f 27169/28011 27183/28026 27195/28038 +f 27174/28016 27196/28039 27159/27996 +f 27196/28039 27184/28027 27159/27996 +f 27185/28028 24904/27997 24903/28040 +f 27186/28029 27172/28014 27185/28028 +f 27186/28029 27187/28030 27173/28015 +f 27187/28030 27197/28041 27174/28016 +f 8634/28001 8633/28042 27188/28031 +f 27189/28032 27166/28006 27163/28003 +f 27177/28020 27198/28043 27176/28019 +f 27165/28005 27190/28033 27189/28032 +f 27190/28033 27176/28019 27199/28044 +f 27200/28045 27177/28020 27188/28031 +f 27190/28033 27178/28021 27189/28032 +f 27191/28034 27178/28021 27190/28033 +f 24897/28046 24893/28007 27191/28034 +f 27201/28047 27168/28009 27179/28022 +f 27168/28009 27202/28048 27181/28024 +f 27181/28024 27202/28048 27192/28035 +f 19787/28010 27192/28035 19840/28049 +f 27195/28038 27193/28036 27169/28011 +f 27201/28047 27179/28022 27193/28036 +f 27182/28025 27194/28037 27183/28026 +f 27170/28012 27184/28027 27194/28037 +f 27203/28050 27195/28038 27183/28026 +f 27204/28051 27196/28039 27174/28016 +f 27184/28027 27196/28039 27194/28037 +f 24903/28040 27205/28052 27185/28028 +f 27185/28028 27206/28053 27186/28029 +f 27187/28030 27186/28029 27207/28054 +f 27207/28054 27197/28041 27187/28030 +f 27204/28051 27174/28016 27197/28041 +f 8633/28042 8557/28055 27188/28031 +f 27176/28019 27198/28043 27208/28056 +f 27177/28020 27200/28045 27198/28043 +f 27176/28019 27209/28057 27199/28044 +f 27191/28034 27190/28033 27199/28044 +f 27200/28045 27188/28031 8557/28055 +f 27191/28034 27210/28058 24897/28046 +f 27168/28009 27201/28047 27202/28048 +f 27192/28035 27202/28048 19840/28049 +f 27193/28036 27195/28038 27211/28059 +f 27201/28047 27193/28036 27211/28059 +f 27194/28037 27203/28050 27183/28026 +f 27203/28050 27212/28060 27195/28038 +f 27204/28051 27213/28061 27196/28039 +f 27196/28039 27203/28050 27194/28037 +f 27205/28052 24903/28040 24895/28062 +f 27185/28028 27205/28052 27214/28063 +f 27206/28053 27207/28054 27186/28029 +f 27215/28064 27206/28053 27185/28028 +f 27197/28041 27207/28054 27204/28051 +f 27216/28065 27208/28056 27198/28043 +f 27176/28019 27208/28056 27209/28057 +f 27217/28066 27198/28043 27200/28045 +f 27199/28044 27209/28057 27210/28058 +f 27210/28058 27191/28034 27199/28044 +f 8557/28055 27218/28067 27200/28045 +f 24897/28046 27210/28058 27219/28068 +f 27202/28048 27201/28047 27220/28069 +f 27202/28048 27221/28070 19840/28049 +f 27212/28060 27211/28059 27195/28038 +f 27222/28071 27201/28047 27211/28059 +f 27212/28060 27203/28050 27223/28072 +f 27213/28061 27203/28050 27196/28039 +f 27224/28073 27213/28061 27204/28051 +f 24895/28062 27225/28074 27205/28052 +f 27225/28074 27214/28063 27205/28052 +f 27214/28063 27215/28064 27185/28028 +f 27207/28054 27206/28053 27224/28073 +f 27215/28064 27226/28075 27206/28053 +f 27224/28073 27204/28051 27207/28054 +f 27227/28076 27208/28056 27216/28065 +f 27216/28065 27198/28043 27217/28066 +f 27209/28057 27208/28056 27227/28076 +f 27228/28077 27217/28066 27200/28045 +f 27209/28057 27219/28068 27210/28058 +f 27228/28077 27200/28045 27218/28067 +f 8483/28078 27218/28067 8557/28055 +f 24884/28079 24897/28046 27219/28068 +f 27220/28069 27201/28047 27222/28071 +f 27202/28048 27220/28069 27221/28070 +f 27221/28070 27229/28080 19840/28049 +f 27212/28060 27223/28072 27211/28059 +f 27230/28081 27222/28071 27211/28059 +f 27203/28050 27231/28082 27223/28072 +f 27213/28061 27232/28083 27203/28050 +f 27224/28073 27233/28084 27213/28061 +f 27225/28074 24895/28062 27234/28085 +f 27225/28074 27235/28086 27214/28063 +f 27214/28063 27235/28086 27215/28064 +f 27206/28053 27236/28087 27224/28073 +f 27226/28075 27236/28087 27206/28053 +f 27215/28064 27237/28088 27226/28075 +f 27238/28089 27227/28076 27216/28065 +f 24898/28090 27216/28065 27217/28066 +f 27227/28076 27219/28068 27209/28057 +f 24886/28091 27217/28066 27228/28077 +f 27228/28077 27218/28067 27239/28092 +f 8483/28078 27239/28092 27218/28067 +f 27219/28068 27238/28089 24884/28079 +f 27222/28071 27240/28093 27220/28069 +f 27220/28069 27241/28094 27221/28070 +f 27221/28070 27241/28094 27229/28080 +f 27229/28080 27242/28095 19840/28049 +f 27223/28072 27230/28081 27211/28059 +f 27230/28081 27243/28096 27222/28071 +f 27231/28082 27203/28050 27232/28083 +f 27244/28097 27223/28072 27231/28082 +f 27213/28061 27233/28084 27232/28083 +f 27233/28084 27224/28073 27236/28087 +f 24881/28098 27234/28085 24895/28062 +f 27234/28085 27235/28086 27225/28074 +f 27215/28064 27235/28086 27237/28088 +f 27226/28075 27245/28099 27236/28087 +f 27226/28075 27237/28088 27245/28099 +f 27238/28089 27219/28068 27227/28076 +f 24898/28090 27238/28089 27216/28065 +f 24898/28090 27217/28066 24886/28091 +f 27228/28077 27239/28092 24886/28091 +f 27246/28100 27239/28092 8483/28078 +f 27238/28089 24891/28101 24884/28079 +f 27222/28071 27243/28096 27240/28093 +f 27247/28102 27220/28069 27240/28093 +f 27241/28094 27220/28069 27248/28103 +f 27229/28080 27241/28094 27248/28103 +f 16253/28104 27242/28095 27229/28080 +f 27242/28095 16196/28105 19840/28049 +f 27223/28072 27249/28106 27230/28081 +f 27250/28107 27243/28096 27230/28081 +f 27232/28083 27251/28108 27231/28082 +f 27223/28072 27244/28097 27249/28106 +f 27244/28097 27231/28082 27252/28109 +f 27251/28108 27232/28083 27233/28084 +f 27251/28108 27233/28084 27236/28087 +f 27253/28110 27234/28085 24881/28098 +f 27234/28085 27253/28110 27235/28086 +f 27237/28088 27235/28086 27253/28110 +f 27245/28099 27251/28108 27236/28087 +f 27254/28111 27245/28099 27237/28088 +f 24891/28101 27238/28089 24898/28090 +f 24886/28091 27239/28092 27255/28112 +f 8554/28113 27246/28100 8483/28078 +f 27239/28092 27246/28100 27256/28114 +f 27243/28096 27257/28115 27240/28093 +f 27247/28102 27248/28103 27220/28069 +f 27258/28116 27247/28102 27240/28093 +f 27248/28103 16253/28104 27229/28080 +f 16196/28105 27242/28095 16253/28104 +f 27249/28106 27250/28107 27230/28081 +f 27250/28107 27257/28115 27243/28096 +f 27259/28117 27231/28082 27251/28108 +f 27249/28106 27244/28097 27250/28107 +f 27231/28082 27260/28118 27252/28109 +f 27244/28097 27252/28109 27261/28119 +f 27262/28120 27253/28110 24881/28098 +f 27253/28110 27263/28121 27237/28088 +f 27259/28117 27251/28108 27245/28099 +f 27264/28122 27254/28111 27237/28088 +f 27254/28111 27259/28117 27245/28099 +f 27265/28123 24886/28091 27255/28112 +f 27255/28112 27239/28092 27265/28123 +f 8554/28113 27266/28124 27246/28100 +f 27246/28100 27266/28124 27256/28114 +f 27256/28114 27267/28125 27239/28092 +f 27258/28116 27240/28093 27257/28115 +f 27268/28126 27248/28103 27247/28102 +f 27258/28116 27268/28126 27247/28102 +f 27248/28103 16301/28127 16253/28104 +f 27257/28115 27250/28107 27269/28128 +f 27259/28117 27260/28118 27231/28082 +f 27244/28097 27269/28128 27250/28107 +f 27261/28119 27252/28109 27260/28118 +f 27261/28119 27270/28129 27244/28097 +f 27262/28120 27263/28121 27253/28110 +f 27262/28120 24881/28098 27271/28130 +f 27263/28121 27264/28122 27237/28088 +f 27264/28122 27260/28118 27254/28111 +f 27254/28111 27260/28118 27259/28117 +f 24886/28091 27265/28123 24870/28131 +f 27265/28123 27239/28092 27267/28125 +f 27266/28124 8554/28113 27272/28132 +f 27266/28124 27273/28133 27256/28114 +f 27273/28133 27267/28125 27256/28114 +f 27269/28128 27258/28116 27257/28115 +f 27268/28126 27274/28134 27248/28103 +f 27268/28126 27258/28116 27269/28128 +f 27248/28103 27274/28134 16301/28127 +f 27244/28097 27270/28129 27269/28128 +f 27275/28135 27261/28119 27260/28118 +f 27270/28129 27261/28119 27276/28136 +f 27277/28137 27263/28121 27262/28120 +f 24857/28138 27271/28130 24881/28098 +f 27262/28120 27271/28130 27278/28139 +f 27264/28122 27263/28121 27279/28140 +f 27264/28122 27275/28135 27260/28118 +f 24870/28131 27265/28123 27273/28133 +f 27267/28125 27273/28133 27265/28123 +f 8554/28113 8480/28141 27272/28132 +f 27272/28132 24861/28142 27266/28124 +f 27273/28133 27266/28124 24879/28143 +f 27280/28144 27274/28134 27268/28126 +f 27269/28128 27281/28145 27268/28126 +f 16301/28127 27274/28134 16304/28146 +f 27282/28147 27269/28128 27270/28129 +f 27261/28119 27275/28135 27276/28136 +f 27282/28147 27270/28129 27276/28136 +f 27263/28121 27277/28137 27279/28140 +f 27277/28137 27262/28120 27283/28148 +f 24833/28149 27271/28130 24857/28138 +f 27284/28150 27278/28139 27271/28130 +f 27283/28148 27262/28120 27278/28139 +f 27285/28151 27264/28122 27279/28140 +f 27285/28151 27275/28135 27264/28122 +f 24870/28131 27273/28133 24879/28143 +f 8480/28141 27286/28152 27272/28132 +f 24861/28142 27272/28132 24860/28153 +f 27266/28124 24861/28142 24879/28143 +f 27287/28154 27274/28134 27280/28144 +f 27280/28144 27268/28126 27281/28145 +f 27281/28145 27269/28128 27282/28147 +f 16304/28146 27274/28134 27287/28154 +f 27276/28136 27275/28135 27288/28155 +f 27276/28136 16284/28156 27282/28147 +f 27289/28157 27279/28140 27277/28137 +f 27290/28158 27277/28137 27283/28148 +f 27271/28130 24833/28149 27291/28159 +f 27291/28159 27284/28150 27271/28130 +f 27284/28150 27292/28160 27278/28139 +f 27278/28139 27293/28161 27283/28148 +f 27285/28151 27279/28140 27294/28162 +f 27285/28151 27288/28155 27275/28135 +f 24860/28153 27286/28152 8480/28141 +f 24860/28153 27272/28132 27286/28152 +f 27295/28163 27287/28154 27280/28144 +f 27281/28145 27295/28163 27280/28144 +f 27281/28145 27282/28147 16234/28164 +f 27287/28154 27295/28163 16304/28146 +f 16328/28165 27276/28136 27288/28155 +f 16284/28156 27276/28136 16328/28165 +f 16234/28164 27282/28147 16284/28156 +f 27294/28162 27279/28140 27289/28157 +f 27289/28157 27277/28137 27290/28158 +f 27283/28148 27296/28166 27290/28158 +f 24849/28167 27291/28159 24833/28149 +f 27291/28159 27297/28168 27284/28150 +f 27278/28139 27292/28160 27293/28161 +f 27298/28169 27292/28160 27284/28150 +f 27283/28148 27293/28161 27296/28166 +f 27285/28151 27294/28162 27288/28155 +f 27281/28145 16260/28170 27295/28163 +f 16234/28164 16260/28170 27281/28145 +f 27295/28163 16260/28170 16304/28146 +f 16302/28171 16328/28165 27288/28155 +f 27299/28172 27294/28162 27289/28157 +f 27299/28172 27289/28157 27290/28158 +f 27300/28173 27290/28158 27296/28166 +f 27291/28159 24849/28167 27301/28174 +f 27302/28175 27284/28150 27297/28168 +f 27291/28159 27303/28176 27297/28168 +f 27304/28177 27293/28161 27292/28160 +f 27305/28178 27292/28160 27298/28169 +f 27284/28150 27302/28175 27298/28169 +f 27300/28173 27296/28166 27293/28161 +f 16302/28171 27288/28155 27294/28162 +f 27299/28172 27306/28179 27294/28162 +f 27307/28180 27299/28172 27290/28158 +f 27307/28180 27290/28158 27300/28173 +f 24849/28167 24839/28181 27301/28174 +f 27308/28182 27291/28159 27301/28174 +f 27309/28183 27302/28175 27297/28168 +f 27310/28184 27297/28168 27303/28176 +f 27303/28176 27291/28159 27308/28182 +f 27304/28177 27300/28173 27293/28161 +f 27292/28160 27305/28178 27304/28177 +f 27305/28178 27298/28169 27311/28185 +f 27309/28183 27298/28169 27302/28175 +f 27312/28186 16302/28171 27294/28162 +f 27312/28186 27294/28162 27306/28179 +f 27307/28180 27306/28179 27299/28172 +f 27313/28187 27307/28180 27300/28173 +f 27301/28174 24839/28181 27308/28182 +f 27310/28184 27309/28183 27297/28168 +f 27314/28188 27310/28184 27303/28176 +f 27303/28176 27308/28182 24809/28189 +f 27300/28173 27304/28177 27313/28187 +f 27305/28178 27315/28190 27304/28177 +f 27298/28169 27309/28183 27311/28185 +f 27315/28190 27305/28178 27311/28185 +f 16302/28171 27312/28186 16257/28191 +f 27316/28192 27312/28186 27306/28179 +f 27307/28180 27317/28193 27306/28179 +f 27307/28180 27313/28187 27318/28194 +f 24809/28189 27308/28182 24839/28181 +f 27319/28195 27309/28183 27310/28184 +f 27314/28188 27319/28195 27310/28184 +f 27303/28176 27320/28196 27314/28188 +f 24809/28189 27321/28197 27303/28176 +f 27313/28187 27304/28177 27322/28198 +f 27304/28177 27315/28190 27322/28198 +f 27309/28183 27319/28195 27311/28185 +f 27311/28185 27323/28199 27315/28190 +f 16280/28200 16257/28191 27312/28186 +f 16280/28200 27312/28186 27316/28192 +f 27306/28179 27317/28193 27316/28192 +f 27318/28194 27317/28193 27307/28180 +f 27322/28198 27318/28194 27313/28187 +f 27323/28199 27319/28195 27314/28188 +f 27324/28201 27314/28188 27320/28196 +f 27320/28196 27303/28176 27321/28197 +f 27325/28202 27321/28197 24809/28189 +f 27322/28198 27315/28190 27323/28199 +f 27319/28195 27323/28199 27311/28185 +f 16353/28203 16280/28200 27316/28192 +f 16353/28203 27316/28192 27317/28193 +f 16353/28203 27317/28193 27318/28194 +f 27322/28198 16379/28204 27318/28194 +f 27314/28188 27326/28205 27323/28199 +f 27314/28188 27324/28201 27326/28205 +f 27324/28201 27320/28196 27321/28197 +f 24809/28189 24772/28206 27325/28202 +f 27321/28197 27325/28202 27324/28201 +f 27327/28207 27322/28198 27323/28199 +f 16379/28204 16353/28203 27318/28194 +f 16379/28204 27322/28198 27327/28207 +f 27326/28205 27327/28207 27323/28199 +f 27324/28201 27328/28208 27326/28205 +f 27329/28209 27325/28202 24772/28206 +f 27330/28210 27324/28201 27325/28202 +f 27327/28207 16440/28211 16379/28204 +f 27328/28208 27327/28207 27326/28205 +f 27324/28201 27331/28212 27328/28208 +f 27325/28202 27329/28209 27330/28210 +f 27329/28209 24772/28206 27332/28213 +f 27331/28212 27324/28201 27330/28210 +f 16440/28211 27327/28207 27333/28214 +f 27333/28214 27327/28207 27328/28208 +f 27334/28215 27328/28208 27331/28212 +f 27329/28209 27335/28216 27330/28210 +f 27332/28213 24772/28206 24712/28217 +f 27329/28209 27332/28213 27336/28218 +f 27334/28215 27331/28212 27330/28210 +f 16440/28211 27333/28214 27337/28219 +f 27328/28208 27334/28215 27333/28214 +f 27335/28216 27329/28209 27338/28220 +f 27330/28210 27335/28216 27334/28215 +f 27339/28221 27332/28213 24712/28217 +f 27336/28218 27332/28213 27340/28222 +f 27336/28218 27338/28220 27329/28209 +f 16468/28223 16440/28211 27337/28219 +f 27333/28214 27334/28215 27337/28219 +f 27338/28220 27341/28224 27335/28216 +f 27335/28216 27342/28225 27334/28215 +f 27332/28213 27339/28221 27340/28222 +f 27339/28221 24712/28217 27343/28226 +f 27344/28227 27336/28218 27340/28222 +f 27336/28218 27345/28228 27338/28220 +f 27346/28229 16468/28223 27337/28219 +f 27334/28215 27342/28225 27337/28219 +f 27345/28228 27341/28224 27338/28220 +f 27335/28216 27341/28224 27346/28229 +f 27346/28229 27342/28225 27335/28216 +f 27343/28226 27340/28222 27339/28221 +f 24640/28230 27343/28226 24712/28217 +f 27344/28227 27345/28228 27336/28218 +f 27344/28227 27340/28222 27347/28231 +f 16591/28232 16468/28223 27346/28229 +f 27342/28225 27346/28229 27337/28219 +f 27348/28233 27341/28224 27345/28228 +f 27346/28229 27341/28224 16591/28232 +f 27349/28234 27340/28222 27343/28226 +f 24640/28230 27349/28234 27343/28226 +f 27344/28227 27350/28235 27345/28228 +f 27347/28231 27351/28236 27344/28227 +f 27347/28231 27340/28222 27349/28234 +f 16592/28237 27341/28224 27348/28233 +f 27350/28235 27348/28233 27345/28228 +f 27341/28224 16592/28237 16591/28232 +f 24582/28238 27349/28234 24640/28230 +f 27351/28236 27350/28235 27344/28227 +f 27352/28239 27351/28236 27347/28231 +f 27352/28239 27347/28231 27349/28234 +f 27348/28233 27353/28240 16592/28237 +f 27353/28240 27348/28233 27350/28235 +f 27352/28239 27349/28234 24582/28238 +f 27354/28241 27350/28235 27351/28236 +f 27352/28239 27355/28242 27351/28236 +f 16614/28243 16592/28237 27353/28240 +f 27354/28241 27353/28240 27350/28235 +f 24510/28244 27352/28239 24582/28238 +f 27351/28236 27355/28242 27354/28241 +f 27355/28242 27352/28239 24510/28244 +f 27356/28245 16614/28243 27353/28240 +f 27357/28246 27353/28240 27354/28241 +f 27354/28241 27355/28242 27358/28247 +f 27355/28242 24510/28244 24461/28248 +f 16559/28249 16614/28243 27356/28245 +f 27353/28240 27357/28246 27356/28245 +f 27358/28247 27357/28246 27354/28241 +f 27355/28242 24461/28248 27358/28247 +f 27356/28245 27359/28250 16559/28249 +f 27357/28246 27360/28251 27356/28245 +f 27361/28252 27357/28246 27358/28247 +f 27358/28247 24461/28248 24415/28253 +f 27359/28250 27356/28245 27362/28254 +f 16559/28249 27359/28250 16459/28255 +f 27360/28251 27357/28246 27361/28252 +f 27356/28245 27360/28251 27363/28256 +f 27360/28251 27361/28252 27358/28247 +f 24415/28253 27364/28257 27358/28247 +f 27356/28245 27363/28256 27362/28254 +f 27365/28258 27359/28250 27362/28254 +f 16459/28255 27359/28250 27365/28258 +f 27360/28251 27366/28259 27363/28256 +f 27367/28260 27360/28251 27358/28247 +f 27364/28257 24415/28253 27368/28261 +f 27358/28247 27364/28257 27367/28260 +f 27362/28254 27363/28256 27369/28262 +f 27365/28258 27362/28254 27370/28263 +f 16459/28255 27365/28258 16526/28264 +f 27371/28265 27363/28256 27366/28259 +f 27366/28259 27360/28251 27367/28260 +f 24415/28253 24253/28266 27368/28261 +f 27372/28267 27364/28257 27368/28261 +f 27367/28260 27364/28257 27373/28268 +f 27369/28262 27363/28256 27374/28269 +f 27369/28262 27375/28270 27362/28254 +f 27370/28263 27362/28254 27375/28270 +f 27370/28263 16526/28264 27365/28258 +f 27363/28256 27371/28265 27376/28271 +f 27366/28259 27377/28272 27371/28265 +f 27366/28259 27367/28260 27378/28273 +f 24252/28274 27368/28261 24253/28266 +f 27364/28257 27372/28267 27373/28268 +f 27368/28261 27379/28275 27372/28267 +f 27372/28267 27367/28260 27373/28268 +f 27376/28271 27374/28269 27363/28256 +f 27369/28262 27374/28269 27375/28270 +f 27375/28270 27380/28276 27370/28263 +f 27370/28263 16586/28277 16526/28264 +f 27371/28265 24187/28278 27376/28271 +f 27377/28272 27366/28259 27378/28273 +f 24187/28278 27371/28265 27377/28272 +f 27367/28260 27381/28279 27378/28273 +f 27379/28275 27368/28261 24252/28274 +f 27382/28280 27372/28267 27379/28275 +f 27381/28279 27367/28260 27372/28267 +f 27374/28269 27376/28271 27383/28281 +f 27374/28269 27383/28281 27375/28270 +f 27375/28270 27384/28282 27380/28276 +f 27380/28276 16586/28277 27370/28263 +f 24134/28283 27376/28271 24187/28278 +f 27381/28279 27377/28272 27378/28273 +f 27377/28272 24137/28284 24187/28278 +f 24138/28285 27379/28275 24252/28274 +f 24137/28284 27372/28267 27382/28280 +f 24138/28285 27382/28280 27379/28275 +f 24137/28284 27381/28279 27372/28267 +f 24133/28286 27383/28281 27376/28271 +f 27383/28281 27384/28282 27375/28270 +f 16586/28277 27380/28276 27384/28282 +f 27376/28271 24134/28283 24133/28286 +f 27377/28272 27381/28279 24137/28284 +f 27382/28280 24138/28285 24137/28284 +f 24133/28286 24074/28287 27383/28281 +f 27384/28282 27383/28281 24074/28287 +f 16586/28277 27384/28282 16642/28288 +f 24074/28287 16642/28288 27384/28282 +f 27385/28289 27386/28290 27387/28291 +f 27388/28292 27386/28290 27385/28289 +f 27386/28290 27389/28293 27387/28291 +f 27387/28291 27390/28294 27385/28289 +f 27391/28295 27386/28290 27388/28292 +f 27385/28289 27392/28296 27388/28292 +f 27393/28297 27389/28293 27386/28290 +f 27389/28293 27394/28298 27387/28291 +f 27390/28294 27395/28299 27385/28289 +f 27387/28291 27396/28300 27390/28294 +f 27391/28295 27397/28301 27386/28290 +f 27398/28302 27391/28295 27388/28292 +f 27385/28289 27399/28303 27392/28296 +f 27392/28296 27400/28304 27388/28292 +f 27401/28305 27389/28293 27393/28297 +f 27386/28290 27397/28301 27393/28297 +f 27402/28306 27394/28298 27389/28293 +f 27387/28291 27394/28298 27403/28307 +f 27395/28299 27390/28294 27404/28308 +f 27399/28303 27385/28289 27395/28299 +f 27404/28308 27390/28294 27396/28300 +f 27403/28307 27396/28300 27387/28291 +f 27397/28301 27391/28295 27405/28309 +f 27405/28309 27391/28295 27398/28302 +f 27400/28304 27398/28302 27388/28292 +f 27399/28303 27406/28310 27392/28296 +f 27400/28304 27392/28296 27407/28311 +f 27401/28305 27402/28306 27389/28293 +f 27401/28305 27393/28297 27408/28312 +f 27393/28297 27397/28301 27408/28312 +f 27394/28298 27402/28306 27409/28313 +f 27394/28298 27410/28314 27403/28307 +f 27395/28299 27404/28308 27411/28315 +f 27395/28299 27412/28316 27399/28303 +f 27396/28300 27413/28317 27404/28308 +f 27403/28307 27414/28318 27396/28300 +f 27405/28309 27415/28319 27397/28301 +f 27398/28302 27416/28320 27405/28309 +f 27400/28304 27416/28320 27398/28302 +f 27412/28316 27406/28310 27399/28303 +f 27407/28311 27392/28296 27406/28310 +f 27407/28311 27417/28321 27400/28304 +f 27402/28306 27401/28305 27418/28322 +f 27419/28323 27401/28305 27408/28312 +f 27408/28312 27397/28301 27415/28319 +f 27409/28313 27402/28306 27418/28322 +f 27410/28314 27394/28298 27409/28313 +f 27420/28324 27403/28307 27410/28314 +f 27411/28315 27404/28308 27421/28325 +f 27412/28316 27395/28299 27411/28315 +f 27414/28318 27413/28317 27396/28300 +f 27404/28308 27413/28317 27421/28325 +f 27420/28324 27414/28318 27403/28307 +f 27415/28319 27405/28309 27422/28326 +f 27405/28309 27416/28320 27422/28326 +f 27416/28320 27400/28304 27417/28321 +f 27406/28310 27412/28316 27423/28327 +f 27424/28328 27407/28311 27406/28310 +f 27425/28329 27417/28321 27407/28311 +f 27418/28322 27401/28305 27419/28323 +f 27426/28330 27419/28323 27408/28312 +f 27408/28312 27415/28319 27427/28331 +f 27418/28322 27428/28332 27409/28313 +f 27409/28313 27429/28333 27410/28314 +f 27420/28324 27410/28314 27429/28333 +f 27421/28325 27430/28334 27411/28315 +f 27411/28315 27431/28335 27412/28316 +f 27414/28318 27432/28336 27413/28317 +f 27433/28337 27421/28325 27413/28317 +f 27414/28318 27420/28324 27434/28338 +f 27435/28339 27415/28319 27422/28326 +f 27416/28320 27436/28340 27422/28326 +f 27416/28320 27417/28321 27437/28341 +f 27412/28316 27438/28342 27423/28327 +f 27423/28327 27424/28328 27406/28310 +f 27407/28311 27424/28328 27439/28343 +f 27440/28344 27417/28321 27425/28329 +f 27441/28345 27425/28329 27407/28311 +f 27419/28323 27442/28346 27418/28322 +f 27426/28330 27408/28312 27427/28331 +f 27419/28323 27426/28330 27443/28347 +f 27415/28319 27435/28339 27427/28331 +f 27428/28332 27418/28322 27444/28348 +f 27409/28313 27428/28332 27429/28333 +f 27445/28349 27420/28324 27429/28333 +f 27433/28337 27430/28334 27421/28325 +f 27411/28315 27430/28334 27431/28335 +f 27431/28335 27438/28342 27412/28316 +f 27432/28336 27414/28318 27434/28338 +f 27432/28336 27433/28337 27413/28317 +f 27420/28324 27445/28349 27434/28338 +f 27422/28326 27446/28350 27435/28339 +f 27436/28340 27416/28320 27437/28341 +f 27436/28340 27447/28351 27422/28326 +f 27417/28321 27440/28344 27437/28341 +f 27423/28327 27438/28342 27424/28328 +f 27441/28345 27407/28311 27439/28343 +f 27448/28352 27439/28343 27424/28328 +f 27425/28329 27449/28353 27440/28344 +f 27450/28354 27425/28329 27441/28345 +f 27418/28322 27442/28346 27451/28355 +f 27442/28346 27419/28323 27443/28347 +f 27427/28331 27452/28356 27426/28330 +f 27426/28330 27453/28357 27443/28347 +f 27427/28331 27435/28339 27454/28358 +f 27444/28348 27418/28322 27451/28355 +f 27444/28348 27455/28359 27428/28332 +f 27428/28332 27456/28360 27429/28333 +f 27456/28360 27445/28349 27429/28333 +f 27433/28337 27457/28361 27430/28334 +f 27458/28362 27431/28335 27430/28334 +f 27431/28335 27459/28363 27438/28342 +f 27460/28364 27432/28336 27434/28338 +f 27457/28361 27433/28337 27432/28336 +f 27461/28365 27434/28338 27445/28349 +f 27435/28339 27446/28350 27462/28366 +f 27422/28326 27447/28351 27446/28350 +f 27463/28367 27436/28340 27437/28341 +f 27436/28340 27463/28367 27447/28351 +f 27437/28341 27440/28344 27449/28353 +f 27438/28342 27464/28368 27424/28328 +f 27439/28343 27465/28369 27441/28345 +f 27466/28370 27448/28352 27424/28328 +f 27467/28371 27439/28343 27448/28352 +f 27449/28353 27425/28329 27450/28354 +f 27465/28369 27450/28354 27441/28345 +f 27468/28372 27451/28355 27442/28346 +f 27443/28347 27469/28373 27442/28346 +f 27427/28331 27470/28374 27452/28356 +f 27426/28330 27452/28356 27453/28357 +f 27453/28357 27471/28375 27443/28347 +f 27454/28358 27470/28374 27427/28331 +f 27454/28358 27435/28339 27462/28366 +f 27451/28355 27472/28376 27444/28348 +f 27455/28359 27456/28360 27428/28332 +f 27473/28377 27455/28359 27444/28348 +f 27445/28349 27456/28360 27461/28365 +f 27457/28361 27458/28362 27430/28334 +f 27431/28335 27458/28362 27459/28363 +f 27438/28342 27459/28363 27474/28378 +f 27475/28379 27460/28364 27434/28338 +f 27460/28364 27476/28380 27432/28336 +f 27477/28381 27457/28361 27432/28336 +f 27475/28379 27434/28338 27461/28365 +f 27462/28366 27446/28350 27478/28382 +f 27446/28350 27447/28351 27479/28383 +f 27437/28341 27449/28353 27463/28367 +f 27463/28367 27479/28383 27447/28351 +f 27438/28342 27474/28378 27464/28368 +f 27424/28328 27464/28368 27466/28370 +f 27439/28343 27480/28384 27465/28369 +f 27464/28368 27448/28352 27466/28370 +f 27480/28384 27439/28343 27467/28371 +f 27464/28368 27467/28371 27448/28352 +f 27449/28353 27450/28354 27481/28385 +f 27482/28386 27450/28354 27465/28369 +f 27442/28346 27469/28373 27468/28372 +f 27483/28387 27451/28355 27468/28372 +f 27471/28375 27469/28373 27443/28347 +f 27484/28388 27452/28356 27470/28374 +f 27453/28357 27452/28356 27484/28388 +f 27484/28388 27471/28375 27453/28357 +f 27454/28358 27485/28389 27470/28374 +f 27486/28390 27454/28358 27462/28366 +f 27472/28376 27451/28355 27483/28387 +f 27472/28376 27473/28377 27444/28348 +f 27455/28359 27487/28391 27456/28360 +f 27473/28377 27487/28391 27455/28359 +f 27456/28360 27488/28392 27461/28365 +f 27477/28381 27458/28362 27457/28361 +f 27459/28363 27458/28362 27489/28393 +f 27474/28378 27459/28363 27490/28394 +f 27475/28379 27491/28395 27460/28364 +f 27476/28380 27492/28396 27432/28336 +f 27476/28380 27460/28364 27493/28397 +f 27432/28336 27492/28396 27477/28381 +f 27461/28365 27488/28392 27475/28379 +f 27446/28350 27479/28383 27478/28382 +f 27478/28382 27494/28398 27462/28366 +f 27449/28353 27495/28399 27463/28367 +f 27463/28367 27496/28400 27479/28383 +f 27497/28401 27464/28368 27474/28378 +f 27480/28384 27498/28402 27465/28369 +f 27467/28371 27499/28403 27480/28384 +f 27497/28401 27467/28371 27464/28368 +f 27481/28385 27450/28354 27482/28386 +f 27500/28404 27449/28353 27481/28385 +f 27498/28402 27482/28386 27465/28369 +f 27501/28405 27468/28372 27469/28373 +f 27483/28387 27468/28372 27502/28406 +f 27503/28407 27469/28373 27471/28375 +f 27470/28374 27485/28389 27484/28388 +f 27471/28375 27484/28388 27504/28408 +f 27485/28389 27454/28358 27486/28390 +f 27462/28366 27505/28409 27486/28390 +f 27502/28406 27472/28376 27483/28387 +f 27506/28410 27473/28377 27472/28376 +f 27507/28411 27456/28360 27487/28391 +f 27473/28377 27506/28410 27487/28391 +f 27488/28392 27456/28360 27507/28411 +f 27489/28393 27458/28362 27477/28381 +f 27459/28363 27489/28393 27490/28394 +f 27490/28394 27508/28412 27474/28378 +f 27475/28379 27488/28392 27491/28395 +f 27493/28397 27460/28364 27491/28395 +f 27492/28396 27476/28380 27509/28413 +f 27493/28397 27510/28414 27476/28380 +f 27492/28396 27511/28415 27477/28381 +f 27478/28382 27479/28383 27512/28416 +f 27462/28366 27494/28398 27513/28417 +f 27494/28398 27478/28382 27514/28418 +f 27496/28400 27463/28367 27495/28399 +f 27500/28404 27495/28399 27449/28353 +f 27512/28416 27479/28383 27496/28400 +f 27474/28378 27508/28412 27497/28401 +f 27480/28384 27515/28419 27498/28402 +f 27467/28371 27497/28401 27499/28403 +f 27515/28419 27480/28384 27499/28403 +f 27482/28386 27516/28420 27481/28385 +f 27517/28421 27500/28404 27481/28385 +f 27498/28402 27516/28420 27482/28386 +f 27469/28373 27518/28422 27501/28405 +f 27501/28405 27502/28406 27468/28372 +f 27519/28423 27503/28407 27471/28375 +f 27518/28422 27469/28373 27503/28407 +f 27484/28388 27485/28389 27504/28408 +f 27519/28423 27471/28375 27504/28408 +f 27486/28390 27505/28409 27485/28389 +f 27462/28366 27513/28417 27505/28409 +f 27502/28406 27520/28424 27472/28376 +f 27521/28425 27506/28410 27472/28376 +f 27487/28391 27522/28426 27507/28411 +f 27523/28427 27487/28391 27506/28410 +f 27507/28411 27524/28428 27488/28392 +f 27511/28415 27489/28393 27477/28381 +f 27490/28394 27489/28393 27525/28429 +f 27525/28429 27508/28412 27490/28394 +f 27491/28395 27488/28392 27526/28430 +f 27493/28397 27491/28395 27527/28431 +f 27509/28413 27476/28380 27528/28432 +f 27511/28415 27492/28396 27509/28413 +f 27510/28414 27528/28432 27476/28380 +f 27493/28397 27529/28433 27510/28414 +f 27514/28418 27478/28382 27512/28416 +f 27530/28434 27513/28417 27494/28398 +f 27514/28418 27530/28434 27494/28398 +f 27495/28399 27500/28404 27531/28435 +f 27497/28401 27508/28412 27532/28436 +f 27515/28419 27516/28420 27498/28402 +f 27533/28437 27499/28403 27497/28401 +f 27499/28403 27534/28438 27515/28419 +f 27516/28420 27517/28421 27481/28385 +f 27517/28421 27535/28439 27500/28404 +f 27518/28422 27536/28440 27501/28405 +f 27537/28441 27502/28406 27501/28405 +f 27519/28423 27538/28442 27503/28407 +f 27539/28443 27518/28422 27503/28407 +f 27504/28408 27485/28389 27505/28409 +f 27540/28444 27519/28423 27504/28408 +f 27541/28445 27505/28409 27513/28417 +f 27472/28376 27520/28424 27542/28446 +f 27502/28406 27537/28441 27520/28424 +f 27523/28427 27506/28410 27521/28425 +f 27543/28447 27521/28425 27472/28376 +f 27522/28426 27524/28428 27507/28411 +f 27522/28426 27487/28391 27523/28427 +f 27544/28448 27488/28392 27524/28428 +f 27489/28393 27511/28415 27545/28449 +f 27489/28393 27545/28449 27525/28429 +f 27508/28412 27525/28429 27546/28450 +f 27526/28430 27527/28431 27491/28395 +f 27544/28448 27526/28430 27488/28392 +f 27527/28431 27529/28433 27493/28397 +f 27509/28413 27528/28432 27547/28451 +f 27509/28413 27548/28452 27511/28415 +f 27528/28432 27510/28414 27549/28453 +f 27510/28414 27529/28433 27549/28453 +f 27513/28417 27530/28434 27550/28454 +f 27550/28454 27530/28434 27514/28418 +f 27500/28404 27535/28439 27531/28435 +f 27533/28437 27497/28401 27532/28436 +f 27551/28455 27532/28436 27508/28412 +f 27516/28420 27515/28419 27552/28456 +f 27534/28438 27499/28403 27533/28437 +f 27515/28419 27534/28438 27553/28457 +f 27517/28421 27516/28420 27554/28458 +f 27535/28439 27517/28421 27555/28459 +f 27556/28460 27536/28440 27518/28422 +f 27557/28461 27501/28405 27536/28440 +f 27537/28441 27501/28405 27542/28446 +f 27519/28423 27558/28462 27538/28442 +f 27503/28407 27538/28442 27539/28443 +f 27539/28443 27556/28460 27518/28422 +f 27505/28409 27540/28444 27504/28408 +f 27558/28462 27519/28423 27540/28444 +f 27540/28444 27505/28409 27541/28445 +f 27513/28417 27559/28463 27541/28445 +f 27472/28376 27542/28446 27543/28447 +f 27537/28441 27542/28446 27520/28424 +f 27521/28425 27543/28447 27523/28427 +f 27523/28427 27524/28428 27522/28426 +f 27524/28428 27523/28427 27544/28448 +f 27545/28449 27511/28415 27548/28452 +f 27525/28429 27545/28449 27546/28450 +f 27546/28450 27551/28455 27508/28412 +f 27526/28430 27560/28464 27527/28431 +f 27561/28465 27526/28430 27544/28448 +f 27527/28431 27562/28466 27529/28433 +f 27547/28451 27548/28452 27509/28413 +f 27549/28453 27547/28451 27528/28432 +f 27549/28453 27529/28433 27563/28467 +f 27550/28454 27559/28463 27513/28417 +f 27550/28454 27514/28418 27564/28468 +f 27535/28439 27565/28469 27531/28435 +f 27533/28437 27532/28436 27551/28455 +f 27552/28456 27554/28458 27516/28420 +f 27553/28457 27552/28456 27515/28419 +f 27566/28470 27534/28438 27533/28437 +f 27567/28471 27553/28457 27534/28438 +f 27517/28421 27554/28458 27568/28472 +f 27535/28439 27555/28459 27569/28473 +f 27555/28459 27517/28421 27568/28472 +f 27536/28440 27556/28460 27570/28474 +f 27571/28475 27557/28461 27536/28440 +f 27501/28405 27557/28461 27572/28476 +f 27501/28405 27572/28476 27542/28446 +f 27573/28477 27538/28442 27558/28462 +f 27539/28443 27538/28442 27574/28478 +f 27539/28443 27574/28478 27556/28460 +f 27558/28462 27540/28444 27575/28479 +f 27576/28480 27540/28444 27541/28445 +f 27576/28480 27541/28445 27559/28463 +f 27572/28476 27543/28447 27542/28446 +f 27543/28447 27577/28481 27523/28427 +f 27523/28427 27577/28481 27544/28448 +f 27548/28452 27578/28482 27545/28449 +f 27579/28483 27546/28450 27545/28449 +f 27551/28455 27546/28450 27566/28470 +f 27560/28464 27562/28466 27527/28431 +f 27560/28464 27526/28430 27561/28465 +f 27577/28481 27561/28465 27544/28448 +f 27562/28466 27563/28467 27529/28433 +f 27547/28451 27580/28484 27548/28452 +f 27563/28467 27547/28451 27549/28453 +f 27550/28454 27581/28485 27559/28463 +f 27514/28418 27582/28486 27564/28468 +f 27564/28468 27581/28485 27550/28454 +f 27583/28487 27565/28469 27535/28439 +f 27551/28455 27566/28470 27533/28437 +f 27568/28472 27554/28458 27552/28456 +f 27552/28456 27553/28457 27584/28488 +f 27566/28470 27585/28489 27534/28438 +f 27584/28488 27553/28457 27567/28471 +f 27534/28438 27585/28489 27567/28471 +f 27555/28459 27586/28490 27569/28473 +f 27569/28473 27587/28491 27535/28439 +f 27588/28492 27555/28459 27568/28472 +f 27571/28475 27536/28440 27570/28474 +f 27556/28460 27589/28493 27570/28474 +f 27571/28475 27572/28476 27557/28461 +f 27558/28462 27575/28479 27573/28477 +f 27590/28494 27538/28442 27573/28477 +f 27538/28442 27591/28495 27574/28478 +f 27589/28493 27556/28460 27574/28478 +f 27575/28479 27540/28444 27576/28480 +f 27581/28485 27576/28480 27559/28463 +f 27572/28476 27577/28481 27543/28447 +f 27545/28449 27578/28482 27592/28496 +f 27593/28497 27578/28482 27548/28452 +f 27545/28449 27592/28496 27579/28483 +f 27566/28470 27546/28450 27579/28483 +f 27560/28464 27594/28498 27562/28466 +f 27560/28464 27561/28465 27595/28499 +f 27562/28466 27596/28500 27563/28467 +f 27580/28484 27547/28451 27597/28501 +f 27548/28452 27580/28484 27598/28502 +f 27599/28503 27547/28451 27563/28467 +f 27582/28486 27514/28418 27600/28504 +f 27582/28486 27601/28505 27564/28468 +f 27564/28468 27575/28479 27581/28485 +f 27587/28491 27583/28487 27535/28439 +f 27565/28469 27583/28487 27602/28506 +f 27552/28456 27584/28488 27568/28472 +f 27579/28483 27585/28489 27566/28470 +f 27603/28507 27584/28488 27567/28471 +f 27586/28490 27604/28508 27569/28473 +f 27605/28509 27586/28490 27555/28459 +f 27569/28473 27606/28510 27587/28491 +f 27568/28472 27607/28511 27588/28492 +f 27570/28474 27608/28512 27571/28475 +f 27589/28493 27608/28512 27570/28474 +f 27609/28513 27572/28476 27571/28475 +f 27573/28477 27575/28479 27610/28514 +f 27611/28515 27538/28442 27590/28494 +f 27573/28477 27610/28514 27590/28494 +f 27538/28442 27611/28515 27591/28495 +f 27591/28495 27589/28493 27574/28478 +f 27575/28479 27576/28480 27581/28485 +f 27612/28516 27592/28496 27578/28482 +f 27598/28502 27593/28497 27548/28452 +f 27578/28482 27593/28497 27613/28517 +f 27579/28483 27592/28496 27614/28518 +f 27594/28498 27596/28500 27562/28466 +f 27560/28464 27615/28519 27594/28498 +f 27561/28465 27616/28520 27595/28499 +f 27595/28499 27617/28521 27560/28464 +f 27563/28467 27596/28500 27599/28503 +f 27618/28522 27597/28501 27547/28451 +f 27597/28501 27598/28502 27580/28484 +f 27547/28451 27599/28503 27618/28522 +f 27619/28523 27582/28486 27600/28504 +f 27564/28468 27601/28505 27620/28524 +f 27601/28505 27582/28486 27621/28525 +f 27620/28524 27575/28479 27564/28468 +f 27587/28491 27606/28510 27583/28487 +f 27583/28487 27622/28526 27602/28506 +f 27584/28488 27607/28511 27568/28472 +f 27579/28483 27614/28518 27585/28489 +f 27567/28471 27623/28527 27603/28507 +f 27584/28488 27603/28507 27607/28511 +f 27586/28490 27624/28528 27604/28508 +f 27604/28508 27606/28510 27569/28473 +f 27586/28490 27605/28509 27625/28529 +f 27626/28530 27605/28509 27555/28459 +f 27627/28531 27588/28492 27607/28511 +f 27571/28475 27608/28512 27628/28532 +f 27629/28533 27608/28512 27589/28493 +f 27609/28513 27571/28475 27628/28532 +f 27630/28534 27610/28514 27575/28479 +f 27590/28494 27631/28535 27611/28515 +f 27630/28534 27590/28494 27610/28514 +f 27632/28536 27591/28495 27611/28515 +f 27633/28537 27589/28493 27591/28495 +f 27592/28496 27612/28516 27634/28538 +f 27578/28482 27635/28539 27612/28516 +f 27598/28502 27636/28540 27593/28497 +f 27637/28541 27613/28517 27593/28497 +f 27578/28482 27613/28517 27635/28539 +f 27634/28538 27614/28518 27592/28496 +f 27596/28500 27594/28498 27638/28542 +f 27638/28542 27594/28498 27615/28519 +f 27615/28519 27560/28464 27617/28521 +f 27639/28543 27616/28520 27561/28465 +f 27640/28544 27595/28499 27616/28520 +f 27617/28521 27595/28499 27641/28545 +f 27618/28522 27599/28503 27596/28500 +f 27597/28501 27618/28522 27642/28546 +f 27642/28546 27598/28502 27597/28501 +f 27619/28523 27621/28525 27582/28486 +f 27643/28547 27620/28524 27601/28505 +f 27621/28525 27643/28547 27601/28505 +f 27575/28479 27620/28524 27630/28534 +f 27583/28487 27606/28510 27622/28526 +f 27622/28526 27644/28548 27602/28506 +f 27623/28527 27627/28531 27603/28507 +f 27607/28511 27603/28507 27627/28531 +f 27624/28528 27586/28490 27625/28529 +f 27625/28529 27604/28508 27624/28528 +f 27606/28510 27604/28508 27645/28549 +f 27605/28509 27646/28550 27625/28529 +f 27647/28551 27605/28509 27626/28530 +f 27627/28531 27623/28527 27588/28492 +f 27608/28512 27629/28533 27628/28532 +f 27629/28533 27589/28493 27648/28552 +f 27631/28535 27590/28494 27649/28553 +f 27611/28515 27631/28535 27632/28536 +f 27590/28494 27630/28534 27649/28553 +f 27632/28536 27633/28537 27591/28495 +f 27650/28554 27589/28493 27633/28537 +f 27651/28555 27634/28538 27612/28516 +f 27635/28539 27652/28556 27612/28516 +f 27653/28557 27636/28540 27598/28502 +f 27593/28497 27636/28540 27637/28541 +f 27654/28558 27613/28517 27637/28541 +f 27613/28517 27655/28559 27635/28539 +f 27614/28518 27634/28538 27651/28555 +f 27596/28500 27638/28542 27642/28546 +f 27638/28542 27615/28519 27617/28521 +f 27616/28520 27639/28543 27656/28560 +f 27657/28561 27639/28543 27561/28465 +f 27640/28544 27641/28545 27595/28499 +f 27640/28544 27616/28520 27658/28562 +f 27653/28557 27617/28521 27641/28545 +f 27642/28546 27618/28522 27596/28500 +f 27653/28557 27598/28502 27642/28546 +f 27621/28525 27619/28523 27659/28563 +f 27649/28553 27620/28524 27643/28547 +f 27621/28525 27660/28564 27643/28547 +f 27649/28553 27630/28534 27620/28524 +f 27622/28526 27606/28510 27661/28565 +f 27644/28548 27622/28526 27661/28565 +f 27644/28548 27662/28566 27602/28506 +f 27604/28508 27625/28529 27645/28549 +f 27606/28510 27645/28549 27661/28565 +f 27605/28509 27663/28567 27646/28550 +f 27664/28568 27625/28529 27646/28550 +f 27647/28551 27663/28567 27605/28509 +f 27648/28552 27628/28532 27629/28533 +f 27648/28552 27589/28493 27650/28554 +f 27649/28553 27665/28569 27631/28535 +f 27632/28536 27631/28535 27666/28570 +f 27612/28516 27667/28571 27651/28555 +f 27635/28539 27668/28572 27652/28556 +f 27652/28556 27667/28571 27612/28516 +f 27636/28540 27653/28557 27641/28545 +f 27636/28540 27669/28573 27637/28541 +f 27670/28574 27654/28558 27637/28541 +f 27655/28559 27613/28517 27654/28558 +f 27655/28559 27668/28572 27635/28539 +f 27638/28542 27653/28557 27642/28546 +f 27653/28557 27638/28542 27617/28521 +f 27639/28543 27671/28575 27656/28560 +f 27616/28520 27656/28560 27672/28576 +f 27639/28543 27657/28561 27671/28575 +f 27561/28465 27673/28577 27657/28561 +f 27641/28545 27640/28544 27669/28573 +f 27670/28574 27640/28544 27658/28562 +f 27616/28520 27672/28576 27658/28562 +f 27659/28563 27674/28578 27621/28525 +f 27643/28547 27665/28569 27649/28553 +f 27643/28547 27660/28564 27665/28569 +f 27674/28578 27660/28564 27621/28525 +f 27661/28565 27675/28579 27644/28548 +f 27662/28566 27644/28548 27675/28579 +f 27664/28568 27645/28549 27625/28529 +f 27676/28580 27661/28565 27645/28549 +f 27664/28568 27646/28550 27677/28581 +f 27631/28535 27665/28569 27666/28570 +f 27678/28582 27652/28556 27668/28572 +f 27636/28540 27641/28545 27669/28573 +f 27637/28541 27669/28573 27640/28544 +f 27654/28558 27670/28574 27679/28583 +f 27637/28541 27640/28544 27670/28574 +f 27655/28559 27654/28558 27679/28583 +f 27655/28559 27680/28584 27668/28572 +f 27681/28585 27672/28576 27656/28560 +f 27673/28577 27682/28586 27657/28561 +f 27670/28574 27658/28562 27679/28583 +f 27658/28562 27672/28576 27683/28587 +f 27660/28564 27684/28588 27665/28569 +f 27660/28564 27674/28578 27684/28588 +f 27676/28580 27675/28579 27661/28565 +f 27685/28589 27662/28566 27675/28579 +f 27645/28549 27664/28568 27686/28590 +f 27676/28580 27645/28549 27686/28590 +f 27664/28568 27677/28581 27687/28591 +f 27666/28570 27665/28569 27684/28588 +f 27652/28556 27678/28582 27688/28592 +f 27680/28584 27678/28582 27668/28572 +f 27680/28584 27655/28559 27679/28583 +f 27656/28560 27689/28593 27681/28585 +f 27690/28594 27672/28576 27681/28585 +f 27682/28586 27673/28577 27691/28595 +f 27657/28561 27682/28586 27692/28596 +f 27658/28562 27693/28597 27679/28583 +f 27672/28576 27690/28594 27683/28587 +f 27683/28587 27693/28597 27658/28562 +f 27675/28579 27676/28580 27685/28589 +f 27687/28591 27686/28590 27664/28568 +f 27676/28580 27686/28590 27694/28598 +f 27695/28599 27688/28592 27678/28582 +f 27680/28584 27695/28599 27678/28582 +f 27679/28583 27693/28597 27680/28584 +f 27689/28593 27696/28600 27681/28585 +f 27696/28600 27690/28594 27681/28585 +f 27697/28601 27691/28595 27673/28577 +f 27682/28586 27691/28595 27698/28602 +f 27699/28603 27692/28596 27682/28586 +f 27657/28561 27692/28596 27700/28604 +f 27701/28605 27683/28587 27690/28594 +f 27702/28606 27693/28597 27683/28587 +f 27694/28598 27685/28589 27676/28580 +f 27694/28598 27686/28590 27687/28591 +f 27695/28599 27702/28606 27688/28592 +f 27695/28599 27680/28584 27693/28597 +f 27696/28600 27689/28593 27701/28605 +f 27690/28594 27696/28600 27701/28605 +f 27698/28602 27691/28595 27697/28601 +f 27673/28577 27703/28607 27697/28601 +f 27682/28586 27698/28602 27704/28608 +f 27705/28609 27692/28596 27699/28603 +f 27699/28603 27682/28586 27706/28610 +f 27692/28596 27707/28611 27700/28604 +f 27701/28605 27702/28606 27683/28587 +f 27695/28599 27693/28597 27702/28606 +f 27708/28612 27698/28602 27697/28601 +f 27709/28613 27703/28607 27673/28577 +f 27710/28614 27697/28601 27703/28607 +f 27711/28615 27682/28586 27704/28608 +f 27704/28608 27698/28602 27712/28616 +f 27713/28617 27692/28596 27705/28609 +f 27714/28618 27705/28609 27699/28603 +f 27706/28610 27715/28619 27699/28603 +f 27706/28610 27682/28586 27716/28620 +f 27717/28621 27707/28611 27692/28596 +f 27718/28622 27700/28604 27707/28611 +f 27708/28612 27719/28623 27698/28602 +f 27720/28624 27708/28612 27697/28601 +f 27721/28625 27703/28607 27709/28613 +f 27673/28577 27722/28626 27709/28613 +f 27723/28627 27710/28614 27703/28607 +f 27697/28601 27710/28614 27720/28624 +f 27724/28628 27711/28615 27704/28608 +f 27725/28629 27682/28586 27711/28615 +f 27719/28623 27712/28616 27698/28602 +f 27704/28608 27712/28616 27726/28630 +f 27727/28631 27692/28596 27713/28617 +f 27728/28632 27713/28617 27705/28609 +f 27705/28609 27714/28618 27729/28633 +f 27715/28619 27714/28618 27699/28603 +f 27730/28634 27715/28619 27706/28610 +f 27731/28635 27706/28610 27716/28620 +f 27716/28620 27682/28586 27725/28629 +f 27707/28611 27717/28621 27732/28636 +f 27692/28596 27733/28637 27717/28621 +f 27700/28604 27718/28622 27734/28638 +f 27718/28622 27707/28611 27735/28639 +f 27736/28640 27719/28623 27708/28612 +f 27737/28641 27708/28612 27720/28624 +f 27721/28625 27723/28627 27703/28607 +f 27738/28642 27721/28625 27709/28613 +f 27722/28626 27673/28577 27739/28643 +f 27722/28626 27740/28644 27709/28613 +f 27710/28614 27723/28627 27741/28645 +f 27710/28614 27741/28645 27720/28624 +f 27742/28646 27711/28615 27724/28628 +f 27726/28630 27724/28628 27704/28608 +f 27711/28615 27743/28647 27725/28629 +f 27719/28623 27736/28640 27712/28616 +f 27726/28630 27712/28616 27736/28640 +f 27692/28596 27727/28631 27733/28637 +f 27728/28632 27727/28631 27713/28617 +f 27705/28609 27744/28648 27728/28632 +f 27714/28618 27745/28649 27729/28633 +f 27729/28633 27744/28648 27705/28609 +f 27715/28619 27746/28650 27714/28618 +f 27731/28635 27730/28634 27706/28610 +f 27730/28634 27747/28651 27715/28619 +f 27748/28652 27731/28635 27716/28620 +f 27743/28647 27716/28620 27725/28629 +f 27732/28636 27717/28621 27749/28653 +f 27707/28611 27732/28636 27735/28639 +f 27717/28621 27733/28637 27749/28653 +f 27718/28622 27735/28639 27734/28638 +f 27750/28654 27700/28604 27734/28638 +f 27736/28640 27708/28612 27737/28641 +f 27720/28624 27741/28645 27737/28641 +f 27721/28625 27751/28655 27723/28627 +f 27709/28613 27752/28656 27738/28642 +f 27751/28655 27721/28625 27738/28642 +f 27722/28626 27739/28643 27740/28644 +f 27709/28613 27740/28644 27753/28657 +f 27741/28645 27723/28627 27754/28658 +f 27755/28659 27742/28646 27724/28628 +f 27711/28615 27742/28646 27756/28660 +f 27726/28630 27757/28661 27724/28628 +f 27743/28647 27711/28615 27756/28660 +f 27726/28630 27736/28640 27758/28662 +f 27733/28637 27727/28631 27759/28663 +f 27760/28664 27727/28631 27728/28632 +f 27728/28632 27744/28648 27761/28665 +f 27746/28650 27745/28649 27714/28618 +f 27729/28633 27745/28649 27762/28666 +f 27729/28633 27761/28665 27744/28648 +f 27746/28650 27715/28619 27763/28667 +f 27731/28635 27764/28668 27730/28634 +f 27730/28634 27765/28669 27747/28651 +f 27763/28667 27715/28619 27747/28651 +f 27731/28635 27748/28652 27766/28670 +f 27767/28671 27748/28652 27716/28620 +f 27743/28647 27768/28672 27716/28620 +f 27749/28653 27769/28673 27732/28636 +f 27732/28636 27770/28674 27735/28639 +f 27771/28675 27749/28653 27733/28637 +f 27735/28639 27772/28676 27734/28638 +f 27773/28677 27750/28654 27734/28638 +f 27774/28678 27736/28640 27737/28641 +f 27741/28645 27775/28679 27737/28641 +f 27754/28658 27723/28627 27751/28655 +f 27753/28657 27752/28656 27709/28613 +f 27738/28642 27752/28656 27776/28680 +f 27751/28655 27738/28642 27777/28681 +f 27778/28682 27753/28657 27740/28644 +f 27741/28645 27754/28658 27779/28683 +f 27724/28628 27780/28684 27755/28659 +f 27742/28646 27755/28659 27781/28685 +f 27756/28660 27742/28646 27782/28686 +f 27757/28661 27780/28684 27724/28628 +f 27726/28630 27783/28687 27757/28661 +f 27743/28647 27756/28660 27768/28672 +f 27784/28688 27758/28662 27736/28640 +f 27758/28662 27785/28689 27726/28630 +f 27727/28631 27760/28664 27759/28663 +f 27759/28663 27786/28690 27733/28637 +f 27761/28665 27760/28664 27728/28632 +f 27746/28650 27787/28691 27745/28649 +f 27729/28633 27762/28666 27788/28692 +f 27789/28693 27762/28666 27745/28649 +f 27729/28633 27788/28692 27761/28665 +f 27746/28650 27763/28667 27787/28691 +f 27764/28668 27765/28669 27730/28634 +f 27731/28635 27766/28670 27764/28668 +f 27765/28669 27763/28667 27747/28651 +f 27748/28652 27790/28694 27766/28670 +f 27790/28694 27748/28652 27767/28671 +f 27716/28620 27791/28695 27767/28671 +f 27768/28672 27791/28695 27716/28620 +f 27792/28696 27769/28673 27749/28653 +f 27769/28673 27770/28674 27732/28636 +f 27770/28674 27772/28676 27735/28639 +f 27749/28653 27771/28675 27793/28697 +f 27733/28637 27786/28690 27771/28675 +f 27734/28638 27772/28676 27794/28698 +f 27773/28677 27734/28638 27794/28698 +f 27795/28699 27750/28654 27773/28677 +f 27774/28678 27784/28688 27736/28640 +f 27737/28641 27796/28700 27774/28678 +f 27779/28683 27775/28679 27741/28645 +f 27737/28641 27775/28679 27797/28701 +f 27798/28702 27754/28658 27751/28655 +f 27752/28656 27753/28657 27799/28703 +f 27738/28642 27776/28680 27777/28681 +f 27800/28704 27776/28680 27752/28656 +f 27777/28681 27801/28705 27751/28655 +f 27802/28706 27753/28657 27778/28682 +f 27803/28707 27778/28682 27740/28644 +f 27804/28708 27779/28683 27754/28658 +f 27755/28659 27780/28684 27805/28709 +f 27781/28685 27755/28659 27805/28709 +f 27742/28646 27781/28685 27782/28686 +f 27806/28710 27756/28660 27782/28686 +f 27807/28711 27780/28684 27757/28661 +f 27757/28661 27783/28687 27807/28711 +f 27783/28687 27726/28630 27808/28712 +f 27756/28660 27806/28710 27768/28672 +f 27758/28662 27784/28688 27809/28713 +f 27809/28713 27785/28689 27758/28662 +f 27785/28689 27808/28712 27726/28630 +f 27810/28714 27759/28663 27760/28664 +f 27759/28663 27810/28714 27786/28690 +f 27761/28665 27811/28715 27760/28664 +f 27745/28649 27787/28691 27812/28716 +f 27788/28692 27762/28666 27813/28717 +f 27762/28666 27789/28693 27814/28718 +f 27745/28649 27812/28716 27789/28693 +f 27788/28692 27811/28715 27761/28665 +f 27763/28667 27812/28716 27787/28691 +f 27815/28719 27765/28669 27764/28668 +f 27816/28720 27764/28668 27766/28670 +f 27815/28719 27763/28667 27765/28669 +f 27766/28670 27790/28694 27817/28721 +f 27767/28671 27818/28722 27790/28694 +f 27819/28723 27767/28671 27791/28695 +f 27806/28710 27791/28695 27768/28672 +f 27769/28673 27792/28696 27820/28724 +f 27749/28653 27821/28725 27792/28696 +f 27770/28674 27769/28673 27822/28726 +f 27770/28674 27822/28726 27772/28676 +f 27823/28727 27793/28697 27771/28675 +f 27793/28697 27821/28725 27749/28653 +f 27786/28690 27823/28727 27771/28675 +f 27772/28676 27824/28728 27794/28698 +f 27794/28698 27825/28729 27773/28677 +f 27795/28699 27773/28677 27825/28729 +f 27774/28678 27826/28730 27784/28688 +f 27796/28700 27826/28730 27774/28678 +f 27737/28641 27797/28701 27796/28700 +f 27775/28679 27779/28683 27827/28731 +f 27828/28732 27797/28701 27775/28679 +f 27798/28702 27829/28733 27754/28658 +f 27798/28702 27751/28655 27801/28705 +f 27799/28703 27753/28657 27802/28706 +f 27752/28656 27799/28703 27800/28704 +f 27776/28680 27830/28734 27777/28681 +f 27830/28734 27776/28680 27800/28704 +f 27831/28735 27801/28705 27777/28681 +f 27778/28682 27832/28736 27802/28706 +f 27778/28682 27803/28707 27833/28737 +f 27834/28738 27803/28707 27740/28644 +f 27835/28739 27779/28683 27804/28708 +f 27804/28708 27754/28658 27836/28740 +f 27805/28709 27780/28684 27807/28711 +f 27837/28741 27781/28685 27805/28709 +f 27781/28685 27838/28742 27782/28686 +f 27806/28710 27782/28686 27839/28743 +f 27807/28711 27783/28687 27840/28744 +f 27840/28744 27783/28687 27808/28712 +f 27826/28730 27809/28713 27784/28688 +f 27809/28713 27841/28745 27785/28689 +f 27841/28745 27808/28712 27785/28689 +f 27842/28746 27810/28714 27760/28664 +f 27786/28690 27810/28714 27843/28747 +f 27811/28715 27842/28746 27760/28664 +f 27844/28748 27788/28692 27813/28717 +f 27762/28666 27814/28718 27813/28717 +f 27789/28693 27845/28749 27814/28718 +f 27812/28716 27846/28750 27789/28693 +f 27844/28748 27811/28715 27788/28692 +f 27763/28667 27815/28719 27812/28716 +f 27815/28719 27764/28668 27816/28720 +f 27766/28670 27817/28721 27816/28720 +f 27817/28721 27790/28694 27818/28722 +f 27819/28723 27818/28722 27767/28671 +f 27819/28723 27791/28695 27839/28743 +f 27839/28743 27791/28695 27806/28710 +f 27792/28696 27847/28751 27820/28724 +f 27822/28726 27769/28673 27820/28724 +f 27821/28725 27847/28751 27792/28696 +f 27848/28752 27772/28676 27822/28726 +f 27849/28753 27793/28697 27823/28727 +f 27821/28725 27793/28697 27849/28753 +f 27823/28727 27786/28690 27843/28747 +f 27824/28728 27772/28676 27848/28752 +f 27824/28728 27825/28729 27794/28698 +f 27796/28700 27850/28754 27826/28730 +f 27797/28701 27851/28755 27796/28700 +f 27779/28683 27835/28739 27827/28731 +f 27775/28679 27827/28731 27828/28732 +f 27828/28732 27852/28756 27797/28701 +f 27798/28702 27853/28757 27829/28733 +f 27836/28740 27754/28658 27829/28733 +f 27831/28735 27798/28702 27801/28705 +f 27854/28758 27799/28703 27802/28706 +f 27799/28703 27854/28758 27800/28704 +f 27777/28681 27830/28734 27831/28735 +f 27855/28759 27830/28734 27800/28704 +f 27856/28760 27832/28736 27778/28682 +f 27802/28706 27832/28736 27857/28761 +f 27803/28707 27858/28762 27833/28737 +f 27833/28737 27856/28760 27778/28682 +f 27859/28763 27834/28738 27740/28644 +f 27860/28764 27803/28707 27834/28738 +f 27835/28739 27804/28708 27861/28765 +f 27862/28766 27804/28708 27836/28740 +f 27805/28709 27807/28711 27863/28767 +f 27864/28768 27837/28741 27805/28709 +f 27865/28769 27781/28685 27837/28741 +f 27838/28742 27781/28685 27865/28769 +f 27838/28742 27866/28770 27782/28686 +f 27839/28743 27782/28686 27866/28770 +f 27863/28767 27807/28711 27840/28744 +f 27808/28712 27867/28771 27840/28744 +f 27809/28713 27826/28730 27868/28772 +f 27841/28745 27809/28713 27869/28773 +f 27841/28745 27867/28771 27808/28712 +f 27842/28746 27870/28774 27810/28714 +f 27843/28747 27810/28714 27870/28774 +f 27871/28775 27842/28746 27811/28715 +f 27813/28717 27814/28718 27844/28748 +f 27789/28693 27872/28776 27845/28749 +f 27845/28749 27873/28777 27814/28718 +f 27812/28716 27874/28778 27846/28750 +f 27872/28776 27789/28693 27846/28750 +f 27844/28748 27871/28775 27811/28715 +f 27812/28716 27815/28719 27874/28778 +f 27874/28778 27815/28719 27816/28720 +f 27875/28779 27816/28720 27817/28721 +f 27876/28780 27817/28721 27818/28722 +f 27819/28723 27877/28781 27818/28722 +f 27877/28781 27819/28723 27839/28743 +f 27820/28724 27847/28751 27878/28782 +f 27879/28783 27822/28726 27820/28724 +f 27847/28751 27821/28725 27878/28782 +f 27880/28784 27848/28752 27822/28726 +f 27849/28753 27823/28727 27843/28747 +f 27821/28725 27849/28753 27881/28785 +f 27882/28786 27824/28728 27848/28752 +f 27796/28700 27851/28755 27850/28754 +f 27826/28730 27850/28754 27868/28772 +f 27797/28701 27852/28756 27851/28755 +f 27835/28739 27828/28732 27827/28731 +f 27883/28787 27852/28756 27828/28732 +f 27853/28757 27798/28702 27831/28735 +f 27853/28757 27884/28788 27829/28733 +f 27836/28740 27829/28733 27884/28788 +f 27854/28758 27802/28706 27885/28789 +f 27800/28704 27854/28758 27855/28759 +f 27831/28735 27830/28734 27886/28790 +f 27830/28734 27855/28759 27886/28790 +f 27887/28791 27832/28736 27856/28760 +f 27802/28706 27857/28761 27885/28789 +f 27887/28791 27857/28761 27832/28736 +f 27888/28792 27858/28762 27803/28707 +f 27858/28762 27856/28760 27833/28737 +f 27859/28763 27860/28764 27834/28738 +f 27889/28793 27859/28763 27740/28644 +f 27888/28792 27803/28707 27860/28764 +f 27862/28766 27861/28765 27804/28708 +f 27835/28739 27861/28765 27890/28794 +f 27891/28795 27862/28766 27836/28740 +f 27864/28768 27805/28709 27863/28767 +f 27837/28741 27864/28768 27892/28796 +f 27893/28797 27865/28769 27837/28741 +f 27838/28742 27865/28769 27894/28798 +f 27866/28770 27838/28742 27894/28798 +f 27866/28770 27877/28781 27839/28743 +f 27840/28744 27864/28768 27863/28767 +f 27840/28744 27867/28771 27869/28773 +f 27809/28713 27868/28772 27869/28773 +f 27867/28771 27841/28745 27869/28773 +f 27870/28774 27842/28746 27871/28775 +f 27870/28774 27895/28799 27843/28747 +f 27814/28718 27873/28777 27844/28748 +f 27872/28776 27896/28800 27845/28749 +f 27897/28801 27873/28777 27845/28749 +f 27898/28802 27846/28750 27874/28778 +f 27846/28750 27899/28803 27872/28776 +f 27871/28775 27844/28748 27900/28804 +f 27816/28720 27875/28779 27874/28778 +f 27875/28779 27817/28721 27876/28780 +f 27901/28805 27876/28780 27818/28722 +f 27818/28722 27877/28781 27901/28805 +f 27820/28724 27878/28782 27879/28783 +f 27822/28726 27879/28783 27880/28784 +f 27878/28782 27821/28725 27902/28806 +f 27903/28807 27848/28752 27880/28784 +f 27843/28747 27904/28808 27849/28753 +f 27821/28725 27881/28785 27902/28806 +f 27881/28785 27849/28753 27905/28809 +f 27903/28807 27882/28786 27848/28752 +f 27906/28810 27824/28728 27882/28786 +f 27850/28754 27851/28755 27907/28811 +f 27908/28812 27868/28772 27850/28754 +f 27851/28755 27852/28756 27883/28787 +f 27883/28787 27828/28732 27835/28739 +f 27886/28790 27853/28757 27831/28735 +f 27884/28788 27853/28757 27909/28813 +f 27884/28788 27891/28795 27836/28740 +f 27885/28789 27910/28814 27854/28758 +f 27910/28814 27855/28759 27854/28758 +f 27911/28815 27886/28790 27855/28759 +f 27858/28762 27887/28791 27856/28760 +f 27857/28761 27912/28816 27885/28789 +f 27887/28791 27913/28817 27857/28761 +f 27858/28762 27888/28792 27913/28817 +f 27859/28763 27914/28818 27860/28764 +f 27889/28793 27915/28819 27859/28763 +f 27916/28820 27888/28792 27860/28764 +f 27862/28766 27891/28795 27861/28765 +f 27835/28739 27890/28794 27917/28821 +f 27918/28822 27890/28794 27861/28765 +f 27864/28768 27919/28823 27892/28796 +f 27893/28797 27837/28741 27892/28796 +f 27920/28824 27865/28769 27893/28797 +f 27865/28769 27920/28824 27894/28798 +f 27894/28798 27921/28825 27866/28770 +f 27877/28781 27866/28770 27901/28805 +f 27922/28826 27864/28768 27840/28744 +f 27869/28773 27923/28827 27840/28744 +f 27868/28772 27924/28828 27869/28773 +f 27871/28775 27900/28804 27870/28774 +f 27870/28774 27925/28829 27895/28799 +f 27895/28799 27904/28808 27843/28747 +f 27844/28748 27873/28777 27900/28804 +f 27896/28800 27897/28801 27845/28749 +f 27926/28830 27896/28800 27872/28776 +f 27873/28777 27897/28801 27927/28831 +f 27898/28802 27899/28803 27846/28750 +f 27898/28802 27874/28778 27875/28779 +f 27872/28776 27899/28803 27926/28830 +f 27928/28832 27875/28779 27876/28780 +f 27876/28780 27901/28805 27929/28833 +f 27878/28782 27930/28834 27879/28783 +f 27879/28783 27931/28835 27880/28784 +f 27932/28836 27878/28782 27902/28806 +f 27882/28786 27903/28807 27880/28784 +f 27905/28809 27849/28753 27904/28808 +f 27881/28785 27905/28809 27902/28806 +f 27906/28810 27933/28837 27824/28728 +f 27906/28810 27882/28786 27880/28784 +f 27907/28811 27851/28755 27883/28787 +f 27850/28754 27907/28811 27908/28812 +f 27908/28812 27934/28838 27868/28772 +f 27883/28787 27835/28739 27917/28821 +f 27886/28790 27909/28813 27853/28757 +f 27884/28788 27909/28813 27935/28839 +f 27884/28788 27935/28839 27891/28795 +f 27885/28789 27936/28840 27910/28814 +f 27910/28814 27911/28815 27855/28759 +f 27909/28813 27886/28790 27911/28815 +f 27913/28817 27887/28791 27858/28762 +f 27885/28789 27912/28816 27936/28840 +f 27857/28761 27937/28841 27912/28816 +f 27857/28761 27913/28817 27937/28841 +f 27888/28792 27938/28842 27913/28817 +f 27859/28763 27915/28819 27914/28818 +f 27914/28818 27939/28843 27860/28764 +f 27889/28793 27940/28844 27915/28819 +f 27916/28820 27938/28842 27888/28792 +f 27939/28843 27916/28820 27860/28764 +f 27918/28822 27861/28765 27891/28795 +f 27890/28794 27941/28845 27917/28821 +f 27942/28846 27890/28794 27918/28822 +f 27919/28823 27864/28768 27922/28826 +f 27892/28796 27919/28823 27893/28797 +f 27893/28797 27919/28823 27920/28824 +f 27920/28824 27943/28847 27894/28798 +f 27894/28798 27944/28848 27921/28825 +f 27866/28770 27921/28825 27901/28805 +f 27922/28826 27840/28744 27945/28849 +f 27923/28827 27945/28849 27840/28744 +f 27924/28828 27923/28827 27869/28773 +f 27924/28828 27868/28772 27934/28838 +f 27900/28804 27925/28829 27870/28774 +f 27925/28829 27946/28850 27895/28799 +f 27904/28808 27895/28799 27947/28851 +f 27948/28852 27900/28804 27873/28777 +f 27897/28801 27896/28800 27949/28853 +f 27949/28853 27896/28800 27926/28830 +f 27927/28831 27897/28801 27950/28854 +f 27948/28852 27873/28777 27927/28831 +f 27951/28855 27899/28803 27898/28802 +f 27928/28832 27898/28802 27875/28779 +f 27899/28803 27951/28855 27926/28830 +f 27876/28780 27929/28833 27928/28832 +f 27921/28825 27929/28833 27901/28805 +f 27932/28836 27930/28834 27878/28782 +f 27952/28856 27879/28783 27930/28834 +f 27879/28783 27953/28857 27931/28835 +f 27880/28784 27931/28835 27954/28858 +f 27905/28809 27932/28836 27902/28806 +f 27904/28808 27947/28851 27905/28809 +f 27933/28837 27906/28810 27954/28858 +f 27824/28728 27933/28837 27955/28859 +f 27954/28858 27906/28810 27880/28784 +f 27941/28845 27907/28811 27883/28787 +f 27907/28811 27956/28860 27908/28812 +f 27908/28812 27956/28860 27934/28838 +f 27917/28821 27941/28845 27883/28787 +f 27957/28861 27935/28839 27909/28813 +f 27891/28795 27935/28839 27958/28862 +f 27936/28840 27959/28863 27910/28814 +f 27959/28863 27911/28815 27910/28814 +f 27960/28864 27909/28813 27911/28815 +f 27912/28816 27961/28865 27936/28840 +f 27961/28865 27912/28816 27937/28841 +f 27937/28841 27913/28817 27962/28866 +f 27913/28817 27938/28842 27962/28866 +f 27963/28867 27914/28818 27915/28819 +f 27914/28818 27964/28868 27939/28843 +f 27940/28844 27963/28867 27915/28819 +f 27938/28842 27916/28820 27965/28869 +f 27916/28820 27939/28843 27965/28869 +f 27891/28795 27958/28862 27918/28822 +f 27941/28845 27890/28794 27942/28846 +f 27966/28870 27942/28846 27918/28822 +f 27967/28871 27919/28823 27922/28826 +f 27968/28872 27920/28824 27919/28823 +f 27920/28824 27968/28872 27943/28847 +f 27943/28847 27944/28848 27894/28798 +f 27921/28825 27944/28848 27969/28873 +f 27945/28849 27967/28871 27922/28826 +f 27945/28849 27923/28827 27970/28874 +f 27923/28827 27924/28828 27934/28838 +f 27900/28804 27948/28852 27925/28829 +f 27948/28852 27946/28850 27925/28829 +f 27946/28850 27947/28851 27895/28799 +f 27971/28875 27897/28801 27949/28853 +f 27972/28876 27949/28853 27926/28830 +f 27927/28831 27950/28854 27973/28877 +f 27897/28801 27971/28875 27950/28854 +f 27927/28831 27974/28878 27948/28852 +f 27951/28855 27898/28802 27975/28879 +f 27898/28802 27928/28832 27975/28879 +f 27926/28830 27951/28855 27976/28880 +f 27928/28832 27929/28833 27975/28879 +f 27969/28873 27929/28833 27921/28825 +f 27930/28834 27932/28836 27977/28881 +f 27953/28857 27879/28783 27952/28856 +f 27930/28834 27977/28881 27952/28856 +f 27978/28882 27931/28835 27953/28857 +f 27931/28835 27978/28882 27954/28858 +f 27932/28836 27905/28809 27979/28883 +f 27905/28809 27947/28851 27979/28883 +f 27954/28858 27980/28884 27933/28837 +f 27955/28859 27933/28837 27981/28885 +f 27982/28886 27824/28728 27955/28859 +f 27956/28860 27907/28811 27941/28845 +f 27983/28887 27934/28838 27956/28860 +f 27935/28839 27957/28861 27984/28888 +f 27960/28864 27957/28861 27909/28813 +f 27984/28888 27958/28862 27935/28839 +f 27959/28863 27936/28840 27985/28889 +f 27911/28815 27959/28863 27986/28890 +f 27911/28815 27986/28890 27960/28864 +f 27961/28865 27985/28889 27936/28840 +f 27961/28865 27937/28841 27962/28866 +f 27938/28842 27987/28891 27962/28866 +f 27914/28818 27963/28867 27964/28868 +f 27939/28843 27964/28868 27988/28892 +f 27989/28893 27963/28867 27940/28844 +f 27965/28869 27987/28891 27938/28842 +f 27939/28843 27988/28892 27965/28869 +f 27958/28862 27990/28894 27918/28822 +f 27983/28887 27941/28845 27942/28846 +f 27966/28870 27991/28895 27942/28846 +f 27918/28822 27990/28894 27966/28870 +f 27919/28823 27967/28871 27992/28896 +f 27968/28872 27919/28823 27992/28896 +f 27943/28847 27968/28872 27993/28897 +f 27994/28898 27944/28848 27943/28847 +f 27944/28848 27995/28899 27969/28873 +f 27970/28874 27967/28871 27945/28849 +f 27970/28874 27923/28827 27996/28900 +f 27996/28900 27923/28827 27934/28838 +f 27997/28901 27946/28850 27948/28852 +f 27947/28851 27946/28850 27997/28901 +f 27971/28875 27949/28853 27998/28902 +f 27999/28903 27949/28853 27972/28876 +f 27976/28880 27972/28876 27926/28830 +f 27974/28878 27927/28831 27973/28877 +f 27973/28877 27950/28854 28000/28904 +f 27998/28902 27950/28854 27971/28875 +f 27997/28901 27948/28852 27974/28878 +f 27976/28880 27951/28855 27975/28879 +f 27929/28833 27976/28880 27975/28879 +f 27969/28873 27976/28880 27929/28833 +f 27932/28836 28001/28905 27977/28881 +f 28002/28906 27953/28857 27952/28856 +f 27977/28881 28002/28906 27952/28856 +f 27954/28858 27978/28882 27980/28884 +f 27932/28836 27979/28883 28001/28905 +f 28003/28907 27979/28883 27947/28851 +f 27980/28884 27981/28885 27933/28837 +f 27981/28885 28004/28908 27955/28859 +f 27955/28859 28004/28908 27982/28886 +f 27956/28860 27941/28845 27983/28887 +f 27934/28838 27983/28887 28005/28909 +f 28006/28910 27984/28888 27957/28861 +f 27960/28864 28007/28911 27957/28861 +f 27984/28888 27990/28894 27958/28862 +f 27959/28863 27985/28889 28008/28912 +f 28008/28912 27986/28890 27959/28863 +f 27960/28864 27986/28890 28009/28913 +f 27985/28889 27961/28865 28010/28914 +f 27962/28866 27987/28891 27961/28865 +f 27964/28868 27963/28867 28011/28915 +f 28012/28916 27988/28892 27964/28868 +f 27963/28867 27989/28893 28011/28915 +f 27940/28844 28013/28917 27989/28893 +f 28014/28918 27987/28891 27965/28869 +f 27965/28869 27988/28892 28015/28919 +f 27942/28846 28016/28920 27983/28887 +f 27991/28895 28016/28920 27942/28846 +f 28017/28921 27991/28895 27966/28870 +f 27990/28894 28017/28921 27966/28870 +f 27967/28871 28018/28922 27992/28896 +f 27993/28897 27968/28872 27992/28896 +f 28019/28923 27943/28847 27993/28897 +f 27944/28848 27994/28898 27995/28899 +f 27943/28847 28020/28924 27994/28898 +f 27969/28873 27995/28899 28021/28925 +f 28018/28922 27967/28871 27970/28874 +f 27996/28900 28018/28922 27970/28874 +f 27996/28900 27934/28838 28005/28909 +f 28003/28907 27947/28851 27997/28901 +f 27949/28853 28022/28926 27998/28902 +f 27972/28876 27976/28880 27999/28903 +f 28022/28926 27949/28853 27999/28903 +f 28023/28927 27974/28878 27973/28877 +f 28000/28904 27950/28854 27998/28902 +f 28024/28928 27973/28877 28000/28904 +f 27997/28901 27974/28878 28023/28927 +f 27969/28873 28021/28925 27976/28880 +f 28003/28907 28001/28905 27979/28883 +f 28004/28908 27981/28885 28025/28929 +f 28004/28908 28026/28930 27982/28886 +f 27983/28887 28027/28931 28005/28909 +f 27984/28888 28006/28910 28028/28932 +f 28007/28911 28006/28910 27957/28861 +f 28029/28933 28007/28911 27960/28864 +f 28030/28934 27990/28894 27984/28888 +f 28031/28935 28008/28912 27985/28889 +f 28008/28912 28032/28936 27986/28890 +f 28032/28936 28009/28913 27986/28890 +f 28009/28913 28029/28933 27960/28864 +f 28010/28914 27961/28865 27987/28891 +f 28033/28937 27985/28889 28010/28914 +f 28034/28938 27964/28868 28011/28915 +f 28012/28916 28015/28919 27988/28892 +f 27964/28868 28035/28939 28012/28916 +f 28011/28915 27989/28893 28036/28940 +f 28013/28917 28037/28941 27989/28893 +f 28014/28918 28038/28942 27987/28891 +f 28015/28919 28014/28918 27965/28869 +f 27983/28887 28016/28920 28027/28931 +f 28017/28921 28016/28920 27991/28895 +f 27990/28894 28039/28943 28017/28921 +f 28040/28944 27992/28896 28018/28922 +f 28041/28945 27993/28897 27992/28896 +f 28020/28924 27943/28847 28019/28923 +f 28019/28923 27993/28897 20004/28946 +f 28021/28925 27995/28899 27994/28898 +f 27994/28898 28020/28924 28021/28925 +f 28005/28909 28018/28922 27996/28900 +f 27998/28902 28022/28926 27999/28903 +f 27976/28880 28042/28947 27999/28903 +f 27973/28877 28043/28948 28023/28927 +f 28044/28949 28000/28904 27998/28902 +f 28024/28928 28043/28948 27973/28877 +f 28024/28928 28000/28904 28043/28948 +f 28021/28925 28042/28947 27976/28880 +f 28045/28950 28004/28908 28025/28929 +f 28026/28930 28004/28908 28045/28950 +f 28046/28951 27982/28886 28026/28930 +f 28027/28931 28047/28952 28005/28909 +f 28028/28932 28006/28910 28048/28953 +f 28030/28934 27984/28888 28028/28932 +f 28048/28953 28006/28910 28007/28911 +f 28029/28933 28048/28953 28007/28911 +f 27990/28894 28030/28934 28039/28943 +f 28031/28935 28033/28937 28008/28912 +f 28033/28937 28031/28935 27985/28889 +f 28049/28954 28032/28936 28008/28912 +f 28032/28936 28049/28954 28009/28913 +f 28009/28913 28050/28955 28029/28933 +f 28010/28914 27987/28891 28051/28956 +f 28052/28957 28033/28937 28010/28914 +f 28034/28938 28035/28939 27964/28868 +f 28053/28958 28034/28938 28011/28915 +f 28012/28916 28054/28959 28015/28919 +f 28055/28960 28012/28916 28035/28939 +f 28011/28915 28036/28940 28056/28961 +f 28037/28941 28036/28940 27989/28893 +f 28037/28941 28013/28917 28057/28962 +f 28058/28963 28038/28942 28014/28918 +f 28038/28942 28051/28956 27987/28891 +f 28015/28919 28059/28964 28014/28918 +f 28027/28931 28016/28920 28060/28965 +f 28016/28920 28017/28921 28060/28965 +f 28017/28921 28039/28943 28061/28966 +f 28018/28922 28047/28952 28040/28944 +f 27992/28896 28040/28944 28041/28945 +f 28062/28967 27993/28897 28041/28945 +f 20004/28946 27993/28897 20055/28968 +f 28020/28924 28042/28947 28021/28925 +f 28047/28952 28018/28922 28005/28909 +f 27999/28903 28044/28949 27998/28902 +f 27999/28903 28042/28947 28044/28949 +f 28026/28930 28045/28950 28063/28969 +f 28046/28951 28026/28930 28063/28969 +f 27982/28886 28046/28951 28064/28970 +f 28027/28931 28065/28971 28047/28952 +f 28028/28932 28048/28953 28066/28972 +f 28067/28973 28030/28934 28028/28932 +f 28048/28953 28029/28933 28066/28972 +f 28067/28973 28039/28943 28030/28934 +f 28008/28912 28033/28937 28049/28954 +f 28050/28955 28009/28913 28049/28954 +f 28066/28972 28029/28933 28050/28955 +f 28068/28974 28010/28914 28051/28956 +f 28052/28957 28069/28975 28033/28937 +f 28052/28957 28010/28914 28068/28974 +f 28035/28939 28034/28938 28055/28960 +f 28056/28961 28053/28958 28011/28915 +f 28055/28960 28034/28938 28053/28958 +f 28070/28976 28054/28959 28012/28916 +f 28071/28977 28015/28919 28054/28959 +f 28055/28960 28070/28976 28012/28916 +f 28056/28961 28036/28940 28072/28978 +f 28036/28940 28037/28941 28072/28978 +f 28013/28917 28073/28979 28057/28962 +f 28074/28980 28037/28941 28057/28962 +f 28051/28956 28038/28942 28058/28963 +f 28075/28981 28058/28963 28014/28918 +f 28015/28919 28071/28977 28059/28964 +f 28059/28964 28076/28982 28014/28918 +f 28060/28965 28065/28971 28027/28931 +f 28017/28921 28077/28983 28060/28965 +f 28061/28966 28039/28943 28067/28973 +f 28017/28921 28061/28966 28077/28983 +f 28040/28944 28047/28952 28065/28971 +f 28041/28945 28040/28944 28065/28971 +f 27993/28897 28062/28967 20055/28968 +f 28065/28971 28062/28967 28041/28945 +f 28046/28951 28063/28969 28078/28984 +f 28046/28951 28079/28985 28064/28970 +f 28028/28932 28066/28972 28067/28973 +f 28033/28937 28069/28975 28049/28954 +f 28080/28986 28050/28955 28049/28954 +f 28066/28972 28050/28955 28081/28987 +f 28068/28974 28051/28956 28082/28988 +f 28083/28989 28069/28975 28052/28957 +f 28052/28957 28068/28974 28082/28988 +f 28053/28958 28056/28961 28084/28990 +f 28053/28958 28084/28990 28055/28960 +f 28071/28977 28054/28959 28070/28976 +f 28055/28960 28085/28991 28070/28976 +f 28072/28978 28084/28990 28056/28961 +f 28037/28941 28074/28980 28072/28978 +f 28073/28979 28074/28980 28057/28962 +f 28058/28963 28082/28988 28051/28956 +f 28014/28918 28076/28982 28075/28981 +f 28082/28988 28058/28963 28075/28981 +f 28076/28982 28059/28964 28071/28977 +f 28062/28967 28065/28971 28060/28965 +f 28060/28965 28077/28983 28062/28967 +f 28067/28973 20153/28992 28061/28966 +f 28061/28966 20153/28992 28077/28983 +f 20055/28968 28062/28967 20102/28993 +f 28078/28984 28079/28985 28046/28951 +f 28066/28972 28081/28987 28067/28973 +f 28069/28975 28080/28986 28049/28954 +f 20169/28994 28050/28955 28080/28986 +f 28081/28987 28050/28955 20169/28994 +f 28083/28989 28086/28995 28069/28975 +f 28083/28989 28052/28957 28082/28988 +f 28085/28991 28055/28960 28084/28990 +f 28070/28976 28087/28996 28071/28977 +f 28085/28991 28088/28997 28070/28976 +f 28089/28998 28084/28990 28072/28978 +f 28074/28980 28090/28999 28072/28978 +f 28091/29000 28074/28980 28073/28979 +f 28076/28982 28087/28996 28075/28981 +f 28092/29001 28082/28988 28075/28981 +f 28087/28996 28076/28982 28071/28977 +f 28062/28967 28077/28983 20102/28993 +f 20169/28994 20153/28992 28067/28973 +f 28077/28983 20153/28992 20102/28993 +f 28081/28987 20169/28994 28067/28973 +f 28080/28986 28069/28975 20179/29002 +f 20179/29002 20169/28994 28080/28986 +f 28083/28989 28093/29003 28086/28995 +f 28086/28995 20179/29002 28069/28975 +f 28092/29001 28083/28989 28082/28988 +f 28084/28990 28089/28998 28085/28991 +f 28088/28997 28087/28996 28070/28976 +f 28094/29004 28088/28997 28085/28991 +f 28072/28978 28095/29005 28089/28998 +f 28096/29006 28090/28999 28074/28980 +f 28090/28999 28095/29005 28072/28978 +f 28074/28980 28091/29000 28097/29007 +f 28087/28996 28092/29001 28075/28981 +f 20194/29008 28086/28995 28093/29003 +f 28083/28989 28098/29009 28093/29003 +f 20188/29010 20179/29002 28086/28995 +f 28083/28989 28092/29001 28099/29011 +f 28089/28998 28100/29012 28085/28991 +f 28088/28997 28099/29011 28087/28996 +f 28085/28991 28100/29012 28094/29004 +f 28101/29013 28088/28997 28094/29004 +f 28102/29014 28089/28998 28095/29005 +f 28096/29006 28095/29005 28090/28999 +f 28096/29006 28074/28980 28097/29007 +f 28097/29007 28091/29000 28103/29015 +f 28092/29001 28087/28996 28099/29011 +f 20188/29010 28086/28995 20194/29008 +f 20194/29008 28093/29003 20187/29016 +f 28099/29011 28098/29009 28083/28989 +f 20187/29016 28093/29003 28098/29009 +f 28100/29012 28089/28998 28102/29014 +f 28088/28997 28101/29013 28099/29011 +f 28104/29017 28094/29004 28100/29012 +f 28101/29013 28094/29004 28105/29018 +f 28095/29005 28106/29019 28102/29014 +f 28095/29005 28096/29006 28106/29019 +f 28097/29007 28107/29020 28096/29006 +f 28108/29021 28097/29007 28103/29015 +f 28098/29009 28099/29011 28109/29022 +f 20187/29016 28098/29009 28110/29023 +f 28102/29014 28104/29017 28100/29012 +f 28099/29011 28101/29013 28109/29022 +f 28105/29018 28094/29004 28104/29017 +f 28101/29013 28105/29018 28111/29024 +f 28112/29025 28102/29014 28106/29019 +f 28106/29019 28096/29006 28107/29020 +f 28097/29007 28113/29026 28107/29020 +f 28113/29026 28097/29007 28108/29021 +f 28114/29027 28098/29009 28109/29022 +f 28114/29027 28110/29023 28098/29009 +f 28110/29023 20193/29028 20187/29016 +f 28102/29014 28115/29029 28104/29017 +f 28111/29024 28109/29022 28101/29013 +f 28116/29030 28105/29018 28104/29017 +f 28105/29018 28116/29030 28111/29024 +f 28115/29029 28102/29014 28112/29025 +f 28112/29025 28106/29019 28107/29020 +f 28107/29020 28113/29026 28117/29031 +f 28108/29021 28118/29032 28113/29026 +f 28114/29027 28109/29022 28119/29033 +f 28120/29034 28110/29023 28114/29027 +f 28110/29023 28121/29035 20193/29028 +f 28104/29017 28115/29029 28116/29030 +f 28111/29024 28119/29033 28109/29022 +f 28111/29024 28116/29030 28122/29036 +f 28123/29037 28115/29029 28112/29025 +f 28117/29031 28112/29025 28107/29020 +f 28117/29031 28113/29026 28124/29038 +f 28108/29021 28125/29039 28118/29032 +f 28113/29026 28118/29032 28124/29038 +f 28126/29040 28114/29027 28119/29033 +f 28120/29034 28114/29027 28126/29040 +f 20192/29041 28110/29023 28120/29034 +f 20193/29028 28121/29035 20191/29042 +f 20192/29041 28121/29035 28110/29023 +f 28116/29030 28115/29029 28127/29043 +f 28122/29036 28119/29033 28111/29024 +f 28126/29040 28122/29036 28116/29030 +f 28123/29037 28112/29025 28124/29038 +f 28123/29037 28128/29044 28115/29029 +f 28117/29031 28124/29038 28112/29025 +f 28125/29039 28108/29021 28129/29045 +f 28123/29037 28118/29032 28125/29039 +f 28124/29038 28118/29032 28123/29037 +f 28122/29036 28126/29040 28119/29033 +f 28120/29034 28126/29040 28130/29046 +f 20199/29047 20192/29041 28120/29034 +f 28121/29035 20192/29041 20191/29042 +f 28127/29043 28131/29048 28116/29030 +f 28127/29043 28115/29029 28128/29044 +f 28126/29040 28116/29030 28131/29048 +f 28123/29037 20310/29049 28128/29044 +f 28129/29045 28108/29021 28132/29050 +f 28133/29051 28125/29039 28129/29045 +f 28123/29037 28125/29039 28133/29051 +f 28130/29046 28126/29040 28131/29048 +f 28130/29046 20199/29047 28120/29034 +f 28134/29052 28131/29048 28127/29043 +f 28135/29053 28127/29043 28128/29044 +f 28133/29051 20310/29049 28123/29037 +f 20310/29049 20293/29054 28128/29044 +f 28129/29045 28132/29050 28136/29055 +f 28137/29056 28133/29051 28129/29045 +f 28130/29046 28131/29048 28138/29057 +f 28130/29046 28138/29057 20199/29047 +f 28127/29043 28135/29053 28134/29052 +f 28131/29048 28134/29052 28138/29057 +f 28135/29053 28128/29044 20293/29054 +f 20310/29049 28133/29051 20347/29058 +f 28137/29056 28129/29045 28136/29055 +f 28133/29051 28137/29056 20347/29058 +f 20199/29047 28138/29057 28139/29059 +f 28135/29053 20272/29060 28134/29052 +f 28138/29057 28134/29052 20264/29061 +f 20272/29060 28135/29053 20293/29054 +f 28140/29062 28137/29056 28136/29055 +f 28137/29056 28140/29062 20347/29058 +f 28138/29057 20244/29063 28139/29059 +f 20199/29047 28139/29059 20206/29064 +f 28134/29052 20272/29060 20264/29061 +f 28138/29057 20264/29061 20244/29063 +f 28139/29059 20244/29063 28141/29065 +f 28139/29059 20217/29066 20206/29064 +f 20232/29067 28141/29065 20244/29063 +f 28139/29059 28141/29065 20217/29066 +f 20232/29067 20217/29066 28141/29065 +f 28142/29068 28143/29069 28144/29070 +f 28145/29071 28143/29069 28142/29068 +f 28146/29072 28142/29068 28144/29070 +f 28142/29068 28147/29073 28145/29071 +f 28148/29074 28143/29069 28145/29071 +f 28146/29072 28149/29075 28142/29068 +f 28150/29076 28147/29073 28142/29068 +f 28145/29071 28147/29073 28151/29077 +f 28148/29074 28152/29078 28143/29069 +f 28151/29077 28148/29074 28145/29071 +f 28149/29075 28150/29076 28142/29068 +f 28146/29072 28153/29079 28149/29075 +f 28154/29080 28147/29073 28150/29076 +f 28147/29073 28154/29080 28151/29077 +f 28155/29081 28152/29078 28148/29074 +f 28151/29077 28156/29082 28148/29074 +f 28149/29075 28157/29083 28150/29076 +f 28153/29079 28158/29084 28149/29075 +f 28154/29080 28150/29076 28159/29085 +f 28151/29077 28154/29080 28160/29086 +f 28155/29081 28161/29087 28152/29078 +f 28162/29088 28155/29081 28148/29074 +f 28151/29077 28163/29089 28156/29082 +f 28162/29088 28148/29074 28156/29082 +f 28157/29083 28149/29075 28164/29090 +f 28150/29076 28157/29083 28165/29091 +f 28166/29092 28158/29084 28153/29079 +f 28164/29090 28149/29075 28158/29084 +f 28167/29093 28159/29085 28150/29076 +f 28154/29080 28159/29085 28168/29094 +f 28160/29086 28154/29080 28168/29094 +f 28160/29086 28163/29089 28151/29077 +f 28161/29087 28155/29081 28169/29095 +f 28152/29078 28161/29087 28170/29096 +f 28156/29082 28163/29089 28171/29097 +f 28172/29098 28157/29083 28164/29090 +f 28167/29093 28150/29076 28165/29091 +f 28157/29083 28173/29099 28165/29091 +f 28174/29100 28158/29084 28166/29092 +f 28164/29090 28158/29084 28174/29100 +f 28175/29101 28160/29086 28168/29094 +f 28176/29102 28163/29089 28160/29086 +f 28161/29087 28169/29095 28170/29096 +f 28177/29103 28152/29078 28170/29096 +f 28163/29089 28176/29102 28171/29097 +f 28164/29090 28174/29100 28172/29098 +f 28173/29099 28157/29083 28172/29098 +f 28165/29091 28178/29104 28167/29093 +f 28165/29091 28173/29099 28179/29105 +f 28174/29100 28166/29092 28180/29106 +f 28160/29086 28175/29101 28176/29102 +f 28170/29096 28169/29095 28181/29107 +f 28170/29096 28181/29107 28177/29103 +f 28172/29098 28174/29100 28182/29108 +f 28173/29099 28172/29098 28179/29105 +f 28178/29104 28165/29091 28179/29105 +f 28183/29109 28174/29100 28180/29106 +f 28174/29100 28183/29109 28182/29108 +f 28182/29108 28184/29110 28172/29098 +f 28172/29098 28184/29110 28179/29105 +f 28185/29111 28178/29104 28179/29105 +f 28186/29112 28183/29109 28180/29106 +f 28182/29108 28183/29109 28187/29113 +f 28184/29110 28182/29108 28187/29113 +f 28179/29105 28184/29110 28185/29111 +f 28188/29114 28186/29112 28180/29106 +f 28183/29109 28186/29112 28189/29115 +f 28187/29113 28183/29109 28189/29115 +f 28185/29111 28184/29110 28187/29113 +f 28190/29116 28186/29112 28188/29114 +f 28189/29115 28186/29112 28191/29117 +f 28190/29116 28191/29117 28186/29112 +f 28188/29114 28192/29118 28190/29116 +f 28193/29119 28191/29117 28190/29116 +f 28192/29118 28193/29119 28190/29116 +f 28194/29120 28195/29121 28196/29122 +f 28195/29121 28194/29120 28197/29123 +f 28196/29122 28195/29121 28198/29124 +f 28194/29120 28196/29122 28199/29125 +f 28194/29120 28200/29126 28197/29123 +f 28195/29121 28197/29123 28201/29127 +f 28195/29121 28202/29128 28198/29124 +f 28199/29125 28196/29122 28198/29124 +f 28194/29120 28199/29125 28203/29129 +f 28194/29120 28203/29129 28200/29126 +f 28200/29126 28204/29130 28197/29123 +f 28201/29127 28197/29123 28205/29131 +f 28201/29127 28206/29132 28195/29121 +f 28202/29128 28195/29121 28207/29133 +f 28202/29128 28208/29134 28198/29124 +f 28198/29124 28209/29135 28199/29125 +f 28210/29136 28203/29129 28199/29125 +f 28211/29137 28200/29126 28203/29129 +f 28204/29130 28205/29131 28197/29123 +f 28200/29126 28212/29138 28204/29130 +f 28213/29139 28201/29127 28205/29131 +f 28207/29133 28195/29121 28206/29132 +f 28201/29127 28214/29140 28206/29132 +f 28215/29141 28202/29128 28207/29133 +f 28198/29124 28208/29134 28216/29142 +f 28215/29141 28208/29134 28202/29128 +f 28217/29143 28199/29125 28209/29135 +f 28216/29142 28209/29135 28198/29124 +f 28218/29144 28210/29136 28199/29125 +f 28203/29129 28210/29136 28219/29145 +f 28203/29129 28219/29145 28211/29137 +f 28200/29126 28211/29137 28212/29138 +f 28205/29131 28204/29130 28220/29146 +f 28220/29146 28204/29130 28212/29138 +f 28205/29131 28221/29147 28213/29139 +f 28201/29127 28213/29139 28214/29140 +f 28206/29132 28214/29140 28207/29133 +f 28207/29133 28222/29148 28215/29141 +f 28216/29142 28208/29134 28223/29149 +f 28224/29150 28208/29134 28215/29141 +f 28199/29125 28217/29143 28218/29144 +f 28209/29135 28225/29151 28217/29143 +f 28216/29142 28226/29152 28209/29135 +f 28210/29136 28218/29144 28227/29153 +f 28228/29154 28219/29145 28210/29136 +f 28229/29155 28211/29137 28219/29145 +f 28212/29138 28211/29137 28230/29156 +f 28205/29131 28220/29146 28221/29147 +f 28212/29138 28231/29157 28220/29146 +f 28221/29147 28214/29140 28213/29139 +f 28232/29158 28207/29133 28214/29140 +f 28222/29148 28224/29150 28215/29141 +f 28222/29148 28207/29133 28232/29158 +f 28208/29134 28233/29159 28223/29149 +f 28226/29152 28216/29142 28223/29149 +f 28208/29134 28224/29150 28233/29159 +f 28225/29151 28218/29144 28217/29143 +f 28234/29160 28225/29151 28209/29135 +f 28209/29135 28226/29152 28234/29160 +f 28227/29153 28235/29161 28210/29136 +f 28218/29144 28225/29151 28227/29153 +f 28235/29161 28228/29154 28210/29136 +f 28236/29162 28219/29145 28228/29154 +f 28229/29155 28230/29156 28211/29137 +f 28219/29145 28236/29162 28229/29155 +f 28212/29138 28230/29156 28231/29157 +f 28220/29146 28237/29163 28221/29147 +f 12915/29164 28220/29146 28231/29157 +f 28238/29165 28214/29140 28221/29147 +f 28214/29140 28238/29165 28232/29158 +f 28222/29148 28239/29166 28224/29150 +f 28232/29158 28240/29167 28222/29148 +f 28233/29159 28224/29150 28239/29166 +f 28234/29160 28241/29168 28225/29151 +f 28227/29153 28242/29169 28235/29161 +f 28227/29153 28225/29151 28241/29168 +f 28235/29161 28243/29170 28228/29154 +f 28236/29162 28228/29154 28244/29171 +f 28245/29172 28230/29156 28229/29155 +f 28236/29162 28245/29172 28229/29155 +f 28231/29157 28230/29156 28246/29173 +f 28221/29147 28237/29163 28247/29174 +f 28220/29146 28248/29175 28237/29163 +f 12915/29164 28248/29175 28220/29146 +f 28231/29157 13161/29176 12915/29164 +f 28249/29177 28238/29165 28221/29147 +f 28232/29158 28238/29165 28250/29178 +f 28222/29148 28251/29179 28239/29166 +f 28250/29178 28240/29167 28232/29158 +f 28240/29167 28252/29180 28222/29148 +f 28241/29168 28242/29169 28227/29153 +f 28235/29161 28242/29169 28243/29170 +f 28228/29154 28243/29170 28244/29171 +f 28236/29162 28244/29171 28253/29181 +f 28230/29156 28245/29172 28254/29182 +f 28236/29162 28254/29182 28245/29172 +f 28230/29156 28254/29182 28246/29173 +f 13161/29176 28231/29157 28246/29173 +f 28249/29177 28221/29147 28247/29174 +f 28247/29174 28237/29163 28255/29183 +f 28248/29175 28255/29183 28237/29163 +f 12768/29184 28248/29175 12915/29164 +f 28250/29178 28238/29165 28249/29177 +f 28252/29180 28251/29179 28222/29148 +f 28256/29185 28240/29167 28250/29178 +f 28256/29185 28252/29180 28240/29167 +f 28241/29168 28257/29186 28242/29169 +f 28242/29169 28258/29187 28243/29170 +f 28243/29170 28259/29188 28244/29171 +f 28253/29181 28244/29171 28259/29188 +f 28236/29162 28253/29181 28260/29189 +f 28261/29190 28254/29182 28236/29162 +f 28246/29173 28254/29182 28262/29191 +f 13381/29192 13161/29176 28246/29173 +f 28247/29174 28263/29193 28249/29177 +f 28255/29183 28263/29193 28247/29174 +f 28255/29183 28248/29175 12768/29184 +f 28249/29177 28264/29194 28250/29178 +f 28264/29194 28256/29185 28250/29178 +f 28257/29186 28258/29187 28242/29169 +f 28257/29186 28241/29168 28265/29195 +f 28258/29187 28259/29188 28243/29170 +f 28253/29181 28259/29188 28266/29196 +f 28267/29197 28236/29162 28260/29189 +f 28253/29181 28266/29196 28260/29189 +f 28261/29190 28268/29198 28254/29182 +f 28236/29162 28267/29197 28261/29190 +f 28254/29182 28268/29198 28262/29191 +f 13381/29192 28246/29173 28262/29191 +f 13032/29199 28249/29177 28263/29193 +f 28255/29183 28269/29200 28263/29193 +f 28255/29183 12768/29184 28269/29200 +f 28264/29194 28249/29177 28270/29201 +f 28257/29186 28271/29202 28258/29187 +f 28257/29186 28265/29195 28272/29203 +f 28266/29196 28259/29188 28258/29187 +f 28267/29197 28260/29189 28273/29204 +f 28260/29189 28266/29196 28274/29205 +f 13232/29206 28268/29198 28261/29190 +f 28267/29197 28275/29207 28261/29190 +f 13448/29208 28262/29191 28268/29198 +f 13448/29208 13381/29192 28262/29191 +f 13032/29199 28263/29193 28269/29200 +f 28270/29201 28249/29177 13032/29199 +f 12768/29184 12909/29209 28269/29200 +f 28257/29186 28276/29210 28271/29202 +f 28271/29202 28277/29211 28258/29187 +f 28276/29210 28257/29186 28272/29203 +f 28272/29203 28265/29195 28278/29212 +f 28277/29211 28266/29196 28258/29187 +f 28260/29189 28279/29213 28273/29204 +f 28275/29207 28267/29197 28273/29204 +f 28277/29211 28274/29205 28266/29196 +f 28260/29189 28274/29205 28280/29214 +f 13448/29208 28268/29198 13232/29206 +f 28261/29190 28275/29207 13232/29206 +f 12909/29209 13032/29199 28269/29200 +f 28276/29210 28277/29211 28271/29202 +f 28276/29210 28272/29203 28281/29215 +f 28272/29203 28278/29212 28281/29215 +f 28282/29216 28273/29204 28279/29213 +f 28260/29189 28280/29214 28279/29213 +f 28275/29207 28273/29204 28283/29217 +f 28274/29205 28277/29211 28284/29218 +f 28280/29214 28274/29205 28285/29219 +f 28275/29207 28286/29220 13232/29206 +f 28276/29210 28284/29218 28277/29211 +f 28276/29210 28281/29215 28287/29221 +f 28281/29215 28278/29212 28288/29222 +f 28283/29217 28273/29204 28282/29216 +f 28279/29213 28289/29223 28282/29216 +f 28289/29223 28279/29213 28280/29214 +f 28283/29217 28286/29220 28275/29207 +f 28274/29205 28284/29218 28285/29219 +f 28290/29224 28280/29214 28285/29219 +f 28286/29220 13108/29225 13232/29206 +f 28291/29226 28284/29218 28276/29210 +f 28281/29215 28292/29227 28287/29221 +f 28291/29226 28276/29210 28287/29221 +f 28292/29227 28281/29215 28288/29222 +f 28278/29212 28293/29228 28288/29222 +f 28282/29216 28294/29229 28283/29217 +f 28289/29223 28295/29230 28282/29216 +f 28290/29224 28289/29223 28280/29214 +f 28283/29217 28296/29231 28286/29220 +f 28285/29219 28284/29218 28297/29232 +f 28297/29232 28290/29224 28285/29219 +f 13330/29233 13108/29225 28286/29220 +f 28291/29226 28297/29232 28284/29218 +f 28287/29221 28292/29227 28291/29226 +f 28298/29234 28292/29227 28288/29222 +f 28293/29228 28298/29234 28288/29222 +f 28294/29229 28296/29231 28283/29217 +f 28282/29216 28295/29230 28294/29229 +f 28299/29235 28295/29230 28289/29223 +f 28289/29223 28290/29224 28299/29235 +f 13330/29233 28286/29220 28296/29231 +f 28297/29232 28300/29236 28290/29224 +f 28297/29232 28291/29226 28301/29237 +f 28291/29226 28292/29227 28301/29237 +f 28292/29227 28298/29234 28302/29238 +f 28298/29234 28293/29228 28303/29239 +f 28304/29240 28296/29231 28294/29229 +f 28294/29229 28295/29230 28299/29235 +f 28299/29235 28290/29224 28305/29241 +f 13110/29242 13330/29233 28296/29231 +f 28300/29236 28297/29232 28301/29237 +f 28290/29224 28300/29236 28305/29241 +f 28292/29227 28306/29243 28301/29237 +f 28298/29234 28303/29239 28302/29238 +f 28306/29243 28292/29227 28302/29238 +f 28293/29228 28307/29244 28303/29239 +f 28304/29240 28308/29245 28296/29231 +f 28294/29229 28309/29246 28304/29240 +f 28309/29246 28294/29229 28299/29235 +f 28305/29241 28310/29247 28299/29235 +f 28296/29231 28308/29245 13110/29242 +f 28300/29236 28301/29237 28311/29248 +f 28300/29236 28312/29249 28305/29241 +f 28301/29237 28306/29243 28311/29248 +f 28302/29238 28303/29239 28313/29250 +f 28302/29238 28314/29251 28306/29243 +f 28307/29244 28293/29228 28315/29252 +f 28307/29244 28313/29250 28303/29239 +f 28304/29240 28316/29253 28308/29245 +f 28309/29246 28317/29254 28304/29240 +f 28318/29255 28309/29246 28299/29235 +f 28310/29247 28305/29241 28319/29256 +f 28299/29235 28310/29247 28318/29255 +f 13110/29242 28308/29245 13331/29257 +f 28311/29248 28312/29249 28300/29236 +f 28320/29258 28305/29241 28312/29249 +f 28306/29243 28314/29251 28311/29248 +f 28321/29259 28302/29238 28313/29250 +f 28314/29251 28302/29238 28321/29259 +f 28315/29252 28322/29260 28307/29244 +f 28313/29250 28307/29244 28322/29260 +f 28316/29253 28323/29261 28308/29245 +f 28304/29240 28324/29262 28316/29253 +f 28317/29254 28324/29262 28304/29240 +f 28309/29246 28318/29255 28317/29254 +f 28310/29247 28319/29256 28317/29254 +f 28319/29256 28305/29241 28320/29258 +f 28318/29255 28310/29247 28317/29254 +f 28308/29245 28325/29263 13331/29257 +f 28312/29249 28311/29248 28326/29264 +f 28327/29265 28320/29258 28312/29249 +f 28311/29248 28314/29251 28326/29264 +f 28313/29250 28322/29260 28321/29259 +f 28328/29266 28314/29251 28321/29259 +f 28315/29252 28329/29267 28322/29260 +f 28323/29261 28316/29253 28324/29262 +f 28308/29245 28323/29261 28330/29268 +f 28317/29254 28319/29256 28324/29262 +f 28331/29269 28319/29256 28320/29258 +f 13331/29257 28325/29263 13233/29270 +f 28325/29263 28308/29245 28330/29268 +f 28327/29265 28312/29249 28326/29264 +f 28327/29265 28331/29269 28320/29258 +f 28314/29251 28328/29266 28326/29264 +f 28332/29271 28321/29259 28322/29260 +f 28321/29259 28333/29272 28328/29266 +f 28329/29267 28315/29252 6246/29273 +f 28322/29260 28329/29267 28332/29271 +f 28323/29261 28324/29262 28334/29274 +f 28323/29261 28335/29275 28330/29268 +f 28324/29262 28319/29256 28334/29274 +f 28331/29269 28334/29274 28319/29256 +f 13449/29276 13233/29270 28325/29263 +f 28330/29268 28336/29277 28325/29263 +f 28327/29265 28326/29264 28337/29278 +f 28338/29279 28331/29269 28327/29265 +f 28328/29266 28339/29280 28326/29264 +f 28332/29271 28340/29281 28321/29259 +f 28340/29281 28333/29272 28321/29259 +f 28333/29272 28341/29282 28328/29266 +f 6299/29283 28329/29267 6246/29273 +f 28332/29271 28329/29267 28342/29284 +f 28335/29275 28323/29261 28334/29274 +f 28335/29275 28343/29285 28330/29268 +f 28338/29279 28334/29274 28331/29269 +f 28336/29277 13449/29276 28325/29263 +f 28336/29277 28330/29268 28344/29286 +f 28326/29264 28345/29287 28337/29278 +f 28327/29265 28337/29278 28346/29288 +f 28338/29279 28327/29265 28346/29288 +f 28339/29280 28328/29266 28341/29282 +f 28326/29264 28339/29280 28345/29287 +f 28347/29289 28340/29281 28332/29271 +f 28348/29290 28333/29272 28340/29281 +f 28341/29282 28333/29272 28348/29290 +f 6299/29283 28349/29291 28329/29267 +f 28332/29271 28342/29284 28347/29289 +f 28329/29267 28349/29291 28342/29284 +f 28350/29292 28335/29275 28334/29274 +f 28351/29293 28343/29285 28335/29275 +f 28330/29268 28343/29285 28344/29286 +f 28334/29274 28338/29279 28350/29292 +f 28336/29277 28352/29294 13449/29276 +f 28336/29277 28344/29286 28353/29295 +f 28354/29296 28337/29278 28345/29287 +f 28346/29288 28337/29278 28355/29297 +f 28338/29279 28346/29288 28356/29298 +f 28341/29282 28357/29299 28339/29280 +f 28339/29280 28358/29300 28345/29287 +f 28348/29290 28340/29281 28347/29289 +f 28348/29290 28359/29301 28341/29282 +f 28349/29291 6299/29283 6438/29302 +f 28347/29289 28342/29284 28348/29290 +f 28342/29284 28349/29291 28360/29303 +f 28351/29293 28335/29275 28350/29292 +f 28344/29286 28343/29285 28351/29293 +f 28338/29279 28356/29298 28350/29292 +f 28336/29277 28353/29295 28352/29294 +f 28352/29294 13560/29304 13449/29276 +f 28344/29286 28361/29305 28353/29295 +f 28362/29306 28337/29278 28354/29296 +f 28363/29307 28354/29296 28345/29287 +f 28337/29278 28364/29308 28355/29297 +f 28356/29298 28346/29288 28355/29297 +f 28359/29301 28357/29299 28341/29282 +f 28339/29280 28357/29299 28358/29300 +f 28358/29300 28363/29307 28345/29287 +f 28359/29301 28348/29290 28342/29284 +f 6438/29302 6522/29309 28349/29291 +f 28342/29284 28360/29303 28359/29301 +f 28349/29291 6522/29309 28360/29303 +f 28365/29310 28351/29293 28350/29292 +f 28344/29286 28351/29293 28366/29311 +f 28350/29292 28356/29298 28365/29310 +f 28352/29294 28353/29295 28367/29312 +f 28368/29313 13560/29304 28352/29294 +f 28344/29286 28369/29314 28361/29305 +f 28353/29295 28361/29305 28370/29315 +f 28337/29278 28362/29306 28364/29308 +f 28362/29306 28354/29296 28371/29316 +f 28363/29307 28372/29317 28354/29296 +f 28356/29298 28355/29297 28364/29308 +f 28373/29318 28357/29299 28359/29301 +f 28358/29300 28357/29299 28374/29319 +f 28363/29307 28358/29300 28372/29317 +f 28360/29303 28375/29320 28359/29301 +f 6522/29309 28375/29320 28360/29303 +f 28351/29293 28365/29310 28366/29311 +f 28366/29311 28369/29314 28344/29286 +f 28365/29310 28356/29298 28364/29308 +f 28367/29312 28353/29295 28370/29315 +f 28376/29321 28352/29294 28367/29312 +f 13560/29304 28368/29313 28377/29322 +f 28352/29294 28378/29323 28368/29313 +f 28369/29314 28379/29324 28361/29305 +f 28370/29315 28361/29305 28379/29324 +f 28364/29308 28362/29306 28371/29316 +f 28354/29296 28380/29325 28371/29316 +f 28372/29317 28380/29325 28354/29296 +f 28375/29320 28373/29318 28359/29301 +f 28357/29299 28373/29318 28381/29326 +f 28357/29299 28382/29327 28374/29319 +f 28358/29300 28374/29319 28372/29317 +f 28375/29320 6522/29309 6564/29328 +f 28365/29310 28364/29308 28366/29311 +f 28369/29314 28366/29311 28383/29329 +f 28384/29330 28367/29312 28370/29315 +f 28367/29312 28385/29331 28376/29321 +f 28376/29321 28378/29323 28352/29294 +f 28377/29322 28368/29313 28386/29332 +f 13560/29304 28377/29322 13659/29333 +f 28386/29332 28368/29313 28378/29323 +f 28383/29329 28379/29324 28369/29314 +f 28387/29334 28370/29315 28379/29324 +f 28371/29316 28388/29335 28364/29308 +f 28380/29325 28388/29335 28371/29316 +f 28372/29317 28374/29319 28380/29325 +f 28373/29318 28375/29320 28389/29336 +f 28373/29318 28389/29336 28381/29326 +f 28357/29299 28381/29326 28382/29327 +f 28382/29327 28380/29325 28374/29319 +f 28375/29320 6564/29328 28390/29337 +f 28364/29308 28383/29329 28366/29311 +f 28384/29330 28370/29315 28387/29334 +f 28384/29330 28385/29331 28367/29312 +f 28391/29338 28376/29321 28385/29331 +f 28376/29321 28392/29339 28378/29323 +f 28377/29322 28386/29332 28393/29340 +f 13659/29333 28377/29322 28394/29341 +f 28378/29323 28392/29339 28386/29332 +f 28379/29324 28383/29329 28395/29342 +f 28395/29342 28387/29334 28379/29324 +f 28388/29335 28396/29343 28364/29308 +f 28388/29335 28380/29325 28397/29344 +f 28389/29336 28375/29320 28390/29337 +f 28382/29327 28381/29326 28389/29336 +f 28397/29344 28380/29325 28382/29327 +f 6564/29328 28398/29345 28390/29337 +f 28364/29308 28396/29343 28383/29329 +f 28399/29346 28384/29330 28387/29334 +f 28385/29331 28384/29330 28399/29346 +f 28400/29347 28391/29338 28385/29331 +f 28376/29321 28391/29338 28392/29339 +f 28401/29348 28393/29340 28386/29332 +f 28377/29322 28393/29340 28394/29341 +f 13562/29349 13659/29333 28394/29341 +f 28401/29348 28386/29332 28392/29339 +f 28395/29342 28383/29329 28396/29343 +f 28395/29342 28402/29350 28387/29334 +f 28403/29351 28396/29343 28388/29335 +f 28388/29335 28397/29344 28404/29352 +f 28405/29353 28389/29336 28390/29337 +f 28406/29354 28382/29327 28389/29336 +f 28382/29327 28406/29354 28397/29344 +f 28398/29345 28407/29355 28390/29337 +f 6564/29328 6604/29356 28398/29345 +f 28399/29346 28387/29334 28402/29350 +f 28399/29346 28400/29347 28385/29331 +f 28391/29338 28400/29347 28408/29357 +f 28408/29357 28392/29339 28391/29338 +f 28393/29340 28401/29348 28409/29358 +f 28410/29359 28394/29341 28393/29340 +f 13657/29360 13562/29349 28394/29341 +f 28401/29348 28392/29339 28409/29358 +f 28396/29343 28403/29351 28395/29342 +f 28403/29351 28402/29350 28395/29342 +f 28404/29352 28403/29351 28388/29335 +f 28406/29354 28404/29352 28397/29344 +f 28411/29361 28405/29353 28390/29337 +f 28406/29354 28389/29336 28405/29353 +f 28390/29337 28407/29355 28412/29362 +f 28407/29355 28398/29345 6829/29363 +f 6692/29364 28398/29345 6604/29356 +f 28403/29351 28399/29346 28402/29350 +f 28413/29365 28400/29347 28399/29346 +f 28408/29357 28400/29347 28414/29366 +f 28415/29367 28392/29339 28408/29357 +f 28416/29368 28393/29340 28409/29358 +f 13657/29360 28394/29341 28410/29359 +f 28416/29368 28410/29359 28393/29340 +f 28392/29339 28415/29367 28409/29358 +f 28417/29369 28403/29351 28404/29352 +f 28418/29370 28404/29352 28406/29354 +f 28405/29353 28411/29361 28419/29371 +f 28390/29337 28420/29372 28411/29361 +f 28418/29370 28406/29354 28405/29353 +f 28407/29355 28421/29373 28412/29362 +f 28412/29362 28422/29374 28390/29337 +f 28407/29355 6829/29363 6923/29375 +f 6829/29363 28398/29345 6692/29364 +f 28399/29346 28403/29351 28423/29376 +f 28423/29376 28413/29365 28399/29346 +f 28400/29347 28413/29365 28424/29377 +f 28414/29366 28400/29347 28424/29377 +f 28414/29366 28425/29378 28408/29357 +f 28425/29378 28415/29367 28408/29357 +f 28416/29368 28409/29358 28426/29379 +f 28427/29380 13657/29360 28410/29359 +f 28416/29368 28428/29381 28410/29359 +f 28409/29358 28415/29367 28426/29379 +f 28404/29352 28429/29382 28417/29369 +f 28403/29351 28417/29369 28423/29376 +f 28418/29370 28429/29382 28404/29352 +f 28419/29371 28411/29361 28430/29383 +f 28419/29371 28418/29370 28405/29353 +f 28411/29361 28420/29372 28431/29384 +f 28422/29374 28420/29372 28390/29337 +f 28407/29355 6969/29385 28421/29373 +f 28421/29373 28432/29386 28412/29362 +f 28412/29362 28433/29387 28422/29374 +f 6969/29385 28407/29355 6923/29375 +f 28417/29369 28413/29365 28423/29376 +f 28413/29365 28434/29388 28424/29377 +f 28434/29388 28414/29366 28424/29377 +f 28435/29389 28425/29378 28414/29366 +f 28436/29390 28415/29367 28425/29378 +f 28416/29368 28426/29379 28437/29391 +f 28427/29380 13658/29392 13657/29360 +f 28410/29359 28438/29393 28427/29380 +f 28428/29381 28416/29368 28437/29391 +f 28410/29359 28428/29381 28438/29393 +f 28426/29379 28415/29367 28436/29390 +f 28417/29369 28429/29382 28413/29365 +f 28429/29382 28418/29370 28419/29371 +f 28431/29384 28430/29383 28411/29361 +f 28419/29371 28430/29383 28439/29394 +f 28431/29384 28420/29372 28440/29395 +f 28422/29374 28440/29395 28420/29372 +f 6969/29385 7110/29396 28421/29373 +f 28432/29386 28421/29373 28441/29397 +f 28442/29398 28412/29362 28432/29386 +f 28433/29387 28412/29362 28443/29399 +f 28422/29374 28433/29387 28444/29400 +f 28445/29401 28434/29388 28413/29365 +f 28414/29366 28434/29388 28435/29389 +f 28436/29390 28425/29378 28435/29389 +f 28426/29379 28446/29402 28437/29391 +f 28447/29403 13658/29392 28427/29380 +f 28448/29404 28427/29380 28438/29393 +f 28449/29405 28428/29381 28437/29391 +f 28428/29381 28449/29405 28438/29393 +f 28446/29402 28426/29379 28436/29390 +f 28445/29401 28413/29365 28429/29382 +f 28450/29406 28429/29382 28419/29371 +f 28439/29394 28430/29383 28431/29384 +f 28419/29371 28439/29394 28450/29406 +f 28431/29384 28440/29395 28451/29407 +f 28422/29374 28444/29400 28440/29395 +f 28441/29397 28421/29373 7110/29396 +f 28452/29408 28432/29386 28441/29397 +f 28442/29398 28443/29399 28412/29362 +f 28442/29398 28432/29386 28452/29408 +f 28453/29409 28433/29387 28443/29399 +f 28433/29387 28453/29409 28444/29400 +f 28434/29388 28445/29401 28454/29410 +f 28435/29389 28434/29388 28455/29411 +f 28446/29402 28436/29390 28435/29389 +f 28456/29412 28437/29391 28446/29402 +f 28427/29380 28448/29404 28447/29403 +f 13563/29413 13658/29392 28447/29403 +f 28448/29404 28438/29393 28457/29414 +f 28449/29405 28437/29391 28458/29415 +f 28449/29405 28457/29414 28438/29393 +f 28429/29382 28450/29406 28445/29401 +f 28451/29407 28439/29394 28431/29384 +f 28450/29406 28439/29394 28454/29410 +f 28459/29416 28451/29407 28440/29395 +f 28459/29416 28440/29395 28444/29400 +f 7110/29396 28460/29417 28441/29397 +f 28452/29408 28441/29397 28460/29417 +f 28442/29398 28461/29418 28443/29399 +f 28442/29398 28452/29408 28461/29418 +f 28462/29419 28453/29409 28443/29399 +f 28444/29400 28453/29409 28463/29420 +f 28445/29401 28450/29406 28454/29410 +f 28455/29411 28434/29388 28454/29410 +f 28435/29389 28455/29411 28464/29421 +f 28446/29402 28435/29389 28464/29421 +f 28458/29415 28437/29391 28456/29412 +f 28456/29412 28446/29402 28465/29422 +f 28447/29403 28448/29404 28466/29423 +f 13752/29424 13563/29413 28447/29403 +f 28457/29414 28467/29425 28448/29404 +f 28468/29426 28449/29405 28458/29415 +f 28457/29414 28449/29405 28468/29426 +f 28451/29407 28469/29427 28439/29394 +f 28454/29410 28439/29394 28469/29427 +f 28459/29416 28469/29427 28451/29407 +f 28459/29416 28444/29400 28463/29420 +f 28470/29428 28460/29417 7110/29396 +f 28452/29408 28460/29417 28471/29429 +f 28461/29418 28462/29419 28443/29399 +f 28461/29418 28452/29408 28471/29429 +f 28453/29409 28462/29419 28463/29420 +f 28455/29411 28454/29410 28469/29427 +f 28464/29421 28455/29411 28472/29430 +f 28464/29421 28473/29431 28446/29402 +f 28456/29412 28474/29432 28458/29415 +f 28474/29432 28456/29412 28465/29422 +f 28446/29402 28473/29431 28465/29422 +f 28448/29404 28475/29433 28466/29423 +f 28466/29423 28476/29434 28447/29403 +f 28447/29403 28476/29434 13752/29424 +f 28457/29414 28477/29435 28467/29425 +f 28478/29436 28448/29404 28467/29425 +f 28479/29437 28468/29426 28458/29415 +f 28457/29414 28468/29426 28477/29435 +f 28459/29416 28472/29430 28469/29427 +f 28459/29416 28463/29420 28480/29438 +f 28471/29429 28460/29417 28470/29428 +f 7110/29396 7072/29439 28470/29428 +f 28462/29419 28461/29418 28471/29429 +f 28462/29419 28481/29440 28463/29420 +f 28469/29427 28472/29430 28455/29411 +f 28472/29430 28473/29431 28464/29421 +f 28479/29437 28458/29415 28474/29432 +f 28465/29422 28482/29441 28474/29432 +f 28473/29431 28482/29441 28465/29422 +f 28475/29433 28483/29442 28466/29423 +f 28448/29404 28484/29443 28475/29433 +f 28466/29423 28483/29442 28476/29434 +f 28476/29434 28485/29444 13752/29424 +f 28467/29425 28477/29435 28486/29445 +f 28487/29446 28478/29436 28467/29425 +f 28448/29404 28478/29436 28487/29446 +f 28479/29437 28486/29445 28468/29426 +f 28468/29426 28486/29445 28477/29435 +f 28472/29430 28459/29416 28480/29438 +f 28463/29420 28488/29447 28480/29438 +f 7123/29448 28471/29429 28470/29428 +f 28470/29428 7072/29439 7123/29448 +f 28489/29449 28462/29419 28471/29429 +f 28490/29450 28481/29440 28462/29419 +f 28463/29420 28481/29440 28491/29451 +f 28473/29431 28472/29430 28482/29441 +f 28492/29452 28479/29437 28474/29432 +f 28493/29453 28474/29432 28482/29441 +f 28475/29433 28494/29454 28483/29442 +f 28484/29443 28494/29454 28475/29433 +f 28495/29455 28484/29443 28448/29404 +f 28483/29442 28485/29444 28476/29434 +f 13752/29424 28485/29444 13836/29456 +f 28467/29425 28486/29445 28487/29446 +f 28495/29455 28448/29404 28487/29446 +f 28486/29445 28479/29437 28496/29457 +f 28482/29441 28472/29430 28480/29438 +f 28463/29420 28491/29451 28488/29447 +f 28480/29438 28488/29447 28482/29441 +f 7123/29448 7220/29458 28471/29429 +f 28489/29449 28490/29450 28462/29419 +f 28489/29449 28471/29429 28497/29459 +f 28491/29451 28481/29440 28490/29450 +f 28479/29437 28492/29452 28498/29460 +f 28493/29453 28492/29452 28474/29432 +f 28482/29441 28488/29447 28493/29453 +f 28483/29442 28494/29454 28499/29461 +f 28500/29462 28494/29454 28484/29443 +f 28501/29463 28484/29443 28495/29455 +f 28483/29442 28502/29464 28485/29444 +f 28485/29444 28503/29465 13836/29456 +f 28486/29445 28495/29455 28487/29446 +f 28496/29457 28504/29466 28486/29445 +f 28498/29460 28496/29457 28479/29437 +f 28505/29467 28488/29447 28491/29451 +f 7220/29458 28497/29459 28471/29429 +f 28506/29468 28490/29450 28489/29449 +f 28507/29469 28489/29449 28497/29459 +f 28490/29450 28508/29470 28491/29451 +f 28498/29460 28492/29452 28509/29471 +f 28493/29453 28510/29472 28492/29452 +f 28488/29447 28505/29467 28493/29453 +f 28499/29461 28502/29464 28483/29442 +f 28494/29454 28511/29473 28499/29461 +f 28511/29473 28494/29454 28500/29462 +f 28512/29474 28500/29462 28484/29443 +f 28484/29443 28501/29463 28512/29474 +f 28504/29466 28501/29463 28495/29455 +f 14039/29475 28485/29444 28502/29464 +f 28485/29444 14039/29475 28503/29465 +f 13836/29456 28503/29465 14039/29475 +f 28504/29466 28495/29455 28486/29445 +f 28496/29457 28513/29476 28504/29466 +f 28513/29476 28496/29457 28498/29460 +f 28514/29477 28505/29467 28491/29451 +f 28515/29478 28497/29459 7220/29458 +f 28490/29450 28506/29468 28516/29479 +f 28507/29469 28506/29468 28489/29449 +f 28497/29459 28517/29480 28507/29469 +f 28508/29470 28490/29450 28516/29479 +f 28508/29470 28514/29477 28491/29451 +f 28510/29472 28509/29471 28492/29452 +f 28498/29460 28509/29471 28513/29476 +f 28514/29477 28510/29472 28493/29453 +f 28505/29467 28514/29477 28493/29453 +f 14168/29481 28502/29464 28499/29461 +f 28499/29461 28511/29473 28518/29482 +f 28511/29473 28500/29462 28519/29483 +f 28500/29462 28512/29474 28520/29484 +f 28501/29463 28521/29485 28512/29474 +f 28501/29463 28504/29466 28522/29486 +f 28502/29464 14168/29481 14039/29475 +f 28504/29466 28513/29476 28523/29487 +f 28524/29488 28497/29459 28515/29478 +f 7220/29458 7318/29489 28515/29478 +f 28525/29490 28516/29479 28506/29468 +f 28526/29491 28506/29468 28507/29469 +f 28507/29469 28517/29480 28527/29492 +f 28524/29488 28517/29480 28497/29459 +f 28508/29470 28516/29479 28528/29493 +f 28508/29470 28529/29494 28514/29477 +f 28529/29494 28509/29471 28510/29472 +f 28509/29471 28530/29495 28513/29476 +f 28510/29472 28514/29477 28529/29494 +f 14168/29481 28499/29461 28518/29482 +f 28531/29496 28518/29482 28511/29473 +f 28500/29462 28532/29497 28519/29483 +f 28511/29473 28519/29483 28531/29496 +f 28520/29484 28512/29474 28533/29498 +f 28500/29462 28520/29484 28532/29497 +f 28522/29486 28521/29485 28501/29463 +f 28521/29485 28534/29499 28512/29474 +f 28522/29486 28504/29466 28523/29487 +f 28523/29487 28513/29476 28535/29500 +f 28536/29501 28524/29488 28515/29478 +f 7318/29489 28537/29502 28515/29478 +f 28528/29493 28516/29479 28525/29490 +f 28506/29468 28538/29503 28525/29490 +f 28526/29491 28507/29469 28539/29504 +f 28506/29468 28526/29491 28538/29503 +f 28527/29492 28539/29504 28507/29469 +f 28527/29492 28517/29480 28540/29505 +f 28540/29505 28517/29480 28524/29488 +f 28528/29493 28529/29494 28508/29470 +f 28529/29494 28530/29495 28509/29471 +f 28513/29476 28530/29495 28535/29500 +f 28518/29482 14311/29506 14168/29481 +f 28531/29496 28541/29507 28518/29482 +f 28532/29497 28531/29496 28519/29483 +f 28520/29484 28533/29498 28542/29508 +f 28534/29499 28533/29498 28512/29474 +f 28520/29484 28543/29509 28532/29497 +f 28521/29485 28522/29486 28544/29510 +f 28534/29499 28521/29485 28545/29511 +f 28522/29486 28523/29487 28546/29512 +f 28523/29487 28535/29500 28547/29513 +f 28537/29502 28536/29501 28515/29478 +f 28524/29488 28536/29501 28540/29505 +f 7318/29489 7493/29514 28537/29502 +f 28547/29513 28528/29493 28525/29490 +f 28548/29515 28525/29490 28538/29503 +f 28526/29491 28539/29504 28549/29516 +f 28538/29503 28526/29491 28549/29516 +f 28539/29504 28527/29492 28550/29517 +f 28527/29492 28540/29505 28551/29518 +f 28528/29493 28530/29495 28529/29494 +f 28535/29500 28530/29495 28547/29513 +f 28518/29482 28541/29507 14311/29506 +f 14703/29519 28541/29507 28531/29496 +f 28531/29496 28532/29497 28543/29509 +f 28533/29498 28552/29520 28542/29508 +f 28543/29509 28520/29484 28542/29508 +f 28553/29521 28533/29498 28534/29499 +f 28546/29512 28544/29510 28522/29486 +f 28521/29485 28544/29510 28545/29511 +f 28554/29522 28534/29499 28545/29511 +f 28523/29487 28547/29513 28546/29512 +f 28537/29502 7493/29514 28536/29501 +f 28551/29518 28540/29505 28536/29501 +f 28546/29512 28547/29513 28525/29490 +f 28547/29513 28530/29495 28528/29493 +f 28548/29515 28538/29503 28555/29523 +f 28546/29512 28525/29490 28548/29515 +f 28539/29504 28556/29524 28549/29516 +f 28538/29503 28549/29516 28555/29523 +f 28539/29504 28550/29517 28556/29524 +f 28527/29492 28551/29518 28550/29517 +f 14311/29506 28541/29507 14462/29525 +f 14703/29519 28531/29496 28543/29509 +f 28541/29507 14703/29519 14462/29525 +f 28552/29520 28533/29498 28557/29526 +f 28542/29508 28552/29520 28558/29527 +f 28558/29527 28543/29509 28542/29508 +f 28553/29521 28557/29526 28533/29498 +f 28534/29499 28559/29528 28553/29521 +f 28548/29515 28544/29510 28546/29512 +f 28560/29529 28545/29511 28544/29510 +f 28554/29522 28545/29511 28560/29529 +f 28554/29522 28559/29528 28534/29499 +f 28561/29530 28536/29501 7493/29514 +f 28562/29531 28551/29518 28536/29501 +f 28555/29523 28563/29532 28548/29515 +f 28564/29533 28549/29516 28556/29524 +f 28549/29516 28564/29533 28555/29523 +f 28550/29517 28565/29534 28556/29524 +f 28551/29518 28566/29535 28550/29517 +f 28543/29509 28558/29527 14703/29519 +f 28552/29520 28557/29526 28567/29536 +f 28558/29527 28552/29520 28568/29537 +f 28553/29521 28569/29538 28557/29526 +f 28570/29539 28553/29521 28559/29528 +f 28544/29510 28548/29515 28560/29529 +f 28560/29529 28563/29532 28554/29522 +f 28559/29528 28554/29522 28571/29540 +f 28536/29501 28561/29530 28562/29531 +f 7493/29514 28572/29541 28561/29530 +f 28566/29535 28551/29518 28562/29531 +f 28563/29532 28555/29523 28564/29533 +f 28563/29532 28560/29529 28548/29515 +f 28556/29524 28565/29534 28564/29533 +f 28566/29535 28565/29534 28550/29517 +f 14703/29519 28558/29527 28573/29542 +f 28557/29526 28574/29543 28567/29536 +f 28552/29520 28567/29536 28568/29537 +f 28568/29537 28573/29542 28558/29527 +f 28569/29538 28553/29521 28570/29539 +f 28569/29538 28574/29543 28557/29526 +f 28570/29539 28559/29528 28571/29540 +f 28563/29532 28571/29540 28554/29522 +f 28561/29530 28575/29544 28562/29531 +f 28561/29530 28572/29541 28575/29544 +f 7427/29545 28572/29541 7493/29514 +f 28576/29546 28566/29535 28562/29531 +f 28564/29533 28571/29540 28563/29532 +f 28564/29533 28565/29534 28577/29547 +f 28566/29535 28576/29546 28565/29534 +f 28573/29542 14786/29548 14703/29519 +f 28567/29536 28574/29543 28578/29549 +f 28567/29536 28579/29550 28568/29537 +f 28580/29551 28573/29542 28568/29537 +f 28581/29552 28569/29538 28570/29539 +f 28574/29543 28569/29538 28582/29553 +f 28564/29533 28570/29539 28571/29540 +f 28583/29554 28562/29531 28575/29544 +f 28575/29544 28572/29541 28584/29555 +f 28572/29541 7427/29545 28585/29556 +f 28576/29546 28562/29531 28583/29554 +f 28577/29547 28565/29534 28586/29557 +f 28564/29533 28577/29547 28570/29539 +f 28576/29546 28587/29558 28565/29534 +f 14786/29548 28573/29542 14938/29559 +f 28588/29560 28578/29549 28574/29543 +f 28567/29536 28578/29549 28579/29550 +f 28580/29551 28568/29537 28579/29550 +f 28580/29551 28589/29561 28573/29542 +f 28581/29552 28590/29562 28569/29538 +f 28581/29552 28570/29539 28577/29547 +f 28574/29543 28582/29553 28591/29563 +f 28582/29553 28569/29538 28590/29562 +f 28575/29544 28592/29564 28583/29554 +f 28584/29555 28572/29541 28585/29556 +f 28584/29555 28592/29564 28575/29544 +f 7315/29565 28585/29556 7427/29545 +f 28583/29554 28593/29566 28576/29546 +f 28586/29557 28565/29534 28594/29567 +f 28586/29557 28581/29552 28577/29547 +f 28593/29566 28587/29558 28576/29546 +f 28587/29558 28594/29567 28565/29534 +f 28573/29542 28589/29561 14938/29559 +f 28574/29543 28591/29563 28588/29560 +f 28588/29560 28595/29568 28578/29549 +f 28578/29549 28596/29569 28579/29550 +f 28596/29569 28580/29551 28579/29550 +f 28589/29561 28580/29551 28596/29569 +f 28586/29557 28590/29562 28581/29552 +f 28591/29563 28582/29553 28590/29562 +f 28592/29564 28597/29570 28583/29554 +f 28584/29555 28585/29556 28598/29571 +f 28599/29572 28592/29564 28584/29555 +f 28585/29556 7315/29565 28598/29571 +f 28594/29567 28593/29566 28583/29554 +f 28586/29557 28594/29567 28600/29573 +f 28593/29566 28594/29567 28587/29558 +f 28589/29561 28601/29574 14938/29559 +f 28591/29563 28602/29575 28588/29560 +f 28602/29575 28595/29568 28588/29560 +f 28595/29568 28603/29576 28578/29549 +f 28603/29576 28596/29569 28578/29549 +f 28596/29569 28601/29574 28589/29561 +f 28591/29563 28590/29562 28586/29557 +f 28597/29570 28604/29577 28583/29554 +f 28592/29564 28599/29572 28597/29570 +f 28605/29578 28584/29555 28598/29571 +f 28584/29555 28605/29578 28599/29572 +f 7315/29565 28606/29579 28598/29571 +f 28604/29577 28594/29567 28583/29554 +f 28594/29567 28607/29580 28600/29573 +f 28591/29563 28586/29557 28600/29573 +f 14785/29581 14938/29559 28601/29574 +f 28608/29582 28602/29575 28591/29563 +f 28602/29575 28609/29583 28595/29568 +f 28603/29576 28595/29568 28610/29584 +f 28596/29569 28603/29576 28611/29585 +f 28596/29569 28612/29586 28601/29574 +f 28613/29587 28604/29577 28597/29570 +f 28597/29570 28599/29572 28613/29587 +f 28614/29588 28605/29578 28598/29571 +f 28599/29572 28605/29578 28615/29589 +f 28616/29590 28606/29579 7315/29565 +f 28598/29571 28606/29579 28617/29591 +f 28604/29577 28607/29580 28594/29567 +f 28607/29580 28608/29582 28600/29573 +f 28608/29582 28591/29563 28600/29573 +f 28601/29574 28618/29592 14785/29581 +f 28602/29575 28608/29582 28619/29593 +f 28609/29583 28602/29575 28619/29593 +f 28610/29584 28595/29568 28609/29583 +f 28610/29584 28620/29594 28603/29576 +f 28603/29576 28620/29594 28611/29585 +f 28612/29586 28596/29569 28611/29585 +f 28601/29574 28612/29586 28618/29592 +f 28621/29595 28604/29577 28613/29587 +f 28599/29572 28622/29596 28613/29587 +f 28614/29588 28623/29597 28605/29578 +f 28617/29591 28614/29588 28598/29571 +f 28605/29578 28623/29597 28615/29589 +f 28615/29589 28622/29596 28599/29572 +f 28616/29590 28624/29598 28606/29579 +f 7315/29565 7709/29599 28616/29590 +f 28606/29579 28624/29598 28617/29591 +f 28604/29577 28625/29600 28607/29580 +f 28608/29582 28607/29580 28619/29593 +f 28618/29592 14861/29601 14785/29581 +f 28619/29593 28626/29602 28609/29583 +f 28610/29584 28609/29583 28626/29602 +f 28627/29603 28620/29594 28610/29584 +f 28628/29604 28611/29585 28620/29594 +f 28629/29605 28612/29586 28611/29585 +f 28618/29592 28612/29586 28630/29606 +f 28621/29595 28625/29600 28604/29577 +f 28613/29587 28631/29607 28621/29595 +f 28622/29596 28632/29608 28613/29587 +f 28623/29597 28614/29588 28633/29609 +f 28617/29591 28633/29609 28614/29588 +f 28623/29597 28634/29610 28615/29589 +f 28622/29596 28615/29589 28632/29608 +f 28616/29590 28635/29611 28624/29598 +f 7709/29599 28635/29611 28616/29590 +f 28624/29598 28633/29609 28617/29591 +f 28625/29600 28619/29593 28607/29580 +f 14861/29601 28618/29592 14711/29612 +f 28626/29602 28619/29593 28636/29613 +f 28626/29602 28637/29614 28610/29584 +f 28638/29615 28620/29594 28627/29603 +f 28627/29603 28610/29584 28637/29614 +f 28628/29604 28620/29594 28639/29616 +f 28629/29605 28611/29585 28628/29604 +f 28612/29586 28629/29605 28630/29606 +f 28640/29617 28618/29592 28630/29606 +f 28625/29600 28621/29595 28641/29618 +f 28631/29607 28641/29618 28621/29595 +f 28632/29608 28631/29607 28613/29587 +f 28623/29597 28633/29609 28642/29619 +f 28642/29619 28634/29610 28623/29597 +f 28634/29610 28632/29608 28615/29589 +f 28633/29609 28624/29598 28635/29611 +f 7709/29599 28643/29620 28635/29611 +f 28625/29600 28636/29613 28619/29593 +f 14711/29612 28618/29592 28644/29621 +f 28636/29613 28645/29622 28626/29602 +f 28637/29614 28626/29602 28645/29622 +f 28620/29594 28638/29615 28639/29616 +f 28627/29603 28646/29623 28638/29615 +f 28627/29603 28637/29614 28646/29623 +f 28629/29605 28628/29604 28639/29616 +f 28630/29606 28629/29605 28647/29624 +f 28640/29617 28644/29621 28618/29592 +f 28648/29625 28640/29617 28630/29606 +f 28625/29600 28641/29618 28649/29626 +f 28650/29627 28641/29618 28631/29607 +f 28634/29610 28631/29607 28632/29608 +f 28651/29628 28642/29619 28633/29609 +f 28642/29619 28652/29629 28634/29610 +f 28633/29609 28635/29611 28653/29630 +f 7709/29599 7871/29631 28643/29620 +f 28635/29611 28643/29620 28653/29630 +f 28625/29600 28649/29626 28636/29613 +f 14711/29612 28644/29621 28654/29632 +f 28655/29633 28645/29622 28636/29613 +f 28646/29623 28637/29614 28645/29622 +f 28639/29616 28638/29615 28656/29634 +f 28657/29635 28638/29615 28646/29623 +f 28647/29624 28629/29605 28639/29616 +f 28647/29624 28658/29636 28630/29606 +f 28659/29637 28644/29621 28640/29617 +f 28640/29617 28648/29625 28659/29637 +f 28630/29606 28660/29638 28648/29625 +f 28641/29618 28661/29639 28649/29626 +f 28650/29627 28631/29607 28652/29629 +f 28662/29640 28641/29618 28650/29627 +f 28652/29629 28631/29607 28634/29610 +f 28652/29629 28642/29619 28651/29628 +f 28633/29609 28653/29630 28651/29628 +f 7871/29631 28663/29641 28643/29620 +f 28643/29620 28664/29642 28653/29630 +f 28636/29613 28649/29626 28655/29633 +f 28654/29632 28644/29621 28665/29643 +f 28654/29632 14551/29644 14711/29612 +f 28655/29633 28666/29645 28645/29622 +f 28646/29623 28645/29622 28657/29635 +f 28667/29646 28656/29634 28638/29615 +f 28656/29634 28668/29647 28639/29616 +f 28638/29615 28657/29635 28667/29646 +f 28639/29616 28668/29647 28647/29624 +f 28647/29624 28668/29647 28658/29636 +f 28630/29606 28658/29636 28660/29638 +f 28659/29637 28669/29648 28644/29621 +f 28648/29625 28670/29649 28659/29637 +f 28648/29625 28660/29638 28671/29650 +f 28649/29626 28661/29639 28672/29651 +f 28661/29639 28641/29618 28673/29652 +f 28650/29627 28652/29629 28662/29640 +f 28641/29618 28662/29640 28673/29652 +f 28652/29629 28651/29628 28674/29653 +f 28675/29654 28651/29628 28653/29630 +f 28663/29641 7871/29631 7872/29655 +f 28643/29620 28663/29641 28664/29642 +f 28664/29642 28676/29656 28653/29630 +f 28649/29626 28672/29651 28655/29633 +f 28644/29621 28677/29657 28665/29643 +f 28654/29632 28665/29643 14551/29644 +f 28666/29645 28655/29633 28672/29651 +f 28657/29635 28645/29622 28666/29645 +f 28678/29658 28656/29634 28667/29646 +f 28678/29658 28668/29647 28656/29634 +f 28657/29635 28679/29659 28667/29646 +f 28680/29660 28658/29636 28668/29647 +f 28660/29638 28658/29636 28680/29660 +f 28669/29648 28659/29637 28670/29649 +f 28669/29648 28677/29657 28644/29621 +f 28671/29650 28670/29649 28648/29625 +f 28681/29661 28671/29650 28660/29638 +f 28672/29651 28661/29639 28682/29662 +f 28673/29652 28683/29663 28661/29639 +f 28662/29640 28652/29629 28674/29653 +f 28662/29640 28684/29664 28673/29652 +f 28685/29665 28674/29653 28651/29628 +f 28685/29665 28651/29628 28675/29654 +f 28675/29654 28653/29630 28676/29656 +f 28663/29641 7872/29655 28686/29666 +f 28687/29667 28664/29642 28663/29641 +f 28676/29656 28664/29642 28687/29667 +f 28688/29668 28665/29643 28677/29657 +f 14242/29669 14551/29644 28665/29643 +f 28666/29645 28672/29651 28689/29670 +f 28666/29645 28679/29659 28657/29635 +f 28667/29646 28679/29659 28678/29658 +f 28668/29647 28678/29658 28679/29659 +f 28668/29647 28690/29671 28680/29660 +f 28680/29660 28681/29661 28660/29638 +f 28669/29648 28670/29649 28691/29672 +f 28692/29673 28677/29657 28669/29648 +f 28693/29674 28670/29649 28671/29650 +f 28671/29650 28681/29661 28694/29675 +f 28682/29662 28661/29639 28683/29663 +f 28689/29670 28672/29651 28682/29662 +f 28695/29676 28683/29663 28673/29652 +f 28684/29664 28662/29640 28674/29653 +f 28673/29652 28684/29664 28695/29676 +f 28696/29677 28674/29653 28685/29665 +f 28675/29654 28676/29656 28685/29665 +f 7872/29655 8012/29678 28686/29666 +f 28686/29666 28697/29679 28663/29641 +f 28687/29667 28663/29641 28697/29679 +f 28698/29680 28676/29656 28687/29667 +f 28677/29657 28692/29673 28688/29668 +f 28688/29668 14242/29669 28665/29643 +f 28689/29670 28679/29659 28666/29645 +f 28679/29659 28690/29671 28668/29647 +f 28680/29660 28690/29671 28699/29681 +f 28699/29681 28681/29661 28680/29660 +f 28691/29672 28670/29649 28700/29682 +f 28669/29648 28691/29672 28701/29683 +f 28669/29648 28701/29683 28692/29673 +f 28693/29674 28671/29650 28702/29684 +f 28700/29682 28670/29649 28693/29674 +f 28694/29675 28681/29661 28703/29685 +f 28671/29650 28694/29675 28702/29684 +f 28704/29686 28682/29662 28683/29663 +f 28682/29662 28704/29686 28689/29670 +f 28695/29676 28705/29687 28683/29663 +f 28696/29677 28684/29664 28674/29653 +f 28684/29664 28706/29688 28695/29676 +f 28707/29689 28696/29677 28685/29665 +f 28676/29656 28707/29689 28685/29665 +f 28686/29666 8012/29678 28708/29690 +f 28686/29666 28708/29690 28697/29679 +f 28687/29667 28697/29679 28698/29680 +f 28707/29689 28676/29656 28698/29680 +f 28701/29683 28688/29668 28692/29673 +f 28709/29691 14242/29669 28688/29668 +f 28679/29659 28689/29670 28710/29692 +f 28679/29659 28710/29692 28690/29671 +f 28690/29671 28711/29693 28699/29681 +f 28681/29661 28699/29681 28712/29694 +f 28713/29695 28691/29672 28700/29682 +f 28701/29683 28691/29672 28713/29695 +f 28702/29684 28714/29696 28693/29674 +f 28714/29696 28700/29682 28693/29674 +f 28681/29661 28712/29694 28703/29685 +f 28703/29685 28715/29697 28694/29675 +f 28702/29684 28694/29675 28716/29698 +f 28705/29687 28704/29686 28683/29663 +f 28689/29670 28704/29686 28717/29699 +f 28718/29700 28705/29687 28695/29676 +f 28696/29677 28706/29688 28684/29664 +f 28719/29701 28695/29676 28706/29688 +f 28696/29677 28707/29689 28720/29702 +f 28708/29690 8012/29678 8014/29703 +f 28721/29704 28697/29679 28708/29690 +f 28722/29705 28698/29680 28697/29679 +f 28707/29689 28698/29680 28723/29706 +f 28713/29695 28688/29668 28701/29683 +f 28709/29691 14106/29707 14242/29669 +f 28688/29668 28713/29695 28709/29691 +f 28710/29692 28689/29670 28724/29708 +f 28710/29692 28711/29693 28690/29671 +f 28711/29693 28724/29708 28699/29681 +f 28725/29709 28712/29694 28699/29681 +f 28700/29682 28726/29710 28713/29695 +f 28702/29684 28727/29711 28714/29696 +f 28728/29712 28700/29682 28714/29696 +f 28712/29694 28729/29713 28703/29685 +f 28715/29697 28703/29685 28729/29713 +f 28694/29675 28715/29697 28716/29698 +f 28716/29698 28730/29714 28702/29684 +f 28705/29687 28731/29715 28704/29686 +f 28704/29686 28732/29716 28717/29699 +f 28732/29716 28689/29670 28717/29699 +f 28733/29717 28705/29687 28718/29700 +f 28695/29676 28734/29718 28718/29700 +f 28706/29688 28696/29677 28720/29702 +f 28734/29718 28695/29676 28719/29701 +f 28735/29719 28719/29701 28706/29688 +f 28723/29706 28720/29702 28707/29689 +f 8014/29703 28736/29720 28708/29690 +f 28737/29721 28697/29679 28721/29704 +f 28708/29690 28736/29720 28721/29704 +f 28722/29705 28723/29706 28698/29680 +f 28697/29679 28737/29721 28722/29705 +f 14106/29707 28709/29691 28738/29722 +f 28713/29695 28739/29723 28709/29691 +f 28724/29708 28711/29693 28710/29692 +f 28724/29708 28689/29670 28732/29716 +f 28724/29708 28725/29709 28699/29681 +f 28725/29709 28740/29724 28712/29694 +f 28726/29710 28700/29682 28741/29725 +f 28726/29710 28739/29723 28713/29695 +f 28728/29712 28714/29696 28727/29711 +f 28727/29711 28702/29684 28730/29714 +f 28728/29712 28742/29726 28700/29682 +f 28712/29694 28743/29727 28729/29713 +f 28744/29728 28715/29697 28729/29713 +f 28745/29729 28716/29698 28715/29697 +f 28730/29714 28716/29698 28746/29730 +f 28733/29717 28731/29715 28705/29687 +f 28704/29686 28731/29715 28732/29716 +f 28747/29731 28733/29717 28718/29700 +f 28734/29718 28748/29732 28718/29700 +f 28706/29688 28720/29702 28749/29733 +f 28734/29718 28719/29701 28750/29734 +f 28719/29701 28735/29719 28750/29734 +f 28706/29688 28749/29733 28735/29719 +f 28749/29733 28720/29702 28723/29706 +f 8144/29735 28736/29720 8014/29703 +f 28737/29721 28721/29704 28751/29736 +f 28736/29720 28752/29737 28721/29704 +f 28723/29706 28722/29705 28737/29721 +f 28738/29722 28753/29738 14106/29707 +f 28709/29691 28739/29723 28738/29722 +f 28740/29724 28724/29708 28732/29716 +f 28725/29709 28724/29708 28740/29724 +f 28740/29724 28754/29739 28712/29694 +f 28741/29725 28755/29740 28726/29710 +f 28700/29682 28742/29726 28741/29725 +f 28726/29710 28755/29740 28739/29723 +f 28756/29741 28728/29712 28727/29711 +f 28757/29742 28727/29711 28730/29714 +f 28742/29726 28728/29712 28758/29743 +f 28759/29744 28729/29713 28743/29727 +f 28754/29739 28743/29727 28712/29694 +f 28744/29728 28745/29729 28715/29697 +f 28744/29728 28729/29713 28759/29744 +f 28716/29698 28745/29729 28746/29730 +f 28760/29745 28730/29714 28746/29730 +f 28761/29746 28731/29715 28733/29717 +f 28732/29716 28731/29715 28762/29747 +f 28747/29731 28718/29700 28763/29748 +f 28761/29746 28733/29717 28747/29731 +f 28748/29732 28734/29718 28764/29749 +f 28718/29700 28748/29732 28765/29750 +f 28734/29718 28750/29734 28766/29751 +f 28767/29752 28750/29734 28735/29719 +f 28735/29719 28749/29733 28768/29753 +f 28769/29754 28749/29733 28723/29706 +f 8144/29735 28752/29737 28736/29720 +f 28751/29736 28721/29704 28770/29755 +f 28771/29756 28737/29721 28751/29736 +f 28721/29704 28752/29737 28772/29757 +f 28737/29721 28769/29754 28723/29706 +f 28773/29758 28753/29738 28738/29722 +f 14044/29759 14106/29707 28753/29738 +f 28774/29760 28738/29722 28739/29723 +f 28732/29716 28754/29739 28740/29724 +f 28775/29761 28755/29740 28741/29725 +f 28775/29761 28741/29725 28742/29726 +f 28739/29723 28755/29740 28776/29762 +f 28727/29711 28757/29742 28756/29741 +f 28777/29763 28728/29712 28756/29741 +f 28760/29745 28757/29742 28730/29714 +f 28758/29743 28777/29763 28742/29726 +f 28777/29763 28758/29743 28728/29712 +f 28759/29744 28743/29727 28754/29739 +f 28745/29729 28744/29728 28778/29764 +f 28759/29744 28779/29765 28744/29728 +f 28745/29729 28778/29764 28746/29730 +f 28746/29730 28780/29766 28760/29745 +f 28762/29747 28731/29715 28761/29746 +f 28732/29716 28762/29747 28754/29739 +f 28747/29731 28763/29748 28781/29767 +f 28763/29748 28718/29700 28765/29750 +f 28761/29746 28747/29731 28781/29767 +f 28765/29750 28748/29732 28764/29749 +f 28734/29718 28782/29768 28764/29749 +f 28783/29769 28766/29751 28750/29734 +f 28784/29770 28734/29718 28766/29751 +f 28785/29771 28767/29752 28735/29719 +f 28783/29769 28750/29734 28767/29752 +f 28749/29733 28769/29754 28768/29753 +f 28768/29753 28785/29771 28735/29719 +f 28752/29737 8144/29735 8299/29772 +f 28772/29757 28770/29755 28721/29704 +f 28770/29755 28786/29773 28751/29736 +f 28771/29756 28769/29754 28737/29721 +f 28751/29736 28787/29774 28771/29756 +f 8299/29772 28772/29757 28752/29737 +f 28773/29758 28788/29775 28753/29738 +f 28789/29776 28773/29758 28738/29722 +f 14172/29777 14044/29759 28753/29738 +f 28738/29722 28774/29760 28789/29776 +f 28776/29762 28774/29760 28739/29723 +f 28755/29740 28775/29761 14941/29778 +f 28777/29763 28775/29761 28742/29726 +f 28790/29779 28776/29762 28755/29740 +f 28757/29742 28791/29780 28756/29741 +f 28791/29780 28777/29763 28756/29741 +f 28760/29745 28792/29781 28757/29742 +f 28759/29744 28754/29739 28762/29747 +f 28778/29764 28744/29728 28793/29782 +f 28794/29783 28744/29728 28779/29765 +f 28762/29747 28779/29765 28759/29744 +f 28746/29730 28778/29764 28780/29766 +f 28795/29784 28760/29745 28780/29766 +f 28761/29746 28781/29767 28762/29747 +f 28763/29748 28796/29785 28781/29767 +f 28763/29748 28765/29750 28797/29786 +f 28764/29749 28798/29787 28765/29750 +f 28784/29770 28782/29768 28734/29718 +f 28764/29749 28782/29768 28799/29788 +f 28783/29769 28800/29789 28766/29751 +f 28784/29770 28766/29751 28801/29790 +f 28785/29771 28802/29791 28767/29752 +f 28802/29791 28783/29769 28767/29752 +f 28768/29753 28769/29754 28803/29792 +f 28768/29753 28804/29793 28785/29771 +f 28772/29757 28805/29794 28770/29755 +f 28770/29755 28806/29795 28786/29773 +f 28786/29773 28787/29774 28751/29736 +f 28769/29754 28771/29756 28787/29774 +f 8391/29796 28772/29757 8299/29772 +f 28788/29775 14172/29777 28753/29738 +f 28788/29775 28773/29758 28807/29797 +f 28773/29758 28789/29776 28808/29798 +f 28809/29799 28789/29776 28774/29760 +f 28774/29760 28776/29762 28809/29799 +f 28791/29780 14941/29778 28775/29761 +f 28755/29740 14941/29778 28790/29779 +f 28775/29761 28777/29763 28791/29780 +f 28810/29800 28776/29762 28790/29779 +f 28757/29742 28792/29781 28791/29780 +f 28811/29801 28792/29781 28760/29745 +f 28793/29782 28744/29728 28794/29783 +f 28780/29766 28778/29764 28793/29782 +f 28812/29802 28794/29783 28779/29765 +f 28781/29767 28779/29765 28762/29747 +f 28795/29784 28813/29803 28760/29745 +f 28780/29766 28793/29782 28795/29784 +f 28814/29804 28796/29785 28763/29748 +f 28815/29805 28781/29767 28796/29785 +f 28816/29806 28763/29748 28797/29786 +f 28797/29786 28765/29750 28817/29807 +f 28798/29787 28817/29807 28765/29750 +f 28764/29749 28818/29808 28798/29787 +f 28782/29768 28784/29770 28819/29809 +f 28820/29810 28764/29749 28799/29788 +f 28819/29809 28799/29788 28782/29768 +f 28800/29789 28801/29790 28766/29751 +f 28783/29769 28821/29811 28800/29789 +f 28819/29809 28784/29770 28801/29790 +f 28785/29771 28822/29812 28802/29791 +f 28821/29811 28783/29769 28802/29791 +f 28768/29753 28803/29792 28804/29793 +f 28803/29792 28769/29754 28787/29774 +f 28785/29771 28804/29793 28822/29812 +f 28805/29794 28772/29757 28823/29813 +f 28770/29755 28805/29794 28806/29795 +f 28806/29795 28824/29814 28786/29773 +f 28825/29815 28787/29774 28786/29773 +f 28772/29757 8391/29796 28823/29813 +f 14241/29816 14172/29777 28788/29775 +f 28788/29775 28807/29797 28826/29817 +f 28807/29797 28773/29758 28808/29798 +f 14387/29818 28808/29798 28789/29776 +f 28789/29776 28809/29799 14387/29818 +f 14387/29818 28809/29799 28776/29762 +f 14941/29778 28791/29780 15080/29819 +f 14941/29778 14707/29820 28790/29779 +f 28810/29800 28790/29779 14707/29820 +f 28810/29800 14547/29821 28776/29762 +f 28827/29822 28791/29780 28792/29781 +f 28811/29801 28828/29823 28792/29781 +f 28813/29803 28811/29801 28760/29745 +f 28793/29782 28794/29783 28829/29824 +f 28815/29805 28812/29802 28779/29765 +f 28794/29783 28812/29802 28830/29825 +f 28781/29767 28815/29805 28779/29765 +f 28831/29826 28813/29803 28795/29784 +f 28832/29827 28795/29784 28793/29782 +f 28814/29804 28833/29828 28796/29785 +f 28816/29806 28814/29804 28763/29748 +f 28796/29785 28834/29829 28815/29805 +f 28835/29830 28816/29806 28797/29786 +f 28817/29807 28835/29830 28797/29786 +f 28836/29831 28817/29807 28798/29787 +f 28764/29749 28820/29810 28818/29808 +f 28798/29787 28818/29808 28836/29831 +f 28799/29788 28837/29832 28820/29810 +f 28819/29809 28801/29790 28799/29788 +f 28800/29789 28838/29833 28801/29790 +f 28800/29789 28821/29811 28839/29834 +f 28822/29812 28840/29835 28802/29791 +f 28802/29791 28840/29835 28821/29811 +f 28803/29792 28841/29836 28804/29793 +f 28787/29774 28825/29815 28803/29792 +f 28804/29793 28841/29836 28822/29812 +f 8479/29837 28805/29794 28823/29813 +f 28805/29794 28842/29838 28806/29795 +f 28786/29773 28824/29814 28825/29815 +f 28842/29838 28824/29814 28806/29795 +f 28823/29813 8391/29796 8479/29837 +f 28826/29817 14241/29816 28788/29775 +f 28807/29797 28808/29798 28826/29817 +f 28826/29817 28808/29798 14387/29818 +f 28776/29762 14547/29821 14387/29818 +f 28791/29780 28827/29822 15080/29819 +f 14707/29820 14547/29821 28810/29800 +f 28792/29781 28828/29823 28827/29822 +f 28843/29839 28828/29823 28811/29801 +f 28844/29840 28811/29801 28813/29803 +f 28794/29783 28830/29825 28829/29824 +f 28832/29827 28793/29782 28829/29824 +f 28812/29802 28815/29805 28845/29841 +f 28812/29802 28845/29841 28830/29825 +f 28813/29803 28831/29826 28846/29842 +f 28831/29826 28795/29784 28832/29827 +f 28847/29843 28833/29828 28814/29804 +f 28833/29828 28834/29829 28796/29785 +f 28814/29804 28816/29806 28847/29843 +f 28848/29844 28815/29805 28834/29829 +f 28835/29830 28847/29843 28816/29806 +f 28835/29830 28817/29807 28849/29845 +f 28850/29846 28817/29807 28836/29831 +f 28820/29810 28851/29847 28818/29808 +f 28851/29847 28836/29831 28818/29808 +f 28837/29832 28799/29788 28852/29848 +f 28820/29810 28837/29832 28853/29849 +f 28801/29790 28852/29848 28799/29788 +f 28800/29789 28854/29850 28838/29833 +f 28838/29833 28852/29848 28801/29790 +f 28821/29811 28840/29835 28839/29834 +f 28854/29850 28800/29789 28839/29834 +f 28822/29812 28855/29851 28840/29835 +f 28841/29836 28803/29792 28825/29815 +f 28841/29836 28855/29851 28822/29812 +f 8479/29837 28856/29852 28805/29794 +f 28842/29838 28805/29794 28856/29852 +f 28825/29815 28824/29814 28857/29853 +f 28842/29838 28858/29854 28824/29814 +f 14241/29816 28826/29817 14173/29855 +f 14173/29855 28826/29817 14387/29818 +f 15080/29819 28827/29822 15222/29856 +f 28828/29823 28859/29857 28827/29822 +f 28811/29801 28860/29858 28843/29839 +f 28861/29859 28828/29823 28843/29839 +f 28811/29801 28844/29840 28862/29860 +f 28813/29803 28846/29842 28844/29840 +f 28830/29825 28863/29861 28829/29824 +f 28829/29824 28863/29861 28832/29827 +f 28845/29841 28815/29805 28848/29844 +f 28845/29841 28863/29861 28830/29825 +f 28831/29826 28864/29862 28846/29842 +f 28865/29863 28831/29826 28832/29827 +f 28847/29843 28866/29864 28833/29828 +f 28833/29828 28848/29844 28834/29829 +f 28847/29843 28835/29830 28849/29845 +f 28850/29846 28849/29845 28817/29807 +f 28851/29847 28850/29846 28836/29831 +f 28820/29810 28850/29846 28851/29847 +f 28852/29848 28867/29865 28837/29832 +f 28867/29865 28853/29849 28837/29832 +f 28853/29849 28868/29866 28820/29810 +f 28854/29850 28869/29867 28838/29833 +f 28869/29867 28852/29848 28838/29833 +f 28839/29834 28840/29835 28870/29868 +f 28839/29834 28870/29868 28854/29850 +f 28855/29851 28871/29869 28840/29835 +f 28872/29870 28841/29836 28825/29815 +f 28855/29851 28841/29836 28873/29871 +f 8479/29837 8436/29872 28856/29852 +f 28856/29852 28874/29873 28842/29838 +f 28858/29854 28857/29853 28824/29814 +f 28857/29853 28872/29870 28825/29815 +f 28874/29873 28858/29854 28842/29838 +f 28859/29857 15222/29856 28827/29822 +f 28828/29823 28861/29859 28859/29857 +f 28862/29860 28860/29858 28811/29801 +f 28860/29858 28875/29874 28843/29839 +f 28859/29857 28861/29859 28843/29839 +f 28844/29840 28876/29875 28862/29860 +f 28844/29840 28846/29842 28877/29876 +f 28832/29827 28863/29861 28865/29863 +f 28845/29841 28848/29844 28878/29877 +f 28878/29877 28863/29861 28845/29841 +f 28831/29826 28865/29863 28864/29862 +f 28864/29862 28877/29876 28846/29842 +f 28833/29828 28866/29864 28879/29878 +f 28847/29843 28880/29879 28866/29864 +f 28833/29828 28879/29878 28848/29844 +f 28880/29879 28847/29843 28849/29845 +f 28849/29845 28850/29846 28868/29866 +f 28868/29866 28850/29846 28820/29810 +f 28867/29865 28852/29848 28881/29880 +f 28882/29881 28853/29849 28867/29865 +f 28853/29849 28883/29882 28868/29866 +f 28869/29867 28854/29850 28884/29883 +f 28881/29880 28852/29848 28869/29867 +f 28871/29869 28870/29868 28840/29835 +f 28871/29869 28854/29850 28870/29868 +f 28873/29871 28871/29869 28855/29851 +f 28885/29884 28841/29836 28872/29870 +f 28873/29871 28841/29836 28885/29884 +f 28874/29873 28856/29852 8436/29872 +f 28857/29853 28858/29854 28886/29885 +f 28872/29870 28857/29853 28885/29884 +f 28858/29854 28874/29873 28887/29886 +f 15222/29856 28859/29857 15342/29887 +f 28860/29858 28862/29860 28888/29888 +f 28875/29874 28860/29858 28889/29889 +f 28875/29874 28859/29857 28843/29839 +f 28876/29875 28890/29890 28862/29860 +f 28877/29876 28876/29875 28844/29840 +f 28891/29891 28865/29863 28863/29861 +f 28878/29877 28848/29844 28892/29892 +f 28878/29877 28891/29891 28863/29861 +f 28864/29862 28865/29863 28893/29893 +f 28894/29894 28877/29876 28864/29862 +f 28879/29878 28866/29864 28895/29895 +f 28866/29864 28880/29879 28896/29896 +f 28848/29844 28879/29878 28895/29895 +f 28880/29879 28849/29845 28868/29866 +f 28881/29880 28882/29881 28867/29865 +f 28883/29882 28853/29849 28882/29881 +f 28883/29882 28880/29879 28868/29866 +f 28884/29883 28854/29850 28897/29897 +f 28881/29880 28869/29867 28884/29883 +f 28898/29898 28854/29850 28871/29869 +f 28899/29899 28871/29869 28873/29871 +f 28873/29871 28885/29884 28886/29885 +f 28874/29873 8436/29872 8438/29900 +f 28858/29854 28899/29899 28886/29885 +f 28886/29885 28885/29884 28857/29853 +f 28874/29873 28900/29901 28887/29886 +f 28858/29854 28887/29886 28901/29902 +f 28859/29857 28875/29874 15342/29887 +f 28888/29888 28862/29860 28889/29889 +f 28888/29888 28889/29889 28860/29858 +f 28889/29889 15398/29903 28875/29874 +f 28902/29904 28890/29890 28876/29875 +f 28890/29890 28903/29905 28862/29860 +f 28877/29876 28904/29906 28876/29875 +f 28865/29863 28891/29891 28905/29907 +f 28892/29892 28848/29844 28895/29895 +f 28878/29877 28892/29892 28906/29908 +f 28906/29908 28891/29891 28878/29877 +f 28894/29894 28864/29862 28893/29893 +f 28865/29863 28905/29907 28893/29893 +f 28894/29894 28904/29906 28877/29876 +f 28866/29864 28907/29909 28895/29895 +f 28866/29864 28896/29896 28907/29909 +f 28880/29879 28908/29910 28896/29896 +f 28884/29883 28882/29881 28881/29880 +f 28909/29911 28883/29882 28882/29881 +f 28880/29879 28883/29882 28908/29910 +f 28884/29883 28897/29897 28910/29912 +f 28898/29898 28897/29897 28854/29850 +f 28871/29869 28899/29899 28898/29898 +f 28886/29885 28899/29899 28873/29871 +f 8438/29900 28900/29901 28874/29873 +f 28901/29902 28899/29899 28858/29854 +f 28900/29901 28911/29913 28887/29886 +f 28901/29902 28887/29886 28912/29914 +f 28875/29874 15398/29903 15342/29887 +f 28903/29905 28889/29889 28862/29860 +f 28903/29905 15398/29903 28889/29889 +f 28903/29905 28890/29890 28902/29904 +f 28902/29904 28876/29875 28904/29906 +f 28891/29891 28906/29908 28905/29907 +f 28907/29909 28892/29892 28895/29895 +f 28892/29892 28907/29909 28906/29908 +f 28893/29893 28913/29915 28894/29894 +f 28893/29893 28905/29907 28907/29909 +f 28914/29916 28904/29906 28894/29894 +f 28907/29909 28896/29896 28913/29915 +f 28915/29917 28896/29896 28908/29910 +f 28910/29912 28882/29881 28884/29883 +f 28882/29881 28910/29912 28909/29911 +f 28909/29911 28908/29910 28883/29882 +f 28910/29912 28897/29897 15595/29918 +f 28916/29919 28897/29897 28898/29898 +f 15686/29920 28898/29898 28899/29899 +f 8438/29900 8478/29921 28900/29901 +f 28901/29902 28917/29922 28899/29899 +f 28887/29886 28911/29913 28918/29923 +f 28919/29924 28911/29913 28900/29901 +f 15791/29925 28901/29902 28912/29914 +f 28887/29886 28918/29923 28912/29914 +f 15398/29903 28903/29905 28920/29926 +f 28914/29916 28903/29905 28902/29904 +f 28904/29906 28914/29916 28902/29904 +f 28906/29908 28907/29909 28905/29907 +f 28894/29894 28913/29915 28915/29917 +f 28907/29909 28913/29915 28893/29893 +f 28915/29917 28914/29916 28894/29894 +f 28913/29915 28896/29896 28915/29917 +f 28908/29910 28914/29916 28915/29917 +f 28909/29911 28910/29912 28921/29927 +f 28909/29911 28921/29927 28908/29910 +f 28921/29927 28910/29912 15595/29918 +f 15686/29920 15595/29918 28897/29897 +f 28916/29919 28898/29898 15686/29920 +f 28916/29919 15686/29920 28897/29897 +f 28917/29922 15686/29920 28899/29899 +f 8478/29921 19102/29928 28900/29901 +f 15791/29925 28917/29922 28901/29902 +f 28911/29913 28922/29929 28918/29923 +f 28922/29929 28911/29913 28919/29924 +f 28900/29901 19102/29928 28919/29924 +f 15791/29925 28912/29914 28923/29930 +f 28918/29923 28924/29931 28912/29914 +f 28920/29926 15397/29932 15398/29903 +f 28903/29905 28925/29933 28920/29926 +f 28914/29916 28925/29933 28903/29905 +f 28925/29933 28914/29916 28908/29910 +f 28908/29910 28921/29927 28925/29933 +f 28921/29927 15595/29918 15504/29934 +f 15686/29920 28917/29922 15791/29925 +f 28918/29923 28922/29929 28926/29935 +f 28919/29924 28927/29936 28922/29929 +f 19102/29928 28928/29937 28919/29924 +f 28923/29930 15839/29938 15791/29925 +f 28929/29939 28923/29930 28912/29914 +f 28924/29931 28918/29923 28930/29940 +f 28924/29931 28929/29939 28912/29914 +f 15504/29934 15397/29932 28920/29926 +f 28925/29933 15504/29934 28920/29926 +f 15504/29934 28925/29933 28921/29927 +f 28918/29923 28926/29935 28930/29940 +f 28922/29929 28927/29936 28926/29935 +f 28928/29937 28927/29936 28919/29924 +f 19102/29928 15862/29941 28928/29937 +f 15839/29938 28923/29930 15818/29942 +f 28931/29943 28923/29930 28929/29939 +f 28924/29931 28930/29940 28931/29943 +f 28924/29931 28931/29943 28929/29939 +f 28930/29940 28926/29935 15840/29944 +f 28927/29936 15840/29944 28926/29935 +f 28928/29937 15819/29945 28927/29936 +f 15862/29941 15819/29945 28928/29937 +f 28931/29943 15818/29942 28923/29930 +f 28931/29943 28930/29940 15840/29944 +f 15840/29944 28927/29936 15819/29945 +f 28931/29943 15840/29944 15818/29942 +f 28932/29946 28933/29947 28934/29948 +f 28935/29949 28933/29947 28932/29946 +f 28934/29948 28933/29947 28936/29950 +f 28932/29946 28934/29948 28937/29951 +f 28933/29947 28935/29949 28938/29952 +f 28939/29953 28935/29949 28932/29946 +f 28936/29950 28933/29947 28940/29954 +f 28934/29948 28936/29950 28941/29955 +f 28937/29951 28934/29948 28942/29956 +f 28932/29946 28937/29951 28943/29957 +f 28940/29954 28933/29947 28938/29952 +f 28938/29952 28935/29949 28944/29958 +f 28939/29953 28945/29959 28935/29949 +f 28939/29953 28932/29946 28943/29957 +f 28941/29955 28936/29950 28940/29954 +f 28946/29960 28934/29948 28941/29955 +f 28942/29956 28934/29948 28947/29961 +f 28948/29962 28937/29951 28942/29956 +f 28943/29957 28937/29951 28949/29963 +f 28950/29964 28940/29954 28938/29952 +f 28944/29958 28951/29965 28938/29952 +f 28944/29958 28935/29949 28945/29959 +f 28952/29966 28945/29959 28939/29953 +f 28949/29963 28939/29953 28943/29957 +f 28940/29954 28953/29967 28941/29955 +f 28947/29961 28934/29948 28946/29960 +f 28953/29967 28946/29960 28941/29955 +f 28942/29956 28947/29961 28954/29968 +f 28955/29969 28948/29962 28942/29956 +f 28949/29963 28937/29951 28948/29962 +f 28940/29954 28950/29964 28956/29970 +f 28950/29964 28938/29952 28957/29971 +f 28957/29971 28938/29952 28951/29965 +f 28944/29958 28958/29972 28951/29965 +f 28945/29959 28959/29973 28944/29958 +f 28945/29959 28952/29966 28960/29974 +f 28961/29975 28952/29966 28939/29953 +f 28961/29975 28939/29953 28949/29963 +f 28940/29954 28956/29970 28953/29967 +f 28947/29961 28946/29960 28962/29976 +f 28963/29977 28946/29960 28953/29967 +f 28964/29978 28942/29956 28954/29968 +f 28962/29976 28954/29968 28947/29961 +f 28948/29962 28955/29969 28965/29979 +f 28964/29978 28955/29969 28942/29956 +f 28949/29963 28948/29962 28965/29979 +f 28956/29970 28950/29964 28966/29980 +f 28950/29964 28957/29971 28967/29981 +f 28957/29971 28951/29965 28968/29982 +f 28969/29983 28958/29972 28944/29958 +f 28970/29984 28951/29965 28958/29972 +f 28959/29973 28945/29959 28971/29985 +f 28959/29973 28969/29983 28944/29958 +f 28952/29966 28972/29986 28960/29974 +f 28971/29985 28945/29959 28960/29974 +f 28952/29966 28961/29975 28973/29987 +f 28961/29975 28949/29963 28965/29979 +f 28953/29967 28956/29970 28974/29988 +f 28962/29976 28946/29960 28975/29989 +f 28963/29977 28975/29989 28946/29960 +f 28974/29988 28963/29977 28953/29967 +f 28954/29968 28976/29990 28964/29978 +f 28976/29990 28954/29968 28962/29976 +f 28955/29969 28977/29991 28965/29979 +f 28978/29992 28955/29969 28964/29978 +f 28956/29970 28966/29980 28979/29993 +f 28966/29980 28950/29964 28967/29981 +f 28957/29971 28980/29994 28967/29981 +f 28968/29982 28981/29995 28957/29971 +f 28951/29965 28970/29984 28968/29982 +f 28958/29972 28969/29983 28982/29996 +f 28970/29984 28958/29972 28983/29997 +f 28971/29985 28984/29998 28959/29973 +f 28959/29973 28985/29999 28969/29983 +f 28972/29986 28952/29966 28986/30000 +f 28972/29986 28987/30001 28960/29974 +f 28971/29985 28960/29974 28988/30002 +f 28973/29987 28961/29975 28977/29991 +f 28973/29987 28986/30000 28952/29966 +f 28977/29991 28961/29975 28965/29979 +f 28989/30003 28974/29988 28956/29970 +f 28975/29989 28990/30004 28962/29976 +f 28991/30005 28975/29989 28963/29977 +f 28974/29988 28992/30006 28963/29977 +f 28993/30007 28964/29978 28976/29990 +f 28990/30004 28976/29990 28962/29976 +f 28977/29991 28955/29969 28994/30008 +f 28994/30008 28955/29969 28978/29992 +f 28964/29978 28995/30009 28978/29992 +f 28979/29993 28966/29980 28967/29981 +f 28979/29993 28996/30010 28956/29970 +f 28957/29971 28981/29995 28980/29994 +f 28967/29981 28980/29994 28997/30011 +f 28970/29984 28981/29995 28968/29982 +f 28958/29972 28982/29996 28998/30012 +f 28969/29983 28999/30013 28982/29996 +f 29000/30014 28970/29984 28983/29997 +f 28983/29997 28958/29972 28998/30012 +f 28984/29998 28971/29985 28988/30002 +f 28984/29998 29001/30015 28959/29973 +f 28999/30013 28969/29983 28985/29999 +f 29002/30016 28985/29999 28959/29973 +f 28986/30000 29003/30017 28972/29986 +f 28987/30001 28972/29986 29004/30018 +f 28987/30001 29005/30019 28960/29974 +f 28960/29974 29005/30019 28988/30002 +f 28973/29987 28977/29991 29006/30020 +f 28973/29987 29007/30021 28986/30000 +f 28989/30003 29008/30022 28974/29988 +f 28996/30010 28989/30003 28956/29970 +f 29009/30023 28990/30004 28975/29989 +f 28975/29989 28991/30005 29009/30023 +f 28963/29977 28992/30006 28991/30005 +f 28992/30006 28974/29988 29008/30022 +f 28993/30007 29010/30024 28964/29978 +f 29011/30025 28993/30007 28976/29990 +f 28990/30004 29011/30025 28976/29990 +f 28977/29991 28994/30008 29012/30026 +f 28995/30009 28994/30008 28978/29992 +f 28964/29978 29010/30024 28995/30009 +f 28979/29993 28967/29981 29013/30027 +f 29014/30028 28996/30010 28979/29993 +f 28980/29994 28981/29995 29015/30029 +f 28980/29994 29016/30030 28997/30011 +f 28967/29981 28997/30011 29013/30027 +f 28981/29995 28970/29984 29017/30031 +f 29018/30032 28998/30012 28982/29996 +f 29019/30033 28982/29996 28999/30013 +f 28970/29984 29000/30014 29017/30031 +f 28983/29997 29020/30034 29000/30014 +f 28998/30012 29020/30034 28983/29997 +f 28984/29998 28988/30002 29021/30035 +f 29001/30015 28984/29998 29022/30036 +f 28959/29973 29001/30015 29002/30016 +f 29002/30016 28999/30013 28985/29999 +f 28986/30000 29007/30021 29003/30017 +f 29004/30018 28972/29986 29003/30017 +f 28987/30001 29004/30018 29023/30037 +f 29024/30038 29005/30019 28987/30001 +f 28988/30002 29005/30019 29021/30035 +f 29006/30020 28977/29991 29012/30026 +f 28973/29987 29006/30020 29007/30021 +f 29008/30022 28989/30003 29025/30039 +f 29025/30039 28989/30003 28996/30010 +f 29009/30023 29011/30025 28990/30004 +f 29009/30023 28991/30005 29026/30040 +f 28992/30006 29027/30041 28991/30005 +f 29008/30022 29027/30041 28992/30006 +f 29009/30023 29010/30024 28993/30007 +f 29011/30025 29009/30023 28993/30007 +f 29012/30026 28994/30008 28995/30009 +f 29010/30024 29028/30042 28995/30009 +f 29013/30027 29029/30043 28979/29993 +f 28979/29993 29029/30043 29014/30028 +f 29030/30044 28996/30010 29014/30028 +f 29017/30031 29015/30029 28981/29995 +f 28980/29994 29015/30029 29016/30030 +f 29031/30045 28997/30011 29016/30030 +f 29013/30027 28997/30011 29032/30046 +f 29018/30032 29020/30034 28998/30012 +f 28982/29996 29019/30033 29018/30032 +f 29033/30047 29019/30033 28999/30013 +f 29017/30031 29000/30014 29034/30048 +f 29000/30014 29020/30034 29034/30048 +f 29021/30035 29035/30049 28984/29998 +f 29022/30036 28984/29998 29036/30050 +f 29022/30036 29037/30051 29001/30015 +f 29033/30047 29002/30016 29001/30015 +f 29033/30047 28999/30013 29002/30016 +f 29007/30021 29038/30052 29003/30017 +f 29004/30018 29003/30017 29038/30052 +f 29004/30018 29039/30053 29023/30037 +f 29023/30037 29040/30054 28987/30001 +f 28987/30001 29041/30055 29024/30038 +f 29005/30019 29024/30038 29021/30035 +f 29006/30020 29012/30026 29042/30056 +f 29006/30020 29043/30057 29007/30021 +f 29044/30058 29008/30022 29025/30039 +f 29030/30044 29025/30039 28996/30010 +f 29045/30059 29009/30023 29026/30040 +f 29026/30040 28991/30005 29027/30041 +f 29027/30041 29008/30022 29046/30060 +f 29010/30024 29009/30023 29047/30061 +f 28995/30009 29048/30062 29012/30026 +f 29028/30042 29010/30024 29047/30061 +f 29028/30042 29048/30062 28995/30009 +f 29032/30046 29029/30043 29013/30027 +f 29014/30028 29029/30043 29049/30063 +f 29030/30044 29014/30028 29050/30064 +f 29051/30065 29015/30029 29017/30031 +f 29015/30029 29051/30065 29016/30030 +f 29031/30045 29016/30030 29051/30065 +f 29032/30046 28997/30011 29031/30045 +f 29052/30066 29020/30034 29018/30032 +f 29019/30033 29053/30067 29018/30032 +f 29053/30067 29019/30033 29033/30047 +f 29034/30048 29054/30068 29017/30031 +f 29034/30048 29020/30034 29052/30066 +f 29055/30069 29035/30049 29021/30035 +f 28984/29998 29035/30049 29036/30050 +f 29022/30036 29036/30050 29056/30070 +f 29057/30071 29037/30051 29022/30036 +f 29001/30015 29037/30051 29033/30047 +f 29007/30021 29043/30057 29038/30052 +f 29039/30053 29004/30018 29038/30052 +f 29023/30037 29039/30053 29058/30072 +f 29040/30054 29041/30055 28987/30001 +f 29059/30073 29040/30054 29023/30037 +f 29060/30074 29024/30038 29041/30055 +f 29055/30069 29021/30035 29024/30038 +f 29042/30056 29012/30026 29048/30062 +f 29043/30057 29006/30020 29042/30056 +f 29008/30022 29044/30058 29061/30075 +f 29044/30058 29025/30039 29062/30076 +f 29030/30044 29062/30076 29025/30039 +f 29045/30059 29063/30077 29009/30023 +f 29064/30078 29045/30059 29026/30040 +f 29027/30041 29046/30060 29026/30040 +f 29061/30075 29046/30060 29008/30022 +f 29009/30023 29063/30077 29047/30061 +f 29065/30079 29028/30042 29047/30061 +f 29066/30080 29048/30062 29028/30042 +f 29029/30043 29032/30046 29067/30081 +f 29029/30043 29068/30082 29049/30063 +f 29014/30028 29049/30063 29050/30064 +f 29062/30076 29030/30044 29050/30064 +f 29017/30031 29069/30083 29051/30065 +f 29051/30065 29070/30084 29031/30045 +f 29031/30045 29071/30085 29032/30046 +f 29072/30086 29052/30066 29018/30032 +f 29053/30067 29072/30086 29018/30032 +f 29073/30087 29053/30067 29033/30047 +f 29017/30031 29054/30068 29069/30083 +f 29074/30088 29054/30068 29034/30048 +f 29034/30048 29052/30066 29075/30089 +f 29076/30090 29035/30049 29055/30069 +f 29035/30049 29077/30091 29036/30050 +f 29036/30050 29078/30092 29056/30070 +f 29057/30071 29022/30036 29056/30070 +f 29057/30071 29079/30093 29037/30051 +f 29033/30047 29037/30051 29079/30093 +f 29043/30057 29080/30094 29038/30052 +f 29038/30052 29081/30095 29039/30053 +f 29058/30072 29082/30096 29023/30037 +f 29081/30095 29058/30072 29039/30053 +f 29041/30055 29040/30054 29060/30074 +f 29040/30054 29059/30073 29060/30074 +f 29023/30037 29082/30096 29059/30073 +f 29055/30069 29024/30038 29060/30074 +f 29048/30062 29083/30097 29042/30056 +f 29042/30056 29084/30098 29043/30057 +f 29085/30099 29061/30075 29044/30058 +f 29086/30100 29044/30058 29062/30076 +f 29063/30077 29045/30059 29087/30101 +f 29045/30059 29064/30078 29088/30102 +f 29026/30040 29089/30103 29064/30078 +f 29046/30060 29089/30103 29026/30040 +f 29090/30104 29046/30060 29061/30075 +f 29063/30077 29091/30105 29047/30061 +f 29065/30079 29066/30080 29028/30042 +f 29091/30105 29065/30079 29047/30061 +f 29066/30080 29083/30097 29048/30062 +f 29029/30043 29067/30081 29092/30106 +f 29032/30046 29071/30085 29067/30081 +f 29029/30043 29093/30107 29068/30082 +f 29068/30082 29094/30108 29049/30063 +f 29049/30063 29094/30108 29050/30064 +f 29095/30109 29062/30076 29050/30064 +f 29051/30065 29069/30083 29070/30084 +f 29070/30084 29096/30110 29031/30045 +f 29096/30110 29071/30085 29031/30045 +f 29052/30066 29072/30086 29075/30089 +f 29053/30067 29073/30087 29072/30086 +f 29079/30093 29073/30087 29033/30047 +f 29074/30088 29069/30083 29054/30068 +f 29097/30111 29074/30088 29034/30048 +f 29097/30111 29034/30048 29075/30089 +f 29055/30069 29060/30074 29076/30090 +f 29035/30049 29076/30090 29098/30112 +f 29035/30049 29099/30113 29077/30091 +f 29077/30091 29078/30092 29036/30050 +f 29056/30070 29078/30092 29100/30114 +f 29100/30114 29057/30071 29056/30070 +f 29057/30071 29101/30115 29079/30093 +f 29084/30098 29080/30094 29043/30057 +f 29038/30052 29080/30094 29081/30095 +f 29082/30096 29058/30072 29102/30116 +f 29102/30116 29058/30072 29081/30095 +f 29060/30074 29059/30073 29103/30117 +f 29082/30096 29103/30117 29059/30073 +f 29083/30097 29104/30118 29042/30056 +f 29104/30118 29084/30098 29042/30056 +f 29105/30119 29061/30075 29085/30099 +f 29044/30058 29086/30100 29085/30099 +f 29062/30076 29106/30120 29086/30100 +f 29088/30102 29087/30101 29045/30059 +f 29087/30101 29091/30105 29063/30077 +f 29064/30078 29107/30121 29088/30102 +f 29108/30122 29064/30078 29089/30103 +f 29046/30060 29090/30104 29089/30103 +f 29105/30119 29090/30104 29061/30075 +f 29109/30123 29066/30080 29065/30079 +f 29065/30079 29091/30105 29110/30124 +f 29083/30097 29066/30080 29111/30125 +f 29112/30126 29092/30106 29067/30081 +f 29092/30106 29093/30107 29029/30043 +f 29096/30110 29067/30081 29071/30085 +f 29113/30127 29068/30082 29093/30107 +f 29068/30082 29114/30128 29094/30108 +f 29050/30064 29094/30108 29095/30109 +f 29095/30109 29106/30120 29062/30076 +f 29069/30083 29115/30129 29070/30084 +f 29115/30129 29096/30110 29070/30084 +f 29072/30086 29116/30130 29075/30089 +f 29073/30087 29116/30130 29072/30086 +f 29117/30131 29073/30087 29079/30093 +f 29069/30083 29074/30088 29118/30132 +f 29074/30088 29097/30111 29119/30133 +f 29097/30111 29075/30089 29120/30134 +f 29060/30074 29121/30135 29076/30090 +f 29099/30113 29035/30049 29098/30112 +f 29098/30112 29076/30090 29122/30136 +f 29077/30091 29099/30113 29123/30137 +f 29123/30137 29078/30092 29077/30091 +f 29078/30092 29124/30138 29100/30114 +f 29100/30114 29124/30138 29057/30071 +f 29101/30115 29057/30071 29124/30138 +f 29079/30093 29101/30115 29117/30131 +f 29104/30118 29080/30094 29084/30098 +f 29125/30139 29081/30095 29080/30094 +f 29082/30096 29102/30116 29126/30140 +f 29102/30116 29081/30095 29127/30141 +f 29103/30117 29121/30135 29060/30074 +f 29128/30142 29103/30117 29082/30096 +f 29104/30118 29083/30097 29129/30143 +f 29105/30119 29085/30099 29130/30144 +f 29085/30099 29086/30100 29131/30145 +f 29132/30146 29086/30100 29106/30120 +f 29087/30101 29088/30102 29133/30147 +f 29091/30105 29087/30101 29110/30124 +f 29107/30121 29064/30078 29108/30122 +f 29088/30102 29107/30121 29133/30147 +f 29134/30148 29108/30122 29089/30103 +f 29090/30104 29135/30149 29089/30103 +f 29090/30104 29105/30119 29136/30150 +f 29109/30123 29111/30125 29066/30080 +f 29110/30124 29109/30123 29065/30079 +f 29083/30097 29111/30125 29129/30143 +f 29137/30151 29092/30106 29112/30126 +f 29067/30081 29096/30110 29112/30126 +f 29092/30106 29137/30151 29093/30107 +f 29068/30082 29113/30127 29114/30128 +f 29138/30152 29113/30127 29093/30107 +f 29094/30108 29114/30128 29139/30153 +f 29094/30108 29140/30154 29095/30109 +f 29141/30155 29106/30120 29095/30109 +f 29115/30129 29069/30083 29118/30132 +f 29096/30110 29115/30129 29142/30156 +f 29116/30130 29143/30157 29075/30089 +f 29116/30130 29073/30087 29144/30158 +f 29073/30087 29117/30131 29144/30158 +f 29145/30159 29118/30132 29074/30088 +f 29146/30160 29119/30133 29097/30111 +f 29074/30088 29119/30133 29147/30161 +f 29097/30111 29120/30134 29148/30162 +f 29075/30089 29143/30157 29120/30134 +f 29121/30135 29122/30136 29076/30090 +f 29149/30163 29099/30113 29098/30112 +f 29122/30136 29149/30163 29098/30112 +f 29099/30113 29150/30164 29123/30137 +f 29078/30092 29123/30137 29151/30165 +f 29124/30138 29078/30092 29152/30166 +f 29101/30115 29124/30138 29153/30167 +f 29101/30115 29154/30168 29117/30131 +f 29129/30143 29080/30094 29104/30118 +f 29129/30143 29125/30139 29080/30094 +f 29081/30095 29125/30139 29127/30141 +f 29126/30140 29102/30116 29155/30169 +f 29082/30096 29126/30140 29156/30170 +f 29157/30171 29102/30116 29127/30141 +f 29121/30135 29103/30117 29158/30172 +f 29156/30170 29128/30142 29082/30096 +f 29103/30117 29128/30142 29159/30173 +f 29105/30119 29130/30144 29160/30174 +f 29131/30145 29130/30144 29085/30099 +f 29132/30146 29131/30145 29086/30100 +f 29132/30146 29106/30120 29161/30175 +f 29087/30101 29133/30147 29110/30124 +f 29108/30122 29134/30148 29107/30121 +f 29107/30121 29162/30176 29133/30147 +f 29089/30103 29135/30149 29134/30148 +f 29135/30149 29090/30104 29136/30150 +f 29105/30119 29163/30177 29136/30150 +f 29164/30178 29111/30125 29109/30123 +f 29164/30178 29109/30123 29110/30124 +f 29129/30143 29111/30125 29165/30179 +f 29112/30126 29166/30180 29137/30151 +f 29112/30126 29096/30110 29167/30181 +f 29168/30182 29093/30107 29137/30151 +f 29169/30183 29114/30128 29113/30127 +f 29138/30152 29170/30184 29113/30127 +f 29168/30182 29138/30152 29093/30107 +f 29139/30153 29114/30128 29171/30185 +f 29139/30153 29172/30186 29094/30108 +f 29173/30187 29140/30154 29094/30108 +f 29095/30109 29140/30154 29174/30188 +f 29141/30155 29161/30175 29106/30120 +f 29141/30155 29095/30109 29175/30189 +f 29115/30129 29118/30132 29176/30190 +f 29142/30156 29167/30181 29096/30110 +f 29142/30156 29115/30129 29177/30191 +f 29144/30158 29143/30157 29116/30130 +f 29117/30131 29154/30168 29144/30158 +f 29118/30132 29145/30159 29176/30190 +f 29145/30159 29074/30088 29147/30161 +f 29146/30160 29097/30111 29148/30162 +f 29178/30192 29119/30133 29146/30160 +f 29147/30161 29119/30133 29179/30193 +f 29180/30194 29148/30162 29120/30134 +f 29143/30157 29181/30195 29120/30134 +f 29182/30196 29122/30136 29121/30135 +f 29150/30164 29099/30113 29149/30163 +f 29122/30136 29183/30197 29149/30163 +f 29150/30164 29184/30198 29123/30137 +f 29185/30199 29078/30092 29151/30165 +f 29151/30165 29123/30137 29186/30200 +f 29185/30199 29152/30166 29078/30092 +f 29153/30167 29124/30138 29152/30166 +f 29153/30167 29154/30168 29101/30115 +f 29187/30201 29125/30139 29129/30143 +f 29125/30139 29188/30202 29127/30141 +f 29102/30116 29157/30171 29155/30169 +f 29126/30140 29155/30169 29189/30203 +f 29190/30204 29156/30170 29126/30140 +f 29188/30202 29157/30171 29127/30141 +f 29158/30172 29103/30117 29159/30173 +f 29121/30135 29158/30172 29191/30205 +f 29128/30142 29156/30170 29190/30204 +f 29159/30173 29128/30142 29192/30206 +f 29160/30174 29130/30144 29193/30207 +f 29160/30174 29163/30177 29105/30119 +f 29193/30207 29130/30144 29131/30145 +f 29194/30208 29131/30145 29132/30146 +f 29132/30146 29161/30175 29194/30208 +f 29133/30147 29162/30176 29110/30124 +f 29195/30209 29107/30121 29134/30148 +f 29195/30209 29162/30176 29107/30121 +f 29134/30148 29135/30149 29196/30210 +f 29136/30150 29197/30211 29135/30149 +f 29136/30150 29163/30177 29198/30212 +f 29111/30125 29164/30178 29199/30213 +f 29164/30178 29110/30124 29200/30214 +f 29129/30143 29165/30179 29187/30201 +f 29111/30125 29199/30213 29165/30179 +f 29201/30215 29166/30180 29112/30126 +f 29168/30182 29137/30151 29166/30180 +f 29112/30126 29167/30181 29201/30215 +f 29171/30185 29114/30128 29169/30183 +f 29169/30183 29113/30127 29170/30184 +f 29170/30184 29138/30152 29202/30216 +f 29138/30152 29168/30182 29202/30216 +f 29203/30217 29139/30153 29171/30185 +f 29172/30186 29139/30153 29204/30218 +f 29172/30186 29205/30219 29094/30108 +f 29206/30220 29140/30154 29173/30187 +f 29094/30108 29205/30219 29173/30187 +f 29140/30154 29207/30221 29174/30188 +f 29175/30189 29095/30109 29174/30188 +f 29161/30175 29141/30155 29194/30208 +f 29175/30189 29208/30222 29141/30155 +f 29115/30129 29176/30190 29177/30191 +f 29142/30156 29209/30223 29167/30181 +f 29142/30156 29177/30191 29209/30223 +f 29144/30158 29154/30168 29143/30157 +f 29176/30190 29145/30159 29210/30224 +f 29147/30161 29211/30225 29145/30159 +f 29148/30162 29212/30226 29146/30160 +f 29213/30227 29178/30192 29146/30160 +f 29119/30133 29178/30192 29179/30193 +f 29211/30225 29147/30161 29179/30193 +f 29180/30194 29120/30134 29181/30195 +f 29212/30226 29148/30162 29180/30194 +f 29181/30195 29143/30157 29153/30167 +f 29214/30228 29122/30136 29182/30196 +f 29191/30205 29182/30196 29121/30135 +f 29150/30164 29149/30163 29183/30197 +f 29214/30228 29183/30197 29122/30136 +f 29184/30198 29150/30164 29215/30229 +f 29184/30198 29216/30230 29123/30137 +f 29217/30231 29185/30199 29151/30165 +f 29123/30137 29216/30230 29186/30200 +f 29151/30165 29186/30200 29218/30232 +f 29152/30166 29185/30199 29219/30233 +f 29153/30167 29152/30166 29219/30233 +f 29153/30167 29143/30157 29154/30168 +f 29125/30139 29187/30201 29188/30202 +f 29155/30169 29157/30171 29220/30234 +f 29189/30203 29155/30169 29220/30234 +f 29126/30140 29189/30203 29190/30204 +f 29188/30202 20154/30235 29157/30171 +f 29159/30173 29191/30205 29158/30172 +f 29190/30204 29221/30236 29128/30142 +f 29192/30206 29128/30142 29221/30236 +f 29222/30237 29159/30173 29192/30206 +f 29223/30238 29160/30174 29193/30207 +f 29224/30239 29163/30177 29160/30174 +f 29131/30145 29225/30240 29193/30207 +f 29194/30208 29225/30240 29131/30145 +f 29200/30214 29110/30124 29162/30176 +f 29134/30148 29196/30210 29195/30209 +f 29226/30241 29162/30176 29195/30209 +f 29196/30210 29135/30149 29197/30211 +f 29198/30212 29197/30211 29136/30150 +f 29163/30177 29227/30242 29198/30212 +f 29199/30213 29164/30178 29228/30243 +f 29229/30244 29164/30178 29200/30214 +f 29187/30201 29165/30179 29230/30245 +f 29165/30179 29199/30213 29231/30246 +f 29232/30247 29166/30180 29201/30215 +f 29168/30182 29166/30180 29233/30248 +f 29167/30181 29209/30223 29201/30215 +f 29169/30183 29170/30184 29171/30185 +f 29234/30249 29170/30184 29202/30216 +f 29233/30248 29202/30216 29168/30182 +f 29234/30249 29203/30217 29171/30185 +f 29203/30217 29204/30218 29139/30153 +f 29204/30218 29235/30250 29172/30186 +f 29235/30250 29205/30219 29172/30186 +f 29140/30154 29206/30220 29236/30251 +f 29206/30220 29173/30187 29205/30219 +f 29140/30154 29236/30251 29207/30221 +f 29207/30221 29237/30252 29174/30188 +f 29174/30188 29208/30222 29175/30189 +f 29141/30155 29238/30253 29194/30208 +f 29208/30222 29238/30253 29141/30155 +f 29177/30191 29176/30190 29239/30254 +f 29209/30223 29177/30191 29240/30255 +f 29210/30224 29145/30159 29211/30225 +f 29176/30190 29210/30224 29239/30254 +f 29212/30226 29213/30227 29146/30160 +f 29178/30192 29213/30227 29241/30256 +f 29241/30256 29179/30193 29178/30192 +f 29241/30256 29211/30225 29179/30193 +f 29242/30257 29212/30226 29180/30194 +f 29214/30228 29182/30196 29243/30258 +f 29191/30205 29244/30259 29182/30196 +f 29150/30164 29183/30197 29215/30229 +f 29183/30197 29214/30228 29243/30258 +f 29245/30260 29184/30198 29215/30229 +f 29184/30198 29246/30261 29216/30230 +f 29151/30165 29247/30262 29217/30231 +f 29185/30199 29217/30231 29248/30263 +f 29249/30264 29186/30200 29216/30230 +f 29250/30265 29218/30232 29186/30200 +f 29218/30232 29251/30266 29151/30165 +f 29248/30263 29219/30233 29185/30199 +f 29188/30202 29187/30201 29252/30267 +f 20122/30268 29220/30234 29157/30171 +f 29220/30234 20137/30269 29189/30203 +f 29253/30270 29190/30204 29189/30203 +f 20122/30268 29157/30171 20154/30235 +f 20154/30235 29188/30202 29254/30271 +f 29191/30205 29159/30173 29255/30272 +f 29221/30236 29190/30204 29253/30270 +f 29192/30206 29221/30236 29222/30237 +f 29255/30272 29159/30173 29222/30237 +f 29256/30273 29160/30174 29223/30238 +f 29257/30274 29223/30238 29193/30207 +f 29256/30273 29224/30239 29160/30174 +f 29227/30242 29163/30177 29224/30239 +f 29257/30274 29193/30207 29225/30240 +f 29194/30208 29258/30275 29225/30240 +f 29200/30214 29162/30176 29226/30241 +f 29195/30209 29196/30210 29259/30276 +f 29259/30276 29226/30241 29195/30209 +f 29260/30277 29196/30210 29197/30211 +f 29198/30212 29261/30278 29197/30211 +f 29261/30278 29198/30212 29227/30242 +f 29164/30178 29229/30244 29228/30243 +f 29228/30243 29262/30279 29199/30213 +f 29226/30241 29229/30244 29200/30214 +f 29187/30201 29230/30245 29263/30280 +f 29231/30246 29230/30245 29165/30179 +f 29199/30213 29262/30279 29231/30246 +f 29232/30247 29201/30215 29264/30281 +f 29232/30247 29233/30248 29166/30180 +f 29201/30215 29209/30223 29264/30281 +f 29170/30184 29234/30249 29171/30185 +f 29265/30282 29234/30249 29202/30216 +f 29233/30248 29265/30282 29202/30216 +f 29203/30217 29234/30249 29266/30283 +f 29204/30218 29203/30217 29267/30284 +f 29235/30250 29204/30218 29267/30284 +f 29205/30219 29235/30250 29268/30285 +f 29206/30220 29269/30286 29236/30251 +f 29268/30285 29206/30220 29205/30219 +f 29236/30251 29270/30287 29207/30221 +f 29271/30288 29237/30252 29207/30221 +f 29237/30252 29272/30289 29174/30188 +f 29174/30188 29272/30289 29208/30222 +f 29238/30253 29258/30275 29194/30208 +f 29238/30253 29208/30222 29257/30274 +f 29239/30254 29240/30255 29177/30191 +f 29240/30255 29264/30281 29209/30223 +f 29210/30224 29211/30225 29273/30290 +f 29274/30291 29239/30254 29210/30224 +f 29212/30226 29242/30257 29213/30227 +f 29241/30256 29213/30227 29275/30292 +f 29241/30256 29276/30293 29211/30225 +f 29182/30196 29244/30259 29243/30258 +f 29244/30259 29191/30205 29277/30294 +f 29278/30295 29215/30229 29183/30197 +f 29183/30197 29243/30258 29279/30296 +f 29184/30198 29245/30260 29246/30261 +f 29245/30260 29215/30229 29280/30297 +f 29216/30230 29246/30261 29249/30264 +f 29251/30266 29247/30262 29151/30165 +f 29247/30262 29281/30298 29217/30231 +f 29249/30264 29250/30265 29186/30200 +f 29218/30232 29250/30265 29282/30299 +f 29251/30266 29218/30232 29282/30299 +f 29188/30202 29252/30267 29254/30271 +f 29263/30280 29252/30267 29187/30201 +f 20137/30269 29220/30234 20122/30268 +f 20137/30269 29253/30270 29189/30203 +f 20143/30300 20154/30235 29254/30271 +f 29191/30205 29255/30272 29277/30294 +f 29283/30301 29221/30236 29253/30270 +f 29222/30237 29221/30236 29283/30301 +f 29222/30237 29284/30302 29255/30272 +f 29256/30273 29223/30238 29257/30274 +f 29256/30273 29285/30303 29224/30239 +f 29286/30304 29227/30242 29224/30239 +f 29225/30240 29258/30275 29257/30274 +f 29196/30210 29287/30305 29259/30276 +f 29288/30306 29226/30241 29259/30276 +f 29287/30305 29196/30210 29260/30277 +f 29261/30278 29260/30277 29197/30211 +f 29261/30278 29227/30242 29289/30307 +f 29229/30244 29290/30308 29228/30243 +f 29290/30308 29262/30279 29228/30243 +f 29229/30244 29226/30241 29288/30306 +f 29263/30280 29230/30245 29291/30309 +f 29292/30310 29230/30245 29231/30246 +f 29231/30246 29262/30279 29293/30311 +f 29294/30312 29232/30247 29264/30281 +f 29233/30248 29232/30247 29295/30313 +f 29296/30314 29234/30249 29265/30282 +f 29265/30282 29233/30248 29295/30313 +f 29266/30283 29234/30249 29297/30315 +f 29266/30283 29298/30316 29203/30217 +f 29203/30217 29298/30316 29267/30284 +f 29299/30317 29235/30250 29267/30284 +f 29235/30250 29299/30317 29268/30285 +f 29300/30318 29269/30286 29206/30220 +f 29269/30286 29270/30287 29236/30251 +f 29301/30319 29206/30220 29268/30285 +f 29207/30221 29270/30287 29302/30320 +f 29303/30321 29237/30252 29271/30288 +f 29304/30322 29271/30288 29207/30221 +f 29237/30252 29305/30323 29272/30289 +f 29306/30324 29208/30222 29272/30289 +f 29258/30275 29238/30253 29257/30274 +f 29257/30274 29208/30222 29306/30324 +f 29239/30254 29307/30325 29240/30255 +f 29308/30326 29264/30281 29240/30255 +f 29210/30224 29273/30290 29309/30327 +f 29211/30225 29276/30293 29273/30290 +f 29309/30327 29274/30291 29210/30224 +f 29307/30325 29239/30254 29274/30291 +f 29213/30227 29242/30257 29310/30328 +f 29311/30329 29275/30292 29213/30227 +f 29241/30256 29275/30292 29276/30293 +f 29243/30258 29244/30259 29312/30330 +f 29277/30294 29312/30330 29244/30259 +f 29215/30229 29278/30295 29280/30297 +f 29313/30331 29278/30295 29183/30197 +f 29279/30296 29243/30258 29314/30332 +f 29279/30296 29313/30331 29183/30197 +f 29246/30261 29245/30260 29315/30333 +f 29245/30260 29280/30297 29315/30333 +f 29249/30264 29246/30261 29316/30334 +f 29247/30262 29251/30266 29317/30335 +f 29247/30262 29317/30335 29281/30298 +f 29250/30265 29249/30264 29318/30336 +f 29250/30265 29319/30337 29282/30299 +f 29320/30338 29251/30266 29282/30299 +f 29254/30271 29252/30267 29321/30339 +f 29252/30267 29263/30280 29321/30339 +f 29283/30301 29253/30270 20137/30269 +f 29321/30339 20143/30300 29254/30271 +f 29277/30294 29255/30272 29284/30302 +f 29222/30237 29283/30301 29322/30340 +f 29284/30302 29222/30237 29322/30340 +f 29257/30274 29285/30303 29256/30273 +f 29285/30303 29323/30341 29224/30239 +f 29324/30342 29227/30242 29286/30304 +f 29325/30343 29286/30304 29224/30239 +f 29326/30344 29259/30276 29287/30305 +f 29259/30276 29327/30345 29288/30306 +f 29261/30278 29287/30305 29260/30277 +f 29289/30307 29227/30242 29324/30342 +f 29328/30346 29261/30278 29289/30307 +f 29290/30308 29229/30244 29329/30347 +f 29262/30279 29290/30308 29293/30311 +f 29329/30347 29229/30244 29288/30306 +f 29291/30309 29330/30348 29263/30280 +f 29291/30309 29230/30245 29292/30310 +f 29292/30310 29231/30246 29331/30349 +f 29332/30350 29231/30246 29293/30311 +f 29232/30247 29294/30312 29295/30313 +f 29308/30326 29294/30312 29264/30281 +f 29296/30314 29297/30315 29234/30249 +f 29295/30313 29296/30314 29265/30282 +f 29266/30283 29297/30315 29333/30351 +f 29333/30351 29298/30316 29266/30283 +f 29334/30352 29267/30284 29298/30316 +f 29299/30317 29267/30284 29334/30352 +f 29335/30353 29268/30285 29299/30317 +f 29336/30354 29269/30286 29300/30318 +f 29206/30220 29301/30319 29300/30318 +f 29269/30286 29337/30355 29270/30287 +f 29301/30319 29268/30285 29335/30353 +f 29270/30287 29338/30356 29302/30320 +f 29339/30357 29207/30221 29302/30320 +f 29303/30321 29305/30323 29237/30252 +f 29340/30358 29303/30321 29271/30288 +f 29304/30322 29207/30221 29341/30359 +f 29340/30358 29271/30288 29304/30322 +f 29305/30323 29306/30324 29272/30289 +f 29306/30324 29342/30360 29257/30274 +f 29240/30255 29307/30325 29308/30326 +f 29273/30290 29343/30361 29309/30327 +f 29344/30362 29273/30290 29276/30293 +f 29345/30363 29274/30291 29309/30327 +f 29346/30364 29307/30325 29274/30291 +f 29213/30227 29310/30328 29347/30365 +f 29311/30329 29213/30227 29347/30365 +f 29275/30292 29311/30329 29276/30293 +f 29243/30258 29312/30330 29314/30332 +f 29312/30330 29277/30294 29348/30366 +f 29280/30297 29278/30295 29349/30367 +f 29278/30295 29313/30331 29349/30367 +f 29279/30296 29314/30332 29350/30368 +f 29313/30331 29279/30296 29351/30369 +f 29316/30334 29246/30261 29315/30333 +f 29315/30333 29280/30297 29352/30370 +f 29316/30334 29318/30336 29249/30264 +f 29251/30266 29320/30338 29317/30335 +f 29281/30298 29317/30335 29353/30371 +f 29318/30336 29319/30337 29250/30265 +f 29319/30337 29320/30338 29282/30299 +f 29321/30339 29263/30280 29354/30372 +f 20137/30269 20110/30373 29283/30301 +f 29354/30372 20143/30300 29321/30339 +f 29348/30366 29277/30294 29284/30302 +f 29322/30340 29283/30301 20110/30373 +f 29355/30374 29284/30302 29322/30340 +f 29342/30360 29285/30303 29257/30274 +f 29342/30360 29323/30341 29285/30303 +f 29323/30341 29325/30343 29224/30239 +f 29286/30304 29356/30375 29324/30342 +f 29357/30376 29286/30304 29325/30343 +f 29326/30344 29327/30345 29259/30276 +f 29287/30305 29328/30346 29326/30344 +f 29288/30306 29327/30345 29358/30377 +f 29328/30346 29287/30305 29261/30278 +f 29324/30342 29359/30378 29289/30307 +f 29359/30378 29328/30346 29289/30307 +f 29329/30347 29360/30379 29290/30308 +f 29361/30380 29293/30311 29290/30308 +f 29362/30381 29329/30347 29288/30306 +f 29354/30372 29263/30280 29330/30348 +f 29291/30309 29354/30372 29330/30348 +f 29291/30309 29292/30310 29363/30382 +f 29292/30310 29331/30349 29364/30383 +f 29231/30246 29332/30350 29331/30349 +f 29332/30350 29293/30311 29365/30384 +f 29294/30312 29366/30385 29295/30313 +f 29294/30312 29308/30326 29366/30385 +f 29367/30386 29297/30315 29296/30314 +f 29367/30386 29296/30314 29295/30313 +f 29368/30387 29333/30351 29297/30315 +f 29333/30351 29334/30352 29298/30316 +f 29334/30352 29369/30388 29299/30317 +f 29299/30317 29370/30389 29335/30353 +f 29336/30354 29337/30355 29269/30286 +f 29371/30390 29336/30354 29300/30318 +f 29301/30319 29335/30353 29300/30318 +f 29270/30287 29337/30355 29372/30391 +f 29270/30287 29373/30392 29338/30356 +f 29338/30356 29373/30392 29302/30320 +f 29339/30357 29374/30393 29207/30221 +f 29375/30394 29339/30357 29302/30320 +f 29376/30395 29305/30323 29303/30321 +f 29303/30321 29340/30358 29377/30396 +f 29378/30397 29341/30359 29207/30221 +f 29341/30359 29379/30398 29304/30322 +f 29379/30398 29340/30358 29304/30322 +f 29306/30324 29305/30323 29376/30395 +f 29342/30360 29306/30324 29380/30399 +f 29381/30400 29308/30326 29307/30325 +f 29382/30401 29343/30361 29273/30290 +f 29309/30327 29343/30361 29345/30363 +f 29382/30401 29273/30290 29344/30362 +f 29311/30329 29344/30362 29276/30293 +f 29274/30291 29345/30363 29346/30364 +f 29383/30402 29307/30325 29346/30364 +f 29347/30365 29310/30328 29384/30403 +f 29385/30404 29311/30329 29347/30365 +f 29314/30332 29312/30330 29386/30405 +f 29387/30406 29312/30330 29348/30366 +f 29349/30367 29388/30407 29280/30297 +f 29313/30331 29351/30369 29349/30367 +f 29350/30368 29314/30332 29386/30405 +f 29389/30408 29279/30296 29350/30368 +f 29351/30369 29279/30296 29389/30408 +f 29315/30333 29352/30370 29316/30334 +f 29390/30409 29352/30370 29280/30297 +f 29316/30334 29352/30370 29318/30336 +f 29317/30335 29320/30338 29391/30410 +f 29353/30371 29317/30335 29391/30410 +f 29318/30336 29392/30411 29319/30337 +f 29320/30338 29319/30337 29393/30412 +f 20143/30300 29354/30372 20118/30413 +f 29284/30302 29355/30374 29348/30366 +f 29322/30340 20110/30373 20080/30414 +f 29322/30340 29394/30415 29355/30374 +f 29323/30341 29342/30360 29380/30399 +f 29325/30343 29323/30341 29395/30416 +f 29396/30417 29324/30342 29356/30375 +f 29357/30376 29356/30375 29286/30304 +f 29397/30418 29357/30376 29325/30343 +f 29327/30345 29326/30344 29358/30377 +f 29398/30419 29326/30344 29328/30346 +f 29288/30306 29358/30377 29362/30381 +f 29324/30342 29396/30417 29359/30378 +f 29398/30419 29328/30346 29359/30378 +f 29360/30379 29329/30347 29399/30420 +f 29361/30380 29290/30308 29360/30379 +f 29400/30421 29293/30311 29361/30380 +f 29399/30420 29329/30347 29362/30381 +f 29401/30422 29354/30372 29291/30309 +f 29292/30310 29364/30383 29363/30382 +f 29401/30422 29291/30309 29363/30382 +f 29331/30349 29402/30423 29364/30383 +f 29365/30384 29331/30349 29332/30350 +f 29293/30311 29403/30424 29365/30384 +f 29366/30385 29404/30425 29295/30313 +f 29308/30326 29381/30400 29366/30385 +f 29405/30426 29297/30315 29367/30386 +f 29404/30425 29367/30386 29295/30313 +f 29406/30427 29368/30387 29297/30315 +f 29406/30427 29333/30351 29368/30387 +f 29334/30352 29333/30351 29407/30428 +f 29407/30428 29369/30388 29334/30352 +f 29408/30429 29299/30317 29369/30388 +f 29408/30429 29370/30389 29299/30317 +f 29409/30430 29335/30353 29370/30389 +f 29336/30354 29410/30431 29337/30355 +f 29411/30432 29336/30354 29371/30390 +f 29300/30318 29409/30430 29371/30390 +f 29300/30318 29335/30353 29409/30430 +f 29373/30392 29270/30287 29372/30391 +f 29372/30391 29337/30355 29412/30433 +f 29302/30320 29373/30392 29413/30434 +f 29374/30393 29378/30397 29207/30221 +f 29339/30357 29375/30394 29414/30435 +f 29415/30436 29375/30394 29302/30320 +f 29376/30395 29303/30321 29377/30396 +f 29340/30358 29416/30437 29377/30396 +f 29378/30397 29417/30438 29341/30359 +f 29341/30359 29418/30439 29379/30398 +f 29340/30358 29379/30398 29416/30437 +f 29306/30324 29376/30395 29377/30396 +f 29380/30399 29306/30324 29377/30396 +f 29307/30325 29383/30402 29381/30400 +f 29343/30361 29382/30401 29419/30440 +f 29420/30441 29345/30363 29343/30361 +f 29385/30404 29382/30401 29344/30362 +f 29344/30362 29311/30329 29385/30404 +f 29345/30363 29421/30442 29346/30364 +f 29422/30443 29383/30402 29346/30364 +f 29347/30365 29384/30403 29423/30444 +f 29385/30404 29347/30365 29424/30445 +f 29387/30406 29386/30405 29312/30330 +f 29355/30374 29387/30406 29348/30366 +f 29390/30409 29280/30297 29388/30407 +f 29425/30446 29388/30407 29349/30367 +f 29349/30367 29351/30369 29426/30447 +f 29386/30405 29427/30448 29350/30368 +f 29350/30368 29427/30448 29389/30408 +f 29351/30369 29389/30408 29428/30449 +f 29392/30411 29352/30370 29390/30409 +f 29392/30411 29318/30336 29352/30370 +f 29320/30338 29429/30450 29391/30410 +f 29430/30451 29353/30371 29391/30410 +f 29319/30337 29392/30411 29393/30412 +f 29393/30412 29429/30450 29320/30338 +f 29401/30422 20118/30413 29354/30372 +f 20080/30414 29394/30415 29322/30340 +f 29387/30406 29355/30374 29394/30415 +f 29395/30416 29323/30341 29380/30399 +f 29395/30416 29397/30418 29325/30343 +f 29431/30452 29396/30417 29356/30375 +f 29356/30375 29357/30376 29397/30418 +f 29358/30377 29326/30344 29432/30453 +f 29432/30453 29326/30344 29398/30419 +f 29358/30377 29433/30454 29362/30381 +f 29359/30378 29396/30417 29398/30419 +f 29399/30420 29434/30455 29360/30379 +f 29435/30456 29361/30380 29360/30379 +f 29403/30424 29293/30311 29400/30421 +f 29436/30457 29400/30421 29361/30380 +f 29362/30381 29437/30458 29399/30420 +f 29363/30382 29364/30383 29401/30422 +f 29402/30423 29331/30349 29438/30459 +f 20094/30460 29364/30383 29402/30423 +f 29439/30461 29331/30349 29365/30384 +f 29403/30424 29440/30462 29365/30384 +f 29366/30385 29441/30463 29404/30425 +f 29381/30400 29441/30463 29366/30385 +f 29297/30315 29405/30426 29406/30427 +f 29442/30464 29405/30426 29367/30386 +f 29404/30425 29442/30464 29367/30386 +f 29407/30428 29333/30351 29406/30427 +f 29369/30388 29407/30428 29443/30465 +f 29369/30388 29443/30465 29408/30429 +f 29408/30429 29444/30466 29370/30389 +f 29445/30467 29409/30430 29370/30389 +f 29446/30468 29337/30355 29410/30431 +f 29336/30354 29411/30432 29410/30431 +f 29371/30390 29447/30469 29411/30432 +f 29371/30390 29409/30430 29445/30467 +f 29372/30391 29448/30470 29373/30392 +f 29412/30433 29337/30355 29446/30468 +f 29412/30433 29448/30470 29372/30391 +f 29413/30434 29449/30471 29302/30320 +f 29413/30434 29373/30392 29450/30472 +f 29374/30393 29451/30473 29378/30397 +f 29414/30435 29452/30474 29339/30357 +f 29453/30475 29414/30435 29375/30394 +f 29375/30394 29415/30436 29454/30476 +f 29302/30320 29455/30477 29415/30436 +f 29377/30396 29416/30437 29456/30478 +f 29417/30438 29378/30397 29457/30479 +f 29341/30359 29417/30438 29458/30480 +f 29418/30439 29459/30481 29379/30398 +f 29418/30439 29341/30359 29458/30480 +f 29416/30437 29379/30398 29460/30482 +f 29456/30478 29380/30399 29377/30396 +f 29381/30400 29383/30402 29461/30483 +f 29419/30440 29382/30401 29462/30484 +f 29343/30361 29419/30440 29420/30441 +f 29420/30441 29421/30442 29345/30363 +f 29382/30401 29385/30404 29462/30484 +f 29346/30364 29421/30442 29463/30485 +f 29422/30443 29464/30486 29383/30402 +f 29422/30443 29346/30364 29463/30485 +f 29465/30487 29347/30365 29423/30444 +f 29347/30365 29466/30488 29424/30445 +f 29385/30404 29424/30445 29462/30484 +f 29386/30405 29387/30406 29427/30448 +f 29425/30446 29390/30409 29388/30407 +f 29349/30367 29426/30447 29425/30446 +f 29428/30449 29426/30447 29351/30369 +f 29427/30448 29467/30489 29389/30408 +f 29389/30408 29467/30489 29428/30449 +f 29390/30409 29468/30490 29392/30411 +f 29430/30451 29391/30410 29429/30450 +f 29468/30490 29393/30412 29392/30411 +f 29429/30450 29393/30412 29469/30491 +f 29401/30422 20094/30460 20118/30413 +f 20080/30414 20081/30492 29394/30415 +f 29427/30448 29387/30406 29394/30415 +f 29395/30416 29380/30399 29470/30493 +f 29470/30493 29397/30418 29395/30416 +f 29433/30454 29396/30417 29431/30452 +f 29431/30452 29356/30375 29471/30494 +f 29471/30494 29356/30375 29397/30418 +f 29432/30453 29433/30454 29358/30377 +f 29398/30419 29396/30417 29432/30453 +f 29472/30495 29362/30381 29433/30454 +f 29473/30496 29434/30455 29399/30420 +f 29360/30379 29434/30455 29435/30456 +f 29435/30456 29436/30457 29361/30380 +f 29403/30424 29400/30421 29474/30497 +f 29400/30421 29436/30457 29474/30497 +f 29399/30420 29437/30458 29473/30496 +f 29362/30381 29472/30495 29437/30458 +f 29364/30383 20094/30460 29401/30422 +f 29438/30459 29331/30349 29439/30461 +f 29402/30423 29438/30459 29475/30498 +f 29402/30423 20048/30499 20094/30460 +f 29365/30384 29476/30500 29439/30461 +f 29403/30424 29474/30497 29440/30462 +f 29365/30384 29440/30462 29476/30500 +f 29404/30425 29441/30463 29442/30464 +f 29441/30463 29381/30400 29461/30483 +f 29406/30427 29405/30426 29442/30464 +f 29407/30428 29406/30427 29477/30501 +f 29443/30465 29407/30428 29478/30502 +f 29443/30465 29479/30503 29408/30429 +f 29408/30429 29479/30503 29444/30466 +f 29370/30389 29444/30466 29445/30467 +f 29446/30468 29410/30431 29480/30504 +f 29410/30431 29411/30432 29480/30504 +f 29411/30432 29447/30469 29480/30504 +f 29447/30469 29371/30390 29445/30467 +f 29373/30392 29448/30470 29481/30505 +f 29482/30506 29412/30433 29446/30468 +f 29448/30470 29412/30433 29483/30507 +f 29302/30320 29449/30471 29484/30508 +f 29449/30471 29413/30434 29485/30509 +f 29486/30510 29450/30472 29373/30392 +f 29450/30472 29487/30511 29413/30434 +f 29374/30393 29488/30512 29451/30473 +f 29451/30473 29457/30479 29378/30397 +f 29452/30474 29488/30512 29339/30357 +f 29489/30513 29452/30474 29414/30435 +f 29454/30476 29453/30475 29375/30394 +f 29490/30514 29414/30435 29453/30475 +f 29415/30436 29491/30515 29454/30476 +f 29415/30436 29455/30477 29492/30516 +f 29302/30320 29493/30517 29455/30477 +f 29494/30518 29456/30478 29416/30437 +f 29495/30519 29417/30438 29457/30479 +f 29458/30480 29417/30438 29495/30519 +f 29496/30520 29459/30481 29418/30439 +f 29460/30482 29379/30398 29459/30481 +f 29497/30521 29418/30439 29458/30480 +f 29460/30482 29494/30518 29416/30437 +f 29380/30399 29456/30478 29470/30493 +f 29464/30486 29461/30483 29383/30402 +f 29498/30522 29419/30440 29462/30484 +f 29498/30522 29420/30441 29419/30440 +f 29421/30442 29420/30441 29499/30523 +f 29463/30485 29421/30442 29500/30524 +f 29422/30443 29501/30525 29464/30486 +f 29422/30443 29463/30485 29500/30524 +f 29347/30365 29465/30487 29502/30526 +f 29423/30444 29503/30527 29465/30487 +f 29502/30526 29466/30488 29347/30365 +f 29462/30484 29424/30445 29466/30488 +f 29504/30528 29390/30409 29425/30446 +f 29505/30529 29425/30446 29426/30447 +f 29505/30529 29426/30447 29428/30449 +f 29467/30489 29427/30448 29506/30530 +f 29467/30489 29507/30531 29428/30449 +f 29468/30490 29390/30409 29504/30528 +f 29508/30532 29430/30451 29429/30450 +f 29393/30412 29468/30490 29469/30491 +f 29469/30491 29508/30532 29429/30450 +f 20081/30492 29506/30530 29394/30415 +f 29394/30415 29506/30530 29427/30448 +f 29396/30417 29433/30454 29432/30453 +f 29431/30452 29509/30533 29433/30454 +f 29510/30534 29431/30452 29471/30494 +f 29397/30418 29511/30535 29471/30494 +f 29509/30533 29472/30495 29433/30454 +f 29473/30496 29512/30536 29434/30455 +f 29513/30537 29435/30456 29434/30455 +f 29436/30457 29435/30456 29514/30538 +f 29514/30538 29474/30497 29436/30457 +f 29473/30496 29437/30458 29515/30539 +f 29515/30539 29437/30458 29472/30495 +f 29438/30459 29439/30461 29516/30540 +f 29402/30423 29475/30498 20048/30499 +f 29438/30459 29517/30541 29475/30498 +f 29518/30542 29439/30461 29476/30500 +f 29440/30462 29474/30497 29514/30538 +f 29440/30462 29519/30543 29476/30500 +f 29441/30463 29520/30544 29442/30464 +f 29461/30483 29464/30486 29441/30463 +f 29520/30544 29406/30427 29442/30464 +f 29477/30501 29406/30427 29521/30545 +f 29407/30428 29477/30501 29522/30546 +f 29522/30546 29478/30502 29407/30428 +f 29479/30503 29443/30465 29478/30502 +f 29523/30547 29444/30466 29479/30503 +f 29524/30548 29445/30467 29444/30466 +f 29480/30504 29482/30506 29446/30468 +f 29447/30469 29525/30549 29480/30504 +f 29524/30548 29447/30469 29445/30467 +f 29526/30550 29481/30505 29448/30470 +f 29486/30510 29373/30392 29481/30505 +f 29482/30506 29483/30507 29412/30433 +f 29483/30507 29527/30551 29448/30470 +f 29484/30508 29493/30517 29302/30320 +f 29449/30471 29485/30509 29528/30552 +f 29487/30511 29485/30509 29413/30434 +f 29529/30553 29450/30472 29486/30510 +f 29530/30554 29487/30511 29450/30472 +f 29451/30473 29488/30512 29452/30474 +f 29457/30479 29451/30473 29531/30555 +f 29452/30474 29489/30513 29532/30556 +f 29490/30514 29489/30513 29414/30435 +f 29533/30557 29453/30475 29454/30476 +f 29453/30475 29534/30558 29490/30514 +f 29535/30559 29491/30515 29415/30436 +f 29491/30515 29536/30560 29454/30476 +f 29492/30516 29537/30561 29415/30436 +f 29455/30477 29538/30562 29492/30516 +f 29470/30493 29456/30478 29494/30518 +f 29457/30479 29531/30555 29495/30519 +f 29495/30519 29539/30563 29458/30480 +f 29459/30481 29496/30520 29540/30564 +f 29496/30520 29418/30439 29497/30521 +f 29458/30480 29539/30563 29497/30521 +f 29462/30484 29541/30565 29498/30522 +f 29420/30441 29498/30522 29499/30523 +f 29421/30442 29499/30523 29542/30566 +f 29500/30524 29421/30442 29542/30566 +f 29501/30525 29520/30544 29464/30486 +f 29543/30567 29501/30525 29422/30443 +f 29543/30567 29422/30443 29500/30524 +f 29465/30487 29544/30568 29502/30526 +f 29503/30527 29545/30569 29465/30487 +f 29546/30570 29503/30527 29423/30444 +f 29547/30571 29466/30488 29502/30526 +f 29462/30484 29466/30488 29541/30565 +f 29425/30446 29505/30529 29504/30528 +f 29428/30449 29548/30572 29505/30529 +f 29549/30573 29467/30489 29506/30530 +f 29507/30531 29467/30489 29549/30573 +f 29428/30449 29507/30531 29548/30572 +f 29504/30528 29550/30574 29468/30490 +f 29469/30491 29468/30490 29550/30574 +f 29551/30575 29508/30532 29469/30491 +f 20081/30492 17180/30576 29506/30530 +f 29431/30452 29510/30534 29509/30533 +f 29511/30535 29510/30534 29471/30494 +f 29552/30577 29472/30495 29509/30533 +f 29473/30496 29553/30578 29512/30536 +f 29434/30455 29512/30536 29513/30537 +f 29435/30456 29513/30537 29514/30538 +f 29472/30495 29552/30577 29515/30539 +f 29518/30542 29516/30540 29439/30461 +f 29516/30540 29517/30541 29438/30459 +f 20023/30579 20048/30499 29475/30498 +f 29517/30541 19993/30580 29475/30498 +f 29518/30542 29476/30500 29554/30581 +f 29514/30538 29555/30582 29440/30462 +f 29476/30500 29519/30543 29554/30581 +f 29556/30583 29519/30543 29440/30462 +f 29520/30544 29441/30463 29464/30486 +f 29406/30427 29520/30544 29521/30545 +f 29477/30501 29521/30545 29557/30584 +f 29477/30501 29557/30584 29522/30546 +f 29522/30546 29558/30585 29478/30502 +f 29479/30503 29478/30502 29523/30547 +f 29559/30586 29444/30466 29523/30547 +f 29444/30466 29559/30586 29524/30548 +f 29480/30504 29560/30587 29482/30506 +f 29524/30548 29525/30549 29447/30469 +f 29525/30549 29560/30587 29480/30504 +f 29561/30588 29481/30505 29526/30550 +f 29448/30470 29527/30551 29526/30550 +f 29561/30588 29486/30510 29481/30505 +f 29483/30507 29482/30506 29562/30589 +f 29527/30551 29483/30507 29562/30589 +f 29449/30471 29528/30552 29563/30590 +f 29485/30509 29564/30591 29528/30552 +f 29487/30511 29564/30591 29485/30509 +f 29529/30553 29530/30554 29450/30472 +f 29486/30510 29565/30592 29529/30553 +f 29487/30511 29530/30554 29564/30591 +f 29531/30555 29451/30473 29452/30474 +f 29489/30513 29531/30555 29532/30556 +f 29452/30474 29532/30556 29531/30555 +f 29534/30558 29489/30513 29490/30514 +f 29533/30557 29534/30558 29453/30475 +f 29535/30559 29566/30593 29491/30515 +f 29537/30561 29535/30559 29415/30436 +f 29491/30515 29567/30594 29536/30560 +f 29538/30562 29537/30561 29492/30516 +f 29538/30562 29455/30477 29568/30595 +f 29495/30519 29531/30555 29489/30513 +f 29539/30563 29495/30519 29489/30513 +f 29540/30564 29496/30520 29569/30596 +f 29496/30520 29497/30521 29570/30597 +f 29497/30521 29539/30563 29570/30597 +f 29571/30598 29498/30522 29541/30565 +f 29499/30523 29498/30522 29571/30598 +f 29499/30523 29571/30598 29542/30566 +f 29500/30524 29542/30566 29572/30599 +f 29501/30525 29521/30545 29520/30544 +f 29501/30525 29543/30567 29573/30600 +f 29572/30599 29543/30567 29500/30524 +f 29544/30568 29465/30487 29545/30569 +f 29574/30601 29502/30526 29544/30568 +f 29503/30527 29575/30602 29545/30569 +f 29546/30570 29576/30603 29503/30527 +f 29547/30571 29541/30565 29466/30488 +f 29547/30571 29502/30526 29574/30601 +f 29505/30529 29577/30604 29504/30528 +f 29577/30604 29505/30529 29548/30572 +f 29549/30573 29506/30530 17180/30576 +f 29578/30605 29507/30531 29549/30573 +f 29548/30572 29507/30531 29578/30605 +f 29579/30606 29550/30574 29504/30528 +f 29469/30491 29550/30574 29580/30607 +f 29551/30575 29581/30608 29508/30532 +f 29469/30491 29580/30607 29551/30575 +f 29509/30533 29510/30534 29582/30609 +f 29582/30609 29510/30534 29511/30535 +f 29583/30610 29552/30577 29509/30533 +f 29553/30578 29473/30496 29584/30611 +f 29553/30578 29513/30537 29512/30536 +f 29514/30538 29513/30537 29555/30582 +f 29583/30610 29515/30539 29552/30577 +f 29518/30542 29517/30541 29516/30540 +f 20023/30579 29475/30498 19993/30580 +f 19993/30580 29517/30541 29585/30612 +f 29554/30581 29586/30613 29518/30542 +f 29440/30462 29555/30582 29556/30583 +f 29554/30581 29519/30543 29586/30613 +f 29556/30583 29586/30613 29519/30543 +f 29521/30545 29587/30614 29557/30584 +f 29557/30584 29588/30615 29522/30546 +f 29523/30547 29478/30502 29558/30585 +f 29559/30586 29523/30547 29589/30616 +f 29590/30617 29524/30548 29559/30586 +f 29482/30506 29560/30587 29562/30589 +f 29525/30549 29524/30548 29590/30617 +f 29590/30617 29560/30587 29525/30549 +f 29527/30551 29561/30588 29526/30550 +f 29561/30588 29591/30618 29486/30510 +f 29591/30618 29527/30551 29562/30589 +f 29563/30590 29528/30552 29592/30619 +f 29449/30471 29563/30590 29593/30620 +f 29594/30621 29528/30552 29564/30591 +f 29595/30622 29530/30554 29529/30553 +f 29486/30510 29591/30618 29565/30592 +f 29595/30622 29529/30553 29565/30592 +f 29530/30554 29596/30623 29564/30591 +f 29539/30563 29489/30513 29534/30558 +f 29570/30597 29534/30558 29533/30557 +f 29566/30593 29567/30594 29491/30515 +f 29566/30593 29535/30559 29597/30624 +f 29535/30559 29537/30561 29597/30624 +f 29536/30560 29567/30594 29598/30625 +f 29538/30562 29599/30626 29537/30561 +f 29568/30595 29455/30477 29600/30627 +f 29599/30626 29538/30562 29568/30595 +f 29570/30597 29569/30596 29496/30520 +f 29534/30558 29570/30597 29539/30563 +f 29541/30565 29601/30628 29571/30598 +f 29542/30566 29571/30598 29572/30599 +f 29521/30545 29501/30525 29602/30629 +f 29573/30600 29543/30567 29572/30599 +f 29573/30600 29602/30629 29501/30525 +f 29544/30568 29545/30569 29574/30601 +f 29575/30602 29603/30630 29545/30569 +f 29604/30631 29575/30602 29503/30527 +f 29576/30603 29604/30631 29503/30527 +f 29546/30570 29605/30632 29576/30603 +f 29541/30565 29547/30571 29601/30628 +f 29574/30601 29601/30628 29547/30571 +f 29504/30528 29577/30604 29579/30606 +f 29578/30605 29577/30604 29548/30572 +f 17180/30576 17177/30633 29549/30573 +f 29549/30573 29606/30634 29578/30605 +f 29579/30606 29607/30635 29550/30574 +f 29550/30574 29608/30636 29580/30607 +f 29609/30637 29508/30532 29581/30608 +f 29581/30608 29551/30575 29610/30638 +f 29610/30638 29551/30575 29580/30607 +f 29582/30609 29583/30610 29509/30533 +f 29584/30611 29611/30639 29553/30578 +f 29513/30537 29553/30578 29612/30640 +f 29613/30641 29555/30582 29513/30537 +f 29517/30541 29518/30542 29585/30612 +f 29614/30642 19993/30580 29585/30612 +f 29614/30642 29518/30542 29586/30613 +f 29555/30582 29615/30643 29556/30583 +f 29586/30613 29556/30583 29615/30643 +f 29587/30614 29521/30545 29602/30629 +f 29588/30615 29557/30584 29587/30614 +f 29589/30616 29523/30547 29558/30585 +f 29616/30644 29559/30586 29589/30616 +f 29590/30617 29559/30586 29616/30644 +f 29560/30587 29617/30645 29562/30589 +f 29560/30587 29590/30617 29618/30646 +f 29591/30618 29561/30588 29527/30551 +f 29562/30589 29617/30645 29591/30618 +f 29592/30619 29619/30647 29563/30590 +f 29528/30552 29594/30621 29592/30619 +f 29593/30620 29563/30590 29619/30647 +f 29593/30620 29620/30648 29449/30471 +f 29564/30591 29596/30623 29594/30621 +f 29596/30623 29530/30554 29595/30622 +f 29621/30649 29565/30592 29591/30618 +f 29565/30592 29622/30650 29595/30622 +f 29623/30651 29570/30597 29533/30557 +f 29567/30594 29566/30593 29624/30652 +f 29625/30653 29566/30593 29597/30624 +f 29537/30561 29599/30626 29597/30624 +f 29536/30560 29598/30625 29626/30654 +f 29598/30625 29567/30594 29624/30652 +f 29568/30595 29600/30627 29627/30655 +f 29628/30656 29599/30626 29568/30595 +f 29569/30596 29570/30597 29623/30651 +f 29571/30598 29601/30628 29629/30657 +f 29571/30598 29630/30658 29572/30599 +f 29631/30659 29573/30600 29572/30599 +f 29573/30600 29632/30660 29602/30629 +f 29545/30569 29603/30630 29574/30601 +f 29575/30602 29633/30661 29603/30630 +f 29604/30631 29634/30662 29575/30602 +f 29635/30663 29604/30631 29576/30603 +f 29576/30603 29605/30632 29636/30664 +f 29637/30665 29605/30632 29546/30570 +f 29574/30601 29603/30630 29601/30628 +f 29579/30606 29577/30604 29607/30635 +f 29607/30635 29577/30604 29578/30605 +f 29606/30634 29549/30573 17177/30633 +f 29578/30605 29606/30634 29607/30635 +f 29607/30635 29608/30636 29550/30574 +f 29580/30607 29608/30636 29610/30638 +f 29508/30532 29609/30637 29638/30666 +f 29639/30667 29609/30637 29581/30608 +f 29610/30638 29639/30667 29581/30608 +f 29553/30578 29611/30639 29640/30668 +f 29641/30669 29611/30639 29584/30611 +f 29640/30668 29612/30640 29553/30578 +f 29513/30537 29612/30640 29613/30641 +f 29613/30641 29642/30670 29555/30582 +f 29518/30542 29614/30642 29585/30612 +f 29643/30671 19993/30580 29614/30642 +f 29614/30642 29586/30613 29644/30672 +f 29555/30582 29642/30670 29615/30643 +f 29586/30613 29615/30643 29644/30672 +f 29632/30660 29587/30614 29602/30629 +f 29588/30615 29587/30614 29645/30673 +f 29590/30617 29616/30644 29646/30674 +f 29617/30645 29560/30587 29618/30646 +f 29647/30675 29618/30646 29590/30617 +f 29648/30676 29591/30618 29617/30645 +f 29649/30677 29619/30647 29592/30619 +f 29594/30621 29650/30678 29592/30619 +f 29651/30679 29593/30620 29619/30647 +f 29593/30620 29652/30680 29620/30648 +f 29595/30622 29594/30621 29596/30623 +f 29565/30592 29621/30649 29653/30681 +f 29648/30676 29621/30649 29591/30618 +f 29622/30650 29565/30592 29653/30681 +f 29595/30622 29622/30650 29650/30678 +f 29624/30652 29566/30593 29654/30682 +f 29655/30683 29625/30653 29597/30624 +f 29566/30593 29625/30653 29656/30684 +f 29599/30626 29657/30685 29597/30624 +f 29658/30686 29626/30654 29598/30625 +f 29536/30560 29626/30654 29659/30687 +f 29654/30682 29598/30625 29624/30652 +f 29600/30627 29660/30688 29627/30655 +f 29661/30689 29568/30595 29627/30655 +f 29628/30656 29657/30685 29599/30626 +f 29662/30690 29628/30656 29568/30595 +f 29601/30628 29603/30630 29629/30657 +f 29630/30658 29571/30598 29629/30657 +f 29572/30599 29630/30658 29631/30659 +f 29632/30660 29573/30600 29631/30659 +f 29634/30662 29633/30661 29575/30602 +f 29603/30630 29633/30661 29629/30657 +f 29634/30662 29604/30631 29663/30691 +f 29663/30691 29604/30631 29635/30663 +f 29576/30603 29664/30692 29635/30663 +f 29636/30664 29605/30632 29637/30665 +f 29636/30664 29664/30692 29576/30603 +f 29637/30665 29546/30570 29665/30693 +f 29606/30634 17177/30633 17181/30694 +f 29666/30695 29607/30635 29606/30634 +f 29667/30696 29608/30636 29607/30635 +f 29608/30636 29666/30695 29610/30638 +f 29609/30637 29668/30697 29638/30666 +f 29609/30637 29639/30667 29669/30698 +f 29670/30699 29639/30667 29610/30638 +f 29640/30668 29611/30639 29671/30700 +f 29672/30701 29611/30639 29641/30669 +f 29584/30611 29673/30702 29641/30669 +f 29612/30640 29640/30668 29674/30703 +f 29613/30641 29612/30640 29675/30704 +f 29613/30641 29676/30705 29642/30670 +f 29677/30706 29643/30671 29614/30642 +f 19972/30707 19993/30580 29643/30671 +f 29614/30642 29644/30672 29678/30708 +f 29678/30708 29615/30643 29642/30670 +f 29644/30672 29615/30643 29678/30708 +f 29645/30673 29587/30614 29632/30660 +f 29588/30615 29645/30673 29679/30709 +f 29646/30674 29680/30710 29590/30617 +f 29646/30674 29616/30644 29681/30711 +f 29617/30645 29618/30646 29682/30712 +f 29618/30646 29647/30675 29682/30712 +f 29680/30710 29647/30675 29590/30617 +f 29648/30676 29617/30645 29682/30712 +f 29683/30713 29619/30647 29649/30677 +f 29592/30619 29684/30714 29649/30677 +f 29650/30678 29684/30714 29592/30619 +f 29650/30678 29594/30621 29595/30622 +f 29651/30679 29619/30647 29683/30713 +f 29593/30620 29651/30679 29652/30680 +f 29652/30680 29685/30715 29620/30648 +f 29653/30681 29621/30649 29686/30716 +f 29621/30649 29648/30676 29686/30716 +f 29653/30681 29687/30717 29622/30650 +f 29650/30678 29622/30650 29684/30714 +f 29566/30593 29656/30684 29654/30682 +f 29657/30685 29655/30683 29597/30624 +f 29688/30718 29626/30654 29658/30686 +f 29658/30686 29598/30625 29689/30719 +f 29626/30654 29690/30720 29659/30687 +f 29691/30721 29536/30560 29659/30687 +f 29654/30682 29689/30719 29598/30625 +f 29660/30688 29600/30627 29692/30722 +f 29627/30655 29660/30688 29693/30723 +f 29568/30595 29661/30689 29662/30690 +f 29693/30723 29661/30689 29627/30655 +f 29657/30685 29628/30656 29694/30724 +f 29628/30656 29662/30690 29695/30725 +f 29696/30726 29630/30658 29629/30657 +f 29630/30658 29696/30726 29631/30659 +f 29697/30727 29632/30660 29631/30659 +f 29634/30662 29698/30728 29633/30661 +f 29633/30661 29699/30729 29629/30657 +f 29698/30728 29634/30662 29663/30691 +f 29700/30730 29663/30691 29635/30663 +f 29635/30663 29664/30692 29700/30730 +f 29637/30665 29701/30731 29636/30664 +f 29636/30664 29702/30732 29664/30692 +f 29703/30733 29665/30693 29546/30570 +f 29665/30693 29701/30731 29637/30665 +f 29704/30734 29606/30634 17181/30694 +f 29667/30696 29607/30635 29666/30695 +f 29704/30734 29666/30695 29606/30634 +f 29608/30636 29667/30696 29666/30695 +f 29666/30695 29670/30699 29610/30638 +f 29668/30697 29705/30735 29638/30666 +f 29609/30637 29669/30698 29668/30697 +f 29669/30698 29639/30667 29706/30736 +f 29670/30699 29706/30736 29639/30667 +f 29671/30700 29611/30639 29672/30701 +f 29671/30700 29707/30737 29640/30668 +f 29672/30701 29641/30669 29708/30738 +f 29708/30738 29641/30669 29673/30702 +f 29707/30737 29674/30703 29640/30668 +f 29612/30640 29674/30703 29709/30739 +f 29709/30739 29675/30704 29612/30640 +f 29710/30740 29613/30641 29675/30704 +f 29613/30641 29710/30740 29676/30705 +f 29711/30741 29642/30670 29676/30705 +f 29614/30642 29678/30708 29677/30706 +f 29712/30742 29643/30671 29677/30706 +f 19932/30743 19972/30707 29643/30671 +f 29642/30670 29713/30744 29678/30708 +f 29632/30660 29714/30745 29645/30673 +f 29714/30745 29679/30709 29645/30673 +f 29588/30615 29679/30709 29715/30746 +f 29716/30747 29680/30710 29646/30674 +f 29681/30711 29716/30747 29646/30674 +f 29682/30712 29647/30675 29717/30748 +f 29718/30749 29647/30675 29680/30710 +f 29682/30712 29717/30748 29648/30676 +f 29719/30750 29649/30677 29684/30714 +f 29683/30713 29685/30715 29651/30679 +f 29685/30715 29652/30680 29651/30679 +f 29685/30715 29720/30751 29620/30648 +f 29686/30716 29721/30752 29653/30681 +f 29686/30716 29648/30676 29717/30748 +f 29687/30717 29684/30714 29622/30650 +f 29722/30753 29687/30717 29653/30681 +f 29654/30682 29656/30684 29689/30719 +f 29723/30754 29688/30718 29658/30686 +f 29690/30720 29626/30654 29688/30718 +f 29658/30686 29689/30719 29723/30754 +f 29690/30720 29724/30755 29659/30687 +f 29659/30687 29724/30755 29691/30721 +f 29692/30722 29600/30627 29725/30756 +f 29726/30757 29660/30688 29692/30722 +f 29660/30688 29726/30757 29693/30723 +f 29662/30690 29661/30689 29727/30758 +f 29661/30689 29693/30723 29728/30759 +f 29628/30656 29695/30725 29694/30724 +f 29729/30760 29657/30685 29694/30724 +f 29695/30725 29662/30690 29730/30761 +f 29699/30729 29696/30726 29629/30657 +f 29696/30726 29697/30727 29631/30659 +f 29714/30745 29632/30660 29697/30727 +f 29698/30728 29699/30729 29633/30661 +f 29663/30691 29731/30762 29698/30728 +f 29700/30730 29732/30763 29663/30691 +f 29733/30764 29700/30730 29664/30692 +f 29734/30765 29636/30664 29701/30731 +f 29733/30764 29664/30692 29702/30732 +f 29734/30765 29702/30732 29636/30664 +f 29735/30766 29665/30693 29703/30733 +f 29736/30767 29701/30731 29665/30693 +f 17196/30768 29704/30734 17181/30694 +f 29704/30734 29670/30699 29666/30695 +f 29706/30736 29705/30735 29668/30697 +f 29669/30698 29706/30736 29668/30697 +f 29706/30736 29670/30699 29737/30769 +f 29672/30701 29738/30770 29671/30700 +f 29671/30700 29739/30771 29707/30737 +f 29738/30770 29672/30701 29708/30738 +f 29708/30738 29673/30702 29740/30772 +f 29741/30773 29674/30703 29707/30737 +f 29742/30774 29709/30739 29674/30703 +f 29675/30704 29709/30739 29710/30740 +f 29676/30705 29710/30740 29742/30774 +f 29676/30705 29743/30775 29711/30741 +f 29713/30744 29642/30670 29711/30741 +f 29677/30706 29678/30708 29744/30776 +f 29712/30742 19932/30743 29643/30671 +f 29745/30777 29712/30742 29677/30706 +f 29713/30744 29744/30776 29678/30708 +f 29746/30778 29679/30709 29714/30745 +f 29679/30709 29747/30779 29715/30746 +f 29718/30749 29680/30710 29716/30747 +f 29718/30749 29717/30748 29647/30675 +f 29684/30714 29687/30717 29719/30750 +f 29683/30713 29720/30751 29685/30715 +f 29686/30716 29748/30780 29721/30752 +f 29721/30752 29749/30781 29653/30681 +f 29717/30748 29748/30780 29686/30716 +f 29653/30681 29749/30781 29722/30753 +f 29687/30717 29722/30753 29749/30781 +f 29750/30782 29689/30719 29656/30684 +f 29723/30754 29689/30719 29750/30782 +f 29690/30720 29751/30783 29724/30755 +f 29692/30722 29725/30756 29752/30784 +f 29726/30757 29692/30722 29752/30784 +f 29693/30723 29726/30757 29753/30785 +f 29730/30761 29662/30690 29727/30758 +f 29661/30689 29728/30759 29727/30758 +f 29693/30723 29754/30786 29728/30759 +f 29695/30725 29755/30787 29694/30724 +f 29694/30724 29755/30787 29729/30760 +f 29695/30725 29730/30761 29756/30788 +f 29697/30727 29696/30726 29699/30729 +f 29757/30789 29714/30745 29697/30727 +f 29699/30729 29698/30728 29731/30762 +f 29758/30790 29731/30762 29663/30691 +f 29733/30764 29732/30763 29700/30730 +f 29732/30763 29759/30791 29663/30691 +f 29760/30792 29734/30765 29701/30731 +f 29702/30732 29734/30765 29733/30764 +f 29761/30793 29735/30766 29703/30733 +f 29735/30766 29762/30794 29665/30693 +f 29736/30767 29760/30792 29701/30731 +f 29762/30794 29736/30767 29665/30693 +f 29737/30769 29704/30734 17196/30768 +f 29670/30699 29704/30734 29737/30769 +f 29671/30700 29738/30770 29739/30771 +f 29763/30795 29707/30737 29739/30771 +f 29764/30796 29738/30770 29708/30738 +f 29673/30702 29765/30797 29740/30772 +f 29740/30772 29766/30798 29708/30738 +f 29674/30703 29741/30773 29742/30774 +f 29707/30737 29763/30795 29741/30773 +f 29709/30739 29742/30774 29710/30740 +f 29676/30705 29742/30774 29743/30775 +f 29767/30799 29711/30741 29743/30775 +f 29711/30741 29744/30776 29713/30744 +f 29744/30776 29745/30777 29677/30706 +f 19932/30743 29712/30742 19914/30800 +f 29712/30742 29745/30777 29768/30801 +f 29679/30709 29746/30778 29747/30779 +f 29746/30778 29714/30745 29769/30802 +f 29770/30803 29718/30749 29716/30747 +f 29717/30748 29718/30749 29771/30804 +f 29687/30717 29772/30805 29719/30750 +f 29748/30780 29771/30804 29721/30752 +f 29749/30781 29721/30752 29773/30806 +f 29748/30780 29717/30748 29771/30804 +f 29687/30717 29749/30781 29774/30807 +f 29752/30784 29753/30785 29726/30757 +f 29753/30785 29754/30786 29693/30723 +f 29728/30759 29730/30761 29727/30758 +f 29728/30759 29754/30786 29775/30808 +f 29756/30788 29755/30787 29695/30725 +f 29755/30787 29776/30809 29729/30760 +f 29730/30761 29775/30808 29756/30788 +f 29731/30762 29697/30727 29699/30729 +f 29777/30810 29714/30745 29757/30789 +f 29697/30727 29759/30791 29757/30789 +f 29759/30791 29731/30762 29758/30790 +f 29663/30691 29759/30791 29758/30790 +f 29734/30765 29732/30763 29733/30764 +f 29732/30763 29778/30811 29759/30791 +f 29760/30792 29779/30812 29734/30765 +f 29780/30813 29735/30766 29761/30793 +f 29781/30814 29762/30794 29735/30766 +f 29782/30815 29760/30792 29736/30767 +f 29783/30816 29736/30767 29762/30794 +f 29739/30771 29738/30770 29784/30817 +f 29739/30771 29785/30818 29763/30795 +f 29784/30817 29738/30770 29764/30796 +f 29766/30798 29764/30796 29708/30738 +f 29765/30797 29786/30819 29740/30772 +f 29786/30819 29766/30798 29740/30772 +f 29787/30820 29742/30774 29741/30773 +f 29788/30821 29741/30773 29763/30795 +f 29787/30820 29743/30775 29742/30774 +f 29767/30799 29743/30775 29789/30822 +f 29711/30741 29767/30799 29744/30776 +f 29744/30776 29767/30799 29745/30777 +f 19914/30800 29712/30742 29768/30801 +f 29768/30801 29745/30777 29790/30823 +f 29791/30824 29747/30779 29746/30778 +f 29777/30810 29769/30802 29714/30745 +f 29746/30778 29769/30802 29792/30825 +f 29793/30826 29718/30749 29770/30803 +f 29771/30804 29718/30749 29793/30826 +f 29772/30805 29687/30717 29794/30827 +f 29795/30828 29719/30750 29772/30805 +f 29773/30806 29721/30752 29771/30804 +f 29774/30807 29749/30781 29773/30806 +f 29796/30829 29687/30717 29774/30807 +f 29797/30830 29753/30785 29752/30784 +f 29753/30785 29798/30831 29754/30786 +f 29775/30808 29730/30761 29728/30759 +f 29754/30786 29799/30832 29775/30808 +f 29755/30787 29756/30788 29800/30833 +f 29801/30834 29776/30809 29755/30787 +f 29775/30808 29802/30835 29756/30788 +f 29731/30762 29759/30791 29697/30727 +f 29803/30836 29777/30810 29757/30789 +f 29759/30791 29778/30811 29757/30789 +f 29779/30812 29732/30763 29734/30765 +f 29778/30811 29732/30763 29804/30837 +f 29779/30812 29760/30792 29782/30815 +f 29735/30766 29780/30813 29781/30814 +f 29805/30838 29780/30813 29761/30793 +f 29806/30839 29762/30794 29781/30814 +f 29782/30815 29736/30767 29807/30840 +f 29807/30840 29736/30767 29783/30816 +f 29762/30794 29806/30839 29783/30816 +f 29784/30817 29785/30818 29739/30771 +f 29763/30795 29785/30818 29808/30841 +f 29784/30817 29764/30796 29809/30842 +f 29766/30798 29786/30819 29764/30796 +f 29786/30819 29765/30797 29810/30843 +f 29741/30773 29811/30844 29787/30820 +f 29788/30821 29811/30844 29741/30773 +f 29808/30841 29788/30821 29763/30795 +f 29787/30820 29812/30845 29743/30775 +f 29789/30822 29813/30846 29767/30799 +f 29814/30847 29789/30822 29743/30775 +f 29767/30799 29813/30846 29745/30777 +f 19912/30848 19914/30800 29768/30801 +f 29745/30777 29813/30846 29790/30823 +f 29790/30823 29815/30849 29768/30801 +f 29746/30778 29792/30825 29791/30824 +f 29769/30802 29777/30810 29816/30850 +f 29769/30802 29817/30851 29792/30825 +f 29770/30803 29818/30852 29793/30826 +f 29773/30806 29771/30804 29793/30826 +f 29794/30827 29687/30717 29796/30829 +f 29772/30805 29794/30827 29819/30853 +f 29820/30854 29795/30828 29772/30805 +f 29821/30855 29774/30807 29773/30806 +f 29822/30856 29796/30829 29774/30807 +f 29753/30785 29797/30830 29798/30831 +f 29798/30831 29823/30857 29754/30786 +f 29799/30832 29754/30786 29823/30857 +f 29799/30832 29824/30858 29775/30808 +f 29756/30788 29802/30835 29800/30833 +f 29800/30833 29801/30834 29755/30787 +f 29776/30809 29801/30834 29825/30859 +f 29824/30858 29802/30835 29775/30808 +f 29826/30860 29777/30810 29803/30836 +f 29757/30789 29778/30811 29803/30836 +f 29804/30837 29732/30763 29779/30812 +f 29826/30860 29778/30811 29804/30837 +f 29779/30812 29782/30815 29804/30837 +f 29780/30813 29827/30861 29781/30814 +f 29780/30813 29805/30838 29828/30862 +f 29761/30793 29829/30863 29805/30838 +f 29781/30814 29827/30861 29806/30839 +f 29830/30864 29782/30815 29807/30840 +f 29783/30816 29831/30865 29807/30840 +f 29806/30839 29831/30865 29783/30816 +f 29832/30866 29785/30818 29784/30817 +f 29808/30841 29785/30818 29833/30867 +f 29809/30842 29834/30868 29784/30817 +f 29835/30869 29809/30842 29764/30796 +f 29786/30819 29836/30870 29764/30796 +f 29810/30843 29836/30870 29786/30819 +f 29787/30820 29811/30844 29812/30845 +f 29811/30844 29788/30821 29837/30871 +f 29837/30871 29788/30821 29808/30841 +f 29814/30847 29743/30775 29812/30845 +f 29838/30872 29813/30846 29789/30822 +f 29814/30847 19790/30873 29789/30822 +f 29839/30874 19912/30848 29768/30801 +f 29813/30846 29815/30849 29790/30823 +f 29815/30849 29839/30874 29768/30801 +f 29791/30824 29792/30825 29840/30875 +f 29817/30851 29769/30802 29816/30850 +f 29777/30810 29841/30876 29816/30850 +f 29792/30825 29817/30851 29840/30875 +f 29818/30852 29821/30855 29793/30826 +f 29821/30855 29773/30806 29793/30826 +f 29796/30829 29822/30856 29794/30827 +f 29819/30853 29820/30854 29772/30805 +f 29794/30827 29842/30877 29819/30853 +f 29774/30807 29821/30855 29843/30878 +f 29822/30856 29774/30807 29843/30878 +f 29844/30879 29798/30831 29797/30830 +f 29823/30857 29798/30831 29844/30879 +f 29845/30880 29799/30832 29823/30857 +f 29846/30881 29824/30858 29799/30832 +f 29802/30835 29847/30882 29800/30833 +f 29825/30859 29801/30834 29800/30833 +f 29848/30883 29802/30835 29824/30858 +f 29777/30810 29826/30860 29841/30876 +f 29778/30811 29826/30860 29803/30836 +f 29804/30837 29782/30815 29826/30860 +f 29828/30862 29827/30861 29780/30813 +f 29805/30838 29849/30884 29828/30862 +f 29850/30885 29805/30838 29829/30863 +f 29829/30863 29761/30793 29851/30886 +f 29827/30861 29849/30884 29806/30839 +f 29782/30815 29830/30864 29826/30860 +f 29807/30840 29831/30865 29830/30864 +f 29831/30865 29806/30839 29816/30850 +f 29784/30817 29834/30868 29832/30866 +f 29833/30867 29785/30818 29832/30866 +f 29837/30871 29808/30841 29833/30867 +f 29834/30868 29809/30842 29835/30869 +f 29764/30796 29836/30870 29835/30869 +f 29852/30887 29836/30870 29810/30843 +f 29853/30888 29812/30845 29811/30844 +f 29853/30888 29811/30844 29837/30871 +f 29814/30847 29812/30845 29854/30889 +f 29838/30872 29789/30822 19790/30873 +f 29815/30849 29813/30846 29838/30872 +f 29855/30890 19790/30873 29814/30847 +f 19912/30848 29839/30874 29856/30891 +f 29839/30874 29815/30849 29857/30892 +f 29806/30839 29817/30851 29816/30850 +f 29830/30864 29816/30850 29841/30876 +f 29817/30851 29849/30884 29840/30875 +f 29821/30855 29818/30852 29858/30893 +f 29822/30856 29842/30877 29794/30827 +f 29819/30853 29842/30877 29820/30854 +f 29821/30855 29858/30893 29843/30878 +f 29858/30893 29822/30856 29843/30878 +f 29823/30857 29844/30879 29859/30894 +f 29799/30832 29845/30880 29860/30895 +f 29859/30894 29845/30880 29823/30857 +f 29848/30883 29824/30858 29846/30881 +f 29861/30896 29846/30881 29799/30832 +f 29847/30882 29862/30897 29800/30833 +f 29847/30882 29802/30835 29848/30883 +f 29800/30833 29863/30898 29825/30859 +f 29826/30860 29830/30864 29841/30876 +f 29828/30862 29849/30884 29827/30861 +f 29805/30838 29864/30899 29849/30884 +f 29864/30899 29805/30838 29850/30885 +f 29865/30900 29850/30885 29829/30863 +f 29851/30886 29865/30900 29829/30863 +f 29806/30839 29849/30884 29817/30851 +f 29831/30865 29816/30850 29830/30864 +f 29834/30868 29866/30901 29832/30866 +f 29867/30902 29833/30867 29832/30866 +f 29833/30867 29868/30903 29837/30871 +f 29834/30868 29835/30869 29869/30904 +f 29835/30869 29836/30870 29870/30905 +f 29852/30887 29870/30905 29836/30870 +f 29853/30888 29854/30889 29812/30845 +f 29868/30903 29853/30888 29837/30871 +f 29814/30847 29854/30889 29855/30890 +f 19762/30906 29838/30872 19790/30873 +f 29838/30872 29871/30907 29815/30849 +f 29855/30890 29872/30908 19790/30873 +f 29839/30874 29857/30892 29856/30891 +f 19864/30909 19912/30848 29856/30891 +f 29873/30910 29857/30892 29815/30849 +f 29849/30884 29874/30911 29840/30875 +f 29842/30877 29822/30856 29875/30912 +f 29875/30912 29822/30856 29858/30893 +f 29876/30913 29859/30894 29844/30879 +f 29861/30896 29799/30832 29860/30895 +f 29877/30914 29860/30895 29845/30880 +f 29878/30915 29845/30880 29859/30894 +f 29848/30883 29846/30881 29879/30916 +f 29861/30896 29880/30917 29846/30881 +f 29862/30897 29863/30898 29800/30833 +f 29847/30882 29881/30918 29862/30897 +f 29848/30883 29882/30919 29847/30882 +f 29874/30911 29849/30884 29864/30899 +f 29864/30899 29850/30885 29883/30920 +f 29850/30885 29865/30900 29884/30921 +f 29851/30886 29885/30922 29865/30900 +f 29832/30866 29866/30901 29867/30902 +f 29866/30901 29834/30868 29869/30904 +f 29833/30867 29867/30902 29886/30923 +f 29833/30867 29886/30923 29868/30903 +f 29887/30924 29869/30904 29835/30869 +f 29835/30869 29870/30905 29887/30924 +f 29888/30925 29870/30905 29852/30887 +f 29853/30888 29889/30926 29854/30889 +f 29889/30926 29853/30888 29868/30903 +f 29854/30889 29890/30927 29855/30890 +f 29838/30872 19762/30906 29891/30928 +f 29891/30928 29871/30907 29838/30872 +f 29873/30910 29815/30849 29871/30907 +f 29855/30890 29892/30929 29872/30908 +f 29872/30908 29893/30930 19790/30873 +f 29857/30892 29873/30910 29856/30891 +f 19864/30909 29856/30891 29873/30910 +f 29859/30894 29876/30913 29894/30931 +f 29861/30896 29860/30895 29895/30932 +f 29877/30914 29845/30880 29878/30915 +f 29860/30895 29877/30914 29895/30932 +f 29859/30894 29896/30933 29878/30915 +f 29846/30881 29880/30917 29879/30916 +f 29897/30934 29848/30883 29879/30916 +f 29861/30896 29898/30935 29880/30917 +f 29847/30882 29882/30919 29881/30918 +f 29862/30897 29881/30918 29899/30936 +f 29848/30883 29900/30937 29882/30919 +f 29864/30899 29883/30920 29874/30911 +f 29884/30921 29883/30920 29850/30885 +f 29884/30921 29865/30900 29901/30938 +f 29901/30938 29865/30900 29885/30922 +f 29885/30922 29851/30886 29902/30939 +f 29866/30901 29903/30940 29867/30902 +f 29904/30941 29866/30901 29869/30904 +f 29867/30902 29905/30942 29886/30923 +f 29868/30903 29886/30923 29906/30943 +f 29869/30904 29887/30924 29907/30944 +f 29908/30945 29887/30924 29870/30905 +f 29909/30946 29870/30905 29888/30925 +f 29888/30925 29852/30887 29910/30947 +f 29890/30927 29854/30889 29889/30926 +f 29868/30903 29911/30948 29889/30926 +f 29890/30927 29892/30929 29855/30890 +f 19762/30906 19815/30949 29891/30928 +f 19815/30949 29871/30907 29891/30928 +f 29871/30907 19815/30949 29873/30910 +f 29893/30930 29872/30908 29892/30929 +f 19761/30950 19790/30873 29893/30930 +f 19864/30909 29873/30910 19815/30949 +f 29894/30931 29896/30933 29859/30894 +f 29898/30935 29861/30896 29895/30932 +f 29912/30951 29877/30914 29878/30915 +f 29877/30914 29913/30952 29895/30932 +f 29896/30933 29912/30951 29878/30915 +f 29914/30953 29879/30916 29880/30917 +f 29897/30934 29900/30937 29848/30883 +f 29897/30934 29879/30916 29914/30953 +f 29915/30954 29880/30917 29898/30935 +f 29916/30955 29881/30918 29882/30919 +f 29899/30936 29881/30918 29917/30956 +f 29900/30937 29916/30955 29882/30919 +f 29883/30920 29884/30921 29918/30957 +f 29918/30957 29884/30921 29901/30938 +f 29919/30958 29901/30938 29885/30922 +f 29919/30958 29885/30922 29902/30939 +f 29904/30941 29903/30940 29866/30901 +f 29905/30942 29867/30902 29903/30940 +f 29904/30941 29869/30904 29907/30944 +f 29905/30942 29906/30943 29886/30923 +f 29868/30903 29906/30943 29911/30948 +f 29887/30924 29908/30945 29907/30944 +f 29908/30945 29870/30905 29909/30946 +f 29888/30925 29920/30959 29909/30946 +f 29888/30925 29910/30947 29921/30960 +f 29890/30927 29889/30926 29922/30961 +f 29889/30926 29911/30948 29922/30961 +f 29892/30929 29890/30927 29923/30962 +f 29892/30929 29924/30963 29893/30930 +f 29893/30930 19714/30964 19761/30950 +f 29925/30965 29898/30935 29895/30932 +f 29926/30966 29877/30914 29912/30951 +f 29913/30952 29877/30914 29927/30967 +f 29925/30965 29895/30932 29913/30952 +f 29880/30917 29915/30954 29914/30953 +f 29900/30937 29897/30934 29928/30968 +f 29914/30953 29928/30968 29897/30934 +f 29929/30969 29915/30954 29898/30935 +f 29881/30918 29916/30955 29917/30956 +f 29930/30970 29899/30936 29917/30956 +f 29931/30971 29916/30955 29900/30937 +f 29904/30941 29932/30972 29903/30940 +f 29903/30940 29933/30973 29905/30942 +f 29904/30941 29907/30944 29934/30974 +f 29905/30942 29935/30975 29906/30943 +f 29936/30976 29911/30948 29906/30943 +f 29934/30974 29907/30944 29908/30945 +f 29937/30977 29908/30945 29909/30946 +f 29938/30978 29909/30946 29920/30959 +f 29920/30959 29888/30925 29939/30979 +f 29910/30947 29940/30980 29921/30960 +f 29888/30925 29921/30960 29939/30979 +f 29890/30927 29922/30961 29923/30962 +f 29911/30948 29941/30981 29922/30961 +f 29924/30963 29892/30929 29923/30962 +f 29924/30963 19714/30964 29893/30930 +f 29898/30935 29925/30965 29929/30969 +f 29877/30914 29926/30966 29927/30967 +f 29913/30952 29927/30967 29942/30982 +f 29942/30982 29925/30965 29913/30952 +f 29915/30954 17322/30983 29914/30953 +f 29900/30937 29928/30968 29943/30984 +f 17322/30983 29928/30968 29914/30953 +f 29944/30985 29915/30954 29929/30969 +f 29916/30955 29931/30971 29917/30956 +f 29945/30986 29930/30970 29917/30956 +f 29900/30937 29946/30987 29931/30971 +f 29932/30972 29904/30941 29934/30974 +f 29947/30988 29903/30940 29932/30972 +f 29933/30973 29903/30940 29947/30988 +f 29948/30989 29905/30942 29933/30973 +f 29905/30942 29948/30989 29935/30975 +f 29936/30976 29906/30943 29935/30975 +f 29941/30981 29911/30948 29936/30976 +f 29908/30945 29937/30977 29934/30974 +f 29909/30946 29949/30990 29937/30977 +f 29909/30946 29938/30978 29949/30990 +f 29920/30959 29950/30991 29938/30978 +f 29950/30991 29920/30959 29939/30979 +f 29951/30992 29940/30980 29910/30947 +f 29940/30980 29939/30979 29921/30960 +f 29922/30961 29924/30963 29923/30962 +f 29941/30981 29952/30993 29922/30961 +f 29953/30994 19714/30964 29924/30963 +f 29925/30965 29954/30995 29929/30969 +f 29942/30982 29927/30967 29926/30966 +f 29925/30965 29942/30982 29954/30995 +f 17322/30983 29915/30954 29944/30985 +f 29943/30984 29946/30987 29900/30937 +f 17297/30996 29943/30984 29928/30968 +f 17297/30996 29928/30968 17322/30983 +f 29954/30995 29944/30985 29929/30969 +f 29917/30956 29931/30971 29955/30997 +f 29930/30970 29945/30986 29956/30998 +f 29955/30997 29945/30986 29917/30956 +f 29946/30987 29957/30999 29931/30971 +f 29932/30972 29934/30974 29958/31000 +f 29947/30988 29932/30972 29959/31001 +f 29960/31002 29933/30973 29947/30988 +f 29948/30989 29933/30973 29961/31003 +f 29935/30975 29948/30989 29961/31003 +f 29935/30975 29961/31003 29936/30976 +f 29962/31004 29941/30981 29936/30976 +f 29958/31000 29934/30974 29937/30977 +f 29949/30990 29958/31000 29937/30977 +f 29963/31005 29949/30990 29938/30978 +f 29938/30978 29950/30991 29964/31006 +f 29939/30979 29965/31007 29950/30991 +f 29940/30980 29951/30992 29966/31008 +f 29966/31008 29939/30979 29940/30980 +f 29922/30961 29952/30993 29924/30963 +f 29952/30993 29941/30981 29967/31009 +f 29924/30963 29968/31010 29953/30994 +f 19656/31011 19714/30964 29953/30994 +f 29926/30966 29969/31012 29942/30982 +f 29970/31013 29954/30995 29942/30982 +f 17350/31014 17322/30983 29944/30985 +f 29946/30987 29943/30984 29971/31015 +f 29943/30984 17297/30996 29971/31015 +f 29944/30985 29954/30995 29970/31013 +f 29931/30971 29972/31016 29955/30997 +f 29956/30998 29945/30986 29973/31017 +f 29973/31017 29945/30986 29955/30997 +f 29974/31018 29931/30971 29957/30999 +f 29957/30999 29946/30987 29971/31015 +f 29958/31000 29959/31001 29932/30972 +f 29960/31002 29947/30988 29959/31001 +f 29960/31002 29975/31019 29933/30973 +f 29933/30973 29976/31020 29961/31003 +f 29936/30976 29961/31003 29962/31004 +f 29941/30981 29962/31004 29967/31009 +f 29963/31005 29958/31000 29949/30990 +f 29964/31006 29963/31005 29938/30978 +f 29977/31021 29964/31006 29950/30991 +f 29966/31008 29965/31007 29939/30979 +f 29977/31021 29950/30991 29965/31007 +f 29966/31008 29951/30992 29978/31022 +f 29952/30993 29968/31010 29924/30963 +f 29968/31010 29952/30993 29967/31009 +f 29968/31010 29979/31023 29953/30994 +f 29953/30994 19596/31024 19656/31011 +f 29942/30982 29969/31012 29970/31013 +f 29944/30985 29970/31013 17350/31014 +f 17297/30996 17269/31025 29971/31015 +f 29972/31016 29931/30971 29974/31018 +f 29955/30997 29972/31016 29973/31017 +f 29956/30998 29973/31017 29980/31026 +f 29981/31027 29974/31018 29957/30999 +f 29971/31015 17268/31028 29957/30999 +f 29982/31029 29959/31001 29958/31000 +f 29959/31001 29983/31030 29960/31002 +f 29975/31019 29960/31002 29984/31031 +f 29933/30973 29975/31019 29985/31032 +f 29961/31003 29976/31020 29962/31004 +f 29933/30973 29985/31032 29976/31020 +f 29962/31004 29986/31033 29967/31009 +f 29982/31029 29958/31000 29963/31005 +f 29982/31029 29963/31005 29964/31006 +f 29977/31021 29987/31034 29964/31006 +f 29966/31008 29988/31035 29965/31007 +f 29965/31007 29989/31036 29977/31021 +f 29978/31022 29990/31037 29966/31008 +f 29991/31038 29968/31010 29967/31009 +f 29968/31010 29991/31038 29979/31023 +f 19596/31024 29953/30994 29979/31023 +f 17269/31025 17268/31028 29971/31015 +f 29972/31016 29974/31018 29992/31039 +f 29972/31016 29993/31040 29973/31017 +f 29993/31040 29980/31026 29973/31017 +f 29956/30998 29980/31026 29994/31041 +f 29974/31018 29981/31027 29992/31039 +f 29957/30999 17298/31042 29981/31027 +f 17298/31042 29957/30999 17268/31028 +f 29995/31043 29959/31001 29982/31029 +f 29959/31001 29995/31043 29983/31030 +f 29996/31044 29960/31002 29983/31030 +f 29960/31002 29996/31044 29984/31031 +f 29984/31031 29985/31032 29975/31019 +f 29986/31033 29962/31004 29976/31020 +f 29976/31020 29985/31032 29997/31045 +f 29986/31033 29991/31038 29967/31009 +f 29987/31034 29982/31029 29964/31006 +f 29977/31021 29998/31046 29987/31034 +f 29999/31047 29965/31007 29988/31035 +f 29966/31008 29990/31037 29988/31035 +f 29989/31036 29998/31046 29977/31021 +f 29989/31036 29965/31007 30000/31048 +f 30001/31049 29990/31037 29978/31022 +f 29991/31038 30002/31050 29979/31023 +f 30003/31051 19596/31024 29979/31023 +f 30004/31052 29972/31016 29992/31039 +f 29972/31016 30005/31053 29993/31040 +f 30006/31054 29980/31026 29993/31040 +f 29994/31041 29980/31026 30007/31055 +f 29981/31027 30008/31056 29992/31039 +f 30009/31057 29981/31027 17298/31042 +f 29982/31029 30010/31058 29995/31043 +f 29995/31043 29996/31044 29983/31030 +f 29996/31044 30011/31059 29984/31031 +f 29984/31031 30012/31060 29985/31032 +f 29976/31020 29997/31045 29986/31033 +f 29985/31032 30012/31060 29997/31045 +f 29991/31038 29986/31033 30013/31061 +f 30014/31062 29982/31029 29987/31034 +f 29987/31034 29998/31046 30014/31062 +f 30000/31048 29965/31007 29999/31047 +f 29988/31035 30015/31063 29999/31047 +f 30015/31063 29988/31035 29990/31037 +f 29989/31036 30016/31064 29998/31046 +f 29989/31036 30000/31048 30017/31065 +f 29990/31037 30001/31049 30015/31063 +f 30001/31049 29978/31022 30018/31066 +f 29979/31023 30002/31050 30003/31051 +f 30002/31050 29991/31038 30013/31061 +f 19596/31024 30003/31051 19529/31067 +f 29972/31016 30004/31052 30005/31053 +f 30019/31068 30004/31052 29992/31039 +f 30006/31054 29993/31040 30005/31053 +f 29980/31026 30006/31054 30007/31055 +f 30008/31056 29981/31027 30009/31057 +f 29992/31039 30008/31056 30019/31068 +f 30009/31057 17298/31042 17309/31069 +f 29995/31043 30010/31058 30020/31070 +f 30014/31062 30010/31058 29982/31029 +f 29995/31043 30021/31071 29996/31044 +f 30011/31059 29996/31044 30022/31072 +f 30011/31059 30012/31060 29984/31031 +f 29986/31033 29997/31045 30013/31061 +f 30023/31073 29997/31045 30012/31060 +f 30024/31074 30014/31062 29998/31046 +f 30000/31048 29999/31047 30025/31075 +f 29999/31047 30015/31063 30026/31076 +f 30024/31074 29998/31046 30016/31064 +f 30016/31064 29989/31036 30017/31065 +f 30000/31048 30025/31075 30017/31065 +f 30027/31077 30015/31063 30001/31049 +f 30028/31078 30001/31049 30018/31066 +f 30002/31050 30029/31079 30003/31051 +f 30013/31061 30030/31080 30002/31050 +f 19529/31067 30003/31051 30029/31079 +f 30031/31081 30005/31053 30004/31052 +f 30019/31068 30032/31082 30004/31052 +f 30006/31054 30005/31053 30031/31081 +f 30007/31055 30006/31054 30033/31083 +f 30008/31056 30009/31057 30034/31084 +f 30035/31085 30019/31068 30008/31056 +f 17323/31086 30009/31057 17309/31069 +f 30020/31070 30010/31058 30036/31087 +f 30021/31071 29995/31043 30020/31070 +f 30010/31058 30014/31062 30037/31088 +f 30022/31072 29996/31044 30021/31071 +f 30011/31059 30022/31072 30038/31089 +f 30039/31090 30012/31060 30011/31059 +f 30023/31073 30013/31061 29997/31045 +f 30012/31060 30040/31091 30023/31073 +f 30014/31062 30024/31074 30037/31088 +f 29999/31047 30041/31092 30025/31075 +f 30015/31063 30042/31093 30026/31076 +f 29999/31047 30026/31076 30041/31092 +f 30024/31074 30016/31064 17789/31094 +f 17826/31095 30016/31064 30017/31065 +f 30025/31075 30043/31096 30017/31065 +f 30042/31093 30015/31063 30027/31077 +f 30044/31097 30027/31077 30001/31049 +f 30044/31097 30001/31049 30028/31078 +f 30029/31079 30002/31050 30030/31080 +f 30030/31080 30013/31061 30023/31073 +f 19463/31098 19529/31067 30029/31079 +f 30032/31082 30031/31081 30004/31052 +f 30019/31068 30035/31085 30032/31082 +f 30006/31054 30031/31081 30045/31099 +f 30033/31083 30046/31100 30007/31055 +f 30047/31101 30033/31083 30006/31054 +f 30048/31102 30034/31084 30009/31057 +f 30008/31056 30034/31084 30035/31085 +f 30009/31057 17323/31086 30048/31102 +f 30049/31103 30036/31087 30010/31058 +f 30020/31070 30036/31087 30050/31104 +f 30021/31071 30020/31070 30051/31105 +f 30010/31058 30037/31088 30049/31103 +f 30022/31072 30021/31071 30052/31106 +f 30038/31089 30022/31072 30053/31107 +f 30039/31090 30011/31059 30038/31089 +f 30039/31090 30040/31091 30012/31060 +f 30040/31091 30054/31108 30023/31073 +f 17789/31094 30037/31088 30024/31074 +f 30041/31092 30043/31096 30025/31075 +f 30026/31076 30042/31093 30055/31109 +f 30041/31092 30026/31076 30056/31110 +f 30016/31064 17826/31095 17789/31094 +f 30017/31065 30057/31111 17826/31095 +f 30017/31065 30043/31096 30057/31111 +f 30058/31112 30042/31093 30027/31077 +f 30027/31077 30044/31097 30059/31113 +f 30028/31078 30060/31114 30044/31097 +f 30061/31115 30029/31079 30030/31080 +f 30023/31073 30061/31115 30030/31080 +f 30029/31079 30061/31115 19463/31098 +f 30031/31081 30032/31082 30062/31116 +f 30032/31082 30035/31085 30062/31116 +f 30045/31099 30031/31081 30062/31116 +f 30006/31054 30045/31099 30047/31101 +f 30033/31083 30047/31101 30046/31100 +f 30034/31084 30048/31102 30035/31085 +f 17323/31086 30063/31117 30048/31102 +f 30064/31118 30036/31087 30049/31103 +f 30065/31119 30050/31104 30036/31087 +f 30050/31104 30051/31105 30020/31070 +f 30052/31106 30021/31071 30051/31105 +f 30049/31103 30037/31088 30066/31120 +f 30053/31107 30022/31072 30052/31106 +f 30053/31107 30067/31121 30038/31089 +f 30068/31122 30039/31090 30038/31089 +f 30040/31091 30039/31090 30054/31108 +f 30023/31073 30054/31108 30061/31115 +f 17824/31123 30037/31088 17789/31094 +f 30043/31096 30041/31092 30069/31124 +f 30055/31109 30056/31110 30026/31076 +f 30055/31109 30042/31093 30058/31112 +f 30056/31110 30070/31125 30041/31092 +f 17826/31095 30057/31111 17681/31126 +f 30043/31096 30071/31127 30057/31111 +f 30059/31113 30058/31112 30027/31077 +f 30059/31113 30044/31097 30060/31114 +f 30061/31115 30072/31128 19463/31098 +f 30035/31085 30063/31117 30062/31116 +f 30073/31129 30045/31099 30062/31116 +f 30045/31099 30073/31129 30047/31101 +f 30047/31101 30074/31130 30046/31100 +f 30048/31102 30063/31117 30035/31085 +f 17323/31086 17311/31131 30063/31117 +f 30075/31132 30036/31087 30064/31118 +f 30049/31103 30066/31120 30064/31118 +f 30076/31133 30050/31104 30065/31119 +f 30075/31132 30065/31119 30036/31087 +f 30050/31104 30076/31133 30051/31105 +f 30052/31106 30051/31105 30076/31133 +f 17824/31123 30066/31120 30037/31088 +f 30076/31133 30053/31107 30052/31106 +f 30053/31107 30077/31134 30067/31121 +f 30038/31089 30067/31121 30078/31135 +f 30054/31108 30039/31090 30068/31122 +f 30078/31135 30068/31122 30038/31089 +f 30079/31136 30061/31115 30054/31108 +f 30041/31092 30070/31125 30069/31124 +f 30069/31124 30071/31127 30043/31096 +f 30056/31110 30055/31109 30080/31137 +f 30081/31138 30055/31109 30058/31112 +f 30056/31110 30080/31137 30070/31125 +f 30057/31111 30071/31127 17681/31126 +f 30058/31112 30059/31113 30082/31139 +f 30060/31114 30082/31139 30059/31113 +f 30061/31115 19354/31140 30072/31128 +f 30072/31128 19387/31141 19463/31098 +f 30083/31142 30062/31116 30063/31117 +f 30084/31143 30073/31129 30062/31116 +f 30074/31130 30047/31101 30073/31129 +f 30085/31144 30046/31100 30074/31130 +f 17311/31131 30086/31145 30063/31117 +f 30075/31132 30064/31118 30087/31146 +f 30066/31120 17823/31147 30064/31118 +f 30065/31119 30088/31148 30076/31133 +f 30075/31132 30089/31149 30065/31119 +f 30066/31120 17824/31123 17823/31147 +f 30076/31133 30088/31148 30053/31107 +f 30088/31148 30077/31134 30053/31107 +f 30077/31134 30090/31150 30067/31121 +f 30067/31121 30091/31151 30078/31135 +f 30068/31122 30092/31152 30054/31108 +f 30068/31122 30078/31135 30091/31151 +f 30079/31136 30054/31108 30092/31152 +f 30079/31136 19354/31140 30061/31115 +f 30070/31125 30093/31153 30069/31124 +f 30094/31154 30071/31127 30069/31124 +f 30055/31109 30081/31138 30080/31137 +f 30082/31139 30081/31138 30058/31112 +f 30070/31125 30080/31137 30093/31153 +f 30071/31127 17601/31155 17681/31126 +f 30060/31114 30095/31156 30082/31139 +f 30072/31128 19354/31140 19387/31141 +f 30086/31145 30083/31142 30063/31117 +f 30083/31142 30096/31157 30062/31116 +f 30097/31158 30073/31129 30084/31143 +f 30096/31157 30084/31143 30062/31116 +f 30074/31130 30073/31129 30098/31159 +f 30099/31160 30046/31100 30085/31144 +f 30085/31144 30074/31130 30100/31161 +f 17285/31162 30086/31145 17311/31131 +f 30101/31163 30075/31132 30087/31146 +f 30102/31164 30087/31146 30064/31118 +f 30064/31118 17823/31147 30102/31164 +f 30065/31119 30103/31165 30088/31148 +f 30089/31149 30075/31132 30101/31163 +f 30104/31166 30065/31119 30089/31149 +f 30105/31167 30077/31134 30088/31148 +f 30105/31167 30090/31150 30077/31134 +f 30090/31150 30091/31151 30067/31121 +f 30068/31122 30091/31151 30092/31152 +f 30106/31168 30079/31136 30092/31152 +f 19354/31140 30079/31136 19238/31169 +f 30094/31154 30069/31124 30093/31153 +f 30107/31170 30071/31127 30094/31154 +f 30080/31137 30081/31138 30108/31171 +f 30081/31138 30082/31139 30108/31171 +f 30109/31172 30093/31153 30080/31137 +f 30107/31170 17601/31155 30071/31127 +f 30095/31156 30060/31114 30099/31160 +f 30082/31139 30095/31156 30110/31173 +f 30086/31145 30096/31157 30083/31142 +f 30084/31143 30111/31174 30097/31158 +f 30098/31159 30073/31129 30097/31158 +f 30111/31174 30084/31143 30096/31157 +f 30098/31159 30100/31161 30074/31130 +f 30046/31100 30099/31160 30060/31114 +f 30085/31144 30112/31175 30099/31160 +f 30085/31144 30100/31161 30113/31176 +f 30114/31177 30086/31145 17285/31162 +f 30087/31146 30115/31178 30101/31163 +f 30115/31178 30087/31146 30102/31164 +f 30102/31164 17823/31147 30116/31179 +f 30065/31119 30104/31166 30103/31165 +f 30088/31148 30103/31165 30105/31167 +f 30101/31163 30104/31166 30089/31149 +f 30105/31167 30117/31180 30090/31150 +f 30091/31151 30090/31150 30118/31181 +f 30118/31181 30092/31152 30091/31151 +f 30106/31168 19238/31169 30079/31136 +f 30106/31168 30092/31152 30118/31181 +f 30093/31153 30119/31182 30094/31154 +f 30107/31170 30094/31154 30120/31183 +f 30108/31171 30121/31184 30080/31137 +f 30082/31139 30110/31173 30108/31171 +f 30109/31172 30122/31185 30093/31153 +f 30109/31172 30080/31137 30121/31184 +f 30107/31170 30123/31186 17601/31155 +f 30124/31187 30095/31156 30099/31160 +f 30095/31156 30112/31175 30110/31173 +f 30125/31188 30096/31157 30086/31145 +f 30097/31158 30111/31174 30126/31189 +f 30097/31158 30113/31176 30098/31159 +f 30096/31157 30125/31188 30111/31174 +f 30098/31159 30113/31176 30100/31161 +f 30112/31175 30085/31144 30113/31176 +f 30099/31160 30112/31175 30124/31187 +f 30114/31177 30125/31188 30086/31145 +f 17271/31190 30114/31177 17285/31162 +f 30115/31178 30127/31191 30101/31163 +f 30115/31178 30102/31164 17986/31192 +f 17825/31193 30102/31164 30116/31179 +f 17825/31193 30116/31179 17823/31147 +f 30117/31180 30103/31165 30104/31166 +f 30103/31165 30117/31180 30105/31167 +f 30101/31163 30127/31191 30104/31166 +f 30128/31194 30090/31150 30117/31180 +f 30090/31150 30129/31195 30118/31181 +f 19238/31169 30106/31168 30118/31181 +f 30119/31182 30120/31183 30094/31154 +f 30119/31182 30093/31153 30122/31185 +f 30107/31170 30120/31183 30123/31186 +f 30113/31176 30121/31184 30108/31171 +f 30108/31171 30110/31173 30112/31175 +f 30122/31185 30109/31172 30130/31196 +f 30121/31184 30131/31197 30109/31172 +f 17601/31155 30123/31186 17531/31198 +f 30095/31156 30124/31187 30112/31175 +f 30126/31189 30132/31199 30097/31158 +f 30111/31174 30133/31200 30126/31189 +f 30113/31176 30097/31158 30132/31199 +f 30133/31200 30111/31174 30125/31188 +f 30112/31175 30113/31176 30108/31171 +f 30125/31188 30114/31177 17270/31201 +f 17270/31201 30114/31177 17271/31190 +f 30115/31178 18073/31202 30127/31191 +f 17986/31192 30102/31164 17825/31193 +f 18073/31202 30115/31178 17986/31192 +f 30117/31180 30104/31166 30134/31203 +f 30104/31166 30127/31191 30134/31203 +f 30135/31204 30090/31150 30128/31194 +f 30128/31194 30117/31180 30136/31205 +f 30129/31195 30090/31150 30135/31204 +f 30118/31181 30129/31195 19135/31206 +f 19135/31206 19238/31169 30118/31181 +f 30137/31207 30120/31183 30119/31182 +f 30119/31182 30122/31185 30137/31207 +f 30138/31208 30123/31186 30120/31183 +f 30131/31197 30121/31184 30113/31176 +f 30139/31209 30122/31185 30130/31196 +f 30109/31172 30131/31197 30130/31196 +f 30140/31210 17531/31198 30123/31186 +f 30141/31211 30132/31199 30126/31189 +f 30126/31189 30133/31200 30142/31212 +f 30113/31176 30132/31199 30143/31213 +f 30125/31188 17270/31201 30133/31200 +f 18073/31202 18117/31214 30127/31191 +f 30117/31180 30134/31203 30136/31205 +f 30134/31203 30127/31191 18117/31214 +f 30135/31204 30128/31194 30144/31215 +f 30136/31205 30145/31216 30128/31194 +f 30129/31195 30135/31204 19135/31206 +f 30137/31207 30139/31209 30120/31183 +f 30122/31185 30139/31209 30137/31207 +f 30120/31183 30139/31209 30138/31208 +f 30146/31217 30123/31186 30138/31208 +f 30131/31197 30113/31176 30143/31213 +f 30139/31209 30130/31196 30147/31218 +f 30147/31218 30130/31196 30131/31197 +f 17500/31219 17531/31198 30140/31210 +f 30123/31186 30146/31217 30140/31210 +f 30143/31213 30132/31199 30141/31211 +f 30148/31220 30141/31211 30126/31189 +f 30142/31212 30133/31200 17259/31221 +f 30142/31212 30149/31222 30126/31189 +f 17259/31221 30133/31200 17270/31201 +f 30136/31205 30134/31203 18202/31223 +f 18202/31223 30134/31203 18117/31214 +f 30135/31204 30144/31215 30150/31224 +f 30144/31215 30128/31194 30145/31216 +f 30136/31205 30151/31225 30145/31216 +f 19135/31206 30135/31204 19065/31226 +f 30147/31218 30138/31208 30139/31209 +f 30146/31217 30138/31208 30152/31227 +f 30143/31213 30153/31228 30131/31197 +f 30131/31197 30153/31228 30147/31218 +f 30140/31210 30154/31229 17500/31219 +f 30140/31210 30146/31217 30155/31230 +f 30143/31213 30141/31211 30156/31231 +f 30157/31232 30141/31211 30148/31220 +f 30149/31222 30148/31220 30126/31189 +f 30158/31233 30142/31212 17259/31221 +f 30142/31212 30159/31234 30149/31222 +f 18202/31223 30151/31225 30136/31205 +f 30150/31224 30144/31215 30160/31235 +f 30150/31224 19065/31226 30135/31204 +f 30144/31215 30145/31216 30160/31235 +f 30161/31236 30145/31216 30151/31225 +f 30147/31218 30152/31227 30138/31208 +f 30155/31230 30146/31217 30152/31227 +f 30153/31228 30143/31213 30156/31231 +f 30147/31218 30153/31228 30162/31237 +f 30140/31210 30155/31230 30154/31229 +f 17500/31219 30154/31229 30163/31238 +f 30157/31232 30156/31231 30141/31211 +f 30148/31220 30164/31239 30157/31232 +f 30165/31240 30148/31220 30149/31222 +f 30142/31212 30158/31233 30159/31234 +f 17259/31221 17260/31241 30158/31233 +f 30159/31234 30165/31240 30149/31222 +f 18301/31242 30151/31225 18202/31223 +f 18919/31243 30150/31224 30160/31235 +f 19065/31226 30150/31224 18919/31243 +f 30145/31216 18692/31244 30160/31235 +f 30145/31216 30161/31236 18692/31244 +f 30161/31236 30151/31225 30166/31245 +f 30152/31227 30147/31218 30162/31237 +f 30152/31227 30167/31246 30155/31230 +f 30162/31237 30153/31228 30156/31231 +f 30154/31229 30155/31230 30168/31247 +f 30168/31247 30163/31238 30154/31229 +f 30163/31238 30169/31248 17500/31219 +f 30157/31232 30170/31249 30156/31231 +f 30164/31239 30148/31220 30165/31240 +f 30157/31232 30164/31239 30171/31250 +f 30158/31233 30165/31240 30159/31234 +f 17299/31251 30158/31233 17260/31241 +f 30166/31245 30151/31225 18301/31242 +f 18919/31243 30160/31235 18801/31252 +f 18801/31252 30160/31235 18692/31244 +f 18578/31253 18692/31244 30161/31236 +f 18408/31254 30161/31236 30166/31245 +f 30152/31227 30162/31237 30167/31246 +f 30155/31230 30167/31246 30172/31255 +f 30162/31237 30156/31231 30173/31256 +f 30172/31255 30168/31247 30155/31230 +f 30163/31238 30168/31247 30170/31249 +f 17500/31219 30169/31248 17427/31257 +f 30163/31238 30171/31250 30169/31248 +f 30156/31231 30170/31249 30173/31256 +f 30171/31250 30170/31249 30157/31232 +f 30164/31239 30165/31240 17299/31251 +f 30174/31258 30171/31250 30164/31239 +f 30158/31233 17299/31251 30165/31240 +f 18408/31254 30166/31245 18301/31242 +f 30161/31236 30175/31259 18578/31253 +f 30175/31259 30161/31236 18408/31254 +f 30167/31246 30162/31237 30173/31256 +f 30172/31255 30167/31246 30173/31256 +f 30168/31247 30172/31255 30170/31249 +f 30171/31250 30163/31238 30170/31249 +f 30169/31248 17385/31260 17427/31257 +f 30171/31250 17385/31260 30169/31248 +f 30173/31256 30170/31249 30172/31255 +f 17299/31251 30176/31261 30164/31239 +f 30171/31250 30174/31258 17385/31260 +f 30176/31261 30174/31258 30164/31239 +f 30175/31259 18408/31254 18578/31253 +f 30176/31261 17299/31251 17312/31262 +f 30174/31258 17335/31263 17385/31260 +f 17335/31263 30174/31258 30176/31261 +f 17312/31262 17335/31263 30176/31261 +f 30177/31264 30178/31265 30179/31266 +f 30177/31264 30180/31267 30178/31265 +f 30179/31266 30178/31265 30181/31268 +f 30182/31269 30180/31267 30177/31264 +f 30180/31267 30183/31270 30178/31265 +f 30178/31265 30183/31270 30181/31268 +f 30180/31267 30182/31269 30183/31270 +f 30184/31271 30185/31272 30186/31273 +f 30187/31274 30185/31272 30184/31271 +f 30185/31272 30188/31275 30186/31273 +f 30189/31276 30184/31271 30186/31273 +f 30187/31274 30190/31277 30185/31272 +f 30191/31278 30187/31274 30184/31271 +f 30188/31275 30185/31272 30190/31277 +f 30186/31273 30188/31275 30192/31279 +f 30186/31273 30193/31280 30189/31276 +f 30184/31271 30189/31276 30194/31281 +f 30190/31277 30187/31274 30195/31282 +f 30184/31271 30196/31283 30191/31278 +f 30187/31274 30191/31278 30195/31282 +f 30190/31277 30197/31284 30188/31275 +f 30192/31279 30193/31280 30186/31273 +f 28239/31285 30192/31279 30188/31275 +f 30198/31286 30189/31276 30193/31280 +f 30199/31287 30184/31271 30194/31281 +f 30194/31281 30189/31276 30200/31288 +f 30201/31289 30190/31277 30195/31282 +f 30196/31283 30184/31271 30199/31287 +f 30196/31283 30202/31290 30191/31278 +f 30202/31290 30195/31282 30191/31278 +f 30203/31291 30197/31284 30190/31277 +f 30204/31292 30188/31275 30197/31284 +f 30205/31293 30193/31280 30192/31279 +f 28239/31285 30188/31275 30204/31292 +f 28239/31285 30206/31294 30192/31279 +f 30193/31280 30207/31295 30198/31286 +f 30198/31286 30208/31296 30189/31276 +f 30194/31281 30209/31297 30199/31287 +f 30189/31276 30208/31296 30200/31288 +f 30200/31288 30209/31297 30194/31281 +f 30210/31298 30201/31289 30195/31282 +f 30203/31291 30190/31277 30201/31289 +f 30211/31299 30196/31283 30199/31287 +f 30212/31300 30202/31290 30196/31283 +f 30202/31290 30210/31298 30195/31282 +f 30213/31301 30197/31284 30203/31291 +f 30197/31284 30214/31302 30204/31292 +f 30207/31295 30193/31280 30205/31293 +f 30192/31279 30206/31294 30205/31293 +f 28233/31303 28239/31285 30204/31292 +f 30206/31294 28239/31285 28251/31304 +f 30198/31286 30207/31295 30215/31305 +f 30216/31306 30208/31296 30198/31286 +f 30209/31297 30211/31299 30199/31287 +f 30217/31307 30200/31288 30208/31296 +f 30200/31288 30218/31308 30209/31297 +f 30210/31298 30219/31309 30201/31289 +f 30203/31291 30201/31289 30220/31310 +f 30196/31283 30211/31299 30221/31311 +f 30210/31298 30202/31290 30212/31300 +f 30222/31312 30212/31300 30196/31283 +f 30197/31284 30213/31301 30223/31313 +f 30220/31310 30213/31301 30203/31291 +f 30214/31302 30197/31284 30223/31313 +f 30214/31302 30224/31314 30204/31292 +f 30207/31295 30205/31293 30225/31315 +f 30225/31315 30205/31293 30206/31294 +f 30204/31292 30224/31314 28233/31303 +f 30206/31294 28251/31304 30225/31315 +f 30198/31286 30215/31305 30216/31306 +f 30226/31316 30215/31305 30207/31295 +f 30227/31317 30208/31296 30216/31306 +f 30211/31299 30209/31297 30228/31318 +f 30200/31288 30217/31307 30218/31308 +f 30229/31319 30217/31307 30208/31296 +f 30230/31320 30209/31297 30218/31308 +f 30201/31289 30219/31309 30220/31310 +f 30210/31298 30231/31321 30219/31309 +f 30211/31299 30232/31322 30221/31311 +f 30196/31283 30221/31311 30222/31312 +f 30233/31323 30210/31298 30212/31300 +f 30234/31324 30212/31300 30222/31312 +f 30223/31313 30213/31301 30235/31325 +f 30236/31326 30213/31301 30220/31310 +f 30224/31314 30214/31302 30223/31313 +f 30225/31315 30226/31316 30207/31295 +f 28223/31327 28233/31303 30224/31314 +f 28251/31304 28252/31328 30225/31315 +f 30216/31306 30215/31305 30237/31329 +f 30215/31305 30226/31316 30238/31330 +f 30239/31331 30227/31317 30216/31306 +f 30227/31317 30240/31332 30208/31296 +f 30230/31320 30228/31318 30209/31297 +f 30241/31333 30211/31299 30228/31318 +f 30218/31308 30217/31307 30242/31334 +f 30217/31307 30229/31319 30242/31334 +f 30208/31296 30240/31332 30229/31319 +f 30230/31320 30218/31308 30243/31335 +f 30219/31309 30231/31321 30220/31310 +f 30210/31298 30233/31323 30231/31321 +f 30244/31336 30232/31322 30211/31299 +f 30245/31337 30221/31311 30232/31322 +f 30222/31312 30221/31311 30245/31337 +f 30234/31324 30233/31323 30212/31300 +f 30246/31338 30234/31324 30222/31312 +f 30247/31339 30223/31313 30235/31325 +f 30235/31325 30213/31301 30248/31340 +f 30248/31340 30213/31301 30236/31326 +f 30236/31326 30220/31310 30249/31341 +f 30224/31314 30223/31313 30250/31342 +f 28252/31328 30226/31316 30225/31315 +f 28223/31327 30224/31314 30250/31342 +f 30238/31330 30237/31329 30215/31305 +f 30216/31306 30237/31329 30239/31331 +f 30226/31316 28256/31343 30238/31330 +f 30227/31317 30239/31331 30251/31344 +f 30252/31345 30240/31332 30227/31317 +f 30230/31320 30253/31346 30228/31318 +f 30241/31333 30228/31318 30254/31347 +f 30244/31336 30211/31299 30241/31333 +f 30255/31348 30218/31308 30242/31334 +f 30229/31319 30256/31349 30242/31334 +f 30240/31332 30257/31350 30229/31319 +f 30258/31351 30243/31335 30218/31308 +f 30230/31320 30243/31335 30253/31346 +f 30220/31310 30231/31321 30249/31341 +f 30231/31321 30233/31323 30249/31341 +f 30259/31352 30232/31322 30244/31336 +f 30232/31322 30259/31352 30245/31337 +f 30245/31337 30246/31338 30222/31312 +f 30233/31323 30234/31324 30249/31341 +f 30234/31324 30246/31338 30260/31353 +f 30261/31354 30223/31313 30247/31339 +f 30235/31325 30262/31355 30247/31339 +f 30235/31325 30248/31340 30263/31356 +f 30248/31340 30236/31326 30264/31357 +f 30236/31326 30249/31341 30264/31357 +f 30250/31342 30223/31313 30261/31354 +f 28252/31328 28256/31343 30226/31316 +f 30250/31342 30265/31358 28223/31327 +f 30266/31359 30237/31329 30238/31330 +f 30266/31359 30239/31331 30237/31329 +f 30267/31360 30238/31330 28256/31343 +f 30251/31344 30239/31331 30268/31361 +f 30252/31345 30227/31317 30251/31344 +f 30257/31350 30240/31332 30252/31345 +f 30254/31347 30228/31318 30253/31346 +f 30269/31362 30241/31333 30254/31347 +f 30241/31333 30270/31363 30244/31336 +f 30218/31308 30255/31348 30271/31364 +f 30256/31349 30255/31348 30242/31334 +f 30257/31350 30256/31349 30229/31319 +f 30258/31351 30218/31308 30272/31365 +f 30258/31351 30273/31366 30243/31335 +f 30243/31335 30274/31367 30253/31346 +f 30244/31336 30275/31368 30259/31352 +f 30245/31337 30259/31352 30276/31369 +f 30246/31338 30245/31337 30277/31370 +f 30234/31324 30260/31353 30249/31341 +f 30246/31338 30278/31371 30260/31353 +f 30261/31354 30247/31339 30279/31372 +f 30262/31355 30235/31325 30263/31356 +f 30247/31339 30262/31355 30280/31373 +f 30281/31374 30263/31356 30248/31340 +f 30281/31374 30248/31340 30264/31357 +f 30249/31341 30260/31353 30264/31357 +f 30282/31375 30250/31342 30261/31354 +f 30265/31358 28226/31376 28223/31327 +f 30283/31377 30265/31358 30250/31342 +f 30267/31360 30266/31359 30238/31330 +f 30284/31378 30239/31331 30266/31359 +f 28256/31343 28264/31379 30267/31360 +f 30268/31361 30239/31331 30284/31378 +f 30268/31361 30285/31380 30251/31344 +f 30251/31344 30285/31380 30252/31345 +f 30252/31345 30286/31381 30257/31350 +f 30253/31346 30287/31382 30254/31347 +f 30288/31383 30241/31333 30269/31362 +f 30269/31362 30254/31347 30287/31382 +f 30289/31384 30270/31363 30241/31333 +f 30270/31363 30275/31368 30244/31336 +f 30290/31385 30271/31364 30255/31348 +f 30291/31386 30218/31308 30271/31364 +f 30256/31349 30292/31387 30255/31348 +f 30293/31388 30256/31349 30257/31350 +f 30218/31308 30291/31386 30272/31365 +f 30273/31366 30258/31351 30272/31365 +f 30273/31366 30274/31367 30243/31335 +f 30253/31346 30274/31367 30294/31389 +f 30259/31352 30275/31368 30276/31369 +f 30295/31390 30245/31337 30276/31369 +f 30277/31370 30278/31371 30246/31338 +f 30245/31337 30295/31390 30277/31370 +f 30260/31353 30278/31371 30264/31357 +f 30296/31391 30279/31372 30247/31339 +f 30282/31375 30261/31354 30279/31372 +f 30263/31356 30297/31392 30262/31355 +f 30280/31373 30262/31355 30297/31392 +f 30247/31339 30280/31373 30298/31393 +f 30299/31394 30263/31356 30281/31374 +f 30281/31374 30264/31357 30300/31395 +f 30250/31342 30282/31375 30283/31377 +f 30283/31377 28226/31376 30265/31358 +f 30301/31396 30266/31359 30267/31360 +f 30266/31359 30301/31396 30284/31378 +f 30267/31360 28264/31379 30302/31397 +f 30284/31378 30303/31398 30268/31361 +f 30304/31399 30285/31380 30268/31361 +f 30285/31380 30305/31400 30252/31345 +f 30252/31345 30305/31400 30286/31381 +f 30286/31381 30293/31388 30257/31350 +f 30294/31389 30287/31382 30253/31346 +f 30306/31401 30288/31383 30269/31362 +f 30241/31333 30288/31383 30289/31384 +f 30287/31382 30294/31389 30269/31362 +f 30289/31384 30306/31401 30270/31363 +f 30270/31363 30307/31402 30275/31368 +f 30290/31385 30308/31403 30271/31364 +f 30292/31387 30290/31385 30255/31348 +f 30308/31403 30291/31386 30271/31364 +f 30293/31388 30292/31387 30256/31349 +f 30272/31365 30291/31386 30309/31404 +f 30310/31405 30273/31366 30272/31365 +f 30273/31366 30311/31406 30274/31367 +f 30312/31407 30294/31389 30274/31367 +f 30276/31369 30275/31368 30307/31402 +f 30295/31390 30276/31369 30313/31408 +f 30278/31371 30277/31370 30314/31409 +f 30315/31410 30277/31370 30295/31390 +f 30264/31357 30278/31371 30316/31411 +f 30296/31391 30317/31412 30279/31372 +f 30296/31391 30247/31339 30298/31393 +f 30318/31413 30282/31375 30279/31372 +f 30297/31392 30263/31356 30319/31414 +f 30320/31415 30280/31373 30297/31392 +f 30298/31393 30280/31373 30320/31415 +f 30300/31395 30299/31394 30281/31374 +f 30263/31356 30299/31394 30319/31414 +f 30321/31416 30300/31395 30264/31357 +f 30283/31377 30282/31375 30318/31413 +f 28226/31376 30283/31377 30318/31413 +f 30303/31398 30301/31396 30267/31360 +f 30301/31396 30303/31398 30284/31378 +f 28264/31379 28270/31417 30302/31397 +f 30302/31397 30303/31398 30267/31360 +f 30322/31418 30268/31361 30303/31398 +f 30268/31361 30323/31419 30304/31399 +f 30285/31380 30304/31399 30324/31420 +f 30286/31381 30305/31400 30285/31380 +f 30293/31388 30286/31381 30325/31421 +f 30288/31383 30306/31401 30289/31384 +f 30326/31422 30306/31401 30269/31362 +f 30269/31362 30294/31389 30326/31422 +f 30327/31423 30270/31363 30306/31401 +f 30307/31402 30270/31363 30327/31423 +f 30290/31385 30328/31424 30308/31403 +f 30292/31387 30328/31424 30290/31385 +f 30329/31425 30291/31386 30308/31403 +f 30330/31426 30292/31387 30293/31388 +f 30309/31404 30291/31386 30329/31425 +f 30272/31365 30309/31404 30329/31425 +f 30310/31405 30331/31427 30273/31366 +f 30272/31365 30332/31428 30310/31405 +f 30274/31367 30311/31406 30333/31429 +f 30331/31427 30311/31406 30273/31366 +f 30312/31407 30274/31367 30334/31430 +f 30312/31407 30326/31422 30294/31389 +f 30335/31431 30276/31369 30307/31402 +f 30336/31432 30295/31390 30313/31408 +f 30335/31431 30313/31408 30276/31369 +f 30277/31370 30315/31410 30314/31409 +f 30337/31433 30278/31371 30314/31409 +f 30295/31390 30336/31432 30315/31410 +f 30338/31434 30264/31357 30316/31411 +f 30316/31411 30278/31371 30339/31435 +f 30296/31391 30340/31436 30317/31412 +f 30317/31412 30341/31437 30279/31372 +f 30298/31393 30342/31438 30296/31391 +f 30279/31372 30341/31437 30318/31413 +f 30319/31414 30343/31439 30297/31392 +f 30297/31392 30344/31440 30320/31415 +f 30320/31415 30345/31441 30298/31393 +f 30346/31442 30299/31394 30300/31395 +f 30299/31394 30343/31439 30319/31414 +f 30300/31395 30321/31416 30346/31442 +f 30321/31416 30264/31357 30338/31434 +f 28226/31376 30318/31413 30347/31443 +f 30302/31397 28270/31417 13032/31444 +f 30322/31418 30303/31398 30302/31397 +f 30323/31419 30268/31361 30322/31418 +f 30323/31419 30324/31420 30304/31399 +f 30325/31421 30285/31380 30324/31420 +f 30285/31380 30325/31421 30286/31381 +f 30325/31421 30348/31445 30293/31388 +f 30326/31422 30349/31446 30306/31401 +f 30327/31423 30306/31401 30349/31446 +f 30350/31447 30307/31402 30327/31423 +f 30328/31424 30351/31448 30308/31403 +f 30328/31424 30292/31387 30330/31426 +f 30329/31425 30308/31403 30352/31449 +f 30348/31445 30330/31426 30293/31388 +f 30329/31425 30332/31428 30272/31365 +f 30331/31427 30310/31405 30353/31450 +f 30354/31451 30310/31405 30332/31428 +f 30333/31429 30334/31430 30274/31367 +f 30333/31429 30311/31406 30355/31452 +f 30331/31427 30355/31452 30311/31406 +f 30334/31430 30356/31453 30312/31407 +f 30357/31454 30326/31422 30312/31407 +f 30307/31402 30350/31447 30335/31431 +f 30313/31408 30358/31455 30336/31432 +f 30335/31431 30359/31456 30313/31408 +f 30315/31410 30360/31457 30314/31409 +f 30314/31409 30361/31458 30337/31433 +f 30337/31433 30339/31435 30278/31371 +f 30315/31410 30336/31432 30362/31459 +f 30316/31411 5470/31460 30338/31434 +f 30316/31411 30339/31435 5439/31461 +f 30363/31462 30340/31436 30296/31391 +f 30340/31436 30341/31437 30317/31412 +f 30342/31438 30363/31462 30296/31391 +f 30345/31441 30342/31438 30298/31393 +f 30341/31437 30347/31443 30318/31413 +f 30343/31439 30364/31463 30297/31392 +f 30320/31415 30344/31440 30365/31464 +f 30364/31463 30344/31440 30297/31392 +f 30365/31464 30345/31441 30320/31415 +f 30366/31465 30299/31394 30346/31442 +f 30343/31439 30299/31394 30366/31465 +f 30321/31416 30367/31466 30346/31442 +f 30367/31466 30321/31416 30338/31434 +f 28234/31467 28226/31376 30347/31443 +f 30302/31397 13032/31444 13159/31468 +f 13159/31468 30322/31418 30302/31397 +f 30322/31418 13157/31469 30323/31419 +f 30324/31420 30323/31419 30368/31470 +f 30324/31420 30369/31471 30325/31421 +f 30370/31472 30348/31445 30325/31421 +f 30357/31454 30349/31446 30326/31422 +f 30349/31446 30371/31473 30327/31423 +f 30350/31447 30327/31423 30372/31474 +f 30351/31448 30373/31475 30308/31403 +f 30370/31472 30351/31448 30328/31424 +f 30328/31424 30330/31426 30370/31472 +f 30352/31449 30374/31476 30329/31425 +f 30308/31403 30373/31475 30352/31449 +f 30348/31445 30370/31472 30330/31426 +f 30329/31425 30374/31476 30332/31428 +f 30310/31405 30354/31451 30353/31450 +f 30375/31477 30331/31427 30353/31450 +f 30332/31428 30374/31476 30354/31451 +f 30333/31429 30376/31478 30334/31430 +f 30333/31429 30355/31452 30377/31479 +f 30355/31452 30331/31427 30375/31477 +f 30356/31453 30334/31430 30376/31478 +f 30312/31407 30356/31453 30357/31454 +f 30378/31480 30335/31431 30350/31447 +f 30379/31481 30358/31455 30313/31408 +f 30358/31455 30380/31482 30336/31432 +f 30381/31483 30359/31456 30335/31431 +f 30313/31408 30359/31456 30379/31481 +f 30360/31457 30361/31458 30314/31409 +f 30362/31459 30360/31457 30315/31410 +f 30361/31458 30382/31484 30337/31433 +f 30339/31435 30337/31433 30383/31485 +f 30380/31482 30362/31459 30336/31432 +f 5439/31461 5470/31460 30316/31411 +f 5491/31486 30338/31434 5470/31460 +f 30339/31435 30383/31485 5439/31461 +f 30363/31462 28278/31487 30340/31436 +f 28265/31488 30341/31437 30340/31436 +f 30363/31462 30342/31438 30384/31489 +f 30342/31438 30345/31441 30385/31490 +f 30347/31443 30341/31437 30386/31491 +f 30343/31439 30387/31492 30364/31463 +f 30344/31440 30388/31493 30365/31464 +f 30364/31463 30388/31493 30344/31440 +f 30365/31464 30385/31490 30345/31441 +f 30346/31442 30389/31494 30366/31465 +f 30343/31439 30366/31465 30387/31492 +f 30367/31466 30389/31494 30346/31442 +f 30338/31434 5593/31495 30367/31466 +f 28241/31496 28234/31467 30347/31443 +f 30322/31418 13159/31468 13157/31469 +f 30368/31470 30323/31419 13157/31469 +f 30368/31470 30369/31471 30324/31420 +f 30325/31421 30369/31471 30370/31472 +f 30357/31454 30371/31473 30349/31446 +f 30371/31473 30372/31474 30327/31423 +f 30390/31497 30350/31447 30372/31474 +f 30373/31475 30351/31448 30391/31498 +f 30351/31448 30370/31472 30391/31498 +f 30373/31475 30374/31476 30352/31449 +f 30354/31451 30392/31499 30353/31450 +f 30353/31450 30393/31500 30375/31477 +f 30354/31451 30374/31476 30394/31501 +f 30395/31502 30376/31478 30333/31429 +f 30333/31429 30377/31479 30395/31502 +f 30377/31479 30355/31452 30396/31503 +f 30396/31503 30355/31452 30375/31477 +f 30356/31453 30376/31478 30357/31454 +f 30381/31483 30335/31431 30378/31480 +f 30350/31447 30390/31497 30378/31480 +f 30379/31481 30397/31504 30358/31455 +f 30358/31455 30362/31459 30380/31482 +f 30381/31483 30398/31505 30359/31456 +f 30359/31456 30398/31505 30379/31481 +f 30360/31457 30399/31506 30361/31458 +f 30362/31459 30400/31507 30360/31457 +f 30399/31506 30382/31484 30361/31458 +f 30382/31484 30401/31508 30337/31433 +f 5428/31509 30383/31485 30337/31433 +f 5593/31495 30338/31434 5491/31486 +f 5428/31509 5439/31461 30383/31485 +f 28293/31510 28278/31487 30363/31462 +f 28278/31487 28265/31488 30340/31436 +f 30386/31491 30341/31437 28265/31488 +f 30363/31462 30384/31489 28293/31510 +f 30385/31490 30384/31489 30342/31438 +f 30386/31491 28241/31496 30347/31443 +f 30387/31492 30388/31493 30364/31463 +f 30388/31493 30402/31511 30365/31464 +f 30385/31490 30365/31464 30403/31512 +f 30404/31513 30366/31465 30389/31494 +f 30387/31492 30366/31465 30404/31513 +f 5593/31495 30389/31494 30367/31466 +f 13157/31469 13158/31514 30368/31470 +f 30368/31470 30405/31515 30369/31471 +f 30406/31516 30370/31472 30369/31471 +f 30371/31473 30357/31454 30407/31517 +f 30408/31518 30372/31474 30371/31473 +f 30372/31474 30409/31519 30390/31497 +f 30410/31520 30373/31475 30391/31498 +f 30370/31472 30406/31516 30391/31498 +f 30410/31520 30374/31476 30373/31475 +f 30392/31499 30354/31451 30411/31521 +f 30392/31499 30412/31522 30353/31450 +f 30393/31500 30396/31503 30375/31477 +f 30353/31450 30412/31522 30393/31500 +f 30374/31476 30413/31523 30394/31501 +f 30394/31501 30411/31521 30354/31451 +f 30376/31478 30395/31502 30414/31524 +f 30377/31479 30415/31525 30395/31502 +f 30377/31479 30396/31503 30415/31525 +f 30376/31478 30407/31517 30357/31454 +f 30378/31480 5375/31526 30381/31483 +f 30378/31480 30390/31497 30416/31527 +f 30397/31504 30379/31481 30417/31528 +f 30418/31529 30358/31455 30397/31504 +f 30362/31459 30358/31455 30418/31529 +f 30398/31505 30381/31483 5375/31526 +f 30398/31505 30417/31528 30379/31481 +f 30400/31507 30399/31506 30360/31457 +f 30418/31529 30400/31507 30362/31459 +f 30399/31506 30419/31530 30382/31484 +f 5428/31509 30337/31433 30401/31508 +f 30419/31530 30401/31508 30382/31484 +f 28241/31496 30386/31491 28265/31488 +f 28315/31531 28293/31510 30384/31489 +f 30385/31490 28315/31531 30384/31489 +f 30387/31492 30420/31532 30388/31493 +f 30420/31532 30402/31511 30388/31493 +f 30365/31464 30402/31511 30403/31512 +f 30385/31490 30403/31512 30421/31533 +f 30389/31494 5635/31534 30404/31513 +f 30387/31492 30404/31513 30420/31532 +f 5635/31534 30389/31494 5593/31495 +f 30368/31470 13158/31514 30405/31515 +f 30405/31515 30406/31516 30369/31471 +f 30408/31518 30371/31473 30407/31517 +f 30422/31535 30372/31474 30408/31518 +f 30409/31519 30423/31536 30390/31497 +f 30409/31519 30372/31474 30422/31535 +f 30424/31537 30410/31520 30391/31498 +f 30391/31498 30406/31516 30424/31537 +f 30410/31520 30413/31523 30374/31476 +f 30425/31538 30412/31522 30392/31499 +f 30396/31503 30393/31500 30426/31539 +f 30426/31539 30393/31500 30412/31522 +f 30394/31501 30413/31523 30427/31540 +f 30427/31540 30411/31521 30394/31501 +f 30414/31524 30395/31502 30428/31541 +f 30376/31478 30414/31524 30407/31517 +f 30415/31525 30429/31542 30395/31502 +f 30396/31503 30426/31539 30415/31525 +f 5375/31526 30378/31480 30416/31527 +f 30390/31497 30423/31536 30416/31527 +f 30397/31504 30417/31528 30430/31543 +f 30418/31529 30397/31504 30431/31544 +f 5368/31545 30398/31505 5375/31526 +f 30417/31528 30398/31505 5368/31545 +f 30431/31544 30399/31506 30400/31507 +f 30400/31507 30418/31529 30431/31544 +f 30419/31530 30399/31506 30431/31544 +f 5416/31546 5428/31509 30401/31508 +f 30401/31508 30419/31530 5416/31546 +f 30385/31490 30421/31533 28315/31531 +f 30402/31511 30420/31532 30432/31547 +f 30402/31511 30433/31548 30403/31512 +f 30403/31512 30433/31548 30421/31533 +f 5635/31534 5693/31549 30404/31513 +f 30404/31513 5722/31550 30420/31532 +f 13158/31514 13380/31551 30405/31515 +f 30406/31516 30405/31515 13591/31552 +f 30407/31517 30434/31553 30408/31518 +f 30435/31554 30422/31535 30408/31518 +f 30422/31535 30423/31536 30409/31519 +f 30410/31520 30424/31537 30436/31555 +f 30424/31537 30406/31516 30437/31556 +f 30436/31555 30413/31523 30410/31520 +f 30412/31522 30425/31538 30438/31557 +f 30412/31522 30438/31557 30426/31539 +f 30427/31540 30413/31523 30436/31555 +f 30429/31542 30428/31541 30395/31502 +f 30414/31524 30428/31541 30434/31553 +f 30414/31524 30434/31553 30407/31517 +f 30438/31557 30429/31542 30415/31525 +f 30438/31557 30415/31525 30426/31539 +f 30416/31527 5374/31558 5375/31526 +f 30423/31536 5520/31559 30416/31527 +f 5376/31560 30430/31543 30417/31528 +f 30397/31504 30430/31543 30431/31544 +f 5376/31560 30417/31528 5368/31545 +f 30431/31544 5398/31561 30419/31530 +f 5398/31561 5416/31546 30419/31530 +f 28315/31531 30421/31533 6246/31562 +f 30402/31511 30432/31547 30433/31548 +f 30432/31547 30420/31532 5722/31550 +f 6039/31563 30421/31533 30433/31548 +f 5693/31549 5722/31550 30404/31513 +f 13380/31551 13591/31552 30405/31515 +f 30437/31556 30406/31516 13591/31552 +f 30439/31564 30408/31518 30434/31553 +f 30440/31565 30422/31535 30435/31554 +f 30435/31554 30408/31518 30439/31564 +f 30422/31535 30440/31565 30423/31536 +f 30436/31555 30424/31537 30437/31556 +f 30441/31566 30438/31557 30425/31538 +f 30442/31567 30434/31553 30428/31541 +f 30429/31542 30438/31557 30441/31566 +f 30443/31568 5374/31558 30416/31527 +f 30416/31527 5520/31559 5454/31569 +f 30423/31536 5574/31570 5520/31559 +f 5389/31571 30430/31543 5376/31560 +f 30430/31543 5389/31571 30431/31544 +f 5398/31561 30431/31544 5389/31571 +f 30421/31533 6142/31572 6246/31562 +f 30432/31547 6039/31563 30433/31548 +f 30432/31547 5722/31550 5814/31573 +f 6142/31572 30421/31533 6039/31563 +f 13591/31552 13376/31574 30437/31556 +f 30434/31553 30442/31567 30439/31564 +f 30435/31554 30444/31575 30440/31565 +f 30435/31554 30439/31564 30445/31576 +f 5574/31570 30423/31536 30440/31565 +f 13485/31577 30436/31555 30437/31556 +f 5374/31558 30443/31568 5454/31569 +f 5454/31569 30443/31568 30416/31527 +f 30432/31547 5988/31578 6039/31563 +f 30432/31547 5814/31573 5988/31578 +f 13485/31577 30437/31556 13376/31574 +f 30442/31567 30446/31579 30439/31564 +f 30444/31575 5641/31580 30440/31565 +f 30445/31576 30444/31575 30435/31554 +f 30439/31564 30447/31581 30445/31576 +f 5641/31580 5574/31570 30440/31565 +f 30439/31564 30446/31579 30448/31582 +f 30449/31583 5641/31580 30444/31575 +f 30450/31584 30444/31575 30445/31576 +f 30451/31585 30445/31576 30447/31581 +f 30448/31582 30447/31581 30439/31564 +f 30448/31582 30446/31579 30452/31586 +f 30449/31583 5732/31587 5641/31580 +f 30449/31583 30444/31575 30450/31584 +f 30451/31585 30450/31584 30445/31576 +f 30453/31588 30451/31585 30447/31581 +f 30454/31589 30447/31581 30448/31582 +f 30448/31582 30452/31586 30455/31590 +f 5732/31587 30449/31583 30451/31585 +f 30450/31584 30451/31585 30449/31583 +f 30456/31591 30451/31585 30453/31588 +f 30453/31588 30447/31581 30457/31592 +f 30447/31581 30454/31589 30457/31592 +f 30455/31590 30454/31589 30448/31582 +f 30455/31590 30452/31586 30458/31593 +f 30451/31585 30456/31591 5732/31587 +f 30459/31594 30456/31591 30453/31588 +f 30460/31595 30453/31588 30457/31592 +f 30454/31589 30461/31596 30457/31592 +f 30461/31596 30454/31589 30455/31590 +f 30458/31593 30452/31586 30462/31597 +f 30458/31593 30463/31598 30455/31590 +f 30464/31599 5732/31587 30456/31591 +f 30459/31594 30464/31599 30456/31591 +f 30453/31588 30460/31595 30459/31594 +f 30461/31596 30460/31595 30457/31592 +f 30455/31590 30465/31600 30461/31596 +f 30452/31586 30466/31601 30462/31597 +f 30458/31593 30462/31597 30467/31602 +f 30463/31598 30458/31593 30468/31603 +f 30463/31598 30469/31604 30455/31590 +f 5793/31605 5732/31587 30464/31599 +f 30470/31606 30464/31599 30459/31594 +f 30460/31595 30471/31607 30459/31594 +f 30460/31595 30461/31596 30471/31607 +f 30465/31600 30455/31590 30469/31604 +f 30471/31607 30461/31596 30465/31600 +f 30466/31601 30472/31608 30462/31597 +f 30472/31608 30467/31602 30462/31597 +f 30473/31609 30458/31593 30467/31602 +f 30468/31603 30458/31593 30473/31609 +f 30474/31610 30463/31598 30468/31603 +f 30469/31604 30463/31598 30474/31610 +f 30464/31599 30475/31611 5793/31605 +f 30475/31611 30464/31599 30470/31606 +f 30476/31612 30470/31606 30459/31594 +f 30476/31612 30459/31594 30471/31607 +f 30477/31613 30465/31600 30469/31604 +f 30471/31607 30465/31600 30478/31614 +f 30472/31608 30479/31615 30467/31602 +f 30480/31616 30473/31609 30467/31602 +f 30481/31617 30468/31603 30473/31609 +f 30474/31610 30468/31603 30481/31617 +f 30469/31604 30474/31610 30482/31618 +f 30475/31611 5826/31619 5793/31605 +f 30483/31620 30475/31611 30470/31606 +f 30470/31606 30476/31612 30484/31621 +f 30476/31612 30471/31607 30478/31614 +f 30465/31600 30477/31613 30478/31614 +f 30485/31622 30477/31613 30469/31604 +f 30467/31602 30479/31615 30480/31616 +f 30486/31623 30479/31615 30472/31608 +f 30480/31616 30487/31624 30473/31609 +f 30481/31617 30473/31609 30487/31624 +f 30488/31625 30474/31610 30481/31617 +f 30474/31610 30488/31625 30482/31618 +f 30485/31622 30469/31604 30482/31618 +f 5826/31619 30475/31611 30489/31626 +f 30490/31627 30475/31611 30483/31620 +f 30483/31620 30470/31606 30491/31628 +f 30470/31606 30484/31621 30491/31628 +f 30478/31614 30484/31621 30476/31612 +f 30478/31614 30477/31613 30492/31629 +f 30477/31613 30485/31622 30493/31630 +f 30480/31616 30479/31615 30494/31631 +f 30494/31631 30479/31615 30486/31623 +f 30480/31616 30494/31631 30487/31624 +f 30495/31632 30481/31617 30487/31624 +f 30481/31617 30495/31632 30488/31625 +f 30488/31625 30496/31633 30482/31618 +f 30482/31618 30496/31633 30485/31622 +f 30489/31626 5905/31634 5826/31619 +f 30489/31626 30475/31611 30490/31627 +f 30490/31627 30483/31620 30497/31635 +f 30491/31628 30498/31636 30483/31620 +f 30484/31621 30492/31629 30491/31628 +f 30492/31629 30484/31621 30478/31614 +f 30493/31630 30492/31629 30477/31613 +f 30496/31633 30493/31630 30485/31622 +f 30494/31631 30486/31623 30499/31637 +f 30487/31624 30494/31631 30500/31638 +f 30495/31632 30487/31624 30501/31639 +f 30488/31625 30495/31632 30502/31640 +f 30488/31625 30502/31640 30496/31633 +f 30489/31626 30503/31641 5905/31634 +f 30490/31627 30497/31635 30489/31626 +f 30497/31635 30483/31620 30498/31636 +f 30504/31642 30498/31636 30491/31628 +f 30491/31628 30492/31629 30505/31643 +f 30493/31630 30505/31643 30492/31629 +f 30506/31644 30493/31630 30496/31633 +f 30507/31645 30499/31637 30486/31623 +f 30508/31646 30494/31631 30499/31637 +f 30494/31631 30508/31646 30500/31638 +f 30487/31624 30500/31638 30501/31639 +f 30509/31647 30495/31632 30501/31639 +f 30502/31640 30495/31632 30510/31648 +f 30502/31640 30506/31644 30496/31633 +f 5905/31634 30503/31641 5906/31649 +f 30497/31635 30503/31641 30489/31626 +f 30497/31635 30498/31636 30511/31650 +f 30505/31643 30504/31642 30491/31628 +f 30511/31650 30498/31636 30504/31642 +f 30493/31630 30512/31651 30505/31643 +f 30506/31644 30513/31652 30493/31630 +f 30507/31645 30514/31653 30499/31637 +f 30508/31646 30499/31637 26003/31654 +f 30508/31646 30515/31655 30500/31638 +f 30501/31639 30500/31638 30515/31655 +f 30509/31647 30510/31648 30495/31632 +f 30506/31644 30509/31647 30501/31639 +f 30509/31647 30502/31640 30510/31648 +f 30506/31644 30502/31640 30509/31647 +f 30516/31656 5906/31649 30503/31641 +f 30503/31641 30497/31635 30517/31657 +f 30511/31650 30517/31657 30497/31635 +f 30504/31642 30505/31643 30512/31651 +f 30518/31658 30511/31650 30504/31642 +f 30512/31651 30493/31630 30513/31652 +f 30513/31652 30506/31644 30515/31655 +f 14325/31659 30514/31653 30507/31645 +f 30499/31637 30514/31653 25994/31660 +f 26003/31654 30515/31655 30508/31646 +f 26003/31654 30499/31637 25994/31660 +f 30501/31639 30515/31655 30506/31644 +f 6003/31661 5906/31649 30516/31656 +f 30503/31641 30517/31657 30516/31656 +f 30517/31657 30511/31650 30519/31662 +f 30520/31663 30504/31642 30512/31651 +f 30518/31658 30521/31664 30511/31650 +f 30522/31665 30518/31658 30504/31642 +f 30523/31666 30512/31651 30513/31652 +f 30513/31652 30515/31655 30523/31666 +f 14254/31667 30514/31653 14325/31659 +f 30514/31653 30524/31668 25994/31660 +f 30525/31669 30515/31655 26003/31654 +f 6003/31661 30516/31656 30526/31670 +f 30517/31657 30527/31671 30516/31656 +f 30519/31662 30527/31671 30517/31657 +f 30519/31662 30511/31650 30521/31664 +f 30522/31665 30504/31642 30520/31663 +f 30512/31651 30528/31672 30520/31663 +f 30529/31673 30521/31664 30518/31658 +f 30522/31665 26028/31674 30518/31658 +f 30528/31672 30512/31651 30523/31666 +f 30515/31655 30525/31669 30523/31666 +f 14254/31667 30524/31668 30514/31653 +f 25994/31660 30524/31668 30530/31675 +f 30525/31669 26003/31654 26011/31676 +f 30531/31677 30526/31670 30516/31656 +f 30526/31670 30531/31677 6003/31661 +f 30516/31656 30527/31671 30532/31678 +f 30532/31678 30527/31671 30519/31662 +f 30521/31664 30533/31679 30519/31662 +f 30534/31680 30522/31665 30520/31663 +f 26019/31681 30520/31663 30528/31672 +f 26032/31682 30521/31664 30529/31673 +f 30518/31658 30535/31683 30529/31673 +f 26020/31684 26028/31674 30522/31665 +f 30535/31683 30518/31658 26028/31674 +f 30536/31685 30528/31672 30523/31666 +f 30523/31666 30525/31669 30537/31686 +f 14255/31687 30524/31668 14254/31667 +f 25994/31660 30530/31675 25975/31688 +f 30530/31675 30524/31668 14255/31687 +f 30537/31686 30525/31669 26011/31676 +f 30538/31689 30531/31677 30516/31656 +f 30531/31677 6155/31690 6003/31661 +f 30532/31678 30539/31691 30516/31656 +f 30533/31679 30532/31678 30519/31662 +f 30521/31664 26036/31692 30533/31679 +f 30534/31680 26020/31684 30522/31665 +f 30540/31693 30534/31680 30520/31663 +f 26019/31681 30528/31672 30536/31685 +f 30540/31693 30520/31663 26019/31681 +f 26032/31682 26036/31692 30521/31664 +f 26029/31694 26032/31682 30529/31673 +f 30529/31673 30535/31683 26029/31694 +f 30535/31683 26028/31674 26029/31694 +f 26015/31695 30536/31685 30523/31666 +f 30537/31686 26015/31695 30523/31666 +f 14255/31687 25975/31688 30530/31675 +f 26011/31676 26016/31696 30537/31686 +f 30531/31677 30538/31689 30541/31697 +f 30539/31691 30538/31689 30516/31656 +f 30541/31697 6155/31690 30531/31677 +f 30539/31691 30532/31678 30533/31679 +f 26037/31698 30533/31679 26036/31692 +f 26020/31684 30534/31680 26024/31699 +f 30540/31693 26024/31699 30534/31680 +f 30536/31685 26014/31700 26019/31681 +f 26019/31681 26024/31699 30540/31693 +f 26014/31700 30536/31685 26015/31695 +f 26015/31695 30537/31686 26016/31696 +f 14186/31701 25975/31688 14255/31687 +f 30542/31702 30541/31697 30538/31689 +f 30539/31691 26037/31698 30538/31689 +f 30541/31697 6216/31703 6155/31690 +f 30533/31679 26037/31698 30539/31691 +f 30543/31704 30542/31702 30538/31689 +f 30541/31697 30542/31702 6216/31703 +f 30538/31689 26037/31698 26038/31705 +f 30542/31702 30543/31704 26035/31706 +f 30543/31704 30538/31689 26038/31705 +f 26035/31706 6216/31703 30542/31702 +f 26035/31706 30543/31704 26038/31705 +f 30544/31707 30545/31708 30546/31709 +f 30545/31708 30544/31707 30547/31710 +f 30545/31708 30548/31711 30546/31709 +f 30549/31712 30544/31707 30546/31709 +f 30550/31713 30547/31710 30544/31707 +f 30547/31710 30551/31714 30545/31708 +f 30545/31708 30552/31715 30548/31711 +f 30546/31709 30548/31711 30553/31716 +f 30544/31707 30549/31712 30550/31713 +f 30546/31709 30554/31717 30549/31712 +f 30550/31713 30555/31718 30547/31710 +f 30545/31708 30551/31714 30556/31719 +f 30547/31710 30557/31720 30551/31714 +f 30556/31719 30552/31715 30545/31708 +f 30548/31711 30552/31715 30558/31721 +f 30559/31722 30553/31716 30548/31711 +f 30546/31709 30553/31716 30560/31723 +f 30549/31712 30561/31724 30550/31713 +f 30560/31723 30554/31717 30546/31709 +f 30562/31725 30549/31712 30554/31717 +f 30550/31713 30563/31726 30555/31718 +f 30547/31710 30555/31718 30557/31720 +f 30556/31719 30551/31714 30564/31727 +f 30565/31728 30551/31714 30557/31720 +f 30558/31721 30552/31715 30556/31719 +f 30566/31729 30548/31711 30558/31721 +f 30559/31722 30567/31730 30553/31716 +f 30566/31729 30559/31722 30548/31711 +f 30560/31723 30553/31716 30568/31731 +f 30549/31712 30562/31725 30561/31724 +f 30561/31724 30563/31726 30550/31713 +f 30554/31717 30560/31723 30569/31732 +f 30562/31725 30554/31717 30570/31733 +f 30571/31734 30555/31718 30563/31726 +f 30572/31735 30557/31720 30555/31718 +f 30556/31719 30564/31727 30573/31736 +f 30574/31737 30564/31727 30551/31714 +f 30574/31737 30551/31714 30565/31728 +f 30557/31720 30572/31735 30565/31728 +f 30556/31719 30573/31736 30558/31721 +f 30558/31721 30573/31736 30566/31729 +f 30553/31716 30567/31730 30575/31738 +f 30567/31730 30559/31722 30576/31739 +f 30577/31740 30559/31722 30566/31729 +f 30553/31716 30575/31738 30568/31731 +f 30578/31741 30560/31723 30568/31731 +f 30579/31742 30561/31724 30562/31725 +f 30563/31726 30561/31724 30579/31742 +f 30560/31723 30578/31741 30569/31732 +f 30569/31732 30580/31743 30554/31717 +f 30570/31733 30581/31744 30562/31725 +f 30554/31717 30580/31743 30570/31733 +f 30563/31726 30582/31745 30571/31734 +f 30555/31718 30571/31734 30583/31746 +f 30572/31735 30555/31718 30583/31746 +f 30573/31736 30564/31727 30584/31747 +f 30574/31737 30585/31748 30564/31727 +f 30574/31737 30565/31728 30586/31749 +f 30565/31728 30572/31735 30586/31749 +f 30573/31736 30587/31750 30566/31729 +f 30567/31730 30588/31751 30575/31738 +f 30576/31739 30589/31752 30567/31730 +f 30576/31739 30559/31722 30577/31740 +f 30566/31729 30587/31750 30577/31740 +f 30568/31731 30575/31738 30590/31753 +f 30568/31731 30590/31753 30578/31741 +f 30591/31754 30579/31742 30562/31725 +f 30563/31726 30579/31742 30592/31755 +f 30578/31741 30593/31756 30569/31732 +f 30580/31743 30569/31732 30594/31757 +f 30595/31758 30562/31725 30581/31744 +f 30581/31744 30570/31733 30596/31759 +f 30580/31743 30594/31757 30570/31733 +f 30597/31760 30582/31745 30563/31726 +f 30571/31734 30582/31745 30583/31746 +f 30586/31749 30572/31735 30583/31746 +f 30584/31747 30587/31750 30573/31736 +f 30564/31727 30585/31748 30584/31747 +f 30574/31737 30598/31761 30585/31748 +f 30586/31749 30598/31761 30574/31737 +f 30588/31751 30567/31730 30589/31752 +f 30599/31762 30589/31752 30576/31739 +f 30600/31763 30576/31739 30577/31740 +f 30587/31750 30601/31764 30577/31740 +f 30590/31753 30575/31738 30602/31765 +f 30590/31753 30593/31756 30578/31741 +f 30562/31725 30595/31758 30591/31754 +f 30603/31766 30579/31742 30591/31754 +f 30563/31726 30592/31755 30597/31760 +f 30604/31767 30592/31755 30579/31742 +f 30569/31732 30593/31756 30594/31757 +f 30581/31744 30605/31768 30595/31758 +f 30581/31744 30596/31759 30606/31769 +f 30594/31757 30596/31759 30570/31733 +f 30582/31745 30597/31760 30607/31770 +f 30583/31746 30582/31745 30608/31771 +f 30608/31771 30586/31749 30583/31746 +f 30584/31747 30609/31772 30587/31750 +f 30584/31747 30585/31748 30609/31772 +f 30585/31748 30598/31761 30609/31772 +f 30610/31773 30598/31761 30586/31749 +f 30600/31763 30599/31762 30576/31739 +f 30601/31764 30600/31763 30577/31740 +f 30601/31764 30587/31750 30609/31772 +f 30575/31738 30611/31774 30602/31765 +f 30612/31775 30590/31753 30602/31765 +f 30590/31753 30613/31776 30593/31756 +f 30595/31758 30614/31777 30591/31754 +f 30604/31767 30579/31742 30603/31766 +f 30614/31777 30603/31766 30591/31754 +f 30597/31760 30592/31755 30615/31778 +f 30615/31778 30592/31755 30604/31767 +f 30594/31757 30593/31756 30616/31779 +f 30605/31768 30617/31780 30595/31758 +f 30605/31768 30581/31744 30606/31769 +f 30596/31759 30618/31781 30606/31769 +f 30619/31782 30596/31759 30594/31757 +f 30607/31770 30620/31783 30582/31745 +f 30597/31760 30615/31778 30607/31770 +f 30608/31771 30582/31745 30620/31783 +f 30586/31749 30608/31771 30621/31784 +f 30622/31785 30609/31772 30598/31761 +f 30598/31761 30610/31773 30622/31785 +f 30623/31786 30610/31773 30586/31749 +f 30624/31787 30599/31762 30600/31763 +f 30600/31763 30601/31764 30625/31788 +f 30609/31772 30622/31785 30601/31764 +f 30602/31765 30611/31774 30626/31789 +f 30602/31765 30626/31789 30612/31775 +f 30590/31753 30612/31775 30613/31776 +f 30613/31776 30616/31779 30593/31756 +f 30595/31758 30617/31780 30614/31777 +f 30627/31790 30604/31767 30603/31766 +f 30603/31766 30614/31777 30628/31791 +f 30627/31790 30615/31778 30604/31767 +f 30619/31782 30594/31757 30616/31779 +f 30629/31792 30617/31780 30605/31768 +f 30606/31769 30630/31793 30605/31768 +f 30618/31781 30596/31759 30631/31794 +f 30618/31781 30632/31795 30606/31769 +f 30596/31759 30619/31782 30631/31794 +f 30633/31796 30620/31783 30607/31770 +f 30615/31778 30634/31797 30607/31770 +f 30620/31783 30635/31798 30608/31771 +f 30621/31784 30608/31771 30635/31798 +f 30586/31749 30621/31784 19010/31799 +f 30636/31800 30622/31785 30610/31773 +f 30623/31786 30637/31801 30610/31773 +f 19010/31799 30623/31786 30586/31749 +f 30624/31787 30600/31763 30625/31788 +f 30601/31764 30622/31785 30625/31788 +f 30613/31776 30612/31775 30626/31789 +f 30613/31776 30626/31789 30616/31779 +f 30628/31791 30614/31777 30617/31780 +f 30628/31791 30627/31790 30603/31766 +f 30616/31779 30638/31802 30619/31782 +f 30639/31803 30629/31792 30605/31768 +f 30640/31804 30617/31780 30629/31792 +f 30606/31769 30632/31795 30630/31793 +f 30641/31805 30605/31768 30630/31793 +f 30618/31781 30631/31794 30642/31806 +f 30632/31795 30618/31781 30642/31806 +f 30631/31794 30619/31782 30643/31807 +f 30620/31783 30633/31796 30644/31808 +f 30645/31809 30633/31796 30607/31770 +f 30607/31770 30634/31797 30645/31809 +f 30644/31808 30635/31798 30620/31783 +f 30644/31808 30621/31784 30635/31798 +f 19010/31799 30621/31784 30646/31810 +f 30647/31811 30636/31800 30610/31773 +f 30648/31812 30622/31785 30636/31800 +f 30649/31813 30610/31773 30637/31801 +f 30637/31801 30623/31786 30650/31814 +f 30623/31786 19010/31799 30651/31815 +f 30652/31816 30624/31787 30625/31788 +f 30622/31785 30648/31812 30625/31788 +f 30616/31779 30626/31789 30653/31817 +f 30617/31780 30640/31804 30628/31791 +f 30619/31782 30638/31802 30643/31807 +f 30638/31802 30616/31779 30653/31817 +f 30605/31768 30641/31805 30639/31803 +f 30640/31804 30629/31792 30639/31803 +f 30630/31793 30632/31795 30641/31805 +f 30631/31794 30654/31818 30642/31806 +f 30655/31819 30632/31795 30642/31806 +f 30631/31794 30643/31807 30654/31818 +f 30656/31820 30644/31808 30633/31796 +f 30633/31796 30645/31809 30657/31821 +f 30634/31797 30657/31821 30645/31809 +f 30644/31808 30658/31822 30621/31784 +f 30621/31784 30659/31823 30646/31810 +f 19010/31799 30646/31810 30660/31824 +f 30647/31811 30610/31773 29484/31825 +f 30652/31816 30636/31800 30647/31811 +f 30648/31812 30636/31800 30652/31816 +f 30649/31813 29493/31826 30610/31773 +f 30649/31813 30637/31801 30661/31827 +f 30662/31828 30650/31814 30623/31786 +f 30637/31801 30650/31814 30663/31829 +f 30651/31815 19010/31799 30664/31830 +f 30651/31815 30662/31828 30623/31786 +f 30624/31787 30652/31816 30665/31831 +f 30648/31812 30652/31816 30625/31788 +f 30626/31789 30666/31832 30653/31817 +f 30638/31802 30667/31833 30643/31807 +f 30668/31834 30638/31802 30653/31817 +f 30639/31803 30641/31805 30669/31835 +f 30640/31804 30639/31803 30669/31835 +f 30655/31819 30641/31805 30632/31795 +f 30654/31818 30670/31836 30642/31806 +f 30642/31806 30670/31836 30655/31819 +f 30671/31837 30654/31818 30643/31807 +f 30656/31820 30658/31822 30644/31808 +f 30633/31796 30672/31838 30656/31820 +f 30633/31796 30657/31821 30673/31839 +f 30621/31784 30658/31822 30674/31840 +f 30659/31823 30621/31784 27657/31841 +f 30646/31810 30659/31823 30664/31830 +f 30660/31824 30664/31830 19010/31799 +f 30646/31810 30664/31830 30660/31824 +f 29484/31825 30610/31773 29493/31826 +f 30652/31816 30647/31811 30665/31831 +f 30661/31827 29493/31826 30649/31813 +f 30663/31829 30661/31827 30637/31801 +f 30650/31814 30662/31828 30675/31842 +f 30650/31814 30675/31842 30663/31829 +f 30664/31830 30676/31843 30651/31815 +f 30662/31828 30651/31815 30677/31844 +f 30678/31845 30653/31817 30666/31832 +f 30667/31833 30638/31802 30668/31834 +f 30643/31807 30667/31833 30679/31846 +f 30668/31834 30653/31817 30678/31845 +f 30669/31835 30641/31805 30680/31847 +f 30641/31805 30655/31819 30680/31847 +f 30670/31836 30654/31818 30681/31848 +f 30681/31848 30655/31819 30670/31836 +f 30671/31837 30682/31849 30654/31818 +f 30671/31837 30643/31807 30679/31846 +f 30656/31820 30683/31850 30658/31822 +f 30672/31838 30683/31850 30656/31820 +f 30673/31839 30672/31838 30633/31796 +f 30674/31840 30658/31822 30683/31850 +f 30684/31851 30621/31784 30674/31840 +f 27657/31841 30621/31784 27671/31852 +f 27657/31841 27700/31853 30659/31823 +f 30685/31854 30664/31830 30659/31823 +f 29493/31826 30661/31827 30686/31855 +f 30675/31842 30661/31827 30663/31829 +f 30675/31842 30662/31828 30687/31856 +f 30664/31830 30688/31857 30676/31843 +f 30677/31844 30651/31815 30676/31843 +f 30677/31844 30689/31858 30662/31828 +f 30678/31845 30666/31832 30690/31859 +f 30691/31860 30667/31833 30668/31834 +f 30679/31846 30667/31833 30692/31861 +f 30668/31834 30678/31845 30693/31862 +f 30669/31835 30680/31847 30694/31863 +f 30695/31864 30680/31847 30655/31819 +f 30681/31848 30654/31818 30682/31849 +f 30695/31864 30655/31819 30681/31848 +f 30682/31849 30671/31837 30696/31865 +f 30679/31846 30696/31865 30671/31837 +f 30683/31850 30672/31838 30674/31840 +f 30673/31839 30697/31866 30672/31838 +f 30621/31784 30684/31851 30698/31867 +f 30674/31840 30699/31868 30684/31851 +f 30700/31869 27671/31852 30621/31784 +f 30659/31823 27700/31853 30701/31870 +f 30664/31830 30685/31854 30702/31871 +f 30659/31823 30703/31872 30685/31854 +f 30661/31827 30704/31873 30686/31855 +f 29493/31826 30686/31855 30705/31874 +f 30706/31875 30661/31827 30675/31842 +f 30662/31828 30707/31876 30687/31856 +f 30687/31856 30707/31876 30675/31842 +f 30708/31877 30688/31857 30664/31830 +f 30676/31843 30688/31857 30709/31878 +f 30677/31844 30676/31843 30710/31879 +f 30689/31858 30677/31844 30710/31879 +f 30662/31828 30689/31858 30707/31876 +f 30690/31859 30711/31880 30678/31845 +f 30667/31833 30691/31860 30692/31861 +f 30693/31862 30691/31860 30668/31834 +f 30679/31846 30692/31861 30712/31881 +f 30711/31880 30693/31862 30678/31845 +f 30680/31847 30695/31864 30694/31863 +f 30681/31848 30682/31849 30713/31882 +f 30681/31848 30714/31883 30695/31864 +f 30715/31884 30682/31849 30696/31865 +f 30712/31881 30696/31865 30679/31846 +f 30716/31885 30674/31840 30672/31838 +f 30716/31885 30672/31838 30697/31866 +f 30684/31851 30717/31886 30698/31867 +f 30700/31869 30621/31784 30698/31867 +f 30699/31868 30674/31840 30716/31885 +f 30718/31887 30684/31851 30699/31868 +f 30719/31888 27671/31852 30700/31869 +f 27700/31853 27750/31889 30701/31870 +f 30659/31823 30701/31870 30720/31890 +f 30721/31891 30664/31830 30702/31871 +f 30685/31854 30722/31892 30702/31871 +f 30685/31854 30703/31872 30723/31893 +f 30659/31823 30724/31894 30703/31872 +f 30725/31895 30686/31855 30704/31873 +f 30726/31896 30704/31873 30661/31827 +f 30686/31855 30727/31897 30705/31874 +f 30705/31874 29455/31898 29493/31826 +f 30728/31899 30661/31827 30706/31875 +f 30729/31900 30706/31875 30675/31842 +f 30730/31901 30675/31842 30707/31876 +f 30731/31902 30688/31857 30708/31877 +f 30664/31830 30721/31891 30708/31877 +f 30732/31903 30676/31843 30709/31878 +f 30733/31904 30709/31878 30688/31857 +f 30676/31843 30732/31903 30710/31879 +f 30710/31879 30734/31905 30689/31858 +f 30735/31906 30707/31876 30689/31858 +f 30691/31860 30736/31907 30692/31861 +f 30736/31907 30691/31860 30693/31862 +f 30712/31881 30692/31861 30737/31908 +f 30711/31880 30736/31907 30693/31862 +f 30714/31883 30694/31863 30695/31864 +f 30714/31883 30681/31848 30713/31882 +f 30682/31849 30715/31884 30713/31882 +f 30696/31865 30712/31881 30715/31884 +f 30697/31866 30699/31868 30716/31885 +f 30684/31851 30738/31909 30717/31886 +f 30717/31886 30719/31888 30698/31867 +f 30719/31888 30700/31869 30698/31867 +f 30718/31887 30699/31868 30697/31866 +f 30738/31909 30684/31851 30718/31887 +f 27671/31852 30719/31888 30739/31910 +f 30701/31870 27750/31889 27795/31911 +f 30724/31894 30659/31823 30720/31890 +f 30701/31870 27795/31911 30720/31890 +f 30740/31912 30721/31891 30702/31871 +f 30685/31854 30723/31893 30722/31892 +f 30722/31892 30741/31913 30702/31871 +f 30742/31914 30723/31893 30703/31872 +f 30724/31894 30743/31915 30703/31872 +f 30725/31895 30704/31873 30744/31916 +f 30745/31917 30686/31855 30725/31895 +f 30726/31896 30746/31918 30704/31873 +f 30726/31896 30661/31827 30728/31899 +f 30745/31917 30727/31897 30686/31855 +f 30747/31919 30705/31874 30727/31897 +f 30705/31874 30748/31920 29455/31898 +f 30749/31921 30728/31899 30706/31875 +f 30729/31900 30750/31922 30706/31875 +f 30729/31900 30675/31842 30751/31923 +f 30751/31923 30675/31842 30730/31901 +f 30707/31876 30752/31924 30730/31901 +f 30708/31877 30721/31891 30731/31902 +f 30731/31902 30733/31904 30688/31857 +f 30732/31903 30709/31878 30733/31904 +f 30732/31903 30753/31925 30710/31879 +f 30754/31926 30734/31905 30710/31879 +f 30689/31858 30734/31905 30735/31906 +f 30752/31924 30707/31876 30735/31906 +f 30737/31908 30692/31861 30736/31907 +f 30755/31927 30712/31881 30737/31908 +f 30714/31883 30756/31928 30694/31863 +f 30756/31928 30714/31883 30713/31882 +f 30713/31882 30715/31884 30757/31929 +f 30712/31881 30755/31927 30715/31884 +f 30738/31909 30758/31930 30717/31886 +f 30717/31886 30758/31930 30719/31888 +f 30759/31931 30718/31887 30697/31866 +f 30738/31909 30718/31887 30760/31932 +f 30761/31933 30739/31910 30719/31888 +f 30739/31910 30762/31934 27671/31852 +f 30763/31935 30724/31894 30720/31890 +f 30763/31935 30720/31890 27795/31911 +f 30740/31912 30764/31936 30721/31891 +f 30702/31871 30741/31913 30740/31912 +f 30741/31913 30722/31892 30723/31893 +f 30742/31914 30703/31872 30765/31937 +f 30742/31914 30766/31938 30723/31893 +f 30724/31894 30767/31939 30743/31915 +f 30765/31937 30703/31872 30743/31915 +f 30744/31916 30704/31873 30746/31918 +f 30725/31895 30744/31916 30768/31940 +f 30725/31895 30769/31941 30745/31917 +f 30770/31942 30746/31918 30726/31896 +f 30749/31921 30726/31896 30728/31899 +f 30745/31917 30747/31919 30727/31897 +f 30747/31919 30748/31920 30705/31874 +f 29455/31898 30748/31920 29600/31943 +f 30706/31875 30771/31944 30749/31921 +f 30729/31900 30772/31945 30750/31922 +f 30750/31922 30771/31944 30706/31875 +f 30751/31923 18903/31946 30729/31900 +f 30730/31901 18903/31946 30751/31923 +f 18975/31947 30730/31901 30752/31924 +f 30721/31891 30764/31936 30731/31902 +f 30773/31948 30733/31904 30731/31902 +f 30773/31948 30732/31903 30733/31904 +f 30754/31926 30710/31879 30753/31925 +f 30732/31903 30774/31949 30753/31925 +f 30734/31905 30754/31926 19110/31950 +f 30734/31905 30775/31951 30735/31906 +f 30752/31924 30735/31906 19008/31952 +f 30756/31928 30713/31882 30776/31953 +f 30757/31929 30715/31884 30777/31954 +f 30776/31953 30713/31882 30757/31929 +f 30777/31954 30715/31884 30755/31927 +f 30758/31930 30738/31909 30760/31932 +f 30761/31933 30719/31888 30758/31930 +f 30759/31931 30778/31955 30718/31887 +f 30760/31932 30718/31887 30778/31955 +f 30762/31934 30739/31910 30761/31933 +f 30762/31934 27656/31956 27671/31852 +f 30779/31957 30724/31894 30763/31935 +f 27795/31911 30780/31958 30763/31935 +f 30740/31912 30781/31959 30764/31936 +f 30781/31959 30740/31912 30741/31913 +f 30723/31893 30782/31960 30741/31913 +f 30765/31937 30766/31938 30742/31914 +f 30782/31960 30723/31893 30766/31938 +f 30724/31894 30783/31961 30767/31939 +f 30784/31962 30743/31915 30767/31939 +f 30765/31937 30743/31915 30784/31962 +f 30744/31916 30746/31918 30785/31963 +f 30744/31916 30786/31964 30768/31940 +f 30769/31941 30725/31895 30768/31940 +f 30745/31917 30769/31941 30747/31919 +f 30746/31918 30770/31942 30785/31963 +f 30770/31942 30726/31896 30787/31965 +f 30787/31965 30726/31896 30749/31921 +f 30748/31920 30747/31919 29725/31966 +f 30748/31920 29725/31966 29600/31943 +f 30788/31967 30749/31921 30771/31944 +f 18903/31946 30772/31945 30729/31900 +f 30772/31945 18774/31968 30750/31922 +f 30750/31922 18723/31969 30771/31944 +f 18975/31947 18903/31946 30730/31901 +f 19008/31952 18975/31947 30752/31924 +f 30731/31902 30764/31936 30789/31970 +f 30789/31970 30773/31948 30731/31902 +f 30732/31903 30773/31948 30774/31949 +f 30754/31926 30753/31925 19176/31971 +f 30774/31949 19176/31971 30753/31925 +f 19110/31950 30754/31926 19176/31971 +f 30734/31905 19110/31950 30775/31951 +f 30775/31951 19008/31952 30735/31906 +f 30757/31929 30777/31954 30790/31972 +f 30790/31972 30776/31953 30757/31929 +f 30761/31933 30758/31930 30760/31932 +f 30791/31973 30778/31955 30759/31931 +f 30760/31932 30778/31955 30791/31973 +f 30762/31934 30761/31933 30792/31974 +f 30793/31975 27656/31956 30762/31934 +f 30794/31976 30779/31957 30763/31935 +f 30783/31961 30724/31894 30779/31957 +f 27825/31977 30780/31958 27795/31911 +f 30763/31935 30780/31958 30794/31976 +f 30781/31959 30795/31978 30764/31936 +f 30796/31979 30781/31959 30741/31913 +f 30741/31913 30782/31960 30796/31979 +f 30797/31980 30766/31938 30765/31937 +f 30766/31938 30798/31981 30782/31960 +f 30767/31939 30783/31961 30799/31982 +f 30767/31939 30800/31983 30784/31962 +f 30801/31984 30765/31937 30784/31962 +f 30785/31963 30786/31964 30744/31916 +f 29844/31985 30768/31940 30786/31964 +f 30769/31941 30768/31940 29752/31986 +f 30747/31919 30769/31941 29725/31966 +f 30785/31963 30770/31942 30802/31987 +f 30802/31987 30770/31942 30787/31965 +f 30749/31921 30803/31988 30787/31965 +f 30803/31988 30749/31921 30788/31967 +f 30788/31967 30771/31944 30804/31989 +f 18774/31968 30772/31945 18903/31946 +f 18774/31968 18723/31969 30750/31922 +f 30771/31944 18723/31969 30804/31989 +f 30764/31936 30795/31978 30789/31970 +f 19395/31990 30773/31948 30789/31970 +f 30773/31948 19251/31991 30774/31949 +f 19251/31991 19176/31971 30774/31949 +f 19110/31950 19043/31992 30775/31951 +f 30775/31951 19043/31992 19008/31952 +f 30761/31933 30760/31932 30805/31993 +f 30805/31993 30760/31932 30791/31973 +f 30805/31993 30792/31974 30761/31933 +f 30792/31974 30806/31994 30762/31934 +f 27656/31956 30793/31975 30807/31995 +f 30806/31994 30793/31975 30762/31934 +f 30779/31957 30794/31976 30808/31996 +f 28064/31997 30783/31961 30779/31957 +f 30794/31976 30780/31958 27825/31977 +f 30795/31978 30781/31959 30809/31998 +f 30781/31959 30796/31979 30809/31998 +f 30796/31979 30782/31960 30798/31981 +f 30797/31980 19511/31999 30766/31938 +f 30765/31937 30801/31984 30797/31980 +f 19511/31999 30798/31981 30766/31938 +f 28079/32000 30799/31982 30783/31961 +f 30767/31939 30799/31982 30810/32001 +f 30811/32002 30800/31983 30767/31939 +f 30784/31962 30800/31983 30801/31984 +f 30812/32003 30786/31964 30785/31963 +f 29876/32004 29844/31985 30786/31964 +f 29797/32005 30768/31940 29844/31985 +f 29752/31986 30768/31940 29797/32005 +f 29725/31966 30769/31941 29752/31986 +f 30785/31963 30802/31987 30812/32003 +f 30813/32006 30802/31987 30787/31965 +f 30787/31965 30803/31988 30813/32006 +f 30788/31967 30814/32007 30803/31988 +f 30788/31967 30804/31989 30815/32008 +f 18609/32009 30804/31989 18723/31969 +f 30789/31970 30795/31978 30816/32010 +f 19251/31991 30773/31948 19395/31990 +f 30816/32010 19395/31990 30789/31970 +f 30805/31993 30791/31973 30817/32011 +f 30806/31994 30792/31974 30805/31993 +f 30807/31995 30793/31975 30818/32012 +f 27656/31956 30807/31995 27689/32013 +f 30818/32012 30793/31975 30806/31994 +f 30819/32014 30808/31996 30794/31976 +f 30779/31957 30808/31996 28064/31997 +f 28064/31997 28079/32000 30783/31961 +f 27825/31977 30819/32014 30794/31976 +f 30795/31978 30809/31998 30816/32010 +f 30796/31979 30798/31981 30809/31998 +f 30797/31980 30820/32015 19511/31999 +f 30821/32016 30797/31980 30801/31984 +f 19511/31999 19541/32017 30798/31981 +f 28079/32000 28078/32018 30799/31982 +f 28078/32018 30810/32001 30799/31982 +f 30767/31939 30810/32001 30811/32002 +f 30821/32016 30800/31983 30811/32002 +f 30801/31984 30800/31983 30821/32016 +f 30786/31964 30812/32003 29876/32004 +f 30802/31987 30813/32006 30812/32003 +f 30822/32019 30813/32006 30803/31988 +f 30788/31967 30815/32008 30814/32007 +f 30814/32007 30822/32019 30803/31988 +f 30815/32008 30804/31989 30823/32020 +f 30823/32020 30804/31989 18609/32009 +f 30816/32010 19470/32021 19395/31990 +f 30806/31994 30805/31993 30817/32011 +f 30791/31973 30824/32022 30817/32011 +f 30818/32012 30825/32023 30807/31995 +f 27689/32013 30807/31995 30826/32024 +f 30827/32025 30818/32012 30806/31994 +f 27982/32026 30808/31996 30819/32014 +f 28064/31997 30808/31996 27982/32026 +f 27824/32027 30819/32014 27825/31977 +f 30809/31998 30828/32028 30816/32010 +f 30809/31998 30798/31981 19541/32017 +f 19511/31999 30820/32015 30829/32029 +f 30797/31980 30821/32016 30820/32015 +f 28078/32018 30830/32030 30810/32001 +f 30810/32001 30831/32031 30811/32002 +f 30831/32031 30821/32016 30811/32002 +f 30812/32003 30813/32006 29876/32004 +f 30813/32006 30822/32019 30832/32032 +f 30833/32033 30814/32007 30815/32008 +f 30822/32019 30814/32007 30834/32034 +f 30835/32035 30815/32008 30823/32020 +f 30823/32020 18609/32009 18502/32036 +f 30828/32028 19470/32021 30816/32010 +f 30817/32011 30836/32037 30806/31994 +f 30817/32011 30824/32022 30837/32038 +f 30807/31995 30825/32023 30826/32024 +f 30818/32012 30827/32025 30825/32023 +f 30826/32024 27701/32039 27689/32013 +f 30836/32037 30827/32025 30806/31994 +f 30819/32014 27824/32027 27982/32026 +f 19542/32040 30828/32028 30809/31998 +f 30809/31998 19541/32017 19542/32040 +f 30820/32015 30831/32031 30829/32029 +f 30821/32016 30831/32031 30820/32015 +f 30838/32041 30810/32001 30830/32030 +f 30831/32031 30810/32001 30838/32041 +f 30813/32006 29894/32042 29876/32004 +f 30832/32032 30822/32019 30834/32034 +f 29894/32042 30813/32006 30832/32032 +f 30833/32033 30834/32034 30814/32007 +f 30833/32033 30815/32008 30839/32043 +f 30839/32043 30815/32008 30835/32035 +f 30835/32035 30823/32020 18502/32036 +f 30828/32028 19510/32044 19470/32021 +f 30837/32038 30836/32037 30817/32011 +f 30840/32045 30837/32038 30824/32022 +f 30825/32023 30841/32046 30826/32024 +f 30825/32023 30827/32025 30841/32046 +f 30842/32047 27701/32039 30826/32024 +f 30843/32048 30827/32025 30836/32037 +f 19542/32040 19510/32044 30828/32028 +f 30844/32049 30829/32029 30831/32031 +f 30830/32030 30844/32049 30838/32041 +f 30844/32049 30831/32031 30838/32041 +f 30845/32050 30832/32032 30834/32034 +f 30832/32032 29896/32051 29894/32042 +f 30834/32034 30833/32033 30839/32043 +f 30835/32035 30846/32052 30839/32043 +f 30835/32035 18502/32036 18395/32053 +f 30836/32037 30837/32038 30843/32048 +f 30847/32054 30840/32045 30824/32022 +f 30837/32038 30840/32045 30848/32055 +f 30826/32024 30841/32046 30842/32047 +f 30843/32048 30841/32046 30827/32025 +f 30842/32047 30849/32056 27701/32039 +f 30834/32034 30850/32057 30845/32050 +f 30851/32058 30832/32032 30845/32050 +f 29896/32051 30832/32032 30852/32059 +f 30839/32043 30853/32060 30834/32034 +f 18395/32053 30846/32052 30835/32035 +f 30839/32043 30846/32052 30853/32060 +f 30843/32048 30837/32038 30848/32055 +f 30840/32045 30847/32054 30854/32061 +f 30840/32045 30854/32061 30848/32055 +f 30842/32047 30841/32046 30855/32062 +f 30841/32046 30843/32048 30855/32062 +f 30849/32056 30842/32047 30856/32063 +f 27701/32039 30849/32056 27702/32064 +f 30857/32065 30845/32050 30850/32057 +f 30834/32034 30853/32060 30850/32057 +f 30832/32032 30851/32058 30852/32059 +f 30858/32066 30851/32058 30845/32050 +f 30852/32059 29912/32067 29896/32051 +f 30846/32052 18395/32053 30859/32068 +f 30860/32069 30853/32060 30846/32052 +f 30861/32070 30843/32048 30848/32055 +f 30854/32061 30862/32071 30848/32055 +f 30855/32062 30863/32072 30842/32047 +f 30855/32062 30843/32048 30861/32070 +f 30856/32063 30864/32073 30849/32056 +f 30863/32072 30856/32063 30842/32047 +f 30849/32056 30864/32073 27702/32064 +f 30857/32065 30850/32057 30860/32069 +f 30858/32066 30845/32050 30857/32065 +f 30853/32060 30860/32069 30850/32057 +f 30852/32059 30851/32058 30865/32074 +f 30865/32074 30851/32058 30858/32066 +f 29912/32067 30852/32059 30866/32075 +f 18395/32053 18339/32076 30859/32068 +f 30860/32069 30846/32052 30859/32068 +f 30848/32055 30862/32071 30861/32070 +f 30854/32061 30867/32077 30862/32071 +f 30868/32078 30863/32072 30855/32062 +f 30855/32062 30861/32070 30869/32079 +f 30864/32073 30856/32063 30870/32080 +f 30863/32072 30868/32078 30856/32063 +f 27688/32081 27702/32064 30864/32073 +f 30860/32069 30871/32082 30857/32065 +f 30872/32083 30858/32066 30857/32065 +f 30852/32059 30865/32074 30873/32084 +f 30873/32084 30865/32074 30858/32066 +f 30866/32075 30852/32059 30874/32085 +f 30866/32075 29926/32086 29912/32067 +f 30859/32068 18339/32076 30871/32082 +f 30871/32082 30860/32069 30859/32068 +f 30861/32070 30862/32071 30875/32087 +f 30867/32077 30876/32088 30862/32071 +f 30869/32079 30868/32078 30855/32062 +f 30875/32087 30869/32079 30861/32070 +f 30864/32073 30870/32080 27688/32081 +f 30870/32080 30856/32063 30877/32089 +f 30877/32089 30856/32063 30868/32078 +f 30857/32065 30871/32082 18339/32076 +f 30878/32090 30858/32066 30872/32083 +f 18238/32091 30872/32083 30857/32065 +f 30873/32084 30874/32085 30852/32059 +f 30858/32066 30878/32090 30873/32084 +f 30874/32085 30879/32092 30866/32075 +f 30866/32075 30880/32093 29926/32086 +f 30875/32087 30862/32071 30881/32094 +f 30876/32088 30867/32077 30882/32095 +f 30881/32094 30862/32071 30876/32088 +f 30869/32079 30883/32096 30868/32078 +f 30869/32079 30875/32087 30884/32097 +f 27688/32081 30870/32080 27652/32098 +f 30870/32080 30877/32089 27667/32099 +f 30868/32078 30883/32096 30877/32089 +f 18339/32076 18238/32091 30857/32065 +f 30885/32100 30878/32090 30872/32083 +f 18238/32091 18106/32101 30872/32083 +f 30874/32085 30873/32084 30886/32102 +f 30873/32084 30878/32090 30887/32103 +f 30879/32092 30874/32085 30888/32104 +f 30880/32093 30866/32075 30879/32092 +f 29926/32086 30880/32093 29969/32105 +f 30875/32087 30881/32094 30884/32097 +f 30882/32095 30867/32077 30889/32106 +f 30890/32107 30876/32088 30882/32095 +f 30881/32094 30876/32088 30891/32108 +f 30883/32096 30869/32079 30892/32109 +f 30869/32079 30884/32097 30892/32109 +f 27652/32098 30870/32080 27667/32099 +f 30877/32089 30893/32110 27667/32099 +f 30893/32110 30877/32089 30883/32096 +f 30885/32100 30894/32111 30878/32090 +f 30885/32100 30872/32083 18106/32101 +f 30886/32102 30888/32104 30874/32085 +f 30886/32102 30873/32084 30887/32103 +f 30887/32103 30878/32090 30894/32111 +f 30888/32104 30895/32112 30879/32092 +f 30879/32092 30896/32113 30880/32093 +f 30880/32093 30897/32114 29969/32105 +f 30884/32097 30881/32094 30892/32109 +f 30898/32115 30889/32106 30867/32077 +f 30899/32116 30882/32095 30889/32106 +f 30890/32107 30882/32095 30900/32117 +f 30876/32088 30890/32107 30891/32108 +f 30892/32109 30881/32094 30891/32108 +f 30901/32118 30883/32096 30892/32109 +f 27651/32119 27667/32099 30893/32110 +f 30902/32120 30893/32110 30883/32096 +f 30894/32111 30885/32100 17854/32121 +f 17978/32122 30885/32100 18106/32101 +f 30887/32103 30888/32104 30886/32102 +f 30903/32123 30887/32103 30894/32111 +f 30904/32124 30895/32112 30888/32104 +f 30879/32092 30895/32112 30896/32113 +f 30880/32093 30896/32113 30897/32114 +f 29969/32105 30897/32114 29970/32125 +f 30898/32115 30905/32126 30889/32106 +f 30900/32117 30882/32095 30899/32116 +f 30889/32106 30905/32126 30899/32116 +f 30890/32107 30900/32117 30906/32127 +f 30901/32118 30891/32108 30890/32107 +f 30891/32108 30901/32118 30892/32109 +f 30883/32096 30901/32118 30907/32128 +f 30893/32110 30902/32120 27651/32119 +f 30902/32120 30883/32096 30907/32128 +f 17854/32121 17782/32129 30894/32111 +f 17854/32121 30885/32100 17978/32122 +f 30887/32103 30904/32124 30888/32104 +f 30887/32103 30903/32123 30904/32124 +f 17782/32129 30903/32123 30894/32111 +f 17558/32130 30895/32112 30904/32124 +f 30896/32113 30895/32112 17493/32131 +f 17403/32132 30897/32114 30896/32113 +f 30897/32114 17403/32132 29970/32125 +f 30905/32126 30898/32115 30908/32133 +f 30909/32134 30900/32117 30899/32116 +f 30905/32126 30910/32135 30899/32116 +f 30890/32107 30906/32127 30911/32136 +f 30906/32127 30900/32117 30912/32137 +f 30911/32136 30901/32118 30890/32107 +f 30901/32118 30911/32136 30907/32128 +f 30902/32120 30913/32138 27651/32119 +f 30902/32120 30907/32128 30914/32139 +f 17667/32140 30904/32124 30903/32123 +f 30903/32123 17782/32129 17667/32140 +f 30895/32112 17558/32130 17493/32131 +f 17558/32130 30904/32124 17667/32140 +f 17403/32132 30896/32113 17493/32131 +f 29970/32125 17403/32132 17350/32141 +f 30898/32115 30915/32142 30908/32133 +f 30905/32126 30908/32133 30910/32135 +f 30900/32117 30909/32134 30912/32137 +f 30899/32116 30916/32143 30909/32134 +f 30899/32116 30910/32135 30916/32143 +f 30917/32144 30911/32136 30906/32127 +f 30906/32127 30912/32137 30918/32145 +f 30911/32136 30917/32144 30907/32128 +f 30913/32138 30902/32120 27567/32146 +f 27651/32119 30913/32138 27614/32147 +f 30914/32139 30907/32128 30917/32144 +f 27623/32148 30902/32120 30914/32139 +f 30919/32149 30908/32133 30915/32142 +f 30908/32133 30920/32150 30910/32135 +f 30912/32137 30909/32134 30916/32143 +f 30920/32150 30916/32143 30910/32135 +f 27588/32151 30917/32144 30906/32127 +f 30918/32145 30912/32137 27626/32152 +f 27588/32151 30906/32127 30918/32145 +f 30902/32120 27623/32148 27567/32146 +f 30921/32153 30913/32138 27567/32146 +f 27614/32147 30913/32138 30921/32153 +f 30914/32139 30917/32144 27623/32148 +f 30920/32150 30908/32133 30919/32149 +f 30916/32143 27626/32152 30912/32137 +f 30916/32143 30920/32150 30922/32154 +f 27588/32151 27623/32148 30917/32144 +f 30918/32145 27626/32152 27555/32155 +f 30918/32145 27555/32155 27588/32151 +f 27567/32146 27585/32156 30921/32153 +f 27614/32147 30921/32153 27585/32156 +f 30919/32149 30922/32154 30920/32150 +f 27626/32152 30916/32143 27647/32157 +f 27647/32157 30916/32143 30922/32154 +f 30922/32154 27663/32158 27647/32157 +f 30923/32159 30924/32160 30925/32161 +f 30924/32160 30923/32159 30926/32162 +f 30925/32161 30924/32160 30927/32163 +f 30925/32161 30928/32164 30923/32159 +f 30926/32162 30923/32159 30929/32165 +f 30924/32160 30926/32162 30930/32166 +f 30927/32163 30924/32160 30931/32167 +f 30928/32164 30925/32161 30927/32163 +f 30923/32159 30928/32164 30929/32165 +f 30929/32165 30932/32168 30926/32162 +f 30926/32162 30933/32169 30930/32166 +f 30924/32160 30930/32166 30931/32167 +f 30927/32163 30931/32167 30934/32170 +f 30934/32170 30928/32164 30927/32163 +f 30928/32164 30935/32171 30929/32165 +f 30936/32172 30932/32168 30929/32165 +f 30932/32168 30937/32173 30926/32162 +f 30937/32173 30933/32169 30926/32162 +f 30933/32169 30938/32174 30930/32166 +f 30939/32175 30931/32167 30930/32166 +f 30934/32170 30931/32167 30940/32176 +f 30934/32170 20569/32177 30928/32164 +f 30941/32178 30935/32171 30928/32164 +f 30935/32171 30942/32179 30929/32165 +f 30943/32180 30932/32168 30936/32172 +f 30942/32179 30936/32172 30929/32165 +f 30943/32180 30937/32173 30932/32168 +f 30933/32169 30937/32173 30944/32181 +f 30945/32182 30930/32166 30938/32174 +f 30938/32174 30933/32169 30946/32183 +f 30930/32166 30945/32182 30939/32175 +f 30947/32184 30931/32167 30939/32175 +f 30940/32176 30931/32167 30948/32185 +f 30934/32170 30940/32176 20550/32186 +f 20569/32177 30934/32170 20550/32186 +f 30928/32164 20569/32177 20596/32187 +f 20596/32187 30941/32178 30928/32164 +f 30935/32171 30941/32178 30949/32188 +f 30949/32188 30942/32179 30935/32171 +f 30950/32189 30943/32180 30936/32172 +f 30936/32172 30942/32179 30951/32190 +f 30952/32191 30937/32173 30943/32180 +f 30944/32181 30937/32173 30952/32191 +f 30946/32183 30933/32169 30944/32181 +f 30938/32174 30953/32192 30945/32182 +f 30938/32174 30946/32183 30953/32192 +f 30945/32182 30954/32193 30939/32175 +f 30931/32167 30947/32184 30948/32185 +f 30955/32194 30947/32184 30939/32175 +f 30956/32195 30940/32176 30948/32185 +f 30957/32196 20550/32186 30940/32176 +f 20624/32197 30941/32178 20596/32187 +f 30941/32178 30958/32198 30949/32188 +f 30949/32188 30959/32199 30942/32179 +f 30950/32189 30960/32200 30943/32180 +f 30950/32189 30936/32172 30961/32201 +f 30942/32179 30959/32199 30951/32190 +f 30961/32201 30936/32172 30951/32190 +f 30943/32180 30960/32200 30952/32191 +f 30944/32181 30952/32191 30962/32202 +f 30944/32181 30963/32203 30946/32183 +f 30964/32204 30945/32182 30953/32192 +f 30946/32183 30964/32204 30953/32192 +f 30939/32175 30954/32193 30955/32194 +f 30945/32182 30964/32204 30954/32193 +f 30948/32185 30947/32184 30965/32205 +f 30955/32194 30965/32205 30947/32184 +f 30940/32176 30956/32195 30957/32196 +f 30965/32205 30956/32195 30948/32185 +f 30957/32196 30966/32206 20550/32186 +f 30958/32198 30941/32178 20624/32197 +f 30949/32188 30958/32198 30967/32207 +f 30959/32199 30949/32188 30967/32207 +f 30968/32208 30960/32200 30950/32189 +f 30961/32201 30968/32208 30950/32189 +f 30951/32190 30959/32199 30969/32209 +f 30961/32201 30951/32190 30970/32210 +f 30960/32200 30971/32211 30952/32191 +f 30962/32202 30952/32191 30971/32211 +f 30972/32212 30944/32181 30962/32202 +f 30944/32181 30973/32213 30963/32203 +f 30946/32183 30963/32203 30964/32204 +f 30974/32214 30955/32194 30954/32193 +f 30964/32204 30975/32215 30954/32193 +f 30976/32216 30965/32205 30955/32194 +f 30956/32195 30977/32217 30957/32196 +f 30965/32205 30976/32216 30956/32195 +f 30966/32206 30957/32196 30977/32217 +f 30966/32206 15916/32218 20550/32186 +f 30968/32208 30971/32211 30960/32200 +f 30970/32210 30968/32208 30961/32201 +f 30969/32209 30970/32210 30951/32190 +f 30962/32202 30971/32211 30978/32219 +f 30944/32181 30972/32212 30979/32220 +f 30980/32221 30972/32212 30962/32202 +f 30963/32203 30973/32213 30981/32222 +f 30979/32220 30973/32213 30944/32181 +f 30963/32203 30982/32223 30964/32204 +f 30974/32214 30983/32224 30955/32194 +f 30954/32193 30975/32215 30974/32214 +f 30975/32215 30964/32204 30982/32223 +f 30983/32224 30976/32216 30955/32194 +f 30984/32225 30977/32217 30956/32195 +f 30976/32216 30984/32225 30956/32195 +f 30985/32226 30966/32206 30977/32217 +f 30966/32206 15914/32227 15916/32218 +f 30971/32211 30968/32208 30978/32219 +f 30986/32228 30968/32208 30970/32210 +f 30987/32229 30970/32210 30969/32209 +f 30988/32230 30962/32202 30978/32219 +f 30972/32212 30973/32213 30979/32220 +f 30980/32221 30989/32231 30972/32212 +f 30988/32230 30980/32221 30962/32202 +f 30990/32232 30981/32222 30973/32213 +f 30963/32203 30981/32222 30982/32223 +f 30983/32224 30974/32214 30991/32233 +f 30975/32215 30992/32234 30974/32214 +f 30975/32215 30982/32223 30992/32234 +f 30983/32224 30984/32225 30976/32216 +f 30977/32217 30984/32225 30993/32235 +f 15914/32227 30966/32206 30985/32226 +f 30994/32236 30985/32226 30977/32217 +f 30978/32219 30968/32208 30988/32230 +f 30988/32230 30968/32208 30986/32228 +f 30986/32228 30970/32210 30995/32237 +f 30995/32237 30970/32210 30987/32229 +f 30973/32213 30972/32212 30990/32232 +f 30996/32238 30989/32231 30980/32221 +f 30990/32232 30972/32212 30989/32231 +f 30980/32221 30988/32230 30996/32238 +f 30990/32232 30997/32239 30981/32222 +f 30981/32222 30992/32234 30982/32223 +f 30974/32214 30992/32234 30991/32233 +f 30983/32224 30991/32233 30998/32240 +f 30993/32235 30984/32225 30983/32224 +f 30977/32217 30993/32235 30994/32236 +f 15914/32227 30985/32226 15910/32241 +f 30999/32242 30985/32226 30994/32236 +f 30988/32230 30986/32228 31000/32243 +f 30995/32237 31001/32244 30986/32228 +f 31002/32245 30995/32237 30987/32229 +f 31003/32246 30989/32231 30996/32238 +f 30990/32232 30989/32231 31003/32246 +f 31000/32243 30996/32238 30988/32230 +f 31004/32247 30997/32239 30990/32232 +f 31005/32248 30981/32222 30997/32239 +f 30981/32222 31005/32248 30992/32234 +f 30992/32234 31005/32248 30991/32233 +f 31006/32249 30983/32224 30998/32240 +f 30998/32240 30991/32233 31007/32250 +f 31006/32249 30993/32235 30983/32224 +f 30993/32235 31008/32251 30994/32236 +f 30985/32226 30999/32242 15910/32241 +f 31008/32251 30999/32242 30994/32236 +f 30986/32228 31001/32244 31000/32243 +f 31001/32244 30995/32237 31009/32252 +f 31002/32245 31009/32252 30995/32237 +f 31010/32253 31003/32246 30996/32238 +f 30990/32232 31003/32246 31011/32254 +f 30996/32238 31000/32243 31001/32244 +f 31012/32255 30997/32239 31004/32247 +f 30990/32232 31011/32254 31004/32247 +f 30997/32239 31007/32250 31005/32248 +f 31007/32250 30991/32233 31005/32248 +f 31006/32249 30998/32240 31013/32256 +f 30998/32240 31007/32250 31014/32257 +f 30993/32235 31006/32249 31015/32258 +f 31008/32251 30993/32235 31015/32258 +f 30999/32242 15898/32259 15910/32241 +f 30999/32242 31008/32251 31015/32258 +f 31009/32252 31016/32260 31001/32244 +f 31011/32254 31003/32246 31010/32253 +f 31010/32253 30996/32238 31017/32261 +f 31017/32261 30996/32238 31001/32244 +f 31018/32262 30997/32239 31012/32255 +f 31012/32255 31004/32247 31019/32263 +f 31004/32247 31011/32254 31019/32263 +f 30997/32239 31020/32264 31007/32250 +f 31013/32256 31021/32265 31006/32249 +f 30998/32240 31014/32257 31013/32256 +f 31014/32257 31007/32250 31022/32266 +f 31006/32249 31021/32265 31015/32258 +f 15898/32259 30999/32242 31015/32258 +f 31001/32244 31016/32260 31017/32261 +f 31019/32263 31011/32254 31010/32253 +f 31017/32261 31023/32267 31010/32253 +f 31020/32264 30997/32239 31018/32262 +f 31018/32262 31012/32255 31024/32268 +f 31012/32255 31019/32263 31025/32269 +f 31007/32250 31020/32264 31022/32266 +f 31026/32270 31021/32265 31013/32256 +f 31014/32257 31026/32270 31013/32256 +f 31014/32257 31022/32266 31027/32271 +f 31015/32258 31021/32265 31026/32270 +f 31015/32258 31028/32272 15898/32259 +f 31016/32260 31023/32267 31017/32261 +f 31019/32263 31010/32253 31029/32273 +f 31023/32267 31030/32274 31010/32253 +f 31018/32262 31031/32275 31020/32264 +f 31024/32268 31012/32255 31032/32276 +f 31024/32268 31033/32277 31018/32262 +f 31034/32278 31012/32255 31025/32269 +f 31025/32269 31019/32263 31029/32273 +f 31022/32266 31020/32264 31027/32271 +f 31026/32270 31014/32257 15826/32279 +f 31014/32257 31027/32271 31035/32280 +f 31028/32272 31015/32258 31026/32270 +f 15873/32281 15898/32259 31028/32272 +f 31023/32267 31016/32260 31036/32282 +f 31010/32253 31030/32274 31029/32273 +f 31030/32274 31023/32267 31037/32283 +f 31033/32277 31031/32275 31018/32262 +f 31038/32284 31020/32264 31031/32275 +f 31012/32255 31039/32285 31032/32276 +f 31024/32268 31032/32276 31033/32277 +f 31039/32285 31012/32255 31034/32278 +f 31034/32278 31025/32269 31040/32286 +f 31040/32286 31025/32269 31029/32273 +f 31020/32264 31038/32284 31027/32271 +f 31014/32257 31035/32280 15826/32279 +f 31026/32270 15826/32279 15873/32281 +f 31035/32280 31027/32271 31041/32287 +f 15873/32281 31028/32272 31026/32270 +f 31042/32288 31023/32267 31036/32282 +f 31030/32274 31043/32289 31029/32273 +f 31037/32283 31023/32267 31042/32288 +f 31037/32283 31044/32290 31030/32274 +f 31031/32275 31033/32277 31045/32291 +f 31038/32284 31031/32275 31045/32291 +f 31032/32276 31039/32285 31046/32292 +f 31033/32277 31032/32276 31047/32293 +f 31039/32285 31034/32278 31048/32294 +f 31040/32286 31049/32295 31034/32278 +f 31043/32289 31040/32286 31029/32273 +f 31038/32284 31041/32287 31027/32271 +f 31035/32280 15770/32296 15826/32279 +f 31035/32280 31041/32287 15770/32296 +f 31030/32274 31050/32297 31043/32289 +f 31044/32290 31037/32283 31042/32288 +f 31030/32274 31044/32290 31051/32298 +f 31047/32293 31045/32291 31033/32277 +f 31052/32299 31038/32284 31045/32291 +f 31046/32292 31039/32285 31048/32294 +f 31046/32292 31047/32293 31032/32276 +f 31049/32295 31048/32294 31034/32278 +f 31049/32295 31040/32286 31053/32300 +f 31054/32301 31040/32286 31043/32289 +f 31052/32299 31041/32287 31038/32284 +f 15770/32296 31041/32287 15701/32302 +f 31050/32297 31030/32274 31051/32298 +f 31043/32289 31050/32297 31054/32301 +f 31055/32303 31051/32298 31044/32290 +f 31056/32304 31045/32291 31047/32293 +f 31057/32305 31052/32299 31045/32291 +f 31048/32294 31058/32306 31046/32292 +f 31047/32293 31046/32292 31058/32306 +f 31049/32295 31059/32307 31048/32294 +f 31059/32307 31049/32295 31053/32300 +f 31053/32300 31040/32286 31054/32301 +f 31052/32299 31057/32305 31041/32287 +f 15701/32302 31041/32287 31057/32305 +f 31051/32298 31060/32308 31050/32297 +f 31061/32309 31054/32301 31050/32297 +f 31055/32303 31060/32308 31051/32298 +f 31045/32291 31056/32304 31062/32310 +f 31056/32304 31047/32293 31058/32306 +f 31062/32310 31057/32305 31045/32291 +f 31059/32307 31058/32306 31048/32294 +f 31063/32311 31059/32307 31053/32300 +f 31053/32300 31054/32301 31064/32312 +f 31057/32305 15702/32313 15701/32302 +f 31065/32314 31050/32297 31060/32308 +f 31061/32309 31064/32312 31054/32301 +f 31061/32309 31050/32297 31065/32314 +f 31060/32308 31055/32303 31066/32315 +f 15740/32316 31062/32310 31056/32304 +f 31058/32306 31059/32307 31056/32304 +f 31057/32305 31062/32310 15702/32313 +f 31056/32304 31059/32307 31063/32311 +f 31053/32300 31067/32317 31063/32311 +f 31067/32317 31053/32300 31064/32312 +f 31066/32315 31065/32314 31060/32308 +f 31061/32309 31068/32318 31064/32312 +f 15702/32313 31062/32310 15740/32316 +f 15740/32316 31056/32304 15771/32319 +f 31069/32320 31056/32304 31063/32311 +f 31067/32317 31070/32321 31063/32311 +f 31067/32317 31064/32312 31071/32322 +f 31064/32312 31068/32318 31072/32323 +f 31069/32320 15771/32319 31056/32304 +f 31070/32321 31069/32320 31063/32311 +f 31070/32321 31067/32317 31071/32322 +f 31072/32323 31071/32322 31064/32312 +f 31068/32318 31073/32324 31072/32323 +f 15771/32319 31069/32320 31074/32325 +f 31075/32326 31069/32320 31070/32321 +f 31071/32322 31076/32327 31070/32321 +f 31071/32322 31072/32323 31077/32328 +f 31073/32324 31077/32328 31072/32323 +f 31074/32325 31069/32320 31075/32326 +f 15806/32329 15771/32319 31074/32325 +f 31075/32326 31070/32321 31078/32330 +f 31076/32327 31071/32322 31079/32331 +f 31078/32330 31070/32321 31076/32327 +f 31079/32331 31071/32322 31077/32328 +f 31080/32332 31077/32328 31073/32324 +f 31075/32326 31081/32333 31074/32325 +f 31074/32325 31082/32334 15806/32329 +f 31078/32330 31083/32335 31075/32326 +f 31079/32331 31084/32336 31076/32327 +f 31083/32335 31078/32330 31076/32327 +f 31077/32328 31085/32337 31079/32331 +f 31077/32328 31080/32332 31086/32338 +f 31087/32339 31080/32332 31073/32324 +f 31081/32333 31088/32340 31074/32325 +f 31081/32333 31075/32326 31083/32335 +f 31088/32340 31082/32334 31074/32325 +f 31089/32341 15806/32329 31082/32334 +f 31084/32336 31079/32331 31090/32342 +f 31083/32335 31076/32327 31084/32336 +f 31077/32328 31091/32343 31085/32337 +f 31090/32342 31079/32331 31085/32337 +f 31086/32338 31080/32332 31087/32339 +f 31091/32343 31077/32328 31086/32338 +f 31081/32333 31092/32344 31088/32340 +f 31083/32335 31093/32345 31081/32333 +f 31088/32340 31089/32341 31082/32334 +f 31089/32341 31094/32346 15806/32329 +f 31084/32336 31090/32342 31095/32347 +f 31083/32335 31084/32336 31095/32347 +f 31085/32337 31091/32343 31096/32348 +f 31085/32337 31097/32349 31090/32342 +f 31088/32340 31092/32344 31098/32350 +f 31093/32345 31092/32344 31081/32333 +f 31093/32345 31083/32335 31099/32351 +f 31088/32340 31098/32350 31089/32341 +f 31094/32346 31089/32341 31100/32352 +f 15806/32329 31094/32346 31101/32353 +f 31090/32342 31102/32354 31095/32347 +f 31099/32351 31083/32335 31095/32347 +f 31097/32349 31085/32337 31096/32348 +f 31091/32343 31103/32355 31096/32348 +f 31097/32349 31102/32354 31090/32342 +f 31104/32356 31098/32350 31092/32344 +f 31092/32344 31093/32345 31105/32357 +f 31099/32351 31106/32358 31093/32345 +f 31107/32359 31089/32341 31098/32350 +f 31089/32341 31107/32359 31100/32352 +f 31100/32352 31108/32360 31094/32346 +f 31094/32346 31109/32361 31101/32353 +f 15772/32362 15806/32329 31101/32353 +f 31110/32363 31095/32347 31102/32354 +f 31106/32358 31099/32351 31095/32347 +f 31103/32355 31097/32349 31096/32348 +f 31111/32364 31102/32354 31097/32349 +f 31108/32360 31098/32350 31104/32356 +f 31092/32344 31105/32357 31104/32356 +f 31106/32358 31105/32357 31093/32345 +f 31107/32359 31098/32350 31100/32352 +f 31098/32350 31108/32360 31100/32352 +f 31108/32360 31109/32361 31094/32346 +f 31112/32365 31101/32353 31109/32361 +f 31101/32353 31112/32365 15772/32362 +f 31110/32363 31106/32358 31095/32347 +f 31102/32354 31113/32366 31110/32363 +f 31097/32349 31103/32355 31114/32367 +f 31113/32366 31102/32354 31111/32364 +f 31097/32349 31114/32367 31111/32364 +f 31115/32368 31108/32360 31104/32356 +f 31104/32356 31105/32357 31116/32369 +f 31105/32357 31106/32358 31117/32370 +f 31109/32361 31108/32360 31118/32371 +f 31109/32361 15852/32372 31112/32365 +f 15772/32362 31112/32365 15852/32372 +f 31110/32363 31117/32370 31106/32358 +f 31117/32370 31110/32363 31113/32366 +f 31103/32355 31119/32373 31114/32367 +f 31120/32374 31113/32366 31111/32364 +f 31120/32374 31111/32364 31114/32367 +f 31104/32356 31116/32369 31115/32368 +f 31118/32371 31108/32360 31115/32368 +f 31121/32375 31116/32369 31105/32357 +f 31105/32357 31117/32370 31121/32375 +f 31109/32361 31118/32371 15852/32372 +f 31117/32370 31113/32366 31122/32376 +f 31123/32377 31114/32367 31119/32373 +f 31119/32373 31103/32355 31124/32378 +f 31113/32366 31120/32374 31125/32379 +f 31123/32377 31120/32374 31114/32367 +f 31116/32369 31126/32380 31115/32368 +f 31127/32381 31118/32371 31115/32368 +f 31128/32382 31116/32369 31121/32375 +f 31117/32370 31122/32376 31121/32375 +f 31118/32371 15853/32383 15852/32372 +f 31113/32366 31129/32384 31122/32376 +f 31123/32377 31119/32373 31124/32378 +f 31113/32366 31125/32379 31129/32384 +f 31120/32374 31130/32385 31125/32379 +f 31131/32386 31120/32374 31123/32377 +f 31115/32368 31126/32380 31127/32381 +f 31128/32382 31126/32380 31116/32369 +f 15874/32387 31118/32371 31127/32381 +f 31132/32388 31128/32382 31121/32375 +f 31121/32375 31122/32376 31132/32388 +f 31118/32371 15874/32387 15853/32383 +f 31133/32389 31122/32376 31129/32384 +f 31134/32390 31123/32377 31124/32378 +f 31125/32379 31130/32385 31129/32384 +f 31120/32374 31131/32386 31130/32385 +f 31131/32386 31123/32377 31134/32390 +f 31135/32391 31127/32381 31126/32380 +f 31136/32392 31126/32380 31128/32382 +f 15888/32393 15874/32387 31127/32381 +f 31128/32382 31132/32388 15875/32394 +f 31132/32388 31122/32376 31133/32389 +f 31133/32389 31129/32384 31130/32385 +f 31124/32378 31137/32395 31134/32390 +f 31130/32385 31131/32386 31138/32396 +f 31138/32396 31131/32386 31134/32390 +f 15888/32393 31127/32381 31135/32391 +f 31126/32380 31136/32392 31135/32391 +f 15875/32394 31136/32392 31128/32382 +f 15875/32394 31132/32388 15877/32397 +f 15877/32397 31132/32388 31133/32389 +f 31133/32389 31130/32385 31139/32398 +f 31137/32395 31124/32378 31140/32399 +f 31134/32390 31137/32395 31141/32400 +f 31138/32396 31139/32398 31130/32385 +f 31138/32396 31134/32390 31142/32401 +f 31136/32392 15888/32393 31135/32391 +f 31136/32392 15875/32394 15888/32393 +f 31133/32389 31139/32398 15877/32397 +f 31124/32378 31143/32402 31140/32399 +f 31137/32395 31140/32399 31144/32403 +f 31144/32403 31141/32400 31137/32395 +f 31141/32400 31142/32401 31134/32390 +f 31138/32396 31145/32404 31139/32398 +f 31142/32401 31145/32404 31138/32396 +f 31139/32398 15832/32405 15877/32397 +f 31140/32399 31143/32402 31146/32406 +f 31140/32399 31147/32407 31144/32403 +f 31148/32408 31141/32400 31144/32403 +f 31142/32401 31141/32400 31149/32409 +f 31139/32398 31145/32404 15832/32405 +f 31149/32409 31145/32404 31142/32401 +f 31147/32407 31140/32399 31146/32406 +f 31144/32403 31147/32407 31150/32410 +f 31141/32400 31148/32408 31151/32411 +f 31148/32408 31144/32403 31152/32412 +f 31141/32400 31153/32413 31149/32409 +f 15876/32414 15832/32405 31145/32404 +f 31149/32409 15889/32415 31145/32404 +f 31146/32406 31154/32416 31147/32407 +f 31150/32410 31147/32407 31155/32417 +f 31152/32412 31144/32403 31150/32410 +f 31151/32411 31148/32408 31156/32418 +f 31151/32411 31153/32413 31141/32400 +f 31156/32418 31148/32408 31152/32412 +f 31157/32419 31149/32409 31153/32413 +f 15876/32414 31145/32404 15889/32415 +f 31149/32409 31158/32420 15889/32415 +f 31155/32417 31147/32407 31154/32416 +f 31155/32417 31159/32421 31150/32410 +f 31156/32418 31152/32412 31150/32410 +f 31156/32418 31160/32422 31151/32411 +f 31153/32413 31151/32411 31161/32423 +f 31157/32419 31158/32420 31149/32409 +f 31153/32413 31162/32424 31157/32419 +f 31158/32420 31163/32425 15889/32415 +f 31155/32417 31154/32416 31164/32426 +f 31165/32427 31159/32421 31155/32417 +f 31150/32410 31159/32421 31166/32428 +f 31156/32418 31150/32410 31167/32429 +f 31156/32418 31168/32430 31160/32422 +f 31160/32422 31161/32423 31151/32411 +f 31169/32431 31153/32413 31161/32423 +f 31170/32432 31158/32420 31157/32419 +f 31157/32419 31162/32424 31170/32432 +f 31153/32413 31171/32433 31162/32424 +f 31158/32420 15879/32434 31163/32425 +f 31163/32425 15879/32434 15889/32415 +f 31155/32417 31164/32426 31165/32427 +f 31172/32435 31164/32426 31154/32416 +f 31159/32421 31165/32427 31173/32436 +f 31159/32421 31173/32436 31166/32428 +f 31174/32437 31150/32410 31166/32428 +f 31168/32430 31156/32418 31167/32429 +f 31150/32410 31174/32437 31167/32429 +f 31160/32422 31168/32430 31175/32438 +f 31161/32423 31160/32422 31176/32439 +f 31169/32431 31171/32433 31153/32413 +f 31176/32439 31169/32431 31161/32423 +f 31158/32420 31170/32432 15879/32434 +f 31177/32440 31170/32432 31162/32424 +f 15855/32441 31162/32424 31171/32433 +f 31178/32442 31165/32427 31164/32426 +f 31172/32435 31178/32442 31164/32426 +f 31173/32436 31165/32427 31179/32443 +f 31173/32436 31174/32437 31166/32428 +f 31175/32438 31168/32430 31167/32429 +f 31167/32429 31174/32437 31180/32444 +f 31160/32422 31175/32438 31176/32439 +f 31169/32431 31181/32445 31171/32433 +f 31182/32446 31169/32431 31176/32439 +f 15879/32434 31170/32432 15812/32447 +f 15834/32448 31170/32432 31177/32440 +f 31162/32424 15855/32441 31177/32440 +f 31181/32445 15855/32441 31171/32433 +f 31165/32427 31178/32442 31179/32443 +f 31172/32435 31183/32449 31178/32442 +f 31179/32443 31184/32450 31173/32436 +f 31185/32451 31174/32437 31173/32436 +f 31180/32444 31175/32438 31167/32429 +f 31186/32452 31180/32444 31174/32437 +f 31175/32438 31187/32453 31176/32439 +f 31181/32445 31169/32431 31188/32454 +f 31188/32454 31169/32431 31182/32446 +f 31189/32455 31182/32446 31176/32439 +f 15834/32448 15812/32447 31170/32432 +f 15855/32441 15834/32448 31177/32440 +f 15855/32441 31181/32445 15774/32456 +f 31178/32442 31190/32457 31179/32443 +f 31183/32449 31190/32457 31178/32442 +f 31184/32450 31179/32443 31191/32458 +f 31185/32451 31173/32436 31184/32450 +f 31185/32451 31186/32452 31174/32437 +f 31175/32438 31180/32444 31187/32453 +f 31180/32444 31186/32452 31192/32459 +f 31176/32439 31187/32453 31189/32455 +f 15774/32456 31181/32445 31188/32454 +f 31193/32460 31188/32454 31182/32446 +f 31193/32460 31182/32446 31189/32455 +f 31179/32443 31190/32457 31191/32458 +f 31190/32457 31183/32449 31194/32461 +f 31195/32462 31184/32450 31191/32458 +f 31196/32463 31185/32451 31184/32450 +f 31186/32452 31185/32451 31196/32463 +f 31197/32464 31187/32453 31180/32444 +f 31192/32459 31186/32452 31198/32465 +f 31197/32464 31180/32444 31192/32459 +f 31187/32453 31199/32466 31189/32455 +f 15706/32467 15774/32456 31188/32454 +f 15706/32467 31188/32454 31193/32460 +f 31193/32460 31189/32455 31200/32468 +f 31194/32461 31191/32458 31190/32457 +f 31201/32469 31195/32462 31191/32458 +f 31195/32462 31196/32463 31184/32450 +f 31196/32463 31198/32465 31186/32452 +f 31202/32470 31187/32453 31197/32464 +f 31198/32465 31203/32471 31192/32459 +f 31204/32472 31197/32464 31192/32459 +f 31199/32466 31187/32453 31202/32470 +f 31189/32455 31199/32466 31205/32473 +f 31193/32460 15665/32474 15706/32467 +f 31205/32473 31200/32468 31189/32455 +f 31206/32475 31193/32460 31200/32468 +f 31194/32461 31201/32469 31191/32458 +f 31207/32476 31195/32462 31201/32469 +f 31196/32463 31195/32462 31207/32476 +f 31198/32465 31196/32463 31207/32476 +f 31197/32464 31204/32472 31202/32470 +f 31203/32471 31198/32465 31207/32476 +f 31192/32459 31203/32471 31204/32472 +f 31199/32466 31202/32470 31208/32477 +f 31199/32466 31209/32478 31205/32473 +f 31206/32475 15665/32474 31193/32460 +f 31200/32468 31205/32473 31209/32478 +f 31206/32475 31200/32468 31210/32479 +f 31201/32469 31194/32461 31211/32480 +f 31212/32481 31207/32476 31201/32469 +f 31204/32472 31213/32482 31202/32470 +f 31212/32481 31203/32471 31207/32476 +f 31203/32471 31214/32483 31204/32472 +f 31202/32470 31213/32482 31208/32477 +f 31215/32484 31199/32466 31208/32477 +f 31215/32484 31209/32478 31199/32466 +f 31206/32475 15472/32485 15665/32474 +f 31209/32478 31216/32486 31200/32468 +f 31210/32479 31217/32487 31206/32475 +f 31216/32486 31210/32479 31200/32468 +f 31218/32488 31201/32469 31211/32480 +f 31219/32489 31212/32481 31201/32469 +f 31213/32482 31204/32472 31214/32483 +f 31220/32490 31203/32471 31212/32481 +f 31203/32471 31220/32490 31214/32483 +f 31208/32477 31213/32482 31221/32491 +f 31208/32477 31221/32491 31215/32484 +f 31209/32478 31215/32484 31216/32486 +f 31222/32492 15472/32485 31206/32475 +f 31210/32479 31223/32493 31217/32487 +f 31206/32475 31217/32487 31222/32492 +f 31224/32494 31210/32479 31216/32486 +f 31218/32488 31219/32489 31201/32469 +f 31225/32495 31218/32488 31211/32480 +f 31219/32489 31226/32496 31212/32481 +f 31213/32482 31214/32483 31227/32497 +f 31228/32498 31220/32490 31212/32481 +f 31214/32483 31220/32490 31229/32499 +f 31221/32491 31213/32482 31227/32497 +f 31221/32491 31230/32500 31215/32484 +f 31216/32486 31215/32484 31231/32501 +f 31232/32502 15472/32485 31222/32492 +f 31223/32493 31233/32503 31217/32487 +f 31210/32479 31234/32504 31223/32493 +f 31222/32492 31217/32487 31232/32502 +f 31235/32505 31210/32479 31224/32494 +f 31236/32506 31224/32494 31216/32486 +f 31219/32489 31218/32488 31225/32495 +f 31226/32496 31228/32498 31212/32481 +f 31219/32489 31237/32507 31226/32496 +f 31227/32497 31214/32483 31229/32499 +f 31228/32498 31229/32499 31220/32490 +f 31227/32497 31230/32500 31221/32491 +f 31215/32484 31230/32500 31238/32508 +f 31215/32484 31238/32508 31231/32501 +f 31236/32506 31216/32486 31231/32501 +f 31232/32502 15422/32509 15472/32485 +f 31217/32487 31233/32503 15567/32510 +f 31233/32503 31223/32493 31234/32504 +f 31210/32479 31235/32505 31234/32504 +f 15567/32510 31232/32502 31217/32487 +f 31235/32505 31224/32494 31239/32511 +f 31240/32512 31224/32494 31236/32506 +f 31237/32507 31219/32489 31225/32495 +f 31227/32497 31229/32499 31241/32513 +f 31230/32500 31227/32497 31241/32513 +f 31238/32508 31230/32500 31242/32514 +f 31231/32501 31243/32515 31236/32506 +f 31232/32502 15567/32510 15422/32509 +f 31233/32503 15467/32516 15567/32510 +f 31233/32503 31234/32504 15467/32516 +f 31244/32517 31234/32504 31235/32505 +f 31239/32511 31245/32518 31235/32505 +f 31239/32511 31224/32494 31240/32512 +f 31236/32506 31246/32519 31240/32512 +f 31230/32500 31241/32513 31242/32514 +f 31243/32515 31246/32519 31236/32506 +f 15467/32516 31234/32504 31247/32520 +f 31234/32504 31244/32517 31247/32520 +f 15325/32521 31244/32517 31235/32505 +f 31245/32518 31239/32511 31248/32522 +f 15325/32521 31235/32505 31245/32518 +f 31249/32523 31239/32511 31240/32512 +f 31250/32524 31240/32512 31246/32519 +f 31243/32515 31251/32525 31246/32519 +f 31252/32526 15467/32516 31247/32520 +f 31244/32517 31252/32526 31247/32520 +f 31244/32517 15325/32521 31252/32526 +f 31248/32522 31239/32511 31249/32523 +f 31248/32522 15265/32527 31245/32518 +f 15265/32527 15325/32521 31245/32518 +f 31249/32523 31240/32512 31250/32524 +f 31253/32528 31250/32524 31246/32519 +f 31253/32528 31246/32519 31251/32525 +f 31252/32526 15323/32529 15467/32516 +f 15325/32521 15323/32529 31252/32526 +f 31249/32523 31254/32530 31248/32522 +f 15265/32527 31248/32522 31255/32531 +f 31254/32530 31249/32523 31250/32524 +f 31253/32528 31256/32532 31250/32524 +f 31253/32528 31251/32525 31257/32533 +f 31254/32530 31255/32531 31248/32522 +f 31258/32534 15265/32527 31255/32531 +f 31259/32535 31254/32530 31250/32524 +f 31256/32532 31253/32528 31260/32536 +f 31256/32532 31261/32537 31250/32524 +f 31253/32528 31257/32533 31260/32536 +f 31262/32538 31255/32531 31254/32530 +f 31258/32534 15324/32539 15265/32527 +f 31255/32531 31263/32540 31258/32534 +f 31259/32535 31264/32541 31254/32530 +f 31259/32535 31250/32524 31261/32537 +f 31256/32532 31260/32536 31265/32542 +f 31265/32542 31261/32537 31256/32532 +f 31260/32536 31257/32533 31266/32543 +f 31262/32538 31254/32530 31264/32541 +f 31262/32538 31267/32544 31255/32531 +f 15324/32539 31258/32534 15437/32545 +f 31258/32534 31263/32540 31268/32546 +f 31263/32540 31255/32531 31267/32544 +f 31264/32541 31259/32535 31269/32547 +f 31261/32537 31270/32548 31259/32535 +f 31260/32536 31266/32543 31265/32542 +f 31265/32542 31270/32548 31261/32537 +f 31264/32541 31271/32549 31262/32538 +f 31267/32544 31262/32538 31272/32550 +f 15437/32545 31258/32534 31268/32546 +f 31263/32540 31273/32551 31268/32546 +f 31267/32544 31273/32551 31263/32540 +f 31274/32552 31264/32541 31269/32547 +f 31259/32535 31270/32548 31269/32547 +f 31265/32542 31266/32543 31275/32553 +f 31276/32554 31270/32548 31265/32542 +f 31274/32552 31271/32549 31264/32541 +f 31277/32555 31262/32538 31271/32549 +f 31277/32555 31272/32550 31262/32538 +f 31272/32550 31278/32556 31267/32544 +f 15437/32545 31268/32546 15496/32557 +f 31268/32546 31273/32551 15496/32557 +f 31279/32558 31273/32551 31267/32544 +f 31270/32548 31274/32552 31269/32547 +f 31280/32559 31275/32553 31266/32543 +f 31280/32559 31265/32542 31275/32553 +f 31276/32554 31281/32560 31270/32548 +f 31276/32554 31265/32542 31280/32559 +f 31282/32561 31271/32549 31274/32552 +f 31283/32562 31277/32555 31271/32549 +f 31272/32550 31277/32555 31284/32563 +f 31279/32558 31267/32544 31278/32556 +f 31272/32550 31285/32564 31278/32556 +f 15386/32565 15496/32557 31273/32551 +f 31279/32558 31286/32566 31273/32551 +f 31274/32552 31270/32548 31281/32560 +f 31287/32567 31281/32560 31276/32554 +f 31288/32568 31282/32561 31274/32552 +f 31283/32562 31271/32549 31282/32561 +f 31277/32555 31283/32562 31289/32569 +f 31272/32550 31284/32563 31285/32564 +f 31284/32563 31277/32555 31289/32569 +f 31290/32570 31279/32558 31278/32556 +f 31278/32556 31285/32564 31290/32570 +f 31273/32551 31286/32566 15386/32565 +f 31286/32566 31279/32558 31291/32571 +f 31274/32552 31281/32560 31292/32572 +f 31292/32572 31281/32560 31287/32567 +f 31288/32568 31293/32573 31282/32561 +f 31274/32552 31292/32572 31288/32568 +f 31293/32573 31283/32562 31282/32561 +f 31283/32562 31293/32573 31289/32569 +f 31290/32570 31291/32571 31279/32558 +f 31290/32570 31285/32564 31294/32574 +f 31286/32566 15212/32575 15386/32565 +f 31295/32576 31286/32566 31291/32571 +f 31288/32568 31292/32572 31287/32567 +f 31296/32577 31291/32571 31290/32570 +f 31296/32577 31290/32570 31294/32574 +f 31286/32566 31295/32576 15212/32575 +f 31297/32578 31295/32576 31291/32571 +f 31296/32577 31298/32579 31291/32571 +f 31299/32580 31296/32577 31294/32574 +f 15212/32575 31295/32576 15142/32581 +f 31291/32571 31298/32579 31297/32578 +f 31300/32582 31295/32576 31297/32578 +f 31296/32577 31301/32583 31298/32579 +f 31296/32577 31299/32580 31302/32584 +f 15142/32581 31295/32576 31303/32585 +f 31297/32578 31298/32579 31304/32586 +f 31300/32582 31305/32587 31295/32576 +f 31300/32582 31297/32578 31304/32586 +f 31301/32583 31296/32577 31302/32584 +f 31304/32586 31298/32579 31301/32583 +f 31303/32585 31295/32576 31305/32587 +f 15141/32588 15142/32581 31303/32585 +f 31305/32587 31300/32582 31306/32589 +f 31306/32589 31300/32582 31304/32586 +f 31301/32583 31302/32584 31307/32590 +f 31308/32591 31304/32586 31301/32583 +f 31309/32592 31303/32585 31305/32587 +f 15141/32588 31303/32585 31310/32593 +f 31305/32587 31306/32589 31311/32594 +f 31304/32586 31312/32595 31306/32589 +f 31307/32590 31302/32584 31313/32596 +f 31308/32591 31301/32583 31307/32590 +f 31314/32597 31304/32586 31308/32591 +f 31309/32592 31305/32587 31311/32594 +f 31303/32585 31309/32592 31315/32598 +f 31310/32593 31303/32585 31315/32598 +f 15000/32599 15141/32588 31310/32593 +f 31306/32589 31316/32600 31311/32594 +f 31304/32586 31314/32597 31312/32595 +f 31306/32589 31312/32595 31316/32600 +f 31313/32596 31317/32601 31307/32590 +f 31308/32591 31307/32590 31318/32602 +f 31319/32603 31314/32597 31308/32591 +f 31311/32594 31316/32600 31309/32592 +f 31309/32592 31320/32604 31315/32598 +f 31310/32593 31315/32598 31320/32604 +f 31310/32593 15210/32605 15000/32599 +f 31312/32595 31314/32597 15637/32606 +f 15385/32607 31316/32600 31312/32595 +f 31318/32602 31307/32590 31317/32601 +f 31321/32608 31317/32601 31313/32596 +f 31308/32591 31318/32602 31322/32609 +f 15637/32606 31314/32597 31319/32603 +f 31322/32609 31319/32603 31308/32591 +f 31309/32592 31316/32600 31320/32604 +f 15210/32605 31310/32593 31320/32604 +f 15494/32610 31312/32595 15637/32606 +f 31312/32595 15494/32610 15385/32607 +f 15385/32607 15332/32611 31316/32600 +f 31317/32601 31321/32608 31318/32602 +f 31321/32608 31313/32596 31323/32612 +f 31318/32602 31321/32608 31322/32609 +f 15332/32611 31320/32604 31316/32600 +f 15332/32611 15210/32605 31320/32604 +f 31321/32608 31323/32612 31324/32613 +f 31322/32609 31321/32608 31325/32614 +f 31324/32613 31325/32614 31321/32608 +f 31326/32615 31327/32616 31328/32617 +f 31326/32615 31329/32618 31327/32616 +f 31328/32617 31327/32616 31330/32619 +f 31331/32620 31326/32615 31328/32617 +f 31329/32618 31326/32615 31332/32621 +f 31333/32622 31327/32616 31329/32618 +f 31330/32619 31334/32623 31328/32617 +f 31330/32619 31327/32616 31335/32624 +f 31326/32615 31331/32620 31336/32625 +f 31334/32623 31331/32620 31328/32617 +f 31326/32615 31336/32625 31332/32621 +f 31332/32621 31337/32626 31329/32618 +f 31327/32616 31333/32622 31338/32627 +f 31339/32628 31333/32622 31329/32618 +f 31340/32629 31334/32623 31330/32619 +f 31335/32624 31327/32616 31338/32627 +f 31330/32619 31335/32624 31341/32630 +f 31331/32620 31342/32631 31336/32625 +f 31331/32620 31334/32623 26641/32632 +f 31332/32621 31336/32625 31343/32633 +f 31337/32626 31332/32621 31344/32634 +f 31337/32626 31339/32628 31329/32618 +f 31338/32627 31333/32622 31339/32628 +f 31340/32629 31330/32619 31345/32635 +f 31334/32623 31340/32629 26662/32636 +f 31338/32627 31346/32637 31335/32624 +f 31341/32630 31335/32624 31346/32637 +f 31345/32635 31330/32619 31341/32630 +f 31331/32620 26641/32632 31342/32631 +f 31347/32638 31336/32625 31342/32631 +f 26662/32636 26641/32632 31334/32623 +f 31344/32634 31332/32621 31343/32633 +f 31336/32625 31348/32639 31343/32633 +f 31349/32640 31337/32626 31344/32634 +f 31337/32626 31349/32640 31339/32628 +f 31350/32641 31338/32627 31339/32628 +f 31345/32635 31351/32642 31340/32629 +f 26718/32643 26662/32636 31340/32629 +f 31350/32641 31346/32637 31338/32627 +f 31346/32637 31352/32644 31341/32630 +f 31353/32645 31345/32635 31341/32630 +f 26587/32646 31342/32631 26641/32632 +f 31342/32631 26587/32646 31347/32638 +f 31336/32625 31347/32638 31354/32647 +f 31344/32634 31343/32633 31355/32648 +f 31348/32639 31356/32649 31343/32633 +f 31348/32639 31336/32625 31354/32647 +f 31357/32650 31349/32640 31344/32634 +f 31339/32628 31349/32640 31358/32651 +f 31339/32628 31358/32651 31350/32641 +f 31359/32652 31340/32629 31351/32642 +f 31345/32635 31353/32645 31351/32642 +f 26718/32643 31340/32629 31359/32652 +f 31360/32653 31346/32637 31350/32641 +f 31341/32630 31352/32644 31361/32654 +f 31360/32653 31352/32644 31346/32637 +f 31361/32654 31353/32645 31341/32630 +f 26587/32646 31362/32655 31347/32638 +f 31362/32655 31354/32647 31347/32638 +f 31355/32648 31343/32633 31363/32656 +f 31344/32634 31355/32648 31357/32650 +f 31343/32633 31356/32649 31363/32656 +f 31356/32649 31348/32639 31364/32657 +f 31364/32657 31348/32639 31354/32647 +f 31349/32640 31357/32650 31365/32658 +f 31366/32659 31358/32651 31349/32640 +f 31350/32641 31358/32651 31360/32653 +f 31367/32660 31359/32652 31351/32642 +f 31353/32645 31368/32661 31351/32642 +f 26718/32643 31359/32652 26732/32662 +f 31352/32644 31369/32663 31361/32654 +f 31370/32664 31352/32644 31360/32653 +f 31371/32665 31353/32645 31361/32654 +f 31362/32655 26587/32646 26572/32666 +f 31372/32667 31354/32647 31362/32655 +f 31363/32656 31373/32668 31355/32648 +f 31355/32648 31374/32669 31357/32650 +f 31375/32670 31363/32656 31356/32649 +f 31376/32671 31356/32649 31364/32657 +f 31354/32647 31377/32672 31364/32657 +f 31365/32658 31378/32673 31349/32640 +f 31357/32650 31374/32669 31365/32658 +f 31366/32659 31360/32653 31358/32651 +f 31378/32673 31366/32659 31349/32640 +f 31359/32652 31367/32660 31379/32674 +f 31368/32661 31367/32660 31351/32642 +f 31368/32661 31353/32645 31371/32665 +f 31359/32652 31380/32675 26732/32662 +f 31352/32644 31370/32664 31369/32663 +f 31369/32663 31381/32676 31361/32654 +f 31382/32677 31370/32664 31360/32653 +f 31361/32654 31381/32676 31371/32665 +f 26572/32666 31383/32678 31362/32655 +f 31372/32667 31377/32672 31354/32647 +f 31372/32667 31362/32655 31383/32678 +f 31373/32668 31363/32656 31375/32670 +f 31373/32668 31374/32669 31355/32648 +f 31376/32671 31375/32670 31356/32649 +f 31364/32657 31377/32672 31376/32671 +f 31384/32679 31378/32673 31365/32658 +f 31385/32680 31365/32658 31374/32669 +f 31360/32653 31366/32659 31382/32677 +f 31386/32681 31366/32659 31378/32673 +f 31379/32674 31367/32660 31387/32682 +f 31380/32675 31359/32652 31379/32674 +f 31368/32661 31388/32683 31367/32660 +f 31371/32665 31388/32683 31368/32661 +f 17209/32684 26732/32662 31380/32675 +f 31370/32664 31389/32685 31369/32663 +f 31390/32686 31381/32676 31369/32663 +f 31391/32687 31370/32664 31382/32677 +f 31388/32683 31371/32665 31381/32676 +f 26606/32688 31383/32678 26572/32666 +f 31392/32689 31377/32672 31372/32667 +f 31383/32678 31392/32689 31372/32667 +f 31375/32670 31393/32690 31373/32668 +f 31374/32669 31373/32668 31394/32691 +f 31375/32670 31376/32671 31395/32692 +f 31396/32693 31376/32671 31377/32672 +f 31378/32673 31384/32679 31397/32694 +f 31384/32679 31365/32658 31385/32680 +f 31374/32669 31398/32695 31385/32680 +f 31382/32677 31366/32659 31399/32696 +f 31399/32696 31366/32659 31386/32681 +f 31378/32673 31397/32694 31386/32681 +f 31387/32682 31367/32660 31400/32697 +f 31379/32674 31387/32682 31401/32698 +f 31379/32674 31402/32699 31380/32675 +f 31367/32660 31388/32683 31400/32697 +f 31380/32675 17205/32700 17209/32684 +f 31389/32685 31370/32664 31403/32701 +f 31389/32685 31404/32702 31369/32663 +f 31404/32702 31390/32686 31369/32663 +f 31381/32676 31390/32686 31405/32703 +f 31406/32704 31370/32664 31391/32687 +f 31382/32677 31407/32705 31391/32687 +f 31388/32683 31381/32676 31405/32703 +f 31383/32678 26606/32688 31408/32706 +f 31409/32707 31377/32672 31392/32689 +f 31392/32689 31383/32678 31408/32706 +f 31393/32690 31375/32670 31395/32692 +f 31393/32690 31410/32708 31373/32668 +f 31394/32691 31373/32668 31411/32709 +f 31398/32695 31374/32669 31394/32691 +f 31376/32671 31412/32710 31395/32692 +f 31376/32671 31396/32693 31412/32710 +f 31377/32672 31409/32707 31396/32693 +f 31413/32711 31397/32694 31384/32679 +f 31385/32680 31413/32711 31384/32679 +f 31414/32712 31385/32680 31398/32695 +f 31382/32677 31399/32696 31407/32705 +f 31399/32696 31386/32681 31415/32713 +f 31416/32714 31386/32681 31397/32694 +f 31405/32703 31387/32682 31400/32697 +f 31401/32698 31387/32682 31417/32715 +f 31379/32674 31401/32698 31418/32716 +f 31379/32674 31419/32717 31402/32699 +f 17205/32700 31380/32675 31402/32699 +f 31400/32697 31388/32683 31405/32703 +f 31403/32701 31370/32664 31406/32704 +f 31420/32718 31389/32685 31403/32701 +f 31404/32702 31389/32685 31421/32719 +f 31422/32720 31390/32686 31404/32702 +f 31390/32686 31422/32720 31405/32703 +f 31407/32705 31406/32704 31391/32687 +f 26606/32688 31423/32721 31408/32706 +f 31424/32722 31409/32707 31392/32689 +f 31408/32706 31424/32722 31392/32689 +f 31395/32692 31425/32723 31393/32690 +f 31410/32708 31393/32690 31425/32723 +f 31410/32708 31411/32709 31373/32668 +f 31411/32709 31426/32724 31394/32691 +f 31427/32725 31398/32695 31394/32691 +f 31412/32710 31428/32726 31395/32692 +f 31429/32727 31412/32710 31396/32693 +f 31409/32707 31430/32728 31396/32693 +f 31431/32729 31397/32694 31413/32711 +f 31413/32711 31385/32680 31414/32712 +f 31398/32695 31427/32725 31414/32712 +f 31407/32705 31399/32696 31415/32713 +f 31386/32681 31432/32730 31415/32713 +f 31397/32694 31433/32731 31416/32714 +f 31432/32730 31386/32681 31416/32714 +f 31417/32715 31387/32682 31405/32703 +f 31434/32732 31401/32698 31417/32715 +f 31401/32698 31435/32733 31418/32716 +f 31419/32717 31379/32674 31418/32716 +f 31419/32717 31436/32734 31402/32699 +f 31437/32735 17205/32700 31402/32699 +f 31403/32701 31406/32704 31438/32736 +f 31421/32719 31389/32685 31420/32718 +f 31420/32718 31403/32701 31438/32736 +f 31421/32719 31439/32737 31404/32702 +f 31422/32720 31404/32702 31440/32738 +f 31422/32720 31417/32715 31405/32703 +f 31406/32704 31407/32705 31415/32713 +f 26606/32688 31441/32739 31423/32721 +f 31423/32721 31424/32722 31408/32706 +f 31409/32707 31424/32722 31442/32740 +f 31443/32741 31425/32723 31395/32692 +f 31410/32708 31425/32723 31444/32742 +f 31410/32708 31445/32743 31411/32709 +f 31426/32724 31427/32725 31394/32691 +f 31445/32743 31426/32724 31411/32709 +f 31429/32727 31428/32726 31412/32710 +f 31428/32726 31443/32741 31395/32692 +f 31430/32728 31429/32727 31396/32693 +f 31430/32728 31409/32707 31442/32740 +f 31397/32694 31431/32729 31433/32731 +f 31413/32711 31446/32744 31431/32729 +f 31446/32744 31413/32711 31414/32712 +f 31427/32725 31446/32744 31414/32712 +f 31432/32730 31447/32745 31415/32713 +f 31416/32714 31433/32731 31448/32746 +f 31448/32746 31432/32730 31416/32714 +f 31401/32698 31434/32732 31435/32733 +f 31434/32732 31417/32715 31449/32747 +f 31418/32716 31435/32733 31419/32717 +f 31437/32735 31402/32699 31436/32734 +f 31450/32748 31436/32734 31419/32717 +f 17205/32700 31437/32735 31451/32749 +f 31452/32750 31438/32736 31406/32704 +f 31420/32718 31453/32751 31421/32719 +f 31454/32752 31420/32718 31438/32736 +f 31439/32737 31421/32719 31455/32753 +f 31404/32702 31439/32737 31440/32738 +f 31422/32720 31440/32738 31449/32747 +f 31417/32715 31422/32720 31449/32747 +f 31452/32750 31406/32704 31415/32713 +f 26606/32688 31456/32754 31441/32739 +f 31457/32755 31423/32721 31441/32739 +f 31424/32722 31423/32721 31442/32740 +f 31425/32723 31443/32741 31458/32756 +f 31444/32742 31459/32757 31410/32708 +f 31444/32742 31425/32723 31458/32756 +f 31445/32743 31410/32708 31459/32757 +f 31426/32724 31460/32758 31427/32725 +f 31445/32743 31461/32759 31426/32724 +f 31429/32727 31462/32760 31428/32726 +f 31462/32760 31443/32741 31428/32726 +f 31429/32727 31430/32728 31462/32760 +f 31462/32760 31430/32728 31442/32740 +f 31433/32731 31431/32729 31463/32761 +f 31431/32729 31446/32744 31463/32761 +f 31427/32725 31460/32758 31446/32744 +f 31452/32750 31415/32713 31447/32745 +f 31432/32730 31464/32762 31447/32745 +f 31448/32746 31433/32731 31465/32763 +f 31448/32746 31464/32762 31432/32730 +f 31435/32733 31434/32732 31449/32747 +f 31435/32733 31466/32764 31419/32717 +f 31437/32735 31436/32734 31467/32765 +f 31450/32748 31467/32765 31436/32734 +f 31419/32717 31466/32764 31450/32748 +f 17205/32700 31451/32749 17204/32766 +f 31468/32767 31451/32749 31437/32735 +f 31469/32768 31438/32736 31452/32750 +f 31420/32718 31470/32769 31453/32751 +f 31421/32719 31453/32751 31455/32753 +f 31438/32736 31469/32768 31454/32752 +f 31470/32769 31420/32718 31454/32752 +f 31455/32753 31471/32770 31439/32737 +f 31471/32770 31440/32738 31439/32737 +f 31449/32747 31440/32738 31472/32771 +f 31473/32772 31441/32739 31456/32754 +f 26589/32773 31456/32754 26606/32688 +f 31442/32740 31423/32721 31457/32755 +f 31457/32755 31441/32739 31474/32774 +f 31475/32775 31458/32756 31443/32741 +f 31459/32757 31444/32742 31458/32756 +f 31461/32759 31445/32743 31459/32757 +f 31476/32776 31426/32724 31461/32759 +f 31475/32775 31443/32741 31462/32760 +f 31462/32760 31442/32740 31477/32777 +f 31478/32778 31433/32731 31463/32761 +f 31463/32761 31446/32744 31479/32779 +f 31480/32780 31446/32744 31460/32758 +f 31447/32745 31469/32768 31452/32750 +f 31464/32762 31481/32781 31447/32745 +f 31465/32763 31433/32731 31482/32782 +f 31464/32762 31448/32746 31465/32763 +f 31466/32764 31435/32733 31449/32747 +f 31483/32783 31437/32735 31467/32765 +f 31467/32765 31450/32748 31484/32784 +f 31485/32785 31450/32748 31466/32764 +f 31451/32749 31486/32786 17204/32766 +f 31486/32786 31451/32749 31468/32767 +f 31468/32767 31437/32735 31487/32787 +f 31453/32751 31470/32769 31488/32788 +f 31489/32789 31455/32753 31453/32751 +f 31454/32752 31469/32768 31490/32790 +f 31491/32791 31470/32769 31454/32752 +f 31471/32770 31455/32753 31489/32789 +f 31492/32792 31440/32738 31471/32770 +f 31472/32771 31440/32738 31492/32792 +f 31472/32771 31493/32793 31449/32747 +f 31456/32754 31494/32794 31473/32772 +f 31473/32772 31495/32795 31441/32739 +f 31494/32794 31456/32754 26589/32773 +f 31442/32740 31457/32755 31474/32774 +f 31441/32739 31495/32795 31474/32774 +f 31475/32775 31496/32796 31458/32756 +f 31458/32756 31497/32797 31459/32757 +f 31459/32757 31498/32798 31461/32759 +f 31499/32799 31426/32724 31476/32776 +f 31500/32800 31476/32776 31461/32759 +f 31462/32760 31477/32777 31475/32775 +f 31474/32774 31477/32777 31442/32740 +f 31479/32779 31478/32778 31463/32761 +f 31433/32731 31478/32778 31482/32782 +f 31479/32779 31446/32744 31501/32801 +f 31446/32744 31480/32780 31501/32801 +f 31447/32745 31502/32802 31469/32768 +f 31481/32781 31464/32762 31465/32763 +f 31503/32803 31447/32745 31481/32781 +f 31503/32803 31465/32763 31482/32782 +f 31485/32785 31466/32764 31449/32747 +f 31483/32783 31467/32765 31504/32804 +f 31437/32735 31483/32783 31487/32787 +f 31485/32785 31484/32784 31450/32748 +f 31467/32765 31484/32784 31504/32804 +f 17204/32766 31486/32786 17199/32805 +f 31486/32786 31468/32767 31505/32806 +f 31468/32767 31487/32787 31506/32807 +f 31488/32788 31470/32769 31507/32808 +f 31489/32789 31453/32751 31488/32788 +f 31491/32791 31454/32752 31490/32790 +f 31469/32768 31508/32809 31490/32790 +f 31470/32769 31491/32791 31509/32810 +f 31510/32811 31471/32770 31489/32789 +f 31511/32812 31492/32792 31471/32770 +f 31492/32792 31512/32813 31472/32771 +f 31472/32771 31513/32814 31493/32793 +f 31493/32793 31485/32785 31449/32747 +f 31473/32772 31494/32794 31514/32815 +f 31514/32815 31495/32795 31473/32772 +f 31494/32794 26589/32773 26622/32816 +f 31474/32774 31495/32795 31515/32817 +f 31496/32796 31475/32775 31515/32817 +f 31497/32797 31458/32756 31496/32796 +f 31497/32797 31498/32798 31459/32757 +f 31461/32759 31498/32798 31516/32818 +f 31499/32799 31476/32776 31517/32819 +f 31476/32776 31500/32800 31518/32820 +f 31516/32818 31500/32800 31461/32759 +f 31474/32774 31475/32775 31477/32777 +f 31479/32779 31519/32821 31478/32778 +f 31478/32778 31520/32822 31482/32782 +f 31521/32823 31479/32779 31501/32801 +f 31480/32780 31522/32824 31501/32801 +f 31502/32802 31447/32745 31503/32803 +f 31502/32802 31508/32809 31469/32768 +f 31481/32781 31465/32763 31503/32803 +f 31523/32825 31503/32803 31482/32782 +f 31483/32783 31504/32804 31524/32826 +f 31487/32787 31483/32783 31525/32827 +f 31484/32784 31485/32785 31526/32828 +f 31527/32829 31504/32804 31484/32784 +f 31528/32830 17199/32805 31486/32786 +f 31529/32831 31505/32806 31468/32767 +f 31530/32832 31486/32786 31505/32806 +f 31506/32807 31529/32831 31468/32767 +f 31506/32807 31487/32787 31531/32833 +f 31507/32808 31532/32834 31488/32788 +f 31507/32808 31470/32769 31509/32810 +f 31488/32788 31533/32835 31489/32789 +f 31534/32836 31491/32791 31490/32790 +f 31508/32809 31534/32836 31490/32790 +f 31509/32810 31491/32791 31534/32836 +f 31510/32811 31511/32812 31471/32770 +f 31535/32837 31510/32811 31489/32789 +f 31492/32792 31511/32812 31536/32838 +f 31512/32813 31492/32792 31536/32838 +f 31512/32813 31537/32839 31472/32771 +f 31513/32814 31472/32771 31537/32839 +f 31513/32814 31526/32828 31493/32793 +f 31526/32828 31485/32785 31493/32793 +f 31538/32840 31514/32815 31494/32794 +f 31495/32795 31514/32815 31539/32841 +f 31540/32842 31494/32794 26622/32816 +f 31474/32774 31515/32817 31475/32775 +f 31539/32841 31515/32817 31495/32795 +f 31515/32817 31541/32843 31496/32796 +f 31542/32844 31497/32797 31496/32796 +f 31497/32797 31543/32845 31498/32798 +f 31516/32818 31498/32798 31544/32846 +f 31499/32799 31517/32819 31545/32847 +f 31476/32776 31518/32820 31517/32819 +f 31546/32848 31518/32820 31500/32800 +f 31500/32800 31516/32818 31546/32848 +f 31479/32779 31547/32849 31519/32821 +f 31519/32821 31520/32822 31478/32778 +f 31523/32825 31482/32782 31520/32822 +f 31522/32824 31521/32823 31501/32801 +f 31479/32779 31521/32823 31548/32850 +f 31480/32780 31549/32851 31522/32824 +f 31502/32802 31503/32803 31523/32825 +f 31508/32809 31502/32802 31523/32825 +f 31504/32804 31550/32852 31524/32826 +f 31483/32783 31524/32826 31525/32827 +f 31531/32833 31487/32787 31525/32827 +f 31527/32829 31484/32784 31526/32828 +f 31527/32829 31550/32852 31504/32804 +f 17196/32853 17199/32805 31528/32830 +f 31486/32786 31530/32832 31528/32830 +f 31529/32831 31551/32854 31505/32806 +f 31552/32855 31530/32832 31505/32806 +f 31529/32831 31506/32807 31551/32854 +f 31506/32807 31531/32833 31553/32856 +f 31534/32836 31532/32834 31507/32808 +f 31554/32857 31488/32788 31532/32834 +f 31509/32810 31534/32836 31507/32808 +f 31533/32835 31488/32788 31554/32857 +f 31489/32789 31533/32835 31535/32837 +f 31508/32809 31532/32834 31534/32836 +f 31511/32812 31510/32811 31535/32837 +f 31511/32812 31555/32858 31536/32838 +f 31556/32859 31512/32813 31536/32838 +f 31537/32839 31512/32813 31557/32860 +f 31558/32861 31513/32814 31537/32839 +f 31513/32814 31559/32862 31526/32828 +f 31514/32815 31538/32840 31560/32863 +f 31494/32794 31540/32842 31538/32840 +f 31561/32864 31539/32841 31514/32815 +f 26622/32816 26683/32865 31540/32842 +f 31539/32841 31562/32866 31515/32817 +f 31542/32844 31496/32796 31541/32843 +f 31541/32843 31515/32817 31563/32867 +f 31542/32844 31543/32845 31497/32797 +f 31544/32846 31498/32798 31543/32845 +f 31544/32846 31546/32848 31516/32818 +f 31545/32847 31517/32819 31518/32820 +f 31518/32820 31546/32848 31564/32868 +f 31519/32821 31547/32849 31565/32869 +f 31548/32850 31547/32849 31479/32779 +f 31565/32869 31520/32822 31519/32821 +f 31523/32825 31520/32822 31565/32869 +f 31521/32823 31522/32824 31566/32870 +f 31521/32823 31567/32871 31548/32850 +f 31568/32872 31522/32824 31549/32851 +f 31523/32825 31569/32873 31508/32809 +f 31570/32874 31524/32826 31550/32852 +f 31524/32826 31570/32874 31525/32827 +f 31570/32874 31531/32833 31525/32827 +f 31559/32862 31527/32829 31526/32828 +f 31550/32852 31527/32829 31559/32862 +f 31571/32875 17196/32853 31528/32830 +f 31530/32832 31552/32855 31528/32830 +f 31505/32806 31551/32854 31552/32855 +f 31551/32854 31506/32807 31552/32855 +f 31570/32874 31553/32856 31531/32833 +f 31553/32856 31572/32876 31506/32807 +f 31532/32834 31573/32877 31554/32857 +f 31533/32835 31554/32857 31566/32870 +f 31555/32858 31535/32837 31533/32835 +f 31532/32834 31508/32809 31574/32878 +f 31511/32812 31535/32837 31555/32858 +f 31536/32838 31555/32858 31556/32859 +f 31512/32813 31556/32859 31575/32879 +f 31575/32879 31557/32860 31512/32813 +f 31557/32860 31576/32880 31537/32839 +f 31559/32862 31513/32814 31558/32861 +f 31537/32839 31576/32880 31558/32861 +f 31560/32863 31538/32840 31577/32881 +f 31560/32863 31561/32864 31514/32815 +f 31578/32882 31538/32840 31540/32842 +f 31561/32864 31562/32866 31539/32841 +f 31540/32842 26683/32865 31579/32883 +f 31563/32867 31515/32817 31562/32866 +f 31580/32884 31542/32844 31541/32843 +f 31581/32885 31541/32843 31563/32867 +f 31543/32845 31542/32844 31580/32884 +f 31582/32886 31544/32846 31543/32845 +f 31583/32887 31546/32848 31544/32846 +f 31518/32820 31564/32868 31545/32847 +f 31584/32888 31564/32868 31546/32848 +f 31574/32878 31565/32869 31547/32849 +f 31567/32871 31547/32849 31548/32850 +f 31523/32825 31565/32869 31569/32873 +f 31566/32870 31554/32857 31521/32823 +f 31566/32870 31522/32824 31585/32889 +f 31567/32871 31521/32823 31554/32857 +f 31568/32872 29423/32890 31522/32824 +f 31549/32851 31586/32891 31568/32872 +f 31574/32878 31508/32809 31569/32873 +f 31587/32892 31570/32874 31550/32852 +f 31550/32852 31559/32862 31558/32861 +f 17196/32853 31571/32875 29737/32893 +f 31571/32875 31528/32830 31588/32894 +f 31552/32855 31589/32895 31528/32830 +f 31590/32896 31552/32855 31506/32807 +f 31570/32874 31587/32892 31553/32856 +f 31591/32897 31572/32876 31553/32856 +f 31572/32876 31590/32896 31506/32807 +f 31532/32834 31567/32871 31573/32877 +f 31554/32857 31573/32877 31567/32871 +f 31555/32858 31533/32835 31566/32870 +f 31532/32834 31574/32878 31547/32849 +f 31556/32859 31555/32858 31592/32898 +f 31575/32879 31556/32859 31592/32898 +f 31593/32899 31557/32860 31575/32879 +f 31576/32880 31557/32860 31594/32900 +f 31595/32901 31558/32861 31576/32880 +f 31596/32902 31560/32863 31577/32881 +f 31577/32881 31538/32840 31579/32883 +f 31561/32864 31560/32863 31596/32902 +f 31538/32840 31578/32882 31579/32883 +f 31578/32882 31540/32842 31579/32883 +f 31597/32903 31562/32866 31561/32864 +f 31598/32904 31579/32883 26683/32865 +f 31563/32867 31562/32866 31597/32903 +f 31581/32885 31580/32884 31541/32843 +f 31599/32905 31581/32885 31563/32867 +f 31582/32886 31543/32845 31580/32884 +f 31600/32906 31544/32846 31582/32886 +f 31546/32848 31583/32887 31584/32888 +f 31600/32906 31583/32887 31544/32846 +f 31545/32847 31564/32868 31601/32907 +f 31564/32868 31584/32888 31602/32908 +f 31565/32869 31574/32878 31569/32873 +f 31547/32849 31567/32871 31532/32834 +f 31592/32898 31566/32870 31585/32889 +f 31522/32824 31603/32909 31585/32889 +f 31568/32872 31586/32891 29423/32890 +f 29423/32890 31603/32909 31522/32824 +f 31586/32891 31549/32851 31604/32910 +f 31587/32892 31550/32852 31595/32901 +f 31595/32901 31550/32852 31558/32861 +f 31571/32875 31605/32911 29737/32893 +f 31528/32830 31589/32895 31588/32894 +f 31588/32894 31606/32912 31571/32875 +f 31590/32896 31589/32895 31552/32855 +f 31553/32856 31587/32892 31591/32897 +f 31572/32876 31591/32897 31607/32913 +f 31590/32896 31572/32876 31607/32913 +f 31555/32858 31566/32870 31592/32898 +f 31608/32914 31575/32879 31592/32898 +f 31594/32900 31557/32860 31593/32899 +f 31593/32899 31575/32879 31608/32914 +f 31595/32901 31576/32880 31594/32900 +f 31596/32902 31577/32881 31609/32915 +f 31610/32916 31577/32881 31579/32883 +f 31596/32902 31597/32903 31561/32864 +f 31611/32917 31579/32883 31598/32904 +f 31598/32904 26683/32865 26719/32918 +f 31597/32903 31599/32905 31563/32867 +f 31580/32884 31581/32885 31612/32919 +f 31581/32885 31599/32905 31613/32920 +f 31580/32884 31612/32919 31582/32886 +f 31600/32906 31582/32886 31614/32921 +f 31615/32922 31584/32888 31583/32887 +f 31616/32923 31583/32887 31600/32906 +f 31564/32868 31602/32908 31601/32907 +f 31615/32922 31602/32908 31584/32888 +f 31617/32924 31592/32898 31585/32889 +f 31603/32909 31617/32924 31585/32889 +f 29546/32925 29423/32890 31586/32891 +f 31618/32926 31603/32909 29423/32890 +f 31549/32851 31619/32927 31604/32910 +f 31620/32928 31586/32891 31604/32910 +f 31595/32901 31621/32929 31587/32892 +f 31606/32912 31605/32911 31571/32875 +f 31605/32911 31622/32930 29737/32893 +f 31588/32894 31589/32895 31623/32931 +f 31588/32894 31623/32931 31606/32912 +f 31589/32895 31590/32896 31624/32932 +f 31591/32897 31587/32892 31625/32933 +f 31591/32897 31626/32934 31607/32913 +f 31624/32932 31590/32896 31607/32913 +f 31627/32935 31608/32914 31592/32898 +f 31593/32899 31628/32936 31594/32900 +f 31628/32936 31593/32899 31608/32914 +f 31594/32900 31621/32929 31595/32901 +f 31610/32916 31609/32915 31577/32881 +f 31609/32915 31629/32937 31596/32902 +f 31579/32883 31611/32917 31610/32916 +f 31597/32903 31596/32902 31630/32938 +f 31631/32939 31611/32917 31598/32904 +f 26719/32918 31631/32939 31598/32904 +f 31597/32903 31630/32938 31599/32905 +f 31612/32919 31581/32885 31613/32920 +f 31599/32905 31632/32940 31613/32920 +f 31612/32919 31614/32921 31582/32886 +f 31633/32941 31600/32906 31614/32921 +f 31615/32922 31583/32887 31616/32923 +f 31633/32941 31616/32923 31600/32906 +f 31601/32907 31602/32908 31634/32942 +f 31602/32908 31615/32922 31635/32943 +f 31617/32924 31627/32935 31592/32898 +f 31636/32944 31617/32924 31603/32909 +f 31620/32928 29546/32925 31586/32891 +f 31618/32926 31637/32945 31603/32909 +f 29384/32946 31618/32926 29423/32890 +f 31638/32947 31619/32927 31549/32851 +f 31604/32910 31619/32927 31639/32948 +f 31639/32948 31620/32928 31604/32910 +f 31621/32929 31625/32933 31587/32892 +f 31605/32911 31606/32912 31640/32949 +f 31622/32930 31605/32911 31641/32950 +f 31622/32930 29706/32951 29737/32893 +f 31624/32932 31623/32931 31589/32895 +f 31640/32949 31606/32912 31623/32931 +f 31625/32933 31626/32934 31591/32897 +f 31607/32913 31626/32934 31642/32952 +f 31607/32913 31643/32953 31624/32932 +f 30177/32954 31608/32914 31627/32935 +f 31628/32936 31644/32955 31594/32900 +f 31628/32936 31608/32914 30177/32954 +f 31644/32955 31621/32929 31594/32900 +f 31610/32916 31645/32956 31609/32915 +f 31609/32915 31646/32957 31629/32937 +f 31629/32937 31647/32958 31596/32902 +f 31631/32939 31610/32916 31611/32917 +f 31596/32902 31647/32958 31630/32938 +f 31631/32939 26719/32918 31648/32959 +f 31632/32940 31599/32905 31630/32938 +f 31613/32920 31649/32960 31612/32919 +f 31632/32940 31650/32961 31613/32920 +f 31651/32962 31614/32921 31612/32919 +f 31633/32941 31614/32921 31652/32963 +f 31653/32964 31615/32922 31616/32923 +f 31653/32964 31616/32923 31633/32941 +f 31634/32942 31602/32908 31635/32943 +f 31654/32965 31635/32943 31615/32922 +f 31627/32935 31617/32924 31655/32966 +f 31655/32966 31617/32924 31636/32944 +f 31603/32909 31656/32967 31636/32944 +f 31637/32945 31618/32926 31657/32968 +f 31637/32945 31658/32969 31603/32909 +f 31618/32926 29384/32946 29248/32970 +f 31659/32971 31619/32927 31638/32947 +f 31619/32927 31660/32972 31639/32948 +f 31620/32928 31639/32948 31661/32973 +f 31621/32929 31662/32974 31625/32933 +f 31641/32950 31605/32911 31640/32949 +f 31622/32930 31641/32950 29705/32975 +f 29706/32951 31622/32930 29705/32975 +f 31624/32932 31643/32953 31623/32931 +f 31640/32949 31623/32931 31663/32976 +f 31664/32977 31626/32934 31625/32933 +f 31665/32978 31642/32952 31626/32934 +f 31607/32913 31642/32952 31643/32953 +f 30177/32954 31627/32935 30182/32979 +f 31644/32955 31628/32936 30179/32980 +f 30177/32954 30179/32980 31628/32936 +f 31621/32929 31644/32955 31662/32974 +f 31645/32956 31646/32957 31609/32915 +f 31666/32981 31645/32956 31610/32916 +f 31646/32957 31645/32956 31629/32937 +f 31631/32939 31666/32981 31610/32916 +f 31647/32958 31632/32940 31630/32938 +f 31666/32981 31631/32939 31648/32959 +f 31650/32961 31649/32960 31613/32920 +f 31612/32919 31649/32960 31651/32962 +f 31614/32921 31651/32962 31652/32963 +f 31633/32941 31652/32963 31667/32982 +f 31615/32922 31653/32964 31654/32965 +f 31653/32964 31633/32941 31667/32982 +f 31668/32983 31635/32943 31654/32965 +f 30182/32979 31627/32935 31655/32966 +f 31636/32944 31669/32984 31655/32966 +f 31636/32944 31656/32967 31670/32985 +f 31603/32909 31658/32969 31656/32967 +f 31657/32968 31658/32969 31637/32945 +f 31657/32968 31618/32926 29248/32970 +f 29384/32946 31671/32986 29248/32970 +f 31672/32987 31659/32971 31638/32947 +f 31619/32927 31659/32971 31660/32972 +f 31673/32988 31639/32948 31660/32972 +f 31620/32928 31661/32973 31674/32989 +f 31673/32988 31661/32973 31639/32948 +f 31625/32933 31662/32974 31675/32990 +f 31676/32991 31641/32950 31640/32949 +f 31641/32950 31676/32991 29705/32975 +f 31663/32976 31623/32931 31643/32953 +f 31663/32976 31676/32991 31640/32949 +f 31626/32934 31664/32977 31665/32978 +f 31675/32990 31664/32977 31625/32933 +f 31642/32952 31665/32978 31677/32992 +f 31663/32976 31643/32953 31642/32952 +f 31644/32955 30179/32980 31678/32993 +f 31662/32974 31644/32955 31678/32993 +f 31679/32994 31649/32960 31650/32961 +f 31651/32962 31649/32960 31679/32994 +f 31651/32962 31680/32995 31652/32963 +f 31652/32963 31680/32995 31667/32982 +f 31653/32964 31681/32996 31654/32965 +f 31667/32982 31680/32995 31653/32964 +f 31682/32997 31668/32983 31654/32965 +f 31655/32966 30181/32998 30182/32979 +f 31669/32984 31636/32944 31670/32985 +f 31669/32984 30181/32998 31655/32966 +f 31656/32967 31683/32999 31670/32985 +f 31656/32967 31658/32969 31684/33000 +f 31685/33001 31658/32969 31657/32968 +f 29217/33002 31657/32968 29248/32970 +f 31671/32986 29384/32946 29310/33003 +f 31671/32986 31686/33004 29248/32970 +f 31672/32987 31660/32972 31659/32971 +f 31687/33005 31672/32987 31638/32947 +f 31660/32972 31688/33006 31673/32988 +f 31661/32973 31689/33007 31674/32989 +f 31673/32988 31689/33007 31661/32973 +f 31662/32974 31690/33008 31675/32990 +f 31691/33009 29705/32975 31676/32991 +f 31663/32976 31691/33009 31676/32991 +f 31665/32978 31664/32977 31683/32999 +f 31664/32977 31675/32990 31692/33010 +f 31677/32992 31665/32978 31683/32999 +f 31642/32952 31677/32992 31663/32976 +f 30179/32980 30181/32998 31678/32993 +f 31662/32974 31678/32993 31690/33008 +f 31679/32994 31650/32961 31693/33011 +f 31651/32962 31679/32994 31694/33012 +f 31695/33013 31680/32995 31651/32962 +f 31681/32996 31696/33014 31654/32965 +f 31680/32995 31681/32996 31653/32964 +f 31654/32965 31696/33014 31682/32997 +f 31697/33015 31668/32983 31682/32997 +f 30182/32979 30181/32998 30183/33016 +f 31698/33017 31669/32984 31670/32985 +f 31669/32984 31678/32993 30181/32998 +f 31656/32967 31699/33018 31683/32999 +f 31683/32999 31700/33019 31670/32985 +f 31684/33000 31658/32969 31685/33001 +f 31699/33018 31656/32967 31684/33000 +f 29217/33002 31685/33001 31657/32968 +f 29310/33003 31686/33004 31671/32986 +f 31686/33004 29219/33020 29248/32970 +f 31660/32972 31672/32987 31688/33006 +f 31638/32947 31701/33021 31687/33005 +f 31672/32987 31687/33005 31688/33006 +f 31688/33006 31689/33007 31673/32988 +f 31702/33022 31674/32989 31689/33007 +f 31675/32990 31690/33008 31692/33010 +f 31691/33009 31703/33023 29705/32975 +f 31677/32992 31691/33009 31663/32976 +f 31664/32977 31700/33019 31683/32999 +f 31692/33010 31700/33019 31664/32977 +f 31677/32992 31683/32999 31704/33024 +f 31678/32993 31669/32984 31690/33008 +f 31693/33011 31705/33025 31679/32994 +f 31650/32961 31706/33026 31693/33011 +f 31695/33013 31651/32962 31694/33012 +f 31679/32994 31705/33025 31694/33012 +f 31681/32996 31680/32995 31695/33013 +f 31681/32996 31707/33027 31696/33014 +f 31682/32997 31696/33014 31708/33028 +f 31682/32997 31709/33029 31697/33015 +f 31698/33017 31692/33010 31669/32984 +f 31700/33019 31698/33017 31670/32985 +f 31710/33030 31683/32999 31699/33018 +f 31684/33000 31685/33001 31711/33031 +f 31699/33018 31684/33000 31712/33032 +f 29281/33033 31685/33001 29217/33002 +f 29242/33034 31686/33004 29310/33003 +f 31686/33004 29242/33034 29219/33020 +f 31713/33035 31687/33005 31701/33021 +f 31689/33007 31688/33006 31687/33005 +f 31702/33022 31689/33007 31687/33005 +f 31674/32989 31702/33022 31714/33036 +f 31669/32984 31692/33010 31690/33008 +f 29705/32975 31703/33023 29638/33037 +f 31703/33023 31691/33009 31715/33038 +f 31704/33024 31691/33009 31677/32992 +f 31698/33017 31700/33019 31692/33010 +f 31704/33024 31683/32999 31710/33030 +f 31706/33026 31705/33025 31693/33011 +f 31694/33012 31716/33039 31695/33013 +f 31705/33025 31716/33039 31694/33012 +f 31707/33027 31681/32996 31695/33013 +f 31708/33028 31696/33014 31707/33027 +f 31708/33028 31717/33040 31682/32997 +f 31697/33015 31709/33029 31718/33041 +f 31709/33029 31682/32997 31717/33040 +f 31710/33030 31699/33018 31712/33032 +f 31711/33031 31685/33001 31719/33042 +f 31684/33000 31711/33031 31712/33032 +f 29281/33033 31719/33042 31685/33001 +f 29219/33020 29242/33034 31720/33043 +f 31687/33005 31713/33035 31702/33022 +f 31721/33044 31713/33035 31701/33021 +f 31714/33036 31702/33022 31713/33035 +f 31722/33045 29638/33037 31703/33023 +f 31715/33038 31691/33009 31704/33024 +f 31722/33045 31703/33023 31715/33038 +f 31704/33024 31710/33030 31715/33038 +f 31723/33046 31705/33025 31706/33026 +f 31716/33039 31724/33047 31695/33013 +f 31716/33039 31705/33025 31725/33048 +f 31695/33013 31724/33047 31707/33027 +f 31708/33028 31707/33027 31726/33049 +f 31727/33050 31717/33040 31708/33028 +f 31718/33041 31709/33029 31728/33051 +f 31717/33040 31729/33052 31709/33029 +f 31730/33053 31710/33030 31712/33032 +f 31719/33042 31731/33054 31711/33031 +f 31712/33032 31711/33031 31730/33053 +f 29281/33033 31731/33054 31719/33042 +f 29219/33020 31720/33043 29153/33055 +f 29180/33056 31720/33043 29242/33034 +f 31721/33044 31714/33036 31713/33035 +f 31732/33057 29638/33037 31722/33045 +f 31715/33038 31730/33053 31722/33045 +f 31715/33038 31710/33030 31730/33053 +f 31705/33025 31723/33046 31725/33048 +f 31725/33048 31724/33047 31716/33039 +f 31726/33049 31707/33027 31724/33047 +f 31726/33049 31733/33058 31708/33028 +f 31717/33040 31727/33050 31729/33052 +f 31733/33058 31727/33050 31708/33028 +f 31734/33059 31718/33041 31728/33051 +f 31729/33052 31728/33051 31709/33029 +f 31711/33031 31731/33054 31730/33053 +f 29353/33060 31731/33054 29281/33033 +f 29153/33055 31720/33043 29181/33061 +f 29181/33061 31720/33043 29180/33056 +f 31722/33045 31731/33054 31732/33057 +f 31732/33057 31735/33062 29638/33037 +f 31722/33045 31730/33053 31731/33054 +f 31733/33058 31724/33047 31725/33048 +f 31724/33047 31733/33058 31726/33049 +f 31729/33052 31727/33050 31734/33059 +f 31727/33050 31733/33058 31736/33063 +f 31728/33051 31729/33052 31734/33059 +f 31737/33064 31731/33054 29353/33060 +f 31738/33065 31732/33057 31731/33054 +f 31732/33057 31738/33065 31735/33062 +f 31735/33062 29508/33066 29638/33037 +f 31733/33058 31725/33048 31736/33063 +f 31734/33059 31727/33050 31736/33063 +f 31738/33065 31731/33054 31737/33064 +f 29353/33060 29430/33067 31737/33064 +f 31737/33064 31735/33062 31738/33065 +f 29430/33067 29508/33066 31735/33062 +f 31735/33062 31737/33064 29430/33067 +f 31739/33068 31740/33069 31741/33070 +f 31740/33069 31739/33068 31742/33071 +f 31743/33072 31741/33070 31740/33069 +f 31741/33070 31744/33073 31739/33068 +f 31739/33068 31745/33074 31742/33071 +f 31746/33075 31740/33069 31742/33071 +f 1480/33076 31741/33070 31743/33072 +f 31740/33069 31746/33075 31743/33072 +f 31741/33070 31747/33077 31744/33073 +f 31744/33073 31745/33074 31739/33068 +f 31745/33074 31748/33078 31742/33071 +f 31742/33071 31749/33079 31746/33075 +f 31747/33077 31741/33070 1480/33076 +f 31750/33080 1480/33076 31743/33072 +f 31746/33075 31751/33081 31743/33072 +f 31747/33077 31752/33082 31744/33073 +f 31752/33082 31745/33074 31744/33073 +f 31753/33083 31748/33078 31745/33074 +f 31748/33078 31754/33084 31742/33071 +f 31742/33071 31755/33085 31749/33079 +f 31746/33075 31749/33079 31756/33086 +f 31757/33087 31747/33077 1480/33076 +f 31751/33081 31750/33080 31743/33072 +f 1480/33076 31750/33080 1777/33088 +f 31751/33081 31746/33075 31758/33089 +f 31747/33077 31759/33090 31752/33082 +f 31753/33083 31745/33074 31752/33082 +f 31748/33078 31753/33083 31760/33091 +f 31748/33078 31237/33092 31754/33084 +f 31742/33071 31754/33084 31761/33093 +f 31761/33093 31755/33085 31742/33071 +f 31762/33094 31749/33079 31755/33085 +f 31758/33089 31746/33075 31756/33086 +f 31749/33079 31762/33094 31756/33086 +f 31747/33077 31757/33087 31763/33095 +f 1480/33076 1288/33096 31757/33087 +f 31750/33080 31751/33081 1777/33088 +f 31758/33089 31764/33097 31751/33081 +f 31752/33082 31759/33090 31753/33083 +f 31759/33090 31747/33077 31763/33095 +f 31765/33098 31760/33091 31753/33083 +f 31748/33078 31760/33091 31237/33092 +f 31237/33092 31761/33093 31754/33084 +f 31766/33099 31755/33085 31761/33093 +f 31755/33085 31767/33100 31762/33094 +f 31756/33086 31768/33101 31758/33089 +f 31762/33094 31769/33102 31756/33086 +f 31770/33103 31763/33095 31757/33087 +f 31770/33103 31757/33087 1288/33096 +f 1675/33104 1777/33088 31751/33081 +f 31758/33089 31768/33101 31764/33097 +f 31771/33105 31751/33081 31764/33097 +f 31753/33083 31759/33090 31772/33106 +f 31763/33095 31773/33107 31759/33090 +f 31753/33083 31774/33108 31765/33098 +f 31760/33091 31765/33098 31775/33109 +f 31776/33110 31237/33092 31760/33091 +f 31761/33093 31237/33092 31225/33111 +f 31766/33099 31761/33093 31225/33111 +f 31755/33085 31766/33099 31767/33100 +f 31767/33100 31777/33112 31762/33094 +f 31756/33086 31778/33113 31768/33101 +f 31777/33112 31769/33102 31762/33094 +f 31756/33086 31769/33102 31778/33113 +f 31779/33114 31763/33095 31770/33103 +f 1481/33115 31770/33103 1288/33096 +f 1675/33104 31751/33081 31771/33105 +f 31780/33116 31764/33097 31768/33101 +f 31764/33097 31780/33116 31771/33105 +f 31772/33106 31759/33090 31781/33117 +f 31774/33108 31753/33083 31772/33106 +f 31759/33090 31773/33107 31781/33117 +f 31773/33107 31763/33095 31779/33114 +f 31774/33108 31782/33118 31765/33098 +f 31775/33109 31765/33098 31783/33119 +f 31775/33109 31784/33120 31760/33091 +f 31237/33092 31776/33110 31226/33121 +f 31784/33120 31776/33110 31760/33091 +f 31766/33099 31225/33111 31785/33122 +f 31785/33122 31767/33100 31766/33099 +f 31767/33100 31786/33123 31777/33112 +f 31778/33113 1877/33124 31768/33101 +f 31786/33123 31769/33102 31777/33112 +f 31778/33113 31769/33102 31787/33125 +f 31770/33103 31788/33126 31779/33114 +f 31788/33126 31770/33103 1481/33115 +f 1675/33104 31771/33105 1674/33127 +f 31780/33116 31768/33101 1876/33128 +f 31780/33116 1674/33127 31771/33105 +f 31789/33129 31772/33106 31781/33117 +f 31789/33129 31774/33108 31772/33106 +f 31781/33117 31773/33107 31790/33130 +f 31773/33107 31779/33114 31791/33131 +f 31774/33108 31792/33132 31782/33118 +f 31782/33118 31783/33119 31765/33098 +f 31793/33133 31775/33109 31783/33119 +f 31775/33109 31793/33133 31784/33120 +f 31228/33134 31226/33121 31776/33110 +f 31776/33110 31784/33120 31228/33134 +f 31785/33122 31225/33111 31211/33135 +f 31786/33123 31767/33100 31785/33122 +f 1877/33124 31778/33113 1980/33136 +f 31768/33101 1877/33124 1876/33128 +f 31769/33102 31786/33123 31794/33137 +f 31787/33125 1980/33136 31778/33113 +f 31769/33102 1982/33138 31787/33125 +f 31795/33139 31779/33114 31788/33126 +f 1481/33115 1672/33140 31788/33126 +f 1674/33127 31780/33116 1876/33128 +f 31789/33129 31781/33117 31796/33141 +f 31774/33108 31789/33129 31796/33141 +f 31790/33130 31797/33142 31781/33117 +f 31790/33130 31773/33107 31791/33131 +f 31779/33114 31795/33139 31791/33131 +f 31796/33141 31792/33132 31774/33108 +f 31782/33118 31792/33132 31798/33143 +f 31782/33118 31798/33143 31783/33119 +f 31799/33144 31793/33133 31783/33119 +f 31793/33133 31229/33145 31784/33120 +f 31784/33120 31229/33145 31228/33134 +f 31785/33122 31211/33135 31194/33146 +f 31786/33123 31785/33122 31800/33147 +f 31786/33123 31801/33148 31794/33137 +f 31769/33102 31794/33137 1982/33138 +f 1784/33149 1980/33136 31787/33125 +f 1982/33138 1784/33149 31787/33125 +f 31802/33150 31795/33139 31788/33126 +f 31803/33151 31788/33126 1672/33140 +f 31781/33117 31797/33142 31796/33141 +f 31804/33152 31797/33142 31790/33130 +f 31804/33152 31790/33130 31791/33131 +f 31805/33153 31791/33131 31795/33139 +f 31796/33141 31806/33154 31792/33132 +f 31792/33132 31807/33155 31798/33143 +f 31798/33143 31808/33156 31783/33119 +f 31783/33119 31808/33156 31799/33144 +f 31241/33157 31793/33133 31799/33144 +f 31229/33145 31793/33133 31241/33157 +f 31194/33146 31800/33147 31785/33122 +f 31800/33147 31809/33158 31786/33123 +f 31810/33159 31801/33148 31786/33123 +f 31794/33137 31801/33148 2079/33160 +f 1982/33138 31794/33137 2079/33160 +f 31802/33150 31788/33126 31803/33151 +f 31811/33161 31795/33139 31802/33150 +f 31803/33151 1672/33140 31812/33162 +f 31796/33141 31797/33142 31813/33163 +f 31814/33164 31797/33142 31804/33152 +f 31791/33131 31815/33165 31804/33152 +f 31805/33153 31815/33165 31791/33131 +f 31805/33153 31795/33139 31816/33166 +f 31807/33155 31792/33132 31806/33154 +f 31796/33141 31813/33163 31806/33154 +f 31798/33143 31807/33155 31817/33167 +f 31798/33143 31818/33168 31808/33156 +f 31241/33157 31799/33144 31808/33156 +f 31183/33169 31800/33147 31194/33146 +f 31810/33159 31809/33158 31800/33147 +f 31786/33123 31809/33158 31810/33159 +f 31810/33159 31819/33170 31801/33148 +f 31801/33148 31820/33171 2079/33160 +f 31802/33150 31803/33151 31821/33172 +f 31795/33139 31811/33161 31816/33166 +f 31822/33173 31811/33161 31802/33150 +f 31812/33162 31821/33172 31803/33151 +f 1779/33174 31812/33162 1672/33140 +f 31814/33164 31813/33163 31797/33142 +f 31823/33175 31814/33164 31804/33152 +f 31823/33175 31804/33152 31815/33165 +f 31816/33166 31815/33165 31805/33153 +f 31807/33155 31806/33154 31824/33176 +f 31825/33177 31806/33154 31813/33163 +f 31826/33178 31817/33167 31807/33155 +f 31817/33167 31827/33179 31798/33143 +f 31241/33157 31808/33156 31818/33168 +f 31798/33143 31827/33179 31818/33168 +f 31183/33169 31828/33180 31800/33147 +f 31800/33147 31819/33170 31810/33159 +f 31829/33181 31801/33148 31819/33170 +f 31820/33171 31801/33148 31829/33181 +f 2079/33160 31820/33171 2169/33182 +f 31821/33172 31822/33173 31802/33150 +f 31830/33183 31816/33166 31811/33161 +f 31822/33173 31831/33184 31811/33161 +f 31832/33185 31821/33172 31812/33162 +f 31833/33186 31812/33162 1779/33174 +f 31813/33163 31814/33164 31280/33187 +f 31814/33164 31823/33175 31834/33188 +f 31835/33189 31823/33175 31815/33165 +f 31836/33190 31815/33165 31816/33166 +f 31824/33176 31806/33154 31266/33191 +f 31824/33176 31826/33178 31807/33155 +f 31825/33177 31266/33191 31806/33154 +f 31825/33177 31813/33163 31280/33187 +f 31817/33167 31826/33178 31837/33192 +f 31827/33179 31817/33167 31837/33192 +f 31241/33157 31818/33168 31242/33193 +f 31838/33194 31818/33168 31827/33179 +f 31183/33169 31839/33195 31828/33180 +f 31828/33180 31819/33170 31800/33147 +f 31828/33180 31829/33181 31819/33170 +f 31820/33171 31829/33181 31840/33196 +f 2169/33182 31820/33171 31841/33197 +f 31842/33198 31822/33173 31821/33172 +f 31831/33184 31830/33183 31811/33161 +f 31816/33166 31830/33183 31843/33199 +f 31822/33173 31844/33200 31831/33184 +f 31845/33201 31832/33185 31812/33162 +f 31832/33185 31842/33198 31821/33172 +f 31833/33186 1779/33174 2078/33202 +f 31812/33162 31833/33186 31845/33201 +f 31814/33164 31834/33188 31280/33187 +f 31823/33175 31835/33189 31834/33188 +f 31836/33190 31835/33189 31815/33165 +f 31843/33199 31836/33190 31816/33166 +f 31824/33176 31266/33191 31257/33203 +f 31257/33203 31826/33178 31824/33176 +f 31266/33191 31825/33177 31280/33187 +f 31837/33192 31826/33178 31251/33204 +f 31827/33179 31837/33192 31846/33205 +f 31242/33193 31818/33168 31238/33206 +f 31838/33194 31847/33207 31818/33168 +f 31838/33194 31827/33179 31846/33205 +f 31839/33195 31183/33169 31172/33208 +f 31828/33180 31839/33195 31848/33209 +f 31828/33180 31840/33196 31829/33181 +f 31820/33171 31840/33196 31849/33210 +f 31841/33197 31820/33171 31849/33210 +f 31850/33211 2169/33182 31841/33197 +f 31822/33173 31842/33198 31844/33200 +f 31843/33199 31830/33183 31831/33184 +f 31831/33184 31844/33200 31843/33199 +f 31851/33212 31832/33185 31845/33201 +f 31842/33198 31832/33185 31852/33213 +f 31833/33186 2078/33202 31853/33214 +f 31833/33186 31854/33215 31845/33201 +f 31834/33188 31276/33216 31280/33187 +f 31834/33188 31835/33189 31855/33217 +f 31835/33189 31836/33190 31855/33217 +f 31836/33190 31843/33199 31855/33217 +f 31257/33203 31251/33204 31826/33178 +f 31837/33192 31251/33204 31243/33218 +f 31856/33219 31846/33205 31837/33192 +f 31847/33207 31238/33206 31818/33168 +f 31838/33194 31856/33219 31847/33207 +f 31838/33194 31846/33205 31856/33219 +f 31172/33208 31857/33220 31839/33195 +f 31828/33180 31848/33209 31840/33196 +f 31848/33209 31839/33195 31857/33220 +f 31840/33196 31858/33221 31849/33210 +f 31841/33197 31849/33210 31859/33222 +f 31850/33211 2267/33223 2169/33182 +f 31859/33222 31850/33211 31841/33197 +f 31842/33198 31860/33224 31844/33200 +f 31843/33199 31844/33200 31855/33217 +f 31851/33212 31845/33201 31854/33215 +f 31832/33185 31851/33212 31852/33213 +f 31861/33225 31842/33198 31852/33213 +f 31853/33214 2078/33202 2448/33226 +f 31854/33215 31833/33186 31853/33214 +f 31287/33227 31276/33216 31834/33188 +f 31834/33188 31855/33217 31862/33228 +f 31243/33218 31856/33219 31837/33192 +f 31847/33207 31231/33229 31238/33206 +f 31847/33207 31856/33219 31231/33229 +f 31863/33230 31857/33220 31172/33208 +f 31858/33221 31840/33196 31848/33209 +f 31848/33209 31857/33220 31858/33221 +f 31849/33210 31858/33221 31864/33231 +f 31859/33222 31849/33210 31864/33231 +f 2267/33223 31850/33211 31865/33232 +f 31859/33222 31865/33232 31850/33211 +f 31842/33198 31861/33225 31860/33224 +f 31844/33200 31860/33224 31855/33217 +f 31866/33233 31851/33212 31854/33215 +f 31866/33233 31852/33213 31851/33212 +f 31861/33225 31852/33213 31866/33233 +f 31867/33234 31853/33214 2448/33226 +f 31866/33233 31854/33215 31853/33214 +f 31868/33235 31287/33227 31834/33188 +f 31862/33228 31855/33217 31860/33224 +f 31862/33228 31868/33235 31834/33188 +f 31856/33219 31243/33218 31231/33229 +f 31869/33236 31857/33220 31863/33230 +f 31863/33230 31172/33208 31870/33237 +f 31869/33236 31858/33221 31857/33220 +f 31869/33236 31864/33231 31858/33221 +f 31871/33238 31859/33222 31864/33231 +f 31865/33232 2449/33239 2267/33223 +f 31859/33222 31871/33238 31865/33232 +f 31860/33224 31861/33225 31872/33240 +f 31873/33241 31861/33225 31866/33233 +f 31867/33234 31874/33242 31853/33214 +f 31867/33234 2448/33226 31875/33243 +f 31866/33233 31853/33214 31873/33241 +f 31287/33227 31868/33235 31288/33244 +f 31862/33228 31860/33224 31872/33240 +f 31876/33245 31868/33235 31862/33228 +f 31869/33236 31863/33230 31877/33246 +f 31863/33230 31870/33237 31878/33247 +f 31870/33237 31172/33208 31154/33248 +f 31879/33249 31864/33231 31869/33236 +f 31871/33238 31864/33231 31879/33249 +f 2449/33239 31865/33232 31880/33250 +f 31881/33251 31865/33232 31871/33238 +f 31872/33240 31861/33225 31882/33252 +f 31882/33252 31861/33225 31873/33241 +f 31873/33241 31853/33214 31874/33242 +f 31883/33253 31874/33242 31867/33234 +f 31883/33253 31867/33234 31875/33243 +f 31875/33243 2448/33226 2529/33254 +f 31288/33244 31868/33235 31876/33245 +f 31872/33240 31876/33245 31862/33228 +f 31869/33236 31877/33246 31884/33255 +f 31877/33246 31863/33230 31878/33247 +f 31870/33237 31885/33256 31878/33247 +f 31870/33237 31154/33248 31886/33257 +f 31879/33249 31869/33236 31887/33258 +f 31879/33249 31881/33251 31871/33238 +f 31880/33250 31865/33232 31881/33251 +f 2601/33259 2449/33239 31880/33250 +f 31882/33252 31888/33260 31872/33240 +f 31873/33241 31889/33261 31882/33252 +f 31890/33262 31873/33241 31874/33242 +f 31874/33242 31883/33253 31890/33262 +f 31891/33263 31883/33253 31875/33243 +f 31892/33264 31875/33243 2529/33254 +f 31293/33265 31288/33244 31876/33245 +f 31888/33260 31876/33245 31872/33240 +f 31884/33255 31887/33258 31869/33236 +f 31877/33246 31893/33266 31884/33255 +f 31893/33266 31877/33246 31878/33247 +f 31885/33256 31870/33237 31886/33257 +f 31878/33247 31885/33256 31893/33266 +f 31886/33257 31154/33248 31146/33267 +f 31894/33268 31879/33249 31887/33258 +f 31879/33249 31895/33269 31881/33251 +f 31881/33251 31895/33269 31880/33250 +f 31895/33269 2601/33259 31880/33250 +f 31882/33252 31889/33261 31888/33260 +f 31896/33270 31889/33261 31873/33241 +f 31890/33262 31897/33271 31873/33241 +f 31898/33272 31890/33262 31883/33253 +f 31898/33272 31883/33253 31891/33263 +f 31891/33263 31875/33243 31892/33264 +f 2529/33254 31899/33273 31892/33264 +f 31876/33245 31888/33260 31293/33265 +f 31900/33274 31887/33258 31884/33255 +f 31893/33266 31900/33274 31884/33255 +f 31143/33275 31885/33256 31886/33257 +f 31885/33256 31901/33276 31893/33266 +f 31143/33275 31886/33257 31146/33267 +f 31902/33277 31879/33249 31894/33268 +f 31894/33268 31887/33258 31903/33278 +f 31888/33260 31889/33261 31904/33279 +f 31896/33270 31873/33241 31905/33280 +f 31889/33261 31896/33270 31906/33281 +f 31905/33280 31873/33241 31897/33271 +f 31890/33262 31898/33272 31897/33271 +f 31898/33272 31891/33263 31907/33282 +f 31907/33282 31891/33263 31892/33264 +f 31908/33283 31899/33273 2529/33254 +f 31909/33284 31892/33264 31899/33273 +f 31293/33265 31888/33260 31910/33285 +f 31900/33274 31903/33278 31887/33258 +f 31900/33274 31893/33266 31901/33276 +f 31911/33286 31885/33256 31143/33275 +f 31901/33276 31885/33256 31911/33286 +f 31894/33268 31903/33278 31902/33277 +f 31904/33279 31889/33261 31910/33285 +f 31888/33260 31904/33279 31910/33285 +f 31896/33270 31905/33280 31906/33281 +f 31910/33285 31889/33261 31906/33281 +f 31905/33280 31897/33271 31912/33287 +f 31897/33271 31898/33272 31913/33288 +f 31914/33289 31898/33272 31907/33282 +f 31892/33264 31909/33284 31907/33282 +f 31899/33273 31908/33283 31915/33290 +f 31908/33283 2529/33254 2599/33291 +f 31915/33290 31909/33284 31899/33273 +f 31916/33292 31293/33265 31910/33285 +f 31917/33293 31903/33278 31900/33274 +f 31900/33274 31901/33276 31918/33294 +f 31911/33286 31143/33275 31919/33295 +f 31901/33276 31911/33286 31919/33295 +f 31903/33278 31920/33296 31902/33277 +f 31905/33280 31921/33297 31906/33281 +f 31910/33285 31906/33281 31922/33298 +f 31912/33287 31897/33271 31913/33288 +f 31912/33287 31923/33299 31905/33280 +f 31913/33288 31898/33272 31914/33289 +f 31909/33284 31914/33289 31907/33282 +f 31908/33283 31924/33300 31915/33290 +f 31925/33301 31908/33283 2599/33291 +f 31915/33290 31926/33302 31909/33284 +f 31910/33285 31922/33298 31916/33292 +f 31916/33292 31289/33303 31293/33265 +f 31917/33293 31927/33304 31903/33278 +f 31917/33293 31900/33274 31918/33294 +f 31901/33276 31928/33305 31918/33294 +f 31919/33295 31143/33275 31124/33306 +f 31901/33276 31919/33295 31928/33305 +f 31920/33296 31903/33278 31929/33307 +f 31921/33297 31905/33280 31923/33299 +f 31906/33281 31921/33297 31922/33298 +f 31930/33308 31912/33287 31913/33288 +f 31923/33299 31912/33287 31931/33309 +f 31913/33288 31914/33289 31932/33310 +f 31926/33302 31914/33289 31909/33284 +f 31933/33311 31915/33290 31924/33300 +f 31924/33300 31908/33283 31925/33301 +f 31925/33301 2599/33291 2600/33312 +f 31926/33302 31915/33290 31933/33311 +f 31916/33292 31922/33298 31289/33303 +f 31927/33304 31929/33307 31903/33278 +f 31927/33304 31917/33293 31918/33294 +f 31928/33305 31927/33304 31918/33294 +f 31934/33313 31919/33295 31124/33306 +f 31928/33305 31919/33295 31934/33313 +f 31929/33307 31935/33314 31920/33296 +f 31923/33299 31936/33315 31921/33297 +f 31921/33297 31937/33316 31922/33298 +f 31931/33309 31912/33287 31930/33308 +f 31913/33288 31932/33310 31930/33308 +f 31931/33309 31936/33315 31923/33299 +f 31914/33289 31938/33317 31932/33310 +f 31926/33302 31939/33318 31914/33289 +f 31940/33319 31933/33311 31924/33300 +f 31941/33320 31924/33300 31925/33301 +f 31942/33321 31925/33301 2600/33312 +f 31926/33302 31933/33311 31940/33319 +f 31922/33298 31284/33322 31289/33303 +f 31929/33307 31927/33304 31943/33323 +f 31927/33304 31928/33305 31943/33323 +f 31944/33324 31934/33313 31124/33306 +f 31943/33323 31928/33305 31934/33313 +f 31935/33314 31929/33307 31943/33323 +f 31935/33314 31945/33325 31920/33296 +f 31936/33315 31937/33316 31921/33297 +f 31284/33322 31922/33298 31937/33316 +f 31946/33326 31931/33309 31930/33308 +f 31932/33310 31946/33326 31930/33308 +f 31931/33309 31294/33327 31936/33315 +f 31323/33328 31932/33310 31938/33317 +f 31938/33317 31914/33289 31939/33318 +f 31939/33318 31926/33302 31940/33319 +f 31940/33319 31924/33300 31941/33320 +f 31925/33301 31947/33329 31941/33320 +f 31942/33321 31947/33329 31925/33301 +f 31942/33321 2600/33312 31948/33330 +f 31934/33313 31944/33324 31949/33331 +f 31103/33332 31944/33324 31124/33306 +f 31943/33323 31934/33313 31949/33331 +f 31949/33331 31935/33314 31943/33323 +f 31945/33325 31935/33314 31950/33333 +f 31285/33334 31937/33316 31936/33315 +f 31937/33316 31285/33334 31284/33322 +f 31931/33309 31946/33326 31299/33335 +f 31932/33310 31951/33336 31946/33326 +f 31285/33334 31936/33315 31294/33327 +f 31299/33335 31294/33327 31931/33309 +f 31951/33336 31932/33310 31323/33328 +f 31939/33318 31323/33328 31938/33317 +f 31952/33337 31939/33318 31940/33319 +f 31941/33320 31952/33337 31940/33319 +f 31941/33320 31947/33329 31953/33338 +f 31947/33329 31942/33321 31954/33339 +f 31955/33340 31942/33321 31948/33330 +f 2528/33341 31948/33330 2600/33312 +f 31944/33324 31950/33333 31949/33331 +f 31103/33332 31956/33342 31944/33324 +f 31949/33331 31950/33333 31935/33314 +f 31945/33325 31950/33333 31957/33343 +f 31302/33344 31299/33335 31946/33326 +f 31946/33326 31951/33336 31958/33345 +f 31323/33328 31313/33346 31951/33336 +f 31939/33318 31324/33347 31323/33328 +f 31939/33318 31952/33337 31959/33348 +f 31952/33337 31941/33320 31953/33338 +f 31954/33339 31953/33338 31947/33329 +f 31942/33321 31955/33340 31954/33339 +f 31955/33340 31948/33330 31960/33349 +f 31948/33330 2528/33341 31960/33349 +f 31950/33333 31944/33324 31956/33342 +f 31103/33332 31091/33350 31956/33342 +f 31956/33342 31957/33343 31950/33333 +f 31946/33326 31958/33345 31302/33344 +f 31958/33345 31951/33336 31313/33346 +f 31939/33318 31959/33348 31324/33347 +f 31952/33337 31961/33351 31959/33348 +f 31961/33351 31952/33337 31953/33338 +f 31954/33339 31962/33352 31953/33338 +f 31954/33339 31955/33340 31963/33353 +f 31955/33340 31960/33349 31964/33354 +f 31960/33349 2528/33341 2708/33355 +f 31956/33342 31091/33350 31957/33343 +f 31302/33344 31958/33345 31313/33346 +f 31324/33347 31959/33348 31325/33356 +f 31961/33351 31965/33357 31959/33348 +f 31961/33351 31953/33338 31962/33352 +f 31963/33353 31962/33352 31954/33339 +f 31955/33340 31966/33358 31963/33353 +f 31955/33340 31964/33354 31966/33358 +f 31967/33359 31964/33354 31960/33349 +f 31960/33349 2708/33355 31968/33360 +f 31325/33356 31959/33348 31965/33357 +f 31969/33361 31965/33357 31961/33351 +f 31963/33353 31961/33351 31962/33352 +f 31963/33353 31966/33358 31970/33362 +f 31967/33359 31966/33358 31964/33354 +f 31960/33349 31971/33363 31967/33359 +f 31972/33364 31960/33349 31968/33360 +f 31968/33360 2708/33355 31973/33365 +f 31965/33357 31974/33366 31325/33356 +f 31975/33367 31965/33357 31969/33361 +f 31970/33362 31969/33361 31961/33351 +f 31970/33362 31961/33351 31963/33353 +f 31966/33358 31976/33368 31970/33362 +f 31966/33358 31967/33359 31976/33368 +f 31960/33349 31972/33364 31971/33363 +f 31977/33369 31967/33359 31971/33363 +f 31978/33370 31972/33364 31968/33360 +f 2704/33371 31973/33365 2708/33355 +f 31973/33365 31979/33372 31968/33360 +f 31974/33366 31965/33357 31975/33367 +f 31322/33373 31325/33356 31974/33366 +f 31969/33361 31980/33374 31975/33367 +f 31970/33362 31981/33375 31969/33361 +f 31970/33362 31976/33368 31981/33375 +f 31967/33359 31982/33376 31976/33368 +f 31972/33364 31983/33377 31971/33363 +f 31984/33378 31967/33359 31977/33369 +f 31984/33378 31977/33369 31971/33363 +f 31972/33364 31978/33370 31983/33377 +f 31979/33372 31978/33370 31968/33360 +f 2704/33371 31985/33379 31973/33365 +f 31979/33372 31973/33365 31986/33380 +f 31987/33381 31974/33366 31975/33367 +f 31974/33366 31319/33382 31322/33373 +f 31981/33375 31980/33374 31969/33361 +f 31988/33383 31975/33367 31980/33374 +f 31989/33384 31981/33375 31976/33368 +f 31967/33359 31990/33385 31982/33376 +f 31989/33384 31976/33368 31982/33376 +f 31971/33363 31983/33377 31984/33378 +f 31984/33378 31990/33385 31967/33359 +f 31978/33370 31991/33386 31983/33377 +f 31992/33387 31978/33370 31979/33372 +f 31993/33388 31973/33365 31985/33379 +f 2835/33389 31985/33379 2704/33371 +f 31993/33388 31986/33380 31973/33365 +f 31986/33380 31992/33387 31979/33372 +f 31988/33383 31987/33381 31975/33367 +f 31974/33366 31987/33381 31319/33382 +f 31981/33375 31994/33390 31980/33374 +f 31980/33374 31995/33391 31988/33383 +f 31994/33390 31981/33375 31989/33384 +f 31996/33392 31982/33376 31990/33385 +f 31989/33384 31982/33376 31996/33392 +f 31990/33385 31984/33378 31983/33377 +f 31991/33386 31978/33370 31992/33387 +f 31996/33392 31983/33377 31991/33386 +f 31985/33379 31997/33393 31993/33388 +f 31985/33379 2835/33389 31998/33394 +f 31999/33395 31986/33380 31993/33388 +f 31992/33387 31986/33380 32000/33396 +f 31988/33383 32001/33397 31987/33381 +f 32001/33397 31319/33382 31987/33381 +f 31994/33390 31995/33391 31980/33374 +f 31988/33383 31995/33391 32002/33398 +f 31994/33390 31989/33384 32003/33399 +f 31990/33385 31983/33377 31996/33392 +f 32004/33400 31989/33384 31996/33392 +f 31992/33387 32005/33401 31991/33386 +f 31991/33386 32006/33402 31996/33392 +f 31997/33393 31985/33379 31998/33394 +f 31993/33388 31997/33393 32007/33403 +f 31998/33394 2835/33389 2898/33404 +f 31999/33395 32000/33396 31986/33380 +f 32008/33405 31999/33395 31993/33388 +f 31992/33387 32000/33396 32009/33406 +f 32002/33398 32001/33397 31988/33383 +f 31319/33382 32001/33397 15637/33407 +f 31995/33391 31994/33390 32002/33398 +f 32010/33408 31994/33390 32003/33399 +f 31989/33384 32011/33409 32003/33399 +f 31989/33384 32004/33400 32011/33409 +f 32006/33402 32004/33400 31996/33392 +f 32006/33402 31991/33386 32005/33401 +f 32005/33401 31992/33387 32009/33406 +f 31998/33394 32012/33410 31997/33393 +f 31997/33393 32013/33411 32007/33403 +f 32007/33403 32008/33405 31993/33388 +f 31998/33394 2898/33404 32014/33412 +f 32000/33396 31999/33395 32008/33405 +f 32008/33405 32009/33406 32000/33396 +f 32010/33408 32001/33397 32002/33398 +f 32001/33397 32010/33408 15637/33407 +f 31994/33390 32010/33408 32002/33398 +f 32003/33399 32015/33413 32010/33408 +f 32003/33399 32011/33409 32015/33413 +f 32011/33409 32004/33400 32016/33414 +f 32006/33402 32016/33414 32004/33400 +f 32006/33402 32005/33401 32017/33415 +f 32005/33401 32009/33406 32008/33405 +f 32012/33410 31998/33394 32014/33412 +f 32012/33410 32018/33416 31997/33393 +f 32013/33411 31997/33393 32018/33416 +f 32007/33403 32013/33411 32019/33417 +f 32008/33405 32007/33403 32020/33418 +f 2898/33404 2772/33419 32014/33412 +f 15637/33407 32010/33408 32021/33420 +f 32021/33420 32010/33408 32015/33413 +f 32011/33409 32022/33421 32015/33413 +f 32011/33409 32016/33414 32023/33422 +f 32017/33415 32016/33414 32006/33402 +f 32005/33401 32020/33418 32017/33415 +f 32020/33418 32005/33401 32008/33405 +f 32014/33412 32024/33423 32012/33410 +f 32012/33410 32025/33424 32018/33416 +f 32013/33411 32018/33416 32026/33425 +f 32020/33418 32007/33403 32019/33417 +f 32013/33411 32027/33426 32019/33417 +f 32014/33412 2772/33419 32028/33427 +f 32021/33420 15679/33428 15637/33407 +f 32015/33413 32022/33421 32021/33420 +f 32022/33421 32011/33409 32023/33422 +f 32023/33422 32016/33414 32017/33415 +f 32029/33429 32017/33415 32020/33418 +f 32012/33410 32024/33423 32025/33424 +f 32024/33423 32014/33412 32030/33430 +f 32031/33431 32018/33416 32025/33424 +f 32018/33416 32031/33431 32026/33425 +f 32027/33426 32013/33411 32026/33425 +f 32019/33417 32029/33429 32020/33418 +f 32027/33426 32032/33432 32019/33417 +f 32028/33427 32030/33430 32014/33412 +f 2772/33419 2771/33433 32028/33427 +f 15679/33428 32021/33420 32022/33421 +f 15715/33434 32022/33421 32023/33422 +f 32023/33422 32017/33415 32033/33435 +f 32034/33436 32017/33415 32029/33429 +f 32035/33437 32025/33424 32024/33423 +f 32036/33438 32024/33423 32030/33430 +f 32037/33439 32031/33431 32025/33424 +f 32031/33431 32038/33440 32026/33425 +f 32026/33425 32032/33432 32027/33426 +f 32032/33432 32029/33429 32019/33417 +f 32030/33430 32028/33427 32039/33441 +f 2771/33433 32040/33442 32028/33427 +f 32022/33421 15715/33434 15679/33428 +f 15715/33434 32023/33422 15815/33443 +f 32017/33415 32034/33436 32033/33435 +f 32033/33435 15815/33443 32023/33422 +f 32041/33444 32034/33436 32029/33429 +f 32025/33424 32035/33437 32037/33439 +f 32035/33437 32024/33423 32036/33438 +f 32036/33438 32030/33430 32039/33441 +f 32038/33440 32031/33431 32037/33439 +f 32026/33425 32038/33440 32042/33445 +f 32032/33432 32026/33425 32042/33445 +f 32029/33429 32032/33432 32041/33444 +f 32039/33441 32028/33427 32040/33442 +f 32043/33446 32040/33442 2771/33433 +f 32034/33436 15815/33443 32033/33435 +f 32034/33436 32041/33444 32044/33447 +f 32045/33448 32037/33439 32035/33437 +f 32036/33438 32045/33448 32035/33437 +f 32046/33449 32036/33438 32039/33441 +f 32038/33440 32037/33439 32047/33450 +f 32038/33440 32048/33451 32042/33445 +f 32042/33445 32041/33444 32032/33432 +f 32039/33441 32040/33442 32049/33452 +f 2661/33453 32043/33446 2771/33433 +f 32050/33454 32040/33442 32043/33446 +f 15815/33443 32034/33436 32051/33455 +f 32052/33456 32044/33447 32041/33444 +f 32034/33436 32044/33447 32051/33455 +f 32037/33439 32045/33448 32053/33457 +f 32046/33449 32045/33448 32036/33438 +f 32039/33441 32049/33452 32046/33449 +f 32048/33451 32038/33440 32047/33450 +f 32037/33439 32053/33457 32047/33450 +f 32048/33451 32041/33444 32042/33445 +f 32040/33442 32050/33454 32049/33452 +f 2661/33453 2659/33458 32043/33446 +f 32043/33446 32054/33459 32050/33454 +f 15816/33460 15815/33443 32051/33455 +f 32055/33461 32044/33447 32052/33456 +f 32041/33444 32048/33451 32052/33456 +f 32044/33447 15816/33460 32051/33455 +f 32046/33449 32053/33457 32045/33448 +f 32056/33462 32046/33449 32049/33452 +f 32052/33456 32048/33451 32047/33450 +f 32057/33463 32047/33450 32053/33457 +f 32058/33464 32049/33452 32050/33454 +f 32059/33465 32043/33446 2659/33458 +f 32043/33446 32059/33465 32054/33459 +f 32058/33464 32050/33454 32054/33459 +f 32044/33447 32055/33461 15817/33466 +f 32047/33450 32055/33461 32052/33456 +f 15816/33460 32044/33447 15817/33466 +f 32053/33457 32046/33449 32060/33467 +f 32060/33467 32046/33449 32056/33462 +f 32058/33464 32056/33462 32049/33452 +f 32061/33468 32047/33450 32057/33463 +f 32053/33457 32062/33469 32057/33463 +f 32059/33465 2659/33458 32063/33470 +f 32064/33471 32054/33459 32059/33465 +f 32064/33471 32058/33464 32054/33459 +f 32055/33461 32065/33472 15817/33466 +f 32061/33468 32055/33461 32047/33450 +f 32062/33469 32053/33457 32060/33467 +f 32056/33462 32066/33473 32060/33467 +f 32058/33464 32067/33474 32056/33462 +f 32065/33472 32061/33468 32057/33463 +f 32057/33463 32062/33469 32068/33475 +f 32063/33470 32069/33476 32059/33465 +f 2718/33477 32063/33470 2659/33458 +f 32070/33478 32064/33471 32059/33465 +f 32071/33479 32058/33464 32064/33471 +f 32055/33461 32061/33468 32065/33472 +f 32065/33472 15785/33480 15817/33466 +f 32066/33473 32062/33469 32060/33467 +f 32066/33473 32056/33462 32067/33474 +f 32072/33481 32067/33474 32058/33464 +f 32073/33482 32065/33472 32057/33463 +f 32074/33483 32068/33475 32062/33469 +f 32068/33475 32075/33484 32057/33463 +f 32063/33470 32076/33485 32069/33476 +f 32070/33478 32059/33465 32069/33476 +f 2718/33477 32076/33485 32063/33470 +f 32077/33486 32064/33471 32070/33478 +f 32058/33464 32071/33479 32072/33481 +f 32064/33471 32077/33486 32071/33479 +f 32065/33472 32073/33482 15785/33480 +f 32074/33483 32062/33469 32066/33473 +f 32067/33474 32078/33487 32066/33473 +f 32072/33481 32078/33487 32067/33474 +f 32075/33484 32073/33482 32057/33463 +f 32074/33483 32079/33488 32068/33475 +f 32079/33488 32075/33484 32068/33475 +f 32076/33485 2854/33489 32069/33476 +f 32069/33476 32080/33490 32070/33478 +f 2854/33489 32076/33485 2718/33477 +f 32070/33478 32080/33490 32077/33486 +f 32081/33491 32072/33481 32071/33479 +f 32077/33486 32082/33492 32071/33479 +f 15789/33493 15785/33480 32073/33482 +f 32074/33483 32066/33473 32078/33487 +f 32078/33487 32072/33481 32081/33491 +f 15789/33493 32073/33482 32075/33484 +f 32083/33494 32079/33488 32074/33483 +f 15789/33493 32075/33484 32079/33488 +f 2981/33495 32069/33476 2854/33489 +f 32084/33496 32080/33490 32069/33476 +f 32085/33497 32077/33486 32080/33490 +f 32081/33491 32071/33479 32082/33492 +f 32082/33492 32077/33486 32086/33498 +f 32078/33487 32083/33494 32074/33483 +f 32081/33491 32087/33499 32078/33487 +f 32083/33494 32088/33500 32079/33488 +f 15788/33501 15789/33493 32079/33488 +f 2981/33495 32084/33496 32069/33476 +f 32084/33496 32089/33502 32080/33490 +f 32089/33502 32085/33497 32080/33490 +f 32086/33498 32077/33486 32085/33497 +f 32082/33492 32090/33503 32081/33491 +f 32086/33498 32091/33504 32082/33492 +f 32087/33499 32083/33494 32078/33487 +f 32090/33503 32087/33499 32081/33491 +f 32088/33500 15788/33501 32079/33488 +f 32088/33500 32083/33494 32092/33505 +f 2981/33495 32093/33506 32084/33496 +f 32093/33506 32089/33502 32084/33496 +f 32086/33498 32085/33497 32089/33502 +f 32082/33492 32094/33507 32090/33503 +f 32094/33507 32082/33492 32091/33504 +f 32091/33504 32086/33498 32095/33508 +f 32083/33494 32087/33499 32092/33505 +f 32096/33509 32087/33499 32090/33503 +f 15788/33501 32088/33500 15757/33510 +f 15757/33510 32088/33500 32092/33505 +f 3041/33511 32093/33506 2981/33495 +f 32097/33512 32089/33502 32093/33506 +f 32086/33498 32089/33502 32095/33508 +f 32090/33503 32094/33507 32098/33513 +f 32094/33507 32091/33504 32098/33513 +f 32099/33514 32091/33504 32095/33508 +f 32096/33509 32092/33505 32087/33499 +f 32090/33503 32098/33513 32096/33509 +f 15757/33510 32092/33505 15787/33515 +f 32093/33506 3041/33511 32100/33516 +f 32095/33508 32089/33502 32097/33512 +f 32093/33506 32101/33517 32097/33512 +f 32091/33504 32099/33514 32098/33513 +f 32095/33508 32102/33518 32099/33514 +f 15787/33515 32092/33505 32096/33509 +f 32096/33509 32098/33513 15838/33519 +f 32101/33517 32093/33506 32100/33516 +f 3041/33511 32103/33520 32100/33516 +f 32097/33512 32104/33521 32095/33508 +f 32097/33512 32101/33517 32104/33521 +f 32098/33513 32099/33514 32105/33522 +f 32104/33521 32102/33518 32095/33508 +f 32106/33523 32099/33514 32102/33518 +f 32096/33509 15838/33519 15787/33515 +f 15838/33519 32098/33513 32105/33522 +f 32107/33524 32101/33517 32100/33516 +f 3127/33525 32103/33520 3041/33511 +f 32103/33520 32108/33526 32100/33516 +f 32104/33521 32101/33517 32107/33524 +f 32106/33523 32105/33522 32099/33514 +f 32102/33518 32104/33521 32109/33527 +f 32102/33518 32110/33528 32106/33523 +f 32105/33522 15837/33529 15838/33519 +f 32100/33516 32108/33526 32107/33524 +f 3127/33525 32111/33530 32103/33520 +f 32108/33526 32103/33520 32111/33530 +f 32107/33524 32112/33531 32104/33521 +f 32106/33523 32113/33532 32105/33522 +f 32104/33521 32112/33531 32109/33527 +f 32109/33527 32112/33531 32102/33518 +f 32112/33531 32110/33528 32102/33518 +f 32114/33533 32106/33523 32110/33528 +f 15837/33529 32105/33522 32113/33532 +f 32115/33534 32107/33524 32108/33526 +f 32116/33535 32111/33530 3127/33525 +f 32117/33536 32108/33526 32111/33530 +f 32112/33531 32107/33524 32115/33534 +f 32114/33533 32113/33532 32106/33523 +f 32112/33531 32118/33537 32110/33528 +f 32118/33537 32114/33533 32110/33528 +f 32113/33532 15814/33538 15837/33529 +f 32117/33536 32115/33534 32108/33526 +f 3127/33525 3163/33539 32116/33535 +f 32116/33535 32117/33536 32111/33530 +f 32119/33540 32112/33531 32115/33534 +f 15814/33538 32113/33532 32114/33533 +f 32120/33541 32118/33537 32112/33531 +f 32121/33542 32114/33533 32118/33537 +f 32115/33534 32117/33536 32122/33543 +f 32116/33535 3163/33539 32123/33544 +f 32122/33543 32117/33536 32116/33535 +f 32119/33540 32120/33541 32112/33531 +f 32119/33540 32115/33534 32124/33545 +f 32121/33542 15814/33538 32114/33533 +f 32120/33541 32125/33546 32118/33537 +f 32121/33542 32118/33537 25522/33547 +f 32115/33534 32122/33543 32126/33548 +f 32127/33549 32116/33535 32123/33544 +f 3163/33539 3197/33550 32123/33544 +f 32122/33543 32116/33535 32126/33548 +f 32120/33541 32119/33540 32124/33545 +f 32115/33534 32128/33551 32124/33545 +f 15814/33538 32121/33542 15836/33552 +f 32125/33546 32120/33541 32129/33553 +f 32118/33537 32125/33546 25522/33547 +f 15836/33552 32121/33542 25522/33547 +f 32126/33548 32128/33551 32115/33534 +f 3197/33550 32127/33549 32123/33544 +f 32126/33548 32116/33535 32127/33549 +f 32124/33545 32129/33553 32120/33541 +f 32124/33545 32128/33551 32130/33554 +f 32131/33555 32125/33546 32129/33553 +f 25522/33547 32125/33546 32131/33555 +f 32128/33551 32126/33548 25541/33556 +f 32127/33549 3197/33550 3295/33557 +f 32127/33549 3295/33557 32126/33548 +f 25538/33558 32129/33553 32124/33545 +f 25541/33556 32130/33554 32128/33551 +f 32130/33554 25538/33558 32124/33545 +f 25538/33558 32131/33555 32129/33553 +f 25527/33559 25522/33547 32131/33555 +f 3295/33557 25541/33556 32126/33548 +f 25538/33558 32130/33554 25541/33556 +f 25538/33558 25527/33559 32131/33555 +f 32132/33560 36565/39785 36566/39786 +f 32133/33561 36567/39787 36568/39788 +f 32134/33562 36569/39789 36570/39790 +f 36569/39791 32134/33562 32132/33560 +f 36566/39792 36569/39791 32132/33560 +f 36565/39793 32132/33560 32135/33563 +f 36571/39794 36565/39793 32135/33563 +f 36571/39795 32135/33563 32133/33561 +f 36568/39796 36571/39795 32133/33561 +f 32133/33561 36572/39797 36567/39798 +f 36573/39799 32136/33564 32134/33562 +f 36570/39800 36573/39799 32134/33562 +f 32136/33564 36573/39801 36574/39802 +f 32134/33562 32137/33565 32132/33560 +f 32137/33565 32135/33563 32132/33560 +f 32138/33566 32133/33561 32135/33563 +f 36572/39803 32133/33561 23425/33567 +f 36469/39804 36572/39803 23425/33567 +f 32136/33564 32139/33568 32134/33562 +f 32136/33564 36574/39805 36575/39806 +f 32137/33565 32134/33562 32140/33569 +f 32137/33565 32141/33570 32135/33563 +f 32133/33561 32138/33566 23425/33567 +f 32138/33566 32135/33563 32141/33570 +f 3248/33571 32139/33568 32136/33564 +f 32134/33562 32139/33568 32140/33569 +f 36168/39807 3270/33572 32136/33564 +f 36575/39808 36168/39807 32136/33564 +f 32137/33565 32140/33569 32141/33570 +f 32138/33566 23422/33573 23425/33567 +f 32138/33566 32141/33570 23422/33573 +f 3248/33571 3223/33574 32139/33568 +f 32136/33564 3270/33572 3248/33571 +f 32140/33569 32139/33568 3223/33574 +f 32140/33569 3223/33574 32141/33570 +f 32141/33570 23415/33575 23422/33573 +f 3223/33574 3271/33576 32141/33570 +f 3271/33576 23415/33575 32141/33570 +f 32142/33577 23415/33575 3271/33576 +f 23415/33575 32142/33577 3269/33578 +f 3271/33576 3291/33579 32142/33577 +f 3269/33578 32142/33577 3291/33579 +f 32143/33580 32144/33581 32145/33582 +f 32144/33581 32143/33580 32146/33583 +f 32145/33582 32144/33581 31634/33584 +f 32147/33585 32143/33580 32145/33582 +f 32148/33586 32146/33583 32143/33580 +f 32149/33587 32144/33581 32146/33583 +f 32150/33588 31634/33584 32144/33581 +f 31634/33584 32151/33589 32145/33582 +f 32143/33580 32147/33585 32148/33586 +f 32145/33582 32151/33589 32147/33585 +f 32146/33583 32148/33586 31480/33590 +f 32146/33583 32152/33591 32149/33587 +f 31545/33592 32144/33581 32149/33587 +f 31601/33593 31634/33584 32150/33588 +f 32144/33581 31545/33592 32150/33588 +f 32151/33589 31634/33584 31635/33594 +f 32153/33595 32148/33586 32147/33585 +f 32154/33596 32147/33585 32151/33589 +f 31460/33597 32146/33583 31480/33590 +f 32155/33598 31480/33590 32148/33586 +f 32146/33583 31460/33597 32152/33591 +f 32149/33587 32152/33591 32156/33599 +f 31499/33600 31545/33592 32149/33587 +f 31545/33592 31601/33593 32150/33588 +f 31635/33594 31668/33601 32151/33589 +f 32155/33598 32148/33586 32153/33595 +f 32153/33595 32147/33585 32157/33602 +f 32151/33589 31697/33603 32154/33596 +f 32158/33604 32147/33585 32154/33596 +f 31549/33605 31480/33590 32155/33598 +f 31460/33597 31426/33606 32152/33591 +f 32152/33591 31426/33606 32156/33599 +f 32156/33599 31499/33600 32149/33587 +f 31697/33603 32151/33589 31668/33601 +f 32153/33595 32159/33607 32155/33598 +f 32147/33585 32158/33604 32157/33602 +f 32157/33602 32159/33607 32153/33595 +f 31697/33603 31718/33608 32154/33596 +f 32154/33596 31718/33608 32158/33604 +f 32160/33609 31549/33605 32155/33598 +f 32156/33599 31426/33606 31499/33600 +f 32161/33610 32160/33609 32155/33598 +f 31549/33605 32160/33609 32162/33611 +f 32160/33609 32161/33610 32163/33612 +f 32160/33609 32163/33612 32162/33611 +f 31549/33605 32162/33611 31638/33613 +f 32163/33612 32161/33610 32164/33614 +f 32163/33612 32165/33615 32162/33611 +f 31638/33613 32162/33611 32166/33616 +f 32161/33610 32167/33617 32164/33614 +f 32163/33612 32164/33614 32168/33618 +f 32165/33615 32169/33619 32162/33611 +f 32163/33612 32170/33620 32165/33615 +f 32167/33617 32171/33621 32164/33614 +f 32164/33614 32172/33622 32168/33618 +f 32168/33618 32173/33623 32163/33612 +f 32165/33615 32170/33620 32169/33619 +f 32169/33619 32174/33624 32162/33611 +f 32170/33620 32163/33612 32175/33625 +f 32164/33614 32171/33621 32176/33626 +f 32171/33621 32167/33617 32177/33627 +f 32176/33626 32172/33622 32164/33614 +f 32172/33622 32178/33628 32168/33618 +f 32168/33618 32178/33628 32173/33623 +f 32175/33625 32163/33612 32173/33623 +f 32169/33619 32170/33620 32179/33629 +f 32169/33619 32180/33630 32174/33624 +f 32181/33631 32170/33620 32175/33625 +f 32182/33632 32176/33626 32171/33621 +f 32177/33627 32182/33632 32171/33621 +f 32172/33622 32176/33626 32183/33633 +f 32172/33622 32183/33633 32178/33628 +f 32178/33628 32184/33634 32173/33623 +f 32185/33635 32175/33625 32173/33623 +f 32170/33620 32186/33636 32179/33629 +f 32179/33629 32187/33637 32169/33619 +f 32180/33630 32169/33619 32188/33638 +f 32180/33630 32189/33639 32174/33624 +f 32185/33635 32181/33631 32175/33625 +f 32181/33631 32186/33636 32170/33620 +f 32176/33626 32182/33632 32190/33640 +f 32191/33641 32182/33632 32177/33627 +f 32176/33626 32192/33642 32183/33633 +f 32178/33628 32183/33633 32193/33643 +f 32173/33623 32184/33634 32185/33635 +f 32193/33643 32184/33634 32178/33628 +f 32194/33644 32179/33629 32186/33636 +f 32187/33637 32179/33629 32195/33645 +f 32169/33619 32187/33637 32188/33638 +f 32196/33646 32180/33630 32188/33638 +f 32189/33639 32180/33630 32197/33647 +f 32189/33639 32197/33647 32174/33624 +f 32184/33634 32181/33631 32185/33635 +f 32182/33632 32191/33641 32190/33640 +f 32192/33642 32176/33626 32190/33640 +f 32198/33648 32183/33633 32192/33642 +f 32193/33643 32183/33633 32198/33648 +f 32193/33643 32199/33649 32184/33634 +f 32194/33644 32186/33636 32200/33650 +f 32201/33651 32179/33629 32194/33644 +f 32201/33651 32195/33645 32179/33629 +f 32196/33646 32187/33637 32195/33645 +f 32187/33637 32196/33646 32188/33638 +f 32195/33645 32180/33630 32196/33646 +f 32202/33652 32197/33647 32180/33630 +f 32184/33634 32199/33649 32181/33631 +f 32203/33653 32190/33640 32191/33641 +f 32204/33654 32192/33642 32190/33640 +f 32192/33642 32205/33655 32198/33648 +f 32205/33655 32193/33643 32198/33648 +f 32199/33649 32193/33643 32200/33650 +f 32199/33649 32200/33650 32186/33636 +f 32194/33644 32200/33650 32206/33656 +f 32207/33657 32201/33651 32194/33644 +f 32208/33658 32195/33645 32201/33651 +f 32180/33630 32195/33645 32208/33658 +f 32180/33630 32209/33659 32202/33652 +f 32204/33654 32190/33640 32203/33653 +f 32203/33653 32191/33641 32210/33660 +f 32204/33654 32205/33655 32192/33642 +f 32200/33650 32193/33643 32205/33655 +f 32206/33656 32200/33650 32211/33661 +f 32206/33656 32212/33662 32194/33644 +f 32201/33651 32207/33657 32208/33658 +f 32213/33663 32207/33657 32194/33644 +f 32209/33659 32180/33630 32208/33658 +f 32209/33659 32214/33664 32202/33652 +f 32204/33654 32203/33653 32215/33665 +f 32215/33665 32203/33653 32210/33660 +f 32216/33666 32205/33655 32204/33654 +f 32205/33655 32211/33661 32200/33650 +f 32211/33661 32217/33667 32206/33656 +f 32206/33656 32218/33668 32212/33662 +f 32212/33662 32213/33663 32194/33644 +f 32207/33657 32219/33669 32208/33658 +f 32213/33663 32220/33670 32207/33657 +f 32219/33669 32209/33659 32208/33658 +f 32214/33664 32209/33659 32221/33671 +f 32215/33665 32216/33666 32204/33654 +f 32210/33660 32222/33672 32215/33665 +f 32211/33661 32205/33655 32216/33666 +f 32223/33673 32217/33667 32211/33661 +f 32206/33656 32217/33667 32218/33668 +f 32218/33668 32224/33674 32212/33662 +f 32213/33663 32212/33662 32224/33674 +f 32207/33657 32220/33670 32219/33669 +f 32220/33670 32213/33663 32225/33675 +f 32226/33676 32209/33659 32219/33669 +f 32221/33671 32209/33659 32226/33676 +f 32216/33666 32215/33665 32227/33677 +f 32215/33665 32222/33672 32228/33678 +f 32211/33661 32216/33666 32223/33673 +f 32229/33679 32217/33667 32223/33673 +f 32218/33668 32217/33667 32230/33680 +f 32231/33681 32224/33674 32218/33668 +f 32213/33663 32224/33674 32225/33675 +f 32220/33670 32226/33676 32219/33669 +f 32225/33675 32232/33682 32220/33670 +f 32226/33676 32233/33683 32221/33671 +f 32234/33684 32216/33666 32227/33677 +f 32227/33677 32215/33665 32228/33678 +f 32222/33672 32235/33685 32228/33678 +f 32223/33673 32216/33666 32236/33686 +f 32217/33667 32229/33679 32230/33680 +f 32237/33687 32229/33679 32223/33673 +f 32238/33688 32218/33668 32230/33680 +f 32231/33681 32225/33675 32224/33674 +f 32218/33668 32238/33688 32231/33681 +f 32220/33670 32233/33683 32226/33676 +f 32232/33682 32225/33675 32231/33681 +f 32239/33689 32220/33670 32232/33682 +f 32234/33684 32236/33686 32216/33666 +f 32234/33684 32227/33677 32240/33690 +f 32241/33691 32227/33677 32228/33678 +f 31648/33692 32235/33685 32222/33672 +f 32228/33678 32235/33685 32241/33691 +f 32223/33673 32236/33686 32237/33687 +f 32242/33693 32230/33680 32229/33679 +f 32243/33694 32229/33679 32237/33687 +f 32238/33688 32230/33680 32242/33693 +f 32238/33688 32244/33695 32231/33681 +f 32233/33683 32220/33670 32245/33696 +f 32246/33697 32232/33682 32231/33681 +f 32232/33682 32246/33697 32239/33689 +f 32220/33670 32239/33689 32245/33696 +f 32237/33687 32236/33686 32234/33684 +f 32247/33698 32234/33684 32240/33690 +f 32227/33677 32241/33691 32240/33690 +f 31648/33692 26719/33699 32235/33685 +f 32241/33691 32235/33685 32248/33700 +f 32229/33679 32249/33701 32242/33693 +f 32229/33679 32243/33694 32249/33701 +f 32243/33694 32237/33687 32250/33702 +f 32242/33693 32244/33695 32238/33688 +f 32251/33703 32231/33681 32244/33695 +f 32245/33696 32252/33704 32233/33683 +f 32246/33697 32231/33681 32251/33703 +f 32239/33689 32246/33697 32253/33705 +f 32245/33696 32239/33689 32252/33704 +f 32237/33687 32234/33684 32250/33702 +f 32254/33706 32247/33698 32240/33690 +f 32247/33698 32250/33702 32234/33684 +f 32241/33691 32254/33706 32240/33690 +f 32235/33685 26719/33699 26737/33707 +f 32248/33700 32235/33685 26737/33707 +f 32254/33706 32241/33691 32248/33700 +f 32249/33701 32255/33708 32242/33693 +f 32243/33694 32256/33709 32249/33701 +f 26783/33710 32243/33694 32250/33702 +f 32251/33703 32244/33695 32242/33693 +f 32257/33711 32246/33697 32251/33703 +f 32239/33689 32253/33705 32252/33704 +f 32258/33712 32253/33705 32246/33697 +f 32247/33698 32254/33706 26752/33713 +f 26752/33713 32250/33702 32247/33698 +f 26737/33707 26726/33714 32248/33700 +f 32248/33700 26726/33714 32254/33706 +f 32255/33708 32249/33701 32259/33715 +f 32255/33708 32251/33703 32242/33693 +f 32243/33694 26783/33710 32256/33709 +f 32249/33701 32256/33709 32259/33715 +f 26752/33713 26783/33710 32250/33702 +f 32258/33712 32246/33697 32257/33711 +f 32257/33711 32251/33703 32260/33716 +f 26752/33713 32254/33706 26726/33714 +f 32255/33708 32259/33715 32260/33716 +f 32260/33716 32251/33703 32255/33708 +f 32261/33717 32256/33709 26783/33710 +f 32259/33715 32256/33709 26793/33718 +f 32257/33711 26796/33719 32258/33712 +f 26795/33720 32257/33711 32260/33716 +f 26792/33721 32260/33716 32259/33715 +f 32261/33717 26793/33718 32256/33709 +f 26783/33710 26793/33718 32261/33717 +f 26793/33718 26792/33721 32259/33715 +f 26796/33719 32257/33711 26795/33720 +f 26792/33721 26795/33720 32260/33716 +f 27577/33722 32262/33723 27673/33724 +f 32263/33725 32262/33723 27577/33722 +f 27673/33724 32262/33723 32264/33726 +f 27577/33722 27673/33724 27561/33727 +f 32265/33728 32262/33723 32263/33725 +f 27577/33722 32266/33729 32263/33725 +f 32267/33730 32264/33726 32262/33723 +f 27673/33724 32264/33726 32268/33731 +f 32269/33732 32262/33723 32265/33728 +f 32263/33725 32266/33729 32265/33728 +f 27577/33722 32270/33733 32266/33729 +f 32264/33726 32267/33730 32271/33734 +f 32267/33730 32262/33723 13930/33735 +f 32264/33726 32271/33734 32268/33731 +f 27673/33724 32268/33731 27739/33736 +f 32269/33732 13930/33735 32262/33723 +f 32272/33737 32269/33732 32265/33728 +f 32265/33728 32266/33729 32270/33733 +f 32267/33730 32273/33738 32271/33734 +f 13930/33735 32273/33738 32267/33730 +f 32274/33739 32268/33731 32271/33734 +f 32268/33731 32275/33740 27739/33736 +f 13930/33735 32269/33732 32276/33741 +f 32277/33742 32269/33732 32272/33737 +f 32271/33734 32273/33738 32278/33743 +f 32273/33738 13930/33735 32279/33744 +f 32274/33739 32275/33740 32268/33731 +f 32271/33734 32278/33743 32274/33739 +f 32276/33741 32269/33732 32277/33742 +f 13930/33735 32276/33741 32280/33745 +f 32272/33737 32281/33746 32277/33742 +f 32279/33744 32278/33743 32273/33738 +f 32277/33742 32282/33747 32276/33741 +f 32282/33747 32280/33745 32276/33741 +f 32281/33746 32283/33748 32277/33742 +f 32282/33747 32277/33742 32283/33748 +f 32281/33746 32284/33749 32283/33748 +f 32282/33747 32283/33748 32285/33750 +f 32286/33751 32284/33749 32281/33746 +f 32283/33748 32284/33749 32285/33750 +f 32282/33747 32285/33750 32287/33752 +f 32286/33751 32285/33750 32284/33749 +f 32288/33753 32286/33751 32281/33746 +f 32285/33750 32289/33754 32287/33752 +f 32290/33755 32282/33747 32287/33752 +f 32285/33750 32286/33751 32288/33753 +f 32289/33754 32285/33750 32291/33756 +f 32287/33752 32289/33754 32290/33755 +f 32282/33747 32290/33755 32292/33757 +f 32291/33756 32285/33750 32288/33753 +f 32291/33756 32293/33758 32289/33754 +f 32289/33754 32293/33758 32290/33755 +f 32294/33759 32292/33757 32290/33755 +f 32294/33759 32290/33755 32293/33758 +f 32294/33759 32295/33760 32292/33757 +f 32296/33761 32292/33757 32295/33760 +f 30847/33762 32297/33763 30898/33764 +f 32298/33765 32297/33763 30847/33762 +f 30915/33766 30898/33764 32297/33763 +f 30847/33762 30898/33764 32299/33767 +f 32297/33763 32298/33765 32300/33768 +f 32298/33765 30847/33762 30759/33769 +f 32297/33763 32301/33770 30915/33766 +f 30854/33771 30847/33762 32299/33767 +f 30898/33764 30867/33772 32299/33767 +f 32302/33773 32300/33768 32298/33765 +f 32297/33763 32300/33768 32301/33770 +f 30697/33774 32298/33765 30759/33769 +f 30847/33762 30824/33775 30759/33769 +f 30915/33766 32301/33770 32303/33776 +f 30854/33771 32299/33767 30867/33772 +f 32300/33768 32302/33773 32304/33777 +f 32298/33765 32305/33778 32302/33773 +f 32301/33770 32300/33768 32304/33777 +f 32298/33765 30697/33774 32305/33778 +f 30824/33775 30791/33779 30759/33769 +f 32304/33777 32303/33776 32301/33770 +f 32303/33776 32306/33780 30915/33766 +f 32302/33773 32307/33781 32304/33777 +f 32302/33773 32305/33778 30673/33782 +f 30673/33782 32305/33778 30697/33774 +f 32306/33780 32303/33776 32304/33777 +f 30915/33766 32306/33780 30919/33783 +f 32302/33773 30673/33782 32307/33781 +f 32304/33777 32307/33781 32308/33784 +f 32304/33777 32308/33784 32306/33780 +f 32309/33785 30919/33783 32306/33780 +f 32310/33786 32307/33781 30673/33782 +f 32307/33781 32311/33787 32308/33784 +f 32309/33785 32306/33780 32308/33784 +f 32312/33788 30919/33783 32309/33785 +f 32311/33787 32307/33781 32310/33786 +f 30673/33782 30657/33789 32310/33786 +f 32308/33784 32311/33787 32313/33790 +f 32309/33785 32308/33784 32314/33791 +f 32309/33785 32314/33791 32312/33788 +f 32315/33792 30919/33783 32312/33788 +f 32316/33793 32311/33787 32310/33786 +f 30657/33789 30634/33794 32310/33786 +f 32311/33787 32317/33795 32313/33790 +f 32313/33790 32314/33791 32308/33784 +f 32318/33796 32312/33788 32314/33791 +f 30922/33797 30919/33783 32315/33792 +f 32312/33788 32319/33798 32315/33792 +f 32317/33795 32311/33787 32316/33793 +f 32310/33786 30634/33794 32316/33793 +f 32313/33790 32317/33795 30615/33799 +f 32314/33791 32313/33790 32320/33800 +f 32318/33796 32314/33791 32320/33800 +f 32319/33798 32312/33788 32318/33796 +f 32315/33792 32321/33801 30922/33797 +f 32319/33798 32321/33801 32315/33792 +f 32316/33793 30634/33794 32317/33795 +f 30627/33802 32313/33790 30615/33799 +f 32317/33795 30634/33794 30615/33799 +f 32320/33800 32313/33790 30627/33802 +f 32322/33803 32318/33796 32320/33800 +f 32323/33804 32319/33798 32318/33796 +f 27663/33805 30922/33797 32321/33801 +f 32319/33798 32324/33806 32321/33801 +f 32320/33800 30627/33802 32325/33807 +f 32318/33796 32322/33803 32323/33804 +f 32320/33800 32325/33807 32322/33803 +f 32326/33808 32319/33798 32323/33804 +f 32327/33809 27663/33805 32321/33801 +f 32328/33810 32324/33806 32319/33798 +f 32329/33811 32321/33801 32324/33806 +f 30628/33812 32325/33807 30627/33802 +f 32330/33813 32323/33804 32322/33803 +f 32331/33814 32322/33803 32325/33807 +f 32326/33808 32323/33804 32330/33813 +f 32319/33798 32326/33808 32332/33815 +f 32327/33809 27646/33816 27663/33805 +f 32321/33801 32329/33811 32327/33809 +f 32324/33806 32328/33810 32333/33817 +f 32332/33815 32328/33810 32319/33798 +f 32333/33817 32329/33811 32324/33806 +f 30628/33812 32331/33814 32325/33807 +f 32330/33813 32322/33803 32331/33814 +f 32326/33808 32330/33813 32334/33818 +f 32332/33815 32326/33808 32334/33818 +f 27646/33816 32327/33809 32333/33817 +f 32333/33817 32327/33809 32329/33811 +f 32333/33817 32328/33810 27677/33819 +f 27677/33819 32328/33810 32332/33815 +f 30640/33820 32331/33814 30628/33812 +f 32331/33814 32335/33821 32330/33813 +f 32330/33813 32336/33822 32334/33818 +f 32332/33815 32334/33818 32337/33823 +f 27677/33819 27646/33816 32333/33817 +f 27677/33819 32332/33815 27687/33824 +f 30640/33820 32335/33821 32331/33814 +f 32336/33822 32330/33813 32335/33821 +f 32334/33818 32336/33822 32337/33823 +f 27687/33824 32332/33815 32337/33823 +f 32335/33821 30640/33820 30669/33825 +f 32336/33822 32335/33821 32338/33826 +f 32336/33822 30694/33827 32337/33823 +f 32337/33823 32339/33828 27687/33824 +f 32335/33821 30669/33825 32338/33826 +f 32338/33826 30669/33825 32336/33822 +f 32336/33822 30669/33825 30694/33827 +f 30694/33827 30756/33829 32337/33823 +f 32340/33830 27687/33824 32339/33828 +f 32337/33823 32341/33831 32339/33828 +f 30756/33829 32341/33831 32337/33823 +f 32339/33828 32342/33832 32340/33830 +f 32341/33831 32343/33833 32339/33828 +f 30756/33829 30776/33834 32341/33831 +f 32344/33835 32342/33832 32339/33828 +f 32340/33830 32342/33832 32345/33836 +f 32339/33828 32343/33833 32346/33837 +f 32341/33831 30776/33834 32343/33833 +f 32347/33838 32342/33832 32344/33835 +f 32339/33828 32348/33839 32344/33835 +f 32349/33840 32345/33836 32342/33832 +f 32345/33836 32350/33841 32340/33830 +f 32346/33837 32343/33833 32351/33842 +f 32346/33837 32348/33839 32339/33828 +f 32343/33833 30776/33834 32352/33843 +f 32342/33832 32347/33838 32349/33840 +f 32353/33844 32347/33838 32344/33835 +f 32353/33844 32344/33835 32348/33839 +f 32354/33845 32345/33836 32349/33840 +f 32355/33846 32350/33841 32345/33836 +f 32340/33830 32350/33841 32356/33847 +f 32352/33843 32351/33842 32343/33833 +f 32357/33848 32346/33837 32351/33842 +f 32357/33848 32348/33839 32346/33837 +f 30776/33834 30790/33849 32352/33843 +f 32349/33840 32347/33838 32354/33845 +f 32347/33838 32353/33844 32358/33850 +f 32348/33839 32359/33851 32353/33844 +f 32345/33836 32354/33845 32360/33852 +f 32355/33846 32361/33853 32350/33841 +f 32345/33836 32360/33852 32355/33846 +f 32350/33841 32362/33854 32356/33847 +f 30777/33855 32351/33842 32352/33843 +f 30755/33856 32357/33848 32351/33842 +f 32348/33839 32357/33848 32359/33851 +f 32352/33843 30790/33849 30777/33855 +f 32363/33857 32354/33845 32347/33838 +f 32359/33851 32358/33850 32353/33844 +f 32363/33857 32347/33838 32358/33850 +f 32354/33845 32364/33858 32360/33852 +f 32365/33859 32361/33853 32355/33846 +f 32350/33841 32361/33853 32366/33860 +f 32360/33852 32367/33861 32355/33846 +f 32350/33841 32368/33862 32362/33854 +f 32369/33863 32356/33847 32362/33854 +f 30777/33855 30755/33856 32351/33842 +f 32357/33848 30755/33856 32370/33864 +f 32359/33851 32357/33848 32370/33864 +f 32354/33845 32363/33857 32364/33858 +f 32358/33850 32359/33851 32371/33865 +f 32363/33857 32358/33850 32371/33865 +f 32360/33852 32364/33858 32372/33866 +f 32355/33846 32367/33861 32365/33859 +f 32373/33867 32361/33853 32365/33859 +f 32374/33868 32350/33841 32366/33860 +f 32361/33853 32373/33867 32366/33860 +f 32360/33852 32372/33866 32367/33861 +f 32374/33868 32368/33862 32350/33841 +f 32368/33862 32375/33869 32362/33854 +f 32356/33847 32369/33863 32376/33870 +f 32362/33854 32377/33871 32369/33863 +f 30755/33856 32378/33872 32370/33864 +f 32371/33865 32359/33851 32370/33864 +f 32363/33857 32379/33873 32364/33858 +f 32380/33874 32363/33857 32371/33865 +f 32364/33858 32381/33875 32372/33866 +f 32365/33859 32367/33861 32382/33876 +f 32373/33867 32365/33859 32383/33877 +f 32384/33878 32374/33868 32366/33860 +f 32366/33860 32373/33867 32383/33877 +f 32382/33876 32367/33861 32372/33866 +f 32374/33868 32385/33879 32368/33862 +f 32375/33869 32368/33862 32386/33880 +f 32377/33871 32362/33854 32375/33869 +f 32387/33881 32376/33870 32369/33863 +f 32356/33847 32376/33870 32388/33882 +f 32387/33881 32369/33863 32377/33871 +f 30737/33883 32378/33872 30755/33856 +f 32370/33864 32378/33872 32389/33884 +f 32371/33865 32370/33864 32389/33884 +f 32380/33874 32379/33873 32363/33857 +f 32364/33858 32379/33873 32381/33875 +f 32390/33885 32380/33874 32371/33865 +f 32372/33866 32381/33875 32382/33876 +f 32382/33876 32391/33886 32365/33859 +f 32383/33877 32365/33859 32392/33887 +f 32374/33868 32384/33878 32393/33888 +f 32366/33860 32393/33888 32384/33878 +f 32366/33860 32383/33877 32393/33888 +f 32394/33889 32368/33862 32385/33879 +f 32393/33888 32385/33879 32374/33868 +f 32368/33862 32395/33890 32386/33880 +f 32396/33891 32375/33869 32386/33880 +f 32377/33871 32375/33869 32397/33892 +f 32398/33893 32376/33870 32387/33881 +f 32376/33870 32398/33893 32388/33882 +f 32377/33871 32399/33894 32387/33881 +f 32400/33895 32378/33872 30737/33883 +f 32390/33885 32389/33884 32378/33872 +f 32389/33884 32390/33885 32371/33865 +f 32379/33873 32380/33874 32401/33896 +f 32402/33897 32381/33875 32379/33873 +f 32380/33874 32390/33885 32403/33898 +f 32382/33876 32381/33875 32402/33897 +f 32404/33899 32391/33886 32382/33876 +f 32405/33900 32365/33859 32391/33886 +f 32392/33887 32365/33859 32405/33900 +f 32406/33901 32383/33877 32392/33887 +f 32383/33877 32407/33902 32393/33888 +f 32395/33890 32368/33862 32394/33889 +f 32385/33879 32408/33903 32394/33889 +f 32408/33903 32385/33879 32393/33888 +f 32396/33891 32386/33880 32395/33890 +f 32375/33869 32396/33891 32409/33904 +f 32397/33892 32399/33894 32377/33871 +f 32375/33869 32410/33905 32397/33892 +f 32387/33881 32399/33894 32398/33893 +f 32398/33893 32411/33906 32388/33882 +f 32378/33872 32400/33895 32390/33885 +f 30737/33883 30736/33907 32400/33895 +f 32379/33873 32401/33896 32402/33897 +f 32401/33896 32380/33874 32412/33908 +f 32390/33885 32413/33909 32403/33898 +f 32403/33898 32412/33908 32380/33874 +f 32404/33899 32382/33876 32402/33897 +f 32391/33886 32404/33899 32414/33910 +f 32405/33900 32391/33886 32414/33910 +f 32405/33900 32415/33911 32392/33887 +f 32416/33912 32406/33901 32392/33887 +f 32407/33902 32383/33877 32406/33901 +f 32393/33888 32407/33902 32417/33913 +f 32418/33914 32395/33890 32394/33889 +f 32408/33903 32418/33914 32394/33889 +f 32393/33888 32417/33913 32408/33903 +f 32395/33890 32419/33915 32396/33891 +f 32409/33904 32396/33891 32420/33916 +f 32409/33904 32410/33905 32375/33869 +f 32399/33894 32397/33892 32421/33917 +f 32422/33918 32397/33892 32410/33905 +f 32399/33894 32423/33919 32398/33893 +f 32423/33919 32411/33906 32398/33893 +f 32390/33885 32400/33895 32424/33920 +f 32400/33895 30736/33907 32424/33920 +f 32402/33897 32401/33896 32425/33921 +f 32425/33921 32401/33896 32412/33908 +f 32424/33920 32413/33909 32390/33885 +f 32403/33898 32413/33909 32426/33922 +f 32426/33922 32412/33908 32403/33898 +f 32402/33897 32427/33923 32404/33899 +f 32404/33899 32428/33924 32414/33910 +f 32429/33925 32405/33900 32414/33910 +f 32415/33911 32405/33900 32430/33926 +f 32392/33887 32415/33911 32416/33912 +f 32406/33901 32416/33912 32431/33927 +f 32406/33901 32432/33928 32407/33902 +f 32433/33929 32417/33913 32407/33902 +f 32418/33914 32434/33930 32395/33890 +f 32408/33903 32435/33931 32418/33914 +f 32408/33903 32417/33913 32436/33932 +f 32434/33930 32419/33915 32395/33890 +f 32396/33891 32419/33915 32420/33916 +f 32437/33933 32409/33904 32420/33916 +f 32438/33934 32410/33905 32409/33904 +f 32422/33918 32421/33917 32397/33892 +f 32399/33894 32421/33917 32423/33919 +f 32410/33905 32438/33934 32422/33918 +f 32439/33935 32411/33906 32423/33919 +f 32440/33936 32424/33920 30736/33907 +f 32425/33921 32427/33923 32402/33897 +f 32412/33908 32441/33937 32425/33921 +f 32413/33909 32424/33920 32442/33938 +f 32426/33922 32413/33909 32443/33939 +f 32412/33908 32426/33922 32443/33939 +f 32404/33899 32427/33923 32428/33924 +f 32414/33910 32428/33924 32429/33925 +f 32429/33925 32430/33926 32405/33900 +f 32444/33940 32415/33911 32430/33926 +f 32416/33912 32415/33911 32444/33940 +f 32445/33941 32431/33927 32416/33912 +f 32406/33901 32431/33927 32432/33928 +f 32407/33902 32432/33928 32433/33929 +f 32417/33913 32433/33929 32436/33932 +f 32418/33914 32435/33931 32434/33930 +f 32435/33931 32408/33903 32436/33932 +f 32419/33915 32434/33930 32446/33942 +f 32420/33916 32419/33915 32447/33943 +f 32409/33904 32437/33933 32448/33944 +f 32437/33933 32420/33916 32449/33945 +f 32448/33944 32438/33934 32409/33904 +f 32450/33946 32421/33917 32422/33918 +f 32439/33935 32423/33919 32421/33917 +f 32438/33934 32451/33947 32422/33918 +f 32411/33906 32439/33935 32452/33948 +f 32440/33936 30736/33907 32453/33949 +f 32424/33920 32440/33936 32442/33938 +f 32454/33950 32427/33923 32425/33921 +f 32443/33939 32441/33937 32412/33908 +f 32454/33950 32425/33921 32441/33937 +f 32413/33909 32442/33938 32443/33939 +f 32427/33923 32455/33951 32428/33924 +f 32428/33924 32455/33951 32429/33925 +f 32456/33952 32430/33926 32429/33925 +f 32430/33926 32456/33952 32444/33940 +f 32445/33941 32416/33912 32444/33940 +f 32457/33953 32431/33927 32445/33941 +f 32431/33927 32458/33954 32432/33928 +f 32432/33928 32458/33954 32433/33929 +f 32433/33929 32459/33955 32436/33932 +f 32460/33956 32434/33930 32435/33931 +f 32461/33957 32435/33931 32436/33932 +f 32460/33956 32446/33942 32434/33930 +f 32419/33915 32446/33942 32462/33958 +f 32463/33959 32447/33943 32419/33915 +f 32420/33916 32447/33943 32449/33945 +f 32464/33960 32448/33944 32437/33933 +f 32465/33961 32437/33933 32449/33945 +f 32466/33962 32438/33934 32448/33944 +f 32422/33918 32451/33947 32450/33946 +f 32421/33917 32450/33946 32467/33963 +f 32421/33917 32468/33964 32439/33935 +f 32438/33934 32466/33962 32451/33947 +f 32452/33948 32439/33935 32468/33964 +f 32469/33965 32440/33936 32453/33949 +f 32453/33949 30736/33907 32470/33966 +f 32440/33936 32469/33965 32442/33938 +f 32471/33967 32427/33923 32454/33950 +f 32472/33968 32441/33937 32443/33939 +f 32454/33950 32441/33937 32471/33967 +f 32443/33939 32442/33938 32469/33965 +f 32455/33951 32427/33923 32473/33969 +f 32429/33925 32455/33951 32473/33969 +f 32456/33952 32429/33925 32473/33969 +f 32456/33952 32474/33970 32444/33940 +f 32444/33940 32474/33970 32445/33941 +f 32458/33954 32431/33927 32457/33953 +f 32457/33953 32445/33941 32475/33971 +f 32458/33954 32476/33972 32433/33929 +f 32436/33932 32459/33955 32461/33957 +f 32476/33972 32459/33955 32433/33929 +f 32435/33931 32461/33957 32460/33956 +f 32460/33956 32477/33973 32446/33942 +f 32462/33958 32478/33974 32419/33915 +f 32462/33958 32446/33942 32479/33975 +f 32447/33943 32463/33959 32480/33976 +f 32419/33915 32478/33974 32463/33959 +f 32447/33943 32481/33977 32449/33945 +f 32464/33960 32482/33978 32448/33944 +f 32464/33960 32437/33933 32483/33979 +f 32437/33933 32465/33961 32484/33980 +f 32481/33977 32465/33961 32449/33945 +f 32448/33944 32482/33978 32466/33962 +f 32485/33981 32450/33946 32451/33947 +f 32450/33946 32485/33981 32467/33963 +f 32467/33963 32468/33964 32421/33917 +f 32466/33962 32486/33982 32451/33947 +f 32468/33964 29902/33983 32452/33948 +f 32487/33984 32469/33965 32453/33949 +f 32470/33966 32488/33985 32453/33949 +f 30711/33986 32470/33966 30736/33907 +f 32427/33923 32471/33967 32489/33987 +f 32490/33988 32472/33968 32443/33939 +f 32471/33967 32441/33937 32472/33968 +f 32469/33965 32491/33989 32443/33939 +f 32473/33969 32427/33923 32489/33987 +f 32473/33969 32492/33990 32456/33952 +f 32474/33970 32456/33952 32492/33990 +f 32475/33971 32445/33941 32474/33970 +f 32458/33954 32457/33953 32476/33972 +f 32493/33991 32457/33953 32475/33971 +f 32494/33992 32461/33957 32459/33955 +f 32476/33972 32494/33992 32459/33955 +f 32461/33957 32495/33993 32460/33956 +f 32446/33942 32477/33973 32479/33975 +f 32496/33994 32477/33973 32460/33956 +f 32478/33974 32462/33958 32497/33995 +f 32462/33958 32479/33975 32497/33995 +f 32447/33943 32480/33976 32481/33977 +f 32480/33976 32463/33959 32498/33996 +f 32463/33959 32478/33974 32499/33997 +f 32482/33978 32464/33960 32500/33998 +f 32484/33980 32483/33979 32437/33933 +f 32464/33960 32483/33979 32500/33998 +f 32484/33980 32465/33961 32501/33999 +f 32481/33977 32480/33976 32465/33961 +f 32486/33982 32466/33962 32482/33978 +f 32451/33947 32502/34000 32485/33981 +f 32485/33981 29919/34001 32467/33963 +f 29919/34001 32468/33964 32467/33963 +f 32451/33947 32486/33982 32502/34000 +f 32468/33964 29919/34001 29902/33983 +f 32488/33985 32487/33984 32453/33949 +f 32487/33984 32491/33989 32469/33965 +f 32470/33966 30711/33986 32488/33985 +f 32489/33987 32471/33967 32472/33968 +f 32490/33988 32503/34002 32472/33968 +f 32491/33989 32490/33988 32443/33939 +f 32489/33987 32503/34002 32473/33969 +f 32503/34002 32492/33990 32473/33969 +f 32474/33970 32492/33990 32504/34003 +f 32475/33971 32474/33970 32504/34003 +f 32457/33953 32505/34004 32476/33972 +f 32493/33991 32506/34005 32457/33953 +f 32493/33991 32475/33971 32504/34003 +f 32461/33957 32494/33992 32495/33993 +f 32505/34004 32494/33992 32476/33972 +f 32507/34006 32460/33956 32495/33993 +f 32477/33973 32508/34007 32479/33975 +f 32496/33994 32460/33956 32507/34006 +f 32496/33994 32509/34008 32477/33973 +f 32510/34009 32478/33974 32497/33995 +f 32479/33975 32510/34009 32497/33995 +f 32498/33996 32501/33999 32480/33976 +f 32499/33997 32498/33996 32463/33959 +f 32510/34009 32499/33997 32478/33974 +f 32500/33998 32511/34010 32482/33978 +f 32512/34011 32483/33979 32484/33980 +f 32483/33979 32513/34012 32500/33998 +f 32501/33999 32498/33996 32484/33980 +f 32501/33999 32465/33961 32480/33976 +f 32486/33982 32482/33978 32511/34010 +f 32502/34000 32514/34013 32485/33981 +f 32485/33981 32514/34013 29919/34001 +f 32515/34014 32502/34000 32486/33982 +f 32516/34015 32487/33984 32488/33985 +f 32517/34016 32491/33989 32487/33984 +f 32488/33985 30711/33986 30690/34017 +f 32489/33987 32472/33968 32503/34002 +f 32518/34018 32503/34002 32490/33988 +f 32490/33988 32491/33989 32519/34019 +f 32492/33990 32503/34002 32504/34003 +f 32505/34004 32457/33953 32520/34020 +f 32521/34021 32506/34005 32493/33991 +f 32457/33953 32506/34005 32520/34020 +f 32522/34022 32493/33991 32504/34003 +f 32523/34023 32495/33993 32494/33992 +f 32494/33992 32505/34004 32524/34024 +f 32507/34006 32495/33993 32525/34025 +f 32526/34026 32508/34007 32477/33973 +f 32479/33975 32508/34007 32510/34009 +f 32507/34006 32509/34008 32496/33994 +f 32526/34026 32477/33973 32509/34008 +f 32499/33997 32527/34027 32498/33996 +f 32528/34028 32499/33997 32510/34009 +f 32529/34029 32511/34010 32500/33998 +f 32483/33979 32512/34011 32530/34030 +f 32498/33996 32512/34011 32484/33980 +f 32513/34012 32529/34029 32500/33998 +f 32513/34012 32483/33979 32530/34030 +f 32515/34014 32486/33982 32511/34010 +f 32502/34000 32515/34014 32514/34013 +f 29919/34001 32514/34013 32531/34031 +f 32516/34015 32517/34016 32487/33984 +f 30690/34017 32516/34015 32488/33985 +f 32517/34016 32519/34019 32491/33989 +f 32518/34018 32522/34022 32503/34002 +f 32532/34032 32518/34018 32490/33988 +f 32519/34019 32532/34032 32490/33988 +f 32503/34002 32522/34022 32504/34003 +f 32505/34004 32520/34020 32533/34033 +f 32534/34034 32506/34005 32521/34021 +f 32493/33991 32522/34022 32521/34021 +f 32520/34020 32506/34005 32534/34034 +f 32525/34025 32495/33993 32523/34023 +f 32494/33992 32535/34035 32523/34023 +f 32535/34035 32494/33992 32524/34024 +f 32505/34004 32533/34033 32524/34024 +f 32507/34006 32525/34025 32536/34036 +f 32508/34007 32526/34026 32537/34037 +f 32537/34037 32510/34009 32508/34007 +f 32536/34036 32509/34008 32507/34006 +f 32526/34026 32509/34008 32538/34038 +f 32527/34027 32499/33997 32528/34028 +f 32527/34027 32539/34039 32498/33996 +f 32528/34028 32510/34009 32537/34037 +f 32540/34040 32511/34010 32529/34029 +f 32512/34011 32541/34041 32530/34030 +f 32539/34039 32512/34011 32498/33996 +f 32529/34029 32513/34012 32542/34042 +f 32543/34043 32513/34012 32530/34030 +f 32540/34040 32515/34014 32511/34010 +f 32544/34044 32514/34013 32515/34014 +f 29901/34045 29919/34001 32531/34031 +f 32514/34013 32545/34046 32531/34031 +f 32516/34015 32546/34047 32517/34016 +f 32516/34015 30690/34017 32547/34048 +f 32519/34019 32517/34016 32548/34049 +f 32518/34018 32549/34050 32522/34022 +f 32549/34050 32518/34018 32532/34032 +f 32550/34051 32532/34032 32519/34019 +f 32520/34020 32551/34052 32533/34033 +f 32534/34034 32521/34021 32552/34053 +f 32521/34021 32522/34022 32553/34054 +f 32554/34055 32520/34020 32534/34034 +f 32536/34036 32525/34025 32523/34023 +f 32523/34023 32535/34035 32536/34036 +f 32555/34056 32535/34035 32524/34024 +f 32533/34033 32551/34052 32524/34024 +f 32537/34037 32526/34026 32538/34038 +f 32556/34057 32509/34008 32536/34036 +f 32538/34038 32509/34008 32557/34058 +f 32527/34027 32528/34028 32558/34059 +f 32539/34039 32527/34027 32559/34060 +f 32528/34028 32537/34037 32538/34038 +f 32560/34061 32540/34040 32529/34029 +f 32539/34039 32541/34041 32512/34011 +f 32530/34030 32541/34041 32561/34062 +f 32529/34029 32542/34042 32562/34063 +f 32542/34042 32513/34012 32543/34043 +f 32563/34064 32543/34043 32530/34030 +f 32564/34065 32515/34014 32540/34040 +f 32545/34046 32514/34013 32544/34044 +f 32515/34014 32564/34065 32544/34044 +f 32531/34031 32565/34066 29901/34045 +f 32545/34046 32565/34066 32531/34031 +f 32546/34047 32516/34015 32566/34067 +f 32517/34016 32546/34047 32548/34049 +f 30690/34017 30666/34068 32547/34048 +f 32566/34067 32516/34015 32547/34048 +f 32548/34049 32567/34069 32519/34019 +f 32549/34050 32553/34054 32522/34022 +f 32549/34050 32532/34032 32550/34051 +f 32550/34051 32519/34019 32567/34069 +f 32568/34070 32551/34052 32520/34020 +f 32552/34053 32554/34055 32534/34034 +f 32521/34021 32553/34054 32552/34053 +f 32569/34071 32520/34020 32554/34055 +f 32536/34036 32535/34035 32556/34057 +f 32535/34035 32555/34056 32556/34057 +f 32551/34052 32555/34056 32524/34024 +f 32556/34057 32557/34058 32509/34008 +f 32557/34058 32570/34072 32538/34038 +f 32558/34059 32528/34028 32571/34073 +f 32559/34060 32527/34027 32558/34059 +f 32572/34074 32539/34039 32559/34060 +f 32571/34073 32528/34028 32538/34038 +f 32560/34061 32564/34065 32540/34040 +f 29874/34075 32560/34061 32529/34029 +f 32541/34041 32539/34039 32573/34076 +f 32561/34062 32563/34064 32530/34030 +f 32573/34076 32561/34062 32541/34041 +f 32562/34063 32542/34042 32574/34077 +f 32529/34029 32562/34063 29874/34075 +f 32542/34042 32543/34043 32575/34078 +f 32563/34064 32575/34078 32543/34043 +f 32545/34046 32544/34044 32565/34066 +f 32565/34066 32544/34044 32564/34065 +f 29918/34079 29901/34045 32565/34066 +f 32566/34067 32576/34080 32546/34047 +f 32577/34081 32548/34049 32546/34047 +f 30666/34068 32578/34082 32547/34048 +f 32547/34048 32578/34082 32566/34067 +f 32579/34083 32567/34069 32548/34049 +f 32580/34084 32553/34054 32549/34050 +f 32581/34085 32549/34050 32550/34051 +f 32550/34051 32567/34069 32582/34086 +f 32551/34052 32568/34070 32583/34087 +f 32569/34071 32568/34070 32520/34020 +f 32584/34088 32554/34055 32552/34053 +f 32553/34054 32580/34084 32552/34053 +f 32554/34055 32585/34089 32569/34071 +f 32586/34090 32556/34057 32555/34056 +f 32586/34090 32555/34056 32551/34052 +f 32557/34058 32556/34057 32586/34090 +f 32570/34072 32557/34058 32586/34090 +f 32538/34038 32570/34072 32571/34073 +f 32571/34073 32559/34060 32558/34059 +f 32573/34076 32539/34039 32572/34074 +f 32587/34091 32572/34074 32559/34060 +f 32560/34061 32588/34092 32564/34065 +f 32588/34092 32560/34061 29874/34075 +f 32563/34064 32561/34062 32589/34093 +f 32590/34094 32561/34062 32573/34076 +f 32575/34078 32574/34077 32542/34042 +f 32574/34077 29791/34095 32562/34063 +f 29874/34075 32562/34063 29840/34096 +f 32575/34078 32563/34064 32591/34097 +f 32564/34065 29918/34079 32565/34066 +f 32576/34080 32592/34098 32546/34047 +f 32566/34067 32578/34082 32576/34080 +f 32593/34099 32548/34049 32577/34081 +f 32577/34081 32546/34047 32594/34100 +f 30666/34068 30626/34101 32578/34082 +f 32567/34069 32579/34083 32595/34102 +f 32593/34099 32579/34083 32548/34049 +f 32580/34084 32549/34050 32581/34085 +f 32582/34086 32581/34085 32550/34051 +f 32596/34103 32582/34086 32567/34069 +f 32583/34087 32568/34070 32597/34104 +f 32583/34087 32586/34090 32551/34052 +f 32568/34070 32569/34071 32597/34104 +f 32584/34088 32598/34105 32554/34055 +f 32599/34106 32584/34088 32552/34053 +f 32580/34084 32600/34107 32552/34053 +f 32598/34105 32585/34089 32554/34055 +f 32601/34108 32569/34071 32585/34089 +f 32586/34090 32583/34087 32570/34072 +f 32602/34109 32571/34073 32570/34072 +f 32571/34073 32587/34091 32559/34060 +f 32572/34074 32603/34110 32573/34076 +f 32572/34074 32587/34091 32603/34110 +f 32564/34065 32588/34092 29918/34079 +f 29874/34075 29883/34111 32588/34092 +f 32561/34062 32590/34094 32589/34093 +f 32563/34064 32589/34093 32604/34112 +f 32573/34076 32603/34110 32590/34094 +f 32575/34078 32605/34113 32574/34077 +f 29791/34095 32574/34077 29747/34114 +f 29840/34096 32562/34063 29791/34095 +f 32591/34097 32563/34064 32604/34112 +f 32591/34097 32605/34113 32575/34078 +f 32592/34098 32576/34080 32606/34115 +f 32594/34100 32546/34047 32592/34098 +f 32578/34082 32606/34115 32576/34080 +f 32577/34081 32607/34116 32593/34099 +f 32577/34081 32594/34100 32608/34117 +f 32578/34082 30626/34101 30611/34118 +f 32595/34102 32579/34083 32609/34119 +f 32567/34069 32595/34102 32596/34103 +f 32579/34083 32593/34099 32607/34116 +f 32582/34086 32580/34084 32581/34085 +f 32596/34103 32600/34107 32582/34086 +f 32597/34104 32610/34120 32583/34087 +f 32569/34071 32601/34108 32597/34104 +f 32584/34088 32599/34106 32598/34105 +f 32611/34121 32599/34106 32552/34053 +f 32582/34086 32600/34107 32580/34084 +f 32600/34107 32611/34121 32552/34053 +f 32585/34089 32598/34105 32612/34122 +f 32585/34089 32612/34122 32601/34108 +f 32583/34087 32610/34120 32570/34072 +f 32571/34073 32602/34109 32587/34091 +f 32613/34123 32602/34109 32570/34072 +f 32587/34091 32614/34124 32603/34110 +f 32588/34092 29883/34111 29918/34079 +f 32590/34094 32615/34125 32589/34093 +f 32616/34126 32604/34112 32589/34093 +f 32603/34110 32617/34127 32590/34094 +f 32574/34077 32605/34113 29747/34114 +f 32604/34112 29715/34128 32591/34097 +f 32591/34097 29747/34114 32605/34113 +f 32606/34115 32618/34129 32592/34098 +f 32592/34098 32619/34130 32594/34100 +f 30611/34118 32606/34115 32578/34082 +f 32577/34081 32620/34131 32607/34116 +f 32608/34117 32594/34100 32621/34132 +f 32608/34117 32620/34131 32577/34081 +f 32579/34083 32607/34116 32609/34119 +f 32609/34119 32600/34107 32595/34102 +f 32600/34107 32596/34103 32595/34102 +f 32622/34133 32610/34120 32597/34104 +f 32597/34104 32601/34108 32623/34134 +f 32624/34135 32598/34105 32599/34106 +f 32599/34106 32611/34121 32625/34136 +f 32600/34107 32626/34137 32611/34121 +f 32612/34122 32598/34105 32624/34135 +f 32601/34108 32612/34122 32623/34134 +f 32610/34120 32613/34123 32570/34072 +f 32602/34109 32627/34138 32587/34091 +f 32613/34123 32627/34138 32602/34109 +f 32628/34139 32614/34124 32587/34091 +f 32614/34124 32629/34140 32603/34110 +f 32590/34094 32630/34141 32615/34125 +f 32589/34093 32615/34125 32616/34126 +f 32616/34126 29715/34128 32604/34112 +f 32630/34141 32590/34094 32617/34127 +f 32603/34110 32629/34140 32617/34127 +f 32591/34097 29715/34128 29747/34114 +f 32618/34129 32619/34130 32592/34098 +f 32618/34129 32606/34115 32631/34142 +f 32632/34143 32594/34100 32619/34130 +f 30611/34118 32631/34142 32606/34115 +f 32633/34144 32607/34116 32620/34131 +f 32621/34132 32634/34145 32608/34117 +f 32621/34132 32594/34100 32635/34146 +f 32620/34131 32608/34117 32636/34147 +f 32609/34119 32607/34116 32633/34144 +f 32637/34148 32600/34107 32609/34119 +f 32623/34134 32622/34133 32597/34104 +f 32610/34120 32622/34133 32613/34123 +f 32599/34106 32625/34136 32624/34135 +f 32625/34136 32611/34121 32626/34137 +f 32638/34149 32626/34137 32600/34107 +f 32639/34150 32612/34122 32624/34135 +f 32640/34151 32623/34134 32612/34122 +f 32627/34138 32641/34152 32587/34091 +f 32627/34138 32613/34123 32642/34153 +f 32643/34154 32614/34124 32628/34139 +f 32628/34139 32587/34091 32641/34152 +f 32614/34124 32643/34154 32629/34140 +f 32644/34155 32615/34125 32630/34141 +f 32645/34156 32616/34126 32615/34125 +f 29588/34157 29715/34128 32616/34126 +f 32617/34127 32646/34158 32630/34141 +f 32647/34159 32617/34127 32629/34140 +f 32618/34129 32648/34160 32619/34130 +f 32631/34142 32649/34161 32618/34129 +f 32619/34130 32650/34162 32632/34143 +f 32594/34100 32632/34143 32635/34146 +f 30575/34163 32631/34142 30611/34118 +f 32633/34144 32620/34131 32651/34164 +f 32636/34147 32608/34117 32634/34145 +f 32621/34132 32635/34146 32634/34145 +f 32620/34131 32636/34147 32651/34164 +f 32609/34119 32633/34144 32652/34165 +f 32652/34165 32637/34148 32609/34119 +f 32600/34107 32637/34148 32638/34149 +f 32622/34133 32623/34134 32653/34166 +f 32613/34123 32622/34133 32654/34167 +f 32625/34136 29842/34168 32624/34135 +f 32625/34136 32626/34137 32638/34149 +f 29842/34168 32639/34150 32624/34135 +f 32612/34122 32639/34150 32640/34151 +f 32640/34151 32653/34166 32623/34134 +f 32641/34152 32627/34138 32655/34169 +f 32656/34170 32642/34153 32613/34123 +f 32627/34138 32642/34153 32655/34169 +f 32657/34171 32643/34154 32628/34139 +f 32641/34152 32657/34171 32628/34139 +f 32629/34140 32643/34154 32647/34159 +f 32645/34156 32615/34125 32644/34155 +f 32630/34141 32658/34172 32644/34155 +f 32616/34126 32645/34156 29588/34157 +f 32617/34127 32647/34159 32646/34158 +f 32658/34172 32630/34141 32646/34158 +f 32650/34162 32619/34130 32648/34160 +f 32649/34161 32648/34160 32618/34129 +f 32659/34173 32649/34161 32631/34142 +f 32650/34162 32660/34174 32632/34143 +f 32635/34146 32632/34143 32660/34174 +f 32631/34142 30575/34163 30588/34175 +f 32651/34164 32652/34165 32633/34144 +f 32634/34145 32661/34176 32636/34147 +f 32661/34176 32634/34145 32635/34146 +f 32636/34147 32662/34177 32651/34164 +f 32652/34165 29820/34178 32637/34148 +f 32637/34148 32625/34136 32638/34149 +f 32622/34133 32653/34166 32663/34179 +f 32613/34123 32654/34167 32656/34170 +f 32654/34167 32622/34133 32663/34179 +f 32625/34136 29820/34178 29842/34168 +f 29842/34168 29875/34180 32639/34150 +f 32639/34150 32653/34166 32640/34151 +f 32655/34169 32664/34181 32641/34152 +f 32642/34153 32656/34170 32655/34169 +f 32657/34171 32646/34158 32643/34154 +f 32657/34171 32641/34152 32664/34181 +f 32643/34154 32646/34158 32647/34159 +f 32645/34156 32644/34155 29522/34182 +f 32658/34172 32665/34183 32644/34155 +f 29588/34157 32645/34156 29522/34182 +f 32658/34172 32646/34158 32666/34184 +f 32650/34162 32648/34160 32667/34185 +f 32649/34161 32668/34186 32648/34160 +f 32659/34173 32668/34186 32649/34161 +f 32659/34173 32631/34142 30588/34175 +f 32660/34174 32650/34162 32669/34187 +f 32660/34174 32670/34188 32635/34146 +f 29795/34189 32652/34165 32651/34164 +f 32636/34147 32661/34176 32671/34190 +f 32635/34146 32670/34188 32661/34176 +f 32636/34147 32671/34190 32662/34177 +f 32662/34177 32672/34191 32651/34164 +f 29795/34189 29820/34178 32652/34165 +f 32637/34148 29820/34178 32625/34136 +f 29858/34192 32663/34179 32653/34166 +f 32673/34193 32656/34170 32654/34167 +f 32654/34167 32663/34179 29858/34192 +f 29875/34180 32653/34166 32639/34150 +f 32655/34169 32673/34193 32664/34181 +f 32656/34170 32673/34193 32655/34169 +f 32657/34171 32666/34184 32646/34158 +f 32664/34181 32666/34184 32657/34171 +f 29522/34182 32644/34155 29558/34194 +f 32665/34183 32674/34195 32644/34155 +f 32658/34172 32666/34184 32665/34183 +f 32675/34196 32650/34162 32667/34185 +f 32667/34185 32648/34160 32668/34186 +f 32676/34197 32668/34186 32659/34173 +f 32659/34173 30588/34175 30589/34198 +f 32675/34196 32669/34187 32650/34162 +f 32660/34174 32669/34187 32677/34199 +f 32660/34174 32677/34199 32670/34188 +f 32672/34191 29795/34189 32651/34164 +f 32671/34190 32661/34176 32670/34188 +f 32671/34190 32670/34188 32662/34177 +f 32678/34200 32672/34191 32662/34177 +f 29858/34192 32653/34166 29875/34180 +f 32673/34193 32654/34167 32679/34201 +f 32654/34167 29858/34192 29818/34202 +f 32664/34181 32673/34193 32680/34203 +f 32666/34184 32664/34181 32680/34203 +f 32681/34204 29558/34194 32644/34155 +f 32682/34205 32674/34195 32665/34183 +f 32644/34155 32674/34195 32681/34204 +f 32665/34183 32666/34184 32682/34205 +f 32667/34185 32683/34206 32675/34196 +f 32684/34207 32667/34185 32668/34186 +f 32668/34186 32676/34197 32684/34207 +f 32685/34208 32676/34197 32659/34173 +f 32686/34209 32659/34173 30589/34198 +f 32675/34196 32687/34210 32669/34187 +f 32669/34187 32688/34211 32677/34199 +f 32689/34212 32670/34188 32677/34199 +f 29795/34189 32672/34191 32678/34200 +f 32662/34177 32670/34188 32690/34213 +f 32662/34177 32690/34213 32678/34200 +f 32654/34167 29818/34202 32679/34201 +f 32679/34201 32691/34214 32673/34193 +f 32673/34193 32691/34214 32680/34203 +f 32666/34184 32680/34203 32682/34205 +f 29558/34194 32681/34204 29589/34215 +f 29681/34216 32674/34195 32682/34205 +f 32692/34217 32681/34204 32674/34195 +f 32683/34206 32667/34185 32684/34207 +f 32675/34196 32683/34206 32693/34218 +f 32684/34207 32676/34197 32694/34219 +f 32659/34173 32686/34209 32685/34208 +f 32695/34220 32676/34197 32685/34208 +f 30589/34198 30599/34221 32686/34209 +f 32687/34210 32675/34196 32693/34218 +f 32696/34222 32669/34187 32687/34210 +f 32696/34222 32688/34211 32669/34187 +f 32688/34211 32697/34223 32677/34199 +f 32677/34199 32697/34223 32689/34212 +f 32690/34213 32670/34188 32689/34212 +f 32678/34200 29719/34224 29795/34189 +f 32678/34200 32690/34213 32698/34225 +f 29818/34202 29770/34226 32679/34201 +f 32679/34201 29770/34226 32691/34214 +f 32680/34203 32691/34214 32699/34227 +f 32680/34203 32699/34227 32682/34205 +f 32681/34204 32692/34217 29589/34215 +f 32674/34195 29681/34216 29616/34228 +f 32699/34227 29681/34216 32682/34205 +f 32674/34195 29616/34228 32692/34217 +f 32684/34207 32693/34218 32683/34206 +f 32695/34220 32694/34219 32676/34197 +f 32684/34207 32694/34219 32700/34229 +f 32686/34209 32701/34230 32685/34208 +f 32702/34231 32695/34220 32685/34208 +f 32686/34209 30599/34221 30624/34232 +f 32693/34218 32703/34233 32687/34210 +f 32687/34210 32704/34234 32696/34222 +f 32696/34222 32705/34235 32688/34211 +f 32705/34235 32697/34223 32688/34211 +f 32706/34236 32689/34212 32697/34223 +f 32690/34213 32689/34212 32706/34236 +f 32698/34225 29719/34224 32678/34200 +f 32707/34237 32698/34225 32690/34213 +f 29716/34238 32691/34214 29770/34226 +f 29716/34238 32699/34227 32691/34214 +f 29589/34215 32692/34217 29616/34228 +f 29681/34216 32699/34227 29716/34238 +f 32700/34229 32693/34218 32684/34207 +f 32695/34220 32708/34239 32694/34219 +f 32709/34240 32700/34229 32694/34219 +f 32701/34230 32702/34231 32685/34208 +f 32710/34241 32701/34230 32686/34209 +f 32695/34220 32702/34231 32708/34239 +f 32686/34209 30624/34232 32710/34241 +f 32703/34233 32693/34218 32711/34242 +f 32704/34234 32687/34210 32703/34233 +f 32696/34222 32704/34234 32712/34243 +f 32696/34222 32712/34243 32705/34235 +f 32713/34244 32697/34223 32705/34235 +f 32697/34223 32713/34244 32706/34236 +f 32706/34236 32714/34245 32690/34213 +f 32698/34225 29649/34246 29719/34224 +f 32707/34237 29649/34246 32698/34225 +f 32690/34213 32714/34245 32707/34237 +f 32700/34229 32715/34247 32693/34218 +f 32708/34239 32709/34240 32694/34219 +f 32709/34240 32716/34248 32700/34229 +f 30665/34249 32702/34231 32701/34230 +f 30665/34249 32701/34230 32710/34241 +f 32717/34250 32708/34239 32702/34231 +f 32710/34241 30624/34232 30665/34249 +f 32711/34242 32693/34218 32715/34247 +f 32703/34233 32711/34242 32718/34251 +f 32704/34234 32703/34233 32718/34251 +f 32712/34243 32704/34234 32719/34252 +f 32720/34253 32705/34235 32712/34243 +f 32713/34244 32705/34235 32721/34254 +f 32714/34245 32706/34236 32713/34244 +f 32714/34245 29649/34246 32707/34237 +f 32700/34229 32716/34248 32715/34247 +f 32716/34248 32709/34240 32708/34239 +f 30665/34249 30647/34255 32702/34231 +f 32708/34239 32717/34250 32716/34248 +f 32717/34250 32702/34231 30647/34255 +f 32715/34247 32722/34256 32711/34242 +f 32718/34251 32711/34242 32723/34257 +f 32718/34251 32724/34258 32704/34234 +f 32719/34252 32704/34234 32724/34258 +f 32720/34253 32712/34243 32719/34252 +f 32725/34259 32705/34235 32720/34253 +f 32721/34254 32726/34260 32713/34244 +f 32721/34254 32705/34235 32725/34259 +f 29683/34261 32714/34245 32713/34244 +f 29649/34246 32714/34245 29683/34261 +f 32715/34247 32716/34248 32722/34256 +f 32717/34250 32727/34262 32716/34248 +f 30647/34255 29484/34263 32717/34250 +f 32711/34242 32722/34256 32723/34257 +f 32723/34257 32724/34258 32718/34251 +f 32724/34258 32728/34264 32719/34252 +f 32719/34252 32728/34264 32720/34253 +f 32725/34259 32720/34253 32729/34265 +f 32726/34260 32721/34254 32730/34266 +f 29720/34267 32713/34244 32726/34260 +f 32725/34259 32731/34268 32721/34254 +f 32713/34244 29720/34267 29683/34261 +f 32727/34262 32722/34256 32716/34248 +f 32732/34269 32727/34262 32717/34250 +f 32717/34250 29484/34263 32732/34269 +f 32727/34262 32723/34257 32722/34256 +f 32724/34258 32723/34257 32733/34270 +f 32724/34258 32734/34271 32728/34264 +f 32735/34272 32720/34253 32728/34264 +f 32731/34268 32725/34259 32729/34265 +f 32729/34265 32720/34253 32735/34272 +f 32730/34266 32736/34273 32726/34260 +f 32730/34266 32721/34254 32737/34274 +f 32726/34260 32736/34273 29720/34267 +f 32731/34268 32737/34274 32721/34254 +f 32727/34262 32732/34269 32723/34257 +f 32732/34269 29484/34263 32738/34275 +f 32733/34270 32723/34257 32732/34269 +f 32733/34270 32739/34276 32724/34258 +f 32734/34271 32735/34272 32728/34264 +f 32734/34271 32724/34258 32739/34276 +f 32731/34268 32729/34265 32740/34277 +f 32729/34265 32735/34272 32741/34278 +f 32730/34266 32737/34274 32736/34273 +f 29720/34267 32736/34273 32742/34279 +f 32740/34277 32737/34274 32731/34268 +f 32738/34275 29484/34263 32741/34278 +f 32732/34269 32738/34275 32739/34276 +f 32732/34269 32739/34276 32733/34270 +f 32735/34272 32734/34271 32741/34278 +f 32738/34275 32734/34271 32739/34276 +f 32729/34265 32741/34278 32740/34277 +f 32742/34279 32736/34273 32737/34274 +f 29620/34280 29720/34267 32742/34279 +f 32742/34279 32737/34274 32740/34277 +f 32741/34278 29484/34263 29449/34281 +f 32734/34271 32738/34275 32741/34278 +f 32740/34277 32741/34278 32742/34279 +f 29620/34280 32742/34279 32741/34278 +f 29449/34281 29620/34280 32741/34278 +f 32743/34282 32744/34283 32745/34284 +f 32746/34285 32744/34283 32743/34282 +f 32747/34286 32745/34284 32744/34283 +f 32745/34284 21295/34287 32743/34282 +f 32744/34283 32746/34285 32748/34288 +f 32743/34282 21349/34289 32746/34285 +f 32744/34283 32748/34288 32747/34286 +f 32749/34290 32745/34284 32747/34286 +f 21295/34287 32745/34284 32750/34291 +f 21295/34287 21322/34292 32743/34282 +f 32751/34293 32748/34288 32746/34285 +f 32752/34294 32746/34285 21349/34289 +f 21322/34292 21349/34289 32743/34282 +f 32747/34286 32748/34288 32751/34293 +f 32745/34284 32749/34290 32753/34295 +f 32747/34286 32754/34296 32749/34290 +f 32745/34284 32755/34297 32750/34291 +f 21295/34287 32750/34291 21313/34298 +f 32746/34285 32756/34299 32751/34293 +f 32752/34294 32757/34300 32746/34285 +f 21349/34289 32758/34301 32752/34294 +f 32751/34293 32759/34302 32747/34286 +f 32753/34295 32749/34290 32760/34303 +f 32755/34297 32745/34284 32753/34295 +f 32754/34296 32747/34286 32761/34304 +f 32754/34296 32760/34303 32749/34290 +f 32753/34295 32750/34291 32755/34297 +f 21313/34298 32750/34291 32762/34305 +f 32746/34285 32757/34300 32756/34299 +f 32751/34293 32756/34299 32759/34302 +f 32758/34301 21349/34289 32763/34306 +f 32761/34304 32747/34286 32759/34302 +f 32753/34295 32760/34303 32764/34307 +f 32761/34304 32765/34308 32754/34296 +f 32760/34303 32754/34296 32765/34308 +f 32764/34307 32750/34291 32753/34295 +f 32750/34291 32764/34307 32762/34305 +f 21313/34298 32762/34305 32766/34309 +f 32767/34310 32764/34307 32760/34303 +f 32765/34308 32768/34311 32760/34303 +f 32762/34305 32764/34307 32769/34312 +f 32766/34309 32762/34305 32770/34313 +f 21313/34298 32766/34309 32771/34314 +f 32764/34307 32767/34310 32772/34315 +f 32768/34311 32767/34310 32760/34303 +f 32764/34307 32772/34315 32769/34312 +f 32773/34316 32762/34305 32769/34312 +f 32762/34305 32774/34317 32770/34313 +f 32770/34313 32775/34318 32766/34309 +f 32766/34309 32775/34318 32771/34314 +f 21313/34298 32771/34314 32776/34319 +f 32768/34311 32772/34315 32767/34310 +f 32772/34315 32777/34320 32769/34312 +f 32762/34305 32773/34316 32774/34317 +f 32769/34312 32777/34320 32773/34316 +f 32774/34317 32778/34321 32770/34313 +f 32779/34322 32775/34318 32770/34313 +f 32771/34314 32775/34318 32780/34323 +f 32771/34314 32780/34323 32776/34319 +f 21270/34324 21313/34298 32776/34319 +f 32781/34325 32772/34315 32768/34311 +f 32777/34320 32772/34315 32781/34325 +f 32774/34317 32773/34316 32782/34326 +f 32773/34316 32777/34320 32783/34327 +f 32782/34326 32778/34321 32774/34317 +f 32770/34313 32778/34321 32779/34322 +f 32779/34322 32784/34328 32775/34318 +f 32784/34328 32780/34323 32775/34318 +f 32776/34319 32780/34323 32785/34329 +f 21250/34330 21270/34324 32776/34319 +f 32782/34326 32773/34316 32783/34327 +f 32778/34321 32782/34326 32786/34331 +f 32787/34332 32779/34322 32778/34321 +f 32779/34322 32780/34323 32784/34328 +f 32779/34322 32785/34329 32780/34323 +f 32785/34329 32788/34333 32776/34319 +f 32776/34319 32789/34334 21250/34330 +f 32790/34335 32782/34326 32783/34327 +f 32786/34331 32782/34326 32790/34335 +f 32778/34321 32786/34331 32787/34332 +f 32787/34332 32785/34329 32779/34322 +f 32791/34336 32788/34333 32785/34329 +f 32788/34333 32792/34337 32776/34319 +f 32793/34338 32789/34334 32776/34319 +f 32789/34334 21239/34339 21250/34330 +f 32790/34335 32794/34340 32786/34331 +f 32786/34331 32794/34340 32787/34332 +f 32787/34332 32795/34341 32785/34329 +f 32796/34342 32791/34336 32785/34329 +f 32791/34336 32797/34343 32788/34333 +f 32776/34319 32792/34337 32793/34338 +f 32792/34337 32788/34333 32798/34344 +f 32789/34334 32793/34338 32799/34345 +f 32789/34334 21252/34346 21239/34339 +f 32790/34335 32800/34347 32794/34340 +f 32787/34332 32794/34340 32801/34348 +f 32801/34348 32795/34341 32787/34332 +f 32795/34341 32802/34349 32785/34329 +f 32796/34342 32803/34350 32791/34336 +f 32804/34351 32796/34342 32785/34329 +f 32791/34336 32803/34350 32797/34343 +f 32797/34343 32805/34352 32788/34333 +f 32793/34338 32792/34337 32806/34353 +f 32798/34344 32788/34333 32807/34354 +f 32798/34344 32808/34355 32792/34337 +f 32793/34338 21252/34346 32799/34345 +f 21252/34346 32789/34334 32799/34345 +f 32800/34347 32809/34356 32794/34340 +f 32801/34348 32794/34340 32809/34356 +f 32795/34341 32801/34348 32802/34349 +f 32802/34349 32804/34351 32785/34329 +f 32803/34350 32796/34342 32810/34357 +f 32796/34342 32804/34351 32810/34357 +f 32805/34352 32797/34343 32803/34350 +f 32807/34354 32788/34333 32805/34352 +f 21283/34358 32793/34338 32806/34353 +f 32792/34337 32808/34355 32806/34353 +f 32807/34354 32811/34359 32798/34344 +f 32808/34355 32798/34344 32812/34360 +f 21283/34358 21252/34346 32793/34338 +f 32813/34361 32809/34356 32800/34347 +f 32809/34356 32814/34362 32801/34348 +f 32815/34363 32802/34349 32801/34348 +f 32804/34351 32802/34349 32810/34357 +f 32803/34350 32810/34357 32816/34364 +f 32817/34365 32805/34352 32803/34350 +f 32807/34354 32805/34352 32811/34359 +f 32818/34366 21283/34358 32806/34353 +f 32808/34355 32819/34367 32806/34353 +f 32812/34360 32798/34344 32811/34359 +f 32808/34355 32812/34360 21356/34368 +f 32820/34369 32809/34356 32813/34361 +f 32809/34356 32820/34369 32814/34362 +f 32801/34348 32814/34362 32815/34363 +f 32810/34357 32802/34349 32815/34363 +f 32821/34370 32803/34350 32816/34364 +f 32816/34364 32810/34357 32815/34363 +f 32805/34352 32817/34365 32822/34371 +f 32811/34359 32805/34352 32823/34372 +f 21286/34373 21283/34358 32818/34366 +f 32819/34367 32818/34366 32806/34353 +f 21356/34368 32819/34367 32808/34355 +f 32823/34372 32812/34360 32811/34359 +f 32824/34374 21356/34368 32812/34360 +f 32825/34375 32814/34362 32820/34369 +f 32825/34375 32815/34363 32814/34362 +f 32816/34364 32825/34375 32821/34370 +f 32815/34363 32825/34375 32816/34364 +f 32823/34372 32805/34352 32822/34371 +f 32818/34366 32826/34376 21286/34373 +f 32818/34366 32819/34367 32827/34377 +f 21356/34368 32828/34378 32819/34367 +f 32812/34360 32823/34372 32824/34374 +f 21356/34368 32824/34374 32829/34379 +f 32820/34369 32821/34370 32825/34375 +f 32823/34372 32822/34371 32830/34380 +f 21286/34373 32826/34376 32831/34381 +f 32826/34376 32818/34366 32827/34377 +f 32819/34367 32832/34382 32827/34377 +f 32828/34378 21356/34368 21344/34383 +f 32832/34382 32819/34367 32828/34378 +f 32824/34374 32823/34372 32833/34384 +f 32824/34374 32834/34385 32829/34379 +f 32829/34379 21360/34386 21356/34368 +f 32830/34380 32822/34371 32835/34387 +f 32833/34384 32823/34372 32830/34380 +f 32827/34377 32831/34381 32826/34376 +f 21286/34373 32831/34381 21288/34388 +f 32832/34382 32836/34389 32827/34377 +f 32832/34382 32828/34378 21344/34383 +f 32834/34385 32824/34374 32833/34384 +f 32837/34390 32829/34379 32834/34385 +f 21360/34386 32829/34379 32837/34390 +f 32833/34384 32830/34380 32838/34391 +f 21288/34388 32831/34381 32827/34377 +f 32836/34389 32832/34382 21325/34392 +f 32827/34377 32836/34389 21288/34388 +f 21344/34383 21325/34392 32832/34382 +f 32834/34385 32833/34384 32838/34391 +f 32834/34385 32839/34393 32837/34390 +f 21325/34392 21298/34394 32836/34389 +f 32836/34389 21298/34394 21288/34388 +f 32839/34393 32834/34385 32838/34391 +f 32840/34395 32841/34396 32842/34397 +f 32843/34398 32841/34396 32840/34395 +f 32842/34397 32841/34396 32844/34399 +f 32842/34397 32845/34400 32840/34395 +f 32840/34395 32846/34401 32843/34398 +f 32841/34396 32843/34398 32847/34402 +f 32848/34403 32842/34397 32844/34399 +f 32841/34396 32849/34404 32844/34399 +f 32845/34400 32850/34405 32840/34395 +f 32845/34400 32842/34397 32851/34406 +f 32843/34398 32846/34401 32852/34407 +f 32846/34401 32840/34395 32853/34408 +f 32847/34402 32854/34409 32841/34396 +f 32847/34402 32843/34398 32852/34407 +f 32842/34397 32848/34403 32851/34406 +f 32855/34410 32848/34403 32844/34399 +f 32841/34396 32854/34409 32849/34404 +f 32844/34399 32849/34404 32856/34411 +f 32850/34405 32853/34408 32840/34395 +f 32851/34406 32850/34405 32845/34400 +f 32857/34412 32852/34407 32846/34401 +f 32853/34408 32857/34412 32846/34401 +f 32847/34402 32858/34413 32854/34409 +f 32852/34407 32858/34413 32847/34402 +f 32848/34403 32859/34414 32851/34406 +f 32860/34415 32848/34403 32855/34410 +f 32856/34411 32855/34410 32844/34399 +f 32854/34409 32861/34416 32849/34404 +f 32862/34417 32856/34411 32849/34404 +f 32853/34408 32850/34405 32863/34418 +f 32859/34414 32850/34405 32851/34406 +f 32864/34419 32852/34407 32857/34412 +f 32865/34420 32857/34412 32853/34408 +f 32861/34416 32854/34409 32858/34413 +f 32858/34413 32852/34407 32866/34421 +f 32860/34415 32859/34414 32848/34403 +f 32860/34415 32855/34410 32867/34422 +f 32856/34411 32868/34423 32855/34410 +f 32861/34416 32862/34417 32849/34404 +f 32862/34417 32869/34424 32856/34411 +f 32863/34418 32850/34405 32870/34425 +f 32863/34418 32871/34426 32853/34408 +f 32850/34405 32859/34414 32872/34427 +f 32866/34421 32852/34407 32864/34419 +f 32873/34428 32864/34419 32857/34412 +f 32865/34420 32874/34429 32857/34412 +f 32871/34426 32865/34420 32853/34408 +f 32861/34416 32858/34413 32875/34430 +f 32858/34413 32866/34421 32875/34430 +f 32876/34431 32859/34414 32860/34415 +f 32855/34410 32868/34423 32867/34422 +f 32877/34432 32860/34415 32867/34422 +f 32878/34433 32868/34423 32856/34411 +f 32861/34416 32879/34434 32862/34417 +f 32869/34424 32878/34433 32856/34411 +f 32869/34424 32862/34417 32879/34434 +f 32870/34425 32880/34435 32863/34418 +f 32872/34427 32870/34425 32850/34405 +f 32881/34436 32871/34426 32863/34418 +f 32859/34414 32876/34431 32872/34427 +f 32866/34421 32864/34419 32882/34437 +f 32857/34412 32883/34438 32873/34428 +f 32864/34419 32873/34428 32882/34437 +f 32874/34429 32865/34420 32884/34439 +f 32874/34429 32885/34440 32857/34412 +f 32884/34439 32865/34420 32871/34426 +f 32875/34430 32879/34434 32861/34416 +f 32875/34430 32866/34421 32886/34441 +f 32877/34432 32876/34431 32860/34415 +f 32868/34423 32887/34442 32867/34422 +f 32867/34422 32887/34442 32877/34432 +f 32868/34423 32878/34433 32888/34443 +f 32889/34444 32878/34433 32869/34424 +f 32890/34445 32880/34435 32870/34425 +f 32863/34418 32880/34435 32881/34436 +f 32872/34427 32890/34445 32870/34425 +f 32881/34436 32891/34446 32871/34426 +f 32876/34431 32892/34447 32872/34427 +f 32866/34421 32882/34437 32893/34448 +f 32857/34412 32885/34440 32883/34438 +f 32883/34438 32894/34449 32873/34428 +f 32873/34428 32895/34450 32882/34437 +f 32884/34439 32896/34451 32874/34429 +f 32885/34440 32874/34429 32896/34451 +f 32871/34426 32891/34446 32884/34439 +f 32875/34430 32886/34441 32879/34434 +f 32893/34448 32886/34441 32866/34421 +f 32897/34452 32876/34431 32877/34432 +f 32888/34443 32887/34442 32868/34423 +f 32897/34452 32877/34432 32887/34442 +f 32888/34443 32878/34433 32898/34453 +f 32898/34453 32878/34433 32889/34444 +f 32899/34454 32889/34444 32869/34424 +f 32900/34455 32880/34435 32890/34445 +f 32901/34456 32881/34436 32880/34435 +f 32890/34445 32872/34427 32902/34457 +f 32903/34458 32891/34446 32881/34436 +f 32892/34447 32876/34431 32897/34452 +f 32902/34457 32872/34427 32892/34447 +f 32893/34448 32882/34437 32904/34459 +f 32885/34440 32905/34460 32883/34438 +f 32894/34449 32883/34438 32906/34461 +f 32873/34428 32894/34449 32895/34450 +f 32895/34450 32907/34462 32882/34437 +f 32896/34451 32884/34439 32908/34463 +f 32905/34460 32885/34440 32896/34451 +f 32884/34439 32891/34446 32903/34458 +f 32893/34448 32909/34464 32886/34441 +f 32887/34442 32888/34443 32898/34453 +f 32887/34442 32898/34453 32897/34452 +f 32889/34444 32910/34465 32898/34453 +f 32889/34444 32899/34454 32911/34466 +f 32911/34466 32899/34454 32869/34424 +f 32880/34435 32900/34455 32912/34467 +f 32902/34457 32900/34455 32890/34445 +f 32881/34436 32901/34456 32913/34468 +f 32880/34435 32912/34467 32901/34456 +f 32914/34469 32903/34458 32881/34436 +f 32897/34452 32915/34470 32892/34447 +f 32892/34447 32915/34470 32902/34457 +f 32904/34459 32882/34437 32907/34462 +f 32916/34471 32893/34448 32904/34459 +f 32883/34438 32905/34460 32917/34472 +f 32918/34473 32906/34461 32883/34438 +f 32906/34461 32919/34474 32894/34449 +f 32894/34449 32919/34474 32895/34450 +f 32920/34475 32907/34462 32895/34450 +f 32921/34476 32908/34463 32884/34439 +f 32896/34451 32908/34463 32922/34477 +f 32896/34451 32922/34477 32905/34460 +f 32884/34439 32903/34458 32921/34476 +f 32893/34448 32923/34478 32909/34464 +f 32898/34453 32924/34479 32897/34452 +f 32910/34465 32889/34444 32925/34480 +f 32910/34465 32924/34479 32898/34453 +f 32889/34444 32911/34466 32926/34481 +f 32912/34467 32900/34455 32927/34482 +f 32902/34457 32928/34483 32900/34455 +f 32913/34468 32901/34456 32929/34484 +f 32913/34468 32914/34469 32881/34436 +f 32912/34467 32927/34482 32901/34456 +f 32930/34485 32903/34458 32914/34469 +f 32924/34479 32915/34470 32897/34452 +f 32902/34457 32915/34470 32931/34486 +f 32907/34462 32916/34471 32904/34459 +f 32923/34478 32893/34448 32916/34471 +f 32922/34477 32917/34472 32905/34460 +f 32883/34438 32917/34472 32918/34473 +f 32906/34461 32918/34473 32932/34487 +f 32906/34461 32932/34487 32919/34474 +f 32895/34450 32919/34474 32920/34475 +f 32920/34475 32933/34488 32907/34462 +f 32934/34489 32908/34463 32921/34476 +f 32908/34463 32935/34490 32922/34477 +f 32921/34476 32903/34458 32934/34489 +f 32923/34478 20467/34491 32909/34464 +f 32889/34444 32926/34481 32925/34480 +f 32936/34492 32910/34465 32925/34480 +f 32910/34465 32936/34492 32924/34479 +f 32911/34466 32937/34493 32926/34481 +f 32938/34494 32927/34482 32900/34455 +f 32900/34455 32928/34483 32938/34494 +f 32931/34486 32928/34483 32902/34457 +f 32939/34495 32929/34484 32901/34456 +f 32940/34496 32913/34468 32929/34484 +f 32914/34469 32913/34468 32941/34497 +f 32927/34482 32939/34495 32901/34456 +f 32903/34458 32930/34485 32934/34489 +f 32941/34497 32930/34485 32914/34469 +f 32915/34470 32924/34479 32942/34498 +f 32942/34498 32931/34486 32915/34470 +f 32933/34488 32916/34471 32907/34462 +f 32923/34478 32916/34471 20468/34499 +f 32917/34472 32922/34477 20688/34500 +f 32917/34472 20688/34500 32918/34473 +f 32918/34473 32943/34501 32932/34487 +f 32919/34474 32932/34487 32944/34502 +f 32919/34474 32944/34502 32920/34475 +f 32920/34475 32945/34503 32933/34488 +f 32908/34463 32934/34489 32935/34490 +f 32935/34490 32946/34504 32922/34477 +f 20468/34499 20467/34491 32923/34478 +f 32925/34480 32926/34481 32947/34505 +f 32936/34492 32925/34480 32948/34506 +f 32924/34479 32936/34492 32942/34498 +f 32926/34481 32937/34493 32949/34507 +f 32927/34482 32938/34494 32950/34508 +f 32951/34509 32938/34494 32928/34483 +f 32928/34483 32931/34486 32951/34509 +f 32940/34496 32929/34484 32939/34495 +f 32952/34510 32913/34468 32940/34496 +f 32941/34497 32913/34468 32952/34510 +f 32953/34511 32939/34495 32927/34482 +f 32935/34490 32934/34489 32930/34485 +f 32954/34512 32930/34485 32941/34497 +f 32955/34513 32931/34486 32942/34498 +f 32916/34471 32933/34488 32956/34514 +f 32916/34471 20460/34515 20468/34499 +f 20688/34500 32922/34477 32946/34504 +f 20688/34500 20654/34516 32918/34473 +f 32957/34517 32932/34487 32943/34501 +f 32943/34501 32918/34473 32958/34518 +f 32932/34487 32957/34517 32944/34502 +f 32920/34475 32944/34502 32959/34519 +f 32945/34503 32920/34475 32959/34519 +f 32933/34488 32945/34503 32960/34520 +f 32946/34504 32935/34490 32961/34521 +f 32962/34522 32947/34505 32926/34481 +f 32925/34480 32947/34505 32948/34506 +f 32936/34492 32948/34506 32942/34498 +f 32949/34507 32962/34522 32926/34481 +f 32950/34508 32953/34511 32927/34482 +f 32950/34508 32938/34494 32963/34523 +f 32938/34494 32951/34509 32963/34523 +f 32955/34513 32951/34509 32931/34486 +f 32964/34524 32940/34496 32939/34495 +f 32965/34525 32952/34510 32940/34496 +f 32952/34510 32966/34526 32941/34497 +f 32939/34495 32953/34511 32967/34527 +f 32935/34490 32930/34485 32968/34528 +f 32968/34528 32930/34485 32954/34512 +f 32969/34529 32954/34512 32941/34497 +f 32970/34530 32955/34513 32942/34498 +f 32933/34488 32971/34531 32956/34514 +f 32956/34514 20460/34515 32916/34471 +f 20688/34500 32946/34504 20710/34532 +f 32918/34473 20654/34516 32958/34518 +f 32972/34533 32957/34517 32943/34501 +f 32943/34501 32958/34518 32972/34533 +f 32957/34517 32959/34519 32944/34502 +f 32959/34519 32973/34534 32945/34503 +f 32960/34520 32945/34503 32974/34535 +f 32971/34531 32933/34488 32960/34520 +f 32935/34490 32968/34528 32961/34521 +f 32961/34521 20710/34532 32946/34504 +f 32947/34505 32962/34522 32975/34536 +f 32976/34537 32948/34506 32947/34505 +f 32948/34506 32970/34530 32942/34498 +f 32962/34522 32949/34507 32977/34538 +f 32953/34511 32950/34508 32978/34539 +f 32963/34523 32978/34539 32950/34508 +f 32963/34523 32951/34509 32955/34513 +f 32965/34525 32940/34496 32964/34524 +f 32979/34540 32964/34524 32939/34495 +f 32980/34541 32952/34510 32965/34525 +f 32952/34510 32980/34541 32966/34526 +f 32969/34529 32941/34497 32966/34526 +f 32953/34511 32981/34542 32967/34527 +f 32967/34527 32982/34543 32939/34495 +f 32954/34512 32983/34544 32968/34528 +f 32984/34545 32954/34512 32969/34529 +f 32955/34513 32970/34530 32976/34537 +f 32956/34514 32971/34531 20460/34515 +f 20654/34516 32985/34546 32958/34518 +f 32986/34547 32957/34517 32972/34533 +f 32985/34546 32972/34533 32958/34518 +f 32959/34519 32957/34517 32973/34534 +f 32945/34503 32973/34534 32987/34548 +f 32988/34549 32960/34520 32974/34535 +f 32987/34548 32974/34535 32945/34503 +f 32971/34531 32960/34520 32988/34549 +f 32961/34521 32968/34528 32983/34544 +f 20736/34550 20710/34532 32961/34521 +f 32962/34522 32989/34551 32975/34536 +f 32990/34552 32947/34505 32975/34536 +f 32970/34530 32948/34506 32976/34537 +f 32976/34537 32947/34505 32990/34552 +f 32962/34522 32977/34538 32991/34553 +f 32977/34538 32949/34507 32992/34554 +f 32981/34542 32953/34511 32978/34539 +f 32978/34539 32963/34523 32993/34555 +f 32963/34523 32955/34513 32994/34556 +f 32995/34557 32965/34525 32964/34524 +f 32995/34557 32964/34524 32979/34540 +f 32979/34540 32939/34495 32996/34558 +f 32965/34525 32995/34557 32980/34541 +f 32997/34559 32966/34526 32980/34541 +f 32966/34526 32998/34560 32969/34529 +f 32999/34561 32967/34527 32981/34542 +f 32967/34527 33000/34562 32982/34543 +f 32996/34558 32939/34495 32982/34543 +f 32984/34545 32983/34544 32954/34512 +f 32969/34529 33001/34563 32984/34545 +f 32976/34537 33002/34564 32955/34513 +f 20434/34565 20460/34515 32971/34531 +f 32985/34546 20654/34516 20593/34566 +f 32986/34547 32973/34534 32957/34517 +f 33003/34567 32986/34547 32972/34533 +f 20566/34568 32972/34533 32985/34546 +f 32987/34548 32973/34534 33004/34569 +f 32988/34549 32974/34535 33005/34570 +f 33006/34571 32974/34535 32987/34548 +f 20434/34565 32971/34531 32988/34549 +f 32983/34544 20776/34572 32961/34521 +f 32961/34521 20776/34572 20736/34550 +f 32989/34551 33007/34573 32975/34536 +f 32989/34551 32962/34522 32991/34553 +f 33007/34573 32990/34552 32975/34536 +f 32990/34552 33002/34564 32976/34537 +f 32977/34538 33008/34574 32991/34553 +f 32992/34554 32949/34507 33009/34575 +f 32992/34554 33010/34576 32977/34538 +f 32981/34542 32978/34539 33011/34577 +f 32993/34555 32963/34523 32994/34556 +f 33012/34578 32978/34539 32993/34555 +f 32994/34556 32955/34513 33002/34564 +f 32995/34557 32979/34540 33013/34579 +f 32996/34558 33013/34579 32979/34540 +f 32995/34557 33014/34580 32980/34541 +f 33014/34580 32997/34559 32980/34541 +f 32997/34559 33015/34581 32966/34526 +f 32998/34560 33001/34563 32969/34529 +f 32966/34526 33016/34582 32998/34560 +f 32999/34561 33000/34562 32967/34527 +f 32981/34542 33011/34577 32999/34561 +f 33000/34562 33017/34583 32982/34543 +f 32982/34543 33017/34583 32996/34558 +f 20806/34584 32983/34544 32984/34545 +f 33001/34563 20854/34585 32984/34545 +f 32985/34546 20593/34566 20566/34568 +f 32986/34547 33004/34569 32973/34534 +f 33004/34569 32986/34547 33003/34567 +f 32972/34533 33018/34586 33003/34567 +f 20566/34568 33019/34587 32972/34533 +f 33004/34569 33006/34571 32987/34548 +f 33005/34570 32974/34535 33006/34571 +f 33005/34570 33020/34588 32988/34549 +f 20422/34589 20434/34565 32988/34549 +f 20806/34584 20776/34572 32983/34544 +f 33021/34590 33007/34573 32989/34551 +f 32989/34551 32991/34553 33021/34590 +f 33007/34573 33022/34591 32990/34552 +f 32990/34552 33022/34591 33002/34564 +f 33008/34574 33023/34592 32991/34553 +f 33008/34574 32977/34538 33024/34593 +f 33025/34594 32992/34554 33009/34575 +f 32992/34554 33026/34595 33010/34576 +f 33024/34593 32977/34538 33010/34576 +f 33011/34577 32978/34539 33012/34578 +f 32994/34556 33027/34596 32993/34555 +f 33028/34597 33012/34578 32993/34555 +f 33027/34596 32994/34556 33002/34564 +f 33013/34579 33029/34598 32995/34557 +f 33013/34579 32996/34558 33030/34599 +f 32995/34557 33029/34598 33014/34580 +f 33014/34580 33031/34600 32997/34559 +f 32997/34559 33032/34601 33015/34581 +f 33015/34581 33016/34582 32966/34526 +f 33001/34563 32998/34560 33033/34602 +f 32998/34560 33016/34582 33033/34602 +f 33034/34603 33000/34562 32999/34561 +f 32999/34561 33011/34577 33035/34604 +f 33000/34562 33034/34603 33017/34583 +f 33036/34605 32996/34558 33017/34583 +f 20854/34585 20806/34584 32984/34545 +f 33001/34563 33037/34606 20854/34585 +f 33038/34607 33004/34569 33003/34567 +f 33018/34586 33039/34608 33003/34567 +f 33018/34586 32972/34533 33019/34587 +f 20566/34568 20537/34609 33019/34587 +f 33006/34571 33004/34569 33040/34610 +f 33005/34570 33006/34571 33041/34611 +f 33041/34611 33020/34588 33005/34570 +f 20422/34589 32988/34549 33020/34588 +f 33021/34590 33042/34612 33007/34573 +f 32991/34553 33043/34613 33021/34590 +f 33022/34591 33007/34573 33044/34614 +f 33022/34591 33027/34596 33002/34564 +f 33045/34615 33023/34592 33008/34574 +f 32991/34553 33023/34592 33043/34613 +f 33024/34593 33045/34615 33008/34574 +f 33009/34575 33046/34616 33025/34594 +f 33025/34594 33026/34595 32992/34554 +f 33010/34576 33026/34595 33047/34617 +f 33024/34593 33010/34576 33047/34617 +f 33048/34618 33011/34577 33012/34578 +f 33027/34596 33028/34597 32993/34555 +f 33012/34578 33028/34597 33049/34619 +f 33050/34620 33029/34598 33013/34579 +f 33013/34579 33030/34599 33050/34620 +f 33030/34599 32996/34558 33051/34621 +f 33029/34598 33052/34622 33014/34580 +f 33032/34601 32997/34559 33031/34600 +f 33014/34580 33053/34623 33031/34600 +f 33015/34581 33032/34601 33054/34624 +f 33015/34581 33055/34625 33016/34582 +f 33037/34606 33001/34563 33033/34602 +f 33016/34582 33055/34625 33033/34602 +f 33035/34604 33034/34603 32999/34561 +f 33011/34577 33048/34618 33035/34604 +f 33056/34626 33017/34583 33034/34603 +f 33017/34583 33057/34627 33036/34605 +f 32996/34558 33036/34605 33051/34621 +f 33037/34606 20837/34628 20854/34585 +f 33003/34567 33039/34608 33038/34607 +f 33040/34610 33004/34569 33038/34607 +f 33039/34608 33018/34586 20537/34609 +f 33018/34586 33019/34587 20537/34609 +f 33041/34611 33006/34571 33040/34610 +f 33058/34629 33020/34588 33041/34611 +f 20422/34589 33020/34588 20414/34630 +f 33059/34631 33042/34612 33021/34590 +f 33042/34612 33044/34614 33007/34573 +f 33043/34613 33059/34631 33021/34590 +f 33022/34591 33044/34614 33027/34596 +f 33023/34592 33045/34615 33060/34632 +f 33059/34631 33043/34613 33023/34592 +f 33061/34633 33045/34615 33024/34593 +f 33025/34594 33046/34616 33062/34634 +f 33063/34635 33046/34616 33009/34575 +f 33025/34594 33064/34636 33026/34595 +f 33065/34637 33047/34617 33026/34595 +f 33047/34617 33066/34638 33024/34593 +f 33048/34618 33012/34578 33049/34619 +f 33044/34614 33028/34597 33027/34596 +f 33049/34619 33028/34597 33067/34639 +f 33029/34598 33050/34620 33052/34622 +f 33068/34640 33050/34620 33030/34599 +f 33051/34621 33069/34641 33030/34599 +f 33052/34622 33070/34642 33014/34580 +f 33071/34643 33032/34601 33031/34600 +f 33070/34642 33053/34623 33014/34580 +f 33072/34644 33031/34600 33053/34623 +f 33055/34625 33015/34581 33054/34624 +f 33032/34601 33071/34643 33054/34624 +f 33073/34645 33037/34606 33033/34602 +f 33055/34625 33073/34645 33033/34602 +f 33034/34603 33035/34604 33074/34646 +f 33074/34646 33035/34604 33048/34618 +f 33057/34627 33017/34583 33056/34626 +f 33034/34603 33075/34647 33056/34626 +f 33036/34605 33057/34627 33076/34648 +f 33051/34621 33036/34605 33076/34648 +f 20837/34628 33037/34606 20820/34649 +f 33038/34607 33039/34608 33077/34650 +f 33038/34607 33078/34651 33040/34610 +f 33039/34608 20537/34609 33079/34652 +f 33040/34610 33078/34651 33041/34611 +f 33041/34611 33078/34651 33058/34629 +f 20414/34630 33020/34588 33058/34629 +f 33060/34632 33042/34612 33059/34631 +f 33028/34597 33044/34614 33042/34612 +f 33067/34639 33060/34632 33045/34615 +f 33023/34592 33060/34632 33059/34631 +f 33045/34615 33061/34633 33067/34639 +f 33024/34593 33080/34653 33061/34633 +f 33046/34616 33081/34654 33062/34634 +f 33064/34636 33025/34594 33062/34634 +f 33046/34616 33063/34635 33082/34655 +f 33083/34656 33063/34635 33009/34575 +f 33026/34595 33064/34636 33065/34637 +f 33084/34657 33047/34617 33065/34637 +f 33047/34617 33084/34657 33066/34638 +f 33066/34638 33080/34653 33024/34593 +f 33085/34658 33048/34618 33049/34619 +f 33042/34612 33067/34639 33028/34597 +f 33061/34633 33049/34619 33067/34639 +f 33068/34640 33052/34622 33050/34620 +f 33068/34640 33030/34599 33069/34641 +f 33051/34621 33086/34659 33069/34641 +f 33087/34660 33070/34642 33052/34622 +f 33071/34643 33031/34600 33088/34661 +f 33053/34623 33070/34642 33089/34662 +f 33031/34600 33072/34644 33088/34661 +f 33053/34623 33090/34663 33072/34644 +f 33055/34625 33054/34624 33073/34645 +f 33071/34643 20879/34664 33054/34624 +f 20820/34649 33037/34606 33073/34645 +f 33075/34647 33034/34603 33074/34646 +f 33091/34665 33074/34646 33048/34618 +f 33057/34627 33056/34626 33075/34647 +f 33076/34648 33057/34627 33092/34666 +f 33093/34667 33051/34621 33076/34648 +f 33039/34608 20494/34668 33077/34650 +f 33077/34650 33094/34669 33038/34607 +f 33078/34651 33038/34607 33094/34669 +f 33079/34652 20537/34609 20509/34670 +f 33079/34652 20494/34668 33039/34608 +f 33078/34651 33095/34671 33058/34629 +f 20446/34672 20414/34630 33058/34629 +f 33060/34632 33067/34639 33042/34612 +f 33061/34633 33080/34653 33085/34658 +f 33081/34654 33046/34616 33082/34655 +f 33062/34634 33081/34654 33064/34636 +f 33082/34655 33063/34635 33096/34673 +f 33063/34635 33083/34656 33097/34674 +f 33098/34675 33065/34637 33064/34636 +f 33065/34637 33099/34676 33084/34657 +f 33084/34657 33100/34677 33066/34638 +f 33066/34638 33100/34677 33080/34653 +f 33049/34619 33061/34633 33085/34658 +f 33085/34658 33091/34665 33048/34618 +f 33087/34660 33052/34622 33068/34640 +f 33101/34678 33068/34640 33069/34641 +f 33086/34659 33102/34679 33069/34641 +f 33086/34659 33051/34621 33093/34667 +f 33089/34662 33070/34642 33087/34660 +f 33088/34661 33103/34680 33071/34643 +f 33053/34623 33089/34662 33104/34681 +f 33105/34682 33088/34661 33072/34644 +f 33106/34683 33090/34663 33053/34623 +f 33072/34644 33090/34663 33105/34682 +f 33073/34645 33054/34624 20879/34664 +f 33071/34643 20901/34684 20879/34664 +f 33073/34645 20852/34685 20820/34649 +f 33074/34646 33107/34686 33075/34647 +f 33091/34665 33107/34686 33074/34646 +f 33057/34627 33075/34647 33108/34687 +f 33108/34687 33092/34666 33057/34627 +f 33076/34648 33092/34666 33109/34688 +f 33093/34667 33076/34648 33110/34689 +f 20494/34668 20475/34690 33077/34650 +f 20475/34690 33094/34669 33077/34650 +f 33094/34669 33095/34671 33078/34651 +f 20494/34668 33079/34652 20509/34670 +f 33058/34629 33095/34671 20446/34672 +f 33080/34653 33111/34691 33085/34658 +f 33081/34654 33082/34655 33112/34692 +f 33081/34654 33098/34675 33064/34636 +f 33112/34692 33082/34655 33096/34673 +f 33096/34673 33063/34635 33113/34693 +f 33097/34674 33083/34656 33114/34694 +f 33063/34635 33097/34674 33115/34695 +f 33099/34676 33065/34637 33098/34675 +f 33116/34696 33084/34657 33099/34676 +f 33116/34696 33100/34677 33084/34657 +f 33080/34653 33100/34677 33111/34691 +f 33117/34697 33091/34665 33085/34658 +f 33087/34660 33068/34640 33118/34698 +f 33101/34678 33118/34698 33068/34640 +f 33101/34678 33069/34641 33102/34679 +f 33102/34679 33086/34659 33119/34699 +f 33086/34659 33093/34667 33119/34699 +f 33087/34660 33118/34698 33089/34662 +f 33088/34661 33120/34700 33103/34680 +f 33103/34680 20901/34684 33071/34643 +f 33089/34662 33118/34698 33104/34681 +f 33053/34623 33104/34681 33106/34683 +f 33120/34700 33088/34661 33105/34682 +f 33090/34663 33106/34683 33121/34701 +f 33090/34663 33121/34701 33105/34682 +f 20879/34664 20852/34685 33073/34645 +f 33107/34686 33108/34687 33075/34647 +f 33122/34702 33107/34686 33091/34665 +f 33108/34687 33123/34703 33092/34666 +f 33076/34648 33109/34688 33110/34689 +f 33124/34704 33109/34688 33092/34666 +f 33125/34705 33093/34667 33110/34689 +f 20475/34690 33095/34671 33094/34669 +f 20446/34672 33095/34671 20475/34690 +f 33117/34697 33085/34658 33111/34691 +f 33112/34692 33098/34675 33081/34654 +f 33126/34706 33112/34692 33096/34673 +f 33127/34707 33096/34673 33113/34693 +f 33113/34693 33063/34635 33115/34695 +f 33114/34694 33115/34695 33097/34674 +f 33099/34676 33098/34675 33112/34692 +f 33128/34708 33100/34677 33116/34696 +f 33100/34677 33128/34708 33111/34691 +f 33129/34709 33091/34665 33117/34697 +f 33118/34698 33101/34678 33130/34710 +f 33130/34710 33101/34678 33102/34679 +f 33130/34710 33102/34679 33119/34699 +f 33093/34667 33131/34711 33119/34699 +f 33120/34700 20950/34712 33103/34680 +f 20901/34684 33103/34680 33132/34713 +f 33104/34681 33118/34698 33130/34710 +f 33133/34714 33106/34683 33104/34681 +f 33134/34715 33120/34700 33105/34682 +f 33121/34701 33106/34683 33135/34716 +f 33105/34682 33121/34701 33136/34717 +f 33108/34687 33107/34686 33137/34718 +f 33122/34702 33137/34718 33107/34686 +f 33129/34709 33122/34702 33091/34665 +f 33123/34703 33108/34687 33138/34719 +f 33124/34704 33092/34666 33123/34703 +f 33109/34688 33139/34720 33110/34689 +f 33109/34688 33124/34704 33140/34721 +f 33125/34705 33131/34711 33093/34667 +f 33110/34689 33141/34722 33125/34705 +f 33126/34706 33096/34673 33127/34707 +f 33127/34707 33113/34693 33142/34723 +f 33115/34695 33143/34724 33113/34693 +f 33143/34724 33115/34695 33114/34694 +f 33144/34725 33130/34710 33119/34699 +f 33119/34699 33131/34711 33145/34726 +f 20950/34712 33132/34713 33103/34680 +f 20971/34727 20950/34712 33120/34700 +f 20901/34684 33132/34713 20915/34728 +f 33104/34681 33130/34710 33146/34729 +f 33133/34714 33104/34681 33146/34729 +f 33133/34714 33135/34716 33106/34683 +f 20971/34727 33120/34700 33134/34715 +f 33136/34717 33134/34715 33105/34682 +f 33121/34701 33135/34716 33147/34730 +f 33121/34701 33148/34731 33136/34717 +f 33108/34687 33137/34718 33138/34719 +f 33137/34718 33122/34702 33149/34732 +f 33122/34702 33129/34709 33150/34733 +f 33138/34719 33151/34734 33123/34703 +f 33123/34703 33152/34735 33124/34704 +f 33110/34689 33139/34720 33141/34722 +f 33140/34721 33139/34720 33109/34688 +f 33124/34704 33152/34735 33140/34721 +f 33131/34711 33125/34705 33141/34722 +f 33142/34723 33113/34693 33153/34736 +f 33153/34736 33113/34693 33143/34724 +f 33144/34725 33119/34699 33145/34726 +f 33146/34729 33130/34710 33144/34725 +f 33154/34737 33145/34726 33131/34711 +f 20924/34738 33132/34713 20950/34712 +f 20924/34738 20915/34728 33132/34713 +f 33133/34714 33146/34729 33155/34739 +f 33147/34730 33135/34716 33133/34714 +f 33134/34715 20981/34740 20971/34727 +f 33134/34715 33136/34717 33148/34731 +f 33147/34730 33156/34741 33121/34701 +f 33148/34731 33121/34701 33156/34741 +f 33137/34718 33151/34734 33138/34719 +f 33122/34702 33150/34733 33149/34732 +f 33137/34718 33149/34732 33151/34734 +f 33150/34733 33129/34709 33157/34742 +f 33123/34703 33151/34734 33152/34735 +f 33152/34735 33158/34743 33140/34721 +f 33154/34737 33131/34711 33141/34722 +f 33145/34726 33154/34737 33144/34725 +f 33159/34744 33146/34729 33144/34725 +f 33155/34739 33146/34729 33159/34744 +f 33133/34714 33155/34739 33147/34730 +f 33134/34715 33160/34745 20981/34740 +f 33148/34731 33160/34745 33134/34715 +f 33161/34746 33156/34741 33147/34730 +f 33156/34741 33161/34746 33148/34731 +f 33162/34747 33151/34734 33149/34732 +f 33151/34734 33163/34748 33152/34735 +f 33152/34735 33163/34748 33158/34743 +f 33141/34722 33164/34749 33154/34737 +f 33144/34725 33154/34737 33159/34744 +f 33155/34739 33159/34744 33165/34750 +f 33147/34730 33155/34739 33166/34751 +f 33160/34745 21012/34752 20981/34740 +f 33161/34746 33160/34745 33148/34731 +f 33147/34730 33167/34753 33161/34746 +f 33162/34747 33163/34748 33151/34734 +f 33163/34748 33168/34754 33158/34743 +f 33169/34755 33154/34737 33164/34749 +f 33154/34737 33170/34756 33159/34744 +f 33170/34756 33165/34750 33159/34744 +f 33165/34750 33166/34751 33155/34739 +f 33171/34757 33147/34730 33166/34751 +f 33160/34745 33172/34758 21012/34752 +f 33160/34745 33161/34746 33172/34758 +f 33171/34757 33167/34753 33147/34730 +f 33161/34746 33167/34753 33173/34759 +f 33168/34754 33163/34748 33162/34747 +f 33170/34756 33154/34737 33169/34755 +f 33174/34760 33169/34755 33164/34749 +f 33165/34750 33170/34756 33175/34761 +f 33166/34751 33165/34750 33175/34761 +f 33176/34762 33171/34757 33166/34751 +f 21012/34752 33172/34758 33177/34763 +f 33161/34746 33178/34764 33172/34758 +f 33179/34765 33167/34753 33171/34757 +f 33173/34759 33178/34764 33161/34746 +f 33180/34766 33173/34759 33167/34753 +f 33169/34755 33181/34767 33170/34756 +f 33181/34767 33175/34761 33170/34756 +f 33166/34751 33175/34761 33176/34762 +f 33171/34757 33176/34762 33179/34765 +f 21012/34752 33177/34763 20975/34768 +f 33178/34764 33177/34763 33172/34758 +f 33180/34766 33167/34753 33179/34765 +f 33178/34764 33173/34759 33182/34769 +f 33182/34769 33173/34759 33180/34766 +f 33175/34761 33181/34767 33183/34770 +f 33183/34770 33176/34762 33175/34761 +f 33179/34765 33176/34762 33184/34771 +f 33177/34763 33185/34772 20975/34768 +f 33178/34764 33185/34772 33177/34763 +f 33180/34766 33179/34765 33184/34771 +f 33182/34769 21114/34773 33178/34764 +f 33180/34766 21135/34774 33182/34769 +f 33183/34770 33184/34771 33176/34762 +f 20989/34775 20975/34768 33185/34772 +f 33185/34772 33178/34764 21101/34776 +f 21135/34774 33180/34766 33184/34771 +f 21135/34774 21114/34773 33182/34769 +f 21101/34776 33178/34764 21114/34773 +f 33183/34770 21135/34774 33184/34771 +f 33186/34777 20989/34775 33185/34772 +f 33185/34772 21101/34776 33186/34777 +f 20989/34775 33186/34777 21000/34778 +f 21101/34776 21057/34779 33186/34777 +f 21024/34780 21000/34778 33186/34777 +f 33186/34777 21057/34779 21024/34780 +f 33187/34781 33188/34782 33189/34783 +f 33190/34784 33188/34782 33187/34781 +f 21340/34785 33189/34783 33188/34782 +f 33189/34783 33191/34786 33187/34781 +f 33190/34784 33192/34787 33188/34782 +f 33193/34788 33190/34784 33187/34781 +f 21350/34789 21340/34785 33188/34782 +f 33189/34783 21340/34785 21324/34790 +f 33187/34781 33191/34786 33193/34788 +f 33191/34786 33189/34783 33194/34791 +f 33192/34787 33195/34792 33188/34782 +f 33195/34792 21350/34789 33188/34782 +f 33196/34793 33189/34783 21324/34790 +f 21340/34785 33197/34794 21324/34790 +f 33191/34786 33198/34795 33193/34788 +f 33194/34791 33189/34783 33196/34793 +f 33194/34791 33199/34796 33191/34786 +f 33200/34797 33195/34792 33192/34787 +f 33195/34792 21349/34798 21350/34789 +f 21324/34790 33201/34799 33196/34793 +f 33197/34794 21340/34785 33202/34800 +f 21324/34790 33197/34794 21315/34801 +f 33199/34796 33198/34795 33191/34786 +f 33194/34791 33196/34793 33203/34802 +f 33194/34791 21415/34803 33199/34796 +f 33195/34792 33200/34797 21349/34798 +f 33203/34802 33196/34793 33201/34799 +f 33204/34804 33201/34799 21324/34790 +f 21340/34785 21321/34805 33202/34800 +f 21315/34801 33197/34794 33202/34800 +f 33203/34802 21415/34803 33194/34791 +f 33199/34796 21415/34803 21423/34806 +f 33200/34797 32166/34807 21349/34798 +f 33203/34802 33201/34799 33205/34808 +f 33204/34804 33205/34808 33201/34799 +f 21324/34790 33206/34809 33204/34804 +f 21321/34805 21315/34801 33202/34800 +f 33205/34808 21415/34803 33203/34802 +f 21349/34798 32166/34807 33207/34810 +f 21415/34803 33205/34808 33204/34804 +f 33208/34811 33206/34809 21324/34790 +f 21415/34803 33204/34804 33206/34809 +f 21349/34798 33207/34810 32763/34812 +f 33208/34811 21392/34813 33206/34809 +f 21342/34814 33208/34811 21324/34790 +f 21392/34813 21415/34803 33206/34809 +f 21392/34813 33208/34811 21342/34814 +f 32162/34815 33209/34816 33207/34817 +f 33209/34816 32162/34815 33210/34818 +f 32763/34819 33207/34817 33209/34816 +f 33207/34817 32166/34820 32162/34815 +f 33210/34818 32162/34815 33211/34821 +f 33209/34816 33210/34818 32763/34819 +f 33211/34821 33212/34822 33210/34818 +f 33210/34818 33213/34823 32763/34819 +f 33210/34818 33212/34822 33213/34823 +f 33213/34823 33214/34824 32763/34819 +f 33215/34825 33213/34823 33212/34822 +f 32763/34819 33214/34824 32937/34826 +f 33213/34823 33215/34825 33216/34827 +f 32937/34826 32758/34828 32763/34819 +f 33217/34829 33218/34830 33219/34831 +f 33218/34830 33217/34829 19178/34832 +f 33219/34831 33218/34830 33220/34833 +f 33221/34834 33217/34829 33219/34831 +f 19178/34832 33222/34835 33218/34830 +f 19178/34832 33217/34829 19253/34836 +f 33218/34830 33222/34835 33220/34833 +f 33219/34831 33220/34833 33223/34837 +f 33224/34838 33217/34829 33221/34834 +f 33225/34839 33221/34834 33219/34831 +f 19148/34840 33222/34835 19178/34832 +f 33217/34829 19359/34841 19253/34836 +f 33223/34837 33220/34833 33222/34835 +f 33223/34837 33226/34842 33219/34831 +f 33224/34838 19359/34841 33217/34829 +f 19509/34843 33224/34838 33221/34834 +f 33225/34839 33227/34844 33221/34834 +f 33228/34845 33225/34839 33219/34831 +f 33229/34846 33222/34835 19148/34840 +f 33222/34835 33230/34847 33223/34837 +f 33223/34837 33231/34848 33226/34842 +f 33226/34842 33228/34845 33219/34831 +f 33232/34849 19359/34841 33224/34838 +f 33233/34850 33224/34838 19509/34843 +f 19573/34851 19509/34843 33221/34834 +f 33225/34839 19723/34852 33227/34844 +f 33221/34834 33227/34844 19573/34851 +f 19723/34852 33225/34839 33228/34845 +f 33230/34847 33222/34835 33229/34846 +f 19148/34840 19217/34853 33229/34846 +f 33231/34848 33223/34837 33230/34847 +f 33231/34848 33234/34854 33226/34842 +f 33228/34845 33226/34842 19831/34855 +f 19359/34841 33232/34849 19435/34856 +f 33224/34838 33233/34850 33232/34849 +f 19509/34843 33232/34849 33233/34850 +f 33227/34844 19723/34852 33235/34857 +f 33235/34857 19573/34851 33227/34844 +f 33228/34845 19749/34858 19723/34852 +f 19329/34859 33230/34847 33229/34846 +f 33229/34846 19217/34853 19329/34859 +f 33231/34848 33230/34847 33236/34860 +f 33234/34854 33231/34848 33237/34861 +f 33226/34842 33234/34854 33238/34862 +f 19749/34858 33228/34845 19831/34855 +f 33226/34842 19906/34863 19831/34855 +f 19435/34856 33232/34849 19509/34843 +f 19723/34852 19637/34864 33235/34857 +f 19637/34864 19573/34851 33235/34857 +f 19329/34859 33239/34865 33230/34847 +f 33236/34860 33230/34847 33240/34866 +f 33241/34867 33231/34848 33236/34860 +f 33242/34868 33234/34854 33237/34861 +f 33243/34869 33237/34861 33231/34848 +f 33234/34854 33244/34870 33238/34862 +f 33226/34842 33238/34862 33245/34871 +f 33245/34871 19906/34863 33226/34842 +f 33239/34865 19329/34859 33246/34872 +f 33230/34847 33239/34865 33240/34866 +f 33247/34873 33236/34860 33240/34866 +f 33243/34869 33231/34848 33241/34867 +f 33236/34860 28025/34874 33241/34867 +f 33237/34861 33248/34875 33242/34868 +f 33234/34854 33242/34868 33244/34870 +f 33249/34876 33237/34861 33243/34869 +f 33244/34870 33250/34877 33238/34862 +f 33238/34862 33251/34878 33245/34871 +f 19906/34863 33245/34871 33252/34879 +f 33239/34865 33246/34872 30829/34880 +f 19329/34859 19438/34881 33246/34872 +f 30830/34882 33240/34866 33239/34865 +f 33253/34883 33236/34860 33247/34873 +f 33240/34866 28078/34884 33247/34873 +f 33249/34876 33243/34869 33241/34867 +f 28025/34874 33254/34885 33241/34867 +f 33236/34860 33253/34883 28025/34874 +f 33255/34886 33248/34875 33237/34861 +f 33248/34875 33244/34870 33242/34868 +f 33249/34876 33255/34886 33237/34861 +f 33244/34870 33256/34887 33250/34877 +f 33238/34862 33250/34877 33257/34888 +f 33238/34862 33257/34888 33251/34878 +f 33258/34889 33245/34871 33251/34878 +f 33252/34879 33259/34890 19906/34863 +f 33252/34879 33245/34871 33258/34889 +f 30829/34880 33246/34872 19511/34891 +f 33239/34865 30829/34880 30844/34892 +f 19511/34891 33246/34872 19438/34881 +f 30844/34892 30830/34882 33239/34865 +f 33240/34866 30830/34882 28078/34884 +f 28063/34893 33253/34883 33247/34873 +f 33247/34873 28078/34884 28063/34893 +f 33254/34885 33249/34876 33241/34867 +f 27981/34894 33254/34885 28025/34874 +f 33253/34883 28045/34895 28025/34874 +f 28002/34896 33248/34875 33255/34886 +f 33244/34870 33248/34875 33260/34897 +f 33255/34886 33249/34876 27978/34898 +f 33256/34887 33244/34870 33260/34897 +f 33256/34887 33257/34888 33250/34877 +f 33251/34878 33257/34888 33256/34887 +f 33258/34889 33251/34878 33261/34899 +f 33259/34890 33252/34879 33262/34900 +f 19906/34863 33259/34890 19908/34901 +f 28044/34902 33252/34879 33258/34889 +f 33253/34883 28063/34893 28045/34895 +f 27980/34903 33249/34876 33254/34885 +f 33254/34885 27981/34894 27980/34903 +f 33255/34886 27953/34904 28002/34896 +f 33260/34897 33248/34875 28002/34896 +f 33255/34886 27978/34898 27953/34904 +f 27980/34903 27978/34898 33249/34876 +f 28001/34905 33256/34887 33260/34897 +f 33256/34887 33263/34906 33251/34878 +f 33261/34899 33251/34878 33263/34906 +f 33261/34899 33264/34907 33258/34889 +f 33265/34908 33259/34890 33262/34900 +f 33252/34879 33266/34909 33262/34900 +f 19885/34910 19908/34901 33259/34890 +f 33252/34879 28044/34902 33266/34909 +f 33264/34907 28044/34902 33258/34889 +f 33260/34897 28002/34896 27977/34911 +f 33263/34906 33256/34887 28001/34905 +f 28001/34905 33260/34897 27977/34911 +f 33261/34899 33263/34906 33267/34912 +f 33264/34907 33261/34899 33267/34912 +f 33268/34913 33259/34890 33265/34908 +f 33265/34908 33262/34900 33269/34914 +f 33262/34900 33266/34909 28042/34915 +f 19885/34910 33259/34890 33268/34913 +f 33266/34909 28044/34902 28042/34915 +f 28000/34916 28044/34902 33264/34907 +f 28001/34905 28003/34917 33263/34906 +f 33267/34912 33263/34906 33270/34918 +f 33264/34907 33267/34912 28043/34919 +f 33268/34913 33265/34908 33269/34914 +f 33269/34914 33262/34900 33271/34920 +f 28042/34915 33271/34920 33262/34900 +f 19966/34921 19885/34910 33268/34913 +f 28000/34916 33264/34907 28043/34919 +f 33263/34906 28003/34917 33270/34918 +f 28023/34922 33267/34912 33270/34918 +f 28043/34919 33267/34912 28023/34922 +f 33269/34914 28019/34923 33268/34913 +f 33271/34920 28020/34924 33269/34914 +f 33271/34920 28042/34915 28020/34924 +f 33268/34913 20004/34925 19966/34921 +f 28003/34917 27997/34926 33270/34918 +f 28023/34922 33270/34918 27997/34926 +f 33268/34913 28019/34923 20004/34925 +f 28020/34924 28019/34923 33269/34914 +f 33272/34927 33273/34928 33274/34929 +f 33275/34930 33273/34928 33272/34927 +f 33274/34929 33273/34928 33276/34931 +f 33274/34929 33277/34932 33272/34927 +f 33276/34931 33273/34928 33275/34930 +f 33272/34927 2921/34933 33275/34930 +f 33278/34934 33274/34929 33276/34931 +f 33279/34935 33272/34927 33277/34932 +f 33277/34932 33274/34929 33280/34936 +f 33281/34937 33276/34931 33275/34930 +f 2921/34933 33282/34938 33275/34930 +f 2921/34933 33272/34927 3043/34939 +f 33280/34936 33274/34929 33278/34934 +f 33276/34931 33283/34940 33278/34934 +f 33272/34927 33279/34935 3043/34939 +f 33279/34935 33277/34932 33284/34941 +f 33277/34932 33280/34936 33284/34941 +f 33281/34937 33283/34940 33276/34931 +f 33275/34930 33285/34942 33281/34937 +f 33282/34938 2921/34933 2720/34943 +f 33275/34930 33282/34938 33286/34944 +f 33280/34936 33278/34934 33287/34945 +f 33288/34946 33278/34934 33283/34940 +f 3043/34939 33279/34935 33289/34947 +f 33289/34947 33279/34935 33284/34941 +f 33280/34936 33290/34948 33284/34941 +f 33291/34949 33283/34940 33281/34937 +f 33275/34930 33292/34950 33285/34942 +f 33293/34951 33281/34937 33285/34942 +f 33286/34944 33282/34938 2720/34943 +f 33275/34930 33286/34944 33292/34950 +f 33287/34945 33294/34952 33280/34936 +f 33278/34934 33295/34953 33287/34945 +f 33295/34953 33278/34934 33288/34946 +f 33288/34946 33283/34940 33296/34954 +f 3043/34939 33289/34947 3094/34955 +f 33284/34941 33290/34948 33289/34947 +f 33280/34936 33297/34956 33290/34948 +f 33283/34940 33291/34949 33296/34954 +f 33293/34951 33291/34949 33281/34937 +f 33285/34942 33292/34950 33298/34957 +f 33298/34957 33293/34951 33285/34942 +f 33286/34944 2720/34943 2589/34958 +f 33299/34959 33292/34950 33286/34944 +f 33287/34945 33300/34960 33294/34952 +f 33280/34936 33294/34952 33301/34961 +f 33302/34962 33287/34945 33295/34953 +f 33295/34953 33288/34946 33303/34963 +f 33296/34954 33303/34963 33288/34946 +f 33304/34964 3094/34955 33289/34947 +f 33289/34947 33290/34948 33305/34965 +f 33280/34936 33301/34961 33297/34956 +f 33290/34948 33297/34956 33305/34965 +f 33291/34949 33306/34966 33296/34954 +f 33291/34949 33293/34951 33307/34967 +f 33299/34959 33298/34957 33292/34950 +f 33308/34968 33293/34951 33298/34957 +f 33286/34944 2589/34958 33309/34969 +f 33310/34970 33299/34959 33286/34944 +f 33300/34960 33287/34945 33302/34962 +f 30967/34971 33294/34952 33300/34960 +f 33294/34952 30967/34971 33301/34961 +f 33311/34972 33302/34962 33295/34953 +f 33295/34953 33303/34963 33311/34972 +f 33306/34966 33303/34963 33296/34954 +f 3042/34973 3094/34955 33304/34964 +f 33289/34947 33312/34974 33304/34964 +f 33305/34965 33312/34974 33289/34947 +f 33297/34956 33301/34961 33313/34975 +f 33305/34965 33297/34956 33314/34976 +f 33306/34966 33291/34949 33307/34967 +f 33315/34977 33307/34967 33293/34951 +f 33308/34968 33298/34957 33299/34959 +f 33293/34951 33308/34968 33315/34977 +f 33309/34969 2589/34958 33316/34978 +f 33317/34979 33286/34944 33309/34969 +f 33310/34970 33318/34980 33299/34959 +f 33310/34970 33286/34944 33317/34979 +f 33302/34962 33319/34981 33300/34960 +f 33300/34960 30959/34982 30967/34971 +f 30967/34971 30958/34983 33301/34961 +f 33311/34972 33319/34981 33302/34962 +f 33320/34984 33311/34972 33303/34963 +f 33303/34963 33306/34966 33320/34984 +f 33304/34964 3093/34985 3042/34973 +f 33304/34964 33312/34974 3093/34985 +f 33312/34974 33305/34965 33314/34976 +f 33301/34961 30958/34983 33313/34975 +f 33313/34975 20656/34986 33297/34956 +f 33297/34956 20656/34986 33314/34976 +f 33307/34967 33321/34987 33306/34966 +f 33307/34967 33315/34977 33322/34988 +f 33323/34989 33308/34968 33299/34959 +f 33308/34968 33324/34990 33315/34977 +f 2589/34958 2663/34991 33316/34978 +f 33317/34979 33309/34969 33316/34978 +f 33317/34979 33318/34980 33310/34970 +f 33318/34980 33325/34992 33299/34959 +f 30959/34982 33300/34960 33319/34981 +f 33311/34972 33326/34993 33319/34981 +f 33311/34972 33320/34984 33327/34994 +f 33306/34966 33327/34994 33320/34984 +f 3093/34985 33312/34974 33328/34995 +f 33314/34976 33328/34995 33312/34974 +f 20624/34996 33313/34975 30958/34983 +f 33313/34975 20624/34996 20656/34986 +f 33314/34976 20656/34986 33329/34997 +f 33330/34998 33321/34987 33307/34967 +f 33327/34994 33306/34966 33321/34987 +f 33322/34988 33315/34977 33324/34990 +f 33322/34988 33331/34999 33307/34967 +f 33324/34990 33308/34968 33323/34989 +f 33323/34989 33299/34959 33325/34992 +f 33332/35000 33316/34978 2663/34991 +f 33332/35000 33317/34979 33316/34978 +f 33318/34980 33317/34979 33333/35001 +f 33334/35002 33325/34992 33318/34980 +f 30969/35003 30959/34982 33319/34981 +f 33335/35004 33319/34981 33326/34993 +f 33327/34994 33326/34993 33311/34972 +f 3132/35005 3093/34985 33328/34995 +f 33329/34997 33328/34995 33314/34976 +f 33329/34997 20656/34986 20658/35006 +f 33331/34999 33330/34998 33307/34967 +f 33321/34987 33330/34998 33336/35007 +f 33321/34987 33336/35007 33327/34994 +f 33322/34988 33324/34990 33323/34989 +f 33337/35008 33331/34999 33322/34988 +f 33323/34989 33325/34992 33334/35002 +f 2670/35009 33332/35000 2663/34991 +f 33332/35000 33338/35010 33317/34979 +f 33318/34980 33333/35001 33339/35011 +f 33333/35001 33317/34979 33338/35010 +f 33318/34980 33339/35011 33334/35002 +f 30969/35003 33319/34981 33335/35004 +f 33336/35007 33335/35004 33326/34993 +f 33336/35007 33326/34993 33327/34994 +f 33328/34995 33340/35012 3132/35005 +f 33329/34997 33340/35012 33328/34995 +f 33341/35013 33329/34997 20658/35006 +f 33330/34998 33331/34999 33342/35014 +f 33330/34998 33343/35015 33336/35007 +f 33323/34989 33337/35008 33322/34988 +f 33337/35008 33344/35016 33331/34999 +f 33323/34989 33334/35002 33337/35008 +f 33332/35000 2670/35009 33345/35017 +f 33332/35000 33346/35018 33338/35010 +f 33333/35001 33347/35019 33339/35011 +f 33347/35019 33333/35001 33338/35010 +f 33348/35020 33334/35002 33339/35011 +f 33335/35004 33349/35021 30969/35003 +f 33350/35022 33335/35004 33336/35007 +f 33340/35012 3201/35023 3132/35005 +f 33341/35013 33340/35012 33329/34997 +f 3277/35024 33341/35013 20658/35006 +f 33331/34999 33351/35025 33342/35014 +f 33352/35026 33330/34998 33342/35014 +f 33343/35015 33330/34998 33352/35026 +f 33343/35015 33350/35022 33336/35007 +f 33344/35016 33337/35008 33334/35002 +f 33353/35027 33331/34999 33344/35016 +f 2604/35028 33345/35017 2670/35009 +f 33345/35017 33354/35029 33332/35000 +f 33332/35000 33354/35029 33346/35018 +f 33346/35018 33355/35030 33338/35010 +f 33356/35031 33339/35011 33347/35019 +f 33347/35019 33338/35010 33357/35032 +f 33339/35011 33356/35031 33348/35020 +f 33348/35020 33344/35016 33334/35002 +f 33335/35004 33350/35022 33349/35021 +f 30969/35003 33349/35021 30987/35033 +f 3201/35023 33340/35012 33341/35013 +f 3201/35023 33341/35013 3277/35024 +f 33351/35025 33331/34999 33353/35027 +f 33351/35025 31016/35034 33342/35014 +f 33352/35026 33342/35014 31009/35035 +f 33352/35026 31002/35036 33343/35015 +f 33350/35022 33343/35015 33349/35021 +f 33348/35020 33353/35027 33344/35016 +f 33345/35017 2604/35028 2602/35037 +f 33345/35017 33358/35038 33354/35029 +f 33359/35039 33346/35018 33354/35029 +f 33346/35018 33359/35039 33355/35030 +f 33338/35010 33355/35030 33357/35032 +f 33347/35019 33360/35040 33356/35031 +f 33357/35032 33361/35041 33347/35019 +f 33362/35042 33348/35020 33356/35031 +f 33349/35021 33363/35043 30987/35033 +f 31036/35044 33351/35025 33353/35027 +f 31016/35034 31009/35035 33342/35014 +f 31036/35044 31016/35034 33351/35025 +f 31009/35035 31002/35036 33352/35026 +f 33363/35043 33343/35015 31002/35036 +f 33363/35043 33349/35021 33343/35015 +f 33348/35020 31042/35045 33353/35027 +f 33364/35046 33345/35017 2602/35037 +f 33364/35046 33358/35038 33345/35017 +f 33358/35038 33359/35039 33354/35029 +f 33365/35047 33355/35030 33359/35039 +f 33361/35041 33357/35032 33355/35030 +f 33360/35040 33347/35019 33361/35041 +f 33360/35040 33362/35042 33356/35031 +f 33348/35020 33362/35042 33366/35048 +f 33363/35043 31002/35036 30987/35033 +f 33353/35027 31042/35045 31036/35044 +f 31042/35045 33348/35020 33366/35048 +f 33364/35046 2602/35037 33367/35049 +f 33364/35046 33368/35050 33358/35038 +f 33369/35051 33359/35039 33358/35038 +f 33365/35047 33361/35041 33355/35030 +f 33370/35052 33365/35047 33359/35039 +f 33371/35053 33360/35040 33361/35041 +f 33362/35042 33360/35040 33371/35053 +f 33366/35048 33362/35042 33371/35053 +f 33366/35048 31044/35054 31042/35045 +f 33367/35049 2602/35037 2530/35055 +f 33372/35056 33364/35046 33367/35049 +f 33368/35050 33364/35046 33372/35056 +f 33368/35050 33369/35051 33358/35038 +f 33370/35052 33359/35039 33369/35051 +f 33365/35047 33373/35057 33361/35041 +f 33365/35047 33370/35052 33373/35057 +f 33371/35053 33361/35041 33374/35058 +f 33366/35048 33371/35053 31044/35054 +f 2530/35055 33372/35056 33367/35049 +f 33375/35059 33368/35050 33372/35056 +f 33368/35050 33376/35060 33369/35051 +f 33377/35061 33370/35052 33369/35051 +f 33361/35041 33373/35057 33374/35058 +f 33370/35052 33378/35062 33373/35057 +f 33374/35058 31066/35063 33371/35053 +f 31044/35054 33371/35053 31055/35064 +f 2603/35065 33372/35056 2530/35055 +f 33368/35050 33375/35059 33376/35060 +f 33375/35059 33372/35056 33379/35066 +f 33376/35060 33377/35061 33369/35051 +f 33380/35067 33370/35052 33377/35061 +f 33381/35068 33374/35058 33373/35057 +f 33378/35062 33370/35052 33380/35067 +f 33382/35069 33373/35057 33378/35062 +f 33383/35070 31066/35063 33374/35058 +f 33371/35053 31066/35063 31055/35064 +f 33372/35056 2603/35065 33379/35066 +f 33375/35059 33384/35071 33376/35060 +f 33379/35066 33385/35072 33375/35059 +f 33384/35071 33377/35061 33376/35060 +f 33380/35067 33377/35061 33386/35073 +f 33373/35057 33382/35069 33381/35068 +f 33381/35068 33383/35070 33374/35058 +f 33387/35074 33378/35062 33380/35067 +f 33382/35069 33378/35062 33388/35075 +f 33383/35070 31065/35076 31066/35063 +f 2603/35065 2601/35077 33379/35066 +f 33384/35071 33375/35059 33385/35072 +f 33379/35066 33389/35078 33385/35072 +f 33390/35079 33377/35061 33384/35071 +f 33386/35073 33387/35074 33380/35067 +f 33377/35061 33391/35080 33386/35073 +f 33381/35068 33382/35069 33388/35075 +f 33383/35070 33381/35068 33388/35075 +f 33378/35062 33387/35074 33388/35075 +f 33383/35070 33392/35081 31065/35076 +f 31895/35082 33379/35066 2601/35077 +f 33393/35083 33384/35071 33385/35072 +f 33385/35072 33389/35078 33394/35084 +f 33379/35066 31895/35082 33389/35078 +f 33390/35079 33384/35071 33393/35083 +f 33391/35080 33377/35061 33390/35079 +f 33395/35085 33387/35074 33386/35073 +f 33386/35073 33391/35080 33396/35086 +f 33388/35075 33392/35081 33383/35070 +f 33387/35074 33392/35081 33388/35075 +f 31061/35087 31065/35076 33392/35081 +f 33385/35072 33394/35084 33393/35083 +f 33389/35078 33397/35088 33394/35084 +f 31895/35082 31879/35089 33389/35078 +f 33393/35083 33398/35090 33390/35079 +f 33399/35091 33391/35080 33390/35079 +f 31061/35087 33387/35074 33395/35085 +f 33386/35073 33396/35086 33395/35085 +f 33391/35080 33399/35091 33396/35086 +f 33392/35081 33387/35074 31061/35087 +f 33393/35083 33394/35084 33400/35092 +f 33389/35078 33401/35093 33397/35088 +f 33397/35088 33402/35094 33394/35084 +f 31879/35089 33401/35093 33389/35078 +f 33398/35090 33399/35091 33390/35079 +f 33403/35095 33398/35090 33393/35083 +f 31068/35096 31061/35087 33395/35085 +f 33395/35085 33396/35086 33404/35097 +f 33396/35086 33399/35091 33404/35097 +f 33400/35092 33405/35098 33393/35083 +f 33394/35084 33402/35094 33400/35092 +f 33397/35088 33401/35093 33406/35099 +f 33407/35100 33402/35094 33397/35088 +f 31902/35101 33401/35093 31879/35089 +f 31087/35102 33399/35091 33398/35090 +f 33403/35095 33393/35083 33405/35098 +f 33403/35095 31087/35102 33398/35090 +f 31068/35096 33395/35085 33404/35097 +f 33404/35097 33399/35091 31073/35103 +f 33400/35092 33408/35104 33405/35098 +f 33402/35094 33408/35104 33400/35092 +f 31902/35101 33406/35099 33401/35093 +f 33406/35099 33407/35100 33397/35088 +f 33407/35100 33409/35105 33402/35094 +f 33399/35091 31087/35102 31073/35103 +f 31086/35106 33403/35095 33405/35098 +f 31087/35102 33403/35095 31086/35106 +f 33404/35097 31073/35103 31068/35096 +f 33405/35098 33408/35104 31086/35106 +f 33402/35094 33410/35107 33408/35104 +f 33406/35099 31902/35101 33411/35108 +f 33412/35109 33407/35100 33406/35099 +f 33410/35107 33402/35094 33409/35105 +f 33412/35109 33409/35105 33407/35100 +f 31086/35106 33408/35104 33410/35107 +f 31902/35101 31920/35110 33411/35108 +f 33406/35099 33411/35108 33413/35111 +f 33413/35111 33412/35109 33406/35099 +f 33409/35105 33414/35112 33410/35107 +f 33412/35109 33414/35112 33409/35105 +f 33410/35107 31091/35113 31086/35106 +f 31920/35110 31945/35114 33411/35108 +f 33413/35111 33411/35108 31945/35114 +f 33415/35115 33412/35109 33413/35111 +f 31957/35116 33410/35107 33414/35112 +f 33415/35115 33414/35112 33412/35109 +f 31091/35113 33410/35107 31957/35116 +f 33416/35117 33413/35111 31945/35114 +f 33413/35111 33416/35117 33415/35115 +f 31957/35116 33414/35112 33415/35115 +f 31945/35114 31957/35116 33416/35117 +f 33415/35115 33416/35117 31957/35116 +f 33417/35118 27648/35119 27650/35120 +f 33417/35118 33418/35121 27648/35119 +f 33417/35118 27650/35120 33419/35122 +f 33420/35123 33418/35121 33417/35118 +f 33421/35124 27648/35119 33418/35121 +f 33419/35122 27650/35120 27633/35125 +f 33419/35122 33420/35123 33417/35118 +f 33420/35123 33421/35124 33418/35121 +f 33421/35124 27628/35126 27648/35119 +f 33422/35127 33419/35122 27633/35125 +f 33420/35123 33419/35122 33423/35128 +f 33423/35128 33421/35124 33420/35123 +f 27628/35126 33421/35124 32265/35129 +f 33419/35122 33422/35127 33424/35130 +f 33422/35127 27633/35125 27632/35131 +f 33425/35132 33423/35128 33419/35122 +f 33423/35128 33426/35133 33421/35124 +f 33421/35124 33426/35133 32265/35129 +f 27628/35126 32265/35129 33427/35134 +f 33422/35127 33428/35135 33424/35130 +f 33425/35132 33419/35122 33424/35130 +f 33422/35127 27632/35131 33429/35136 +f 33425/35132 33426/35133 33423/35128 +f 33426/35133 33430/35137 32265/35129 +f 32270/35138 33427/35134 32265/35129 +f 27628/35126 33427/35134 27609/35139 +f 33429/35136 33428/35135 33422/35127 +f 33431/35140 33424/35130 33428/35135 +f 33425/35132 33424/35130 33431/35140 +f 27632/35131 27666/35141 33429/35136 +f 33426/35133 33425/35132 33432/35142 +f 33430/35137 33433/35143 32265/35129 +f 33434/35144 33430/35137 33426/35133 +f 33435/35145 33427/35134 32270/35138 +f 27609/35139 33427/35134 33435/35145 +f 33429/35136 33436/35146 33428/35135 +f 33431/35140 33428/35135 33437/35147 +f 33425/35132 33431/35140 33432/35142 +f 33429/35136 27666/35141 33438/35148 +f 33434/35144 33426/35133 33432/35142 +f 33433/35143 33430/35137 33439/35149 +f 32265/35129 33433/35143 32272/35150 +f 33430/35137 33434/35144 33440/35151 +f 32270/35138 33441/35152 33435/35145 +f 33435/35145 33441/35152 27609/35139 +f 33428/35135 33436/35146 33442/35153 +f 33438/35148 33436/35146 33429/35136 +f 33431/35140 33437/35147 33432/35142 +f 33437/35147 33428/35135 33443/35154 +f 27684/35155 33438/35148 27666/35141 +f 33432/35142 33440/35151 33434/35144 +f 33439/35149 33430/35137 33440/35151 +f 33439/35149 33444/35156 33433/35143 +f 33433/35143 32281/35157 32272/35150 +f 32270/35138 27577/35158 33441/35152 +f 27572/35159 27609/35139 33441/35152 +f 33445/35160 33442/35153 33436/35146 +f 33446/35161 33428/35135 33442/35153 +f 33436/35146 33438/35148 33445/35160 +f 33437/35147 33440/35151 33432/35142 +f 33443/35154 33428/35135 33446/35161 +f 33443/35154 33447/35162 33437/35147 +f 27684/35155 33448/35163 33438/35148 +f 33439/35149 33440/35151 33449/35164 +f 33450/35165 33444/35156 33439/35149 +f 33444/35156 33451/35166 33433/35143 +f 33452/35167 32281/35157 33433/35143 +f 33441/35152 27577/35158 27572/35159 +f 33442/35153 33445/35160 33453/35168 +f 33453/35168 33446/35161 33442/35153 +f 33438/35148 33454/35169 33445/35160 +f 33449/35164 33440/35151 33437/35147 +f 33446/35161 33455/35170 33443/35154 +f 33447/35162 33449/35164 33437/35147 +f 33447/35162 33443/35154 33455/35170 +f 33456/35171 33448/35163 27684/35155 +f 33438/35148 33448/35163 33454/35169 +f 33439/35149 33449/35164 33457/35172 +f 33450/35165 33458/35173 33444/35156 +f 33457/35172 33450/35165 33439/35149 +f 33451/35166 33444/35156 33459/35174 +f 33460/35175 33433/35143 33451/35166 +f 33433/35143 33460/35175 33452/35167 +f 33445/35160 33461/35176 33453/35168 +f 33455/35170 33446/35161 33453/35168 +f 33462/35177 33445/35160 33454/35169 +f 33455/35170 33449/35164 33447/35162 +f 27684/35155 27674/35178 33456/35171 +f 33448/35163 33456/35171 33463/35179 +f 33463/35179 33454/35169 33448/35163 +f 33455/35170 33457/35172 33449/35164 +f 33459/35174 33444/35156 33458/35173 +f 33458/35173 33450/35165 33464/35180 +f 33457/35172 33465/35181 33450/35165 +f 33451/35166 33459/35174 33466/35182 +f 33466/35182 33460/35175 33451/35166 +f 33460/35175 33467/35183 33452/35167 +f 33462/35177 33461/35176 33445/35160 +f 33468/35184 33453/35168 33461/35176 +f 33457/35172 33455/35170 33453/35168 +f 33462/35177 33454/35169 33463/35179 +f 27674/35178 33469/35185 33456/35171 +f 33470/35186 33463/35179 33456/35171 +f 33459/35174 33458/35173 33471/35187 +f 33465/35181 33464/35180 33450/35165 +f 33458/35173 33464/35180 33471/35187 +f 33465/35181 33457/35172 33453/35168 +f 33459/35174 33471/35187 33466/35182 +f 33466/35182 33472/35188 33460/35175 +f 33467/35183 33460/35175 33473/35189 +f 33474/35190 33461/35176 33462/35177 +f 33461/35176 33474/35190 33468/35184 +f 33453/35168 33468/35184 33465/35181 +f 33475/35191 33462/35177 33463/35179 +f 33469/35185 27674/35178 27659/35192 +f 33469/35185 33470/35186 33456/35171 +f 33463/35179 33470/35186 33476/35193 +f 33477/35194 33464/35180 33465/35181 +f 33464/35180 33466/35182 33471/35187 +f 33472/35188 33466/35182 33464/35180 +f 33473/35189 33460/35175 33472/35188 +f 33478/35195 33467/35183 33473/35189 +f 33474/35190 33462/35177 33475/35191 +f 33474/35190 33477/35194 33468/35184 +f 33477/35194 33465/35181 33468/35184 +f 33475/35191 33463/35179 33476/35193 +f 33479/35196 33469/35185 27659/35192 +f 33470/35186 33469/35185 33479/35196 +f 33470/35186 33480/35197 33476/35193 +f 33464/35180 33477/35194 33481/35198 +f 33482/35199 33472/35188 33464/35180 +f 33472/35188 33478/35195 33473/35189 +f 33474/35190 33475/35191 33483/35200 +f 33477/35194 33474/35190 33483/35200 +f 33476/35193 33484/35201 33475/35191 +f 27659/35192 33485/35202 33479/35196 +f 33479/35196 33480/35197 33470/35186 +f 33476/35193 33480/35197 33486/35203 +f 33481/35198 33477/35194 33487/35204 +f 33464/35180 33481/35198 33488/35205 +f 33472/35188 33482/35199 33478/35195 +f 33488/35205 33482/35199 33464/35180 +f 33483/35200 33475/35191 33484/35201 +f 33489/35206 33477/35194 33483/35200 +f 33490/35207 33484/35201 33476/35193 +f 33485/35202 33491/35208 33479/35196 +f 33485/35202 27659/35192 27619/35209 +f 33492/35210 33480/35197 33479/35196 +f 33490/35207 33476/35193 33486/35203 +f 33486/35203 33480/35197 33492/35210 +f 33477/35194 33489/35206 33487/35204 +f 33481/35198 33487/35204 33488/35205 +f 33488/35205 33493/35211 33482/35199 +f 33484/35201 33489/35206 33483/35200 +f 33494/35212 33484/35201 33490/35207 +f 27619/35209 33491/35208 33485/35202 +f 33491/35208 33492/35210 33479/35196 +f 33490/35207 33486/35203 33495/35213 +f 33486/35203 33492/35210 33495/35213 +f 33489/35206 33484/35201 33487/35204 +f 33496/35214 33488/35205 33487/35204 +f 33497/35215 33493/35211 33488/35205 +f 33494/35212 33490/35207 33498/35216 +f 33484/35201 33494/35212 33487/35204 +f 33499/35217 33491/35208 27619/35209 +f 33492/35210 33491/35208 33500/35218 +f 33495/35213 33501/35219 33490/35207 +f 33500/35218 33495/35213 33492/35210 +f 33496/35214 33502/35220 33488/35205 +f 33496/35214 33487/35204 33494/35212 +f 33502/35220 33497/35215 33488/35205 +f 33490/35207 33501/35219 33498/35216 +f 33502/35220 33494/35212 33498/35216 +f 33503/35221 33491/35208 33499/35217 +f 33500/35218 33491/35208 33503/35221 +f 33504/35222 33501/35219 33495/35213 +f 33505/35223 33495/35213 33500/35218 +f 33494/35212 33502/35220 33496/35214 +f 33497/35215 33502/35220 33506/35224 +f 33507/35225 33498/35216 33501/35219 +f 33498/35216 33506/35224 33502/35220 +f 33503/35221 33499/35217 32813/35226 +f 33508/35227 33500/35218 33503/35221 +f 33501/35219 33504/35222 33509/35228 +f 33509/35228 33504/35222 33495/35213 +f 33505/35223 33509/35228 33495/35213 +f 33508/35227 33505/35223 33500/35218 +f 33510/35229 33497/35215 33506/35224 +f 33506/35224 33498/35216 33507/35225 +f 33507/35225 33501/35219 33509/35228 +f 32813/35226 32800/35230 33503/35221 +f 33503/35221 33511/35231 33508/35227 +f 33509/35228 33505/35223 33512/35232 +f 33505/35223 33508/35227 33513/35233 +f 33506/35224 33514/35234 33510/35229 +f 33509/35228 33506/35224 33507/35225 +f 33515/35235 33503/35221 32800/35230 +f 33511/35231 33516/35236 33508/35227 +f 33503/35221 33515/35235 33511/35231 +f 33512/35232 33505/35223 33517/35237 +f 33514/35234 33509/35228 33512/35232 +f 33513/35233 33508/35227 33516/35236 +f 33517/35237 33505/35223 33513/35233 +f 33506/35224 33509/35228 33514/35234 +f 32800/35230 33518/35238 33515/35235 +f 33516/35236 33511/35231 33515/35235 +f 33513/35233 33516/35236 33519/35239 +f 33517/35237 33513/35233 33520/35240 +f 33521/35241 33518/35238 32800/35230 +f 33518/35238 33516/35236 33515/35235 +f 33520/35240 33513/35233 33519/35239 +f 33522/35242 33519/35239 33516/35236 +f 33518/35238 33521/35241 33523/35243 +f 32800/35230 32790/35244 33521/35241 +f 33516/35236 33518/35238 33522/35242 +f 33519/35239 33524/35245 33520/35240 +f 33525/35246 33519/35239 33522/35242 +f 33523/35243 33521/35241 32783/35247 +f 33518/35238 33523/35243 33522/35242 +f 33521/35241 32790/35244 32783/35247 +f 33526/35248 33524/35245 33519/35239 +f 33527/35249 33520/35240 33524/35245 +f 33525/35246 33526/35248 33519/35239 +f 33528/35250 33525/35246 33522/35242 +f 33528/35250 33523/35243 32783/35247 +f 33523/35243 33528/35250 33522/35242 +f 33524/35245 33526/35248 33527/35249 +f 33529/35251 33526/35248 33525/35246 +f 33525/35246 33528/35250 32783/35247 +f 33527/35249 33526/35248 33530/35252 +f 33530/35252 33526/35248 33529/35251 +f 33529/35251 33525/35246 32781/35253 +f 32777/35254 33525/35246 32783/35247 +f 33529/35251 33531/35255 33530/35252 +f 33532/35256 33529/35251 32781/35253 +f 33525/35246 32777/35254 32781/35253 +f 33531/35255 33529/35251 33532/35256 +f 33533/35257 33532/35256 32781/35253 +f 33531/35255 33532/35256 33534/35258 +f 33534/35258 33532/35256 33533/35257 +f 33533/35257 32781/35253 32768/35259 +f 32759/35260 33531/35255 33534/35258 +f 33534/35258 33533/35257 32761/35261 +f 32765/35262 33533/35257 32768/35259 +f 32761/35261 32759/35260 33534/35258 +f 33533/35257 32765/35262 32761/35261 +f 33535/35263 33536/35264 33537/35265 +f 33536/35264 33535/35263 33538/35266 +f 33536/35264 33539/35267 33537/35265 +f 33540/35268 33535/35263 33537/35265 +f 33541/35269 33538/35266 33535/35263 +f 33538/35266 33542/35270 33536/35264 +f 33539/35267 33543/35271 33537/35265 +f 33536/35264 33544/35272 33539/35267 +f 33540/35268 33541/35269 33535/35263 +f 33545/35273 33540/35268 33537/35265 +f 33538/35266 33541/35269 33546/35274 +f 33542/35270 33538/35266 33547/35275 +f 33548/35276 33536/35264 33542/35270 +f 33543/35271 33539/35267 33549/35277 +f 33543/35271 33545/35273 33537/35265 +f 33550/35278 33539/35267 33544/35272 +f 33544/35272 33536/35264 33548/35276 +f 33551/35279 33541/35269 33540/35268 +f 33540/35268 33545/35273 33552/35280 +f 33546/35274 33547/35275 33538/35266 +f 33546/35274 33541/35269 33553/35281 +f 33542/35270 33547/35275 33554/35282 +f 33542/35270 31674/35283 33548/35276 +f 33549/35277 33539/35267 33550/35278 +f 33549/35277 33555/35284 33543/35271 +f 33543/35271 33555/35284 33545/35273 +f 33544/35272 33556/35285 33550/35278 +f 33548/35276 33556/35285 33544/35272 +f 33540/35268 33557/35286 33551/35279 +f 33553/35281 33541/35269 33551/35279 +f 33558/35287 33552/35280 33545/35273 +f 33552/35280 33559/35288 33540/35268 +f 33546/35274 33554/35282 33547/35275 +f 33553/35281 33560/35289 33546/35274 +f 33542/35270 33554/35282 33561/35290 +f 33548/35276 31674/35283 31714/35291 +f 33542/35270 33562/35292 31674/35283 +f 33550/35278 33563/35293 33549/35277 +f 33555/35284 33549/35277 33564/35294 +f 33564/35294 33545/35273 33555/35284 +f 33556/35285 33563/35293 33550/35278 +f 33548/35276 31714/35291 33556/35285 +f 33565/35295 33551/35279 33557/35286 +f 33559/35288 33557/35286 33540/35268 +f 33551/35279 33566/35296 33553/35281 +f 33558/35287 33192/35297 33552/35280 +f 33545/35273 32166/35298 33558/35287 +f 33559/35288 33552/35280 33567/35299 +f 33554/35282 33546/35274 33560/35289 +f 33568/35300 33560/35289 33553/35281 +f 33561/35290 33554/35282 33569/35301 +f 33561/35290 33562/35292 33542/35270 +f 31620/35302 31674/35283 33562/35292 +f 33563/35293 31721/35303 33549/35277 +f 33564/35294 33549/35277 31721/35303 +f 33545/35273 33564/35294 31701/35304 +f 33556/35285 31714/35291 33563/35293 +f 33570/35305 33565/35295 33557/35286 +f 33551/35279 33565/35295 33566/35296 +f 33557/35286 33559/35288 33571/35306 +f 33553/35281 33566/35296 33568/35300 +f 33192/35297 33558/35287 33200/35307 +f 33192/35297 33190/35308 33552/35280 +f 33200/35307 33558/35287 32166/35298 +f 32166/35298 33545/35273 31638/35309 +f 33552/35280 33572/35310 33567/35299 +f 33559/35288 33567/35299 33571/35306 +f 33569/35301 33554/35282 33560/35289 +f 33560/35289 33568/35300 33573/35311 +f 33569/35301 33574/35312 33561/35290 +f 33574/35312 33562/35292 33561/35290 +f 31620/35302 33562/35292 33575/35313 +f 31714/35291 31721/35303 33563/35293 +f 33564/35294 31721/35303 31701/35304 +f 33545/35273 31701/35304 31638/35309 +f 33570/35305 33576/35314 33565/35295 +f 33570/35305 33557/35286 33571/35306 +f 33566/35296 33565/35295 33577/35315 +f 33566/35296 33578/35316 33568/35300 +f 33190/35308 33572/35310 33552/35280 +f 33567/35299 33572/35310 33579/35317 +f 33567/35299 33570/35305 33571/35306 +f 33580/35318 33569/35301 33560/35289 +f 33581/35319 33560/35289 33573/35311 +f 33568/35300 33582/35320 33573/35311 +f 33569/35301 33580/35318 33574/35312 +f 33575/35313 33562/35292 33574/35312 +f 33575/35313 33583/35321 31620/35302 +f 33576/35314 33570/35305 33584/35322 +f 33565/35295 33576/35314 33577/35315 +f 33578/35316 33566/35296 33577/35315 +f 33568/35300 33578/35316 33585/35323 +f 33190/35308 33586/35324 33572/35310 +f 33579/35317 33572/35310 33586/35324 +f 33567/35299 33579/35317 33587/35325 +f 33570/35305 33567/35299 33588/35326 +f 33589/35327 33580/35318 33560/35289 +f 33590/35328 33581/35319 33573/35311 +f 33560/35289 33581/35319 33589/35327 +f 33573/35311 33582/35320 33591/35329 +f 33585/35323 33582/35320 33568/35300 +f 33592/35330 33574/35312 33580/35318 +f 33575/35313 33574/35312 33592/35330 +f 31620/35302 33583/35321 29546/35331 +f 33575/35313 33593/35332 33583/35321 +f 33584/35322 33570/35305 33588/35326 +f 33594/35333 33576/35314 33584/35322 +f 33576/35314 33594/35333 33577/35315 +f 33585/35323 33578/35316 33577/35315 +f 33190/35308 33595/35334 33586/35324 +f 33596/35335 33579/35317 33586/35324 +f 33567/35299 33587/35325 33588/35326 +f 33587/35325 33579/35317 33597/35336 +f 33580/35318 33589/35327 33592/35330 +f 33581/35319 33590/35328 33598/35337 +f 33591/35329 33590/35328 33573/35311 +f 33599/35338 33589/35327 33581/35319 +f 33591/35329 33582/35320 33585/35323 +f 33575/35313 33592/35330 33600/35339 +f 33593/35332 29546/35331 33583/35321 +f 33575/35313 33601/35340 33593/35332 +f 33597/35336 33584/35322 33588/35326 +f 33602/35341 33594/35333 33584/35322 +f 33594/35333 33585/35323 33577/35315 +f 33595/35334 33190/35308 33193/35342 +f 33596/35335 33586/35324 33595/35334 +f 33596/35335 33603/35343 33579/35317 +f 33587/35325 33597/35336 33588/35326 +f 33597/35336 33579/35317 33604/35344 +f 33592/35330 33589/35327 33605/35345 +f 33590/35328 33606/35346 33598/35337 +f 33599/35338 33581/35319 33598/35337 +f 33607/35347 33590/35328 33591/35329 +f 33605/35345 33589/35327 33599/35338 +f 33608/35348 33591/35329 33585/35323 +f 33600/35339 33609/35349 33575/35313 +f 33605/35345 33600/35339 33592/35330 +f 29546/35331 33593/35332 33610/35350 +f 33601/35340 33575/35313 33609/35349 +f 33610/35350 33593/35332 33601/35340 +f 33597/35336 33602/35341 33584/35322 +f 33611/35351 33594/35333 33602/35341 +f 33585/35323 33594/35333 33608/35348 +f 33193/35342 33612/35352 33595/35334 +f 33613/35353 33596/35335 33595/35334 +f 33579/35317 33603/35343 33604/35344 +f 33614/35354 33603/35343 33596/35335 +f 33597/35336 33604/35344 33615/35355 +f 33590/35328 33616/35356 33606/35346 +f 33598/35337 33606/35346 33617/35357 +f 33599/35338 33598/35337 33618/35358 +f 33591/35329 33619/35359 33607/35347 +f 33616/35356 33590/35328 33607/35347 +f 33618/35358 33605/35345 33599/35338 +f 33619/35359 33591/35329 33608/35348 +f 33609/35349 33600/35339 33620/35360 +f 33600/35339 33605/35345 33620/35360 +f 29546/35331 33610/35350 29703/35361 +f 33609/35349 33621/35362 33601/35340 +f 33610/35350 33601/35340 33622/35363 +f 33615/35355 33602/35341 33597/35336 +f 33608/35348 33594/35333 33611/35351 +f 33623/35364 33611/35351 33602/35341 +f 33613/35353 33595/35334 33612/35352 +f 33614/35354 33596/35335 33613/35353 +f 33604/35344 33603/35343 33624/35365 +f 33614/35354 33624/35365 33603/35343 +f 33615/35355 33604/35344 33624/35365 +f 33616/35356 33625/35366 33606/35346 +f 33618/35358 33598/35337 33617/35357 +f 33606/35346 33625/35366 33617/35357 +f 33619/35359 33626/35367 33607/35347 +f 33616/35356 33607/35347 33626/35367 +f 33627/35368 33605/35345 33618/35358 +f 33628/35369 33619/35359 33608/35348 +f 33621/35362 33609/35349 33620/35360 +f 33620/35360 33605/35345 33629/35370 +f 29703/35361 33610/35350 33630/35371 +f 33621/35362 33622/35363 33601/35340 +f 33622/35363 33631/35372 33610/35350 +f 33602/35341 33615/35355 33623/35364 +f 33628/35369 33608/35348 33611/35351 +f 33611/35351 33623/35364 33628/35369 +f 33632/35373 33614/35354 33613/35353 +f 33624/35365 33614/35354 33632/35373 +f 33624/35365 33633/35374 33615/35355 +f 33634/35375 33625/35366 33616/35356 +f 33627/35368 33618/35358 33617/35357 +f 33625/35366 33635/35376 33617/35357 +f 33619/35359 33636/35377 33626/35367 +f 33626/35367 33637/35378 33616/35356 +f 33605/35345 33627/35368 33638/35379 +f 33636/35377 33619/35359 33628/35369 +f 33620/35360 33629/35370 33621/35362 +f 33629/35370 33605/35345 33638/35379 +f 33631/35372 33630/35371 33610/35350 +f 33622/35363 33621/35362 33639/35380 +f 33631/35372 33622/35363 33639/35380 +f 33615/35355 33633/35374 33623/35364 +f 33623/35364 33640/35381 33628/35369 +f 33641/35382 33632/35373 33613/35353 +f 33624/35365 33632/35373 33642/35383 +f 33624/35365 33642/35383 33633/35374 +f 33634/35375 33643/35384 33625/35366 +f 33637/35378 33634/35375 33616/35356 +f 33627/35368 33617/35357 33644/35385 +f 33617/35357 33635/35376 33645/35386 +f 33625/35366 33646/35387 33635/35376 +f 33636/35377 33637/35378 33626/35367 +f 33644/35385 33638/35379 33627/35368 +f 33628/35369 33640/35381 33636/35377 +f 33647/35388 33621/35362 33629/35370 +f 33647/35388 33629/35370 33638/35379 +f 33631/35372 33648/35389 33630/35371 +f 33621/35362 33649/35390 33639/35380 +f 33648/35389 33631/35372 33639/35380 +f 33640/35381 33623/35364 33633/35374 +f 33650/35391 33641/35382 33613/35353 +f 33642/35383 33632/35373 33641/35382 +f 33651/35392 33633/35374 33642/35383 +f 33637/35378 33643/35384 33634/35375 +f 33652/35393 33625/35366 33643/35384 +f 33617/35357 33653/35394 33644/35385 +f 33645/35386 33635/35376 33654/35395 +f 33645/35386 33653/35394 33617/35357 +f 33652/35393 33646/35387 33625/35366 +f 33646/35387 33654/35395 33635/35376 +f 33643/35384 33637/35378 33636/35377 +f 33655/35396 33638/35379 33644/35385 +f 33640/35381 33656/35397 33636/35377 +f 33621/35362 33647/35388 33649/35390 +f 33657/35398 33647/35388 33638/35379 +f 33649/35390 33648/35389 33639/35380 +f 33658/35399 33640/35381 33633/35374 +f 33641/35382 33650/35391 33659/35400 +f 33659/35400 33642/35383 33641/35382 +f 33658/35399 33633/35374 33651/35392 +f 33659/35400 33651/35392 33642/35383 +f 33643/35384 33660/35401 33652/35393 +f 33653/35394 33655/35396 33644/35385 +f 33654/35395 33661/35402 33645/35386 +f 33655/35396 33653/35394 33645/35386 +f 33662/35403 33646/35387 33652/35393 +f 33663/35404 33654/35395 33646/35387 +f 33636/35377 33656/35397 33643/35384 +f 33638/35379 33655/35396 33657/35398 +f 33656/35397 33640/35381 33664/35405 +f 33649/35390 33647/35388 33655/35396 +f 33655/35396 33647/35388 33657/35398 +f 33649/35390 33655/35396 33648/35389 +f 33640/35381 33658/35399 33664/35405 +f 33658/35399 33651/35392 33665/35406 +f 33666/35407 33651/35392 33659/35400 +f 33667/35408 33652/35393 33660/35401 +f 33643/35384 33656/35397 33660/35401 +f 33654/35395 33663/35404 33661/35402 +f 33648/35389 33645/35386 33661/35402 +f 33655/35396 33645/35386 33648/35389 +f 33668/35409 33646/35387 33662/35403 +f 33652/35393 33667/35408 33662/35403 +f 33663/35404 33646/35387 33668/35409 +f 33664/35405 33669/35410 33656/35397 +f 33664/35405 33658/35399 33670/35411 +f 33665/35406 33651/35392 33671/35412 +f 33658/35399 33665/35406 33670/35411 +f 33651/35392 33666/35407 33671/35412 +f 33669/35410 33667/35408 33660/35401 +f 33660/35401 33656/35397 33669/35410 +f 33668/35409 33662/35403 33672/35413 +f 33662/35403 33667/35408 33672/35413 +f 33663/35404 33668/35409 33673/35414 +f 33670/35411 33669/35410 33664/35405 +f 33674/35415 33665/35406 33671/35412 +f 33665/35406 33675/35416 33670/35411 +f 33666/35407 33674/35415 33671/35412 +f 33667/35408 33669/35410 33676/35417 +f 33672/35413 33677/35418 33668/35409 +f 33667/35408 33678/35419 33672/35413 +f 33668/35409 33679/35420 33673/35414 +f 33676/35417 33669/35410 33670/35411 +f 33680/35421 33675/35416 33665/35406 +f 33670/35411 33675/35416 33676/35417 +f 33667/35408 33676/35417 33681/35422 +f 33682/35423 33677/35418 33672/35413 +f 33679/35420 33668/35409 33677/35418 +f 33672/35413 33678/35419 33682/35423 +f 33678/35419 33667/35408 33681/35422 +f 33679/35420 33683/35424 33673/35414 +f 33680/35421 33676/35417 33675/35416 +f 33680/35421 33681/35422 33676/35417 +f 33684/35425 33677/35418 33682/35423 +f 33679/35420 33677/35418 33684/35425 +f 33684/35425 33682/35423 33678/35419 +f 33678/35419 33681/35422 33685/35426 +f 33679/35420 33686/35427 33683/35424 +f 33685/35426 33681/35422 33680/35421 +f 33684/35425 33686/35427 33679/35420 +f 33687/35428 33684/35425 33678/35419 +f 33687/35428 33678/35419 33685/35426 +f 33683/35424 33686/35427 33688/35429 +f 33684/35425 33689/35430 33686/35427 +f 33684/35425 33687/35428 33690/35431 +f 33686/35427 33691/35432 33688/35429 +f 33690/35431 33689/35430 33684/35425 +f 33691/35432 33686/35427 33689/35430 +f 33690/35431 33687/35428 33692/35433 +f 33693/35434 33689/35430 33690/35431 +f 33691/35432 33689/35430 33693/35434 +f 33690/35431 33692/35433 33693/35434 +f 33694/35435 33695/35436 33696/35437 +f 33695/35436 33694/35435 33697/35438 +f 33695/35436 33698/35439 33696/35437 +f 33699/35440 33694/35435 33696/35437 +f 33694/35435 33700/35441 33697/35438 +f 33701/35442 33695/35436 33697/35438 +f 33695/35436 33701/35442 33698/35439 +f 33698/35439 33702/35443 33696/35437 +f 33694/35435 33699/35440 33703/35444 +f 33696/35437 33702/35443 33699/35440 +f 33700/35441 33704/35445 33697/35438 +f 33704/35445 33701/35442 33697/35438 +f 33701/35442 33705/35446 33698/35439 +f 33698/35439 33706/35447 33702/35443 +f 33703/35444 33699/35440 33707/35448 +f 33707/35448 33699/35440 33702/35443 +f 33700/35441 33708/35449 33704/35445 +f 33709/35450 33701/35442 33704/35445 +f 33698/35439 33705/35446 33706/35447 +f 33705/35446 33701/35442 33710/35451 +f 33702/35443 33706/35447 33711/35452 +f 33707/35448 33215/35453 33703/35444 +f 33712/35454 33707/35448 33702/35443 +f 33704/35445 33708/35449 33713/35455 +f 33704/35445 33713/35455 33709/35450 +f 33710/35451 33701/35442 33709/35450 +f 33706/35447 33705/35446 33714/35456 +f 33715/35457 33705/35446 33710/35451 +f 33716/35458 33711/35452 33706/35447 +f 33711/35452 33717/35459 33702/35443 +f 33707/35448 33712/35454 33215/35453 +f 33717/35459 33712/35454 33702/35443 +f 33713/35455 33708/35449 33718/35460 +f 33709/35450 33713/35455 33719/35461 +f 33720/35462 33710/35451 33709/35450 +f 33714/35456 33721/35463 33706/35447 +f 33705/35446 33722/35464 33714/35456 +f 33715/35457 33710/35451 33723/35465 +f 33715/35457 33722/35464 33705/35446 +f 33706/35447 33721/35463 33716/35458 +f 33717/35459 33711/35452 33716/35458 +f 33724/35466 33215/35453 33712/35454 +f 33725/35467 33712/35454 33717/35459 +f 33718/35460 33719/35461 33713/35455 +f 33709/35450 33719/35461 33720/35462 +f 33710/35451 33720/35462 33726/35468 +f 33714/35456 33727/35469 33721/35463 +f 33728/35470 33714/35456 33722/35464 +f 33723/35465 33710/35451 33726/35468 +f 33729/35471 33715/35457 33723/35465 +f 33729/35471 33722/35464 33715/35457 +f 33721/35463 33730/35472 33716/35458 +f 33725/35467 33717/35459 33716/35458 +f 33724/35466 33216/35473 33215/35453 +f 33712/35454 33725/35467 33724/35466 +f 33718/35460 33731/35474 33719/35461 +f 33732/35475 33720/35462 33719/35461 +f 33732/35475 33726/35468 33720/35462 +f 33721/35463 33727/35469 33730/35472 +f 33728/35470 33727/35469 33714/35456 +f 33722/35464 33733/35476 33728/35470 +f 33726/35468 33734/35477 33723/35465 +f 33723/35465 33735/35478 33729/35471 +f 33722/35464 33729/35471 33733/35476 +f 33736/35479 33716/35458 33730/35472 +f 33737/35480 33725/35467 33716/35458 +f 33216/35473 33724/35466 33738/35481 +f 33739/35482 33724/35466 33725/35467 +f 33740/35483 33731/35474 33718/35460 +f 33732/35475 33719/35461 33731/35474 +f 33732/35475 33741/35484 33726/35468 +f 33727/35469 33742/35485 33730/35472 +f 33727/35469 33728/35470 33742/35485 +f 33728/35470 33733/35476 33743/35486 +f 33741/35484 33734/35477 33726/35468 +f 33734/35477 33735/35478 33723/35465 +f 33729/35471 33735/35478 33744/35487 +f 33733/35476 33729/35471 33744/35487 +f 33730/35472 33742/35485 33736/35479 +f 33716/35458 33736/35479 33737/35480 +f 33725/35467 33737/35480 33739/35482 +f 33745/35488 33216/35473 33738/35481 +f 33738/35481 33724/35466 33739/35482 +f 33746/35489 33731/35474 33740/35483 +f 33732/35475 33731/35474 33747/35490 +f 33741/35484 33732/35475 33748/35491 +f 33742/35485 33728/35470 33749/35492 +f 33744/35487 33743/35486 33733/35476 +f 33728/35470 33743/35486 33750/35493 +f 33751/35494 33734/35477 33741/35484 +f 33181/35495 33735/35478 33734/35477 +f 33181/35495 33744/35487 33735/35478 +f 33752/35496 33736/35479 33742/35485 +f 33736/35479 33753/35497 33737/35480 +f 33753/35497 33739/35482 33737/35480 +f 33745/35488 33754/35498 33216/35473 +f 33753/35497 33745/35488 33738/35481 +f 33738/35481 33739/35482 33753/35497 +f 33746/35489 33740/35483 33755/35499 +f 33731/35474 33746/35489 33756/35500 +f 33757/35501 33732/35475 33747/35490 +f 33747/35490 33731/35474 33756/35500 +f 33748/35491 33732/35475 33758/35502 +f 33748/35491 33751/35494 33741/35484 +f 33728/35470 33750/35493 33749/35492 +f 33749/35492 33752/35496 33742/35485 +f 33169/35503 33743/35486 33744/35487 +f 33743/35486 33174/35504 33750/35493 +f 33751/35494 33183/35505 33734/35477 +f 33181/35495 33734/35477 33183/35505 +f 33181/35495 33169/35503 33744/35487 +f 33753/35497 33736/35479 33752/35496 +f 33754/35498 33745/35488 33759/35506 +f 33745/35488 33753/35497 33752/35496 +f 33755/35499 33760/35507 33746/35489 +f 33756/35500 33746/35489 33761/35508 +f 33758/35502 33732/35475 33757/35501 +f 33757/35501 33747/35490 33756/35500 +f 33758/35502 33762/35509 33748/35491 +f 33748/35491 33762/35509 33751/35494 +f 33749/35492 33750/35493 33763/35510 +f 33764/35511 33752/35496 33749/35492 +f 33743/35486 33169/35503 33174/35504 +f 33750/35493 33174/35504 33763/35510 +f 33751/35494 33762/35509 33183/35505 +f 33759/35506 33745/35488 33765/35512 +f 33754/35498 33759/35506 33766/35513 +f 33752/35496 33764/35511 33745/35488 +f 33761/35508 33746/35489 33760/35507 +f 33767/35514 33760/35507 33755/35499 +f 33761/35508 33758/35502 33756/35500 +f 33758/35502 33757/35501 33756/35500 +f 33762/35509 33758/35502 33768/35515 +f 33763/35510 33769/35516 33749/35492 +f 33769/35516 33764/35511 33749/35492 +f 33763/35510 33174/35504 33770/35517 +f 33183/35505 33762/35509 33771/35518 +f 33764/35511 33765/35512 33745/35488 +f 33766/35513 33759/35506 33765/35512 +f 33772/35519 33754/35498 33766/35513 +f 33761/35508 33760/35507 33773/35520 +f 33760/35507 33767/35514 33774/35521 +f 33755/35499 33775/35522 33767/35514 +f 33761/35508 33776/35523 33758/35502 +f 33758/35502 33776/35523 33768/35515 +f 33771/35518 33762/35509 33768/35515 +f 33770/35517 33769/35516 33763/35510 +f 33765/35512 33764/35511 33769/35516 +f 33771/35518 21135/35524 33183/35505 +f 33765/35512 33769/35516 33766/35513 +f 33777/35525 33754/35498 33772/35519 +f 33769/35516 33772/35519 33766/35513 +f 33778/35526 33773/35520 33760/35507 +f 33776/35523 33761/35508 33773/35520 +f 33774/35521 33767/35514 33779/35527 +f 33760/35507 33774/35521 33778/35526 +f 33767/35514 33775/35522 33779/35527 +f 33776/35523 33780/35528 33768/35515 +f 33781/35529 33771/35518 33768/35515 +f 21125/35530 21135/35524 33771/35518 +f 33782/35531 33773/35520 33778/35526 +f 33783/35532 33776/35523 33773/35520 +f 33779/35527 33784/35533 33774/35521 +f 33774/35521 33784/35533 33778/35526 +f 33779/35527 33775/35522 33785/35534 +f 33768/35515 33780/35528 33781/35529 +f 33783/35532 33780/35528 33776/35523 +f 33771/35518 33781/35529 21125/35530 +f 33778/35526 33786/35535 33782/35531 +f 33773/35520 33782/35531 33787/35536 +f 33783/35532 33773/35520 33787/35536 +f 33786/35535 33784/35533 33779/35527 +f 33784/35533 33786/35535 33778/35526 +f 33785/35534 33788/35537 33779/35527 +f 33789/35538 33781/35529 33780/35528 +f 33780/35528 33783/35532 33790/35539 +f 33781/35529 33789/35538 21125/35530 +f 33787/35536 33782/35531 33786/35535 +f 33791/35540 33783/35532 33787/35536 +f 33779/35527 33788/35537 33786/35535 +f 33792/35541 33788/35537 33785/35534 +f 33789/35538 33780/35528 33790/35539 +f 33783/35532 33791/35540 33790/35539 +f 21125/35530 33789/35538 21100/35542 +f 33786/35535 33788/35537 33787/35536 +f 33793/35543 33791/35540 33787/35536 +f 33788/35537 33792/35541 21136/35544 +f 33789/35538 33790/35539 21090/35545 +f 33794/35546 33790/35539 33791/35540 +f 33789/35538 21090/35545 21100/35542 +f 33788/35537 33793/35543 33787/35536 +f 33793/35543 33794/35546 33791/35540 +f 33788/35537 21136/35544 21115/35547 +f 33790/35539 33795/35548 21090/35545 +f 33795/35548 33790/35539 33794/35546 +f 33788/35537 21115/35547 33793/35543 +f 33794/35546 33793/35543 21115/35547 +f 33795/35548 21073/35549 21090/35545 +f 33795/35548 33794/35546 21102/35550 +f 21102/35550 33794/35546 21115/35547 +f 21073/35549 33795/35548 21102/35550 +f 15310/35551 33796/35552 33797/35553 +f 33797/35553 32280/35554 15310/35551 +f 32280/35554 33798/35555 15310/35551 +f 13930/35556 32280/35554 33797/35553 +f 33798/35555 32280/35554 33799/35557 +f 15310/35551 33798/35555 33800/35558 +f 13930/35556 33797/35553 32279/35559 +f 32282/35560 33799/35557 32280/35554 +f 33798/35555 33799/35557 32282/35560 +f 33798/35555 32282/35560 33800/35558 +f 33801/35561 33802/35562 33803/35563 +f 33801/35561 33804/35564 33802/35562 +f 33805/35565 33803/35563 33802/35562 +f 32296/35566 33801/35561 33803/35563 +f 33806/35567 33802/35562 33804/35564 +f 33804/35564 33801/35561 33807/35568 +f 33802/35562 33808/35569 33805/35565 +f 33800/35570 33803/35563 33805/35565 +f 33803/35563 32292/35571 32296/35566 +f 33809/35572 33801/35561 32296/35566 +f 33806/35567 33804/35564 33807/35568 +f 33808/35569 33802/35562 33806/35567 +f 33807/35568 33801/35561 33810/35573 +f 33811/35574 33805/35565 33808/35569 +f 33812/35575 33800/35570 33805/35565 +f 33800/35570 33813/35576 33803/35563 +f 33803/35563 33813/35576 32292/35571 +f 33809/35572 33810/35573 33801/35561 +f 33814/35577 33809/35572 32296/35566 +f 33806/35567 33807/35568 33815/35578 +f 33806/35567 33816/35579 33808/35569 +f 33807/35568 33810/35573 33815/35578 +f 33817/35580 33805/35565 33811/35574 +f 33808/35569 33818/35581 33811/35574 +f 32937/35582 33800/35570 33812/35575 +f 33819/35583 33812/35575 33805/35565 +f 33800/35570 32282/35584 33813/35576 +f 33820/35585 32292/35571 33813/35576 +f 33810/35573 33809/35572 33821/35586 +f 33822/35587 33814/35577 32296/35566 +f 33809/35572 33814/35577 33821/35586 +f 33823/35588 33806/35567 33815/35578 +f 33806/35567 33824/35589 33816/35579 +f 33816/35579 33818/35581 33808/35569 +f 33810/35573 33825/35590 33815/35578 +f 33826/35591 33817/35580 33811/35574 +f 33817/35580 33819/35583 33805/35565 +f 33811/35574 33818/35581 33826/35591 +f 33812/35575 32758/35592 32937/35582 +f 33812/35575 33819/35583 33827/35593 +f 32282/35584 33820/35585 33813/35576 +f 32282/35584 32292/35571 33820/35585 +f 33810/35573 33821/35586 33828/35594 +f 33821/35586 33814/35577 33822/35587 +f 32296/35566 32294/35595 33822/35587 +f 33824/35589 33806/35567 33823/35588 +f 33815/35578 33829/35596 33823/35588 +f 33830/35597 33816/35579 33824/35589 +f 33818/35581 33816/35579 33831/35598 +f 33825/35590 33810/35573 33828/35594 +f 33832/35599 33815/35578 33825/35590 +f 33826/35591 33819/35583 33817/35580 +f 33826/35591 33818/35581 33831/35598 +f 33812/35575 33833/35600 32758/35592 +f 33819/35583 33826/35591 33827/35593 +f 33827/35593 33834/35601 33812/35575 +f 33821/35586 33835/35602 33828/35594 +f 33822/35587 33836/35603 33821/35586 +f 32295/35604 32294/35595 32296/35566 +f 32293/35605 33822/35587 32294/35595 +f 33837/35606 33824/35589 33823/35588 +f 33829/35596 33815/35578 33838/35607 +f 33823/35588 33829/35596 33839/35608 +f 33830/35597 33840/35609 33816/35579 +f 33824/35589 33841/35610 33830/35597 +f 33816/35579 33840/35609 33831/35598 +f 33842/35611 33825/35590 33828/35594 +f 33815/35578 33832/35599 33838/35607 +f 33825/35590 33478/35612 33832/35599 +f 33826/35591 33831/35598 33827/35593 +f 33833/35600 33812/35575 33834/35601 +f 32752/35613 32758/35592 33833/35600 +f 33827/35593 33843/35614 33834/35601 +f 33836/35603 33835/35602 33821/35586 +f 33835/35602 33842/35611 33828/35594 +f 33836/35603 33822/35587 33844/35615 +f 33822/35587 32293/35605 33844/35615 +f 33839/35608 33837/35606 33823/35588 +f 33824/35589 33837/35606 33841/35610 +f 33829/35596 33838/35607 33845/35616 +f 33839/35608 33829/35596 33837/35606 +f 33846/35617 33840/35609 33830/35597 +f 33830/35597 33841/35610 33847/35618 +f 33840/35609 33843/35614 33831/35598 +f 33825/35590 33842/35611 33478/35612 +f 33832/35599 33848/35619 33838/35607 +f 33478/35612 33482/35620 33832/35599 +f 33827/35593 33831/35598 33843/35614 +f 32752/35613 33833/35600 33834/35601 +f 32757/35621 33834/35601 33843/35614 +f 33835/35602 33836/35603 33849/35622 +f 33842/35611 33835/35602 33850/35623 +f 33844/35615 33851/35624 33836/35603 +f 32293/35605 33851/35624 33844/35615 +f 33837/35606 33852/35625 33841/35610 +f 33838/35607 33853/35626 33845/35616 +f 33845/35616 33854/35627 33829/35596 +f 33829/35596 33855/35628 33837/35606 +f 33846/35617 33856/35629 33840/35609 +f 33847/35618 33846/35617 33830/35597 +f 33852/35625 33847/35618 33841/35610 +f 33843/35614 33840/35609 33857/35630 +f 33478/35612 33842/35611 33467/35631 +f 33482/35620 33848/35619 33832/35599 +f 33848/35619 33853/35626 33838/35607 +f 32757/35621 32752/35613 33834/35601 +f 33843/35614 33858/35632 32757/35621 +f 33836/35603 33851/35624 33849/35622 +f 33849/35622 33859/35633 33835/35602 +f 33850/35623 33835/35602 33859/35633 +f 33860/35634 33842/35611 33850/35623 +f 32293/35605 32291/35635 33851/35624 +f 33837/35606 33855/35628 33852/35625 +f 33861/35636 33845/35616 33853/35626 +f 33862/35637 33854/35627 33845/35616 +f 33829/35596 33854/35627 33855/35628 +f 33847/35618 33856/35629 33846/35617 +f 33856/35629 33863/35638 33840/35609 +f 33852/35625 33864/35639 33847/35618 +f 33840/35609 33863/35638 33857/35630 +f 33857/35630 33858/35632 33843/35614 +f 33860/35634 33467/35631 33842/35611 +f 33848/35619 33482/35620 33865/35640 +f 33853/35626 33848/35619 33866/35641 +f 32756/35642 32757/35621 33858/35632 +f 33849/35622 33851/35624 33867/35643 +f 33849/35622 33867/35643 33859/35633 +f 33859/35633 33860/35634 33850/35623 +f 32291/35635 32288/35644 33851/35624 +f 33852/35625 33855/35628 33864/35639 +f 33862/35637 33845/35616 33861/35636 +f 33853/35626 33866/35641 33861/35636 +f 33854/35627 33862/35637 33855/35628 +f 33856/35629 33847/35618 33868/35645 +f 33863/35638 33856/35629 33869/35646 +f 33847/35618 33864/35639 33868/35645 +f 33857/35630 33863/35638 33870/35647 +f 33857/35630 33870/35647 33858/35632 +f 33467/35631 33860/35634 33452/35648 +f 33482/35620 33493/35649 33865/35640 +f 33848/35619 33865/35640 33866/35641 +f 32756/35642 33858/35632 33870/35647 +f 32288/35644 33867/35643 33851/35624 +f 33860/35634 33859/35633 33867/35643 +f 33855/35628 33871/35650 33864/35639 +f 33872/35651 33862/35637 33861/35636 +f 33866/35641 33872/35651 33861/35636 +f 33862/35637 33871/35650 33855/35628 +f 33868/35645 33873/35652 33856/35629 +f 33869/35646 33856/35629 33873/35652 +f 33870/35647 33863/35638 33869/35646 +f 33874/35653 33868/35645 33864/35639 +f 33860/35634 33867/35643 33452/35648 +f 33493/35649 33875/35654 33865/35640 +f 33866/35641 33865/35640 33510/35655 +f 32756/35642 33870/35647 33869/35646 +f 32281/35656 33867/35643 32288/35644 +f 33876/35657 33864/35639 33871/35650 +f 33877/35658 33862/35637 33872/35651 +f 33866/35641 33510/35655 33872/35651 +f 33871/35650 33862/35637 33877/35658 +f 33873/35652 33868/35645 33878/35659 +f 33873/35652 33531/35660 33869/35646 +f 33864/35639 33876/35657 33874/35653 +f 33878/35659 33868/35645 33874/35653 +f 33867/35643 32281/35656 33452/35648 +f 33875/35654 33493/35649 33497/35661 +f 33510/35655 33865/35640 33875/35654 +f 32759/35662 32756/35642 33869/35646 +f 33876/35657 33871/35650 33879/35663 +f 33514/35664 33877/35658 33872/35651 +f 33872/35651 33510/35655 33514/35664 +f 33879/35663 33871/35650 33877/35658 +f 33873/35652 33878/35659 33530/35665 +f 33531/35660 33873/35652 33530/35665 +f 33531/35660 32759/35662 33869/35646 +f 33876/35657 33520/35666 33874/35653 +f 33527/35667 33878/35659 33874/35653 +f 33875/35654 33497/35661 33510/35655 +f 33876/35657 33879/35663 33880/35668 +f 33877/35658 33514/35664 33512/35669 +f 33512/35669 33879/35663 33877/35658 +f 33530/35665 33878/35659 33527/35667 +f 33520/35666 33876/35657 33880/35668 +f 33520/35666 33527/35667 33874/35653 +f 33879/35663 33512/35669 33880/35668 +f 33880/35668 33517/35670 33520/35666 +f 33880/35668 33512/35669 33517/35670 +f 33881/35671 33882/35672 33883/35673 +f 33881/35671 33884/35674 33882/35672 +f 33882/35672 33885/35675 33883/35673 +f 27531/35676 33881/35671 33883/35673 +f 33884/35674 33881/35671 27531/35676 +f 33882/35672 33884/35674 33886/35677 +f 33885/35675 33882/35672 33887/35678 +f 27565/35679 33884/35674 27531/35676 +f 33888/35680 33886/35677 33884/35674 +f 33887/35678 33882/35672 33886/35677 +f 33887/35678 33889/35681 33885/35675 +f 33884/35674 27565/35679 33888/35680 +f 33890/35682 33886/35677 33888/35680 +f 33886/35677 33891/35683 33887/35678 +f 33889/35681 33887/35678 33892/35684 +f 27565/35679 33893/35685 33888/35680 +f 33890/35682 33894/35686 33886/35677 +f 33888/35680 33893/35685 33890/35682 +f 33894/35686 33891/35683 33886/35677 +f 33891/35683 33895/35687 33887/35678 +f 33892/35684 33896/35688 33889/35681 +f 33892/35684 33887/35678 33895/35687 +f 33893/35685 27565/35679 33897/35689 +f 33898/35690 33894/35686 33890/35682 +f 33893/35685 33898/35690 33890/35682 +f 33899/35691 33891/35683 33894/35686 +f 33900/35692 33895/35687 33891/35683 +f 33896/35688 33892/35684 33901/35693 +f 33892/35684 33895/35687 33902/35694 +f 33903/35695 33897/35689 27565/35679 +f 33893/35685 33897/35689 33898/35690 +f 33898/35690 33904/35696 33894/35686 +f 33894/35686 33904/35696 33899/35691 +f 33891/35683 33899/35691 33900/35692 +f 33905/35697 33895/35687 33900/35692 +f 33902/35694 33901/35693 33892/35684 +f 33901/35693 33906/35698 33896/35688 +f 33902/35694 33895/35687 33905/35697 +f 33907/35699 33897/35689 33903/35695 +f 33903/35695 27565/35679 27602/35700 +f 33897/35689 33908/35701 33898/35690 +f 33909/35702 33904/35696 33898/35690 +f 33909/35702 33899/35691 33904/35696 +f 33900/35692 33899/35691 33910/35703 +f 33900/35692 33911/35704 33905/35697 +f 33901/35693 33902/35694 33912/35705 +f 33906/35698 33901/35693 33913/35706 +f 32835/35707 33896/35688 33906/35698 +f 33912/35705 33902/35694 33905/35697 +f 33914/35708 33907/35699 33903/35695 +f 33915/35709 33897/35689 33907/35699 +f 33903/35695 27602/35700 33916/35710 +f 33908/35701 33897/35689 33917/35711 +f 33918/35712 33898/35690 33908/35701 +f 33909/35702 33898/35690 33918/35712 +f 33919/35713 33899/35691 33909/35702 +f 33910/35703 33911/35704 33900/35692 +f 33910/35703 33899/35691 33920/35714 +f 33921/35715 33905/35697 33911/35704 +f 33901/35693 33912/35705 33913/35706 +f 33913/35706 32830/35716 33906/35698 +f 32835/35707 33906/35698 32830/35716 +f 33912/35705 33905/35697 33921/35715 +f 33907/35699 33914/35708 33922/35717 +f 33903/35695 33916/35710 33914/35708 +f 33897/35689 33915/35709 33917/35711 +f 33915/35709 33907/35699 33923/35718 +f 27662/35719 33916/35710 27602/35700 +f 33924/35720 33908/35701 33917/35711 +f 33908/35701 33925/35721 33918/35712 +f 33919/35713 33909/35702 33918/35712 +f 33919/35713 33920/35714 33899/35691 +f 33926/35722 33911/35704 33910/35703 +f 33910/35703 33920/35714 33926/35722 +f 33911/35704 33927/35723 33921/35715 +f 33928/35724 33913/35706 33912/35705 +f 33912/35705 33921/35715 33929/35725 +f 33907/35699 33922/35717 33923/35718 +f 33922/35717 33914/35708 33930/35726 +f 33931/35727 33914/35708 33916/35710 +f 33917/35711 33915/35709 33932/35728 +f 33933/35729 33915/35709 33923/35718 +f 27662/35719 27685/35730 33916/35710 +f 33908/35701 33924/35720 33925/35721 +f 33934/35731 33924/35720 33917/35711 +f 33925/35721 33919/35713 33918/35712 +f 33920/35714 33919/35713 33925/35721 +f 33926/35722 33927/35723 33911/35704 +f 33920/35714 33935/35732 33926/35722 +f 33927/35723 33936/35733 33921/35715 +f 33912/35705 33929/35725 33928/35724 +f 33937/35734 33913/35706 33928/35724 +f 33929/35725 33921/35715 33936/35733 +f 33922/35717 33938/35735 33923/35718 +f 33930/35726 33914/35708 33931/35727 +f 33922/35717 33930/35726 33938/35735 +f 33916/35710 27685/35730 33931/35727 +f 33933/35729 33932/35728 33915/35709 +f 33932/35728 33934/35731 33917/35711 +f 33923/35718 33938/35735 33933/35729 +f 33925/35721 33924/35720 33939/35736 +f 33924/35720 33934/35731 33940/35737 +f 33939/35736 33920/35714 33925/35721 +f 33941/35738 33927/35723 33926/35722 +f 33935/35732 33920/35714 33939/35736 +f 33935/35732 33942/35739 33926/35722 +f 33936/35733 33927/35723 33943/35740 +f 33929/35725 33944/35741 33928/35724 +f 33928/35724 33945/35742 33937/35734 +f 33936/35733 33946/35743 33929/35725 +f 33947/35744 33930/35726 33931/35727 +f 33930/35726 33947/35744 33938/35735 +f 27685/35730 27694/35745 33931/35727 +f 33932/35728 33933/35729 33948/35746 +f 33934/35731 33932/35728 33948/35746 +f 33933/35729 33938/35735 33949/35747 +f 33924/35720 33950/35748 33939/35736 +f 33950/35748 33924/35720 33940/35737 +f 33940/35737 33934/35731 33951/35749 +f 33941/35738 33926/35722 33952/35750 +f 33927/35723 33941/35738 33953/35751 +f 33939/35736 33950/35748 33935/35732 +f 33942/35739 33935/35732 33950/35748 +f 33952/35750 33926/35722 33942/35739 +f 33953/35751 33943/35740 33927/35723 +f 33954/35752 33936/35733 33943/35740 +f 33928/35724 33944/35741 33955/35753 +f 33946/35743 33944/35741 33929/35725 +f 33956/35754 33945/35742 33928/35724 +f 33937/35734 33945/35742 33957/35755 +f 33936/35733 33958/35756 33946/35743 +f 33938/35735 33947/35744 33931/35727 +f 27694/35745 33938/35735 33931/35727 +f 33933/35729 33949/35747 33948/35746 +f 33934/35731 33948/35746 33959/35757 +f 33949/35747 33938/35735 27694/35745 +f 33940/35737 33960/35758 33950/35748 +f 33951/35749 33934/35731 33959/35757 +f 33940/35737 33951/35749 33961/35759 +f 33941/35738 33952/35750 33961/35759 +f 33961/35759 33953/35751 33941/35738 +f 33942/35739 33950/35748 33960/35758 +f 33952/35750 33942/35739 33960/35758 +f 33943/35740 33953/35751 33962/35760 +f 33954/35752 33963/35761 33936/35733 +f 33954/35752 33943/35740 33964/35762 +f 33955/35753 33944/35741 33965/35763 +f 33955/35753 33956/35754 33928/35724 +f 33946/35743 33965/35763 33944/35741 +f 33956/35754 33966/35764 33945/35742 +f 33937/35734 33957/35755 33967/35765 +f 33957/35755 33945/35742 33968/35766 +f 33969/35767 33946/35743 33958/35756 +f 33958/35756 33936/35733 33963/35761 +f 33959/35757 33948/35746 33949/35747 +f 27694/35745 33970/35768 33949/35747 +f 33960/35758 33940/35737 33961/35759 +f 33959/35757 33971/35769 33951/35749 +f 33951/35749 33972/35770 33961/35759 +f 33961/35759 33952/35750 33960/35758 +f 33973/35771 33953/35751 33961/35759 +f 33964/35762 33943/35740 33962/35760 +f 33962/35760 33953/35751 33973/35771 +f 33969/35767 33963/35761 33954/35752 +f 33954/35752 33964/35762 33969/35767 +f 33965/35763 33956/35754 33955/35753 +f 33965/35763 33946/35743 33969/35767 +f 33966/35764 33968/35766 33945/35742 +f 33966/35764 33956/35754 33974/35772 +f 33957/35755 33975/35773 33967/35765 +f 33968/35766 33976/35774 33957/35755 +f 33958/35756 33963/35761 33969/35767 +f 33949/35747 33977/35775 33959/35757 +f 27694/35745 33978/35776 33970/35768 +f 33970/35768 33977/35775 33949/35747 +f 33959/35757 33977/35775 33971/35769 +f 33979/35777 33951/35749 33971/35769 +f 33951/35749 33980/35778 33972/35770 +f 33972/35770 33973/35771 33961/35759 +f 33962/35760 33981/35779 33964/35762 +f 33962/35760 33973/35771 33972/35770 +f 33969/35767 33964/35762 33965/35763 +f 33956/35754 33965/35763 33974/35772 +f 33966/35764 33976/35774 33968/35766 +f 33974/35772 33982/35780 33966/35764 +f 33983/35781 33975/35773 33957/35755 +f 33957/35755 33976/35774 33984/35782 +f 33980/35778 33970/35768 33978/35776 +f 33970/35768 33979/35777 33977/35775 +f 33979/35777 33971/35769 33977/35775 +f 33951/35749 33979/35777 33980/35778 +f 33980/35778 33985/35783 33972/35770 +f 33981/35779 33974/35772 33964/35762 +f 33986/35784 33981/35779 33962/35760 +f 33972/35770 33985/35783 33962/35760 +f 33965/35763 33964/35762 33974/35772 +f 33966/35764 33984/35782 33976/35774 +f 33984/35782 33966/35764 33982/35780 +f 33983/35781 33957/35755 33984/35782 +f 33970/35768 33980/35778 33979/35777 +f 33985/35783 33980/35778 33987/35785 +f 33984/35782 33974/35772 33981/35779 +f 33962/35760 33988/35786 33986/35784 +f 33983/35781 33981/35779 33986/35784 +f 33985/35783 33988/35786 33962/35760 +f 33984/35782 33981/35779 33983/35781 +f 33985/35783 33987/35785 33988/35786 +f 33989/35787 33990/35788 33991/35789 +f 33989/35787 33992/35790 33990/35788 +f 33991/35789 33990/35788 33993/35791 +f 33991/35789 33994/35792 33989/35787 +f 33992/35790 33989/35787 33995/35793 +f 33996/35794 33990/35788 33992/35790 +f 33993/35791 33997/35795 33991/35789 +f 33998/35796 33993/35791 33990/35788 +f 33997/35795 33994/35792 33991/35789 +f 33999/35797 33989/35787 33994/35792 +f 33989/35787 34000/35798 33995/35793 +f 33995/35793 34001/35799 33992/35790 +f 33998/35796 33990/35788 33996/35794 +f 33992/35790 34001/35799 33996/35794 +f 33993/35791 34002/35800 33997/35795 +f 34003/35801 33993/35791 33998/35796 +f 33997/35795 34002/35800 33994/35792 +f 33989/35787 33999/35797 34000/35798 +f 33999/35797 33994/35792 34004/35802 +f 34005/35803 33995/35793 34000/35798 +f 34001/35799 33995/35793 34006/35804 +f 33996/35794 34007/35805 33998/35796 +f 33996/35794 34001/35799 34008/35806 +f 34003/35801 34002/35800 33993/35791 +f 34003/35801 33998/35796 34007/35805 +f 33994/35792 34002/35800 34009/35807 +f 34000/35798 33999/35797 34010/35808 +f 34004/35802 34011/35809 33999/35797 +f 34009/35807 34004/35802 33994/35792 +f 34000/35798 34012/35810 34005/35803 +f 33995/35793 34005/35803 34013/35811 +f 34014/35812 34001/35799 34006/35804 +f 34006/35804 33995/35793 34013/35811 +f 34015/35813 34007/35805 33996/35794 +f 34008/35806 34001/35799 34014/35812 +f 34008/35806 34016/35814 33996/35794 +f 34003/35801 34017/35815 34002/35800 +f 34007/35805 34017/35815 34003/35801 +f 34018/35816 34009/35807 34002/35800 +f 34000/35798 34010/35808 34019/35817 +f 34010/35808 33999/35797 34011/35809 +f 34004/35802 34020/35818 34011/35809 +f 34021/35819 34004/35802 34009/35807 +f 34012/35810 34022/35820 34005/35803 +f 34012/35810 34000/35798 34019/35817 +f 34013/35811 34005/35803 33198/35821 +f 34013/35811 34014/35812 34006/35804 +f 34015/35813 34023/35822 34007/35805 +f 33996/35794 34016/35814 34015/35813 +f 34024/35823 34008/35806 34014/35812 +f 34016/35814 34008/35806 34025/35824 +f 34026/35825 34002/35800 34017/35815 +f 34017/35815 34007/35805 34027/35826 +f 34026/35825 34018/35816 34002/35800 +f 34018/35816 34021/35819 34009/35807 +f 34019/35817 34010/35808 34028/35827 +f 34010/35808 34011/35809 34028/35827 +f 34020/35818 34029/35828 34011/35809 +f 34020/35818 34004/35802 34030/35829 +f 34031/35830 34004/35802 34021/35819 +f 34012/35810 34032/35831 34022/35820 +f 34005/35803 34022/35820 33198/35821 +f 34032/35831 34012/35810 34019/35817 +f 33198/35821 34014/35812 34013/35811 +f 34015/35813 34033/35832 34023/35822 +f 34007/35805 34023/35822 34027/35826 +f 34033/35832 34015/35813 34016/35814 +f 34024/35823 34014/35812 33199/35833 +f 34034/35834 34008/35806 34024/35823 +f 34025/35824 34033/35832 34016/35814 +f 34025/35824 34008/35806 34035/35835 +f 34036/35836 34026/35825 34017/35815 +f 34036/35836 34017/35815 34027/35826 +f 34037/35837 34018/35816 34026/35825 +f 34018/35816 34038/35838 34021/35819 +f 34028/35827 34032/35831 34019/35817 +f 34011/35809 34029/35828 34028/35827 +f 34020/35818 34039/35839 34029/35828 +f 34040/35840 34030/35829 34004/35802 +f 34030/35829 34041/35841 34020/35818 +f 34031/35830 34021/35819 34042/35842 +f 34004/35802 34031/35830 34040/35840 +f 34032/35831 33193/35843 34022/35820 +f 34043/35844 33198/35821 34022/35820 +f 33199/35833 34014/35812 33198/35821 +f 34033/35832 34044/35845 34023/35822 +f 34023/35822 34045/35846 34027/35826 +f 21423/35847 34024/35823 33199/35833 +f 21428/35848 34034/35834 34024/35823 +f 34008/35806 34034/35834 34035/35835 +f 34025/35824 34046/35849 34033/35832 +f 21430/35850 34025/35824 34035/35835 +f 34026/35825 34036/35836 34037/35837 +f 34036/35836 34027/35826 34047/35851 +f 34038/35838 34018/35816 34037/35837 +f 34038/35838 34048/35852 34021/35819 +f 34028/35827 34029/35828 34032/35831 +f 34039/35839 34049/35853 34029/35828 +f 34020/35818 34041/35841 34039/35839 +f 34040/35840 34031/35830 34030/35829 +f 34030/35829 34050/35854 34041/35841 +f 34021/35819 34048/35852 34042/35842 +f 34031/35830 34042/35842 34051/35855 +f 34052/35856 33193/35843 34032/35831 +f 34022/35820 33193/35843 34043/35844 +f 33193/35843 33198/35821 34043/35844 +f 34033/35832 34046/35849 34044/35845 +f 34045/35846 34023/35822 34044/35845 +f 34047/35851 34027/35826 34045/35846 +f 21423/35847 21428/35848 34024/35823 +f 34035/35835 34034/35834 21428/35848 +f 34046/35849 34025/35824 21430/35850 +f 34035/35835 21428/35848 21430/35850 +f 34037/35837 34036/35836 34047/35851 +f 34053/35857 34038/35838 34037/35837 +f 34048/35852 34038/35838 34054/35858 +f 34029/35828 34049/35853 34032/35831 +f 34039/35839 34055/35859 34049/35853 +f 34039/35839 34041/35841 34055/35859 +f 34051/35855 34030/35829 34031/35830 +f 34051/35855 34050/35854 34030/35829 +f 34041/35841 34050/35854 34055/35859 +f 34042/35842 34048/35852 34056/35860 +f 34057/35861 34051/35855 34042/35842 +f 33193/35843 34052/35856 34058/35862 +f 34032/35831 34049/35853 34052/35856 +f 34038/35838 34053/35857 34059/35863 +f 34059/35863 34054/35858 34038/35838 +f 34054/35858 34060/35864 34048/35852 +f 34055/35859 34061/35865 34049/35853 +f 34050/35854 34051/35855 34062/35866 +f 34055/35859 34050/35854 34063/35867 +f 34060/35864 34056/35860 34048/35852 +f 34056/35860 34064/35868 34042/35842 +f 34051/35855 34057/35861 34062/35866 +f 34064/35868 34057/35861 34042/35842 +f 33612/35869 33193/35843 34058/35862 +f 34058/35862 34052/35856 34065/35870 +f 34049/35853 34061/35865 34052/35856 +f 34059/35863 34053/35857 34066/35871 +f 34059/35863 34066/35871 34054/35858 +f 34060/35864 34054/35858 34067/35872 +f 34055/35859 34068/35873 34061/35865 +f 34063/35867 34050/35854 34062/35866 +f 34055/35859 34063/35867 34068/35873 +f 34056/35860 34060/35864 34064/35868 +f 34069/35874 34062/35866 34057/35861 +f 34057/35861 34064/35868 34069/35874 +f 34065/35870 34052/35856 34070/35875 +f 34065/35870 34071/35876 34058/35862 +f 34052/35856 34061/35865 34070/35875 +f 34072/35877 34054/35858 34066/35871 +f 34060/35864 34067/35872 34064/35868 +f 34054/35858 34072/35877 34067/35872 +f 34061/35865 34068/35873 34073/35878 +f 34074/35879 34063/35867 34062/35866 +f 34063/35867 34075/35880 34068/35873 +f 34062/35866 34069/35874 34076/35881 +f 34069/35874 34064/35868 34077/35882 +f 34070/35875 34078/35883 34065/35870 +f 34071/35876 34065/35870 34079/35884 +f 34080/35885 34070/35875 34061/35865 +f 34064/35868 34067/35872 34077/35882 +f 34067/35872 34072/35877 34081/35886 +f 34068/35873 34075/35880 34073/35878 +f 34073/35878 34082/35887 34061/35865 +f 34075/35880 34063/35867 34074/35879 +f 34083/35888 34074/35879 34062/35866 +f 34076/35881 34069/35874 34084/35889 +f 34076/35881 34083/35888 34062/35866 +f 34084/35889 34069/35874 34077/35882 +f 34078/35883 34070/35875 34085/35890 +f 34065/35870 34078/35883 34079/35884 +f 34086/35891 34071/35876 34079/35884 +f 34070/35875 34080/35885 34085/35890 +f 34061/35865 34087/35892 34080/35885 +f 34067/35872 34081/35886 34077/35882 +f 34088/35893 34081/35886 34072/35877 +f 34075/35880 34074/35879 34073/35878 +f 34061/35865 34082/35887 34087/35892 +f 34073/35878 34074/35879 34082/35887 +f 34089/35894 34074/35879 34083/35888 +f 34090/35895 34076/35881 34084/35889 +f 34076/35881 34091/35896 34083/35888 +f 34092/35897 34084/35889 34077/35882 +f 34093/35898 34078/35883 34085/35890 +f 34079/35884 34078/35883 34093/35898 +f 34079/35884 34094/35899 34086/35891 +f 34085/35890 34080/35885 34087/35892 +f 34095/35900 34077/35882 34081/35886 +f 34096/35901 34081/35886 34088/35893 +f 34087/35892 34082/35887 34097/35902 +f 34089/35894 34082/35887 34074/35879 +f 34089/35894 34083/35888 34098/35903 +f 34076/35881 34090/35895 34091/35896 +f 34090/35895 34084/35889 34099/35904 +f 34083/35888 34091/35896 34100/35905 +f 34084/35889 34092/35897 34099/35904 +f 34095/35900 34092/35897 34077/35882 +f 34093/35898 34085/35890 34101/35906 +f 34093/35898 34094/35899 34079/35884 +f 34087/35892 34101/35906 34085/35890 +f 34081/35886 34096/35901 34095/35900 +f 34102/35907 34096/35901 34088/35893 +f 34089/35894 34097/35902 34082/35887 +f 34097/35902 34101/35906 34087/35892 +f 34098/35903 34083/35888 34100/35905 +f 34098/35903 34097/35902 34089/35894 +f 34091/35896 34090/35895 34103/35908 +f 34099/35904 34104/35909 34090/35895 +f 34100/35905 34091/35896 34098/35903 +f 34092/35897 34105/35910 34099/35904 +f 34095/35900 34105/35910 34092/35897 +f 34101/35906 34106/35911 34093/35898 +f 34094/35899 34093/35898 34107/35912 +f 34108/35913 34095/35900 34096/35901 +f 34109/35914 34096/35901 34102/35907 +f 34106/35911 34101/35906 34097/35902 +f 34098/35903 34106/35911 34097/35902 +f 34110/35915 34091/35896 34103/35908 +f 34103/35908 34090/35895 34111/35916 +f 34112/35917 34104/35909 34099/35904 +f 34111/35916 34090/35895 34104/35909 +f 34098/35903 34091/35896 34110/35915 +f 34105/35910 34112/35917 34099/35904 +f 34105/35910 34095/35900 34108/35913 +f 34106/35911 34113/35918 34093/35898 +f 34093/35898 34113/35918 34107/35912 +f 34109/35914 34108/35913 34096/35901 +f 34102/35907 34114/35919 34109/35914 +f 34106/35911 34098/35903 34115/35920 +f 34116/35921 34110/35915 34103/35908 +f 34111/35916 34116/35921 34103/35908 +f 34104/35909 34112/35917 34117/35922 +f 34111/35916 34104/35909 34117/35922 +f 34118/35923 34098/35903 34110/35915 +f 34112/35917 34105/35910 34117/35922 +f 34105/35910 34108/35913 34119/35924 +f 34106/35911 34115/35920 34113/35918 +f 34107/35912 34113/35918 34115/35920 +f 34119/35924 34108/35913 34109/35914 +f 34109/35914 34114/35919 34119/35924 +f 34118/35923 34115/35920 34098/35903 +f 34120/35925 34110/35915 34116/35921 +f 34121/35926 34116/35921 34111/35916 +f 34117/35922 34121/35926 34111/35916 +f 34118/35923 34110/35915 34122/35927 +f 34117/35922 34105/35910 34123/35928 +f 34119/35924 34124/35929 34105/35910 +f 34115/35920 34118/35923 34125/35930 +f 34120/35925 34122/35927 34110/35915 +f 34116/35921 34126/35931 34120/35925 +f 34116/35921 34121/35926 34126/35931 +f 34123/35928 34121/35926 34117/35922 +f 34122/35927 34127/35932 34118/35923 +f 34123/35928 34105/35910 34124/35929 +f 34128/35933 34124/35929 34119/35924 +f 34129/35934 34125/35930 34118/35923 +f 33983/35935 34115/35920 34125/35930 +f 34127/35932 34122/35927 34120/35925 +f 34126/35931 34127/35932 34120/35925 +f 34126/35931 34121/35926 34130/35936 +f 34131/35937 34121/35926 34123/35928 +f 34129/35934 34118/35923 34127/35932 +f 34124/35929 34132/35938 34123/35928 +f 34128/35933 34132/35938 34124/35929 +f 34129/35934 33975/35939 34125/35930 +f 34125/35930 33975/35939 33983/35935 +f 34133/35940 34127/35932 34126/35931 +f 34131/35937 34130/35936 34121/35926 +f 34130/35936 34133/35940 34126/35931 +f 34132/35938 34131/35937 34123/35928 +f 34129/35934 34127/35932 34134/35941 +f 34128/35933 34135/35942 34132/35938 +f 34136/35943 33975/35939 34129/35934 +f 34127/35932 34133/35940 34137/35944 +f 34138/35945 34130/35936 34131/35937 +f 34130/35936 34139/35946 34133/35940 +f 34131/35937 34132/35938 34135/35942 +f 34140/35947 34134/35941 34127/35932 +f 34134/35941 34136/35943 34129/35934 +f 33975/35939 34136/35943 34140/35947 +f 34139/35946 34137/35944 34133/35940 +f 34137/35944 34140/35947 34127/35932 +f 34138/35945 34131/35937 34135/35942 +f 34134/35941 34140/35947 34136/35943 +f 33967/35948 33975/35939 34140/35947 +f 34140/35947 34137/35944 33967/35948 +f 34141/35949 34142/35950 34143/35951 +f 34144/35952 34142/35950 34141/35949 +f 34143/35951 34142/35950 34145/35953 +f 34141/35949 34143/35951 34146/35954 +f 34142/35950 34144/35952 34147/35955 +f 34144/35952 34141/35949 34148/35956 +f 34142/35950 34149/35957 34145/35953 +f 34150/35958 34143/35951 34145/35953 +f 34146/35954 34143/35951 34151/35959 +f 34141/35949 34146/35954 34152/35960 +f 34153/35961 34142/35950 34147/35955 +f 34148/35956 34147/35955 34144/35952 +f 34152/35960 34148/35956 34141/35949 +f 34149/35957 34142/35950 34153/35961 +f 34145/35953 34149/35957 34154/35962 +f 34155/35963 34143/35951 34150/35958 +f 34156/35964 34150/35958 34145/35953 +f 34151/35959 34143/35951 34155/35963 +f 34151/35959 34157/35965 34146/35954 +f 34152/35960 34146/35954 34157/35965 +f 34147/35955 34158/35966 34153/35961 +f 34147/35955 34148/35956 34159/35967 +f 34152/35960 34160/35968 34148/35956 +f 34153/35961 34161/35969 34149/35957 +f 34145/35953 34154/35962 34162/35970 +f 34161/35969 34154/35962 34149/35957 +f 34150/35958 34163/35971 34155/35963 +f 34150/35958 34156/35964 34164/35972 +f 34156/35964 34145/35953 34162/35970 +f 34155/35963 34163/35971 34151/35959 +f 34157/35965 34151/35959 34165/35973 +f 34152/35960 34157/35965 34166/35974 +f 34158/35966 34167/35975 34153/35961 +f 34168/35976 34158/35966 34147/35955 +f 34159/35967 34148/35956 34160/35968 +f 34159/35967 34169/35977 34147/35955 +f 34166/35974 34160/35968 34152/35960 +f 34153/35961 34170/35978 34161/35969 +f 34162/35970 34154/35962 34171/35979 +f 34154/35962 34161/35969 34172/35980 +f 34150/35958 34164/35972 34163/35971 +f 34173/35981 34164/35972 34156/35964 +f 34174/35982 34156/35964 34162/35970 +f 34163/35971 34175/35983 34151/35959 +f 34165/35973 34176/35984 34157/35965 +f 34151/35959 34177/35985 34165/35973 +f 34157/35965 34176/35984 34166/35974 +f 34167/35975 34158/35966 34178/35986 +f 34167/35975 34170/35978 34153/35961 +f 34158/35966 34168/35976 34179/35987 +f 34147/35955 34169/35977 34168/35976 +f 34160/35968 34180/35988 34159/35967 +f 34181/35989 34169/35977 34159/35967 +f 34182/35990 34160/35968 34166/35974 +f 34183/35991 34161/35969 34170/35978 +f 34171/35979 34154/35962 34184/35992 +f 34162/35970 34171/35979 34185/35993 +f 34172/35980 34184/35992 34154/35962 +f 34183/35991 34172/35980 34161/35969 +f 34163/35971 34164/35972 34186/35994 +f 34164/35972 34173/35981 34186/35994 +f 34173/35981 34156/35964 34174/35982 +f 34187/35995 34174/35982 34162/35970 +f 34186/35994 34175/35983 34163/35971 +f 34151/35959 34175/35983 34177/35985 +f 34176/35984 34165/35973 34188/35996 +f 34177/35985 34189/35997 34165/35973 +f 34176/35984 34190/35998 34166/35974 +f 34158/35966 34179/35987 34178/35986 +f 34191/35999 34167/35975 34178/35986 +f 34192/36000 34170/35978 34167/35975 +f 34179/35987 34168/35976 34193/36001 +f 34168/35976 34169/35977 34193/36001 +f 34182/35990 34180/35988 34160/35968 +f 34180/35988 34181/35989 34159/35967 +f 34181/35989 34194/36002 34169/35977 +f 34166/35974 34190/35998 34182/35990 +f 34183/35991 34170/35978 34195/36003 +f 34196/36004 34171/35979 34184/35992 +f 34185/35993 34187/35995 34162/35970 +f 34196/36004 34185/35993 34171/35979 +f 34172/35980 34197/36005 34184/35992 +f 34198/36006 34172/35980 34183/35991 +f 34199/36007 34186/35994 34173/35981 +f 34200/36008 34173/35981 34174/35982 +f 34187/35995 34201/36009 34174/35982 +f 34186/35994 34202/36010 34175/35983 +f 34177/35985 34175/35983 34203/36011 +f 34188/35996 34165/35973 34189/35997 +f 34189/35997 34177/35985 34204/36012 +f 34176/35984 33688/36013 34190/35998 +f 34178/35986 34179/35987 34205/36014 +f 34205/36014 34191/35999 34178/35986 +f 34191/35999 34192/36000 34167/35975 +f 34192/36000 34195/36003 34170/35978 +f 34193/36001 34206/36015 34179/35987 +f 34193/36001 34169/35977 34194/36002 +f 34181/35989 34180/35988 34182/35990 +f 34207/36016 34194/36002 34181/35989 +f 33691/36017 34182/35990 34190/35998 +f 34195/36003 34198/36006 34183/35991 +f 34196/36004 34184/35992 34208/36018 +f 34187/35995 34185/35993 34209/36019 +f 34185/35993 34196/36004 34210/36020 +f 34211/36021 34197/36005 34172/35980 +f 34212/36022 34184/35992 34197/36005 +f 34198/36006 34211/36021 34172/35980 +f 34186/35994 34199/36007 34213/36023 +f 34199/36007 34173/35981 34200/36008 +f 34201/36009 34200/36008 34174/35982 +f 34209/36019 34201/36009 34187/35995 +f 34202/36010 34186/35994 34213/36023 +f 34203/36011 34175/35983 34202/36010 +f 34214/36024 34177/35985 34203/36011 +f 34189/35997 34215/36025 34188/35996 +f 34214/36024 34204/36012 34177/35985 +f 34189/35997 34204/36012 34216/36026 +f 34190/35998 33688/36013 33691/36017 +f 34217/36027 34205/36014 34179/35987 +f 34191/35999 34205/36014 34218/36028 +f 34195/36003 34192/36000 34191/35999 +f 34179/35987 34206/36015 34217/36027 +f 34219/36029 34206/36015 34193/36001 +f 34194/36002 34220/36030 34193/36001 +f 34207/36016 34181/35989 34182/35990 +f 34220/36030 34194/36002 34207/36016 +f 33691/36017 34207/36016 34182/35990 +f 34195/36003 34221/36031 34198/36006 +f 34184/35992 34222/36032 34208/36018 +f 34208/36018 34210/36020 34196/36004 +f 34223/36033 34209/36019 34185/35993 +f 34210/36020 34224/36034 34185/35993 +f 34211/36021 34212/36022 34197/36005 +f 34222/36032 34184/35992 34212/36022 +f 34211/36021 34198/36006 34225/36035 +f 34199/36007 32388/36036 34213/36023 +f 32388/36036 34199/36007 34200/36008 +f 34200/36008 34201/36009 34226/36037 +f 34201/36009 34209/36019 34227/36038 +f 34213/36023 34228/36039 34202/36010 +f 34203/36011 34202/36010 34228/36039 +f 34203/36011 34228/36039 34214/36024 +f 34215/36025 34189/35997 34216/36026 +f 34229/36040 34205/36014 34217/36027 +f 34218/36028 34205/36014 34230/36041 +f 34218/36028 34195/36003 34191/35999 +f 34206/36015 34231/36042 34217/36027 +f 34231/36042 34206/36015 34219/36029 +f 34193/36001 34220/36030 34219/36029 +f 34207/36016 33693/36043 34220/36030 +f 33691/36017 33693/36043 34207/36016 +f 34221/36031 34225/36035 34198/36006 +f 34221/36031 34195/36003 34218/36028 +f 34222/36032 34232/36044 34208/36018 +f 34208/36018 34232/36044 34210/36020 +f 34223/36033 34185/35993 34224/36034 +f 34209/36019 34223/36033 34227/36038 +f 34224/36034 34210/36020 34223/36033 +f 34233/36045 34212/36022 34211/36021 +f 34234/36046 34222/36032 34212/36022 +f 34225/36035 34235/36047 34211/36021 +f 34200/36008 34226/36037 32388/36036 +f 34226/36037 34201/36009 34227/36038 +f 34205/36014 34229/36040 34230/36041 +f 34229/36040 34217/36027 34236/36048 +f 34237/36049 34218/36028 34230/36041 +f 34217/36027 34231/36042 34236/36048 +f 34219/36029 34238/36050 34231/36042 +f 34219/36029 34220/36030 34239/36051 +f 33693/36043 34240/36052 34220/36030 +f 34225/36035 34221/36031 34241/36053 +f 34221/36031 34218/36028 34237/36049 +f 34232/36044 34222/36032 34234/36046 +f 34242/36054 34210/36020 34232/36044 +f 34223/36033 34210/36020 34227/36038 +f 34233/36045 34234/36046 34212/36022 +f 34243/36055 34233/36045 34211/36021 +f 34235/36047 34225/36035 34241/36053 +f 34235/36047 34243/36055 34211/36021 +f 32388/36036 34226/36037 32356/36056 +f 34244/36057 34226/36037 34227/36038 +f 34245/36058 34230/36041 34229/36040 +f 34246/36059 34229/36040 34236/36048 +f 34247/36060 34237/36049 34230/36041 +f 34248/36061 34236/36048 34231/36042 +f 34238/36050 34219/36029 34249/36062 +f 34248/36061 34231/36042 34238/36050 +f 34220/36030 34240/36052 34239/36051 +f 34219/36029 34239/36051 34249/36062 +f 33693/36043 33692/36063 34240/36052 +f 34241/36053 34221/36031 34250/36064 +f 34250/36064 34221/36031 34237/36049 +f 34232/36044 34234/36046 34251/36065 +f 34251/36065 34242/36054 34232/36044 +f 34242/36054 34252/36066 34210/36020 +f 34210/36020 34253/36067 34227/36038 +f 34243/36055 34234/36046 34233/36045 +f 34250/36064 34235/36047 34241/36053 +f 34235/36047 34254/36068 34243/36055 +f 34226/36037 32340/36069 32356/36056 +f 34244/36057 34255/36070 34226/36037 +f 34256/36071 34244/36057 34227/36038 +f 34229/36040 34246/36059 34245/36058 +f 34247/36060 34230/36041 34245/36058 +f 34248/36061 34246/36059 34236/36048 +f 34247/36060 34250/36064 34237/36049 +f 34238/36050 34249/36062 34257/36072 +f 34248/36061 34238/36050 34258/36073 +f 34240/36052 34259/36074 34239/36051 +f 34249/36062 34239/36051 34259/36074 +f 33692/36063 34260/36075 34240/36052 +f 34261/36076 34251/36065 34234/36046 +f 34242/36054 34251/36065 34262/36077 +f 34262/36077 34252/36066 34242/36054 +f 34253/36067 34210/36020 34252/36066 +f 34253/36067 34263/36078 34227/36038 +f 34243/36055 34261/36076 34234/36046 +f 34264/36079 34235/36047 34250/36064 +f 34235/36047 34264/36079 34254/36068 +f 34254/36068 34261/36076 34243/36055 +f 34255/36070 32340/36069 34226/36037 +f 34255/36070 34244/36057 27694/36080 +f 34265/36081 34244/36057 34256/36071 +f 34263/36078 34256/36071 34227/36038 +f 34246/36059 34086/36082 34245/36058 +f 34266/36083 34247/36060 34245/36058 +f 34258/36073 34246/36059 34248/36061 +f 34247/36060 34267/36084 34250/36064 +f 34238/36050 34257/36072 34268/36085 +f 34257/36072 34249/36062 34259/36074 +f 34238/36050 34268/36085 34258/36073 +f 34269/36086 34259/36074 34240/36052 +f 33692/36063 34270/36087 34260/36075 +f 34260/36075 34269/36086 34240/36052 +f 34251/36065 34261/36076 34271/36088 +f 34271/36088 34262/36077 34251/36065 +f 34262/36077 34272/36089 34252/36066 +f 34252/36066 34273/36090 34253/36067 +f 34263/36078 34253/36067 34274/36091 +f 34264/36079 34250/36064 34267/36084 +f 34254/36068 34264/36079 34267/36084 +f 34254/36068 34275/36092 34261/36076 +f 34255/36070 27694/36080 32340/36069 +f 27694/36080 34244/36057 34265/36081 +f 34256/36071 34276/36093 34265/36081 +f 34263/36078 34276/36093 34256/36071 +f 34086/36082 34246/36059 34277/36094 +f 34086/36082 34266/36083 34245/36058 +f 34247/36060 34266/36083 34267/36084 +f 34278/36095 34246/36059 34258/36073 +f 34257/36072 34279/36096 34268/36085 +f 34279/36096 34257/36072 34259/36074 +f 34268/36085 34278/36095 34258/36073 +f 34269/36086 34280/36097 34259/36074 +f 33687/36098 34270/36087 33692/36063 +f 34260/36075 34270/36087 34281/36099 +f 34280/36097 34269/36086 34260/36075 +f 34282/36100 34271/36088 34261/36076 +f 34262/36077 34271/36088 34283/36101 +f 34272/36089 34262/36077 34283/36101 +f 34272/36089 34273/36090 34252/36066 +f 34274/36091 34253/36067 34273/36090 +f 34284/36102 34263/36078 34274/36091 +f 34254/36068 34267/36084 34094/36103 +f 34254/36068 34285/36104 34275/36092 +f 34261/36076 34275/36092 34286/36105 +f 27694/36080 27687/36106 32340/36069 +f 27694/36080 34265/36081 33978/36107 +f 34287/36108 34265/36081 34276/36093 +f 34284/36102 34276/36093 34263/36078 +f 34086/36082 34277/36094 34288/36109 +f 34246/36059 34278/36095 34277/36094 +f 34094/36103 34266/36083 34086/36082 +f 34094/36103 34267/36084 34266/36083 +f 34268/36085 34279/36096 34280/36097 +f 34280/36097 34279/36096 34259/36074 +f 34268/36085 34289/36110 34278/36095 +f 33687/36098 34281/36099 34270/36087 +f 34281/36099 34290/36111 34260/36075 +f 34291/36112 34280/36097 34260/36075 +f 34282/36100 34283/36101 34271/36088 +f 34282/36100 34261/36076 34286/36105 +f 34272/36089 34283/36101 34292/36113 +f 34273/36090 34272/36089 34292/36113 +f 34274/36091 34273/36090 34284/36102 +f 34254/36068 34094/36103 34107/36114 +f 34285/36104 34254/36068 34107/36114 +f 33986/36115 34275/36092 34285/36104 +f 34275/36092 33988/36116 34286/36105 +f 34287/36108 33978/36107 34265/36081 +f 34287/36108 34276/36093 34293/36117 +f 34276/36093 34284/36102 34292/36113 +f 34288/36109 34277/36094 34294/36118 +f 34288/36109 34071/36119 34086/36082 +f 34277/36094 34278/36095 34294/36118 +f 34268/36085 34280/36097 34295/36120 +f 34289/36110 34268/36085 34295/36120 +f 34289/36110 34296/36121 34278/36095 +f 34297/36122 34281/36099 33687/36098 +f 34298/36123 34290/36111 34281/36099 +f 34290/36111 34291/36112 34260/36075 +f 34280/36097 34291/36112 34295/36120 +f 34282/36100 34299/36124 34283/36101 +f 34299/36124 34282/36100 34286/36105 +f 34292/36113 34283/36101 34300/36125 +f 34284/36102 34273/36090 34292/36113 +f 34107/36114 34115/36126 34285/36104 +f 34275/36092 33986/36115 33988/36116 +f 33986/36115 34285/36104 33983/36127 +f 34286/36105 33988/36116 33987/36128 +f 33978/36107 34287/36108 34301/36129 +f 34292/36113 34293/36117 34276/36093 +f 34287/36108 34293/36117 34300/36125 +f 34071/36119 34288/36109 34294/36118 +f 34302/36130 34294/36118 34278/36095 +f 34289/36110 34295/36120 34303/36131 +f 34296/36121 34289/36110 34304/36132 +f 34296/36121 34302/36130 34278/36095 +f 34305/36133 34281/36099 34297/36122 +f 33687/36098 34306/36134 34297/36122 +f 34281/36099 34305/36133 34298/36123 +f 34298/36123 34303/36131 34290/36111 +f 34291/36112 34290/36111 34303/36131 +f 34303/36131 34295/36120 34291/36112 +f 34283/36101 34299/36124 34300/36125 +f 33987/36128 34299/36124 34286/36105 +f 34292/36113 34300/36125 34293/36117 +f 34285/36104 34115/36126 33983/36127 +f 34301/36129 33980/36135 33978/36107 +f 34287/36108 34300/36125 34301/36129 +f 34294/36118 34307/36136 34071/36119 +f 34308/36137 34294/36118 34302/36130 +f 34289/36110 34303/36131 34304/36132 +f 34304/36132 34309/36138 34296/36121 +f 34296/36121 34308/36137 34302/36130 +f 34297/36122 34310/36139 34305/36133 +f 34306/36134 34310/36139 34297/36122 +f 33687/36098 33685/36140 34306/36134 +f 34298/36123 34305/36133 34311/36141 +f 34298/36123 34312/36142 34303/36131 +f 34300/36125 34299/36124 34301/36129 +f 34301/36129 34299/36124 33987/36128 +f 33987/36128 33980/36135 34301/36129 +f 34294/36118 34308/36137 34307/36136 +f 34058/36143 34071/36119 34307/36136 +f 34303/36131 34312/36142 34304/36132 +f 34309/36138 34304/36132 34313/36144 +f 34309/36138 34308/36137 34296/36121 +f 34314/36145 34305/36133 34310/36139 +f 34306/36134 34315/36146 34310/36139 +f 34306/36134 33685/36140 34316/36147 +f 34305/36133 34314/36145 34311/36141 +f 34317/36148 34298/36123 34311/36141 +f 34317/36148 34312/36142 34298/36123 +f 34308/36137 34309/36138 34307/36136 +f 34307/36136 34309/36138 34058/36143 +f 34304/36132 34312/36142 34313/36144 +f 34309/36138 34313/36144 34058/36143 +f 34310/36139 34315/36146 34314/36145 +f 34316/36147 34315/36146 34306/36134 +f 34316/36147 33685/36140 33680/36149 +f 34314/36145 33674/36150 34311/36141 +f 34312/36142 34317/36148 34313/36144 +f 34315/36146 33674/36150 34314/36145 +f 33680/36149 34315/36146 34316/36147 +f 33674/36150 34315/36146 33665/36151 +f 33665/36151 34315/36146 33680/36149 +f 34318/36152 34319/36153 20396/36154 +f 34320/36155 34319/36153 34318/36152 +f 20396/36154 34319/36153 20402/36156 +f 20396/36154 34320/36155 34318/36152 +f 34319/36153 34320/36155 34321/36157 +f 34322/36158 20402/36156 34319/36153 +f 20396/36154 34323/36159 34320/36155 +f 34321/36157 34320/36155 34324/36160 +f 34319/36153 34321/36157 34325/36161 +f 20423/36162 20402/36156 34322/36158 +f 34326/36163 34322/36158 34319/36153 +f 20396/36154 20371/36164 34323/36159 +f 34320/36155 34323/36159 34327/36165 +f 34320/36155 34328/36166 34324/36160 +f 34324/36160 34329/36167 34321/36157 +f 34330/36168 34325/36161 34321/36157 +f 34326/36163 34319/36153 34325/36161 +f 20423/36162 34322/36158 34331/36169 +f 34322/36158 34326/36163 34332/36170 +f 34323/36159 20371/36164 34327/36165 +f 34328/36166 34320/36155 34327/36165 +f 34329/36167 34324/36160 34328/36166 +f 34333/36171 34321/36157 34329/36167 +f 34334/36172 34325/36161 34330/36168 +f 34333/36171 34330/36168 34321/36157 +f 34326/36163 34325/36161 34334/36172 +f 34331/36169 34322/36158 34335/36173 +f 20423/36162 34331/36169 20458/36174 +f 34322/36158 34332/36170 34335/36173 +f 34326/36163 34335/36173 34332/36170 +f 34327/36165 20371/36164 34336/36175 +f 34337/36176 34328/36166 34327/36165 +f 34338/36177 34329/36167 34328/36166 +f 34329/36167 34339/36178 34333/36171 +f 34330/36168 34340/36179 34334/36172 +f 34340/36179 34330/36168 34333/36171 +f 34334/36172 34341/36180 34326/36163 +f 34342/36181 34331/36169 34335/36173 +f 20458/36174 34331/36169 34343/36182 +f 34326/36163 34344/36183 34335/36173 +f 34336/36175 20371/36164 20386/36184 +f 34336/36175 34337/36176 34327/36165 +f 34328/36166 34337/36176 34338/36177 +f 34329/36167 34338/36177 34345/36185 +f 34346/36186 34333/36171 34339/36178 +f 34339/36178 34329/36167 34345/36185 +f 34340/36179 34347/36187 34334/36172 +f 34340/36179 34333/36171 34348/36188 +f 34347/36187 34341/36180 34334/36172 +f 34349/36189 34326/36163 34341/36180 +f 34331/36169 34342/36181 34343/36182 +f 34344/36183 34342/36181 34335/36173 +f 34343/36182 34350/36190 20458/36174 +f 34326/36163 34349/36189 34344/36183 +f 34351/36191 34336/36175 20386/36184 +f 34336/36175 34352/36192 34337/36176 +f 34337/36176 34351/36191 34338/36177 +f 34345/36185 34338/36177 34353/36193 +f 34333/36171 34346/36186 34354/36194 +f 34355/36195 34346/36186 34339/36178 +f 34339/36178 34345/36185 34356/36196 +f 34347/36187 34340/36179 34348/36188 +f 34348/36188 34333/36171 34354/36194 +f 34341/36180 34347/36187 34357/36197 +f 34349/36189 34341/36180 34357/36197 +f 34344/36183 34343/36182 34342/36181 +f 34350/36190 34343/36182 34358/36198 +f 20458/36174 34350/36190 20443/36199 +f 34359/36200 34344/36183 34349/36189 +f 34352/36192 34336/36175 34351/36191 +f 20386/36184 20395/36201 34351/36191 +f 34351/36191 34337/36176 34352/36192 +f 34353/36193 34338/36177 34351/36191 +f 34353/36193 34360/36202 34345/36185 +f 34346/36186 34355/36195 34354/36194 +f 34339/36178 34356/36196 34355/36195 +f 34356/36196 34345/36185 34360/36202 +f 34361/36203 34347/36187 34348/36188 +f 34354/36194 34362/36204 34348/36188 +f 34347/36187 34359/36200 34357/36197 +f 34359/36200 34349/36189 34357/36197 +f 34344/36183 34363/36205 34343/36182 +f 34363/36205 34358/36198 34343/36182 +f 34358/36198 34364/36206 34350/36190 +f 34350/36190 34365/36207 20443/36199 +f 34359/36200 34363/36205 34344/36183 +f 34366/36208 34351/36191 20395/36201 +f 34351/36191 34366/36208 34353/36193 +f 34367/36209 34360/36202 34353/36193 +f 34354/36194 34355/36195 34368/36210 +f 34355/36195 34356/36196 34369/36211 +f 34356/36196 34360/36202 34370/36212 +f 34347/36187 34361/36203 34359/36200 +f 34361/36203 34348/36188 34362/36204 +f 34368/36210 34362/36204 34354/36194 +f 34358/36198 34363/36205 34371/36213 +f 34364/36206 34358/36198 34372/36214 +f 34364/36206 34373/36215 34350/36190 +f 34365/36207 20444/36216 20443/36199 +f 34373/36215 34365/36207 34350/36190 +f 34359/36200 34361/36203 34363/36205 +f 20410/36217 34366/36208 20395/36201 +f 34366/36208 34374/36218 34353/36193 +f 34360/36202 34367/36209 34370/36212 +f 34353/36193 34374/36218 34367/36209 +f 34375/36219 34368/36210 34355/36195 +f 34356/36196 34370/36212 34369/36211 +f 34355/36195 34369/36211 34375/36219 +f 34376/36220 34361/36203 34362/36204 +f 34368/36210 33796/36221 34362/36204 +f 34371/36213 34363/36205 34372/36214 +f 34358/36198 34371/36213 34372/36214 +f 34364/36206 34372/36214 34377/36222 +f 34373/36215 34364/36206 34377/36222 +f 34373/36215 20444/36216 34365/36207 +f 34372/36214 34363/36205 34361/36203 +f 34378/36223 34366/36208 20410/36217 +f 34374/36218 34366/36208 34378/36223 +f 34367/36209 34379/36224 34370/36212 +f 34380/36225 34367/36209 34374/36218 +f 33797/36226 34368/36210 34375/36219 +f 34370/36212 34381/36227 34369/36211 +f 34375/36219 34369/36211 34381/36227 +f 34372/36214 34361/36203 34376/36220 +f 32869/36228 34376/36220 34362/36204 +f 33796/36221 34368/36210 33797/36226 +f 34362/36204 33796/36221 32869/36228 +f 34376/36220 34377/36222 34372/36214 +f 20467/36229 34373/36215 34377/36222 +f 20467/36229 20444/36216 34373/36215 +f 34380/36225 34378/36223 20410/36217 +f 34378/36223 34380/36225 34374/36218 +f 34367/36209 34380/36225 34379/36224 +f 34370/36212 34379/36224 34382/36230 +f 34375/36219 34381/36227 33797/36226 +f 34382/36230 34381/36227 34370/36212 +f 34383/36231 34376/36220 32869/36228 +f 34377/36222 34376/36220 34384/36232 +f 34377/36222 32909/36233 20467/36229 +f 20410/36217 34385/36234 34380/36225 +f 34380/36225 34386/36235 34379/36224 +f 34379/36224 34387/36236 34382/36230 +f 34381/36227 34388/36237 33797/36226 +f 34382/36230 34388/36237 34381/36227 +f 34384/36232 34376/36220 34383/36231 +f 32879/36238 34383/36231 32869/36228 +f 34384/36232 34389/36239 34377/36222 +f 32909/36233 34377/36222 34389/36239 +f 20429/36240 34385/36234 20410/36217 +f 34386/36235 34380/36225 34385/36234 +f 34386/36235 34390/36241 34379/36224 +f 34390/36241 34387/36236 34379/36224 +f 34382/36230 34387/36236 34391/36242 +f 34388/36237 34392/36243 33797/36226 +f 34388/36237 34382/36230 34391/36242 +f 34384/36232 34383/36231 34393/36244 +f 34383/36231 32879/36238 34393/36244 +f 34389/36239 34384/36232 34393/36244 +f 34389/36239 32886/36245 32909/36233 +f 20429/36240 20416/36246 34385/36234 +f 34385/36234 34394/36247 34386/36235 +f 34386/36235 34394/36247 34390/36241 +f 34387/36236 34390/36241 34395/36248 +f 34387/36236 34395/36248 34391/36242 +f 34388/36237 34391/36242 34392/36243 +f 33797/36226 34392/36243 34396/36249 +f 34393/36244 32879/36238 32886/36245 +f 32886/36245 34389/36239 34393/36244 +f 34397/36250 34385/36234 20416/36246 +f 34394/36247 34385/36234 34397/36250 +f 34390/36241 34394/36247 34398/36251 +f 34395/36248 34390/36241 34399/36252 +f 34391/36242 34395/36248 34400/36253 +f 34391/36242 34401/36254 34392/36243 +f 32279/36255 33797/36226 34396/36249 +f 34402/36256 34396/36249 34392/36243 +f 34397/36250 20416/36246 20415/36257 +f 34398/36251 34394/36247 34397/36250 +f 34390/36241 34398/36251 34399/36252 +f 34395/36248 34399/36252 34400/36253 +f 34400/36253 34401/36254 34391/36242 +f 34392/36243 34401/36254 34402/36256 +f 34396/36249 32278/36258 32279/36255 +f 34396/36249 34402/36256 34403/36259 +f 34397/36250 20415/36257 34398/36251 +f 34398/36251 34404/36260 34399/36252 +f 34400/36253 34399/36252 34405/36261 +f 34402/36256 34401/36254 34400/36253 +f 34396/36249 34406/36262 32278/36258 +f 34405/36261 34403/36259 34402/36256 +f 34396/36249 34403/36259 34406/36262 +f 34404/36260 34398/36251 20415/36257 +f 34399/36252 34404/36260 34407/36263 +f 34408/36264 34405/36261 34399/36252 +f 34405/36261 34402/36256 34400/36253 +f 34406/36262 34409/36265 32278/36258 +f 34403/36259 34405/36261 34408/36264 +f 34410/36266 34406/36262 34403/36259 +f 20393/36267 34404/36260 20415/36257 +f 34407/36263 34411/36268 34399/36252 +f 34407/36263 34404/36260 20393/36267 +f 34411/36268 34408/36264 34399/36252 +f 32278/36258 34409/36265 32274/36269 +f 34409/36265 34406/36262 34412/36270 +f 34403/36259 34408/36264 34413/36271 +f 34414/36272 34406/36262 34410/36266 +f 34403/36259 34415/36273 34410/36266 +f 34407/36263 34416/36274 34411/36268 +f 20393/36267 20392/36275 34407/36263 +f 34417/36276 34408/36264 34411/36268 +f 34409/36265 34418/36277 32274/36269 +f 34406/36262 34419/36278 34412/36270 +f 34412/36270 34420/36279 34409/36265 +f 34408/36264 34421/36280 34413/36271 +f 34403/36259 34413/36271 34415/36273 +f 34419/36278 34406/36262 34414/36272 +f 34419/36278 34414/36272 34410/36266 +f 34415/36273 34422/36281 34410/36266 +f 34411/36268 34416/36274 34423/36282 +f 20383/36283 34416/36274 34407/36263 +f 20392/36275 20383/36283 34407/36263 +f 34411/36268 34423/36282 34417/36276 +f 34408/36264 34417/36276 34421/36280 +f 34420/36279 34418/36277 34409/36265 +f 34418/36277 32275/36284 32274/36269 +f 34412/36270 34419/36278 34422/36281 +f 34424/36285 34420/36279 34412/36270 +f 34413/36271 34421/36280 34417/36276 +f 34425/36286 34415/36273 34413/36271 +f 34422/36281 34419/36278 34410/36266 +f 34422/36281 34415/36273 34425/36286 +f 20360/36287 34423/36282 34416/36274 +f 20360/36287 34416/36274 20383/36283 +f 34423/36282 34426/36288 34417/36276 +f 34418/36277 34420/36279 34427/36289 +f 27739/36290 32275/36284 34418/36277 +f 34412/36270 34422/36281 34428/36291 +f 34424/36285 28073/36292 34420/36279 +f 34412/36270 34429/36293 34424/36285 +f 34417/36276 34430/36294 34413/36271 +f 34425/36286 34413/36271 34430/36294 +f 34422/36281 34425/36286 34431/36295 +f 20360/36287 34426/36288 34423/36282 +f 34430/36294 34417/36276 34426/36288 +f 34420/36279 28013/36296 34427/36289 +f 34427/36289 34432/36297 34418/36277 +f 27740/36298 27739/36290 34418/36277 +f 34428/36291 34429/36293 34412/36270 +f 34431/36295 34428/36291 34422/36281 +f 28073/36292 34424/36285 28091/36299 +f 28073/36292 28013/36296 34420/36279 +f 34429/36293 28103/36300 34424/36285 +f 34433/36301 34425/36286 34430/36294 +f 34433/36301 34431/36295 34425/36286 +f 20347/36302 34426/36288 20360/36287 +f 34430/36294 34426/36288 28140/36303 +f 28013/36296 27940/36304 34427/36289 +f 34427/36289 27889/36305 34432/36297 +f 34418/36277 34432/36297 27740/36298 +f 34429/36293 34428/36291 34434/36306 +f 34431/36295 34434/36306 34428/36291 +f 28091/36299 34424/36285 34435/36307 +f 28108/36308 28103/36300 34429/36293 +f 28103/36300 34435/36307 34424/36285 +f 34433/36301 34430/36294 28136/36309 +f 34433/36301 34436/36310 34431/36295 +f 28140/36303 34426/36288 20347/36302 +f 34430/36294 28140/36303 28136/36309 +f 27940/36304 27889/36305 34427/36289 +f 34432/36297 27889/36305 27740/36298 +f 34429/36293 34434/36306 28108/36308 +f 34431/36295 34436/36310 34434/36306 +f 28091/36299 34435/36307 28103/36300 +f 34436/36310 34433/36301 28136/36309 +f 28132/36311 28108/36308 34434/36306 +f 28132/36311 34434/36306 34436/36310 +f 28132/36311 34436/36310 28136/36309 +f 34437/36312 34438/36313 34439/36314 +f 34440/36315 34438/36313 34437/36312 +f 34441/36316 34439/36314 34438/36313 +f 34439/36314 34442/36317 34437/36312 +f 34438/36313 34440/36315 34441/36316 +f 34443/36318 34440/36315 34437/36312 +f 34444/36319 34439/36314 34441/36316 +f 34437/36312 34442/36317 34445/36320 +f 34442/36317 34439/36314 34446/36321 +f 34441/36316 34440/36315 34447/36322 +f 34448/36323 34443/36318 34437/36312 +f 34440/36315 34443/36318 29951/36324 +f 34444/36319 34446/36321 34439/36314 +f 34441/36316 34449/36325 34444/36319 +f 34450/36326 34437/36312 34445/36320 +f 34442/36317 34451/36327 34445/36320 +f 34446/36321 34452/36328 34442/36317 +f 34447/36322 34440/36315 29951/36324 +f 34449/36325 34441/36316 34447/36322 +f 34453/36329 34443/36318 34448/36323 +f 34448/36323 34437/36312 34454/36330 +f 29978/36331 29951/36324 34443/36318 +f 34455/36332 34446/36321 34444/36319 +f 34449/36325 34456/36333 34444/36319 +f 34457/36334 34437/36312 34450/36326 +f 34450/36326 34445/36320 34458/36335 +f 34442/36317 34452/36328 34451/36327 +f 34445/36320 34451/36327 34458/36335 +f 34452/36328 34446/36321 34459/36336 +f 29951/36324 29910/36337 34447/36322 +f 34447/36322 29910/36337 34449/36325 +f 34453/36329 29978/36331 34443/36318 +f 34460/36338 34453/36329 34448/36323 +f 34454/36330 34437/36312 34457/36334 +f 34454/36330 34457/36334 34448/36323 +f 34456/36333 34455/36332 34444/36319 +f 34461/36339 34446/36321 34455/36332 +f 34456/36333 34449/36325 29852/36340 +f 34462/36341 34457/36334 34450/36326 +f 34463/36342 34450/36326 34458/36335 +f 34464/36343 34451/36327 34452/36328 +f 34451/36327 34465/36344 34458/36335 +f 34459/36336 34446/36321 34461/36339 +f 34466/36345 34452/36328 34459/36336 +f 34449/36325 29910/36337 29852/36340 +f 34453/36329 34467/36346 29978/36331 +f 34453/36329 34460/36338 34468/36347 +f 34469/36348 34460/36338 34448/36323 +f 34457/36334 34469/36348 34448/36323 +f 34456/36333 34470/36349 34455/36332 +f 34461/36339 34455/36332 34470/36349 +f 29852/36340 29810/36350 34456/36333 +f 34471/36351 34457/36334 34462/36341 +f 34463/36342 34462/36341 34450/36326 +f 34472/36352 34463/36342 34458/36335 +f 34464/36343 34473/36353 34451/36327 +f 34452/36328 34466/36345 34464/36343 +f 34465/36344 34474/36354 34458/36335 +f 34451/36327 34473/36353 34465/36344 +f 34459/36336 34461/36339 34475/36355 +f 34459/36336 34475/36355 34466/36345 +f 34468/36347 34467/36346 34453/36329 +f 29978/36331 34467/36346 30018/36356 +f 34460/36338 34476/36357 34468/36347 +f 34471/36351 34460/36338 34469/36348 +f 34471/36351 34469/36348 34457/36334 +f 29810/36350 34470/36349 34456/36333 +f 34461/36339 34470/36349 34477/36358 +f 34471/36351 34462/36341 34478/36359 +f 34462/36341 34463/36342 34479/36360 +f 34480/36361 34463/36342 34472/36352 +f 34474/36354 34472/36352 34458/36335 +f 34464/36343 34481/36362 34473/36353 +f 34466/36345 34482/36363 34464/36343 +f 34474/36354 34465/36344 34483/36364 +f 34465/36344 34473/36353 34484/36365 +f 34461/36339 34477/36358 34475/36355 +f 34466/36345 34475/36355 34485/36366 +f 34486/36367 34467/36346 34468/36347 +f 30018/36356 34467/36346 34486/36367 +f 34471/36351 34476/36357 34460/36338 +f 34468/36347 34476/36357 34487/36368 +f 29810/36350 29765/36369 34470/36349 +f 34488/36370 34477/36358 34470/36349 +f 34462/36341 34489/36371 34478/36359 +f 34471/36351 34478/36359 34490/36372 +f 34463/36342 34480/36361 34479/36360 +f 34489/36371 34462/36341 34479/36360 +f 34472/36352 34474/36354 34480/36361 +f 34491/36373 34481/36362 34464/36343 +f 34481/36362 34484/36365 34473/36353 +f 34482/36363 34466/36345 34485/36366 +f 34464/36343 34482/36363 34492/36374 +f 34483/36364 34465/36344 34484/36365 +f 34474/36354 34483/36364 34493/36375 +f 34477/36358 34494/36376 34475/36355 +f 34485/36366 34475/36355 34495/36377 +f 34487/36368 34486/36367 34468/36347 +f 30018/36356 34486/36367 30028/36378 +f 34490/36372 34476/36357 34471/36351 +f 34487/36368 34476/36357 29994/36379 +f 29765/36369 34488/36370 34470/36349 +f 34488/36370 34496/36380 34477/36358 +f 34497/36381 34478/36359 34489/36371 +f 34490/36372 34478/36359 34498/36382 +f 34499/36383 34479/36360 34480/36361 +f 34500/36384 34489/36371 34479/36360 +f 34474/36354 34493/36375 34480/36361 +f 34491/36373 34501/36385 34481/36362 +f 34492/36374 34491/36373 34464/36343 +f 34501/36385 34484/36365 34481/36362 +f 34492/36374 34482/36363 34485/36366 +f 34484/36365 34501/36385 34483/36364 +f 34483/36364 34502/36386 34493/36375 +f 34477/36358 34496/36380 34494/36376 +f 34494/36376 34495/36377 34475/36355 +f 34485/36366 34495/36377 34503/36387 +f 34504/36388 34486/36367 34487/36368 +f 30060/36389 30028/36378 34486/36367 +f 34476/36357 34490/36372 29994/36379 +f 30007/36390 34487/36368 29994/36379 +f 29673/36391 34488/36370 29765/36369 +f 34496/36380 34488/36370 34505/36392 +f 34497/36381 34489/36371 34500/36384 +f 34497/36381 34498/36382 34478/36359 +f 34490/36372 34498/36382 34506/36393 +f 34499/36383 34500/36384 34479/36360 +f 34480/36361 34507/36394 34499/36383 +f 34493/36375 34508/36395 34480/36361 +f 34501/36385 34491/36373 34509/36396 +f 34510/36397 34491/36373 34492/36374 +f 34492/36374 34485/36366 34503/36387 +f 34501/36385 34509/36396 34483/36364 +f 34502/36386 34483/36364 34511/36398 +f 34512/36399 34493/36375 34502/36386 +f 34494/36376 34496/36380 29582/36400 +f 34494/36376 29582/36400 34495/36377 +f 34503/36387 34495/36377 29511/36401 +f 34487/36368 30007/36390 34504/36388 +f 34504/36388 30060/36389 34486/36367 +f 29994/36379 34490/36372 34506/36393 +f 34488/36370 29673/36391 34513/36402 +f 34488/36370 34513/36402 34505/36392 +f 29583/36403 34496/36380 34505/36392 +f 34500/36384 34514/36404 34497/36381 +f 34497/36381 34515/36405 34498/36382 +f 34498/36382 29956/36406 34506/36393 +f 34499/36383 34516/36407 34500/36384 +f 34517/36408 34499/36383 34507/36394 +f 34507/36394 34480/36361 34518/36409 +f 34508/36395 34493/36375 34512/36399 +f 34518/36409 34480/36361 34508/36395 +f 34509/36396 34491/36373 34510/36397 +f 34519/36410 34510/36397 34492/36374 +f 34503/36387 34519/36410 34492/36374 +f 34483/36364 34509/36396 34520/36411 +f 34511/36398 34483/36364 34520/36411 +f 34521/36412 34502/36386 34511/36398 +f 34512/36399 34502/36386 34521/36412 +f 34496/36380 29583/36403 29582/36400 +f 29582/36400 29511/36401 34495/36377 +f 34503/36387 29511/36401 29397/36413 +f 30046/36414 34504/36388 30007/36390 +f 30046/36414 30060/36389 34504/36388 +f 29956/36406 29994/36379 34506/36393 +f 34513/36402 29673/36391 29584/36415 +f 34513/36402 29515/36416 34505/36392 +f 29515/36416 29583/36403 34505/36392 +f 34516/36407 34514/36404 34500/36384 +f 34514/36404 34515/36405 34497/36381 +f 29930/36417 34498/36382 34515/36405 +f 29930/36417 29956/36406 34498/36382 +f 34517/36408 34516/36407 34499/36383 +f 34507/36394 34522/36418 34517/36408 +f 34523/36419 34507/36394 34518/36409 +f 34508/36395 34512/36399 34518/36409 +f 34510/36397 34524/36420 34509/36396 +f 34525/36421 34510/36397 34519/36410 +f 34525/36421 34519/36410 34503/36387 +f 34520/36411 34509/36396 34526/36422 +f 34520/36411 34527/36423 34511/36398 +f 34527/36423 34521/36412 34511/36398 +f 29397/36413 34525/36421 34503/36387 +f 29473/36424 34513/36402 29584/36415 +f 29515/36416 34513/36402 34528/36425 +f 34514/36404 34516/36407 34529/36426 +f 34515/36405 34514/36404 34530/36427 +f 34530/36427 29930/36417 34515/36405 +f 34516/36407 34517/36408 34529/36426 +f 34529/36426 34517/36408 34522/36418 +f 34507/36394 34531/36428 34522/36418 +f 34523/36419 34532/36429 34507/36394 +f 34509/36396 34524/36420 34533/36430 +f 34534/36431 34524/36420 34510/36397 +f 34510/36397 34525/36421 34535/36432 +f 34509/36396 34533/36430 34526/36422 +f 34526/36422 34536/36433 34520/36411 +f 34537/36434 34527/36423 34520/36411 +f 34521/36412 34527/36423 34538/36435 +f 34525/36421 29397/36413 29470/36436 +f 29473/36424 34528/36425 34513/36402 +f 34528/36425 29473/36424 29515/36416 +f 34522/36418 34514/36404 34529/36426 +f 34514/36404 34522/36418 34530/36427 +f 34531/36428 29930/36417 34530/36427 +f 34522/36418 34531/36428 34530/36427 +f 34507/36394 34532/36429 34531/36428 +f 29863/36437 34532/36429 34523/36419 +f 34524/36420 34534/36431 34533/36430 +f 34534/36431 34510/36397 34535/36432 +f 34535/36432 34525/36421 29470/36436 +f 34533/36430 34539/36438 34526/36422 +f 34540/36439 34536/36433 34526/36422 +f 34520/36411 34536/36433 34541/36440 +f 34520/36411 34542/36441 34537/36434 +f 34537/36434 34538/36435 34527/36423 +f 34531/36428 29899/36442 29930/36417 +f 29899/36442 34531/36428 34532/36429 +f 34532/36429 29863/36437 29862/36443 +f 34533/36430 34534/36431 34543/36444 +f 34535/36432 34544/36445 34534/36431 +f 29494/36446 34535/36432 29470/36436 +f 34533/36430 34543/36444 34539/36438 +f 34545/36447 34526/36422 34539/36438 +f 34536/36433 34540/36439 34546/36448 +f 34540/36439 34526/36422 34545/36447 +f 34542/36441 34520/36411 34541/36440 +f 34541/36440 34536/36433 34546/36448 +f 34537/36434 34542/36441 34547/36449 +f 34538/36435 34537/36434 34547/36449 +f 29862/36443 29899/36442 34532/36429 +f 34548/36450 34543/36444 34534/36431 +f 34544/36445 34535/36432 29494/36446 +f 34549/36451 34534/36431 34544/36445 +f 34548/36450 34539/36438 34543/36444 +f 34539/36438 34548/36450 34545/36447 +f 34546/36448 34540/36439 34550/36452 +f 34551/36453 34540/36439 34545/36447 +f 34541/36440 34552/36454 34542/36441 +f 34553/36455 34541/36440 34546/36448 +f 34542/36441 34552/36454 34547/36449 +f 34534/36431 34549/36451 34548/36450 +f 34544/36445 29494/36446 29460/36456 +f 34544/36445 29460/36456 34549/36451 +f 34548/36450 34551/36453 34545/36447 +f 34554/36457 34550/36452 34540/36439 +f 34546/36448 34550/36452 34555/36458 +f 34540/36439 34551/36453 34554/36457 +f 34552/36454 34541/36440 34553/36455 +f 34549/36451 34554/36457 34548/36450 +f 34549/36451 29460/36456 29459/36459 +f 34554/36457 34551/36453 34548/36450 +f 34550/36452 34554/36457 34556/36460 +f 34550/36452 34557/36461 34555/36458 +f 34556/36460 34554/36457 34549/36451 +f 34549/36451 29459/36459 34556/36460 +f 34558/36462 34550/36452 34556/36460 +f 34550/36452 34558/36462 34557/36461 +f 34556/36460 29459/36459 34558/36462 +f 34558/36462 29540/36463 34557/36461 +f 29540/36463 34558/36462 29459/36459 +f 32911/36464 15310/36465 33800/36466 +f 32869/36467 15310/36465 32911/36464 +f 33800/36466 32937/36468 32911/36464 +f 15310/36465 32869/36467 33796/36469 +f 34559/36470 27600/36471 27514/36472 +f 27600/36471 34559/36470 34560/36473 +f 34559/36470 27514/36472 27512/36474 +f 27600/36471 34560/36473 34561/36475 +f 34560/36473 34559/36470 34562/36476 +f 27512/36474 34563/36477 34559/36470 +f 34561/36475 34560/36473 34564/36478 +f 33499/36479 27600/36471 34561/36475 +f 34562/36476 34559/36470 34563/36477 +f 34565/36480 34560/36473 34562/36476 +f 27512/36474 34566/36481 34563/36477 +f 34565/36480 34564/36478 34560/36473 +f 34564/36478 34567/36482 34561/36475 +f 33499/36479 34561/36475 34567/36482 +f 27619/36483 27600/36471 33499/36479 +f 34562/36476 34563/36477 34568/36484 +f 34568/36484 34565/36480 34562/36476 +f 27512/36474 34569/36485 34566/36481 +f 34568/36484 34563/36477 34566/36481 +f 34564/36478 34565/36480 34570/36486 +f 34567/36482 34564/36478 34570/36486 +f 34567/36482 32813/36487 33499/36479 +f 34571/36488 34565/36480 34568/36484 +f 27512/36474 27496/36489 34569/36485 +f 34566/36481 34569/36485 34572/36490 +f 34566/36481 34573/36491 34568/36484 +f 34570/36486 34565/36480 34571/36488 +f 34567/36482 34570/36486 32821/36492 +f 32820/36493 32813/36487 34567/36482 +f 34573/36491 34571/36488 34568/36484 +f 27496/36489 34574/36494 34569/36485 +f 34572/36490 34569/36485 34574/36494 +f 34566/36481 34572/36490 34575/36495 +f 34566/36481 34575/36495 34573/36491 +f 34570/36486 34571/36488 34576/36496 +f 32821/36492 34570/36486 34576/36496 +f 32821/36492 32820/36493 34567/36482 +f 34571/36488 34573/36491 34577/36497 +f 34574/36494 27496/36489 34578/36498 +f 34579/36499 34572/36490 34574/36494 +f 34580/36500 34575/36495 34572/36490 +f 34573/36491 34575/36495 34580/36500 +f 34571/36488 34577/36497 34576/36496 +f 32821/36492 34576/36496 34581/36501 +f 34573/36491 34580/36500 34577/36497 +f 34578/36498 27496/36489 34582/36502 +f 34583/36503 34574/36494 34578/36498 +f 34584/36504 34572/36490 34579/36499 +f 34574/36494 34583/36503 34579/36499 +f 34572/36490 34584/36504 34580/36500 +f 34581/36501 34576/36496 34577/36497 +f 34581/36501 32803/36505 32821/36492 +f 34577/36497 34580/36500 34585/36506 +f 34586/36507 34582/36502 27496/36489 +f 34578/36498 34582/36502 34587/36508 +f 34583/36503 34578/36498 34588/36509 +f 34584/36504 34579/36499 34589/36510 +f 34579/36499 34583/36503 34589/36510 +f 34584/36504 34585/36506 34580/36500 +f 34577/36497 34590/36511 34581/36501 +f 34581/36501 34590/36511 32803/36505 +f 34577/36497 34585/36506 34591/36512 +f 34586/36507 27496/36489 27495/36513 +f 34582/36502 34586/36507 33883/36514 +f 34587/36508 34592/36515 34578/36498 +f 34593/36516 34587/36508 34582/36502 +f 34592/36515 34588/36509 34578/36498 +f 34583/36503 34588/36509 34594/36517 +f 34585/36506 34584/36504 34589/36510 +f 34589/36510 34583/36503 34594/36517 +f 34591/36512 34590/36511 34577/36497 +f 32803/36505 34590/36511 32817/36518 +f 34589/36510 34591/36512 34585/36506 +f 27531/36519 34586/36507 27495/36513 +f 34586/36507 27531/36519 33883/36514 +f 34593/36516 34582/36502 33883/36514 +f 34595/36520 34592/36515 34587/36508 +f 34596/36521 34587/36508 34593/36516 +f 34588/36509 34592/36515 34597/36522 +f 34588/36509 34597/36522 34594/36517 +f 34591/36512 34589/36510 34594/36517 +f 32817/36518 34590/36511 34591/36512 +f 33883/36514 33885/36523 34593/36516 +f 34595/36520 34587/36508 34598/36524 +f 34592/36515 34595/36520 34599/36525 +f 34598/36524 34587/36508 34596/36521 +f 34596/36521 34593/36516 33885/36523 +f 34599/36525 34597/36522 34592/36515 +f 34597/36522 34600/36526 34594/36517 +f 34591/36512 34594/36517 34601/36527 +f 32822/36528 32817/36518 34591/36512 +f 34602/36529 34595/36520 34598/36524 +f 34599/36525 34595/36520 34602/36529 +f 33896/36530 34598/36524 34596/36521 +f 33885/36523 34603/36531 34596/36521 +f 34602/36529 34597/36522 34599/36525 +f 34600/36526 34597/36522 34602/36529 +f 34600/36526 34604/36532 34594/36517 +f 34601/36527 32822/36528 34591/36512 +f 34594/36517 32822/36528 34601/36527 +f 34602/36529 34598/36524 32835/36533 +f 33889/36534 33896/36530 34596/36521 +f 33896/36530 32835/36533 34598/36524 +f 33885/36523 33889/36534 34603/36531 +f 34596/36521 34603/36531 33889/36534 +f 34602/36529 34605/36535 34600/36526 +f 34604/36532 34600/36526 34605/36535 +f 34604/36532 32822/36528 34594/36517 +f 32835/36533 34605/36535 34602/36529 +f 34604/36532 34605/36535 32822/36528 +f 34605/36535 32835/36533 32822/36528 +f 34606/36536 34607/36537 34608/36538 +f 34607/36537 34606/36536 34609/36539 +f 34610/36540 34608/36538 34607/36537 +f 34608/36538 34611/36541 34606/36536 +f 34607/36537 34609/36539 34612/36542 +f 34613/36543 34609/36539 34606/36536 +f 34610/36540 34614/36544 34608/36538 +f 34607/36537 34612/36542 34610/36540 +f 34606/36536 34611/36541 34615/36545 +f 34608/36538 34616/36546 34611/36541 +f 34612/36542 34609/36539 21421/36547 +f 34613/36543 34606/36536 34617/36548 +f 34613/36543 21421/36547 34609/36539 +f 34618/36549 34608/36538 34614/36544 +f 34619/36550 34614/36544 34610/36540 +f 34610/36540 34612/36542 34620/36551 +f 34621/36552 34615/36545 34611/36541 +f 34606/36536 34615/36545 34617/36548 +f 34608/36538 34618/36549 34616/36546 +f 34611/36541 34616/36546 34622/36553 +f 21421/36547 34623/36554 34612/36542 +f 34617/36548 34624/36555 34613/36543 +f 34625/36556 21421/36547 34613/36543 +f 34618/36549 34614/36544 34626/36557 +f 34614/36544 34619/36550 34627/36558 +f 34610/36540 34620/36551 34619/36550 +f 34623/36554 34620/36551 34612/36542 +f 34621/36552 34617/36548 34615/36545 +f 34611/36541 34628/36559 34621/36552 +f 34618/36549 34629/36560 34616/36546 +f 34611/36541 34622/36553 34628/36559 +f 34616/36546 34630/36561 34622/36553 +f 34623/36554 21421/36547 21417/36562 +f 34617/36548 34631/36563 34624/36555 +f 34624/36555 21430/36564 34613/36543 +f 21426/36565 21421/36547 34625/36556 +f 21426/36565 34625/36556 34613/36543 +f 34614/36544 34627/36558 34626/36557 +f 34626/36557 34632/36566 34618/36549 +f 34626/36557 34627/36558 34619/36550 +f 34633/36567 34619/36550 34620/36551 +f 21411/36568 34620/36551 34623/36554 +f 34621/36552 34631/36563 34617/36548 +f 34628/36559 34634/36569 34621/36552 +f 34618/36549 34635/36570 34629/36560 +f 34629/36560 34636/36571 34616/36546 +f 34622/36553 34630/36561 34628/36559 +f 34637/36572 34630/36561 34616/36546 +f 34623/36554 21417/36562 21411/36568 +f 34624/36555 34631/36563 34047/36573 +f 34638/36574 21430/36564 34624/36555 +f 21430/36564 21426/36565 34613/36543 +f 34639/36575 34632/36566 34626/36557 +f 34632/36566 34635/36570 34618/36549 +f 34619/36550 34633/36567 34626/36557 +f 34633/36567 34620/36551 21411/36568 +f 34640/36576 34631/36563 34621/36552 +f 34634/36569 34640/36576 34621/36552 +f 34641/36577 34634/36569 34628/36559 +f 34642/36578 34629/36560 34635/36570 +f 34643/36579 34636/36571 34629/36560 +f 34636/36571 34637/36572 34616/36546 +f 34628/36559 34630/36561 34641/36577 +f 34072/36580 34630/36561 34637/36572 +f 34047/36573 34631/36563 34644/36581 +f 34045/36582 34624/36555 34047/36573 +f 34638/36574 34645/36583 21430/36564 +f 34045/36582 34638/36574 34624/36555 +f 34632/36566 34639/36575 34646/36584 +f 34626/36557 34633/36567 34639/36575 +f 34647/36585 34635/36570 34632/36566 +f 21411/36568 21413/36586 34633/36567 +f 34640/36576 34644/36581 34631/36563 +f 34640/36576 34634/36569 34648/36587 +f 34641/36577 34649/36588 34634/36569 +f 34643/36579 34629/36560 34642/36578 +f 34635/36570 34650/36589 34642/36578 +f 34651/36590 34636/36571 34643/36579 +f 34637/36572 34636/36571 34651/36590 +f 34066/36591 34641/36577 34630/36561 +f 34630/36561 34072/36580 34066/36591 +f 34072/36580 34637/36572 34088/36592 +f 34644/36581 34037/36593 34047/36573 +f 21430/36564 34645/36583 34046/36594 +f 34638/36574 34044/36595 34645/36583 +f 34044/36595 34638/36574 34045/36582 +f 34646/36584 34647/36585 34632/36566 +f 34646/36584 34639/36575 34652/36596 +f 34633/36567 34653/36597 34639/36575 +f 34635/36570 34647/36585 34650/36589 +f 34633/36567 21413/36586 34653/36597 +f 34644/36581 34640/36576 34648/36587 +f 34648/36587 34634/36569 34649/36588 +f 34641/36577 34066/36591 34649/36588 +f 34642/36578 34654/36598 34643/36579 +f 34650/36589 34655/36599 34642/36578 +f 34643/36579 34656/36600 34651/36590 +f 34651/36590 34088/36592 34637/36572 +f 34648/36587 34037/36593 34644/36581 +f 34645/36583 34044/36595 34046/36594 +f 34655/36599 34647/36585 34646/36584 +f 34652/36596 34657/36601 34646/36584 +f 34639/36575 34658/36602 34652/36596 +f 34639/36575 34653/36597 34659/36603 +f 34650/36589 34647/36585 34655/36599 +f 34653/36597 21413/36586 34660/36604 +f 34648/36587 34649/36588 34053/36605 +f 34649/36588 34066/36591 34053/36605 +f 34661/36606 34654/36598 34642/36578 +f 34643/36579 34654/36598 34656/36600 +f 34655/36599 34662/36607 34642/36578 +f 34651/36590 34656/36600 34102/36608 +f 34102/36608 34088/36592 34651/36590 +f 34053/36605 34037/36593 34648/36587 +f 34657/36601 34655/36599 34646/36584 +f 34652/36596 34663/36609 34657/36601 +f 34658/36602 34639/36575 34659/36603 +f 34663/36609 34652/36596 34658/36602 +f 34659/36603 34653/36597 34660/36604 +f 21413/36586 21401/36610 34660/36604 +f 34664/36611 34654/36598 34661/36606 +f 34642/36578 34665/36612 34661/36606 +f 34666/36613 34656/36600 34654/36598 +f 34662/36607 34655/36599 34667/36614 +f 34642/36578 34662/36607 34665/36612 +f 34656/36600 34666/36613 34102/36608 +f 34655/36599 34657/36601 34667/36614 +f 34657/36601 34663/36609 34668/36615 +f 34659/36603 34669/36616 34658/36602 +f 34670/36617 34663/36609 34658/36602 +f 34660/36604 34671/36618 34659/36603 +f 21401/36610 34671/36618 34660/36604 +f 34654/36598 34664/36611 34672/36619 +f 34661/36606 34665/36612 34664/36611 +f 34654/36598 34672/36619 34666/36613 +f 34667/36614 34673/36620 34662/36607 +f 34662/36607 34673/36620 34665/36612 +f 34102/36608 34666/36613 34114/36621 +f 34667/36614 34657/36601 34674/36622 +f 34670/36617 34668/36615 34663/36609 +f 34657/36601 34668/36615 34674/36622 +f 34659/36603 34671/36618 34669/36616 +f 34675/36623 34658/36602 34669/36616 +f 34658/36602 34675/36623 34670/36617 +f 21401/36610 21397/36624 34671/36618 +f 34664/36611 34673/36620 34672/36619 +f 34673/36620 34664/36611 34665/36612 +f 34666/36613 34672/36619 34114/36621 +f 34673/36620 34667/36614 34676/36625 +f 34667/36614 34674/36622 34676/36625 +f 34668/36615 34670/36617 34676/36625 +f 34674/36622 34668/36615 34676/36625 +f 21397/36624 34669/36616 34671/36618 +f 34669/36616 34677/36626 34675/36623 +f 34678/36627 34670/36617 34675/36623 +f 34673/36620 34679/36628 34672/36619 +f 34679/36628 34114/36621 34672/36619 +f 34680/36629 34673/36620 34676/36625 +f 34676/36625 34670/36617 34678/36627 +f 34669/36616 21397/36624 34677/36626 +f 34675/36623 34677/36626 34681/36630 +f 34681/36630 34678/36627 34675/36623 +f 34673/36620 34138/36631 34679/36628 +f 34119/36632 34114/36621 34679/36628 +f 34673/36620 34680/36629 34138/36631 +f 34676/36625 34678/36627 34680/36629 +f 21397/36624 34682/36633 34677/36626 +f 34683/36634 34681/36630 34677/36626 +f 32839/36635 34678/36627 34681/36630 +f 34679/36628 34138/36631 34119/36632 +f 33913/36636 34138/36631 34680/36629 +f 34680/36629 34678/36627 32838/36637 +f 34684/36638 34682/36633 21397/36624 +f 34683/36634 34677/36626 34682/36633 +f 34683/36634 32839/36635 34681/36630 +f 34678/36627 32839/36635 32838/36637 +f 34138/36631 34128/36639 34119/36632 +f 33937/36640 34138/36631 33913/36636 +f 34680/36629 32830/36641 33913/36636 +f 32830/36641 34680/36629 32838/36637 +f 21397/36624 21389/36642 34684/36638 +f 34685/36643 34682/36633 34684/36638 +f 34682/36633 34685/36643 34683/36634 +f 34683/36634 32837/36644 32839/36635 +f 34135/36645 34128/36639 34138/36631 +f 34138/36631 33937/36640 34686/36646 +f 34687/36647 34684/36638 21389/36642 +f 34685/36643 34684/36638 34687/36647 +f 34683/36634 34685/36643 21377/36648 +f 21360/36649 32837/36644 34683/36634 +f 34139/36650 34138/36631 34686/36646 +f 33967/36651 34686/36646 33937/36640 +f 34688/36652 34687/36647 21389/36642 +f 34687/36647 21377/36648 34685/36643 +f 34683/36634 21377/36648 21360/36649 +f 34139/36650 34130/36653 34138/36631 +f 34137/36654 34139/36650 34686/36646 +f 34137/36654 34686/36646 33967/36651 +f 34688/36652 21377/36648 34687/36647 +f 21381/36655 34688/36652 21389/36642 +f 21377/36648 34688/36652 21381/36655 +f 34689/36656 34690/36657 34691/36658 +f 34689/36656 34692/36659 34690/36657 +f 34691/36658 34690/36657 34693/36660 +f 34694/36661 34689/36656 34691/36658 +f 34692/36659 34689/36656 34695/36662 +f 34692/36659 34696/36663 34690/36657 +f 34696/36663 34693/36660 34690/36657 +f 34693/36660 34697/36664 34691/36658 +f 34689/36656 34694/36661 34698/36665 +f 34691/36658 34699/36666 34694/36661 +f 34700/36667 34692/36659 34695/36662 +f 34689/36656 34698/36665 34695/36662 +f 34696/36663 34692/36659 34701/36668 +f 34702/36669 34693/36660 34696/36663 +f 34697/36664 34699/36666 34691/36658 +f 34697/36664 34693/36660 34703/36670 +f 34694/36661 34704/36671 34698/36665 +f 34705/36672 34694/36661 34699/36666 +f 34692/36659 34700/36667 34706/36673 +f 34700/36667 34695/36662 14977/36674 +f 34695/36662 34698/36665 15118/36675 +f 34701/36668 34692/36659 34706/36673 +f 34701/36668 34707/36676 34696/36663 +f 34702/36669 34703/36670 34693/36660 +f 34708/36677 34702/36669 34696/36663 +f 34699/36666 34697/36664 34709/36678 +f 34709/36678 34697/36664 34703/36670 +f 34704/36671 34694/36661 34710/36679 +f 34704/36671 15258/36680 34698/36665 +f 34710/36679 34694/36661 34705/36672 +f 34699/36666 34711/36681 34705/36672 +f 34706/36673 34700/36667 34712/36682 +f 34695/36662 15118/36675 14977/36674 +f 14977/36674 14751/36683 34700/36667 +f 34698/36665 15258/36680 15118/36675 +f 34713/36684 34701/36668 34706/36673 +f 34707/36676 34701/36668 34714/36685 +f 13712/36686 34696/36663 34707/36676 +f 34709/36678 34703/36670 34702/36669 +f 34702/36669 34708/36677 34715/36687 +f 34708/36677 34696/36663 13712/36686 +f 34709/36678 34711/36681 34699/36666 +f 15258/36680 34704/36671 34710/36679 +f 34705/36672 34716/36688 34710/36679 +f 34711/36681 34717/36689 34705/36672 +f 34718/36690 34706/36673 34712/36682 +f 34712/36682 34700/36667 14751/36683 +f 34706/36673 34718/36690 34713/36684 +f 34701/36668 34713/36684 34719/36691 +f 34719/36691 34714/36685 34701/36668 +f 13804/36692 34707/36676 34714/36685 +f 13712/36686 34707/36676 13804/36692 +f 34720/36693 34709/36678 34702/36669 +f 34708/36677 13294/36694 34715/36687 +f 34715/36687 34721/36695 34702/36669 +f 34708/36677 13712/36686 13513/36696 +f 34709/36678 34720/36693 34711/36681 +f 34710/36679 15316/36697 15258/36680 +f 34722/36698 34716/36688 34705/36672 +f 34716/36688 19992/36699 34710/36679 +f 34717/36689 34722/36698 34705/36672 +f 34723/36700 34717/36689 34711/36681 +f 34712/36682 14350/36701 34718/36690 +f 14751/36683 14500/36702 34712/36682 +f 34713/36684 34718/36690 34719/36691 +f 34719/36691 13804/36692 34714/36685 +f 34721/36695 34720/36693 34702/36669 +f 34708/36677 13513/36696 13294/36694 +f 13294/36694 34724/36703 34715/36687 +f 34721/36695 34715/36687 34724/36703 +f 34720/36693 34723/36700 34711/36681 +f 34710/36679 19992/36699 15316/36697 +f 34722/36698 20008/36704 34716/36688 +f 34716/36688 20008/36704 19992/36699 +f 34725/36705 34722/36698 34717/36689 +f 34717/36689 34723/36700 34725/36705 +f 34718/36690 14350/36701 14277/36706 +f 34712/36682 14500/36702 14350/36701 +f 34718/36690 14277/36706 34719/36691 +f 14075/36707 13804/36692 34719/36691 +f 34721/36695 34726/36708 34720/36693 +f 13294/36694 13292/36709 34724/36703 +f 34727/36710 34721/36695 34724/36703 +f 34726/36708 34723/36700 34720/36693 +f 20008/36704 34722/36698 20001/36711 +f 34725/36705 20001/36711 34722/36698 +f 34723/36700 34728/36712 34725/36705 +f 14277/36706 14075/36707 34719/36691 +f 34726/36708 34721/36695 34727/36710 +f 13292/36709 13192/36713 34724/36703 +f 34729/36714 34727/36710 34724/36703 +f 34727/36710 34723/36700 34726/36708 +f 34725/36705 34730/36715 20001/36711 +f 34727/36710 34728/36712 34723/36700 +f 34728/36712 34730/36715 34725/36705 +f 13192/36713 12948/36716 34724/36703 +f 34729/36714 34731/36717 34727/36710 +f 34729/36714 34724/36703 34732/36718 +f 34730/36715 20002/36719 20001/36711 +f 34731/36717 34728/36712 34727/36710 +f 34728/36712 34731/36717 34730/36715 +f 34733/36720 34724/36703 12948/36716 +f 34732/36718 34731/36717 34729/36714 +f 34734/36721 34732/36718 34724/36703 +f 20002/36719 34730/36715 34735/36722 +f 34730/36715 34731/36717 34735/36722 +f 12678/36723 34733/36720 12948/36716 +f 34724/36703 34733/36720 34734/36721 +f 34732/36718 34736/36724 34731/36717 +f 34737/36725 34732/36718 34734/36721 +f 20002/36719 34735/36722 19987/36726 +f 34731/36717 34736/36724 34735/36722 +f 34738/36727 34733/36720 12678/36723 +f 34733/36720 34739/36728 34734/36721 +f 34736/36724 34732/36718 34737/36725 +f 34740/36729 34737/36725 34734/36721 +f 34735/36722 34741/36730 19987/36726 +f 34736/36724 34737/36725 34735/36722 +f 34742/36731 34733/36720 34738/36727 +f 12678/36723 12322/36732 34738/36727 +f 34739/36728 34743/36733 34734/36721 +f 34733/36720 34742/36731 34739/36728 +f 34743/36733 34740/36729 34734/36721 +f 34740/36729 34741/36730 34737/36725 +f 34735/36722 34737/36725 34741/36730 +f 19987/36726 34741/36730 19964/36734 +f 34744/36735 34742/36731 34738/36727 +f 12322/36732 34745/36736 34738/36727 +f 34739/36728 34746/36737 34743/36733 +f 34739/36728 34742/36731 34746/36737 +f 34743/36733 34741/36730 34740/36729 +f 19964/36734 34741/36730 34747/36738 +f 34746/36737 34742/36731 34744/36735 +f 34745/36736 34744/36735 34738/36727 +f 12322/36732 12429/36739 34745/36736 +f 34743/36733 34746/36737 34748/36740 +f 34741/36730 34743/36733 34748/36740 +f 34747/36738 34741/36730 34748/36740 +f 19925/36741 19964/36734 34747/36738 +f 34744/36735 34749/36742 34746/36737 +f 34744/36735 34745/36736 34749/36742 +f 12429/36739 34750/36743 34745/36736 +f 34746/36737 34751/36744 34748/36740 +f 34747/36738 34748/36740 34752/36745 +f 19881/36746 19925/36741 34747/36738 +f 34751/36744 34746/36737 34749/36742 +f 34753/36747 34749/36742 34745/36736 +f 12429/36739 34754/36748 34750/36743 +f 34750/36743 34753/36747 34745/36736 +f 34751/36744 34752/36745 34748/36740 +f 34752/36745 34755/36749 34747/36738 +f 34755/36749 19881/36746 34747/36738 +f 34751/36744 34749/36742 34752/36745 +f 34753/36747 34756/36750 34749/36742 +f 12429/36739 12551/36751 34754/36748 +f 34754/36748 34757/36752 34750/36743 +f 34753/36747 34750/36743 34757/36752 +f 34756/36750 34755/36749 34752/36745 +f 19881/36746 34755/36749 19904/36753 +f 34749/36742 34756/36750 34752/36745 +f 34756/36750 34753/36747 34758/36754 +f 34754/36748 12551/36751 34759/36755 +f 34757/36752 34754/36748 34759/36755 +f 34757/36752 34758/36754 34753/36747 +f 34755/36749 34756/36750 34760/36756 +f 19904/36753 34755/36749 34760/36756 +f 34756/36750 34758/36754 34760/36756 +f 12551/36751 34761/36757 34759/36755 +f 34757/36752 34759/36755 34762/36758 +f 34763/36759 34758/36754 34757/36752 +f 19904/36753 34760/36756 19880/36760 +f 34760/36756 34758/36754 34763/36759 +f 12551/36751 12947/36761 34761/36757 +f 34761/36757 34764/36762 34759/36755 +f 34762/36758 34759/36755 34764/36762 +f 34757/36752 34762/36758 34763/36759 +f 19880/36760 34760/36756 34763/36759 +f 34761/36757 12947/36761 13065/36763 +f 13065/36763 34764/36762 34761/36757 +f 34764/36762 34765/36764 34762/36758 +f 34762/36758 34765/36764 34763/36759 +f 19854/36765 19880/36760 34763/36759 +f 13291/36766 34764/36762 13065/36763 +f 34765/36764 34764/36762 13291/36766 +f 34765/36764 19854/36765 34763/36759 +f 34765/36764 13291/36766 19855/36767 +f 34765/36764 19855/36767 19854/36765 +f 34766/36768 34767/36769 34768/36770 +f 34766/36768 34769/36771 34767/36769 +f 34770/36772 34768/36770 34767/36769 +f 34771/36773 34766/36768 34768/36770 +f 34769/36771 34766/36768 34772/36774 +f 34767/36769 34769/36771 34773/36775 +f 34774/36776 34768/36770 34770/36772 +f 34770/36772 34767/36769 14059/36777 +f 34766/36768 34771/36773 34775/36778 +f 34768/36770 34776/36779 34771/36773 +f 34766/36768 34775/36778 34772/36774 +f 34772/36774 34777/36780 34769/36771 +f 34773/36775 34778/36781 34767/36769 +f 34779/36782 34773/36775 34769/36771 +f 34776/36779 34768/36770 34774/36776 +f 34774/36776 34770/36772 34780/36783 +f 14185/36784 34770/36772 14059/36777 +f 34767/36769 13926/36785 14059/36777 +f 34775/36778 34771/36773 34776/36779 +f 34772/36774 34775/36778 34781/36786 +f 34777/36780 34772/36774 34781/36786 +f 34779/36782 34769/36771 34777/36780 +f 34773/36775 34782/36787 34778/36781 +f 34783/36788 34767/36769 34778/36781 +f 34773/36775 34779/36782 34782/36787 +f 34784/36789 34776/36779 34774/36776 +f 34774/36776 34780/36783 34785/36790 +f 34780/36783 34770/36772 14185/36784 +f 34783/36788 13926/36785 34767/36769 +f 34786/36791 34775/36778 34776/36779 +f 34775/36778 34786/36791 34781/36786 +f 34781/36786 34787/36792 34777/36780 +f 34777/36780 34788/36793 34779/36782 +f 34782/36787 34789/36794 34778/36781 +f 34783/36788 34778/36781 34790/36795 +f 34779/36782 34791/36796 34782/36787 +f 34776/36779 34784/36789 34786/36791 +f 34784/36789 34774/36776 34785/36790 +f 14325/36797 34785/36790 34780/36783 +f 14325/36797 34780/36783 14185/36784 +f 13926/36785 34783/36788 13927/36798 +f 34781/36786 34786/36791 30466/36799 +f 34777/36780 34787/36792 34792/36800 +f 34787/36792 34781/36786 34793/36801 +f 34788/36793 34777/36780 34794/36802 +f 34779/36782 34788/36793 34791/36796 +f 34789/36794 34795/36803 34778/36781 +f 34782/36787 34791/36796 34789/36794 +f 34778/36781 34795/36803 34790/36795 +f 34783/36788 34790/36795 34796/36804 +f 34784/36789 30472/36805 34786/36791 +f 30486/36806 34784/36789 34785/36790 +f 30507/36807 34785/36790 14325/36797 +f 13927/36798 34783/36788 34796/36804 +f 34781/36786 30466/36799 34793/36801 +f 34786/36791 30472/36805 30466/36799 +f 34792/36800 34794/36802 34777/36780 +f 34792/36800 34787/36792 34797/36808 +f 34797/36808 34787/36792 34793/36801 +f 34798/36809 34788/36793 34794/36802 +f 34798/36809 34791/36796 34788/36793 +f 34799/36810 34795/36803 34789/36794 +f 34791/36796 34799/36810 34789/36794 +f 34790/36795 34795/36803 13855/36811 +f 34790/36795 13683/36812 34796/36804 +f 30472/36805 34784/36789 30486/36806 +f 30507/36807 30486/36806 34785/36790 +f 13927/36798 34796/36804 13773/36813 +f 30466/36799 30452/36814 34793/36801 +f 34800/36815 34794/36802 34792/36800 +f 34797/36808 34800/36815 34792/36800 +f 30452/36814 34797/36808 34793/36801 +f 34800/36815 34798/36809 34794/36802 +f 34791/36796 34798/36809 34801/36816 +f 34795/36803 34799/36810 34802/36817 +f 34799/36810 34791/36796 34803/36818 +f 13855/36811 34795/36803 34804/36819 +f 13855/36811 13683/36812 34790/36795 +f 13773/36813 34796/36804 13683/36812 +f 34797/36808 34805/36820 34800/36815 +f 34797/36808 30452/36814 34805/36820 +f 34798/36809 34800/36815 34806/36821 +f 34798/36809 34807/36822 34801/36816 +f 34803/36818 34791/36796 34801/36816 +f 34802/36817 34799/36810 34803/36818 +f 34795/36803 34802/36817 34804/36819 +f 34808/36823 13855/36811 34804/36819 +f 34800/36815 34805/36820 34806/36821 +f 34805/36820 30452/36814 30446/36824 +f 34807/36822 34798/36809 34806/36821 +f 34807/36822 34809/36825 34801/36816 +f 34810/36826 34803/36818 34801/36816 +f 34803/36818 34811/36827 34802/36817 +f 34804/36819 34802/36817 34812/36828 +f 13855/36811 34808/36823 13685/36829 +f 34804/36819 34812/36828 34808/36823 +f 34805/36820 34813/36830 34806/36821 +f 34805/36820 30446/36824 34813/36830 +f 34809/36825 34807/36822 34806/36821 +f 34801/36816 34809/36825 34814/36831 +f 34810/36826 34811/36827 34803/36818 +f 34814/36831 34810/36826 34801/36816 +f 34815/36832 34802/36817 34811/36827 +f 34815/36832 34812/36828 34802/36817 +f 13590/36833 13685/36829 34808/36823 +f 34816/36834 34808/36823 34812/36828 +f 34813/36830 34809/36825 34806/36821 +f 34813/36830 30446/36824 34817/36835 +f 34818/36836 34814/36831 34809/36825 +f 34811/36827 34810/36826 34819/36837 +f 34814/36831 34820/36838 34810/36826 +f 34819/36837 34815/36832 34811/36827 +f 34815/36832 34821/36839 34812/36828 +f 34808/36823 34816/36834 13590/36833 +f 34812/36828 34822/36840 34816/36834 +f 34813/36830 34818/36836 34809/36825 +f 30446/36824 30442/36841 34817/36835 +f 34823/36842 34813/36830 34817/36835 +f 34814/36831 34818/36836 34820/36838 +f 34819/36837 34810/36826 34824/36843 +f 34824/36843 34810/36826 34820/36838 +f 34819/36837 34825/36844 34815/36832 +f 34821/36839 34815/36832 34826/36845 +f 34821/36839 34827/36846 34812/36828 +f 34816/36834 34828/36847 13590/36833 +f 34812/36828 34827/36846 34822/36840 +f 30436/36848 34816/36834 34822/36840 +f 34829/36849 34818/36836 34813/36830 +f 30442/36841 30428/36850 34817/36835 +f 34817/36835 34830/36851 34823/36842 +f 34813/36830 34823/36842 34829/36849 +f 34831/36852 34820/36838 34818/36836 +f 34819/36837 34824/36843 34820/36838 +f 34832/36853 34825/36844 34819/36837 +f 34826/36845 34815/36832 34825/36844 +f 34827/36846 34821/36839 34826/36845 +f 13590/36833 34828/36847 13485/36854 +f 34828/36847 34816/36834 30436/36848 +f 34833/36855 34822/36840 34827/36846 +f 34822/36840 30427/36856 30436/36848 +f 34818/36836 34829/36849 34831/36852 +f 34817/36835 30428/36850 34830/36851 +f 34823/36842 34830/36851 34834/36857 +f 34823/36842 34835/36858 34829/36849 +f 34832/36853 34820/36838 34831/36852 +f 34832/36853 34819/36837 34820/36838 +f 34825/36844 34832/36853 34826/36845 +f 34836/36859 34827/36846 34826/36845 +f 30436/36848 13485/36854 34828/36847 +f 30427/36856 34822/36840 34833/36855 +f 34833/36855 34827/36846 34837/36860 +f 34829/36849 34838/36861 34831/36852 +f 34834/36857 34830/36851 30428/36850 +f 34823/36842 34834/36857 34839/36862 +f 34823/36842 34839/36862 34835/36858 +f 34835/36858 34838/36861 34829/36849 +f 34831/36852 34838/36861 34832/36853 +f 34826/36845 34832/36853 34840/36863 +f 34837/36860 34827/36846 34836/36859 +f 34836/36859 34826/36845 34841/36864 +f 34842/36865 30427/36856 34833/36855 +f 34837/36860 34842/36865 34833/36855 +f 34834/36857 30428/36850 34843/36866 +f 34839/36862 34834/36857 34843/36866 +f 34835/36858 34839/36862 34844/36867 +f 34838/36861 34835/36858 34841/36864 +f 34838/36861 34840/36863 34832/36853 +f 34841/36864 34826/36845 34840/36863 +f 34837/36860 34836/36859 34845/36868 +f 34841/36864 34846/36869 34836/36859 +f 34842/36865 30411/36870 30427/36856 +f 34845/36868 34842/36865 34837/36860 +f 34843/36866 30428/36850 30429/36871 +f 34839/36862 34843/36866 34847/36872 +f 34839/36862 34847/36872 34844/36867 +f 34848/36873 34835/36858 34844/36867 +f 34835/36858 34848/36873 34841/36864 +f 34840/36863 34838/36861 34841/36864 +f 34846/36869 34845/36868 34836/36859 +f 34848/36873 34846/36869 34841/36864 +f 34849/36874 30411/36870 34842/36865 +f 34842/36865 34845/36868 34849/36874 +f 34843/36866 30429/36871 30441/36875 +f 34843/36866 30441/36875 34847/36872 +f 34844/36867 34847/36872 34850/36876 +f 34848/36873 34844/36867 34850/36876 +f 34846/36869 34849/36874 34845/36868 +f 34846/36869 34848/36873 34850/36876 +f 30411/36870 34849/36874 30392/36877 +f 34847/36872 30441/36875 30425/36878 +f 34847/36872 30425/36878 34850/36876 +f 34849/36874 34846/36869 34850/36876 +f 30392/36877 34849/36874 34850/36876 +f 30392/36877 34850/36876 30425/36878 +f 34851/36879 34852/36880 34853/36881 +f 34854/36882 34852/36880 34851/36879 +f 34855/36883 34853/36881 34852/36880 +f 34853/36881 34856/36884 34851/36879 +f 34854/36882 34857/36885 34852/36880 +f 34851/36879 33142/36886 34854/36882 +f 34858/36887 34853/36881 34855/36883 +f 34855/36883 34852/36880 34859/36888 +f 34860/36889 34851/36879 34856/36884 +f 34853/36881 34861/36890 34856/36884 +f 34862/36891 34857/36885 34854/36882 +f 34857/36885 34863/36892 34852/36880 +f 34851/36879 34860/36889 33142/36886 +f 34854/36882 33142/36886 34862/36891 +f 34858/36887 34861/36890 34853/36881 +f 34858/36887 34855/36883 28152/36893 +f 28143/36894 34855/36883 34859/36888 +f 34852/36880 34863/36892 34859/36888 +f 34864/36895 34860/36889 34856/36884 +f 34856/36884 34861/36890 34864/36895 +f 34857/36885 34862/36891 34865/36896 +f 34866/36897 34863/36892 34857/36885 +f 33142/36886 34860/36889 34867/36898 +f 33153/36899 34862/36891 33142/36886 +f 34861/36890 34858/36887 28177/36900 +f 28152/36893 34855/36883 28143/36894 +f 28177/36900 34858/36887 28152/36893 +f 28143/36894 34859/36888 34868/36901 +f 34863/36892 34869/36902 34859/36888 +f 34860/36889 34864/36895 34870/36903 +f 34864/36895 34861/36890 34871/36904 +f 34872/36905 34865/36896 34862/36891 +f 34865/36896 34866/36897 34857/36885 +f 34866/36897 34869/36902 34863/36892 +f 34870/36903 34867/36898 34860/36889 +f 34867/36898 33127/36906 33142/36886 +f 34873/36907 34861/36890 28177/36900 +f 34868/36901 28144/36908 28143/36894 +f 34868/36901 34859/36888 34869/36902 +f 34864/36895 34873/36907 34870/36903 +f 34873/36907 34864/36895 34871/36904 +f 34861/36890 34873/36907 34871/36904 +f 34872/36905 34874/36909 34865/36896 +f 34865/36896 34875/36910 34866/36897 +f 34876/36911 34869/36902 34866/36897 +f 34867/36898 34870/36903 34877/36912 +f 34878/36913 33127/36906 34867/36898 +f 34879/36914 34873/36907 28177/36900 +f 34880/36915 28144/36908 34868/36901 +f 34869/36902 34880/36915 34868/36901 +f 34873/36907 34879/36914 34870/36903 +f 34872/36905 34881/36916 34874/36909 +f 34874/36909 34875/36910 34865/36896 +f 34866/36897 34875/36910 34882/36917 +f 34869/36902 34876/36911 34883/36918 +f 34882/36917 34876/36911 34866/36897 +f 34870/36903 34879/36914 34877/36912 +f 34884/36919 34867/36898 34877/36912 +f 34867/36898 34885/36920 34878/36913 +f 28177/36900 28181/36921 34879/36914 +f 34880/36915 28146/36922 28144/36908 +f 34883/36918 34880/36915 34869/36902 +f 34874/36909 34881/36916 34886/36923 +f 34886/36923 34875/36910 34874/36909 +f 34882/36917 34875/36910 34887/36924 +f 34888/36925 34883/36918 34876/36911 +f 34889/36926 34876/36911 34882/36917 +f 34877/36912 34879/36914 34890/36927 +f 34867/36898 34884/36919 34885/36920 +f 34884/36919 34877/36912 34890/36927 +f 34878/36913 34885/36920 34891/36928 +f 34879/36914 28181/36921 34892/36929 +f 28153/36930 28146/36922 34880/36915 +f 28153/36930 34880/36915 34883/36918 +f 34881/36916 34893/36931 34886/36923 +f 34875/36910 34886/36923 34894/36932 +f 34875/36910 34894/36932 34887/36924 +f 34889/36926 34882/36917 34887/36924 +f 34888/36925 34895/36933 34883/36918 +f 34888/36925 34876/36911 34889/36926 +f 34890/36927 34879/36914 34892/36929 +f 34896/36934 34885/36920 34884/36919 +f 34884/36919 34890/36927 34896/36934 +f 34896/36934 34891/36928 34885/36920 +f 34897/36935 28153/36930 34883/36918 +f 34886/36923 34893/36931 34898/36936 +f 34894/36932 34886/36923 34898/36936 +f 34899/36937 34887/36924 34894/36932 +f 34889/36926 34887/36924 34888/36925 +f 34900/36938 34895/36933 34888/36925 +f 34895/36933 34901/36939 34883/36918 +f 34896/36934 34890/36927 34902/36940 +f 34902/36940 34891/36928 34896/36934 +f 34903/36941 34897/36935 34883/36918 +f 34897/36935 28166/36942 28153/36930 +f 34893/36931 34904/36943 34898/36936 +f 34898/36936 34905/36944 34894/36932 +f 34899/36937 34906/36945 34887/36924 +f 34894/36932 34905/36944 34899/36937 +f 34888/36925 34887/36924 34906/36945 +f 34906/36945 34900/36938 34888/36925 +f 34900/36938 34907/36946 34895/36933 +f 34883/36918 34901/36939 34903/36941 +f 34907/36946 34901/36939 34895/36933 +f 34908/36947 34897/36935 34903/36941 +f 34897/36935 34909/36948 28166/36942 +f 34898/36936 34904/36943 34905/36944 +f 34900/36938 34906/36945 34899/36937 +f 34899/36937 34905/36944 34900/36938 +f 34907/36946 34900/36938 34910/36949 +f 34910/36949 34903/36941 34901/36939 +f 34907/36946 34910/36949 34901/36939 +f 34908/36947 34903/36941 34911/36950 +f 34897/36935 34908/36947 34909/36948 +f 28166/36942 34909/36948 28180/36951 +f 34904/36943 34912/36952 34905/36944 +f 34913/36953 34900/36938 34905/36944 +f 34910/36949 34900/36938 34913/36953 +f 34903/36941 34910/36949 34914/36954 +f 34911/36950 34903/36941 34914/36954 +f 34915/36955 34908/36947 34911/36950 +f 34908/36947 34916/36956 34909/36948 +f 34909/36948 34917/36957 28180/36951 +f 34912/36952 34904/36943 34918/36958 +f 34905/36944 34912/36952 34913/36953 +f 34914/36954 34910/36949 34913/36953 +f 34919/36959 34911/36950 34914/36954 +f 34920/36960 34908/36947 34915/36955 +f 34915/36955 34911/36950 34921/36961 +f 34916/36956 34908/36947 34920/36960 +f 34916/36956 34922/36962 34909/36948 +f 34917/36957 28188/36963 28180/36951 +f 34923/36964 34917/36957 34909/36948 +f 34918/36958 34919/36959 34912/36952 +f 34913/36953 34912/36952 34919/36959 +f 34919/36959 34914/36954 34913/36953 +f 34919/36959 34921/36961 34911/36950 +f 34924/36965 34920/36960 34915/36955 +f 34921/36961 34924/36965 34915/36955 +f 34920/36960 34925/36966 34916/36956 +f 34916/36956 34925/36966 34922/36962 +f 34923/36964 34909/36948 34922/36962 +f 28188/36963 34917/36957 34926/36967 +f 34923/36964 34926/36967 34917/36957 +f 34921/36961 34919/36959 34918/36958 +f 34924/36965 34925/36966 34920/36960 +f 34921/36961 34927/36968 34924/36965 +f 34925/36966 34928/36969 34922/36962 +f 34929/36970 34923/36964 34922/36962 +f 28188/36963 34926/36967 34930/36971 +f 34926/36967 34923/36964 34929/36970 +f 34931/36972 34921/36961 34918/36958 +f 34924/36965 34932/36973 34925/36966 +f 34931/36972 34927/36968 34921/36961 +f 34932/36973 34924/36965 34927/36968 +f 34933/36974 34928/36969 34925/36966 +f 34922/36962 34928/36969 34934/36975 +f 34922/36962 34934/36975 34929/36970 +f 34929/36970 34930/36971 34926/36967 +f 34930/36971 28192/36976 28188/36963 +f 34935/36977 34931/36972 34918/36958 +f 34932/36973 34936/36978 34925/36966 +f 34927/36968 34931/36972 34932/36973 +f 34933/36974 34937/36979 34928/36969 +f 34933/36974 34925/36966 34937/36979 +f 34934/36975 34928/36969 34938/36980 +f 34934/36975 34939/36981 34929/36970 +f 34929/36970 34939/36981 34930/36971 +f 28192/36976 34930/36971 34940/36982 +f 34935/36977 34941/36983 34931/36972 +f 34936/36978 34932/36973 34931/36972 +f 34936/36978 34937/36979 34925/36966 +f 34938/36980 34928/36969 34937/36979 +f 34934/36975 34938/36980 34942/36984 +f 34934/36975 34943/36985 34939/36981 +f 34939/36981 34940/36982 34930/36971 +f 34940/36982 34944/36986 28192/36976 +f 34931/36972 34941/36983 34936/36978 +f 34941/36983 34935/36977 34945/36987 +f 34946/36988 34937/36979 34936/36978 +f 34938/36980 34937/36979 34946/36988 +f 34947/36989 34942/36984 34938/36980 +f 34942/36984 34948/36990 34934/36975 +f 34943/36985 34934/36975 34949/36991 +f 34943/36985 34940/36982 34939/36981 +f 28193/36992 28192/36976 34944/36986 +f 34950/36993 34944/36986 34940/36982 +f 34936/36978 34941/36983 34951/36994 +f 34941/36983 34945/36987 34951/36994 +f 34936/36978 34951/36994 34946/36988 +f 34946/36988 34947/36989 34938/36980 +f 34942/36984 34947/36989 34952/36995 +f 34948/36990 34942/36984 34953/36996 +f 34948/36990 34949/36991 34934/36975 +f 34954/36997 34943/36985 34949/36991 +f 34940/36982 34943/36985 34950/36993 +f 34950/36993 34955/36998 34944/36986 +f 34946/36988 34951/36994 34945/36987 +f 34947/36989 34946/36988 34945/36987 +f 34947/36989 34945/36987 34952/36995 +f 34952/36995 34956/36999 34942/36984 +f 34956/36999 34953/36996 34942/36984 +f 34953/36996 34957/37000 34948/36990 +f 34949/36991 34948/36990 34957/37000 +f 34949/36991 34957/37000 34954/36997 +f 34954/36997 34958/37001 34943/36985 +f 34950/36993 34943/36985 34958/37001 +f 34958/37001 34955/36998 34950/36993 +f 34956/36999 34959/37002 34953/36996 +f 34959/37002 34957/37000 34953/36996 +f 34959/37002 34954/36997 34957/37000 +f 34960/37003 34958/37001 34954/36997 +f 34955/36998 34958/37001 34960/37003 +f 34961/37004 34959/37002 34956/36999 +f 34962/37005 34954/36997 34959/37002 +f 34960/37003 34954/36997 34962/37005 +f 34960/37003 34963/37006 34955/36998 +f 34956/36999 34964/37007 34961/37004 +f 34959/37002 34961/37004 34962/37005 +f 34961/37004 34960/37003 34962/37005 +f 34965/37008 34963/37006 34960/37003 +f 34963/37006 34966/37009 34955/36998 +f 34967/37010 34961/37004 34964/37007 +f 34961/37004 34965/37008 34960/37003 +f 34965/37008 34968/37011 34963/37006 +f 34963/37006 34968/37011 34966/37009 +f 34967/37010 34964/37007 34969/37012 +f 34965/37008 34961/37004 34967/37010 +f 34968/37011 34965/37008 34970/37013 +f 34968/37011 34971/37014 34966/37009 +f 34967/37010 34969/37012 34972/37015 +f 34970/37013 34965/37008 34967/37010 +f 34970/37013 34973/37016 34968/37011 +f 34973/37016 34971/37014 34968/37011 +f 34972/37015 34969/37012 34974/37017 +f 34972/37015 34970/37013 34967/37010 +f 34970/37013 34972/37015 34973/37016 +f 34973/37016 34975/37018 34971/37014 +f 34969/37012 34976/37019 34974/37017 +f 34973/37016 34972/37015 34974/37017 +f 34975/37018 34973/37016 34974/37017 +f 34976/37019 34975/37018 34974/37017 +f 6077/37020 34977/37021 6075/37022 +f 34977/37021 6077/37020 34978/37023 +f 6075/37022 34977/37021 34978/37023 +f 34978/37023 6077/37020 6181/37024 +f 34978/37023 6074/37025 6075/37022 +f 6181/37024 34979/37026 34978/37023 +f 34980/37027 6074/37025 34978/37023 +f 34979/37026 34980/37027 34978/37023 +f 34981/37028 34979/37026 6181/37024 +f 34980/37027 5968/37029 6074/37025 +f 34979/37026 34982/37030 34980/37027 +f 34981/37028 34983/37031 34979/37026 +f 34981/37028 6181/37024 6236/37032 +f 34984/37033 5968/37029 34980/37027 +f 34985/37034 34982/37030 34979/37026 +f 34986/37035 34980/37027 34982/37030 +f 34983/37031 34981/37028 34987/37036 +f 34979/37026 34983/37031 34988/37037 +f 34981/37028 6236/37032 34989/37038 +f 5968/37029 34984/37033 6025/37039 +f 34984/37033 34980/37027 34986/37035 +f 34985/37034 34990/37040 34982/37030 +f 34985/37034 34979/37026 34988/37037 +f 34982/37030 34990/37040 34986/37035 +f 34987/37036 34981/37028 34989/37038 +f 34987/37036 34991/37041 34983/37031 +f 34983/37031 6628/37042 34988/37037 +f 6373/37043 34989/37038 6236/37032 +f 34992/37044 6025/37039 34984/37033 +f 34986/37035 34992/37044 34984/37033 +f 34993/37045 34990/37040 34985/37034 +f 34994/37046 34985/37034 34988/37037 +f 34995/37047 34986/37035 34990/37040 +f 34989/37038 6373/37043 34987/37036 +f 34983/37031 34991/37041 6628/37042 +f 34991/37041 34987/37036 6366/37048 +f 6628/37042 6716/37049 34988/37037 +f 6025/37039 34992/37044 5975/37050 +f 34992/37044 34986/37035 34995/37047 +f 34993/37045 34995/37047 34990/37040 +f 34993/37045 34985/37034 34994/37046 +f 34994/37046 34988/37037 6716/37049 +f 34987/37036 6373/37043 6366/37048 +f 6454/37051 6628/37042 34991/37041 +f 6454/37051 34991/37041 6366/37048 +f 34996/37052 5975/37050 34992/37044 +f 34997/37053 34992/37044 34995/37047 +f 34997/37053 34995/37047 34993/37045 +f 34998/37054 34993/37045 34994/37046 +f 6808/37055 34994/37046 6716/37049 +f 6081/37056 5975/37050 34996/37052 +f 34992/37044 34999/37057 34996/37052 +f 34992/37044 34997/37053 34999/37057 +f 34998/37054 34997/37053 34993/37045 +f 34994/37046 35000/37058 34998/37054 +f 34994/37046 6808/37055 35000/37058 +f 35001/37059 6081/37056 34996/37052 +f 34996/37052 34999/37057 35001/37059 +f 34999/37057 34997/37053 35002/37060 +f 34997/37053 34998/37054 35003/37061 +f 34998/37054 35000/37058 35004/37062 +f 6808/37055 6728/37063 35000/37058 +f 6240/37064 6081/37056 35001/37059 +f 34999/37057 35002/37060 35001/37059 +f 34997/37053 35003/37061 35002/37060 +f 34998/37054 35004/37062 35003/37061 +f 6549/37065 35004/37062 35000/37058 +f 6728/37063 6549/37065 35000/37058 +f 35001/37059 35002/37060 6240/37064 +f 6380/37066 35002/37060 35003/37061 +f 35003/37061 35004/37062 6549/37065 +f 6380/37066 6240/37064 35002/37060 +f 6549/37065 6380/37066 35003/37061 +f 24755/37067 8164/37068 35005/37069 +f 35006/37070 35005/37069 8164/37068 +f 35007/37071 24755/37067 35005/37069 +f 35006/37070 8164/37068 8030/37072 +f 35008/37073 35005/37069 35006/37070 +f 24715/37074 24755/37067 35007/37071 +f 35007/37071 35005/37069 35008/37073 +f 35006/37070 8030/37072 35009/37075 +f 35010/37076 35008/37073 35006/37070 +f 35011/37077 24715/37074 35007/37071 +f 35008/37073 35012/37078 35007/37071 +f 35009/37075 8030/37072 35013/37079 +f 35014/37080 35006/37070 35009/37075 +f 35015/37081 35008/37073 35010/37076 +f 35014/37080 35010/37076 35006/37070 +f 24667/37082 24715/37074 35011/37077 +f 35011/37077 35007/37071 35012/37078 +f 35008/37073 35016/37083 35012/37078 +f 8030/37072 7935/37084 35013/37079 +f 35013/37079 35014/37080 35009/37075 +f 35015/37081 35016/37083 35008/37073 +f 35017/37085 35015/37081 35010/37076 +f 35010/37076 35014/37080 35018/37086 +f 24667/37082 35011/37077 35019/37087 +f 35019/37087 35011/37077 35012/37078 +f 35016/37083 35020/37088 35012/37078 +f 7935/37084 7792/37089 35013/37079 +f 35021/37090 35014/37080 35013/37079 +f 35022/37091 35016/37083 35015/37081 +f 35022/37091 35015/37081 35017/37085 +f 35010/37076 35018/37086 35017/37085 +f 35023/37092 35018/37086 35014/37080 +f 24667/37082 35019/37087 24617/37093 +f 35012/37078 35020/37088 35019/37087 +f 35020/37088 35016/37083 35024/37094 +f 35021/37090 35013/37079 7792/37089 +f 35014/37080 35021/37090 35025/37095 +f 35024/37094 35016/37083 35022/37091 +f 35022/37091 35017/37085 35026/37096 +f 35027/37097 35017/37085 35018/37086 +f 35028/37098 35018/37086 35023/37092 +f 35014/37080 35025/37095 35023/37092 +f 35029/37099 24617/37093 35019/37087 +f 35020/37088 35029/37099 35019/37087 +f 35020/37088 35024/37094 35030/37100 +f 7681/37101 35021/37090 7792/37089 +f 35031/37102 35025/37095 35021/37090 +f 35026/37096 35024/37094 35022/37091 +f 35026/37096 35017/37085 35027/37097 +f 35027/37097 35018/37086 35028/37098 +f 35023/37092 35032/37103 35028/37098 +f 35023/37092 35025/37095 35033/37104 +f 24617/37093 35029/37099 24643/37105 +f 35030/37100 35029/37099 35020/37088 +f 35034/37106 35030/37100 35024/37094 +f 35031/37102 35021/37090 7681/37101 +f 35025/37095 35031/37102 35033/37104 +f 35034/37106 35024/37094 35026/37096 +f 35026/37096 35027/37097 35035/37107 +f 35028/37098 35035/37107 35027/37097 +f 35032/37103 35036/37108 35028/37098 +f 35023/37092 35037/37109 35032/37103 +f 35023/37092 35033/37104 35038/37110 +f 35029/37099 35030/37100 24643/37105 +f 35030/37100 35034/37106 35039/37111 +f 35031/37102 7681/37101 7734/37112 +f 35031/37102 35040/37113 35033/37104 +f 35026/37096 35036/37108 35034/37106 +f 35026/37096 35035/37107 35036/37108 +f 35035/37107 35028/37098 35036/37108 +f 35032/37103 35041/37114 35036/37108 +f 35032/37103 35037/37109 24669/37115 +f 35037/37109 35023/37092 35038/37110 +f 35042/37116 35038/37110 35033/37104 +f 24643/37105 35030/37100 35039/37111 +f 35039/37111 35034/37106 24618/37117 +f 35031/37102 7734/37112 35043/37118 +f 35044/37119 35040/37113 35031/37102 +f 35033/37104 35040/37113 35042/37116 +f 35034/37106 35036/37108 35045/37120 +f 35036/37108 35041/37114 35045/37120 +f 35041/37114 35032/37103 24693/37121 +f 24669/37115 35037/37109 35046/37122 +f 35032/37103 24669/37115 24693/37121 +f 35038/37110 35046/37122 35037/37109 +f 35042/37116 35046/37122 35038/37110 +f 24618/37117 24643/37105 35039/37111 +f 35034/37106 24642/37123 24618/37117 +f 7734/37112 7682/37124 35043/37118 +f 35044/37119 35031/37102 35043/37118 +f 35040/37113 35044/37119 35042/37116 +f 24642/37123 35034/37106 35045/37120 +f 35041/37114 24642/37123 35045/37120 +f 24642/37123 35041/37114 24693/37121 +f 24670/37125 24669/37115 35046/37122 +f 35042/37116 35047/37126 35046/37122 +f 35043/37118 7682/37124 35048/37127 +f 35043/37118 35048/37127 35044/37119 +f 35044/37119 35047/37126 35042/37116 +f 35046/37122 24646/37128 24670/37125 +f 35047/37126 24646/37128 35046/37122 +f 35049/37129 35048/37127 7682/37124 +f 35048/37127 35050/37130 35044/37119 +f 35050/37130 35047/37126 35044/37119 +f 24646/37128 35047/37126 35051/37131 +f 35048/37127 35049/37129 35052/37132 +f 35049/37129 7682/37124 7683/37133 +f 35050/37130 35048/37127 35053/37134 +f 35047/37126 35050/37130 35051/37131 +f 24646/37128 35051/37131 24645/37135 +f 35049/37129 7683/37133 35052/37132 +f 35053/37134 35048/37127 35052/37132 +f 35054/37136 35050/37130 35053/37134 +f 35051/37131 35050/37130 35054/37136 +f 35055/37137 24645/37135 35051/37131 +f 7683/37133 7840/37138 35052/37132 +f 35056/37139 35053/37134 35052/37132 +f 35053/37134 35057/37140 35054/37136 +f 35055/37137 35051/37131 35054/37136 +f 24645/37135 35055/37137 24587/37141 +f 7840/37138 35056/37139 35052/37132 +f 35053/37134 35056/37139 35057/37140 +f 35054/37136 35057/37140 35058/37142 +f 35054/37136 35059/37143 35055/37137 +f 24587/37141 35055/37137 35060/37144 +f 7840/37138 8033/37145 35056/37139 +f 35061/37146 35057/37140 35056/37139 +f 35059/37143 35054/37136 35058/37142 +f 35057/37140 35061/37146 35058/37142 +f 35055/37137 35059/37143 35062/37147 +f 35062/37147 35060/37144 35055/37137 +f 24587/37141 35060/37144 35063/37148 +f 35056/37139 8033/37145 35061/37146 +f 35058/37142 35064/37149 35059/37143 +f 35058/37142 35061/37146 35065/37150 +f 35059/37143 35066/37151 35062/37147 +f 35062/37147 35063/37148 35060/37144 +f 35063/37148 24553/37152 24587/37141 +f 8078/37153 35061/37146 8033/37145 +f 35059/37143 35064/37149 35066/37151 +f 35058/37142 35067/37154 35064/37149 +f 35061/37146 8078/37153 35065/37150 +f 24555/37155 35058/37142 35065/37150 +f 35066/37151 35063/37148 35062/37147 +f 24553/37152 35063/37148 35066/37151 +f 35064/37149 35067/37154 35066/37151 +f 24555/37155 35067/37154 35058/37142 +f 8078/37153 24515/37156 35065/37150 +f 24555/37155 35065/37150 24515/37156 +f 24471/37157 24553/37152 35066/37151 +f 24471/37157 35066/37151 35067/37154 +f 24471/37157 35067/37154 24555/37155 +f 35068/37158 34878/37159 35069/37160 +f 35068/37158 33127/37161 34878/37159 +f 34891/37162 35069/37160 34878/37159 +f 35070/37163 35068/37158 35069/37160 +f 33127/37161 35068/37158 33126/37164 +f 35071/37165 35069/37160 34891/37162 +f 35068/37158 35070/37163 33126/37164 +f 35071/37165 35070/37163 35069/37160 +f 35071/37165 34891/37162 35072/37166 +f 33126/37164 35070/37163 33112/37167 +f 35070/37163 35071/37165 35073/37168 +f 35074/37169 35072/37166 34891/37162 +f 35071/37165 35072/37166 35075/37170 +f 35076/37171 33112/37167 35070/37163 +f 35073/37168 35076/37171 35070/37163 +f 35075/37170 35073/37168 35071/37165 +f 35077/37172 35072/37166 35074/37169 +f 34891/37162 34902/37173 35074/37169 +f 35075/37170 35072/37166 35078/37174 +f 35076/37171 33099/37175 33112/37167 +f 35073/37168 33116/37176 35076/37171 +f 33128/37177 35073/37168 35075/37170 +f 35077/37172 32949/37178 35072/37166 +f 34902/37173 34890/37179 35074/37169 +f 35079/37180 35075/37170 35078/37174 +f 35072/37166 35080/37181 35078/37174 +f 35076/37171 33116/37176 33099/37175 +f 33116/37176 35073/37168 33128/37177 +f 35075/37170 35079/37180 33128/37177 +f 35080/37181 35072/37166 32949/37178 +f 35081/37182 35074/37169 34890/37179 +f 35080/37181 35079/37180 35078/37174 +f 35082/37183 33128/37177 35079/37180 +f 32949/37178 35083/37184 35080/37181 +f 28181/37185 35074/37169 35081/37182 +f 34890/37179 34892/37186 35081/37182 +f 35080/37181 35084/37187 35079/37180 +f 33111/37188 33128/37177 35082/37183 +f 35082/37183 35079/37180 35084/37187 +f 35083/37184 35085/37189 35080/37181 +f 35083/37184 32949/37178 32937/37190 +f 34892/37186 28181/37185 35081/37182 +f 35080/37181 35085/37189 35084/37187 +f 35082/37183 35086/37191 33111/37188 +f 35087/37192 35082/37183 35084/37187 +f 35083/37184 35088/37193 35085/37189 +f 35089/37194 35084/37187 35085/37189 +f 35087/37192 35086/37191 35082/37183 +f 35086/37191 33117/37195 33111/37188 +f 35084/37187 35089/37194 35087/37192 +f 35088/37193 35090/37196 35085/37189 +f 35091/37197 35089/37194 35085/37189 +f 35086/37191 35087/37192 35092/37198 +f 35086/37191 35092/37198 33117/37195 +f 35089/37194 35093/37199 35087/37192 +f 35088/37193 35094/37200 35090/37196 +f 35090/37196 35091/37197 35085/37189 +f 35091/37197 35095/37201 35089/37194 +f 35087/37192 35093/37199 35092/37198 +f 33117/37195 35092/37198 33129/37202 +f 35089/37194 35095/37201 35093/37199 +f 35094/37200 35095/37201 35090/37196 +f 35095/37201 35091/37197 35090/37196 +f 35093/37199 33129/37202 35092/37198 +f 35095/37201 35096/37203 35093/37199 +f 35096/37203 35095/37201 35094/37200 +f 33157/37204 33129/37202 35093/37199 +f 35093/37199 35096/37203 33157/37204 +f 35097/37205 35098/37206 33777/37207 +f 33754/37208 35098/37206 35097/37205 +f 35098/37206 33754/37208 33777/37207 +f 33777/37207 35099/37209 35097/37205 +f 33216/37210 33754/37208 35097/37205 +f 35100/37211 35097/37205 35099/37209 +f 35101/37212 35099/37209 33777/37207 +f 35097/37205 35102/37213 33216/37210 +f 35102/37213 35097/37205 35100/37211 +f 35100/37211 35099/37209 35103/37214 +f 35104/37215 35099/37209 35101/37212 +f 33216/37210 35102/37213 35105/37216 +f 35102/37213 35100/37211 35106/37217 +f 35104/37215 35103/37214 35099/37209 +f 35106/37217 35100/37211 35103/37214 +f 35102/37213 35106/37217 35105/37216 +f 35107/37218 33216/37210 35105/37216 +f 35108/37219 35103/37214 35104/37215 +f 35109/37220 35106/37217 35103/37214 +f 35105/37216 35106/37217 35109/37220 +f 33216/37210 35107/37218 35110/37221 +f 35107/37218 35105/37216 35111/37222 +f 35108/37219 35104/37215 35112/37223 +f 35108/37219 35109/37220 35103/37214 +f 35105/37216 35109/37220 35111/37222 +f 33216/37210 35110/37221 35113/37224 +f 35112/37223 35107/37218 35111/37222 +f 35114/37225 35108/37219 35112/37223 +f 35109/37220 35108/37219 35114/37225 +f 35111/37222 35109/37220 35114/37225 +f 33214/37226 33216/37210 35113/37224 +f 35111/37222 35114/37225 35112/37223 +f 33214/37226 33213/37227 33216/37210 +f 33214/37226 35113/37224 32937/37228 +f 32937/37228 35113/37224 35083/37229 +f 35115/37230 35116/37231 35117/37232 +f 35118/37233 35116/37231 35115/37230 +f 35117/37232 35116/37231 35119/37234 +f 35120/37235 35115/37230 35117/37232 +f 35118/37233 35121/37236 35116/37231 +f 35118/37233 35115/37230 35120/37235 +f 35122/37237 35119/37234 35116/37231 +f 35117/37232 35119/37234 35123/37238 +f 35117/37232 35124/37239 35120/37235 +f 35122/37237 35116/37231 35121/37236 +f 35118/37233 35125/37240 35121/37236 +f 35120/37235 35125/37240 35118/37233 +f 35122/37237 35126/37241 35119/37234 +f 33114/37242 35117/37232 35123/37238 +f 35119/37234 35127/37243 35123/37238 +f 35120/37235 35124/37239 35128/37244 +f 35129/37245 35124/37239 35117/37232 +f 35130/37246 35122/37237 35121/37236 +f 35125/37240 35131/37247 35121/37236 +f 35125/37240 35120/37235 35128/37244 +f 35132/37248 35126/37241 35122/37237 +f 35126/37241 35133/37249 35119/37234 +f 33143/37250 33114/37242 35123/37238 +f 35117/37232 33114/37242 35129/37245 +f 35119/37234 35133/37249 35127/37243 +f 35127/37243 33143/37250 35123/37238 +f 35128/37244 35124/37239 35134/37251 +f 35134/37251 35124/37239 35129/37245 +f 35130/37246 35121/37236 35131/37247 +f 35122/37237 35130/37246 35132/37248 +f 35125/37240 35135/37252 35131/37247 +f 35135/37252 35125/37240 35128/37244 +f 35126/37241 35132/37248 34872/37253 +f 35133/37249 35126/37241 34862/37254 +f 33114/37242 33083/37255 35129/37245 +f 33153/37256 35127/37243 35133/37249 +f 33143/37250 35127/37243 33153/37256 +f 35134/37251 35136/37257 35128/37244 +f 35137/37258 35134/37251 35129/37245 +f 35131/37247 35138/37259 35130/37246 +f 35130/37246 35138/37259 35132/37248 +f 35131/37247 35135/37252 35139/37260 +f 35140/37261 35135/37252 35128/37244 +f 34862/37254 35126/37241 34872/37253 +f 34872/37253 35132/37248 34881/37262 +f 35133/37249 34862/37254 33153/37256 +f 35129/37245 33083/37255 35137/37258 +f 35077/37263 35136/37257 35134/37251 +f 35136/37257 35141/37264 35128/37244 +f 35134/37251 35137/37258 35077/37263 +f 35138/37259 35131/37247 35142/37265 +f 35132/37248 35138/37259 34881/37262 +f 35143/37266 35131/37247 35139/37260 +f 35135/37252 35144/37267 35139/37260 +f 35144/37267 35135/37252 35140/37261 +f 35141/37264 35140/37261 35128/37244 +f 33083/37255 33009/37268 35137/37258 +f 35136/37257 35077/37263 35145/37269 +f 35136/37257 35146/37270 35141/37264 +f 35137/37258 32949/37271 35077/37263 +f 34893/37272 35138/37259 35142/37265 +f 35143/37266 35142/37265 35131/37247 +f 34881/37262 35138/37259 34893/37272 +f 35139/37260 35147/37273 35143/37266 +f 35144/37267 35147/37273 35139/37260 +f 35140/37261 35148/37274 35144/37267 +f 35141/37264 35146/37270 35140/37261 +f 35137/37258 33009/37268 32949/37271 +f 35149/37275 35136/37257 35145/37269 +f 35146/37270 35136/37257 35150/37276 +f 34893/37272 35142/37265 35151/37277 +f 35147/37273 35142/37265 35143/37266 +f 35147/37273 35144/37267 35152/37278 +f 35148/37274 35140/37261 35153/37279 +f 35152/37278 35144/37267 35148/37274 +f 35146/37270 35154/37280 35140/37261 +f 35155/37281 35136/37257 35149/37275 +f 35149/37275 35145/37269 35156/37282 +f 35150/37276 35136/37257 35155/37281 +f 35150/37276 35157/37283 35146/37270 +f 35151/37277 34904/37284 34893/37272 +f 35142/37265 35158/37285 35151/37277 +f 35158/37285 35142/37265 35147/37273 +f 35147/37273 35152/37278 35158/37285 +f 35159/37286 35148/37274 35153/37279 +f 35153/37279 35140/37261 35154/37280 +f 35160/37287 35152/37278 35148/37274 +f 35154/37280 35146/37270 35161/37288 +f 35150/37276 35155/37281 35149/37275 +f 35156/37282 35145/37269 35162/37289 +f 35163/37290 35149/37275 35156/37282 +f 35157/37283 35150/37276 35164/37291 +f 35157/37283 35161/37288 35146/37270 +f 35165/37292 34904/37284 35151/37277 +f 35166/37293 35151/37277 35158/37285 +f 35160/37287 35158/37285 35152/37278 +f 35159/37286 35160/37287 35148/37274 +f 35153/37279 35167/37294 35159/37286 +f 35153/37279 35154/37280 35167/37294 +f 35161/37288 35167/37294 35154/37280 +f 35168/37295 35150/37276 35149/37275 +f 35162/37289 35145/37269 35169/37296 +f 35156/37282 35162/37289 35170/37297 +f 35163/37290 35156/37282 35171/37298 +f 35163/37290 35168/37295 35149/37275 +f 35164/37291 35150/37276 35172/37299 +f 35164/37291 35161/37288 35157/37283 +f 35173/37300 34904/37284 35165/37292 +f 35165/37292 35151/37277 35174/37301 +f 35158/37285 35160/37287 35166/37293 +f 35151/37277 35166/37293 35174/37301 +f 35166/37293 35160/37287 35159/37286 +f 35175/37302 35159/37286 35167/37294 +f 35161/37288 35176/37303 35167/37294 +f 35177/37304 35150/37276 35168/37295 +f 35170/37297 35171/37298 35156/37282 +f 35162/37289 35178/37305 35170/37297 +f 35179/37306 35164/37291 35172/37299 +f 35150/37276 35180/37307 35172/37299 +f 35181/37308 35161/37288 35164/37291 +f 35173/37300 34918/37309 34904/37284 +f 35173/37300 35165/37292 35182/37310 +f 35174/37301 35183/37311 35165/37292 +f 35174/37301 35166/37293 35184/37312 +f 35175/37302 35166/37293 35159/37286 +f 35184/37312 35175/37302 35167/37294 +f 35181/37308 35176/37303 35161/37288 +f 35176/37303 35185/37313 35167/37294 +f 35177/37304 35186/37314 35150/37276 +f 35177/37304 35168/37295 35187/37315 +f 35188/37316 35171/37298 35170/37297 +f 35181/37308 35164/37291 35179/37306 +f 35179/37306 35172/37299 35189/37317 +f 35172/37299 35180/37307 35190/37318 +f 35180/37307 35150/37276 35186/37314 +f 34935/37319 34918/37309 35173/37300 +f 35183/37311 35182/37310 35165/37292 +f 35182/37310 35191/37320 35173/37300 +f 35192/37321 35183/37311 35174/37301 +f 35166/37293 35175/37302 35184/37312 +f 35184/37312 35185/37313 35174/37301 +f 35184/37312 35167/37294 35185/37313 +f 35176/37303 35181/37308 35193/37322 +f 35185/37313 35176/37303 35194/37323 +f 35195/37324 35186/37314 35177/37304 +f 35177/37304 35187/37315 35196/37325 +f 35197/37326 35187/37315 35168/37295 +f 35193/37322 35181/37308 35179/37306 +f 35189/37317 35172/37299 35190/37318 +f 35194/37323 35179/37306 35189/37317 +f 35190/37318 35180/37307 35198/37327 +f 35199/37328 35180/37307 35186/37314 +f 35191/37320 34935/37319 35173/37300 +f 35183/37311 35200/37329 35182/37310 +f 35200/37329 35191/37320 35182/37310 +f 35174/37301 35185/37313 35192/37321 +f 35183/37311 35192/37321 35201/37330 +f 35176/37303 35193/37322 35179/37306 +f 35179/37306 35194/37323 35176/37303 +f 35185/37313 35194/37323 35192/37321 +f 35196/37325 35195/37324 35177/37304 +f 35195/37324 35199/37328 35186/37314 +f 35202/37331 35196/37325 35187/37315 +f 35168/37295 35203/37332 35197/37326 +f 35204/37333 35187/37315 35197/37326 +f 35205/37334 35189/37317 35190/37318 +f 35189/37317 35205/37334 35194/37323 +f 35198/37327 35180/37307 35199/37328 +f 35205/37334 35190/37318 35198/37327 +f 35200/37329 35183/37311 35201/37330 +f 35194/37323 35201/37330 35192/37321 +f 35195/37324 35196/37325 35206/37335 +f 35199/37328 35195/37324 35207/37336 +f 35202/37331 35208/37337 35196/37325 +f 35187/37315 35204/37333 35202/37331 +f 35203/37332 35209/37338 35197/37326 +f 35204/37333 35197/37326 35210/37339 +f 35194/37323 35205/37334 35211/37340 +f 35207/37336 35198/37327 35199/37328 +f 35205/37334 35198/37327 35207/37336 +f 35201/37330 35212/37341 35200/37329 +f 35201/37330 35194/37323 35212/37341 +f 35206/37335 35196/37325 35208/37337 +f 35206/37335 35211/37340 35195/37324 +f 35207/37336 35195/37324 35211/37340 +f 35209/37338 35213/37342 35197/37326 +f 35203/37332 35214/37343 35209/37338 +f 35210/37339 35197/37326 35213/37342 +f 35211/37340 35212/37341 35194/37323 +f 35207/37336 35211/37340 35205/37334 +f 35214/37343 35213/37342 35209/37338 +f 35215/37344 35214/37343 35203/37332 +f 35213/37342 35216/37345 35210/37339 +f 35213/37342 35214/37343 35216/37345 +f 35217/37346 35214/37343 35215/37344 +f 35216/37345 35217/37346 35210/37339 +f 35216/37345 35214/37343 35217/37346 +f 35218/37347 35219/37348 33755/37349 +f 35218/37347 35220/37350 35219/37348 +f 35219/37348 33775/37351 33755/37349 +f 33755/37349 33740/37352 35218/37347 +f 35220/37350 35218/37347 35221/37353 +f 35219/37348 35220/37350 35222/37354 +f 33775/37351 35219/37348 35223/37355 +f 35224/37356 35218/37347 33740/37352 +f 35218/37347 35224/37356 35221/37353 +f 35225/37357 35220/37350 35221/37353 +f 35220/37350 35226/37358 35222/37354 +f 35219/37348 35222/37354 35223/37355 +f 35227/37359 33775/37351 35223/37355 +f 33718/37360 35224/37356 33740/37352 +f 35221/37353 35224/37356 35228/37361 +f 35221/37353 35229/37362 35225/37357 +f 35225/37357 35230/37363 35220/37350 +f 35220/37350 35230/37363 35226/37358 +f 35222/37354 35226/37358 35231/37364 +f 35222/37354 35231/37364 35223/37355 +f 35231/37364 35227/37359 35223/37355 +f 33775/37351 35227/37359 33785/37365 +f 35232/37366 35224/37356 33718/37360 +f 35229/37362 35221/37353 35228/37361 +f 35224/37356 35232/37366 35228/37361 +f 35225/37357 35229/37362 35233/37367 +f 35225/37357 35234/37368 35230/37363 +f 35235/37369 35226/37358 35230/37363 +f 35231/37364 35226/37358 35236/37370 +f 35227/37359 35231/37364 33792/37371 +f 33785/37365 35227/37359 33792/37371 +f 35237/37372 35232/37366 33718/37360 +f 35238/37373 35229/37362 35228/37361 +f 35232/37366 35238/37373 35228/37361 +f 35229/37362 35239/37374 35233/37367 +f 35233/37367 35240/37375 35225/37357 +f 35240/37375 35234/37368 35225/37357 +f 35234/37368 35241/37376 35230/37363 +f 35235/37369 35236/37370 35226/37358 +f 35230/37363 35241/37376 35235/37369 +f 35236/37370 33792/37371 35231/37364 +f 35237/37372 35242/37377 35232/37366 +f 35237/37372 33718/37360 33708/37378 +f 35229/37362 35238/37373 35239/37374 +f 35242/37377 35238/37373 35232/37366 +f 35243/37379 35233/37367 35239/37374 +f 35240/37375 35233/37367 35244/37380 +f 35240/37375 35245/37381 35234/37368 +f 35234/37368 35246/37382 35241/37376 +f 35235/37369 35247/37383 35236/37370 +f 35247/37383 35235/37369 35241/37376 +f 33792/37371 35236/37370 35248/37384 +f 35249/37385 35242/37377 35237/37372 +f 35237/37372 33708/37378 35250/37386 +f 35238/37373 35251/37387 35239/37374 +f 35251/37387 35238/37373 35242/37377 +f 35243/37379 35244/37380 35233/37367 +f 35243/37379 35239/37374 35252/37388 +f 35244/37380 35245/37381 35240/37375 +f 35246/37382 35234/37368 35245/37381 +f 35253/37389 35241/37376 35246/37382 +f 35236/37370 35247/37383 35248/37384 +f 35247/37383 35241/37376 35254/37390 +f 21136/37391 33792/37371 35248/37384 +f 35255/37392 35242/37377 35249/37385 +f 35249/37385 35237/37372 35250/37386 +f 33700/37393 35250/37386 33708/37378 +f 35239/37374 35251/37387 35252/37388 +f 35242/37377 35255/37392 35251/37387 +f 35256/37394 35244/37380 35243/37379 +f 35256/37394 35243/37379 35252/37388 +f 35257/37395 35245/37381 35244/37380 +f 35246/37382 35245/37381 35257/37395 +f 35258/37396 35241/37376 35253/37389 +f 35246/37382 35259/37397 35253/37389 +f 35247/37383 35260/37398 35248/37384 +f 35254/37390 35241/37376 35258/37396 +f 35247/37383 35254/37390 21155/37399 +f 21127/37400 21136/37391 35248/37384 +f 35255/37392 35249/37385 35261/37401 +f 35249/37385 35250/37386 33700/37393 +f 35262/37402 35252/37388 35251/37387 +f 35251/37387 35255/37392 35262/37402 +f 35244/37380 35256/37394 35263/37403 +f 35264/37404 35256/37394 35252/37388 +f 35244/37380 35265/37405 35257/37395 +f 35257/37395 35266/37406 35246/37382 +f 35259/37397 35258/37396 35253/37389 +f 35246/37382 35266/37406 35259/37397 +f 35248/37384 35260/37398 21127/37400 +f 35260/37398 35247/37383 21155/37399 +f 35254/37390 35258/37396 35267/37407 +f 35254/37390 21168/37408 21155/37399 +f 35249/37385 33700/37393 35261/37401 +f 35261/37401 35262/37402 35255/37392 +f 35264/37404 35252/37388 35262/37402 +f 35263/37403 35256/37394 35268/37409 +f 35265/37405 35244/37380 35263/37403 +f 35269/37410 35256/37394 35264/37404 +f 35270/37411 35257/37395 35265/37405 +f 35270/37411 35266/37406 35257/37395 +f 35271/37412 35258/37396 35259/37397 +f 35259/37397 35266/37406 35271/37412 +f 35260/37398 21155/37399 21127/37400 +f 35272/37413 35267/37407 35258/37396 +f 35254/37390 35267/37407 21168/37408 +f 35261/37401 33700/37393 35273/37414 +f 35273/37414 35262/37402 35261/37401 +f 35262/37402 35274/37415 35264/37404 +f 35263/37403 35268/37409 35275/37416 +f 35263/37403 35276/37417 35265/37405 +f 35277/37418 35269/37410 35264/37404 +f 35270/37411 35265/37405 35278/37419 +f 35270/37411 35279/37420 35266/37406 +f 35271/37412 35272/37413 35258/37396 +f 35266/37406 35279/37420 35271/37412 +f 35267/37407 35272/37413 21176/37421 +f 21168/37408 35267/37407 21176/37421 +f 33700/37393 35280/37422 35273/37414 +f 35262/37402 35273/37414 35281/37423 +f 35274/37415 35262/37402 35281/37423 +f 35274/37415 35277/37418 35264/37404 +f 35275/37416 35268/37409 35282/37424 +f 35275/37416 35276/37417 35263/37403 +f 35276/37417 35278/37419 35265/37405 +f 35283/37425 35270/37411 35278/37419 +f 35284/37426 35279/37420 35270/37411 +f 35271/37412 35285/37427 35272/37413 +f 35271/37412 35279/37420 35286/37428 +f 21176/37421 35272/37413 35287/37429 +f 35281/37423 35273/37414 35280/37422 +f 35281/37423 35288/37430 35274/37415 +f 35288/37430 35277/37418 35274/37415 +f 35282/37424 35289/37431 35275/37416 +f 35282/37424 35268/37409 35290/37432 +f 35276/37417 35275/37416 35291/37433 +f 35292/37434 35278/37419 35276/37417 +f 35284/37426 35270/37411 35283/37425 +f 35278/37419 26188/37435 35283/37425 +f 35284/37426 26187/37436 35279/37420 +f 35285/37427 35271/37412 35286/37428 +f 35287/37429 35272/37413 35285/37427 +f 35279/37420 26197/37437 35286/37428 +f 35287/37429 21149/37438 21176/37421 +f 35293/37439 35281/37423 35280/37422 +f 35293/37439 35288/37430 35281/37423 +f 35294/37440 35289/37431 35282/37424 +f 35291/37433 35275/37416 35289/37431 +f 35290/37432 35295/37441 35282/37424 +f 35276/37417 35291/37433 35292/37434 +f 26180/37442 35278/37419 35292/37434 +f 26187/37436 35284/37426 35283/37425 +f 26188/37435 35278/37419 26180/37442 +f 26188/37435 26187/37436 35283/37425 +f 35279/37420 26187/37436 26197/37437 +f 35285/37427 35286/37428 35287/37429 +f 26197/37437 35296/37443 35286/37428 +f 21161/37444 21149/37438 35287/37429 +f 35297/37445 35289/37431 35294/37440 +f 35295/37441 35294/37440 35282/37424 +f 35289/37431 35298/37446 35291/37433 +f 35290/37432 35299/37447 35295/37441 +f 35300/37448 35292/37434 35291/37433 +f 35300/37448 26180/37442 35292/37434 +f 35296/37443 35287/37429 35286/37428 +f 26186/37449 35296/37443 26197/37437 +f 21161/37444 35287/37429 35296/37443 +f 35297/37445 35298/37446 35289/37431 +f 35297/37445 35294/37440 35301/37450 +f 35302/37451 35294/37440 35295/37441 +f 35300/37448 35291/37433 35298/37446 +f 35290/37432 35303/37452 35299/37447 +f 35304/37453 35295/37441 35299/37447 +f 26180/37442 35300/37448 35305/37454 +f 35296/37443 26186/37449 21161/37444 +f 35297/37445 35305/37454 35298/37446 +f 35297/37445 35301/37450 35306/37455 +f 35294/37440 35302/37451 35301/37450 +f 35302/37451 35295/37441 35304/37453 +f 35305/37454 35300/37448 35298/37446 +f 35307/37456 35299/37447 35303/37452 +f 35308/37457 35304/37453 35299/37447 +f 26180/37442 35305/37454 35306/37455 +f 26186/37449 21171/37458 21161/37444 +f 35306/37455 35305/37454 35297/37445 +f 35301/37450 35309/37459 35306/37455 +f 35310/37460 35301/37450 35302/37451 +f 35311/37461 35302/37451 35304/37453 +f 35307/37456 35312/37462 35299/37447 +f 35313/37463 35307/37456 35303/37452 +f 35308/37457 35299/37447 35312/37462 +f 35308/37457 35311/37461 35304/37453 +f 26168/37464 26180/37442 35306/37455 +f 35309/37459 35301/37450 35310/37460 +f 35309/37459 26168/37464 35306/37455 +f 35310/37460 35302/37451 35314/37465 +f 35314/37465 35302/37451 35311/37461 +f 35312/37462 35307/37456 35315/37466 +f 35307/37456 35313/37463 35316/37467 +f 35317/37468 35313/37463 35303/37452 +f 35308/37457 35312/37462 35314/37465 +f 35314/37465 35311/37461 35308/37457 +f 35309/37459 35310/37460 35318/37469 +f 26168/37464 35309/37459 35318/37469 +f 35310/37460 35314/37465 35318/37469 +f 35315/37466 35307/37456 35316/37467 +f 35319/37470 35312/37462 35315/37466 +f 35316/37467 35313/37463 35320/37471 +f 35317/37468 35321/37472 35313/37463 +f 35314/37465 35312/37462 35318/37469 +f 26150/37473 26168/37464 35318/37469 +f 35320/37471 35315/37466 35316/37467 +f 35319/37470 35315/37466 35322/37474 +f 35312/37462 35319/37470 35318/37469 +f 35323/37475 35320/37471 35313/37463 +f 35321/37472 35323/37475 35313/37463 +f 35321/37472 35317/37468 35324/37476 +f 35318/37469 35325/37477 26150/37473 +f 35315/37466 35320/37471 35326/37478 +f 35315/37466 35326/37478 35322/37474 +f 35322/37474 35325/37477 35319/37470 +f 35319/37470 35325/37477 35318/37469 +f 35320/37471 35323/37475 35327/37479 +f 35328/37480 35323/37475 35321/37472 +f 35328/37480 35321/37472 35324/37476 +f 26150/37473 35325/37477 26179/37481 +f 35326/37478 35320/37471 35329/37482 +f 35330/37483 35322/37474 35326/37478 +f 35325/37477 35322/37474 26179/37481 +f 35329/37482 35320/37471 35327/37479 +f 35327/37479 35323/37475 35331/37484 +f 35323/37475 35328/37480 35332/37485 +f 35333/37486 35328/37480 35324/37476 +f 35334/37487 35326/37478 35329/37482 +f 35330/37483 26179/37481 35322/37474 +f 35334/37487 35330/37483 35326/37478 +f 35329/37482 35327/37479 35335/37488 +f 35331/37484 35336/37489 35327/37479 +f 35332/37485 35331/37484 35323/37475 +f 35328/37480 35333/37486 35332/37485 +f 35335/37488 35334/37487 35329/37482 +f 26179/37481 35330/37483 26167/37490 +f 35330/37483 35334/37487 26811/37491 +f 35337/37492 35335/37488 35327/37479 +f 35338/37493 35336/37489 35331/37484 +f 35327/37479 35336/37489 35337/37492 +f 35339/37494 35331/37484 35332/37485 +f 35332/37485 35333/37486 35340/37495 +f 35334/37487 35335/37488 35341/37496 +f 26811/37491 26167/37490 35330/37483 +f 35341/37496 26811/37491 35334/37487 +f 35335/37488 35337/37492 35341/37496 +f 35339/37494 35338/37493 35331/37484 +f 35336/37489 35338/37493 35342/37497 +f 35337/37492 35336/37489 35342/37497 +f 35343/37498 35339/37494 35332/37485 +f 35340/37495 35343/37498 35332/37485 +f 35341/37496 35344/37499 26811/37491 +f 35341/37496 35337/37492 35345/37500 +f 35346/37501 35338/37493 35339/37494 +f 35347/37502 35342/37497 35338/37493 +f 35348/37503 35337/37492 35342/37497 +f 35339/37494 35343/37498 35346/37501 +f 35349/37504 35343/37498 35340/37495 +f 35341/37496 35350/37505 35344/37499 +f 26811/37491 35344/37499 26778/37506 +f 35337/37492 35351/37507 35345/37500 +f 35350/37505 35341/37496 35345/37500 +f 35346/37501 35347/37502 35338/37493 +f 35342/37497 35347/37502 35348/37503 +f 35351/37507 35337/37492 35348/37503 +f 35343/37498 35352/37508 35346/37501 +f 35352/37508 35343/37498 35349/37504 +f 35350/37505 26779/37509 35344/37499 +f 35344/37499 26779/37509 26778/37506 +f 35351/37507 35353/37510 35345/37500 +f 35354/37511 35350/37505 35345/37500 +f 35347/37502 35346/37501 35355/37512 +f 35347/37502 35351/37507 35348/37503 +f 26779/37509 35350/37505 26781/37513 +f 35347/37502 35353/37510 35351/37507 +f 35353/37510 35356/37514 35345/37500 +f 35354/37511 35345/37500 35356/37514 +f 35350/37505 35354/37511 35357/37515 +f 35355/37512 35358/37516 35347/37502 +f 35346/37501 32252/37517 35355/37512 +f 35350/37505 35357/37515 26781/37513 +f 35347/37502 35356/37514 35353/37510 +f 35356/37514 35358/37516 35354/37511 +f 35357/37515 35354/37511 26796/37518 +f 35355/37512 32253/37519 35358/37516 +f 35347/37502 35358/37516 35356/37514 +f 35355/37512 32252/37517 32253/37519 +f 35357/37515 26796/37518 26781/37513 +f 35354/37511 35358/37516 32258/37520 +f 35354/37511 32258/37520 26796/37518 +f 35358/37516 32253/37519 32258/37520 +f 35359/37521 35360/37522 35361/37523 +f 35362/37524 35360/37522 35359/37521 +f 35363/37525 35361/37523 35360/37522 +f 35361/37523 35364/37526 35359/37521 +f 35362/37524 35365/37527 35360/37522 +f 35359/37521 35366/37528 35362/37524 +f 35360/37522 35367/37529 35363/37525 +f 35363/37525 35333/37530 35361/37523 +f 35364/37526 35361/37523 35368/37531 +f 35364/37526 35288/37532 35359/37521 +f 35369/37533 35365/37527 35362/37524 +f 35360/37522 35365/37527 35370/37534 +f 35293/37535 35366/37528 35359/37521 +f 35371/37536 35362/37524 35366/37528 +f 35370/37534 35367/37529 35360/37522 +f 35372/37537 35363/37525 35367/37529 +f 35363/37525 35340/37538 35333/37530 +f 35324/37539 35361/37523 35333/37530 +f 35277/37540 35364/37526 35368/37531 +f 35368/37531 35361/37523 35324/37539 +f 35288/37532 35364/37526 35277/37540 +f 35359/37521 35288/37532 35293/37535 +f 35369/37533 35373/37541 35365/37527 +f 35362/37524 35371/37536 35369/37533 +f 35370/37534 35365/37527 35373/37541 +f 35366/37528 35293/37535 35374/37542 +f 35366/37528 35375/37543 35371/37536 +f 35367/37529 35370/37534 32214/37544 +f 32214/37544 35372/37537 35367/37529 +f 35363/37525 35372/37537 35340/37538 +f 35368/37531 35376/37545 35277/37540 +f 35317/37546 35368/37531 35324/37539 +f 35377/37547 35373/37541 35369/37533 +f 35369/37533 35371/37536 35378/37548 +f 35379/37549 35370/37534 35373/37541 +f 35293/37535 35280/37550 35374/37542 +f 35375/37543 35366/37528 35374/37542 +f 35375/37543 35378/37548 35371/37536 +f 35380/37551 32214/37544 35370/37534 +f 32214/37544 35381/37552 35372/37537 +f 35340/37538 35372/37537 35349/37553 +f 35317/37546 35376/37545 35368/37531 +f 35376/37545 35269/37554 35277/37540 +f 35382/37555 35377/37547 35369/37533 +f 35377/37547 35379/37549 35373/37541 +f 35378/37548 35382/37555 35369/37533 +f 35370/37534 35379/37549 35380/37551 +f 35280/37550 35375/37543 35374/37542 +f 35375/37543 35383/37556 35378/37548 +f 35384/37557 32214/37544 35380/37551 +f 35381/37552 35349/37553 35372/37537 +f 35381/37552 32214/37544 32221/37558 +f 35385/37559 35376/37545 35317/37546 +f 35386/37560 35269/37554 35376/37545 +f 35382/37555 35387/37561 35377/37547 +f 35379/37549 35377/37547 35388/37562 +f 35378/37548 35389/37563 35382/37555 +f 35380/37551 35379/37549 35390/37564 +f 35280/37550 33694/37565 35375/37543 +f 35375/37543 33703/37566 35383/37556 +f 35378/37548 35383/37556 35389/37563 +f 32214/37544 35384/37557 32202/37567 +f 35391/37568 35384/37557 35380/37551 +f 35349/37553 35381/37552 35352/37569 +f 32221/37558 35392/37570 35381/37552 +f 35385/37559 35386/37560 35376/37545 +f 35317/37546 35303/37571 35385/37559 +f 35256/37572 35269/37554 35386/37560 +f 35393/37573 35387/37561 35382/37555 +f 35387/37561 35393/37573 35377/37547 +f 35393/37573 35388/37562 35377/37547 +f 35379/37549 35388/37562 35394/37574 +f 35393/37573 35382/37555 35389/37563 +f 35394/37574 35390/37564 35379/37549 +f 35391/37568 35380/37551 35390/37564 +f 33694/37565 33703/37566 35375/37543 +f 33694/37565 35280/37550 33700/37575 +f 35383/37556 33703/37566 33215/37576 +f 35395/37577 35389/37563 35383/37556 +f 32197/37578 32202/37567 35384/37557 +f 35391/37568 32197/37578 35384/37557 +f 35381/37552 35392/37570 35352/37569 +f 35392/37570 32221/37558 35396/37579 +f 35385/37559 35397/37580 35386/37560 +f 35303/37571 35290/37581 35385/37559 +f 35268/37582 35256/37572 35386/37560 +f 35388/37562 35393/37573 35398/37583 +f 35399/37584 35394/37574 35388/37562 +f 35398/37583 35393/37573 35389/37563 +f 35390/37564 35394/37574 33211/37585 +f 35391/37568 35390/37564 32162/37586 +f 35383/37556 33215/37576 35395/37577 +f 35398/37583 35389/37563 35395/37577 +f 32174/37587 32197/37578 35391/37568 +f 35352/37569 35392/37570 35346/37588 +f 35396/37579 32221/37558 32233/37589 +f 35392/37570 35396/37579 32252/37590 +f 35290/37581 35397/37580 35385/37559 +f 35397/37580 35268/37582 35386/37560 +f 35388/37562 35398/37583 35399/37584 +f 35394/37574 35399/37584 33211/37585 +f 35390/37564 33211/37585 32162/37586 +f 32174/37587 35391/37568 32162/37586 +f 33212/37591 35395/37577 33215/37576 +f 35398/37583 35395/37577 33212/37591 +f 35392/37570 32252/37590 35346/37588 +f 35396/37579 32233/37589 32252/37590 +f 35397/37580 35290/37581 35268/37582 +f 33211/37585 35399/37584 35398/37583 +f 33212/37591 33211/37585 35398/37583 +f 35400/37592 29688/37593 29723/37594 +f 35401/37595 29688/37593 35400/37592 +f 35400/37592 29723/37594 35402/37596 +f 29690/37597 29688/37593 35401/37595 +f 35401/37595 35400/37592 35403/37598 +f 35402/37596 35404/37599 35400/37592 +f 29750/37600 35402/37596 29723/37594 +f 35401/37595 29751/37601 29690/37597 +f 35405/37602 35401/37595 35403/37598 +f 35400/37592 35404/37599 35403/37598 +f 35406/37603 35404/37599 35402/37596 +f 29750/37600 35407/37604 35402/37596 +f 35405/37602 29751/37601 35401/37595 +f 35405/37602 35403/37598 35408/37605 +f 35404/37599 35409/37606 35403/37598 +f 35404/37599 35406/37603 35409/37606 +f 35402/37596 35410/37607 35406/37603 +f 29750/37600 35411/37608 35407/37604 +f 35402/37596 35407/37604 35410/37607 +f 35412/37609 29751/37601 35405/37602 +f 35409/37606 35408/37605 35403/37598 +f 35409/37606 35406/37603 35413/37610 +f 35410/37607 35414/37611 35406/37603 +f 35411/37608 29750/37600 29656/37612 +f 35411/37608 35415/37613 35407/37604 +f 35407/37604 35416/37614 35410/37607 +f 35408/37605 35409/37606 35417/37615 +f 35414/37611 35413/37610 35406/37603 +f 35417/37615 35409/37606 35413/37610 +f 35414/37611 35410/37607 35416/37614 +f 35418/37616 35411/37608 29656/37612 +f 35415/37613 35416/37614 35407/37604 +f 35411/37608 35419/37617 35415/37613 +f 35420/37618 35413/37610 35414/37611 +f 35413/37610 35420/37618 35417/37615 +f 35414/37611 35416/37614 35420/37618 +f 35419/37617 35411/37608 35418/37616 +f 29656/37612 29625/37619 35418/37616 +f 35421/37620 35416/37614 35415/37613 +f 35415/37613 35419/37617 35422/37621 +f 35420/37618 35416/37614 35423/37622 +f 35419/37617 35418/37616 29625/37619 +f 35423/37622 35416/37614 35421/37620 +f 35424/37623 35421/37620 35415/37613 +f 35419/37617 35425/37624 35422/37621 +f 35426/37625 35415/37613 35422/37621 +f 35427/37626 35420/37618 35423/37622 +f 35419/37617 29625/37619 35425/37624 +f 35423/37622 35421/37620 35428/37627 +f 35429/37628 35421/37620 35424/37623 +f 35415/37613 35426/37625 35424/37623 +f 35430/37629 35422/37621 35425/37624 +f 35422/37621 35424/37623 35426/37625 +f 35428/37627 35427/37626 35423/37622 +f 29625/37619 29655/37630 35425/37624 +f 35421/37620 35429/37628 35428/37627 +f 34553/37631 35429/37628 35424/37623 +f 29655/37630 35430/37629 35425/37624 +f 35431/37632 35422/37621 35430/37629 +f 35422/37621 35431/37632 35424/37623 +f 35427/37626 35428/37627 34555/37633 +f 34546/37634 35428/37627 35429/37628 +f 34546/37634 35429/37628 34553/37631 +f 35424/37623 35432/37635 34553/37631 +f 35433/37636 35430/37629 29655/37630 +f 35431/37632 35430/37629 35434/37637 +f 35432/37635 35424/37623 35431/37632 +f 35428/37627 34546/37634 34555/37633 +f 35432/37635 34552/37638 34553/37631 +f 35435/37639 35430/37629 35433/37636 +f 29655/37630 29657/37640 35433/37636 +f 34552/37638 35431/37632 35434/37637 +f 35434/37637 35430/37629 35435/37639 +f 35431/37632 34552/37638 35432/37635 +f 35433/37636 35434/37637 35435/37639 +f 29657/37640 35436/37641 35433/37636 +f 35434/37637 34547/37642 34552/37638 +f 35437/37643 35434/37637 35433/37636 +f 35433/37636 35436/37641 35437/37643 +f 29657/37640 29729/37644 35436/37641 +f 35434/37637 35437/37643 34547/37642 +f 35438/37645 35437/37643 35436/37641 +f 35436/37641 29729/37644 35438/37645 +f 35437/37643 35439/37646 34547/37642 +f 35438/37645 35440/37647 35437/37643 +f 35438/37645 29729/37644 29776/37648 +f 35440/37647 35439/37646 35437/37643 +f 35439/37646 34538/37649 34547/37642 +f 35440/37647 35438/37645 35441/37650 +f 29776/37648 35442/37651 35438/37645 +f 34538/37649 35439/37646 35440/37647 +f 35442/37651 35441/37650 35438/37645 +f 35441/37650 35443/37652 35440/37647 +f 35442/37651 29776/37648 29825/37653 +f 35443/37652 34538/37649 35440/37647 +f 35442/37651 35444/37654 35441/37650 +f 35443/37652 35441/37650 35445/37655 +f 35444/37654 35442/37651 29825/37653 +f 34521/37656 34538/37649 35443/37652 +f 35445/37655 35441/37650 35444/37654 +f 35443/37652 35445/37655 34521/37656 +f 35446/37657 35444/37654 29825/37653 +f 35447/37658 35445/37655 35444/37654 +f 35445/37655 34512/37659 34521/37656 +f 29863/37660 35446/37657 29825/37653 +f 35444/37654 35446/37657 35447/37658 +f 35448/37661 35445/37655 35447/37658 +f 35445/37655 35448/37661 34512/37659 +f 35446/37657 29863/37660 34523/37662 +f 35446/37657 34523/37662 35447/37658 +f 35447/37658 34512/37659 35448/37661 +f 34518/37663 35447/37658 34523/37662 +f 34512/37659 35447/37658 34518/37663 +f 35449/37664 35450/37665 35451/37666 +f 35449/37664 35452/37667 35450/37665 +f 35451/37666 35450/37665 35453/37668 +f 35449/37664 35451/37666 35454/37669 +f 35455/37670 35450/37665 35452/37667 +f 35452/37667 35449/37664 35456/37671 +f 35450/37665 35457/37672 35453/37668 +f 35458/37673 35451/37666 35453/37668 +f 35449/37664 35454/37669 35178/37674 +f 35454/37669 35451/37666 35459/37675 +f 35455/37670 35452/37667 35460/37676 +f 35455/37670 35461/37677 35450/37665 +f 35178/37674 35456/37671 35449/37664 +f 35456/37671 35462/37678 35452/37667 +f 35457/37672 35450/37665 35461/37677 +f 35457/37672 35171/37679 35453/37668 +f 35451/37666 35458/37673 35459/37675 +f 35453/37668 35188/37680 35458/37673 +f 35452/37667 35462/37678 35460/37676 +f 28193/37681 35455/37670 35460/37676 +f 35463/37682 35461/37677 35455/37670 +f 35456/37671 35178/37674 35464/37683 +f 35456/37671 35465/37684 35462/37678 +f 35461/37677 35466/37685 35457/37672 +f 35171/37679 35457/37672 35466/37685 +f 35171/37679 35188/37680 35453/37668 +f 35460/37676 35462/37678 35467/37686 +f 35455/37670 28193/37681 35463/37682 +f 28191/37687 28193/37681 35460/37676 +f 35468/37688 35461/37677 35463/37682 +f 35464/37683 35465/37684 35456/37671 +f 35462/37678 35465/37684 35467/37686 +f 35461/37677 35468/37688 35466/37685 +f 35466/37685 35468/37688 35171/37679 +f 35469/37689 35460/37676 35467/37686 +f 28193/37681 34944/37690 35463/37682 +f 28191/37687 35460/37676 35470/37691 +f 34944/37690 35468/37688 35463/37682 +f 35464/37683 35471/37692 35465/37684 +f 35472/37693 35467/37686 35465/37684 +f 35171/37679 35468/37688 35473/37694 +f 35469/37689 35474/37695 35460/37676 +f 35469/37689 35467/37686 35472/37693 +f 35470/37691 35460/37676 35474/37695 +f 35470/37691 28189/37696 28191/37687 +f 34944/37690 34955/37697 35468/37688 +f 35465/37684 35475/37698 35472/37693 +f 35476/37699 35473/37694 35468/37688 +f 35171/37679 35473/37694 35163/37700 +f 35477/37701 35474/37695 35469/37689 +f 35472/37693 35477/37701 35469/37689 +f 35474/37695 28187/37702 35470/37691 +f 28187/37702 28189/37696 35470/37691 +f 35468/37688 34955/37697 35476/37699 +f 35478/37703 35475/37698 35465/37684 +f 35479/37704 35472/37693 35475/37698 +f 35476/37699 35163/37700 35473/37694 +f 35480/37705 35474/37695 35477/37701 +f 35477/37701 35472/37693 35479/37704 +f 35480/37705 28187/37702 35474/37695 +f 34955/37697 35481/37706 35476/37699 +f 35475/37698 35478/37703 35479/37704 +f 35482/37707 35163/37700 35476/37699 +f 35483/37708 35480/37705 35477/37701 +f 35483/37708 35477/37701 35479/37704 +f 35480/37705 28185/37709 28187/37702 +f 35484/37710 35481/37706 34955/37697 +f 35476/37699 35481/37706 35485/37711 +f 35479/37704 35478/37703 35486/37712 +f 35485/37711 35482/37707 35476/37699 +f 35482/37707 35487/37713 35163/37700 +f 28185/37709 35480/37705 35483/37708 +f 35479/37704 35488/37714 35483/37708 +f 35489/37715 35481/37706 35484/37710 +f 34955/37697 34966/37716 35484/37710 +f 35485/37711 35481/37706 35490/37717 +f 35478/37703 35491/37718 35486/37712 +f 35486/37712 35488/37714 35479/37704 +f 35482/37707 35485/37711 35492/37719 +f 35482/37707 35493/37720 35487/37713 +f 35490/37717 35481/37706 35489/37715 +f 35484/37710 35494/37721 35489/37715 +f 34966/37716 35495/37722 35484/37710 +f 35496/37723 35485/37711 35490/37717 +f 35492/37719 35485/37711 35497/37724 +f 35492/37719 35498/37725 35482/37707 +f 35493/37720 35482/37707 35499/37726 +f 35493/37720 35500/37727 35487/37713 +f 35489/37715 35501/37728 35490/37717 +f 35495/37722 35494/37721 35484/37710 +f 35494/37721 35502/37729 35489/37715 +f 35495/37722 34966/37716 35503/37730 +f 35504/37731 35485/37711 35496/37723 +f 35490/37717 35505/37732 35496/37723 +f 35497/37724 35498/37725 35492/37719 +f 35504/37731 35497/37724 35485/37711 +f 35482/37707 35498/37725 35499/37726 +f 35499/37726 35506/37733 35493/37720 +f 35507/37734 35500/37727 35493/37720 +f 35501/37728 35508/37735 35490/37717 +f 35502/37729 35501/37728 35489/37715 +f 35495/37722 35502/37729 35494/37721 +f 35503/37730 35509/37736 35495/37722 +f 35496/37723 35505/37732 35504/37731 +f 35510/37737 35505/37732 35490/37717 +f 35498/37725 35497/37724 35511/37738 +f 35497/37724 35504/37731 35512/37739 +f 35499/37726 35498/37725 35506/37733 +f 35506/37733 35513/37740 35493/37720 +f 35513/37740 35507/37734 35493/37720 +f 35514/37741 35508/37735 35501/37728 +f 35508/37735 35510/37737 35490/37717 +f 35515/37742 35501/37728 35502/37729 +f 35495/37722 35509/37736 35502/37729 +f 35503/37730 35516/37743 35509/37736 +f 35517/37744 35504/37731 35505/37732 +f 35510/37737 35517/37744 35505/37732 +f 35511/37738 35518/37745 35498/37725 +f 35511/37738 35497/37724 35512/37739 +f 35504/37731 35517/37744 35512/37739 +f 35518/37745 35506/37733 35498/37725 +f 35519/37746 35513/37740 35506/37733 +f 35508/37735 35514/37741 35520/37747 +f 35514/37741 35501/37728 35521/37748 +f 35510/37737 35508/37735 35512/37739 +f 35515/37742 35522/37749 35501/37728 +f 35515/37742 35502/37729 35516/37743 +f 35509/37736 35516/37743 35502/37729 +f 35517/37744 35510/37737 35512/37739 +f 35518/37745 35511/37738 35523/37750 +f 35512/37739 35520/37747 35511/37738 +f 35518/37745 35519/37746 35506/37733 +f 35513/37740 35519/37746 35523/37750 +f 35524/37751 35520/37747 35514/37741 +f 35512/37739 35508/37735 35520/37747 +f 35501/37728 35522/37749 35521/37748 +f 35525/37752 35514/37741 35521/37748 +f 35523/37750 35519/37746 35518/37745 +f 35511/37738 35526/37753 35523/37750 +f 35511/37738 35520/37747 35524/37751 +f 35514/37741 35526/37753 35524/37751 +f 35522/37749 35525/37752 35521/37748 +f 35525/37752 35526/37753 35514/37741 +f 35511/37738 35524/37751 35526/37753 +f 35527/37754 18782/37755 18730/37756 +f 18871/37757 18782/37755 35527/37754 +f 35527/37754 18730/37756 35528/37758 +f 35529/37759 18871/37757 35527/37754 +f 35527/37754 35528/37758 35530/37760 +f 18671/37761 35528/37758 18730/37756 +f 35530/37760 35529/37759 35527/37754 +f 18871/37757 35529/37759 35531/37762 +f 35530/37760 35528/37758 18784/37763 +f 18671/37761 18784/37763 35528/37758 +f 35529/37759 35530/37760 35532/37764 +f 35529/37759 35533/37765 35531/37762 +f 18871/37757 35531/37762 19010/37766 +f 35534/37767 35530/37760 18784/37763 +f 35530/37760 35534/37767 35532/37764 +f 35529/37759 35532/37764 35535/37768 +f 35533/37765 35529/37759 35535/37768 +f 35531/37762 35533/37765 35536/37769 +f 19010/37766 35531/37762 19080/37770 +f 18784/37763 18872/37771 35534/37767 +f 35532/37764 35534/37767 18944/37772 +f 35537/37773 35535/37768 35532/37764 +f 35538/37774 35533/37765 35535/37768 +f 35539/37775 35531/37762 35536/37769 +f 35533/37765 35540/37776 35536/37769 +f 19080/37770 35531/37762 19257/37777 +f 18872/37771 18944/37772 35534/37767 +f 35532/37764 18944/37772 35541/37778 +f 35532/37764 35538/37774 35537/37773 +f 35537/37773 35538/37774 35535/37768 +f 35540/37776 35533/37765 35538/37774 +f 35539/37775 19257/37777 35531/37762 +f 35540/37776 35539/37775 35536/37769 +f 18944/37772 19011/37779 35541/37778 +f 35538/37774 35532/37764 35541/37778 +f 19081/37780 35540/37776 35538/37774 +f 35542/37781 19257/37777 35539/37775 +f 35540/37776 19261/37782 35539/37775 +f 35541/37778 19011/37779 35538/37774 +f 35540/37776 19081/37780 19261/37782 +f 35538/37774 19011/37779 19081/37780 +f 35542/37781 19328/37783 19257/37777 +f 19328/37783 35542/37781 35539/37775 +f 35539/37775 19261/37782 19328/37783 +f 35543/37784 35544/37785 35545/37786 +f 35544/37785 35543/37784 35546/37787 +f 35544/37785 32158/37788 35545/37786 +f 31734/37789 35543/37784 35545/37786 +f 35543/37784 35547/37790 35546/37787 +f 35546/37787 35548/37791 35544/37785 +f 32158/37788 31718/37792 35545/37786 +f 35549/37793 32158/37788 35544/37785 +f 31718/37792 31734/37789 35545/37786 +f 35547/37790 35543/37784 31734/37789 +f 35546/37787 35547/37790 35550/37794 +f 35551/37795 35548/37791 35546/37787 +f 35548/37791 35552/37796 35544/37785 +f 35553/37797 32158/37788 35549/37793 +f 35549/37793 35544/37785 35552/37796 +f 35547/37790 31734/37789 31736/37798 +f 35550/37794 35547/37790 31725/37799 +f 35550/37794 35554/37800 35546/37787 +f 35555/37801 35551/37795 35546/37787 +f 35548/37791 35551/37795 35552/37796 +f 32158/37788 35553/37797 32157/37802 +f 35553/37797 35549/37793 35556/37803 +f 35552/37796 35556/37803 35549/37793 +f 31725/37799 35547/37790 31736/37798 +f 31725/37799 35557/37804 35550/37794 +f 35550/37794 35557/37804 35554/37800 +f 35546/37787 35554/37800 35555/37801 +f 35555/37801 35558/37805 35551/37795 +f 35556/37803 35552/37796 35551/37795 +f 35553/37797 32159/37806 32157/37802 +f 35556/37803 32159/37806 35553/37797 +f 31725/37799 31723/37807 35557/37804 +f 35554/37800 35557/37804 35559/37808 +f 35554/37800 35560/37809 35555/37801 +f 35555/37801 35561/37810 35558/37805 +f 35551/37795 35558/37805 32167/37811 +f 35556/37803 35551/37795 32155/37812 +f 32155/37812 32159/37806 35556/37803 +f 35557/37804 31723/37807 35562/37813 +f 35557/37804 35562/37813 35559/37808 +f 35560/37809 35554/37800 35559/37808 +f 35561/37810 35555/37801 35560/37809 +f 35561/37810 35563/37814 35558/37805 +f 32167/37811 35558/37805 35564/37815 +f 32167/37811 32161/37816 35551/37795 +f 32155/37812 35551/37795 32161/37816 +f 31723/37807 35565/37817 35562/37813 +f 35566/37818 35559/37808 35562/37813 +f 35567/37819 35560/37809 35559/37808 +f 35560/37809 35567/37819 35561/37810 +f 35568/37820 35563/37814 35561/37810 +f 35558/37805 35563/37814 35564/37815 +f 32177/37821 32167/37811 35564/37815 +f 31723/37807 31706/37822 35565/37817 +f 35562/37813 35565/37817 35566/37818 +f 35567/37819 35559/37808 35566/37818 +f 35561/37810 35567/37819 35569/37823 +f 35563/37814 35568/37820 35570/37824 +f 35568/37820 35561/37810 35569/37823 +f 35563/37814 32177/37821 35564/37815 +f 31706/37822 35571/37825 35565/37817 +f 35565/37817 35572/37826 35566/37818 +f 35572/37826 35567/37819 35566/37818 +f 35567/37819 35573/37827 35569/37823 +f 35574/37828 35570/37824 35568/37820 +f 32177/37821 35563/37814 35570/37824 +f 35569/37823 35575/37829 35568/37820 +f 35571/37825 31706/37822 35576/37830 +f 35572/37826 35565/37817 35571/37825 +f 35567/37819 35572/37826 35577/37831 +f 35573/37827 35567/37819 35577/37831 +f 35573/37827 35577/37831 35569/37823 +f 35578/37832 35570/37824 35574/37828 +f 35575/37829 35574/37828 35568/37820 +f 35570/37824 32191/37833 32177/37821 +f 35579/37834 35575/37829 35569/37823 +f 31706/37822 31650/37835 35576/37830 +f 35580/37836 35571/37825 35576/37830 +f 35572/37826 35571/37825 35581/37837 +f 35581/37837 35577/37831 35572/37826 +f 35569/37823 35577/37831 35579/37834 +f 35582/37838 35578/37832 35574/37828 +f 35570/37824 35578/37832 32210/37839 +f 35575/37829 35583/37840 35574/37828 +f 32210/37839 32191/37833 35570/37824 +f 35579/37834 35584/37841 35575/37829 +f 31650/37835 31632/37842 35576/37830 +f 35571/37825 35580/37836 35581/37837 +f 35585/37843 35580/37836 35576/37830 +f 35581/37837 35579/37834 35577/37831 +f 35578/37832 35582/37838 32222/37844 +f 31666/37845 35582/37838 35574/37828 +f 35578/37832 32222/37844 32210/37839 +f 31645/37846 35574/37828 35583/37840 +f 35584/37841 35583/37840 35575/37829 +f 35579/37834 35580/37836 35584/37841 +f 35576/37830 31632/37842 35585/37843 +f 35580/37836 35579/37834 35581/37837 +f 35580/37836 35585/37843 35584/37841 +f 35582/37838 31648/37847 32222/37844 +f 31666/37845 31648/37847 35582/37838 +f 31645/37846 31666/37845 35574/37828 +f 31629/37848 31645/37846 35583/37840 +f 35584/37841 35586/37849 35583/37840 +f 35585/37843 31632/37842 31647/37850 +f 35584/37841 35585/37843 35586/37849 +f 35586/37849 31629/37848 35583/37840 +f 35586/37849 35585/37843 31647/37850 +f 35586/37849 31647/37850 31629/37848 +f 35587/37851 35588/37852 29761/37853 +f 35589/37854 35588/37852 35587/37851 +f 29851/37855 29761/37853 35588/37852 +f 35587/37851 29761/37853 29703/37856 +f 35588/37852 35589/37854 35590/37857 +f 35587/37851 35591/37858 35589/37854 +f 29851/37855 35588/37852 35592/37859 +f 29703/37856 35591/37858 35587/37851 +f 35590/37857 35589/37854 35591/37858 +f 35592/37859 35588/37852 35590/37857 +f 35592/37859 29902/37860 29851/37855 +f 33630/37861 35591/37858 29703/37856 +f 35590/37857 35591/37858 35593/37862 +f 35590/37857 35594/37863 35592/37859 +f 35595/37864 29902/37860 35592/37859 +f 35591/37858 33630/37861 35593/37862 +f 35594/37863 35590/37857 35593/37862 +f 35594/37863 33648/37865 35592/37859 +f 35595/37864 35596/37866 29902/37860 +f 35592/37859 35597/37867 35595/37864 +f 33630/37861 35594/37863 35593/37862 +f 33630/37861 33648/37865 35594/37863 +f 33648/37865 33661/37868 35592/37859 +f 35595/37864 35597/37867 35596/37866 +f 32452/37869 29902/37860 35596/37866 +f 33661/37868 35597/37867 35592/37859 +f 35598/37870 35596/37866 35597/37867 +f 35596/37866 35599/37871 32452/37869 +f 35597/37867 33661/37868 35600/37872 +f 35596/37866 35598/37870 35601/37873 +f 35597/37867 35600/37872 35598/37870 +f 35602/37874 35599/37871 35596/37866 +f 35599/37871 32411/37875 32452/37869 +f 33663/37876 35600/37872 33661/37868 +f 35601/37873 35598/37870 35603/37877 +f 35604/37878 35596/37866 35601/37873 +f 35600/37872 33663/37876 35598/37870 +f 35599/37871 35602/37874 35605/37879 +f 35604/37878 35602/37874 35596/37866 +f 32388/37880 32411/37875 35599/37871 +f 33673/37881 35603/37877 35598/37870 +f 35601/37873 35603/37877 35606/37882 +f 35604/37878 35601/37873 35606/37882 +f 33663/37876 33673/37881 35598/37870 +f 35602/37874 35607/37883 35605/37879 +f 35608/37884 35599/37871 35605/37879 +f 35604/37878 35609/37885 35602/37874 +f 35599/37871 35608/37884 32388/37880 +f 33673/37881 35610/37886 35603/37877 +f 35611/37887 35606/37882 35603/37877 +f 35612/37888 35604/37878 35606/37882 +f 35613/37889 35605/37879 35607/37883 +f 35607/37883 35602/37874 35614/37890 +f 35608/37884 35605/37879 34213/37891 +f 35612/37888 35609/37885 35604/37878 +f 35614/37890 35602/37874 35609/37885 +f 32388/37880 35608/37884 34213/37891 +f 35603/37877 35610/37886 35611/37887 +f 35615/37892 35610/37886 33673/37881 +f 35612/37888 35606/37882 35611/37887 +f 35616/37893 35613/37889 35607/37883 +f 35617/37894 35605/37879 35613/37889 +f 35607/37883 35614/37890 35616/37893 +f 34213/37891 35605/37879 34228/37895 +f 35612/37888 35614/37890 35609/37885 +f 35610/37886 35618/37896 35611/37887 +f 35610/37886 35615/37892 35619/37897 +f 35612/37888 35611/37887 35620/37898 +f 35617/37894 35613/37889 35616/37893 +f 35605/37879 35617/37894 34228/37895 +f 35614/37890 35617/37894 35616/37893 +f 35621/37899 35614/37890 35612/37888 +f 35618/37896 35610/37886 35622/37900 +f 35620/37898 35611/37887 35618/37896 +f 35610/37886 35619/37897 35623/37901 +f 35621/37899 35612/37888 35620/37898 +f 35624/37902 34228/37895 35617/37894 +f 35614/37890 35625/37903 35617/37894 +f 35621/37899 35625/37903 35614/37890 +f 35623/37901 35622/37900 35610/37886 +f 35622/37900 35626/37904 35618/37896 +f 35620/37898 35618/37896 35627/37905 +f 35619/37897 35628/37906 35623/37901 +f 35620/37898 35629/37907 35621/37899 +f 34214/37908 34228/37895 35624/37902 +f 35624/37902 35617/37894 35630/37909 +f 35631/37910 35617/37894 35625/37903 +f 35625/37903 35621/37899 35629/37907 +f 35622/37900 35623/37901 35626/37904 +f 35626/37904 35632/37911 35618/37896 +f 35633/37912 35627/37905 35618/37896 +f 35627/37905 35634/37913 35620/37898 +f 35626/37904 35623/37901 35628/37906 +f 35634/37913 35629/37907 35620/37898 +f 35624/37902 34204/37914 34214/37908 +f 35630/37909 35617/37894 35631/37910 +f 35630/37909 34204/37914 35624/37902 +f 35631/37910 35625/37903 35629/37907 +f 35618/37896 35632/37911 35633/37912 +f 35626/37904 34215/37915 35632/37911 +f 35633/37912 35634/37913 35627/37905 +f 34215/37915 35626/37904 35628/37906 +f 35629/37907 35634/37913 35633/37912 +f 35633/37912 35630/37909 35631/37910 +f 35630/37909 34216/37916 34204/37914 +f 35633/37912 35631/37910 35629/37907 +f 34216/37916 35633/37912 35632/37911 +f 34215/37915 34216/37916 35632/37911 +f 35633/37912 34216/37916 35630/37909 +f 35635/37917 35636/37918 35637/37919 +f 35635/37917 35638/37920 35636/37918 +f 35639/37921 35637/37919 35636/37918 +f 35637/37919 35640/37922 35635/37917 +f 35641/37923 35636/37918 35638/37920 +f 35642/37924 35638/37920 35635/37917 +f 35636/37918 14496/37925 35639/37921 +f 35637/37919 35639/37921 14585/37926 +f 35637/37919 35643/37927 35640/37922 +f 35640/37922 14721/37928 35635/37917 +f 35636/37918 35641/37923 35644/37929 +f 35642/37924 35641/37923 35638/37920 +f 35635/37917 14721/37928 35642/37924 +f 35639/37921 14496/37925 14494/37930 +f 14496/37925 35636/37918 35644/37929 +f 14585/37926 35639/37921 14494/37930 +f 35643/37927 35637/37919 14585/37926 +f 35640/37922 35643/37927 35645/37931 +f 14565/37932 14721/37928 35640/37922 +f 35644/37929 35641/37923 35646/37933 +f 35641/37923 35642/37924 35647/37934 +f 14586/37935 14496/37925 35644/37929 +f 35643/37927 14585/37926 14564/37936 +f 14565/37932 35640/37922 35645/37931 +f 35643/37927 14474/37937 35645/37931 +f 35644/37929 35646/37933 14586/37935 +f 35641/37923 35647/37934 35646/37933 +f 35647/37934 35642/37924 14742/37938 +f 14564/37936 14474/37937 35643/37927 +f 35648/37939 14565/37932 35645/37931 +f 14474/37937 35648/37939 35645/37931 +f 35646/37933 14493/37940 14586/37935 +f 35646/37933 35647/37934 14493/37940 +f 14742/37938 35642/37924 14816/37941 +f 35647/37934 14742/37938 14493/37940 +f 35648/37939 14399/37942 14565/37932 +f 14474/37937 14327/37943 35648/37939 +f 35642/37924 35649/37944 14816/37941 +f 14327/37943 14399/37942 35648/37939 +f 35650/37945 14816/37941 35649/37944 +f 14816/37941 35650/37945 14969/37946 +f 35650/37945 35649/37944 14969/37946 +f 35649/37944 15310/37947 14969/37946 +f 35651/37948 35652/37949 35526/37950 +f 35651/37948 35653/37951 35652/37949 +f 35652/37949 35523/37952 35526/37950 +f 35526/37950 35654/37953 35651/37948 +f 35651/37948 35655/37954 35653/37951 +f 35652/37949 35653/37951 35523/37952 +f 35525/37955 35654/37953 35526/37950 +f 35656/37956 35651/37948 35654/37953 +f 35655/37954 35651/37948 35657/37957 +f 35658/37958 35653/37951 35655/37954 +f 35653/37951 35513/37959 35523/37952 +f 35659/37960 35654/37953 35525/37955 +f 35656/37956 35660/37961 35651/37948 +f 35656/37956 35654/37953 35659/37960 +f 35651/37948 35661/37962 35657/37957 +f 35658/37958 35655/37954 35657/37957 +f 35653/37951 35658/37958 35507/37963 +f 35513/37959 35653/37951 35507/37963 +f 35662/37964 35659/37960 35525/37955 +f 35663/37965 35660/37961 35656/37956 +f 35660/37961 35661/37962 35651/37948 +f 35659/37960 34976/37966 35656/37956 +f 35661/37962 35664/37967 35657/37957 +f 35657/37957 35665/37968 35658/37958 +f 35658/37958 35500/37969 35507/37963 +f 35659/37960 35662/37964 34975/37970 +f 35522/37971 35662/37964 35525/37955 +f 34976/37966 35663/37965 35656/37956 +f 35666/37972 35660/37961 35663/37965 +f 35661/37962 35660/37961 35667/37973 +f 34975/37970 34976/37966 35659/37960 +f 35664/37967 35661/37962 35667/37973 +f 35664/37967 35665/37968 35657/37957 +f 35665/37968 35500/37969 35658/37958 +f 34975/37970 35662/37964 34971/37974 +f 35522/37971 35668/37975 35662/37964 +f 35663/37965 34976/37966 35669/37976 +f 35670/37977 35660/37961 35666/37972 +f 35663/37965 35671/37978 35666/37972 +f 35667/37973 35660/37961 35672/37979 +f 35673/37980 34971/37974 35662/37964 +f 35668/37975 35522/37971 35674/37981 +f 35673/37980 35662/37964 35668/37975 +f 35671/37978 35663/37965 35669/37976 +f 34976/37966 34969/37982 35669/37976 +f 35675/37983 35660/37961 35670/37977 +f 35670/37977 35666/37972 35676/37984 +f 35677/37985 35666/37972 35671/37978 +f 35678/37986 35672/37979 35660/37961 +f 35673/37980 34966/37987 34971/37974 +f 35516/37988 35668/37975 35674/37981 +f 35522/37971 35515/37989 35674/37981 +f 35673/37980 35668/37975 35503/37990 +f 35679/37991 35671/37978 35669/37976 +f 35669/37976 34969/37982 35679/37991 +f 35670/37977 35208/37992 35675/37983 +f 35675/37983 35678/37986 35660/37961 +f 35677/37985 35676/37984 35666/37972 +f 35676/37984 35208/37992 35670/37977 +f 35677/37985 35671/37978 35680/37993 +f 35681/37994 35672/37979 35678/37986 +f 35503/37990 34966/37987 35673/37980 +f 35515/37989 35516/37988 35674/37981 +f 35503/37990 35668/37975 35516/37988 +f 35679/37991 35680/37993 35671/37978 +f 35679/37991 34969/37982 34964/37995 +f 35675/37983 35208/37992 35682/37996 +f 35678/37986 35675/37983 35682/37996 +f 35677/37985 35212/37997 35676/37984 +f 35208/37992 35676/37984 35206/37998 +f 35680/37993 35683/37999 35677/37985 +f 35678/37986 35684/38000 35681/37994 +f 35685/38001 35680/37993 35679/37991 +f 34956/38002 35679/37991 34964/37995 +f 35208/37992 35202/38003 35682/37996 +f 35682/37996 35686/38004 35678/37986 +f 35212/37997 35677/37985 35200/38005 +f 35676/37984 35212/37997 35211/38006 +f 35676/37984 35211/38006 35206/37998 +f 35683/37999 35680/37993 35687/38007 +f 35677/37985 35683/37999 35200/38005 +f 35678/37986 35686/38004 35684/38000 +f 35685/38001 35679/37991 34956/38002 +f 35680/37993 35685/38001 35687/38007 +f 35202/38003 35204/38008 35682/37996 +f 35686/38004 35682/37996 35204/38008 +f 35683/37999 35687/38007 34945/38009 +f 35200/38005 35683/37999 35191/38010 +f 35688/38011 35684/38000 35686/38004 +f 35685/38001 34956/38002 34952/38012 +f 35687/38007 35685/38001 34952/38012 +f 35204/38008 35688/38011 35686/38004 +f 34945/38009 35687/38007 34952/38012 +f 34945/38009 34935/38013 35683/37999 +f 34935/38013 35191/38010 35683/37999 +f 35210/38014 35684/38000 35688/38011 +f 35688/38011 35204/38008 35210/38014 +f 35689/38015 33769/38016 33770/38017 +f 35690/38018 33769/38016 35689/38015 +f 35691/38019 35689/38015 33770/38017 +f 35689/38015 35692/38020 35690/38018 +f 33772/38021 33769/38016 35690/38018 +f 35689/38015 35691/38019 35110/38022 +f 33770/38017 35693/38023 35691/38019 +f 35689/38015 35694/38024 35692/38020 +f 35690/38018 35692/38020 35695/38025 +f 35690/38018 33777/38026 33772/38021 +f 35694/38024 35689/38015 35110/38022 +f 35110/38022 35691/38019 35696/38027 +f 33174/38028 35693/38023 33770/38017 +f 35693/38023 35696/38027 35691/38019 +f 35694/38024 35697/38029 35692/38020 +f 35692/38020 35697/38029 35695/38025 +f 35690/38018 35695/38025 33777/38026 +f 35110/38022 35107/38030 35694/38024 +f 35698/38031 35110/38022 35696/38027 +f 35693/38023 33174/38028 35699/38032 +f 35700/38033 35696/38027 35693/38023 +f 35694/38024 35701/38034 35697/38029 +f 35695/38025 35697/38029 35101/38035 +f 33777/38026 35695/38025 35101/38035 +f 35701/38034 35694/38024 35107/38030 +f 35110/38022 35698/38031 35702/38036 +f 35698/38031 35696/38027 35703/38037 +f 33174/38028 33164/38038 35699/38032 +f 35700/38033 35693/38023 35699/38032 +f 35700/38033 35703/38037 35696/38027 +f 35697/38029 35701/38034 35112/38039 +f 35101/38035 35697/38029 35104/38040 +f 35701/38034 35107/38030 35112/38039 +f 35702/38036 35113/38041 35110/38022 +f 35698/38031 35704/38042 35702/38036 +f 35698/38031 35703/38037 35704/38042 +f 35699/38032 33164/38038 35705/38043 +f 35699/38032 35705/38043 35700/38033 +f 35706/38044 35703/38037 35700/38033 +f 35104/38040 35697/38029 35112/38039 +f 35704/38042 33168/38045 35702/38036 +f 35703/38037 35706/38044 35704/38042 +f 35705/38043 33164/38038 33141/38046 +f 35707/38047 35700/38033 35705/38043 +f 35707/38047 35706/38044 35700/38033 +f 35704/38042 35706/38044 33168/38045 +f 33141/38046 35708/38048 35705/38043 +f 35708/38048 35707/38047 35705/38043 +f 33158/38049 35706/38044 35707/38047 +f 33158/38049 33168/38045 35706/38044 +f 33139/38050 35708/38048 33141/38046 +f 33158/38049 35707/38047 35708/38048 +f 33140/38051 35708/38048 33139/38050 +f 33140/38051 33158/38049 35708/38048 +f 35162/38052 35471/38053 35178/38054 +f 35169/38055 35471/38053 35162/38052 +f 35464/38056 35178/38054 35471/38053 +f 35709/38057 35471/38053 35169/38055 +f 35709/38057 35710/38058 35471/38053 +f 35169/38055 35711/38059 35709/38057 +f 35145/38060 35711/38059 35169/38055 +f 35145/38060 35077/38061 35711/38059 +f 35712/38062 35713/38063 35714/38064 +f 35712/38062 35715/38065 35713/38063 +f 35714/38064 35713/38063 35716/38066 +f 35714/38064 35717/38067 35712/38062 +f 35715/38065 35718/38068 35713/38063 +f 35719/38069 35715/38065 35712/38062 +f 35716/38066 35713/38063 33150/38070 +f 35717/38067 35714/38064 35716/38066 +f 35717/38067 35720/38071 35712/38062 +f 35718/38068 35715/38065 35721/38072 +f 33150/38070 35713/38063 35718/38068 +f 35715/38065 35719/38069 35722/38073 +f 35712/38062 35720/38071 35719/38069 +f 33150/38070 33157/38074 35716/38066 +f 35096/38075 35717/38067 35716/38066 +f 35720/38071 35717/38067 35723/38076 +f 33149/38077 35718/38068 35721/38072 +f 35721/38072 35715/38065 35722/38073 +f 35718/38068 33149/38077 33150/38070 +f 35722/38073 35719/38069 35702/38078 +f 35720/38071 35723/38076 35719/38069 +f 35716/38066 33157/38074 35096/38075 +f 35717/38067 35096/38075 35094/38079 +f 35723/38076 35717/38067 35094/38079 +f 33149/38077 35721/38072 33162/38080 +f 33162/38080 35721/38072 35722/38073 +f 35113/38081 35702/38078 35719/38069 +f 35702/38078 33168/38082 35722/38073 +f 35719/38069 35723/38076 35724/38083 +f 35723/38076 35094/38079 35724/38083 +f 35722/38073 33168/38082 33162/38080 +f 35083/38084 35113/38081 35719/38069 +f 35724/38083 35083/38084 35719/38069 +f 35724/38083 35094/38079 35088/38085 +f 35083/38084 35724/38083 35088/38085 +f 35725/38086 35726/38087 33666/38088 +f 35727/38089 35726/38087 35725/38086 +f 35728/38090 33666/38088 35726/38087 +f 35725/38086 33666/38088 33659/38091 +f 35726/38087 35727/38089 35729/38092 +f 35727/38089 35725/38086 33659/38091 +f 33674/38093 33666/38088 35728/38090 +f 35726/38087 34317/38094 35728/38090 +f 35730/38095 35729/38092 35727/38089 +f 34317/38094 35726/38087 35729/38092 +f 35727/38089 33659/38091 35730/38095 +f 33674/38093 35728/38090 34311/38096 +f 34317/38094 34311/38096 35728/38090 +f 35731/38097 35729/38092 35730/38095 +f 35732/38098 34317/38094 35729/38092 +f 33650/38099 35730/38095 33659/38091 +f 35729/38092 35731/38097 35732/38098 +f 35733/38100 35731/38097 35730/38095 +f 34317/38094 35732/38098 34313/38101 +f 35733/38100 35730/38095 33650/38099 +f 35731/38097 35734/38102 35732/38098 +f 35731/38097 35733/38100 35734/38102 +f 34313/38101 35732/38098 35734/38102 +f 35734/38102 35733/38100 33650/38099 +f 34313/38101 35734/38102 33612/38103 +f 35734/38102 33650/38099 33613/38104 +f 33612/38103 35734/38102 33613/38104 +f 34313/38101 33612/38103 34058/38105 +f 35735/38106 35736/38107 17396/38108 +f 17462/38109 35736/38107 35735/38106 +f 35736/38107 35737/38110 17396/38108 +f 17417/38111 35735/38106 17396/38108 +f 35735/38106 17417/38111 17462/38109 +f 17462/38109 35738/38112 35736/38107 +f 35739/38113 35737/38110 35736/38107 +f 17396/38108 35737/38110 17418/38114 +f 35739/38113 35736/38107 35738/38112 +f 17518/38115 35738/38112 17462/38109 +f 35740/38116 35737/38110 35739/38113 +f 35741/38117 17418/38114 35737/38110 +f 35739/38113 35738/38112 35742/38118 +f 35738/38112 17518/38115 17623/38119 +f 35740/38116 35739/38113 35742/38118 +f 35737/38110 35740/38116 35743/38120 +f 35741/38117 17439/38121 17418/38114 +f 35737/38110 35743/38120 35741/38117 +f 35738/38112 17623/38119 35742/38118 +f 35742/38118 35744/38122 35740/38116 +f 35740/38116 35745/38123 35743/38120 +f 17554/38124 17439/38121 35741/38117 +f 35743/38120 35746/38125 35741/38117 +f 17623/38119 17705/38126 35742/38118 +f 35744/38122 35742/38118 35747/38127 +f 35745/38123 35740/38116 35744/38122 +f 35745/38123 35748/38128 35743/38120 +f 17554/38124 35741/38117 17664/38129 +f 35741/38117 35746/38125 17743/38130 +f 35746/38125 35743/38120 35748/38128 +f 35742/38118 17705/38126 35747/38127 +f 35749/38131 35744/38122 35747/38127 +f 35744/38122 35749/38131 35745/38123 +f 35748/38128 35745/38123 35750/38132 +f 35741/38117 17743/38130 17664/38129 +f 17744/38133 17743/38130 35746/38125 +f 35748/38128 35751/38134 35746/38125 +f 35747/38127 17705/38126 35752/38135 +f 35753/38136 35749/38131 35747/38127 +f 35749/38131 35750/38132 35745/38123 +f 35748/38128 35750/38132 17812/38137 +f 17742/38138 17744/38133 35746/38125 +f 35751/38134 35748/38128 17812/38137 +f 35746/38125 35751/38134 17742/38138 +f 35752/38135 17705/38126 35754/38139 +f 35747/38127 35752/38135 35755/38140 +f 35747/38127 17929/38141 35753/38136 +f 35749/38131 35753/38136 17891/38142 +f 17813/38143 35750/38132 35749/38131 +f 17812/38137 35750/38132 17813/38143 +f 17812/38137 17742/38138 35751/38134 +f 35754/38139 35755/38140 35752/38135 +f 17705/38126 17849/38144 35754/38139 +f 35747/38127 35755/38140 17929/38141 +f 17929/38141 17891/38142 35753/38136 +f 17813/38143 35749/38131 17891/38142 +f 35755/38140 35754/38139 17849/38144 +f 17849/38144 17929/38141 35755/38140 +f 13383/38145 13595/38146 35756/38147 +f 35757/38148 35756/38147 13595/38146 +f 13383/38145 35756/38147 13163/38149 +f 35758/38150 35757/38148 13595/38146 +f 35759/38151 35756/38147 35757/38148 +f 35756/38147 35759/38151 13163/38149 +f 13775/38152 35757/38148 35758/38150 +f 35757/38148 13596/38153 35759/38151 +f 35759/38151 13384/38154 13163/38149 +f 13596/38153 35757/38148 13775/38152 +f 35759/38151 13596/38153 13384/38154 +f 28181/38155 35760/38156 35761/38157 +f 28169/38158 35760/38156 28181/38155 +f 35761/38157 35760/38156 35762/38159 +f 28181/38155 35761/38157 35074/38160 +f 35760/38156 28169/38158 35763/38161 +f 35762/38159 35760/38156 35763/38161 +f 35761/38157 35762/38159 35709/38162 +f 35074/38160 35761/38157 35077/38163 +f 28169/38158 35764/38164 35763/38161 +f 35765/38165 35762/38159 35763/38161 +f 35709/38162 35762/38159 35766/38166 +f 35761/38157 35709/38162 35711/38167 +f 35761/38157 35711/38167 35077/38163 +f 35764/38164 35767/38168 35763/38161 +f 35764/38164 28169/38158 28155/38169 +f 35762/38159 35765/38165 35766/38166 +f 35767/38168 35765/38165 35763/38161 +f 35768/38170 35709/38162 35766/38166 +f 28162/38171 35767/38168 35764/38164 +f 28155/38169 28162/38171 35764/38164 +f 35766/38166 35765/38165 28171/38172 +f 35767/38168 28156/38173 35765/38165 +f 35766/38166 35769/38174 35768/38170 +f 35767/38168 28162/38171 28156/38173 +f 35770/38175 35766/38166 28171/38172 +f 28171/38172 35765/38165 28156/38173 +f 35769/38174 35771/38176 35768/38170 +f 35769/38174 35766/38166 35770/38175 +f 28176/38177 35770/38175 28171/38172 +f 35771/38176 35772/38178 35768/38170 +f 35773/38179 35771/38176 35769/38174 +f 35770/38175 28176/38177 35769/38174 +f 35771/38176 35774/38180 35772/38178 +f 35768/38170 35772/38178 35775/38181 +f 35776/38182 35771/38176 35773/38179 +f 28176/38177 35773/38179 35769/38174 +f 35776/38182 35774/38180 35771/38176 +f 35777/38183 35772/38178 35774/38180 +f 35778/38184 35775/38181 35772/38178 +f 35773/38179 35779/38185 35776/38182 +f 35773/38179 28176/38177 28175/38186 +f 35776/38182 35780/38187 35774/38180 +f 35774/38180 35780/38187 35777/38183 +f 35778/38184 35772/38178 35777/38183 +f 35773/38179 35781/38188 35779/38185 +f 35779/38185 35780/38187 35776/38182 +f 28175/38186 35781/38188 35773/38179 +f 35781/38188 35780/38187 35779/38185 +f 35709/38162 35782/38189 35710/38190 +f 35710/38190 35491/38191 35471/38192 +f 35783/38193 35784/38194 28178/38195 +f 35784/38194 35783/38193 35785/38196 +f 28178/38195 35784/38194 35786/38197 +f 28178/38195 28185/38198 35783/38193 +f 35785/38196 35783/38193 35787/38199 +f 35785/38196 35788/38200 35784/38194 +f 35789/38201 28178/38195 35786/38197 +f 35786/38197 35784/38194 35790/38202 +f 35783/38193 28185/38198 35787/38199 +f 35787/38199 35791/38203 35785/38196 +f 35790/38202 35784/38194 35788/38200 +f 35791/38203 35788/38200 35785/38196 +f 28178/38195 35789/38201 28167/38204 +f 35792/38205 35789/38201 35786/38197 +f 35793/38206 35786/38197 35790/38202 +f 35483/38207 35787/38199 28185/38198 +f 35483/38207 35791/38203 35787/38199 +f 35790/38202 35788/38200 35794/38208 +f 35488/38209 35788/38200 35791/38203 +f 28159/38210 28167/38204 35789/38201 +f 35789/38201 35792/38205 28159/38210 +f 35792/38205 35786/38197 35793/38206 +f 35793/38206 35790/38202 35795/38211 +f 35791/38203 35483/38207 35488/38209 +f 35788/38200 35488/38209 35794/38208 +f 35790/38202 35794/38208 35795/38211 +f 28159/38210 35792/38205 28168/38212 +f 35796/38213 35792/38205 35793/38206 +f 35797/38214 35793/38206 35795/38211 +f 35794/38208 35488/38209 35798/38215 +f 35794/38208 35798/38215 35795/38211 +f 35799/38216 28168/38212 35792/38205 +f 35796/38213 35793/38206 35797/38214 +f 35796/38213 35799/38216 35792/38205 +f 35800/38217 35797/38214 35795/38211 +f 35782/38218 35798/38215 35488/38209 +f 35798/38215 35800/38217 35795/38211 +f 35801/38219 28168/38212 35799/38216 +f 35796/38213 35797/38214 35799/38216 +f 35797/38214 35800/38217 35777/38220 +f 35782/38218 35488/38209 35710/38221 +f 35798/38215 35775/38222 35800/38217 +f 28175/38223 28168/38212 35801/38219 +f 35799/38216 35781/38224 35801/38219 +f 35802/38225 35799/38216 35797/38214 +f 35777/38220 35800/38217 35778/38226 +f 35777/38220 35803/38227 35797/38214 +f 35488/38209 35486/38228 35710/38221 +f 35775/38222 35778/38226 35800/38217 +f 28175/38223 35801/38219 35781/38224 +f 35799/38216 35802/38225 35781/38224 +f 35802/38225 35797/38214 35803/38227 +f 35780/38229 35803/38227 35777/38220 +f 35491/38230 35710/38221 35486/38228 +f 35780/38229 35781/38224 35802/38225 +f 35780/38229 35802/38225 35803/38227 +f 34188/38231 34215/38232 35628/38233 +f 35628/38233 35804/38234 34188/38231 +f 35619/38235 35804/38234 35628/38233 +f 34188/38231 35804/38234 34176/38236 +f 35805/38237 35804/38234 35619/38235 +f 35804/38234 33688/38238 34176/38236 +f 35805/38237 35619/38235 35615/38239 +f 35806/38240 35804/38234 35805/38237 +f 35804/38234 35806/38240 33688/38238 +f 33673/38241 35805/38237 35615/38239 +f 35805/38237 33683/38242 35806/38240 +f 33683/38242 33688/38238 35806/38240 +f 33683/38242 35805/38237 33673/38241 +f 35807/38243 35808/38244 35809/38245 +f 35808/38244 35807/38243 35810/38246 +f 35809/38245 35808/38244 35811/38247 +f 35812/38248 35807/38243 35809/38245 +f 35810/38246 35813/38249 35808/38244 +f 35807/38243 35814/38250 35810/38246 +f 35808/38244 35813/38249 35811/38247 +f 35811/38247 35408/38251 35809/38245 +f 35814/38250 35807/38243 35812/38248 +f 35812/38248 35809/38245 35417/38252 +f 35810/38246 35815/38253 35813/38249 +f 35814/38250 29536/38254 35810/38246 +f 35811/38247 35813/38249 35816/38255 +f 35408/38251 35811/38247 35405/38256 +f 35809/38245 35408/38251 35417/38252 +f 35812/38248 35817/38257 35814/38250 +f 35818/38258 35812/38248 35417/38252 +f 29691/38259 35815/38253 35810/38246 +f 35819/38260 35813/38249 35815/38253 +f 29536/38254 35814/38250 29454/38261 +f 29536/38254 29691/38259 35810/38246 +f 35816/38255 35405/38256 35811/38247 +f 35813/38249 35819/38260 35816/38255 +f 35817/38257 35812/38248 35818/38258 +f 29454/38261 35814/38250 35817/38257 +f 35417/38252 35820/38262 35818/38258 +f 29691/38259 35821/38263 35815/38253 +f 35821/38263 35819/38260 35815/38253 +f 35816/38255 35822/38264 35405/38256 +f 35819/38260 35823/38265 35816/38255 +f 35817/38257 35818/38258 29623/38266 +f 35817/38257 29533/38267 29454/38261 +f 35820/38262 35417/38252 35824/38268 +f 35820/38262 35825/38269 35818/38258 +f 29724/38270 35821/38263 29691/38259 +f 35819/38260 35821/38263 29724/38270 +f 35822/38264 35412/38271 35405/38256 +f 35823/38265 35822/38264 35816/38255 +f 35826/38272 35823/38265 35819/38260 +f 35817/38257 29623/38266 29533/38267 +f 29623/38266 35818/38258 35827/38273 +f 35824/38268 35417/38252 35420/38274 +f 35427/38275 35820/38262 35824/38268 +f 35825/38269 35827/38273 35818/38258 +f 35825/38269 35820/38262 34557/38276 +f 35826/38272 35819/38260 29724/38270 +f 35412/38271 35822/38264 35823/38265 +f 35412/38271 35823/38265 35826/38272 +f 29623/38266 35827/38273 29569/38277 +f 35824/38268 35420/38274 35427/38275 +f 34555/38278 35820/38262 35427/38275 +f 35827/38273 35825/38269 29569/38277 +f 34557/38276 29540/38279 35825/38269 +f 34555/38278 34557/38276 35820/38262 +f 29724/38270 29751/38280 35826/38272 +f 35826/38272 29751/38280 35412/38271 +f 29540/38279 29569/38277 35825/38269 +f 35828/38281 35829/38282 35830/38283 +f 35828/38281 35681/38284 35829/38282 +f 35831/38285 35830/38283 35829/38282 +f 35832/38286 35828/38281 35830/38283 +f 35681/38284 35828/38281 35833/38287 +f 35834/38288 35829/38282 35681/38284 +f 35832/38286 35830/38283 35831/38285 +f 35829/38282 35163/38289 35831/38285 +f 35835/38290 35828/38281 35832/38286 +f 35828/38281 35836/38291 35833/38287 +f 35672/38292 35681/38284 35833/38287 +f 35215/38293 35829/38282 35834/38288 +f 35681/38284 35684/38294 35834/38288 +f 35835/38290 35832/38286 35831/38285 +f 35829/38282 35168/38295 35163/38289 +f 35831/38285 35163/38289 35487/38296 +f 35828/38281 35835/38290 35836/38291 +f 35833/38287 35836/38291 35837/38297 +f 35833/38287 35837/38297 35672/38292 +f 35834/38288 35838/38298 35215/38293 +f 35829/38282 35215/38293 35168/38295 +f 35839/38299 35834/38288 35684/38294 +f 35831/38285 35840/38300 35835/38290 +f 35487/38296 35841/38301 35831/38285 +f 35835/38290 35837/38297 35836/38291 +f 35672/38292 35837/38297 35667/38302 +f 35838/38298 35834/38288 35839/38299 +f 35215/38293 35838/38298 35839/38299 +f 35203/38303 35168/38295 35215/38293 +f 35839/38299 35684/38294 35217/38304 +f 35842/38305 35840/38300 35831/38285 +f 35843/38306 35835/38290 35840/38300 +f 35841/38301 35487/38296 35500/38307 +f 35841/38301 35842/38305 35831/38285 +f 35835/38290 35843/38306 35837/38297 +f 35837/38297 35843/38306 35667/38302 +f 35217/38304 35215/38293 35839/38299 +f 35210/38308 35217/38304 35684/38294 +f 35840/38300 35842/38305 35844/38309 +f 35843/38306 35840/38300 35664/38310 +f 35500/38307 35845/38311 35841/38301 +f 35845/38311 35842/38305 35841/38301 +f 35843/38306 35664/38310 35667/38302 +f 35844/38309 35664/38310 35840/38300 +f 35842/38305 35665/38312 35844/38309 +f 35500/38307 35665/38312 35845/38311 +f 35665/38312 35842/38305 35845/38311 +f 35665/38312 35664/38310 35844/38309 +f 35846/38313 35847/38314 17032/38315 +f 35847/38314 35846/38313 35848/38316 +f 17032/38315 35847/38314 17003/38317 +f 35846/38313 17032/38315 17065/38318 +f 35846/38313 17031/38319 35848/38316 +f 16987/38320 35847/38314 35848/38316 +f 17003/38317 35847/38314 16987/38320 +f 17056/38321 35846/38313 17065/38318 +f 35846/38313 17056/38321 17031/38319 +f 17031/38319 17004/38322 35848/38316 +f 17004/38322 16987/38320 35848/38316 +f 35782/38323 35709/38324 35768/38325 +f 35798/38326 35782/38323 35768/38325 +f 35768/38325 35775/38327 35798/38326 +f 6700/38328 6701/38329 6657/38330 +f 35849/38331 14095/38332 14157/38333 +f 14302/38334 14095/38332 35849/38331 +f 14157/38333 14302/38334 35849/38331 +f 35850/38335 32199/38336 32186/38337 +f 32181/38338 32199/38336 35850/38335 +f 35850/38335 32186/38337 32181/38338 +f 6423/38339 6331/38340 6334/38341 +f 33984/38342 33982/38343 33974/38344 +f 35851/38345 11534/38346 11635/38347 +f 11320/38348 11534/38346 35851/38345 +f 11635/38347 11320/38348 35851/38345 +f 9507/38349 9447/38350 9575/38351 +f 35458/38352 35188/38353 35459/38354 +f 35188/38353 35454/38355 35459/38354 +f 35454/38355 35188/38353 35170/38356 +f 35170/38356 35178/38357 35454/38355 +f 35471/38358 35478/38359 35465/38360 +f 29488/38361 29374/38362 35852/38363 +f 29339/38364 35852/38363 29374/38362 +f 29488/38361 35852/38363 29339/38364 +f 16832/38365 16784/38366 16831/38367 +f 35491/38368 35478/38369 35471/38370 diff --git a/examples/mano_hand_retargeter/_DATA/data/mano/MANO_RIGHT.pkl b/examples/mano_hand_retargeter/_DATA/data/mano/MANO_RIGHT.pkl new file mode 100755 index 000000000..c4ea264ff Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/data/mano/MANO_RIGHT.pkl differ diff --git a/examples/mano_hand_retargeter/_DATA/data/mano_mean_params.npz b/examples/mano_hand_retargeter/_DATA/data/mano_mean_params.npz new file mode 100644 index 000000000..52792d92c Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/data/mano_mean_params.npz differ diff --git a/examples/mano_hand_retargeter/_DATA/g1_hand_left_dexpilot.yml b/examples/mano_hand_retargeter/_DATA/g1_hand_left_dexpilot.yml new file mode 100644 index 000000000..9d90c8881 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/g1_hand_left_dexpilot.yml @@ -0,0 +1,18 @@ +retargeting: + finger_tip_link_names: + - thumb_tip + - index_tip + - middle_tip + low_pass_alpha: 0.2 + scaling_factor: 1.0 + target_joint_names: + - left_hand_thumb_0_joint + - left_hand_thumb_1_joint + - left_hand_thumb_2_joint + - left_hand_middle_0_joint + - left_hand_middle_1_joint + - left_hand_index_0_joint + - left_hand_index_1_joint + type: DexPilot + urdf_path: /home/lduan/Documents/isaac-deploy-main-operators-hand_retargeter/operators/hand_retargeter/data/G1_left_hand.urdf + wrist_link_name: base_link diff --git a/examples/mano_hand_retargeter/_DATA/g1_hand_right_dexpilot.yml b/examples/mano_hand_retargeter/_DATA/g1_hand_right_dexpilot.yml new file mode 100644 index 000000000..36fc8f494 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/g1_hand_right_dexpilot.yml @@ -0,0 +1,18 @@ +retargeting: + finger_tip_link_names: + - thumb_tip + - index_tip + - middle_tip + low_pass_alpha: 0.2 + scaling_factor: 1.0 + target_joint_names: + - right_hand_thumb_0_joint + - right_hand_thumb_1_joint + - right_hand_thumb_2_joint + - right_hand_middle_0_joint + - right_hand_middle_1_joint + - right_hand_index_0_joint + - right_hand_index_1_joint + type: DexPilot + urdf_path: /home/lduan/Documents/isaac-deploy-main-operators-hand_retargeter/operators/hand_retargeter/data/G1_right_hand.urdf + wrist_link_name: base_link diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_index_0_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_index_0_link.STL new file mode 100644 index 000000000..d57448909 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_index_0_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_index_1_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_index_1_link.STL new file mode 100644 index 000000000..31990c145 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_index_1_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_middle_0_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_middle_0_link.STL new file mode 100644 index 000000000..d57448909 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_middle_0_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_middle_1_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_middle_1_link.STL new file mode 100644 index 000000000..31990c145 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_middle_1_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_palm_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_palm_link.STL new file mode 100644 index 000000000..4c6892823 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_palm_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_0_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_0_link.STL new file mode 100644 index 000000000..4e033538d Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_0_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_1_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_1_link.STL new file mode 100644 index 000000000..ab486df01 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_1_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_2_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_2_link.STL new file mode 100644 index 000000000..66d01a641 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/left_hand_thumb_2_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_index_0_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_index_0_link.STL new file mode 100644 index 000000000..5fa3f690e Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_index_0_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_index_1_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_index_1_link.STL new file mode 100644 index 000000000..dc376d8f0 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_index_1_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_middle_0_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_middle_0_link.STL new file mode 100644 index 000000000..0e055a9aa Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_middle_0_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_middle_1_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_middle_1_link.STL new file mode 100644 index 000000000..262b9fbaf Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_middle_1_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_palm_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_palm_link.STL new file mode 100644 index 000000000..43e1c98e8 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_palm_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_0_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_0_link.STL new file mode 100644 index 000000000..07c3be06d Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_0_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_1_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_1_link.STL new file mode 100644 index 000000000..3efb21ea6 Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_1_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_2_link.STL b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_2_link.STL new file mode 100644 index 000000000..a4b34470d Binary files /dev/null and b/examples/mano_hand_retargeter/_DATA/meshes/right_hand_thumb_2_link.STL differ diff --git a/examples/mano_hand_retargeter/_DATA/sharpa_ha4_left_dexpilot.yml b/examples/mano_hand_retargeter/_DATA/sharpa_ha4_left_dexpilot.yml new file mode 100644 index 000000000..a5a6bdf33 --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/sharpa_ha4_left_dexpilot.yml @@ -0,0 +1,38 @@ +retargeting: + # Sharpa HA4 left hand (5-finger) DexPilot configuration + finger_tip_link_names: + - left_thumb_fingertip + - left_index_fingertip + - left_middle_fingertip + - left_ring_fingertip + - left_pinky_fingertip + low_pass_alpha: 0.2 + scaling_factor: 1.2 + # Actuated joint list for optimization (ordered thumb->pinky, proximal->distal) + target_joint_names: + - left_thumb_CMC_FE + - left_thumb_CMC_AA + - left_thumb_MCP_FE + - left_thumb_MCP_AA + - left_thumb_IP + - left_index_MCP_FE + - left_index_MCP_AA + - left_index_PIP + - left_index_DIP + - left_middle_MCP_FE + - left_middle_MCP_AA + - left_middle_PIP + - left_middle_DIP + - left_ring_MCP_FE + - left_ring_MCP_AA + - left_ring_PIP + - left_ring_DIP + - left_pinky_CMC + - left_pinky_MCP_FE + - left_pinky_MCP_AA + - left_pinky_PIP + - left_pinky_DIP + type: DexPilot + urdf_path: /home/lduan/Downloads/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf + wrist_link_name: left_hand_C_MC + diff --git a/examples/mano_hand_retargeter/_DATA/sharpa_ha4_right_dexpilot.yml b/examples/mano_hand_retargeter/_DATA/sharpa_ha4_right_dexpilot.yml new file mode 100644 index 000000000..a3f0d674a --- /dev/null +++ b/examples/mano_hand_retargeter/_DATA/sharpa_ha4_right_dexpilot.yml @@ -0,0 +1,38 @@ +retargeting: + # Sharpa HA4 right hand (5-finger) DexPilot configuration + finger_tip_link_names: + - right_thumb_fingertip + - right_index_fingertip + - right_middle_fingertip + - right_ring_fingertip + - right_pinky_fingertip + low_pass_alpha: 0.2 + scaling_factor: 1.2 + # Actuated joint list for optimization (ordered thumb->pinky, proximal->distal) + target_joint_names: + - right_thumb_CMC_FE + - right_thumb_CMC_AA + - right_thumb_MCP_FE + - right_thumb_MCP_AA + - right_thumb_IP + - right_index_MCP_FE + - right_index_MCP_AA + - right_index_PIP + - right_index_DIP + - right_middle_MCP_FE + - right_middle_MCP_AA + - right_middle_PIP + - right_middle_DIP + - right_ring_MCP_FE + - right_ring_MCP_AA + - right_ring_PIP + - right_ring_DIP + - right_pinky_CMC + - right_pinky_MCP_FE + - right_pinky_MCP_AA + - right_pinky_PIP + - right_pinky_DIP + type: DexPilot + urdf_path: /home/lduan/Downloads/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf + wrist_link_name: right_hand_C_MC + diff --git a/examples/mano_hand_retargeter/apply_world_pose_to_traj_npz.py b/examples/mano_hand_retargeter/apply_world_pose_to_traj_npz.py new file mode 100644 index 000000000..f30710d22 --- /dev/null +++ b/examples/mano_hand_retargeter/apply_world_pose_to_traj_npz.py @@ -0,0 +1,451 @@ +#!/usr/bin/env python3 +""" +Post-process a retargeted TriHand trajectory NPZ to place/orient the wrist pose in Dyn-HaMR "world" coordinates, +WITHOUT re-running dex-retargeting. + +Why this exists +--------------- +`retarget_openxr26_with_g1_upper_body.py` can produce a trajectory NPZ containing: + - left_hand_q / right_hand_q (joint angles) + - left_wrist / right_wrist (optional wrist/base pose used by IsaacLab replay with --use_wrist_pose) + +When you retarget from `--zero_global` OpenXR26 joints, the joint angles are correct but the wrist poses are +in a canonical frame near the origin. This script applies the per-frame MANO global transform +(root_orient + trans from the original `*_world_results.npz`) to the wrist pose trajectory so that Isaac replay +can teleport the hand to the world-view motion. + +Notes on coordinate conventions +------------------------------- +Dyn-HaMR's `run_mano` applies an X-axis flip for left hands *after* applying the MANO global transform: + J_world = F * (R * J0 + t), where F = diag(s,1,1), s=+1 (right) or -1 (left) + +If your canonical pose is already in the "post-flip" frame (which is the case for the OpenXR26 exported by this repo), +then the equivalent rigid transform on canonical points is: + J_world = (F R F) * J_canonical + (F t) + +We use that same transform for wrist positions, and for orientation we convert (F R F) to a quaternion and +compose it with the existing wrist quaternion. + +If the world axes still don't match Isaac world axes, use IsaacLab replay's `--wrist_pose_rot*` options +to apply an extra correction rotation at replay time. + +Example +------- +python dyn-hamr/apply_world_pose_to_traj_npz.py \\ + --traj_npz_in outputs/retarget/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz \\ + --traj_npz_out outputs/retarget/openxr26_single_hand_zero_global/left_hand_traj_world.npz \\ + --world_results outputs/logs/.../smooth_fit/output_video_000000_world_results.npz \\ + --hand left \\ + --split_npz outputs/retarget/openxr26_single_hand_zero_global/openxr26_joints_left.npz \\ + --seq_track 0 \\ + --apply_to both + +Then replay with: + ./isaaclab.sh -p scripts/demos/unitree_trihand_replay_traj.py \\ + --traj_npz outputs/.../left_hand_traj_world.npz \\ + --hand left --spawn_height 0.3 --use_wrist_pose +""" + +from __future__ import annotations + +import argparse +from pathlib import Path +from typing import Any, Dict, Optional, Tuple + + +def _aa_to_rotmat(aa: Any) -> Any: + """Axis-angle (3,) to rotation matrix (3,3).""" + import numpy as np + + aa = np.asarray(aa, dtype=np.float32).reshape(3) + theta = float(np.linalg.norm(aa)) + if theta < 1e-8: + return np.eye(3, dtype=np.float32) + axis = aa / theta + x, y, z = [float(v) for v in axis] + K = np.array([[0.0, -z, y], [z, 0.0, -x], [-y, x, 0.0]], dtype=np.float32) + I = np.eye(3, dtype=np.float32) + s = float(np.sin(theta)) + c = float(np.cos(theta)) + return (I + s * K + (1.0 - c) * (K @ K)).astype(np.float32) + + +def _quat_mul_wxyz(q1: Any, q2: Any) -> Any: + import numpy as np + + q1 = np.asarray(q1, dtype=np.float32).reshape(4) + q2 = np.asarray(q2, dtype=np.float32).reshape(4) + w1, x1, y1, z1 = q1 + w2, x2, y2, z2 = q2 + return np.array( + [ + w1 * w2 - x1 * x2 - y1 * y2 - z1 * z2, + w1 * x2 + x1 * w2 + y1 * z2 - z1 * y2, + w1 * y2 - x1 * z2 + y1 * w2 + z1 * x2, + w1 * z2 + x1 * y2 - y1 * x2 + z1 * w2, + ], + dtype=np.float32, + ) + + +def _quat_conj_wxyz(q: Any) -> Any: + import numpy as np + + q = np.asarray(q, dtype=np.float32).reshape(4) + return np.array([q[0], -q[1], -q[2], -q[3]], dtype=np.float32) + + +def _map_dynhamr_world_to_isaac(R_dh: Any, t_dh: Any) -> Tuple[Any, Any]: + """ + Map a pose expressed in Dyn-HaMR world coordinates to Isaac world coordinates. + + Dyn-HaMR world convention (as documented in this repo): x right, y down, z forward + Isaac world (USD typical): x forward, y left, z up + + We use axis mapping: + x_isaac = z_dh + y_isaac = -x_dh + z_isaac = -y_dh + + For rotations: R_isaac = M * R_dh * M^T + For translations: t_isaac = M * t_dh + """ + import numpy as np + + M = np.array( + [ + [0.0, 0.0, 1.0], + [-1.0, 0.0, 0.0], + [0.0, -1.0, 0.0], + ], + dtype=np.float32, + ) + R_dh = np.asarray(R_dh, dtype=np.float32).reshape(3, 3) + t_dh = np.asarray(t_dh, dtype=np.float32).reshape(3) + R_i = (M @ R_dh @ M.T).astype(np.float32) + t_i = (M @ t_dh).astype(np.float32) + return R_i, t_i + + +def _map_dynhamr_pos_to_isaac(p_dh: Any) -> Any: + """ + Map a 3D point from Dyn-HaMR world (x right, y down, z forward) to Isaac world (x forward, y left, z up). + Uses the same axis mapping as `_map_dynhamr_world_to_isaac`. + """ + import numpy as np + + p_dh = np.asarray(p_dh, dtype=np.float32).reshape(3) + # x_isaac = z_dh ; y_isaac = -x_dh ; z_isaac = -y_dh + return np.array([p_dh[2], -p_dh[0], -p_dh[1]], dtype=np.float32) + +def _quat_wxyz_from_rotmat(R: Any) -> Any: + import numpy as np + + R = np.asarray(R, dtype=np.float32).reshape(3, 3) + t = float(np.trace(R)) + if t > 0.0: + s = float(np.sqrt(t + 1.0) * 2.0) + w = 0.25 * s + x = (R[2, 1] - R[1, 2]) / s + y = (R[0, 2] - R[2, 0]) / s + z = (R[1, 0] - R[0, 1]) / s + else: + if R[0, 0] > R[1, 1] and R[0, 0] > R[2, 2]: + s = float(np.sqrt(1.0 + R[0, 0] - R[1, 1] - R[2, 2]) * 2.0) + w = (R[2, 1] - R[1, 2]) / s + x = 0.25 * s + y = (R[0, 1] + R[1, 0]) / s + z = (R[0, 2] + R[2, 0]) / s + elif R[1, 1] > R[2, 2]: + s = float(np.sqrt(1.0 + R[1, 1] - R[0, 0] - R[2, 2]) * 2.0) + w = (R[0, 2] - R[2, 0]) / s + x = (R[0, 1] + R[1, 0]) / s + y = 0.25 * s + z = (R[1, 2] + R[2, 1]) / s + else: + s = float(np.sqrt(1.0 + R[2, 2] - R[0, 0] - R[1, 1]) * 2.0) + w = (R[1, 0] - R[0, 1]) / s + x = (R[0, 2] + R[2, 0]) / s + y = (R[1, 2] + R[2, 1]) / s + z = 0.25 * s + q = np.array([w, x, y, z], dtype=np.float32) + q = q / max(float(np.linalg.norm(q)), 1e-8) + return q + + +def _rot_x(a: float) -> Any: + import numpy as np + + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[1.0, 0.0, 0.0], [0.0, ca, -sa], [0.0, sa, ca]], dtype=np.float32) + + +def _rot_y(a: float) -> Any: + import numpy as np + + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[ca, 0.0, sa], [0.0, 1.0, 0.0], [-sa, 0.0, ca]], dtype=np.float32) + + +def _rot_z(a: float) -> Any: + import numpy as np + + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[ca, -sa, 0.0], [sa, ca, 0.0], [0.0, 0.0, 1.0]], dtype=np.float32) + + +def _euler_xyz_deg_to_rotmat(euler_xyz_deg: tuple[float, float, float]) -> Any: + """ + Intrinsic XYZ Euler (degrees) matching scipy's `Rotation.from_euler(\"xyz\", ...)`. + """ + import numpy as np + + ax, ay, az = [float(v) * np.pi / 180.0 for v in euler_xyz_deg] + return (_rot_x(ax) @ _rot_y(ay) @ _rot_z(az)).astype(np.float32) + + +def _parse_euler_xyz_deg(csv: str) -> tuple[float, float, float]: + parts = [p.strip() for p in str(csv).split(",") if p.strip() != ""] + if len(parts) != 3: + raise ValueError(f"Expected 'x_deg,y_deg,z_deg' (3 numbers), got: {csv!r}") + return float(parts[0]), float(parts[1]), float(parts[2]) + + +def _parse_frame_indices_from_traj(traj: Dict[str, Any], *, T: int) -> Any: + import numpy as np + + if "frame_files" not in traj: + return np.arange(T, dtype=np.int64) + ff = traj["frame_files"] + try: + ff_list = [str(x) for x in ff.tolist()] + except Exception: + return np.arange(T, dtype=np.int64) + + idxs = [] + for s in ff_list: + # expected format from our retargeter: "...::t=000123" + if "::t=" in s: + try: + idxs.append(int(s.split("::t=")[-1])) + continue + except Exception: + pass + idxs.append(len(idxs)) # fallback monotonic + return np.asarray(idxs, dtype=np.int64) + + +def _resolve_world_track( + *, + world_track: Optional[int], + split_npz: Optional[Path], + seq_track: int, +) -> int: + if split_npz is None: + if world_track is None: + return int(seq_track) + return int(world_track) + + import numpy as np + + with np.load(str(split_npz), allow_pickle=True) as d: + if "track_indices" not in d.files: + raise KeyError(f"{split_npz} missing key 'track_indices' (needed to map seq track -> world track).") + ti = np.asarray(d["track_indices"]).reshape(-1) + if seq_track < 0 or seq_track >= ti.shape[0]: + raise ValueError(f"{split_npz}: --seq_track={seq_track} out of range for track_indices len={ti.shape[0]}") + return int(ti[int(seq_track)]) + + +def _load_world_params(world_results: Path) -> Tuple[Any, Any, Any]: + """ + Returns (trans_bt3, root_orient_bt3, is_right_bt) as numpy arrays. + """ + import numpy as np + import torch + + # Make imports work when run from repo root or dyn-hamr/ + this_dir = Path(__file__).resolve().parent + import sys + + if str(this_dir) not in sys.path: + sys.path.insert(0, str(this_dir)) + + from vis_mano_params import load_mano_params_from_file # noqa: E402 + from vis_mano_params import _to_numpy # noqa: E402 + + params = load_mano_params_from_file(str(world_results), device=torch.device("cpu")) + trans = _to_numpy(params.trans).astype(np.float32) # (B,T,3) + root = _to_numpy(params.root_orient).astype(np.float32) # (B,T,3) + is_right = params.is_right + if is_right is None: + is_right = torch.ones((trans.shape[0], trans.shape[1]), device=torch.device("cpu")) + is_right = _to_numpy(is_right).astype(np.float32) # (B,T) + return trans, root, is_right + + +def main() -> None: + ap = argparse.ArgumentParser() + ap.add_argument("--traj_npz_in", type=str, required=True) + ap.add_argument("--traj_npz_out", type=str, required=True) + ap.add_argument("--world_results", type=str, required=True, help="Path to Dyn-HaMR `*_world_results.npz`.") + ap.add_argument("--hand", type=str, choices=["left", "right"], required=True, help="Which wrist pose to update.") + ap.add_argument( + "--apply_to", + type=str, + choices=["pos", "quat", "both"], + default="both", + help="Apply world transform to position, quaternion, or both (default: both).", + ) + ap.add_argument( + "--quat_order", + type=str, + choices=["pre", "post"], + default="pre", + help="Quaternion composition order when applying world rotation: pre => q_out=qR⊗q, post => q_out=q⊗qR.", + ) + ap.add_argument( + "--world_track", + type=int, + default=None, + help="Track index (B) in the *world_results* file. If --split_npz is given, this is ignored.", + ) + ap.add_argument( + "--split_npz", + type=str, + default=None, + help=( + "Optional path to `openxr26_joints_left.npz` / `openxr26_joints_right.npz` generated with " + "`--split_by_handedness`. Used to map `--seq_track` to the original world_results track via `track_indices`." + ), + ) + ap.add_argument( + "--seq_track", + type=int, + default=0, + help="Track index within the split_npz (or default world_track if split_npz is not provided).", + ) + ap.add_argument( + "--to_isaac_world", + action="store_true", + help=( + "If set, additionally convert the resulting wrist pose from Dyn-HaMR world (x right, y down, z forward) " + "to Isaac world (x forward, y left, z up). Applies to BOTH position and quaternion." + ), + ) + ap.add_argument( + "--pre_rot", + type=str, + default=None, + help=( + "Optional extra fixed rotation (XYZ Euler degrees, 'x_deg,y_deg,z_deg') applied to the wrist quaternion " + "BEFORE composing the Dyn-HaMR world rotation. This is the correct place to compensate for the " + "`retarget_openxr26_with_g1_upper_body.py --apply-rot` that was used to rotate joint POSITIONS for retargeting " + "(since that rotation is otherwise missing from the wrist ORIENTATION). " + "Recommended when your finger motion is correct but the teleported wrist orientation looks wrong." + ), + ) + args = ap.parse_args() + + import numpy as np + + traj_in = Path(args.traj_npz_in).expanduser().resolve() + traj_out = Path(args.traj_npz_out).expanduser().resolve() + world_results = Path(args.world_results).expanduser().resolve() + split_npz = None if args.split_npz is None else Path(args.split_npz).expanduser().resolve() + + if not traj_in.is_file(): + raise FileNotFoundError(traj_in) + if not world_results.is_file(): + raise FileNotFoundError(world_results) + if split_npz is not None and not split_npz.is_file(): + raise FileNotFoundError(split_npz) + + # Load trajectory + with np.load(str(traj_in), allow_pickle=True) as d: + traj: Dict[str, np.ndarray] = {k: d[k] for k in d.files} + + wrist_key = "left_wrist" if args.hand == "left" else "right_wrist" + if wrist_key not in traj: + raise KeyError(f"{traj_in} missing '{wrist_key}'. Found keys: {list(traj.keys())}") + wrist = np.asarray(traj[wrist_key], dtype=np.float32) + if wrist.ndim != 2 or wrist.shape[1] != 7: + raise ValueError(f"{wrist_key} must be (T,7). Got {wrist.shape}") + T = int(wrist.shape[0]) + t_idxs = _parse_frame_indices_from_traj(traj, T=T) + + # Load world params and select track + trans_btc, root_btc, is_right_bt = _load_world_params(world_results) + B, Tw, _ = trans_btc.shape + world_track = _resolve_world_track(world_track=args.world_track, split_npz=split_npz, seq_track=int(args.seq_track)) + if world_track < 0 or world_track >= B: + raise ValueError(f"world_track={world_track} out of range for world_results B={B}") + + # Build output wrist array + out = wrist.copy() + do_pos = args.apply_to in ("pos", "both") + do_quat = args.apply_to in ("quat", "both") + q_pre = None + if args.pre_rot is not None: + R_pre = _euler_xyz_deg_to_rotmat(_parse_euler_xyz_deg(args.pre_rot)) + q_pre = _quat_wxyz_from_rotmat(R_pre) + + for i in range(T): + t = int(t_idxs[i]) + if t < 0 or t >= Tw: + continue + trans = np.asarray(trans_btc[world_track, t], dtype=np.float32).reshape(3) + aa = np.asarray(root_btc[world_track, t], dtype=np.float32).reshape(3) + s = 1.0 if float(is_right_bt[world_track, t]) >= 0.5 else -1.0 + F = np.diag(np.array([s, 1.0, 1.0], dtype=np.float32)) + + R = _aa_to_rotmat(aa) + Rw = (F @ R @ F).astype(np.float32) + tw = (F @ trans).astype(np.float32) + + if args.to_isaac_world: + Rw, tw = _map_dynhamr_world_to_isaac(Rw, tw) + + if do_pos: + # IMPORTANT: In MANO, `global_orient` rotates about the ROOT JOINT (wrist) pivot, not about the origin. + # Therefore the wrist joint position is NOT affected by the global rotation; only the global translation. + # This matches MANO behavior: with trans=0, changing root_orient does not move the wrist joint. + p = out[i, :3].astype(np.float32) + if args.to_isaac_world: + # In sequence retargeting, the stored wrist position is in Dyn-HaMR world coords. + # Convert it to Isaac world before applying translation. + p = _map_dynhamr_pos_to_isaac(p) + out[i, :3] = (p + tw).astype(np.float32) + if do_quat: + q = out[i, 3:].astype(np.float32) + # Apply pre-rotation in the wrist/local chain BEFORE composing world rotation. + # This results in: q_out = qR ⊗ (q_pre ⊗ q) when quat_order=pre. + if q_pre is not None: + q = _quat_mul_wxyz(q_pre, q) + qR = _quat_wxyz_from_rotmat(Rw) + if args.quat_order == "post": + q_out = _quat_mul_wxyz(q, qR) + else: + q_out = _quat_mul_wxyz(qR, q) + q_out = q_out / max(float(np.linalg.norm(q_out)), 1e-8) + out[i, 3:] = q_out.astype(np.float32) + + traj[wrist_key] = out + + # Provenance (replay ignores unknown keys) + traj["world_results_file"] = np.array(str(world_results), dtype=object) + traj["world_track"] = np.array(int(world_track), dtype=np.int64) + traj["seq_track"] = np.array(int(args.seq_track), dtype=np.int64) + traj["applied_to"] = np.array(str(args.apply_to), dtype=object) + traj["quat_order"] = np.array(str(args.quat_order), dtype=object) + traj["hand_updated"] = np.array(str(args.hand), dtype=object) + + traj_out.parent.mkdir(parents=True, exist_ok=True) + np.savez_compressed(str(traj_out), **traj) + print(f"Wrote: {traj_out}") + + +if __name__ == "__main__": + main() + + diff --git a/examples/mano_hand_retargeter/body_model/__init__.py b/examples/mano_hand_retargeter/body_model/__init__.py new file mode 100644 index 000000000..7d97c04db --- /dev/null +++ b/examples/mano_hand_retargeter/body_model/__init__.py @@ -0,0 +1,4 @@ +from .body_model import * +from .specs import * +from .utils import * +from .mano_wrapper import * \ No newline at end of file diff --git a/examples/mano_hand_retargeter/body_model/body_model.py b/examples/mano_hand_retargeter/body_model/body_model.py new file mode 100644 index 000000000..6ad972618 --- /dev/null +++ b/examples/mano_hand_retargeter/body_model/body_model.py @@ -0,0 +1,2415 @@ +# -*- coding: utf-8 -*- + +# Max-Planck-Gesellschaft zur Förderung der Wissenschaften e.V. (MPG) is +# holder of all proprietary rights on this computer program. +# You can only use this computer program if you have closed +# a license agreement with MPG or you get the right to use the computer +# program from someone who is authorized to grant you that right. +# Any use of the computer program without a valid license is prohibited and +# liable to prosecution. +# +# Copyright©2019 Max-Planck-Gesellschaft zur Förderung +# der Wissenschaften e.V. (MPG). acting on behalf of its Max Planck Institute +# for Intelligent Systems. All rights reserved. +# +# Contact: ps-license@tuebingen.mpg.de + +from typing import Optional, Dict, Union +import os +import os.path as osp + +import pickle + +import numpy as np + +import torch +import torch.nn as nn + +from smplx.lbs import ( + lbs, vertices2landmarks, find_dynamic_lmk_idx_and_bcoords, blend_shapes) + +from smplx.vertex_ids import vertex_ids as VERTEX_IDS +from smplx.utils import ( + Struct, to_np, to_tensor, Tensor, Array, + SMPLOutput, + SMPLHOutput, + SMPLXOutput, + MANOOutput, + FLAMEOutput, + find_joint_kin_chain) +from smplx.vertex_joint_selector import VertexJointSelector + + +class SMPL(nn.Module): + + NUM_JOINTS = 23 + NUM_BODY_JOINTS = 23 + SHAPE_SPACE_DIM = 300 + + def __init__( + self, model_path: str, + kid_template_path: str = '', + data_struct: Optional[Struct] = None, + create_betas: bool = True, + betas: Optional[Tensor] = None, + num_betas: int = 10, + create_global_orient: bool = True, + global_orient: Optional[Tensor] = None, + create_body_pose: bool = True, + body_pose: Optional[Tensor] = None, + create_transl: bool = True, + transl: Optional[Tensor] = None, + dtype=torch.float32, + batch_size: int = 1, + joint_mapper=None, + gender: str = 'neutral', + age: str = 'adult', + vertex_ids: Dict[str, int] = None, + v_template: Optional[Union[Tensor, Array]] = None, + **kwargs + ) -> None: + ''' SMPL model constructor + + Parameters + ---------- + model_path: str + The path to the folder or to the file where the model + parameters are stored + data_struct: Strct + A struct object. If given, then the parameters of the model are + read from the object. Otherwise, the model tries to read the + parameters from the given `model_path`. (default = None) + create_global_orient: bool, optional + Flag for creating a member variable for the global orientation + of the body. (default = True) + global_orient: torch.tensor, optional, Bx3 + The default value for the global orientation variable. + (default = None) + create_body_pose: bool, optional + Flag for creating a member variable for the pose of the body. + (default = True) + body_pose: torch.tensor, optional, Bx(Body Joints * 3) + The default value for the body pose variable. + (default = None) + num_betas: int, optional + Number of shape components to use + (default = 10). + create_betas: bool, optional + Flag for creating a member variable for the shape space + (default = True). + betas: torch.tensor, optional, Bx10 + The default value for the shape member variable. + (default = None) + create_transl: bool, optional + Flag for creating a member variable for the translation + of the body. (default = True) + transl: torch.tensor, optional, Bx3 + The default value for the transl variable. + (default = None) + dtype: torch.dtype, optional + The data type for the created variables + batch_size: int, optional + The batch size used for creating the member variables + joint_mapper: object, optional + An object that re-maps the joints. Useful if one wants to + re-order the SMPL joints to some other convention (e.g. MSCOCO) + (default = None) + gender: str, optional + Which gender to load + vertex_ids: dict, optional + A dictionary containing the indices of the extra vertices that + will be selected + ''' + + self.gender = gender + self.age = age + + if data_struct is None: + if osp.isdir(model_path): + model_fn = 'SMPL_{}.{ext}'.format(gender.upper(), ext='pkl') + smpl_path = os.path.join(model_path, model_fn) + else: + smpl_path = model_path + assert osp.exists(smpl_path), 'Path {} does not exist!'.format( + smpl_path) + + with open(smpl_path, 'rb') as smpl_file: + data_struct = Struct(**pickle.load(smpl_file, + encoding='latin1')) + + super(SMPL, self).__init__() + self.batch_size = batch_size + shapedirs = data_struct.shapedirs + if (shapedirs.shape[-1] < self.SHAPE_SPACE_DIM): + print(f'WARNING: You are using a {self.name()} model, with only' + ' 10 shape coefficients.') + num_betas = min(num_betas, 10) + else: + num_betas = min(num_betas, self.SHAPE_SPACE_DIM) + + if self.age=='kid': + v_template_smil = np.load(kid_template_path) + v_template_smil -= np.mean(v_template_smil, axis=0) + v_template_diff = np.expand_dims(v_template_smil - data_struct.v_template, axis=2) + shapedirs = np.concatenate((shapedirs[:, :, :num_betas], v_template_diff), axis=2) + num_betas = num_betas + 1 + + self._num_betas = num_betas + shapedirs = shapedirs[:, :, :num_betas] + # The shape components + self.register_buffer( + 'shapedirs', + to_tensor(to_np(shapedirs), dtype=dtype)) + + if vertex_ids is None: + # SMPL and SMPL-H share the same topology, so any extra joints can + # be drawn from the same place + vertex_ids = VERTEX_IDS['smplh'] + + self.dtype = dtype + + self.joint_mapper = joint_mapper + + self.vertex_joint_selector = VertexJointSelector( + vertex_ids=vertex_ids, **kwargs) + + self.faces = data_struct.f + self.register_buffer('faces_tensor', + to_tensor(to_np(self.faces, dtype=np.int64), + dtype=torch.long)) + + if create_betas: + if betas is None: + default_betas = torch.zeros( + [batch_size, self.num_betas], dtype=dtype) + else: + if torch.is_tensor(betas): + default_betas = betas.clone().detach() + else: + default_betas = torch.tensor(betas, dtype=dtype) + + self.register_parameter( + 'betas', nn.Parameter(default_betas, requires_grad=True)) + + # The tensor that contains the global rotation of the model + # It is separated from the pose of the joints in case we wish to + # optimize only over one of them + if create_global_orient: + if global_orient is None: + default_global_orient = torch.zeros( + [batch_size, 3], dtype=dtype) + else: + if torch.is_tensor(global_orient): + default_global_orient = global_orient.clone().detach() + else: + default_global_orient = torch.tensor( + global_orient, dtype=dtype) + + global_orient = nn.Parameter(default_global_orient, + requires_grad=True) + self.register_parameter('global_orient', global_orient) + + if create_body_pose: + if body_pose is None: + default_body_pose = torch.zeros( + [batch_size, self.NUM_BODY_JOINTS * 3], dtype=dtype) + else: + if torch.is_tensor(body_pose): + default_body_pose = body_pose.clone().detach() + else: + default_body_pose = torch.tensor(body_pose, + dtype=dtype) + self.register_parameter( + 'body_pose', + nn.Parameter(default_body_pose, requires_grad=True)) + + if create_transl: + if transl is None: + default_transl = torch.zeros([batch_size, 3], + dtype=dtype, + requires_grad=True) + else: + default_transl = torch.tensor(transl, dtype=dtype) + self.register_parameter( + 'transl', nn.Parameter(default_transl, requires_grad=True)) + + if v_template is None: + v_template = data_struct.v_template + if not torch.is_tensor(v_template): + v_template = to_tensor(to_np(v_template), dtype=dtype) + # The vertices of the template model + self.register_buffer('v_template', v_template) + + j_regressor = to_tensor(to_np( + data_struct.J_regressor), dtype=dtype) + self.register_buffer('J_regressor', j_regressor) + + # Pose blend shape basis: 6890 x 3 x 207, reshaped to 6890*3 x 207 + num_pose_basis = data_struct.posedirs.shape[-1] + # 207 x 20670 + posedirs = np.reshape(data_struct.posedirs, [-1, num_pose_basis]).T + self.register_buffer('posedirs', + to_tensor(to_np(posedirs), dtype=dtype)) + + # indices of parents for each joints + parents = to_tensor(to_np(data_struct.kintree_table[0])).long() + parents[0] = -1 + self.register_buffer('parents', parents) + + lbs_weights = to_tensor(to_np(data_struct.weights), dtype=dtype) + self.register_buffer('lbs_weights', lbs_weights) + + @property + def num_betas(self): + return self._num_betas + + @property + def num_expression_coeffs(self): + return 0 + + def create_mean_pose(self, data_struct) -> Tensor: + pass + + def name(self) -> str: + return 'SMPL' + + @torch.no_grad() + def reset_params(self, **params_dict) -> None: + for param_name, param in self.named_parameters(): + if param_name in params_dict: + param[:] = torch.tensor(params_dict[param_name]) + else: + param.fill_(0) + + def get_num_verts(self) -> int: + return self.v_template.shape[0] + + def get_num_faces(self) -> int: + return self.faces.shape[0] + + def extra_repr(self) -> str: + msg = [ + f'Gender: {self.gender.upper()}', + f'Number of joints: {self.J_regressor.shape[0]}', + f'Betas: {self.num_betas}', + ] + return '\n'.join(msg) + + def forward_shape( + self, + betas: Optional[Tensor] = None, + ) -> SMPLOutput: + betas = betas if betas is not None else self.betas + v_shaped = self.v_template + blend_shapes(betas, self.shapedirs) + return SMPLOutput(vertices=v_shaped, betas=betas, v_shaped=v_shaped) + + def forward( + self, + betas: Optional[Tensor] = None, + body_pose: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + return_verts=True, + return_full_pose: bool = False, + pose2rot: bool = True, + **kwargs + ) -> SMPLOutput: + ''' Forward pass for the SMPL model + + Parameters + ---------- + global_orient: torch.tensor, optional, shape Bx3 + If given, ignore the member variable and use it as the global + rotation of the body. Useful if someone wishes to predicts this + with an external model. (default=None) + betas: torch.tensor, optional, shape BxN_b + If given, ignore the member variable `betas` and use it + instead. For example, it can used if shape parameters + `betas` are predicted from some external model. + (default=None) + body_pose: torch.tensor, optional, shape Bx(J*3) + If given, ignore the member variable `body_pose` and use it + instead. For example, it can used if someone predicts the + pose of the body joints are predicted from some external model. + It should be a tensor that contains joint rotations in + axis-angle format. (default=None) + transl: torch.tensor, optional, shape Bx3 + If given, ignore the member variable `transl` and use it + instead. For example, it can used if the translation + `transl` is predicted from some external model. + (default=None) + return_verts: bool, optional + Return the vertices. (default=True) + return_full_pose: bool, optional + Returns the full axis-angle pose vector (default=False) + + Returns + ------- + ''' + print('!!!!!!!!!!!!!!!!!!!', pose2rot) + exit() + # If no shape and pose parameters are passed along, then use the + # ones from the module + global_orient = (global_orient if global_orient is not None else + self.global_orient) + body_pose = body_pose if body_pose is not None else self.body_pose + betas = betas if betas is not None else self.betas + + apply_trans = transl is not None or hasattr(self, 'transl') + if transl is None and hasattr(self, 'transl'): + transl = self.transl + + full_pose = torch.cat([global_orient, body_pose], dim=1) + + batch_size = max(betas.shape[0], global_orient.shape[0], + body_pose.shape[0]) + + if betas.shape[0] != batch_size: + num_repeats = int(batch_size / betas.shape[0]) + betas = betas.expand(num_repeats, -1) + + vertices, joints = lbs(betas, full_pose, self.v_template, + self.shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=pose2rot) + + joints = self.vertex_joint_selector(vertices, joints) + # Map the joints to the current dataset + if self.joint_mapper is not None: + joints = self.joint_mapper(joints) + + if apply_trans: + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + output = SMPLOutput(vertices=vertices if return_verts else None, + global_orient=global_orient, + body_pose=body_pose, + joints=joints, + betas=betas, + full_pose=full_pose if return_full_pose else None) + + return output + + +class SMPLLayer(SMPL): + def __init__( + self, + *args, + **kwargs + ) -> None: + # Just create a SMPL module without any member variables + super(SMPLLayer, self).__init__( + create_body_pose=False, + create_betas=False, + create_global_orient=False, + create_transl=False, + *args, + **kwargs, + ) + + def forward( + self, + betas: Optional[Tensor] = None, + body_pose: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + return_verts=True, + return_full_pose: bool = False, + pose2rot: bool = True, + **kwargs + ) -> SMPLOutput: + ''' Forward pass for the SMPL model + + Parameters + ---------- + global_orient: torch.tensor, optional, shape Bx3x3 + Global rotation of the body. Useful if someone wishes to + predicts this with an external model. It is expected to be in + rotation matrix format. (default=None) + betas: torch.tensor, optional, shape BxN_b + Shape parameters. For example, it can used if shape parameters + `betas` are predicted from some external model. + (default=None) + body_pose: torch.tensor, optional, shape BxJx3x3 + Body pose. For example, it can used if someone predicts the + pose of the body joints are predicted from some external model. + It should be a tensor that contains joint rotations in + rotation matrix format. (default=None) + transl: torch.tensor, optional, shape Bx3 + Translation vector of the body. + For example, it can used if the translation + `transl` is predicted from some external model. + (default=None) + return_verts: bool, optional + Return the vertices. (default=True) + return_full_pose: bool, optional + Returns the full axis-angle pose vector (default=False) + + Returns + ------- + ''' + model_vars = [betas, global_orient, body_pose, transl] + batch_size = 1 + for var in model_vars: + if var is None: + continue + batch_size = max(batch_size, len(var)) + device, dtype = self.shapedirs.device, self.shapedirs.dtype + if global_orient is None: + global_orient = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if body_pose is None: + body_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand( + batch_size, self.NUM_BODY_JOINTS, -1, -1).contiguous() + if betas is None: + betas = torch.zeros([batch_size, self.num_betas], + dtype=dtype, device=device) + if transl is None: + transl = torch.zeros([batch_size, 3], dtype=dtype, device=device) + full_pose = torch.cat( + [global_orient.reshape(-1, 1, 3, 3), + body_pose.reshape(-1, self.NUM_BODY_JOINTS, 3, 3)], + dim=1) + + vertices, joints = lbs(betas, full_pose, self.v_template, + self.shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, + pose2rot=False) + + joints = self.vertex_joint_selector(vertices, joints) + # Map the joints to the current dataset + if self.joint_mapper is not None: + joints = self.joint_mapper(joints) + + if transl is not None: + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + output = SMPLOutput(vertices=vertices if return_verts else None, + global_orient=global_orient, + body_pose=body_pose, + joints=joints, + betas=betas, + full_pose=full_pose if return_full_pose else None) + + return output + + +class SMPLH(SMPL): + + # The hand joints are replaced by MANO + NUM_BODY_JOINTS = SMPL.NUM_JOINTS - 2 + NUM_HAND_JOINTS = 15 + NUM_JOINTS = NUM_BODY_JOINTS + 2 * NUM_HAND_JOINTS + + def __init__( + self, model_path, + kid_template_path: str = '', + data_struct: Optional[Struct] = None, + create_left_hand_pose: bool = True, + left_hand_pose: Optional[Tensor] = None, + create_right_hand_pose: bool = True, + right_hand_pose: Optional[Tensor] = None, + use_pca: bool = True, + num_pca_comps: int = 6, + flat_hand_mean: bool = False, + batch_size: int = 1, + gender: str = 'neutral', + age: str = 'adult', + dtype=torch.float32, + vertex_ids=None, + use_compressed: bool = True, + ext: str = 'pkl', + **kwargs + ) -> None: + ''' SMPLH model constructor + + Parameters + ---------- + model_path: str + The path to the folder or to the file where the model + parameters are stored + data_struct: Strct + A struct object. If given, then the parameters of the model are + read from the object. Otherwise, the model tries to read the + parameters from the given `model_path`. (default = None) + create_left_hand_pose: bool, optional + Flag for creating a member variable for the pose of the left + hand. (default = True) + left_hand_pose: torch.tensor, optional, BxP + The default value for the left hand pose member variable. + (default = None) + create_right_hand_pose: bool, optional + Flag for creating a member variable for the pose of the right + hand. (default = True) + right_hand_pose: torch.tensor, optional, BxP + The default value for the right hand pose member variable. + (default = None) + num_pca_comps: int, optional + The number of PCA components to use for each hand. + (default = 6) + flat_hand_mean: bool, optional + If False, then the pose of the hand is initialized to False. + batch_size: int, optional + The batch size used for creating the member variables + gender: str, optional + Which gender to load + dtype: torch.dtype, optional + The data type for the created variables + vertex_ids: dict, optional + A dictionary containing the indices of the extra vertices that + will be selected + ''' + + self.num_pca_comps = num_pca_comps + # If no data structure is passed, then load the data from the given + # model folder + if data_struct is None: + # Load the model + if osp.isdir(model_path): + model_fn = 'SMPLH_{}.{ext}'.format(gender.upper(), ext=ext) + smplh_path = os.path.join(model_path, model_fn) + else: + smplh_path = model_path + assert osp.exists(smplh_path), 'Path {} does not exist!'.format( + smplh_path) + + if ext == 'pkl': + with open(smplh_path, 'rb') as smplh_file: + model_data = pickle.load(smplh_file, encoding='latin1') + elif ext == 'npz': + model_data = np.load(smplh_path, allow_pickle=True) + else: + raise ValueError('Unknown extension: {}'.format(ext)) + data_struct = Struct(**model_data) + + if vertex_ids is None: + vertex_ids = VERTEX_IDS['smplh'] + + super(SMPLH, self).__init__( + model_path=model_path, + kid_template_path=kid_template_path, + data_struct=data_struct, + batch_size=batch_size, vertex_ids=vertex_ids, gender=gender, age=age, + use_compressed=use_compressed, dtype=dtype, ext=ext, **kwargs) + + self.use_pca = use_pca + self.num_pca_comps = num_pca_comps + self.flat_hand_mean = flat_hand_mean + + left_hand_components = data_struct.hands_componentsl[:num_pca_comps] + right_hand_components = data_struct.hands_componentsr[:num_pca_comps] + + self.np_left_hand_components = left_hand_components + self.np_right_hand_components = right_hand_components + if self.use_pca: + self.register_buffer( + 'left_hand_components', + torch.tensor(left_hand_components, dtype=dtype)) + self.register_buffer( + 'right_hand_components', + torch.tensor(right_hand_components, dtype=dtype)) + + if self.flat_hand_mean: + left_hand_mean = np.zeros_like(data_struct.hands_meanl) + else: + left_hand_mean = data_struct.hands_meanl + + if self.flat_hand_mean: + right_hand_mean = np.zeros_like(data_struct.hands_meanr) + else: + right_hand_mean = data_struct.hands_meanr + + self.register_buffer('left_hand_mean', + to_tensor(left_hand_mean, dtype=self.dtype)) + self.register_buffer('right_hand_mean', + to_tensor(right_hand_mean, dtype=self.dtype)) + + # Create the buffers for the pose of the left hand + hand_pose_dim = num_pca_comps if use_pca else 3 * self.NUM_HAND_JOINTS + if create_left_hand_pose: + if left_hand_pose is None: + default_lhand_pose = torch.zeros([batch_size, hand_pose_dim], + dtype=dtype) + else: + default_lhand_pose = torch.tensor(left_hand_pose, dtype=dtype) + + left_hand_pose_param = nn.Parameter(default_lhand_pose, + requires_grad=True) + self.register_parameter('left_hand_pose', + left_hand_pose_param) + + if create_right_hand_pose: + if right_hand_pose is None: + default_rhand_pose = torch.zeros([batch_size, hand_pose_dim], + dtype=dtype) + else: + default_rhand_pose = torch.tensor(right_hand_pose, dtype=dtype) + + right_hand_pose_param = nn.Parameter(default_rhand_pose, + requires_grad=True) + self.register_parameter('right_hand_pose', + right_hand_pose_param) + + # Create the buffer for the mean pose. + pose_mean_tensor = self.create_mean_pose( + data_struct, flat_hand_mean=flat_hand_mean) + if not torch.is_tensor(pose_mean_tensor): + pose_mean_tensor = torch.tensor(pose_mean_tensor, dtype=dtype) + self.register_buffer('pose_mean', pose_mean_tensor) + + def create_mean_pose(self, data_struct, flat_hand_mean=False): + # Create the array for the mean pose. If flat_hand is false, then use + # the mean that is given by the data, rather than the flat open hand + global_orient_mean = torch.zeros([3], dtype=self.dtype) + body_pose_mean = torch.zeros([self.NUM_BODY_JOINTS * 3], + dtype=self.dtype) + + pose_mean = torch.cat([global_orient_mean, body_pose_mean, + self.left_hand_mean, + self.right_hand_mean], dim=0) + return pose_mean + + def name(self) -> str: + return 'SMPL+H' + + def extra_repr(self): + msg = super(SMPLH, self).extra_repr() + msg = [msg] + if self.use_pca: + msg.append(f'Number of PCA components: {self.num_pca_comps}') + msg.append(f'Flat hand mean: {self.flat_hand_mean}') + return '\n'.join(msg) + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + body_pose: Optional[Tensor] = None, + left_hand_pose: Optional[Tensor] = None, + right_hand_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + pose2rot: bool = True, + **kwargs + ) -> SMPLHOutput: + ''' + ''' + print('!!!!!!!!!!!!!!!!!!!!!!', pose2rot) + # If no shape and pose parameters are passed along, then use the + # ones from the module + global_orient = (global_orient if global_orient is not None else + self.global_orient) + body_pose = body_pose if body_pose is not None else self.body_pose + betas = betas if betas is not None else self.betas + left_hand_pose = (left_hand_pose if left_hand_pose is not None else + self.left_hand_pose) + right_hand_pose = (right_hand_pose if right_hand_pose is not None else + self.right_hand_pose) + + apply_trans = transl is not None or hasattr(self, 'transl') + if transl is None: + if hasattr(self, 'transl'): + transl = self.transl + + if self.use_pca: + left_hand_pose = torch.einsum( + 'bi,ij->bj', [left_hand_pose, self.left_hand_components]) + right_hand_pose = torch.einsum( + 'bi,ij->bj', [right_hand_pose, self.right_hand_components]) + + full_pose = torch.cat([global_orient, body_pose, + left_hand_pose, + right_hand_pose], dim=1) + full_pose += self.pose_mean + + vertices, joints = lbs(betas, full_pose, self.v_template, + self.shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=pose2rot) + + # Add any extra joints that might be needed + joints = self.vertex_joint_selector(vertices, joints) + if self.joint_mapper is not None: + joints = self.joint_mapper(joints) + + if apply_trans: + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + output = SMPLHOutput(vertices=vertices if return_verts else None, + joints=joints, + betas=betas, + global_orient=global_orient, + body_pose=body_pose, + left_hand_pose=left_hand_pose, + right_hand_pose=right_hand_pose, + full_pose=full_pose if return_full_pose else None) + + return output + + +class SMPLHLayer(SMPLH): + + def __init__( + self, *args, **kwargs + ) -> None: + ''' SMPL+H as a layer model constructor + ''' + super(SMPLHLayer, self).__init__( + create_global_orient=False, + create_body_pose=False, + create_left_hand_pose=False, + create_right_hand_pose=False, + create_betas=False, + create_transl=False, + *args, + **kwargs) + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + body_pose: Optional[Tensor] = None, + left_hand_pose: Optional[Tensor] = None, + right_hand_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + pose2rot: bool = True, + **kwargs + ) -> SMPLHOutput: + ''' Forward pass for the SMPL+H model + + Parameters + ---------- + global_orient: torch.tensor, optional, shape Bx3x3 + Global rotation of the body. Useful if someone wishes to + predicts this with an external model. It is expected to be in + rotation matrix format. (default=None) + betas: torch.tensor, optional, shape BxN_b + Shape parameters. For example, it can used if shape parameters + `betas` are predicted from some external model. + (default=None) + body_pose: torch.tensor, optional, shape BxJx3x3 + If given, ignore the member variable `body_pose` and use it + instead. For example, it can used if someone predicts the + pose of the body joints are predicted from some external model. + It should be a tensor that contains joint rotations in + rotation matrix format. (default=None) + left_hand_pose: torch.tensor, optional, shape Bx15x3x3 + If given, contains the pose of the left hand. + It should be a tensor that contains joint rotations in + rotation matrix format. (default=None) + right_hand_pose: torch.tensor, optional, shape Bx15x3x3 + If given, contains the pose of the right hand. + It should be a tensor that contains joint rotations in + rotation matrix format. (default=None) + transl: torch.tensor, optional, shape Bx3 + Translation vector of the body. + For example, it can used if the translation + `transl` is predicted from some external model. + (default=None) + return_verts: bool, optional + Return the vertices. (default=True) + return_full_pose: bool, optional + Returns the full axis-angle pose vector (default=False) + + Returns + ------- + ''' + model_vars = [betas, global_orient, body_pose, transl, left_hand_pose, + right_hand_pose] + batch_size = 1 + for var in model_vars: + if var is None: + continue + batch_size = max(batch_size, len(var)) + device, dtype = self.shapedirs.device, self.shapedirs.dtype + if global_orient is None: + global_orient = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if body_pose is None: + body_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, 21, -1, -1).contiguous() + if left_hand_pose is None: + left_hand_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, 15, -1, -1).contiguous() + if right_hand_pose is None: + right_hand_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, 15, -1, -1).contiguous() + if betas is None: + betas = torch.zeros([batch_size, self.num_betas], + dtype=dtype, device=device) + if transl is None: + transl = torch.zeros([batch_size, 3], dtype=dtype, device=device) + + # Concatenate all pose vectors + full_pose = torch.cat( + [global_orient.reshape(-1, 1, 3, 3), + body_pose.reshape(-1, self.NUM_BODY_JOINTS, 3, 3), + left_hand_pose.reshape(-1, self.NUM_HAND_JOINTS, 3, 3), + right_hand_pose.reshape(-1, self.NUM_HAND_JOINTS, 3, 3)], + dim=1) + + vertices, joints = lbs(betas, full_pose, self.v_template, + self.shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=False) + + # Add any extra joints that might be needed + joints = self.vertex_joint_selector(vertices, joints) + if self.joint_mapper is not None: + joints = self.joint_mapper(joints) + + if transl is not None: + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + output = SMPLHOutput(vertices=vertices if return_verts else None, + joints=joints, + betas=betas, + global_orient=global_orient, + body_pose=body_pose, + left_hand_pose=left_hand_pose, + right_hand_pose=right_hand_pose, + full_pose=full_pose if return_full_pose else None) + + return output + + +class SMPLX(SMPLH): + ''' + SMPL-X (SMPL eXpressive) is a unified body model, with shape parameters + trained jointly for the face, hands and body. + SMPL-X uses standard vertex based linear blend skinning with learned + corrective blend shapes, has N=10475 vertices and K=54 joints, + which includes joints for the neck, jaw, eyeballs and fingers. + ''' + + NUM_BODY_JOINTS = SMPLH.NUM_BODY_JOINTS + NUM_HAND_JOINTS = 15 + NUM_FACE_JOINTS = 3 + NUM_JOINTS = NUM_BODY_JOINTS + 2 * NUM_HAND_JOINTS + NUM_FACE_JOINTS + EXPRESSION_SPACE_DIM = 100 + NECK_IDX = 12 + + def __init__( + self, model_path: str, + kid_template_path: str = '', + num_expression_coeffs: int = 10, + create_expression: bool = True, + expression: Optional[Tensor] = None, + create_jaw_pose: bool = True, + jaw_pose: Optional[Tensor] = None, + create_leye_pose: bool = True, + leye_pose: Optional[Tensor] = None, + create_reye_pose=True, + reye_pose: Optional[Tensor] = None, + use_face_contour: bool = False, + batch_size: int = 1, + gender: str = 'neutral', + age: str = 'adult', + dtype=torch.float32, + ext: str = 'npz', + **kwargs + ) -> None: + ''' SMPLX model constructor + + Parameters + ---------- + model_path: str + The path to the folder or to the file where the model + parameters are stored + num_expression_coeffs: int, optional + Number of expression components to use + (default = 10). + create_expression: bool, optional + Flag for creating a member variable for the expression space + (default = True). + expression: torch.tensor, optional, Bx10 + The default value for the expression member variable. + (default = None) + create_jaw_pose: bool, optional + Flag for creating a member variable for the jaw pose. + (default = False) + jaw_pose: torch.tensor, optional, Bx3 + The default value for the jaw pose variable. + (default = None) + create_leye_pose: bool, optional + Flag for creating a member variable for the left eye pose. + (default = False) + leye_pose: torch.tensor, optional, Bx10 + The default value for the left eye pose variable. + (default = None) + create_reye_pose: bool, optional + Flag for creating a member variable for the right eye pose. + (default = False) + reye_pose: torch.tensor, optional, Bx10 + The default value for the right eye pose variable. + (default = None) + use_face_contour: bool, optional + Whether to compute the keypoints that form the facial contour + batch_size: int, optional + The batch size used for creating the member variables + gender: str, optional + Which gender to load + dtype: torch.dtype + The data type for the created variables + ''' + + # Load the model + if osp.isdir(model_path): + model_fn = 'SMPLX_{}.{ext}'.format(gender.upper(), ext=ext) + smplx_path = os.path.join(model_path, model_fn) + else: + smplx_path = model_path + assert osp.exists(smplx_path), 'Path {} does not exist!'.format( + smplx_path) + + if ext == 'pkl': + with open(smplx_path, 'rb') as smplx_file: + model_data = pickle.load(smplx_file, encoding='latin1') + elif ext == 'npz': + model_data = np.load(smplx_path, allow_pickle=True) + else: + raise ValueError('Unknown extension: {}'.format(ext)) + + data_struct = Struct(**model_data) + + super(SMPLX, self).__init__( + model_path=model_path, + kid_template_path=kid_template_path, + data_struct=data_struct, + dtype=dtype, + batch_size=batch_size, + vertex_ids=VERTEX_IDS['smplx'], + gender=gender, age=age, ext=ext, + **kwargs) + + lmk_faces_idx = data_struct.lmk_faces_idx + self.register_buffer('lmk_faces_idx', + torch.tensor(lmk_faces_idx, dtype=torch.long)) + lmk_bary_coords = data_struct.lmk_bary_coords + self.register_buffer('lmk_bary_coords', + torch.tensor(lmk_bary_coords, dtype=dtype)) + + self.use_face_contour = use_face_contour + if self.use_face_contour: + dynamic_lmk_faces_idx = data_struct.dynamic_lmk_faces_idx + dynamic_lmk_faces_idx = torch.tensor( + dynamic_lmk_faces_idx, + dtype=torch.long) + self.register_buffer('dynamic_lmk_faces_idx', + dynamic_lmk_faces_idx) + + dynamic_lmk_bary_coords = data_struct.dynamic_lmk_bary_coords + dynamic_lmk_bary_coords = torch.tensor( + dynamic_lmk_bary_coords, dtype=dtype) + self.register_buffer('dynamic_lmk_bary_coords', + dynamic_lmk_bary_coords) + + neck_kin_chain = find_joint_kin_chain(self.NECK_IDX, self.parents) + self.register_buffer( + 'neck_kin_chain', + torch.tensor(neck_kin_chain, dtype=torch.long)) + + if create_jaw_pose: + if jaw_pose is None: + default_jaw_pose = torch.zeros([batch_size, 3], dtype=dtype) + else: + default_jaw_pose = torch.tensor(jaw_pose, dtype=dtype) + jaw_pose_param = nn.Parameter(default_jaw_pose, + requires_grad=True) + self.register_parameter('jaw_pose', jaw_pose_param) + + if create_leye_pose: + if leye_pose is None: + default_leye_pose = torch.zeros([batch_size, 3], dtype=dtype) + else: + default_leye_pose = torch.tensor(leye_pose, dtype=dtype) + leye_pose_param = nn.Parameter(default_leye_pose, + requires_grad=True) + self.register_parameter('leye_pose', leye_pose_param) + + if create_reye_pose: + if reye_pose is None: + default_reye_pose = torch.zeros([batch_size, 3], dtype=dtype) + else: + default_reye_pose = torch.tensor(reye_pose, dtype=dtype) + reye_pose_param = nn.Parameter(default_reye_pose, + requires_grad=True) + self.register_parameter('reye_pose', reye_pose_param) + + shapedirs = data_struct.shapedirs + if len(shapedirs.shape) < 3: + shapedirs = shapedirs[:, :, None] + if (shapedirs.shape[-1] < self.SHAPE_SPACE_DIM + + self.EXPRESSION_SPACE_DIM): + print(f'WARNING: You are using a {self.name()} model, with only' + ' 10 shape and 10 expression coefficients.') + expr_start_idx = 10 + expr_end_idx = 20 + num_expression_coeffs = min(num_expression_coeffs, 10) + else: + expr_start_idx = self.SHAPE_SPACE_DIM + expr_end_idx = self.SHAPE_SPACE_DIM + num_expression_coeffs + num_expression_coeffs = min( + num_expression_coeffs, self.EXPRESSION_SPACE_DIM) + + self._num_expression_coeffs = num_expression_coeffs + + expr_dirs = shapedirs[:, :, expr_start_idx:expr_end_idx] + self.register_buffer( + 'expr_dirs', to_tensor(to_np(expr_dirs), dtype=dtype)) + + if create_expression: + if expression is None: + default_expression = torch.zeros( + [batch_size, self.num_expression_coeffs], dtype=dtype) + else: + default_expression = torch.tensor(expression, dtype=dtype) + expression_param = nn.Parameter(default_expression, + requires_grad=True) + self.register_parameter('expression', expression_param) + + def name(self) -> str: + return 'SMPL-X' + + @property + def num_expression_coeffs(self): + return self._num_expression_coeffs + + def create_mean_pose(self, data_struct, flat_hand_mean=False): + # Create the array for the mean pose. If flat_hand is false, then use + # the mean that is given by the data, rather than the flat open hand + global_orient_mean = torch.zeros([3], dtype=self.dtype) + body_pose_mean = torch.zeros([self.NUM_BODY_JOINTS * 3], + dtype=self.dtype) + jaw_pose_mean = torch.zeros([3], dtype=self.dtype) + leye_pose_mean = torch.zeros([3], dtype=self.dtype) + reye_pose_mean = torch.zeros([3], dtype=self.dtype) + + pose_mean = np.concatenate([global_orient_mean, body_pose_mean, + jaw_pose_mean, + leye_pose_mean, reye_pose_mean, + self.left_hand_mean, self.right_hand_mean], + axis=0) + + return pose_mean + + def extra_repr(self): + msg = super(SMPLX, self).extra_repr() + msg = [ + msg, + f'Number of Expression Coefficients: {self.num_expression_coeffs}' + ] + return '\n'.join(msg) + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + body_pose: Optional[Tensor] = None, + left_hand_pose: Optional[Tensor] = None, + right_hand_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + expression: Optional[Tensor] = None, + jaw_pose: Optional[Tensor] = None, + leye_pose: Optional[Tensor] = None, + reye_pose: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + pose2rot: bool = True, + return_shaped: bool = True, + **kwargs + ) -> SMPLXOutput: + ''' + Forward pass for the SMPLX model + + Parameters + ---------- + global_orient: torch.tensor, optional, shape Bx3 + If given, ignore the member variable and use it as the global + rotation of the body. Useful if someone wishes to predicts this + with an external model. (default=None) + betas: torch.tensor, optional, shape BxN_b + If given, ignore the member variable `betas` and use it + instead. For example, it can used if shape parameters + `betas` are predicted from some external model. + (default=None) + expression: torch.tensor, optional, shape BxN_e + If given, ignore the member variable `expression` and use it + instead. For example, it can used if expression parameters + `expression` are predicted from some external model. + body_pose: torch.tensor, optional, shape Bx(J*3) + If given, ignore the member variable `body_pose` and use it + instead. For example, it can used if someone predicts the + pose of the body joints are predicted from some external model. + It should be a tensor that contains joint rotations in + axis-angle format. (default=None) + left_hand_pose: torch.tensor, optional, shape BxP + If given, ignore the member variable `left_hand_pose` and + use this instead. It should either contain PCA coefficients or + joint rotations in axis-angle format. + right_hand_pose: torch.tensor, optional, shape BxP + If given, ignore the member variable `right_hand_pose` and + use this instead. It should either contain PCA coefficients or + joint rotations in axis-angle format. + jaw_pose: torch.tensor, optional, shape Bx3 + If given, ignore the member variable `jaw_pose` and + use this instead. It should either joint rotations in + axis-angle format. + transl: torch.tensor, optional, shape Bx3 + If given, ignore the member variable `transl` and use it + instead. For example, it can used if the translation + `transl` is predicted from some external model. + (default=None) + return_verts: bool, optional + Return the vertices. (default=True) + return_full_pose: bool, optional + Returns the full axis-angle pose vector (default=False) + + Returns + ------- + output: ModelOutput + A named tuple of type `ModelOutput` + ''' + + # If no shape and pose parameters are passed along, then use the + # ones from the module + global_orient = (global_orient if global_orient is not None else + self.global_orient) + body_pose = body_pose if body_pose is not None else self.body_pose + betas = betas if betas is not None else self.betas + + left_hand_pose = (left_hand_pose if left_hand_pose is not None else + self.left_hand_pose) + right_hand_pose = (right_hand_pose if right_hand_pose is not None else + self.right_hand_pose) + jaw_pose = jaw_pose if jaw_pose is not None else self.jaw_pose + leye_pose = leye_pose if leye_pose is not None else self.leye_pose + reye_pose = reye_pose if reye_pose is not None else self.reye_pose + expression = expression if expression is not None else self.expression + + apply_trans = transl is not None or hasattr(self, 'transl') + if transl is None: + if hasattr(self, 'transl'): + transl = self.transl + + if self.use_pca: + left_hand_pose = torch.einsum( + 'bi,ij->bj', [left_hand_pose, self.left_hand_components]) + right_hand_pose = torch.einsum( + 'bi,ij->bj', [right_hand_pose, self.right_hand_components]) + + full_pose = torch.cat([global_orient.reshape(-1, 1, 3), + body_pose.reshape(-1, self.NUM_BODY_JOINTS, 3), + jaw_pose.reshape(-1, 1, 3), + leye_pose.reshape(-1, 1, 3), + reye_pose.reshape(-1, 1, 3), + left_hand_pose.reshape(-1, 15, 3), + right_hand_pose.reshape(-1, 15, 3)], + dim=1).reshape(-1, 165) + + # Add the mean pose of the model. Does not affect the body, only the + # hands when flat_hand_mean == False + full_pose += self.pose_mean + + batch_size = max(betas.shape[0], global_orient.shape[0], + body_pose.shape[0]) + # Concatenate the shape and expression coefficients + scale = int(batch_size / betas.shape[0]) + if scale > 1: + betas = betas.expand(scale, -1) + shape_components = torch.cat([betas, expression], dim=-1) + + shapedirs = torch.cat([self.shapedirs, self.expr_dirs], dim=-1) + + vertices, joints = lbs(shape_components, full_pose, self.v_template, + shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=pose2rot, + ) + + lmk_faces_idx = self.lmk_faces_idx.unsqueeze( + dim=0).expand(batch_size, -1).contiguous() + lmk_bary_coords = self.lmk_bary_coords.unsqueeze(dim=0).repeat( + self.batch_size, 1, 1) + if self.use_face_contour: + lmk_idx_and_bcoords = find_dynamic_lmk_idx_and_bcoords( + vertices, full_pose, self.dynamic_lmk_faces_idx, + self.dynamic_lmk_bary_coords, + self.neck_kin_chain, + pose2rot=True, + ) + dyn_lmk_faces_idx, dyn_lmk_bary_coords = lmk_idx_and_bcoords + + lmk_faces_idx = torch.cat([lmk_faces_idx, + dyn_lmk_faces_idx], 1) + lmk_bary_coords = torch.cat( + [lmk_bary_coords.expand(batch_size, -1, -1), + dyn_lmk_bary_coords], 1) + + landmarks = vertices2landmarks(vertices, self.faces_tensor, + lmk_faces_idx, + lmk_bary_coords) + + # Add any extra joints that might be needed + joints = self.vertex_joint_selector(vertices, joints) + # Add the landmarks to the joints + joints = torch.cat([joints, landmarks], dim=1) + # Map the joints to the current dataset + + if self.joint_mapper is not None: + joints = self.joint_mapper(joints=joints, vertices=vertices) + + if apply_trans: + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + v_shaped = None + if return_shaped: + v_shaped = self.v_template + blend_shapes(betas, self.shapedirs) + output = SMPLXOutput(vertices=vertices if return_verts else None, + joints=joints, + betas=betas, + expression=expression, + global_orient=global_orient, + body_pose=body_pose, + left_hand_pose=left_hand_pose, + right_hand_pose=right_hand_pose, + jaw_pose=jaw_pose, + v_shaped=v_shaped, + full_pose=full_pose if return_full_pose else None) + return output + + +class SMPLXLayer(SMPLX): + def __init__( + self, + *args, + **kwargs + ) -> None: + # Just create a SMPLX module without any member variables + super(SMPLXLayer, self).__init__( + create_global_orient=False, + create_body_pose=False, + create_left_hand_pose=False, + create_right_hand_pose=False, + create_jaw_pose=False, + create_leye_pose=False, + create_reye_pose=False, + create_betas=False, + create_expression=False, + create_transl=False, + *args, **kwargs, + ) + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + body_pose: Optional[Tensor] = None, + left_hand_pose: Optional[Tensor] = None, + right_hand_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + expression: Optional[Tensor] = None, + jaw_pose: Optional[Tensor] = None, + leye_pose: Optional[Tensor] = None, + reye_pose: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + **kwargs + ) -> SMPLXOutput: + ''' + Forward pass for the SMPLX model + + Parameters + ---------- + global_orient: torch.tensor, optional, shape Bx3x3 + If given, ignore the member variable and use it as the global + rotation of the body. Useful if someone wishes to predicts this + with an external model. It is expected to be in rotation matrix + format. (default=None) + betas: torch.tensor, optional, shape BxN_b + If given, ignore the member variable `betas` and use it + instead. For example, it can used if shape parameters + `betas` are predicted from some external model. + (default=None) + expression: torch.tensor, optional, shape BxN_e + Expression coefficients. + For example, it can used if expression parameters + `expression` are predicted from some external model. + body_pose: torch.tensor, optional, shape BxJx3x3 + If given, ignore the member variable `body_pose` and use it + instead. For example, it can used if someone predicts the + pose of the body joints are predicted from some external model. + It should be a tensor that contains joint rotations in + rotation matrix format. (default=None) + left_hand_pose: torch.tensor, optional, shape Bx15x3x3 + If given, contains the pose of the left hand. + It should be a tensor that contains joint rotations in + rotation matrix format. (default=None) + right_hand_pose: torch.tensor, optional, shape Bx15x3x3 + If given, contains the pose of the right hand. + It should be a tensor that contains joint rotations in + rotation matrix format. (default=None) + jaw_pose: torch.tensor, optional, shape Bx3x3 + Jaw pose. It should either joint rotations in + rotation matrix format. + transl: torch.tensor, optional, shape Bx3 + Translation vector of the body. + For example, it can used if the translation + `transl` is predicted from some external model. + (default=None) + return_verts: bool, optional + Return the vertices. (default=True) + return_full_pose: bool, optional + Returns the full pose vector (default=False) + Returns + ------- + output: ModelOutput + A data class that contains the posed vertices and joints + ''' + device, dtype = self.shapedirs.device, self.shapedirs.dtype + + model_vars = [betas, global_orient, body_pose, transl, + expression, left_hand_pose, right_hand_pose, jaw_pose] + batch_size = 1 + for var in model_vars: + if var is None: + continue + batch_size = max(batch_size, len(var)) + + if global_orient is None: + global_orient = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if body_pose is None: + body_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand( + batch_size, self.NUM_BODY_JOINTS, -1, -1).contiguous() + if left_hand_pose is None: + left_hand_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, 15, -1, -1).contiguous() + if right_hand_pose is None: + right_hand_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, 15, -1, -1).contiguous() + if jaw_pose is None: + jaw_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if leye_pose is None: + leye_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if reye_pose is None: + reye_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if expression is None: + expression = torch.zeros([batch_size, self.num_expression_coeffs], + dtype=dtype, device=device) + if betas is None: + betas = torch.zeros([batch_size, self.num_betas], + dtype=dtype, device=device) + if transl is None: + transl = torch.zeros([batch_size, 3], dtype=dtype, device=device) + + # Concatenate all pose vectors + full_pose = torch.cat( + [global_orient.reshape(-1, 1, 3, 3), + body_pose.reshape(-1, self.NUM_BODY_JOINTS, 3, 3), + jaw_pose.reshape(-1, 1, 3, 3), + leye_pose.reshape(-1, 1, 3, 3), + reye_pose.reshape(-1, 1, 3, 3), + left_hand_pose.reshape(-1, self.NUM_HAND_JOINTS, 3, 3), + right_hand_pose.reshape(-1, self.NUM_HAND_JOINTS, 3, 3)], + dim=1) + shape_components = torch.cat([betas, expression], dim=-1) + + shapedirs = torch.cat([self.shapedirs, self.expr_dirs], dim=-1) + + vertices, joints = lbs(shape_components, full_pose, self.v_template, + shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, + pose2rot=False, + ) + + lmk_faces_idx = self.lmk_faces_idx.unsqueeze( + dim=0).expand(batch_size, -1).contiguous() + lmk_bary_coords = self.lmk_bary_coords.unsqueeze(dim=0).repeat( + batch_size, 1, 1) + if self.use_face_contour: + lmk_idx_and_bcoords = find_dynamic_lmk_idx_and_bcoords( + vertices, full_pose, + self.dynamic_lmk_faces_idx, + self.dynamic_lmk_bary_coords, + self.neck_kin_chain, + pose2rot=False, + ) + dyn_lmk_faces_idx, dyn_lmk_bary_coords = lmk_idx_and_bcoords + + lmk_faces_idx = torch.cat([lmk_faces_idx, dyn_lmk_faces_idx], 1) + lmk_bary_coords = torch.cat( + [lmk_bary_coords.expand(batch_size, -1, -1), + dyn_lmk_bary_coords], 1) + + landmarks = vertices2landmarks(vertices, self.faces_tensor, + lmk_faces_idx, + lmk_bary_coords) + + # Add any extra joints that might be needed + joints = self.vertex_joint_selector(vertices, joints) + # Add the landmarks to the joints + joints = torch.cat([joints, landmarks], dim=1) + # Map the joints to the current dataset + + if self.joint_mapper is not None: + joints = self.joint_mapper(joints=joints, vertices=vertices) + + if transl is not None: + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + output = SMPLXOutput(vertices=vertices if return_verts else None, + joints=joints, + betas=betas, + expression=expression, + global_orient=global_orient, + body_pose=body_pose, + left_hand_pose=left_hand_pose, + right_hand_pose=right_hand_pose, + jaw_pose=jaw_pose, + transl=transl, + full_pose=full_pose if return_full_pose else None) + return output + + +class MANO(SMPL): + # The hand joints are replaced by MANO + NUM_BODY_JOINTS = 1 + NUM_HAND_JOINTS = 15 + NUM_JOINTS = NUM_BODY_JOINTS + NUM_HAND_JOINTS + + def __init__( + self, + model_path: str, + is_rhand: bool = True, + data_struct: Optional[Struct] = None, + create_hand_pose: bool = True, + hand_pose: Optional[Tensor] = None, + use_pca: bool = True, + num_pca_comps: int = 6, + flat_hand_mean: bool = False, + batch_size: int = 1, + dtype=torch.float32, + vertex_ids=None, + use_compressed: bool = True, + ext: str = 'pkl', + **kwargs + ) -> None: + ''' MANO model constructor + + Parameters + ---------- + model_path: str + The path to the folder or to the file where the model + parameters are stored + data_struct: Strct + A struct object. If given, then the parameters of the model are + read from the object. Otherwise, the model tries to read the + parameters from the given `model_path`. (default = None) + create_hand_pose: bool, optional + Flag for creating a member variable for the pose of the right + hand. (default = True) + hand_pose: torch.tensor, optional, BxP + The default value for the right hand pose member variable. + (default = None) + num_pca_comps: int, optional + The number of PCA components to use for each hand. + (default = 6) + flat_hand_mean: bool, optional + If False, then the pose of the hand is initialized to False. + batch_size: int, optional + The batch size used for creating the member variables + dtype: torch.dtype, optional + The data type for the created variables + vertex_ids: dict, optional + A dictionary containing the indices of the extra vertices that + will be selected + ''' + + self.num_pca_comps = num_pca_comps + self.is_rhand = is_rhand + # If no data structure is passed, then load the data from the given + # model folder + if data_struct is None: + # Load the model + print('!!!!!!!!!!!!!!! ', model_path) + if osp.isdir(model_path): + model_fn = 'MANO_{}.{ext}'.format( + 'RIGHT' if is_rhand else 'LEFT', ext=ext) + mano_path = os.path.join(model_path, model_fn) + else: + mano_path = model_path + self.is_rhand = True if 'RIGHT' in os.path.basename( + model_path) else False + assert osp.exists(mano_path), 'Path {} does not exist!'.format( + mano_path) + + if ext == 'pkl': + with open(mano_path, 'rb') as mano_file: + model_data = pickle.load(mano_file, encoding='latin1') + elif ext == 'npz': + model_data = np.load(mano_path, allow_pickle=True) + else: + raise ValueError('Unknown extension: {}'.format(ext)) + data_struct = Struct(**model_data) + + if vertex_ids is None: + vertex_ids = VERTEX_IDS['smplh'] + + super(MANO, self).__init__( + model_path=model_path, data_struct=data_struct, + batch_size=batch_size, vertex_ids=vertex_ids, + use_compressed=use_compressed, dtype=dtype, ext=ext, **kwargs) + + # add only MANO tips to the extra joints + self.vertex_joint_selector.extra_joints_idxs = to_tensor( + list(VERTEX_IDS['mano'].values()), dtype=torch.long) + + self.use_pca = use_pca + self.num_pca_comps = num_pca_comps + if self.num_pca_comps == 45: + self.use_pca = False + self.flat_hand_mean = flat_hand_mean + + hand_components = data_struct.hands_components[:num_pca_comps] + + self.np_hand_components = hand_components + + if self.use_pca: + self.register_buffer( + 'hand_components', + torch.tensor(hand_components, dtype=dtype)) + + if self.flat_hand_mean: + hand_mean = np.zeros_like(data_struct.hands_mean) + else: + hand_mean = data_struct.hands_mean + + self.register_buffer('hand_mean', + to_tensor(hand_mean, dtype=self.dtype)) + + # Create the buffers for the pose of the left hand + hand_pose_dim = num_pca_comps if use_pca else 3 * self.NUM_HAND_JOINTS + if create_hand_pose: + if hand_pose is None: + default_hand_pose = torch.zeros([batch_size, hand_pose_dim], + dtype=dtype) + else: + default_hand_pose = torch.tensor(hand_pose, dtype=dtype) + + hand_pose_param = nn.Parameter(default_hand_pose, + requires_grad=True) + self.register_parameter('hand_pose', + hand_pose_param) + + # Create the buffer for the mean pose. + pose_mean = self.create_mean_pose( + data_struct, flat_hand_mean=flat_hand_mean) + pose_mean_tensor = pose_mean.clone().to(dtype) + # pose_mean_tensor = torch.tensor(pose_mean, dtype=dtype) + self.register_buffer('pose_mean', pose_mean_tensor) + + def name(self) -> str: + return 'MANO' + + def create_mean_pose(self, data_struct, flat_hand_mean=False): + # Create the array for the mean pose. If flat_hand is false, then use + # the mean that is given by the data, rather than the flat open hand + global_orient_mean = torch.zeros([3], dtype=self.dtype) + pose_mean = torch.cat([global_orient_mean, self.hand_mean], dim=0) + return pose_mean + + def extra_repr(self): + msg = [super(MANO, self).extra_repr()] + if self.use_pca: + msg.append(f'Number of PCA components: {self.num_pca_comps}') + msg.append(f'Flat hand mean: {self.flat_hand_mean}') + return '\n'.join(msg) + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + hand_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + **kwargs + ) -> MANOOutput: + ''' Forward pass for the MANO model + ''' + # If no shape and pose parameters are passed along, then use the + # ones from the module + global_orient = (global_orient if global_orient is not None else + self.global_orient) + betas = betas if betas is not None else self.betas + hand_pose = (hand_pose if hand_pose is not None else + self.hand_pose) + + apply_trans = transl is not None or hasattr(self, 'transl') + if transl is None: + if hasattr(self, 'transl'): + transl = self.transl + + if self.use_pca: + hand_pose = torch.einsum( + 'bi,ij->bj', [hand_pose, self.hand_components]) + + full_pose = torch.cat([global_orient, hand_pose], dim=1) + full_pose += self.pose_mean + + vertices, joints = lbs(betas, full_pose, self.v_template, + self.shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=True, + ) + + # # Add pre-selected extra joints that might be needed + # joints = self.vertex_joint_selector(vertices, joints) + + if self.joint_mapper is not None: + joints = self.joint_mapper(joints) + + if apply_trans: + joints = joints + transl.unsqueeze(dim=1) + vertices = vertices + transl.unsqueeze(dim=1) + + output = MANOOutput(vertices=vertices if return_verts else None, + joints=joints if return_verts else None, + betas=betas, + global_orient=global_orient, + hand_pose=hand_pose, + full_pose=full_pose if return_full_pose else None) + + return output + + +class MANOLayer(MANO): + def __init__(self, *args, **kwargs) -> None: + ''' MANO as a layer model constructor + ''' + super(MANOLayer, self).__init__( + create_global_orient=False, + create_hand_pose=False, + create_betas=False, + create_transl=False, + *args, **kwargs) + + def name(self) -> str: + return 'MANO' + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + hand_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + **kwargs + ) -> MANOOutput: + ''' Forward pass for the MANO model + ''' + device, dtype = self.shapedirs.device, self.shapedirs.dtype + if global_orient is None: + batch_size = 1 + global_orient = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + else: + batch_size = global_orient.shape[0] + if hand_pose is None: + hand_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, 15, -1, -1).contiguous() + if betas is None: + betas = torch.zeros( + [batch_size, self.num_betas], dtype=dtype, device=device) + if transl is None: + transl = torch.zeros([batch_size, 3], dtype=dtype, device=device) + + full_pose = torch.cat([global_orient, hand_pose], dim=1) + # print(full_pose.shape) + # exit() + vertices, joints = lbs(betas, full_pose, self.v_template, + self.shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=self.pose2rot) + + if self.joint_mapper is not None: + joints = self.joint_mapper(joints) + + if transl is not None: + joints = joints + transl.unsqueeze(dim=1) + vertices = vertices + transl.unsqueeze(dim=1) + + output = MANOOutput( + vertices=vertices if return_verts else None, + joints=joints if return_verts else None, + betas=betas, + global_orient=global_orient, + hand_pose=hand_pose, + full_pose=full_pose if return_full_pose else None) + + return output + + +class FLAME(SMPL): + NUM_JOINTS = 5 + SHAPE_SPACE_DIM = 300 + EXPRESSION_SPACE_DIM = 100 + NECK_IDX = 0 + + def __init__( + self, + model_path: str, + data_struct=None, + num_expression_coeffs=10, + create_expression: bool = True, + expression: Optional[Tensor] = None, + create_neck_pose: bool = True, + neck_pose: Optional[Tensor] = None, + create_jaw_pose: bool = True, + jaw_pose: Optional[Tensor] = None, + create_leye_pose: bool = True, + leye_pose: Optional[Tensor] = None, + create_reye_pose=True, + reye_pose: Optional[Tensor] = None, + use_face_contour=False, + batch_size: int = 1, + gender: str = 'neutral', + dtype: torch.dtype = torch.float32, + ext='pkl', + **kwargs + ) -> None: + ''' FLAME model constructor + + Parameters + ---------- + model_path: str + The path to the folder or to the file where the model + parameters are stored + num_expression_coeffs: int, optional + Number of expression components to use + (default = 10). + create_expression: bool, optional + Flag for creating a member variable for the expression space + (default = True). + expression: torch.tensor, optional, Bx10 + The default value for the expression member variable. + (default = None) + create_neck_pose: bool, optional + Flag for creating a member variable for the neck pose. + (default = False) + neck_pose: torch.tensor, optional, Bx3 + The default value for the neck pose variable. + (default = None) + create_jaw_pose: bool, optional + Flag for creating a member variable for the jaw pose. + (default = False) + jaw_pose: torch.tensor, optional, Bx3 + The default value for the jaw pose variable. + (default = None) + create_leye_pose: bool, optional + Flag for creating a member variable for the left eye pose. + (default = False) + leye_pose: torch.tensor, optional, Bx10 + The default value for the left eye pose variable. + (default = None) + create_reye_pose: bool, optional + Flag for creating a member variable for the right eye pose. + (default = False) + reye_pose: torch.tensor, optional, Bx10 + The default value for the right eye pose variable. + (default = None) + use_face_contour: bool, optional + Whether to compute the keypoints that form the facial contour + batch_size: int, optional + The batch size used for creating the member variables + gender: str, optional + Which gender to load + dtype: torch.dtype + The data type for the created variables + ''' + model_fn = f'FLAME_{gender.upper()}.{ext}' + flame_path = os.path.join(model_path, model_fn) + assert osp.exists(flame_path), 'Path {} does not exist!'.format( + flame_path) + if ext == 'npz': + file_data = np.load(flame_path, allow_pickle=True) + elif ext == 'pkl': + with open(flame_path, 'rb') as smpl_file: + file_data = pickle.load(smpl_file, encoding='latin1') + else: + raise ValueError('Unknown extension: {}'.format(ext)) + data_struct = Struct(**file_data) + + super(FLAME, self).__init__( + model_path=model_path, + data_struct=data_struct, + dtype=dtype, + batch_size=batch_size, + gender=gender, + ext=ext, + **kwargs) + + self.use_face_contour = use_face_contour + + self.vertex_joint_selector.extra_joints_idxs = to_tensor( + [], dtype=torch.long) + + if create_neck_pose: + if neck_pose is None: + default_neck_pose = torch.zeros([batch_size, 3], dtype=dtype) + else: + default_neck_pose = torch.tensor(neck_pose, dtype=dtype) + neck_pose_param = nn.Parameter( + default_neck_pose, requires_grad=True) + self.register_parameter('neck_pose', neck_pose_param) + + if create_jaw_pose: + if jaw_pose is None: + default_jaw_pose = torch.zeros([batch_size, 3], dtype=dtype) + else: + default_jaw_pose = torch.tensor(jaw_pose, dtype=dtype) + jaw_pose_param = nn.Parameter(default_jaw_pose, + requires_grad=True) + self.register_parameter('jaw_pose', jaw_pose_param) + + if create_leye_pose: + if leye_pose is None: + default_leye_pose = torch.zeros([batch_size, 3], dtype=dtype) + else: + default_leye_pose = torch.tensor(leye_pose, dtype=dtype) + leye_pose_param = nn.Parameter(default_leye_pose, + requires_grad=True) + self.register_parameter('leye_pose', leye_pose_param) + + if create_reye_pose: + if reye_pose is None: + default_reye_pose = torch.zeros([batch_size, 3], dtype=dtype) + else: + default_reye_pose = torch.tensor(reye_pose, dtype=dtype) + reye_pose_param = nn.Parameter(default_reye_pose, + requires_grad=True) + self.register_parameter('reye_pose', reye_pose_param) + + shapedirs = data_struct.shapedirs + if len(shapedirs.shape) < 3: + shapedirs = shapedirs[:, :, None] + if (shapedirs.shape[-1] < self.SHAPE_SPACE_DIM + + self.EXPRESSION_SPACE_DIM): + print(f'WARNING: You are using a {self.name()} model, with only' + ' 10 shape and 10 expression coefficients.') + expr_start_idx = 10 + expr_end_idx = 20 + num_expression_coeffs = min(num_expression_coeffs, 10) + else: + expr_start_idx = self.SHAPE_SPACE_DIM + expr_end_idx = self.SHAPE_SPACE_DIM + num_expression_coeffs + num_expression_coeffs = min( + num_expression_coeffs, self.EXPRESSION_SPACE_DIM) + + self._num_expression_coeffs = num_expression_coeffs + + expr_dirs = shapedirs[:, :, expr_start_idx:expr_end_idx] + self.register_buffer( + 'expr_dirs', to_tensor(to_np(expr_dirs), dtype=dtype)) + + if create_expression: + if expression is None: + default_expression = torch.zeros( + [batch_size, self.num_expression_coeffs], dtype=dtype) + else: + default_expression = torch.tensor(expression, dtype=dtype) + expression_param = nn.Parameter(default_expression, + requires_grad=True) + self.register_parameter('expression', expression_param) + + # The pickle file that contains the barycentric coordinates for + # regressing the landmarks + landmark_bcoord_filename = osp.join( + model_path, 'flame_static_embedding.pkl') + + with open(landmark_bcoord_filename, 'rb') as fp: + landmarks_data = pickle.load(fp, encoding='latin1') + + lmk_faces_idx = landmarks_data['lmk_face_idx'].astype(np.int64) + self.register_buffer('lmk_faces_idx', + torch.tensor(lmk_faces_idx, dtype=torch.long)) + lmk_bary_coords = landmarks_data['lmk_b_coords'] + self.register_buffer('lmk_bary_coords', + torch.tensor(lmk_bary_coords, dtype=dtype)) + if self.use_face_contour: + face_contour_path = os.path.join( + model_path, 'flame_dynamic_embedding.npy') + contour_embeddings = np.load(face_contour_path, + allow_pickle=True, + encoding='latin1')[()] + + dynamic_lmk_faces_idx = np.array( + contour_embeddings['lmk_face_idx'], dtype=np.int64) + dynamic_lmk_faces_idx = torch.tensor( + dynamic_lmk_faces_idx, + dtype=torch.long) + self.register_buffer('dynamic_lmk_faces_idx', + dynamic_lmk_faces_idx) + + dynamic_lmk_b_coords = torch.tensor( + contour_embeddings['lmk_b_coords'], dtype=dtype) + self.register_buffer( + 'dynamic_lmk_bary_coords', dynamic_lmk_b_coords) + + neck_kin_chain = find_joint_kin_chain(self.NECK_IDX, self.parents) + self.register_buffer( + 'neck_kin_chain', + torch.tensor(neck_kin_chain, dtype=torch.long)) + + @property + def num_expression_coeffs(self): + return self._num_expression_coeffs + + def name(self) -> str: + return 'FLAME' + + def extra_repr(self): + msg = [ + super(FLAME, self).extra_repr(), + f'Number of Expression Coefficients: {self.num_expression_coeffs}', + f'Use face contour: {self.use_face_contour}', + ] + return '\n'.join(msg) + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + neck_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + expression: Optional[Tensor] = None, + jaw_pose: Optional[Tensor] = None, + leye_pose: Optional[Tensor] = None, + reye_pose: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + pose2rot: bool = True, + **kwargs + ) -> FLAMEOutput: + ''' + Forward pass for the SMPLX model + + Parameters + ---------- + global_orient: torch.tensor, optional, shape Bx3 + If given, ignore the member variable and use it as the global + rotation of the body. Useful if someone wishes to predicts this + with an external model. (default=None) + betas: torch.tensor, optional, shape Bx10 + If given, ignore the member variable `betas` and use it + instead. For example, it can used if shape parameters + `betas` are predicted from some external model. + (default=None) + expression: torch.tensor, optional, shape Bx10 + If given, ignore the member variable `expression` and use it + instead. For example, it can used if expression parameters + `expression` are predicted from some external model. + jaw_pose: torch.tensor, optional, shape Bx3 + If given, ignore the member variable `jaw_pose` and + use this instead. It should either joint rotations in + axis-angle format. + jaw_pose: torch.tensor, optional, shape Bx3 + If given, ignore the member variable `jaw_pose` and + use this instead. It should either joint rotations in + axis-angle format. + transl: torch.tensor, optional, shape Bx3 + If given, ignore the member variable `transl` and use it + instead. For example, it can used if the translation + `transl` is predicted from some external model. + (default=None) + return_verts: bool, optional + Return the vertices. (default=True) + return_full_pose: bool, optional + Returns the full axis-angle pose vector (default=False) + + Returns + ------- + output: ModelOutput + A named tuple of type `ModelOutput` + ''' + + # If no shape and pose parameters are passed along, then use the + # ones from the module + global_orient = (global_orient if global_orient is not None else + self.global_orient) + jaw_pose = jaw_pose if jaw_pose is not None else self.jaw_pose + neck_pose = neck_pose if neck_pose is not None else self.neck_pose + + leye_pose = leye_pose if leye_pose is not None else self.leye_pose + reye_pose = reye_pose if reye_pose is not None else self.reye_pose + + betas = betas if betas is not None else self.betas + expression = expression if expression is not None else self.expression + + apply_trans = transl is not None or hasattr(self, 'transl') + if transl is None: + if hasattr(self, 'transl'): + transl = self.transl + + full_pose = torch.cat( + [global_orient, neck_pose, jaw_pose, leye_pose, reye_pose], dim=1) + + batch_size = max(betas.shape[0], global_orient.shape[0], + jaw_pose.shape[0]) + # Concatenate the shape and expression coefficients + scale = int(batch_size / betas.shape[0]) + if scale > 1: + betas = betas.expand(scale, -1) + shape_components = torch.cat([betas, expression], dim=-1) + shapedirs = torch.cat([self.shapedirs, self.expr_dirs], dim=-1) + + vertices, joints = lbs(shape_components, full_pose, self.v_template, + shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=pose2rot, + ) + + lmk_faces_idx = self.lmk_faces_idx.unsqueeze( + dim=0).expand(batch_size, -1).contiguous() + lmk_bary_coords = self.lmk_bary_coords.unsqueeze(dim=0).repeat( + batch_size, 1, 1) + if self.use_face_contour: + lmk_idx_and_bcoords = find_dynamic_lmk_idx_and_bcoords( + vertices, full_pose, self.dynamic_lmk_faces_idx, + self.dynamic_lmk_bary_coords, + self.neck_kin_chain, + pose2rot=True, + ) + dyn_lmk_faces_idx, dyn_lmk_bary_coords = lmk_idx_and_bcoords + lmk_faces_idx = torch.cat([lmk_faces_idx, + dyn_lmk_faces_idx], 1) + lmk_bary_coords = torch.cat( + [lmk_bary_coords.expand(batch_size, -1, -1), + dyn_lmk_bary_coords], 1) + + landmarks = vertices2landmarks(vertices, self.faces_tensor, + lmk_faces_idx, + lmk_bary_coords) + + # Add any extra joints that might be needed + joints = self.vertex_joint_selector(vertices, joints) + # Add the landmarks to the joints + joints = torch.cat([joints, landmarks], dim=1) + + # Map the joints to the current dataset + if self.joint_mapper is not None: + joints = self.joint_mapper(joints=joints, vertices=vertices) + + if apply_trans: + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + output = FLAMEOutput(vertices=vertices if return_verts else None, + joints=joints, + betas=betas, + expression=expression, + global_orient=global_orient, + neck_pose=neck_pose, + jaw_pose=jaw_pose, + full_pose=full_pose if return_full_pose else None) + return output + + +class FLAMELayer(FLAME): + def __init__(self, *args, **kwargs) -> None: + ''' FLAME as a layer model constructor ''' + super(FLAMELayer, self).__init__( + create_betas=False, + create_expression=False, + create_global_orient=False, + create_neck_pose=False, + create_jaw_pose=False, + create_leye_pose=False, + create_reye_pose=False, + *args, + **kwargs) + + def forward( + self, + betas: Optional[Tensor] = None, + global_orient: Optional[Tensor] = None, + neck_pose: Optional[Tensor] = None, + transl: Optional[Tensor] = None, + expression: Optional[Tensor] = None, + jaw_pose: Optional[Tensor] = None, + leye_pose: Optional[Tensor] = None, + reye_pose: Optional[Tensor] = None, + return_verts: bool = True, + return_full_pose: bool = False, + pose2rot: bool = True, + **kwargs + ) -> FLAMEOutput: + ''' + Forward pass for the SMPLX model + + Parameters + ---------- + global_orient: torch.tensor, optional, shape Bx3x3 + Global rotation of the body. Useful if someone wishes to + predicts this with an external model. It is expected to be in + rotation matrix format. (default=None) + betas: torch.tensor, optional, shape BxN_b + Shape parameters. For example, it can used if shape parameters + `betas` are predicted from some external model. + (default=None) + expression: torch.tensor, optional, shape BxN_e + If given, ignore the member variable `expression` and use it + instead. For example, it can used if expression parameters + `expression` are predicted from some external model. + jaw_pose: torch.tensor, optional, shape Bx3x3 + Jaw pose. It should either joint rotations in + rotation matrix format. + transl: torch.tensor, optional, shape Bx3 + Translation vector of the body. + For example, it can used if the translation + `transl` is predicted from some external model. + (default=None) + return_verts: bool, optional + Return the vertices. (default=True) + return_full_pose: bool, optional + Returns the full axis-angle pose vector (default=False) + + Returns + ------- + output: ModelOutput + A named tuple of type `ModelOutput` + ''' + device, dtype = self.shapedirs.device, self.shapedirs.dtype + if global_orient is None: + batch_size = 1 + global_orient = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + else: + batch_size = global_orient.shape[0] + if neck_pose is None: + neck_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, 1, -1, -1).contiguous() + if jaw_pose is None: + jaw_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if leye_pose is None: + leye_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if reye_pose is None: + reye_pose = torch.eye(3, device=device, dtype=dtype).view( + 1, 1, 3, 3).expand(batch_size, -1, -1, -1).contiguous() + if betas is None: + betas = torch.zeros([batch_size, self.num_betas], + dtype=dtype, device=device) + if expression is None: + expression = torch.zeros([batch_size, self.num_expression_coeffs], + dtype=dtype, device=device) + if transl is None: + transl = torch.zeros([batch_size, 3], dtype=dtype, device=device) + + full_pose = torch.cat( + [global_orient, neck_pose, jaw_pose, leye_pose, reye_pose], dim=1) + + shape_components = torch.cat([betas, expression], dim=-1) + shapedirs = torch.cat([self.shapedirs, self.expr_dirs], dim=-1) + + vertices, joints = lbs(shape_components, full_pose, self.v_template, + shapedirs, self.posedirs, + self.J_regressor, self.parents, + self.lbs_weights, pose2rot=False, + ) + + lmk_faces_idx = self.lmk_faces_idx.unsqueeze( + dim=0).expand(batch_size, -1).contiguous() + lmk_bary_coords = self.lmk_bary_coords.unsqueeze(dim=0).repeat( + batch_size, 1, 1) + if self.use_face_contour: + lmk_idx_and_bcoords = find_dynamic_lmk_idx_and_bcoords( + vertices, full_pose, self.dynamic_lmk_faces_idx, + self.dynamic_lmk_bary_coords, + self.neck_kin_chain, + pose2rot=False, + ) + dyn_lmk_faces_idx, dyn_lmk_bary_coords = lmk_idx_and_bcoords + lmk_faces_idx = torch.cat([lmk_faces_idx, + dyn_lmk_faces_idx], 1) + lmk_bary_coords = torch.cat( + [lmk_bary_coords.expand(batch_size, -1, -1), + dyn_lmk_bary_coords], 1) + + landmarks = vertices2landmarks(vertices, self.faces_tensor, + lmk_faces_idx, + lmk_bary_coords) + + # Add any extra joints that might be needed + joints = self.vertex_joint_selector(vertices, joints) + # Add the landmarks to the joints + joints = torch.cat([joints, landmarks], dim=1) + + # Map the joints to the current dataset + if self.joint_mapper is not None: + joints = self.joint_mapper(joints=joints, vertices=vertices) + + joints += transl.unsqueeze(dim=1) + vertices += transl.unsqueeze(dim=1) + + output = FLAMEOutput(vertices=vertices if return_verts else None, + joints=joints, + betas=betas, + expression=expression, + global_orient=global_orient, + neck_pose=neck_pose, + jaw_pose=jaw_pose, + full_pose=full_pose if return_full_pose else None) + return output + + +def build_layer( + model_path: str, + model_type: str = 'smpl', + **kwargs +) -> Union[SMPLLayer, SMPLHLayer, SMPLXLayer, MANOLayer, FLAMELayer]: + ''' Method for creating a model from a path and a model type + + Parameters + ---------- + model_path: str + Either the path to the model you wish to load or a folder, + where each subfolder contains the differents types, i.e.: + model_path: + | + |-- smpl + |-- SMPL_FEMALE + |-- SMPL_NEUTRAL + |-- SMPL_MALE + |-- smplh + |-- SMPLH_FEMALE + |-- SMPLH_MALE + |-- smplx + |-- SMPLX_FEMALE + |-- SMPLX_NEUTRAL + |-- SMPLX_MALE + |-- mano + |-- MANO RIGHT + |-- MANO LEFT + |-- flame + |-- FLAME_FEMALE + |-- FLAME_MALE + |-- FLAME_NEUTRAL + + model_type: str, optional + When model_path is a folder, then this parameter specifies the + type of model to be loaded + **kwargs: dict + Keyword arguments + + Returns + ------- + body_model: nn.Module + The PyTorch module that implements the corresponding body model + Raises + ------ + ValueError: In case the model type is not one of SMPL, SMPLH, + SMPLX, MANO or FLAME + ''' + + if osp.isdir(model_path): + model_path = os.path.join(model_path, model_type) + else: + model_type = osp.basename(model_path).split('_')[0].lower() + + if model_type.lower() == 'smpl': + return SMPLLayer(model_path, **kwargs) + elif model_type.lower() == 'smplh': + return SMPLHLayer(model_path, **kwargs) + elif model_type.lower() == 'smplx': + return SMPLXLayer(model_path, **kwargs) + elif 'mano' in model_type.lower(): + return MANOLayer(model_path, **kwargs) + elif 'flame' in model_type.lower(): + return FLAMELayer(model_path, **kwargs) + else: + raise ValueError(f'Unknown model type {model_type}, exiting!') + + +def create( + model_path: str, + model_type: str = 'smpl', + **kwargs +) -> Union[SMPL, SMPLH, SMPLX, MANO, FLAME]: + ''' Method for creating a model from a path and a model type + + Parameters + ---------- + model_path: str + Either the path to the model you wish to load or a folder, + where each subfolder contains the differents types, i.e.: + model_path: + | + |-- smpl + |-- SMPL_FEMALE + |-- SMPL_NEUTRAL + |-- SMPL_MALE + |-- smplh + |-- SMPLH_FEMALE + |-- SMPLH_MALE + |-- smplx + |-- SMPLX_FEMALE + |-- SMPLX_NEUTRAL + |-- SMPLX_MALE + |-- mano + |-- MANO RIGHT + |-- MANO LEFT + + model_type: str, optional + When model_path is a folder, then this parameter specifies the + type of model to be loaded + **kwargs: dict + Keyword arguments + + Returns + ------- + body_model: nn.Module + The PyTorch module that implements the corresponding body model + Raises + ------ + ValueError: In case the model type is not one of SMPL, SMPLH, + SMPLX, MANO or FLAME + ''' + + # If it's a folder, assume + if osp.isdir(model_path): + model_path = os.path.join(model_path, model_type) + else: + model_type = osp.basename(model_path).split('_')[0].lower() + + if model_type.lower() == 'smpl': + return SMPL(model_path, **kwargs) + elif model_type.lower() == 'smplh': + return SMPLH(model_path, **kwargs) + elif model_type.lower() == 'smplx': + return SMPLX(model_path, **kwargs) + elif 'mano' in model_type.lower(): + return MANO(model_path, **kwargs) + elif 'flame' in model_type.lower(): + return FLAME(model_path, **kwargs) + else: + raise ValueError(f'Unknown model type {model_type}, exiting!') diff --git a/examples/mano_hand_retargeter/body_model/mano_wrapper.py b/examples/mano_hand_retargeter/body_model/mano_wrapper.py new file mode 100644 index 000000000..cbbb155f8 --- /dev/null +++ b/examples/mano_hand_retargeter/body_model/mano_wrapper.py @@ -0,0 +1,44 @@ +import torch +import numpy as np +import pickle +from typing import Optional +from body_model import MANOLayer +from smplx.lbs import vertices2joints +from smplx.utils import MANOOutput, to_tensor +from smplx.vertex_ids import vertex_ids + + +class MANO(MANOLayer): + def __init__(self, *args, joint_regressor_extra: Optional[str] = None, **kwargs): + """ + Extension of the official MANO implementation to support more joints. + Args: + Same as MANOLayer. + joint_regressor_extra (str): Path to extra joint regressor. + """ + super(MANO, self).__init__(*args, **kwargs) + mano_to_openpose = [0, 13, 14, 15, 16, 1, 2, 3, 17, 4, 5, 6, 18, 10, 11, 12, 19, 7, 8, 9, 20] + + #2, 3, 5, 4, 1 + if joint_regressor_extra is not None: + self.register_buffer('joint_regressor_extra', torch.tensor(pickle.load(open(joint_regressor_extra, 'rb'), encoding='latin1'), dtype=torch.float32)) + self.register_buffer('extra_joints_idxs', to_tensor(list(vertex_ids['mano'].values()), dtype=torch.long)) + self.register_buffer('joint_map', torch.tensor(mano_to_openpose, dtype=torch.long)) + self.pose2rot = kwargs.get('pose2rot') + # print([attr for attr in dir(self) if not callable(getattr(self, attr)) and not attr.startswith("__")]) + # print(self.hand_mean, self.flat_hand_mean, self.num_pca_comps, self.use_pca) + # exit() + + def forward(self, *args, **kwargs) -> MANOOutput: + """ + Run forward pass. Same as MANO and also append an extra set of joints if joint_regressor_extra is specified. + """ + mano_output = super(MANO, self).forward(*args, **kwargs) + extra_joints = torch.index_select(mano_output.vertices, 1, self.extra_joints_idxs) + joints = torch.cat([mano_output.joints, extra_joints], dim=1) + joints = joints[:, self.joint_map, :] + if hasattr(self, 'joint_regressor_extra'): + extra_joints = vertices2joints(self.joint_regressor_extra, mano_output.vertices) + joints = torch.cat([joints, extra_joints], dim=1) + mano_output.joints = joints + return mano_output \ No newline at end of file diff --git a/examples/mano_hand_retargeter/body_model/specs.py b/examples/mano_hand_retargeter/body_model/specs.py new file mode 100644 index 000000000..e850b88a8 --- /dev/null +++ b/examples/mano_hand_retargeter/body_model/specs.py @@ -0,0 +1,575 @@ +import numpy as np + +# SMPL_JOINTS = { +# "hips": 0, +# "leftUpLeg": 1, +# "rightUpLeg": 2, +# "spine": 3, +# "leftLeg": 4, +# "rightLeg": 5, +# "spine1": 6, +# "leftFoot": 7, +# "rightFoot": 8, +# "spine2": 9, +# "leftToeBase": 10, +# "rightToeBase": 11, +# "neck": 12, +# "leftShoulder": 13, +# "rightShoulder": 14, +# "head": 15, +# "leftArm": 16, +# "rightArm": 17, +# "leftForeArm": 18, +# "rightForeArm": 19, +# "leftHand": 20, +# "rightHand": 21, +# } +MANO_JOINTS = { + 'wrist': 0, + 'index1': 1, + 'index2': 2, + 'index3': 3, + 'middle1': 4, + 'middle2': 5, + 'middle3': 6, + 'pinky1': 7, + 'pinky2': 8, + 'pinky3': 9, + 'ring1': 10, + 'ring2': 11, + 'ring3': 12, + 'thumb1': 13, + 'thumb2': 14, + 'thumb3': 15, +} +OP_IGNORE_JOINTS = None +OP_NUM_JOINTS = 21 + +# SMPL_PARENTS = [ +# -1, +# 0, +# 0, +# 0, +# 1, +# 2, +# 3, +# 4, +# 5, +# 6, +# 7, +# 8, +# 9, +# 12, +# 12, +# 12, +# 13, +# 14, +# 16, +# 17, +# 18, +# 19, +# ] + +SMPLH_PATH = "./body_models/smplh" +SMPLX_PATH = "./body_models/smplx" +SMPL_PATH = "./body_models/smpl" +VPOSER_PATH = "./body_models/vposer_v1_0" + +# chosen virtual mocap markers that are "keypoints" to work with +# KEYPT_VERTS = [ +# 4404, +# 920, +# 3076, +# 3169, +# 823, +# 4310, +# 1010, +# 1085, +# 4495, +# 4569, +# 6615, +# 3217, +# 3313, +# 6713, +# 6785, +# 3383, +# 6607, +# 3207, +# 1241, +# 1508, +# 4797, +# 4122, +# 1618, +# 1569, +# 5135, +# 5040, +# 5691, +# 5636, +# 5404, +# 2230, +# 2173, +# 2108, +# 134, +# 3645, +# 6543, +# 3123, +# 3024, +# 4194, +# 1306, +# 182, +# 3694, +# 4294, +# 744, +# ] + + +# """ +# Openpose +# """ +# OP_NUM_JOINTS = 25 +# # OP_IGNORE_JOINTS = [1, 9, 12] # neck and left/right hip +# OP_IGNORE_JOINTS = [1] # neck +# OP_EDGE_LIST = [ +# [1, 8], +# [1, 2], +# [1, 5], +# [2, 3], +# [3, 4], +# [5, 6], +# [6, 7], +# [8, 9], +# [9, 10], +# [10, 11], +# [8, 12], +# [12, 13], +# [13, 14], +# [1, 0], +# [0, 15], +# [15, 17], +# [0, 16], +# [16, 18], +# [14, 19], +# [19, 20], +# [14, 21], +# [11, 22], +# [22, 23], +# [11, 24], +# ] +# # indices to map an openpose detection to its flipped version +# OP_FLIP_MAP = [ +# 0, +# 1, +# 5, +# 6, +# 7, +# 2, +# 3, +# 4, +# 8, +# 12, +# 13, +# 14, +# 9, +# 10, +# 11, +# 16, +# 15, +# 18, +# 17, +# 22, +# 23, +# 24, +# 19, +# 20, +# 21, +# ] + + +# +# From https://github.com/vchoutas/smplify-x/blob/master/smplifyx/utils.py +# Please see license for usage restrictions. +# +# def smpl_to_openpose( +# model_type="smplx", +# use_hands=True, +# use_face=True, +# use_face_contour=False, +# openpose_format="coco25", +# ): +# """Returns the indices of the permutation that maps SMPL to OpenPose + +# Parameters +# ---------- +# model_type: str, optional +# The type of SMPL-like model that is used. The default mapping +# returned is for the SMPLX model +# use_hands: bool, optional +# Flag for adding to the returned permutation the mapping for the +# hand keypoints. Defaults to True +# use_face: bool, optional +# Flag for adding to the returned permutation the mapping for the +# face keypoints. Defaults to True +# use_face_contour: bool, optional +# Flag for appending the facial contour keypoints. Defaults to False +# openpose_format: bool, optional +# The output format of OpenPose. For now only COCO-25 and COCO-19 is +# supported. Defaults to 'coco25' + +# """ +# if openpose_format.lower() == "coco25": +# if model_type == "smpl": +# return np.array( +# [ +# 24, +# 12, +# 17, +# 19, +# 21, +# 16, +# 18, +# 20, +# 0, +# 2, +# 5, +# 8, +# 1, +# 4, +# 7, +# 25, +# 26, +# 27, +# 28, +# 29, +# 30, +# 31, +# 32, +# 33, +# 34, +# ], +# dtype=np.int32, +# ) +# elif model_type == "smplh": +# body_mapping = np.array( +# [ +# 52, +# 12, +# 17, +# 19, +# 21, +# 16, +# 18, +# 20, +# 0, +# 2, +# 5, +# 8, +# 1, +# 4, +# 7, +# 53, +# 54, +# 55, +# 56, +# 57, +# 58, +# 59, +# 60, +# 61, +# 62, +# ], +# dtype=np.int32, +# ) +# mapping = [body_mapping] +# if use_hands: +# lhand_mapping = np.array( +# [ +# 20, +# 34, +# 35, +# 36, +# 63, +# 22, +# 23, +# 24, +# 64, +# 25, +# 26, +# 27, +# 65, +# 31, +# 32, +# 33, +# 66, +# 28, +# 29, +# 30, +# 67, +# ], +# dtype=np.int32, +# ) +# rhand_mapping = np.array( +# [ +# 21, +# 49, +# 50, +# 51, +# 68, +# 37, +# 38, +# 39, +# 69, +# 40, +# 41, +# 42, +# 70, +# 46, +# 47, +# 48, +# 71, +# 43, +# 44, +# 45, +# 72, +# ], +# dtype=np.int32, +# ) +# mapping += [lhand_mapping, rhand_mapping] +# return np.concatenate(mapping) +# # SMPLX +# elif model_type == "smplx": +# body_mapping = np.array( +# [ +# 55, +# 12, +# 17, +# 19, +# 21, +# 16, +# 18, +# 20, +# 0, +# 2, +# 5, +# 8, +# 1, +# 4, +# 7, +# 56, +# 57, +# 58, +# 59, +# 60, +# 61, +# 62, +# 63, +# 64, +# 65, +# ], +# dtype=np.int32, +# ) +# mapping = [body_mapping] +# if use_hands: +# lhand_mapping = np.array( +# [ +# 20, +# 37, +# 38, +# 39, +# 66, +# 25, +# 26, +# 27, +# 67, +# 28, +# 29, +# 30, +# 68, +# 34, +# 35, +# 36, +# 69, +# 31, +# 32, +# 33, +# 70, +# ], +# dtype=np.int32, +# ) +# rhand_mapping = np.array( +# [ +# 21, +# 52, +# 53, +# 54, +# 71, +# 40, +# 41, +# 42, +# 72, +# 43, +# 44, +# 45, +# 73, +# 49, +# 50, +# 51, +# 74, +# 46, +# 47, +# 48, +# 75, +# ], +# dtype=np.int32, +# ) + +# mapping += [lhand_mapping, rhand_mapping] +# if use_face: +# # end_idx = 127 + 17 * use_face_contour +# face_mapping = np.arange( +# 76, 127 + 17 * use_face_contour, dtype=np.int32 +# ) +# mapping += [face_mapping] + +# return np.concatenate(mapping) +# else: +# raise ValueError("Unknown model type: {}".format(model_type)) +# elif openpose_format == "coco19": +# if model_type == "smpl": +# return np.array( +# [24, 12, 17, 19, 21, 16, 18, 20, 0, 2, 5, 8, 1, 4, 7, 25, 26, 27, 28], +# dtype=np.int32, +# ) +# elif model_type == "smplh": +# body_mapping = np.array( +# [52, 12, 17, 19, 21, 16, 18, 20, 0, 2, 5, 8, 1, 4, 7, 53, 54, 55, 56], +# dtype=np.int32, +# ) +# mapping = [body_mapping] +# if use_hands: +# lhand_mapping = np.array( +# [ +# 20, +# 34, +# 35, +# 36, +# 57, +# 22, +# 23, +# 24, +# 58, +# 25, +# 26, +# 27, +# 59, +# 31, +# 32, +# 33, +# 60, +# 28, +# 29, +# 30, +# 61, +# ], +# dtype=np.int32, +# ) +# rhand_mapping = np.array( +# [ +# 21, +# 49, +# 50, +# 51, +# 62, +# 37, +# 38, +# 39, +# 63, +# 40, +# 41, +# 42, +# 64, +# 46, +# 47, +# 48, +# 65, +# 43, +# 44, +# 45, +# 66, +# ], +# dtype=np.int32, +# ) +# mapping += [lhand_mapping, rhand_mapping] +# return np.concatenate(mapping) +# # SMPLX +# elif model_type == "smplx": +# body_mapping = np.array( +# [55, 12, 17, 19, 21, 16, 18, 20, 0, 2, 5, 8, 1, 4, 7, 56, 57, 58, 59], +# dtype=np.int32, +# ) +# mapping = [body_mapping] +# if use_hands: +# lhand_mapping = np.array( +# [ +# 20, +# 37, +# 38, +# 39, +# 60, +# 25, +# 26, +# 27, +# 61, +# 28, +# 29, +# 30, +# 62, +# 34, +# 35, +# 36, +# 63, +# 31, +# 32, +# 33, +# 64, +# ], +# dtype=np.int32, +# ) +# rhand_mapping = np.array( +# [ +# 21, +# 52, +# 53, +# 54, +# 65, +# 40, +# 41, +# 42, +# 66, +# 43, +# 44, +# 45, +# 67, +# 49, +# 50, +# 51, +# 68, +# 46, +# 47, +# 48, +# 69, +# ], +# dtype=np.int32, +# ) + +# mapping += [lhand_mapping, rhand_mapping] +# if use_face: +# face_mapping = np.arange( +# 70, 70 + 51 + 17 * use_face_contour, dtype=np.int32 +# ) +# mapping += [face_mapping] + +# return np.concatenate(mapping) +# else: +# raise ValueError("Unknown model type: {}".format(model_type)) +# else: +# raise ValueError("Unknown joint format: {}".format(openpose_format)) diff --git a/examples/mano_hand_retargeter/body_model/utils.py b/examples/mano_hand_retargeter/body_model/utils.py new file mode 100644 index 000000000..0fea40a5c --- /dev/null +++ b/examples/mano_hand_retargeter/body_model/utils.py @@ -0,0 +1,76 @@ +import torch +from .specs import MANO_JOINTS + + +def run_mano(body_model, trans, root_orient, body_pose, is_right, betas=None): + """ + Forward pass of the MANO model and populates pred_data accordingly with + joints3d, verts3d, points3d. + + trans : B x T x 3 + root_orient : B x T x 3 + body_pose : B x T x J*3 + betas : (optional) B x D + """ + B, T, _ = trans.shape + bm_batch_size = body_model.batch_size + assert bm_batch_size % B == 0 + # assert (is_right[0]==is_right[0][0]).all(), f'{is_right}' + # assert (is_right[1]==is_right[1][0]).all(), f'{is_right}' + + seq_len = bm_batch_size // B + bm_num_betas = body_model.num_betas + J_BODY = len(MANO_JOINTS) - 1 # all joints except root + # print('utils.py, seq_len, T: ', seq_len, T, bm_batch_size, B) # 1, 120, 1, 1 + # print('trans, root_orient, body_pose:', trans.shape, root_orient.shape, body_pose.shape) + if T == 1: + raise ValueError + # must expand to use with body model + trans = trans.expand(B, seq_len, 3) + root_orient = root_orient.expand(B, seq_len, 3) + body_pose = body_pose.expand(B, seq_len, J_BODY * 3) + elif T != seq_len: + trans, root_orient, body_pose = zero_pad_tensors( + [trans, root_orient, body_pose], seq_len - T + ) + if betas is None: + betas = torch.zeros(B, bm_num_betas, device=trans.device) + betas = betas.reshape((B, 1, bm_num_betas)).expand((B, seq_len, bm_num_betas)) + # print('body_pose: ', body_pose.reshape((B * seq_len, -1)).shape) + + mano_output = body_model( + hand_pose=body_pose.reshape((B * seq_len, -1)), + betas=betas.reshape((B * seq_len, -1)), + global_orient=root_orient.reshape((B * seq_len, -1)), + transl=trans.reshape((B * seq_len, -1)), + ) + joints = mano_output.joints + verts = mano_output.vertices + + joints = joints.reshape(B, seq_len, -1, 3)[:, :T] + verts = verts.reshape(B, seq_len, -1, 3)[:, :T] + + is_right = is_right.unsqueeze(-1) + joints[:, :, :, 0] = (2*is_right-1)*joints[:, :, :, 0] + verts[:, :, :, 0] = (2*is_right-1)*verts[:, :, :, 0] + + return { + "joints": joints, + "vertices": verts, + "l_faces": body_model.faces_tensor[:,[0,2,1]], + "r_faces": body_model.faces_tensor, + "is_right": is_right.squeeze(-1), + 'body_pose': body_pose.clone() + } + + +def zero_pad_tensors(pad_list, pad_size): + """ + Assumes tensors in pad_list are B x T x D and pad temporal dimension + """ + B = pad_list[0].size(0) + new_pad_list = [] + for pad_idx, pad_tensor in enumerate(pad_list): + padding = torch.zeros((B, pad_size, pad_tensor.size(2))).to(pad_tensor) + new_pad_list.append(torch.cat([pad_tensor, padding], dim=1)) + return new_pad_list diff --git a/examples/mano_hand_retargeter/confs/config.yaml b/examples/mano_hand_retargeter/confs/config.yaml new file mode 100644 index 000000000..f15b4ff71 --- /dev/null +++ b/examples/mano_hand_retargeter/confs/config.yaml @@ -0,0 +1,64 @@ +defaults: + - data: HOT3D + - optim + - _self_ + +model: + use_init: True + opt_cams: False #True + opt_scale: True + async_tracks: True + +overwrite: False +run_opt: True +run_vis: True +run_prior: False +datatype: ${data.video_dir} +vis: + phases: + # - motion_chunks + # - input + # - root_fit + - smooth_fit + - prior + # - init + render_views: + - above + - side + - front + - src_cam + make_grid: True + overwrite: True + render_keypoints: False # Overlay GT 2D keypoints on source camera view + +MANO: + MODEL_PATH: ${paths.DATA_DIR}/mano + GENDER: neutral + NUM_HAND_JOINTS: 15 + MEAN_PARAMS: ${paths.DATA_DIR}/mano_mean_params.npz + CREATE_BODY_POSE: FALSE + +paths: + base_dir: None + DATA_DIR: _DATA/data/ + vposer: VPoser/pretrained/Vposer_right_mirrored # _DATA/body_models/vposer_v1_0 + +HMP: + config: hmp_config.yaml + use_hposer: False + vid_path: ${data.root}/video/${data.seq}.mp4 + exp_name: None + +fps: 30 +log_root: ../outputs/logs +log_dir: ${log_root}/${data.type}-${data.split} +exp_name: ${now:%Y-%m-%d} +temporal_smooth: True +gpu: 0 +is_static: False + +hydra: + job: + chdir: True + run: + dir: ${log_dir}/${exp_name}/${data.name} diff --git a/examples/mano_hand_retargeter/confs/data/video_driod.yaml b/examples/mano_hand_retargeter/confs/data/video_driod.yaml new file mode 100644 index 000000000..05c165db9 --- /dev/null +++ b/examples/mano_hand_retargeter/confs/data/video_driod.yaml @@ -0,0 +1,24 @@ +type: video +split: custom +root: /data/home/zy3023/code/hand/Dyn-HaMR/test # put your videos in root/videos/vid.mp4 +video_dir: videos +seq: demo1 +ext: mp4 +src_path: ${data.root}/${data.video_dir}/${data.seq}.${data.ext} +frame_opts: + ext: jpg + fps: 25 + start_sec: 0 + end_sec: -1 +use_cams: True +track_ids: "all" +shot_idx: 0 +start_idx: 0 +end_idx: 500 +split_cameras: True +name: ${data.seq}-${data.track_ids}-shot-${data.shot_idx}-${data.start_idx}-${data.end_idx} +sources: + images: ${data.root}/images/${data.seq} + cameras: ${data.root}/dynhamr/cameras/${data.seq}/shot-${data.shot_idx} + tracks: ${data.root}/dynhamr/track_preds/${data.seq} + shots: ${data.root}/dynhamr/shot_idcs/${data.seq}.json diff --git a/examples/mano_hand_retargeter/confs/data/video_vipe.yaml b/examples/mano_hand_retargeter/confs/data/video_vipe.yaml new file mode 100644 index 000000000..acdb5a4d5 --- /dev/null +++ b/examples/mano_hand_retargeter/confs/data/video_vipe.yaml @@ -0,0 +1,29 @@ +type: video +split: custom +root: /home/lduan/Documents/Dyn-HaMR/test # put your videos in root/videos/vid.mp4 +video_dir: videos +seq: prod1 +ext: mp4 +src_path: ${data.root}/${data.video_dir}/${data.seq}.${data.ext} +frame_opts: + ext: jpg + fps: 25 + start_sec: 0 + end_sec: -1 +use_cams: True +track_ids: "all" +shot_idx: 0 +start_idx: 0 +end_idx: -1 +split_cameras: True +name: ${data.seq}-${data.track_ids}-shot-${data.shot_idx}-${data.start_idx}-${data.end_idx} +sources: + images: ${data.root}/images/${data.seq} + cameras: ${data.root}/dynhamr/cameras/${data.seq}/shot-${data.shot_idx} + tracks: ${data.root}/dynhamr/track_preds/${data.seq} + shots: ${data.root}/dynhamr/shot_idcs/${data.seq}.json + +# VIPE-specific options +use_vipe: True +vipe_dir: /home/lduan/Documents/Dyn-HaMR/third-party/vipe/vipe_results + diff --git a/examples/mano_hand_retargeter/confs/init.yaml b/examples/mano_hand_retargeter/confs/init.yaml new file mode 100644 index 000000000..07b844191 --- /dev/null +++ b/examples/mano_hand_retargeter/confs/init.yaml @@ -0,0 +1,13 @@ +defaults: + - data: posetrack + - _self_ + +gap: 1 +log_root: outputs +save_per_frame: False +print_err: False +stride: 48 + +hydra: + run: + dir: ${log_root}/init/${data.type}-${data.seq}-${data.depth_dir}-${data.fov}fov-gap${gap} diff --git a/examples/mano_hand_retargeter/confs/optim.yaml b/examples/mano_hand_retargeter/confs/optim.yaml new file mode 100644 index 000000000..2663139bf --- /dev/null +++ b/examples/mano_hand_retargeter/confs/optim.yaml @@ -0,0 +1,52 @@ +optim: + options: + robust_loss_type: "bisquare" + robust_tuning_const: 4.6851 + joints2d_sigma: 100.0 + lr: 1.0 + lbfgs_max_iter: 20 + save_every: 20 + vis_every: -1 + max_chunk_steps: 20 + save_meshes: False + + root: + num_iters: 50 + + smpl: + num_iters: 0 + + smooth: + opt_scale: False + num_iters: 300 + + motion_chunks: + chunk_size: 10 + init_steps: 20 + chunk_steps: 20 + opt_cams: True + + loss_weights: + penetration: [0,0,0] # [0, 1.0, 10.0] + # joints2d: [1, 1, 1] # Increased smooth_fit weight from 0.001 to 0.1 to better match 2D keypoints + joints2d: [10000, 10000, 10000] # Increased smooth_fit weight from 0.001 to 0.1 to better match 2D keypoints + bg2d: [0.0, 0.000, 0.000] + cam_R_smooth : [0.0, 0.0, 0.0] + cam_t_smooth : [0.0, 0.0, 0.0] + bio : [0.0, 0.0, 0.0] # [10, 10, 10] + depth_constraint: [100.0, 100.0, 0.0] # Prevent hand from being behind camera - MUST be stronger than 2D loss + # bg2d: [0.0, 0.0001, 0.0001] + # cam_R_smooth : [0.0, 1000.0, 1000.0] + # cam_t_smooth : [0.0, 1000.0, 1000.0] + joints3d: [0.0, 0.0, 0.0] + joints3d_smooth: [1000, 10000.0, 0.0] # raw: [1.0, 10.0, 0.0] + # joints3d_smooth: [0, 0, 0.0] # raw: [1.0, 10.0, 0.0] + joints3d_rollout: [0.0, 0.0, 0.0] + verts3d: [0.0, 0.0, 0.0] + points3d: [0.0, 0.0, 0.0] + pose_prior: [1, 1, 1] + shape_prior: [0.05, 0.05, 0.05] + motion_prior: [0.0, 0.0, 0.075] + init_motion_prior: [0.0, 0.0, 0.075] + joint_consistency: [0.0, 0.0, 100.0] + bone_length: [0.0, 2000.0, 2000.0] diff --git a/examples/mano_hand_retargeter/convert_traj_npz_no_pickle.py b/examples/mano_hand_retargeter/convert_traj_npz_no_pickle.py new file mode 100644 index 000000000..dabdce0f2 --- /dev/null +++ b/examples/mano_hand_retargeter/convert_traj_npz_no_pickle.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 +""" +Convert a trajectory NPZ produced by `retarget_openxr26_with_g1_upper_body.py` to a "no-pickle" format. + +Why: +- Isaac Sim/Kit runs with a bundled NumPy. Pickled object arrays (dtype=object) can crash or fail to + unpickle depending on the NumPy version that wrote the file. +- The trajectory files in this repo often store only *strings* (e.g., `frame_files`, `*_dof_names`) + as object arrays; this tool rewrites those arrays as plain string arrays (`dtype=str`). + +Usage: + python convert_traj_npz_no_pickle.py --in left_hand_traj_optrot.npz --out left_hand_traj_optrot_nopickle.npz +""" + +from __future__ import annotations + +import argparse +from pathlib import Path + +import numpy as np + + +def main() -> None: + ap = argparse.ArgumentParser() + ap.add_argument("--in", dest="in_path", required=True, help="Input trajectory .npz (may contain object arrays).") + ap.add_argument("--out", dest="out_path", required=True, help="Output trajectory .npz (no object arrays).") + args = ap.parse_args() + + in_path = Path(args.in_path).expanduser().resolve() + out_path = Path(args.out_path).expanduser().resolve() + if not in_path.is_file(): + raise FileNotFoundError(in_path) + out_path.parent.mkdir(parents=True, exist_ok=True) + + z = np.load(str(in_path), allow_pickle=True) + out: dict[str, np.ndarray] = {} + for k in z.files: + arr = z[k] + if getattr(arr, "dtype", None) is not None and arr.dtype == object: + out[k] = np.asarray(arr, dtype=str) + else: + out[k] = np.asarray(arr) + + # Ensure no object arrays remain + bad = [k for k, v in out.items() if getattr(v, "dtype", None) == object] + if bad: + raise RuntimeError(f"Conversion failed; still has object arrays for keys: {bad}") + + np.savez_compressed(out_path, **out) + print(f"Wrote: {out_path}") + + +if __name__ == "__main__": + main() + + diff --git a/examples/mano_hand_retargeter/export_openxr26_from_world_results.py b/examples/mano_hand_retargeter/export_openxr26_from_world_results.py new file mode 100644 index 000000000..e2cb056a6 --- /dev/null +++ b/examples/mano_hand_retargeter/export_openxr26_from_world_results.py @@ -0,0 +1,181 @@ +#!/usr/bin/env python3 +""" +Export OpenXR-26 joints (IsaacLab OpenXR ordering) from a Dyn-HaMR `*_world_results.npz`. + - loads MANO params from the world-results file (supports pickled `world` dict) + - runs MANO forward for all tracks/frames + - converts MANO/OpenPose-21 joints to OpenXR-26 joint positions + - writes `openxr26_joints.npz` with shape (B,T,26,3) + +Example: + python dyn-hamr/export_openxr26_from_world_results.py \\ + --world_results outputs/logs/.../smooth_fit/output_video_000300_world_results.npz \\ + --out_dir /tmp/openxr26 + +To export joints in a canonical MANO frame (no global rotation/translation), use: + python dyn-hamr/export_openxr26_from_world_results.py \\ + --world_results ... \\ + --out_dir /tmp/openxr26 \\ + --zero_global + +To also save handedness-split outputs: + python dyn-hamr/export_openxr26_from_world_results.py \\ + --world_results ... \\ + --out_dir /tmp/openxr26 \\ + --split_by_handedness +""" + +import os +import sys +import argparse + + +# Make imports work whether run from repo root or from inside dyn-hamr/ +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) +if THIS_DIR not in sys.path: + sys.path.insert(0, THIS_DIR) + + +from vis_mano_params import ( # noqa: E402 + load_mano_params_from_file, + openpose21_to_openxr26_joints, + HAND_JOINT_NAMES, + _to_numpy, +) + +import numpy as np # noqa: E402 +import torch # noqa: E402 +from omegaconf import OmegaConf # noqa: E402 + +from body_model import MANO # noqa: E402 +from body_model.utils import run_mano # noqa: E402 +from util.loaders import resolve_cfg_paths # noqa: E402 + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--world_results", type=str, required=True, help="Path to `*_world_results.npz`") + parser.add_argument("--out_dir", type=str, required=True) + parser.add_argument("--cfg", type=str, default=os.path.join(THIS_DIR, "confs", "config.yaml")) + parser.add_argument("--device", type=str, default="cpu") + parser.add_argument("--openxr_metacarpal_alpha", type=float, default=0.3) + parser.add_argument( + "--zero_global", + action="store_true", + help="If set, force MANO global translation/rotation to identity (trans=0, root_orient=0) before running MANO.", + ) + parser.add_argument( + "--zero_trans", + action="store_true", + help="If set, force MANO global translation to zero (trans=0) before running MANO.", + ) + parser.add_argument( + "--zero_root_orient", + action="store_true", + help="If set, force MANO global orientation to identity (root_orient=0 axis-angle) before running MANO.", + ) + parser.add_argument( + "--split_by_handedness", + action="store_true", + help=( + "If set, also write `openxr26_joints_right.npz` and `openxr26_joints_left.npz` by splitting tracks (B) " + "using `is_right` (assumes each track has consistent handedness across time)." + ), + ) + args = parser.parse_args() + + os.makedirs(args.out_dir, exist_ok=True) + device = torch.device(args.device) + + cfg = OmegaConf.load(args.cfg) + cfg = resolve_cfg_paths(cfg) + mano_cfg = {k.lower(): v for k, v in dict(cfg.MANO).items()} + + params = load_mano_params_from_file(args.world_results, device=device) + B, T, _ = params.trans.shape + + if args.zero_global: + params.trans = torch.zeros_like(params.trans) + params.root_orient = torch.zeros_like(params.root_orient) + else: + if args.zero_trans: + params.trans = torch.zeros_like(params.trans) + if args.zero_root_orient: + params.root_orient = torch.zeros_like(params.root_orient) + + hand_model = MANO(batch_size=B * T, pose2rot=True, **mano_cfg).to(device) + + is_right = params.is_right + if is_right is None: + is_right = torch.ones((B, T), device=device) + + out = run_mano( + hand_model, + trans=params.trans, + root_orient=params.root_orient, + body_pose=params.hand_pose, + is_right=is_right, + betas=params.betas, + ) + + joints_bt = _to_numpy(out["joints"]) # (B,T,21,3) + if joints_bt.shape[2] != 21 or joints_bt.shape[-1] != 3: + raise RuntimeError(f"Unexpected MANO joints shape: {joints_bt.shape} (expected (B,T,21,3))") + + j26 = np.zeros((B, T, 26, 3), dtype=np.float32) + for b in range(B): + for t in range(T): + j26[b, t] = openpose21_to_openxr26_joints( + joints_bt[b, t], metacarpal_alpha=float(args.openxr_metacarpal_alpha) + ) + + np.savez( + os.path.join(args.out_dir, "openxr26_joints.npz"), + joints_openxr26=j26, + joint_names_openxr26=np.asarray(HAND_JOINT_NAMES, dtype=object), + is_right=_to_numpy(is_right), + ) + print(f"Wrote: {os.path.join(args.out_dir, 'openxr26_joints.npz')}") + + if args.split_by_handedness: + is_right_np = _to_numpy(is_right) # (B,T) + if is_right_np.ndim != 2 or is_right_np.shape != (B, T): + raise RuntimeError(f"Unexpected is_right shape: {is_right_np.shape} (expected (B,T))") + + # Track-level handedness decision (using frame 0), with a warning if it flips over time. + track_right0 = is_right_np[:, 0] >= 0.5 + flips = (is_right_np >= 0.5) != track_right0[:, None] + flip_tracks = np.where(np.any(flips, axis=1))[0] + if flip_tracks.size > 0: + print( + f"[WARN] is_right changes over time for tracks: {flip_tracks.tolist()}. " + "Splitting uses frame-0 handedness for the whole track." + ) + + right_idx = np.where(track_right0)[0].astype(np.int64) + left_idx = np.where(~track_right0)[0].astype(np.int64) + + right_path = os.path.join(args.out_dir, "openxr26_joints_right.npz") + left_path = os.path.join(args.out_dir, "openxr26_joints_left.npz") + + np.savez( + right_path, + joints_openxr26=j26[right_idx], + joint_names_openxr26=np.asarray(HAND_JOINT_NAMES, dtype=object), + is_right=is_right_np[right_idx], + track_indices=right_idx, + ) + np.savez( + left_path, + joints_openxr26=j26[left_idx], + joint_names_openxr26=np.asarray(HAND_JOINT_NAMES, dtype=object), + is_right=is_right_np[left_idx], + track_indices=left_idx, + ) + print(f"Wrote: {right_path} (B={len(right_idx)})") + print(f"Wrote: {left_path} (B={len(left_idx)})") + + +if __name__ == "__main__": + main() + + diff --git a/examples/mano_hand_retargeter/geometry/__init__.py b/examples/mano_hand_retargeter/geometry/__init__.py new file mode 100644 index 000000000..d04e763a7 --- /dev/null +++ b/examples/mano_hand_retargeter/geometry/__init__.py @@ -0,0 +1,5 @@ +from . import camera +from . import mesh +from . import pcl +from . import plane +from . import rotation diff --git a/examples/mano_hand_retargeter/geometry/camera.py b/examples/mano_hand_retargeter/geometry/camera.py new file mode 100644 index 000000000..3b2479e55 --- /dev/null +++ b/examples/mano_hand_retargeter/geometry/camera.py @@ -0,0 +1,351 @@ +import torch +import numpy as np + + +def perspective_projection( + points, focal_length, camera_center, rotation=None, translation=None +): + """ + Adapted from https://github.com/mkocabas/VIBE/blob/master/lib/models/spin.py + This function computes the perspective projection of a set of points. + Input: + points (bs, N, 3): 3D points + focal_length (bs, 2): Focal length + camera_center (bs, 2): Camera center + rotation (bs, 3, 3): OPTIONAL Camera rotation + translation (bs, 3): OPTIONAL Camera translation + """ + batch_size = points.shape[0] + K = torch.zeros([batch_size, 3, 3], device=points.device) + K[:, 0, 0] = focal_length[:, 0] + K[:, 1, 1] = focal_length[:, 1] + K[:, 2, 2] = 1.0 + K[:, :-1, -1] = camera_center + + if rotation is not None and translation is not None: + # Transform points + points = torch.einsum("bij,bkj->bki", rotation, points) + points = points + translation.unsqueeze(1) + + # Apply perspective distortion + projected_points = points / points[..., 2:3] + + # Apply camera intrinsics + projected_points = torch.einsum("bij,bkj->bki", K, projected_points) + + return projected_points[:, :, :-1] + + +def reproject(points3d, cam_R, cam_t, cam_f, cam_center): + """ + reproject points3d into the scene cameras + :param points3d (B, T, N, 3) + :param cam_R (B, T, 3, 3) + :param cam_t (B, T, 3) + :param cam_f (T, 2) + :param cam_center (T, 2) + """ + # print(points3d.shape, cam_R.shape, cam_t.shape, cam_f.shape, cam_center.shape) + # print(cam_f[None, :, None].shape, cam_center[None, :, None].shape) + # raise ValueError + B, T, N, _ = points3d.shape + points3d = torch.einsum("btij,btnj->btni", cam_R, points3d) + points3d = points3d + cam_t[..., None, :] # (B, T, N, 3) + points2d = points3d[..., :2] / points3d[..., 2:3] + points2d = cam_f[None, :, None] * points2d + cam_center[None, :, None] + return points2d + + +def focal2fov(focal, R): + """ + :param focal, focal length + :param R, either W / 2 or H / 2 + """ + return 2 * np.arctan(R / focal) + + +def fov2focal(fov, R): + """ + :param fov, field of view in radians + :param R, either W / 2 or H / 2 + """ + return R / np.tan(fov / 2) + + +def compute_lookat_box(bb_min, bb_max, intrins): + """ + The center and distance to a scene with bb_min, bb_max + to place a camera with given intrinsics + :param bb_min (3,) + :param bb_max (3,) + :param intrinsics, (fx, fy, cx, cy) of camera + :param view_angle (optional) viewing angle in radians (elevation) + """ + fx, fy, cx, cy = intrins + bb_min, bb_max = torch.tensor(bb_min), torch.tensor(bb_max) + center = 0.5 * (bb_min + bb_max) + size = torch.linalg.norm(bb_max - bb_min) + cam_dist = np.sqrt(fx**2 + fy**2) / np.sqrt(cx**2 + cy**2) + cam_dist = 0.75 * size * cam_dist + return center, cam_dist + + +def lookat_origin(cam_dist, view_angle=-np.pi / 6): + """ + :param cam_dist (float) + :param view_angle (float) + """ + cam_dist = np.abs(cam_dist) + view_angle = np.abs(view_angle) + pos = cam_dist * torch.tensor([0, np.sin(view_angle), np.cos(view_angle)]) + rot = rotx(view_angle) + return rot, pos + + +def lookat_matrix(source_pos, target_pos, up): + """ + IMPORTANT: USES RIGHT UP BACK XYZ CONVENTION + :param source_pos (*, 3) + :param target_pos (*, 3) + :param up (3,) + """ + *dims, _ = source_pos.shape + up = up.reshape(*(1,) * len(dims), 3) + up = up / torch.linalg.norm(up, dim=-1, keepdim=True) + back = normalize(target_pos - source_pos) + right = normalize(torch.linalg.cross(up, back)) + up = normalize(torch.linalg.cross(back, right)) + R = torch.stack([right, up, back], dim=-1) + return make_4x4_pose(R, source_pos) + + +def normalize(x): + return x / torch.linalg.norm(x, dim=-1, keepdim=True) + + +def invert_camera(R, t): + """ + :param R (*, 3, 3) + :param t (*, 3) + returns Ri (*, 3, 3), ti (*, 3) + """ + R, t = torch.tensor(R), torch.tensor(t) + Ri = R.transpose(-1, -2) + ti = -torch.einsum("...ij,...j->...i", Ri, t) + return Ri, ti + + +def compose_cameras(R1, t1, R2, t2): + """ + composes [R1, t1] and [R2, t2] + :param R1 (*, 3, 3) + :param t1 (*, 3) + :param R2 (*, 3, 3) + :param t2 (*, 3) + """ + R = torch.einsum("...ij,...jk->...ik", R1, R2) + t = t1 + torch.einsum("...ij,...j->...i", R1, t2) + return R, t + + +def matmul_nd(A, x): + """ + multiply batch matrix A to batch nd tensors + :param A (B, m, n) + :param x (B, *dims, m) + """ + B, m, n = A.shape + assert len(A) == len(x) + assert x.shape[-1] == m + B, *dims, _ = x.shape + return torch.matmul(A.reshape(B, *(1,) * len(dims), m, n), x[..., None])[..., 0] + + +def view_matrix(z, up, pos): + """ + :param z (*, 3) up (*, 3) pos (*, 3) + returns (*, 4, 4) + """ + *dims, _ = z.shape + x = normalize(torch.linalg.cross(up, z)) + y = normalize(torch.linalg.cross(z, x)) + bottom = ( + torch.tensor([0, 0, 0, 1], dtype=torch.float32) + .reshape(*(1,) * len(dims), 1, 4) + .expand(*dims, 1, 4) + ) + + return torch.cat([torch.stack([x, y, z, pos], dim=-1), bottom], dim=-2) + + +def average_pose(poses): + """ + :param poses (N, 4, 4) + returns average pose (4, 4) + """ + center = poses[:, :3, 3].mean(0) + up = normalize(poses[:, :3, 1].sum(0)) + z = normalize(poses[:, :3, 2].sum(0)) + return view_matrix(z, up, center) + + +def project_so3(M, eps=1e-4): + """ + :param M (N, *, 3, 3) + """ + N, *dims, _, _ = M.shape + M = M * (1 + torch.rand(N, *dims, 1, 3, device=M.device)) + U, D, Vt = torch.linalg.svd(M) # (N, *, 3, 3), (N, *, 3), (N, *, 3, 3) + detuvt = torch.linalg.det(torch.matmul(U, Vt)) # (N, *) + S = torch.cat( + [torch.ones(N, *dims, 2, device=M.device), detuvt[..., None]], dim=-1 + ) # (N, *, 3) + return torch.matmul(U, torch.matmul(torch.diag_embed(S), Vt)) + + +def make_translation(t): + return make_4x4_pose(torch.eye(3), t) + + +def make_rotation(rx=0, ry=0, rz=0, order="xyz"): + Rx = rotx(rx) + Ry = roty(ry) + Rz = rotz(rz) + if order == "xyz": + R = Rz @ Ry @ Rx + elif order == "xzy": + R = Ry @ Rz @ Rx + elif order == "yxz": + R = Rz @ Rx @ Ry + elif order == "yzx": + R = Rx @ Rz @ Ry + elif order == "zyx": + R = Rx @ Ry @ Rz + elif order == "zxy": + R = Ry @ Rx @ Rz + return make_4x4_pose(R, torch.zeros(3)) + + +def make_4x4_pose(R, t): + """ + :param R (*, 3, 3) + :param t (*, 3) + return (*, 4, 4) + """ + dims = R.shape[:-2] + pose_3x4 = torch.cat([R, t.view(*dims, 3, 1)], dim=-1) + bottom = ( + torch.tensor([0, 0, 0, 1], device=R.device) + .reshape(*(1,) * len(dims), 1, 4) + .expand(*dims, 1, 4) + ) + return torch.cat([pose_3x4, bottom], dim=-2) + + +def normalize(x): + return x / torch.sqrt(torch.sum(x**2, dim=-1, keepdim=True)) + + +def rotx(theta): + return torch.tensor( + [ + [1, 0, 0], + [0, np.cos(theta), -np.sin(theta)], + [0, np.sin(theta), np.cos(theta)], + ], + dtype=torch.float32, + ) + + +def roty(theta): + return torch.tensor( + [ + [np.cos(theta), 0, np.sin(theta)], + [0, 1, 0], + [-np.sin(theta), 0, np.cos(theta)], + ], + dtype=torch.float32, + ) + + +def rotz(theta): + return torch.tensor( + [ + [np.cos(theta), -np.sin(theta), 0], + [np.sin(theta), np.cos(theta), 0], + [0, 0, 1], + ], + dtype=torch.float32, + ) + + +def relative_pose_c2w(Rwc1, Rwc2, twc1, twc2): + """ + compute relative pose from cam 1 to cam 2 given c2w pose matrices + :param Rwc1, Rwc2 (N, 3, 3) cam1, cam2 to world rotations + :param twc1, twc2 (N, 3) cam1, cam2 to world translations + returns R21 (N, 3, 3) t21 (N, 3) + """ + twc1 = twc1.view(-1, 3, 1) + twc2 = twc2.view(-1, 3, 1) + Rc2w = Rwc2.transpose(-1, -2) # world to c2 + tc2w = -torch.matmul(Rc2w, twc2) + Rc2c1 = torch.matmul(Rc2w, Rwc1) + tc2c1 = tc2w + torch.matmul(Rc2w, twc1) + return Rc2c1, tc2c1[..., 0] + + +def relative_pose_w2c(Rc1w, Rc2w, tc1w, tc2w): + """ + compute relative pose from cam 1 to cam 2 given w2c camera matrices + :param Rc1w, Rc2w (N, 3, 3) world to cam1, cam2 rotations + :param tc1w, tc2w (N, 3) world to cam1, cam2 translations + """ + tc1w = tc1w.view(-1, 3, 1) + tc2w = tc2w.view(-1, 3, 1) + # we keep the world to cam transforms + Rwc1 = Rc1w.transpose(-1, -2) # c1 to world + twc1 = -torch.matmul(Rwc1, tc1w) + Rc2c1 = torch.matmul(Rc2w, Rwc1) # c1 to c2 + tc2c1 = tc2w + torch.matmul(Rc2w, twc1) + return Rc2c1, tc2c1[..., 0] + + +def project(xyz_c, center, focal, eps=1e-5): + """ + :param xyz_c (*, 3) 3d point in camera coordinates + :param focal (1) + :param center (*, 2) + return (*, 2) + """ + return focal * xyz_c[..., :2] / (xyz_c[..., 2:3] + eps) + center # (N, *, 2) + + +def convert_yup(xyz): + """ + converts points in x right y down z forward to x right y up z back + :param xyz (*, 3) + """ + x, y, z = torch.split(xyz[..., :3], 1, dim=-1) + return torch.cat([x, -y, -z], dim=-1) + + +def inv_project(uv, z, center, focal, yup=True): + """ + :param uv (*, 2) + :param z (*, 1) + :param center (*, 2) + :param focal (1) + :returns (*, 3) + """ + uv = uv - center + if yup: + return z * torch.cat( + [uv[..., :1] / focal, -uv[..., 1:2] / focal, -torch.ones_like(uv[..., :1])], + dim=-1, + ) # (N, *, 3) + + return z * torch.cat( + [uv / focal, torch.ones_like(uv[..., :1])], + dim=-1, + ) # (N, *, 3) diff --git a/examples/mano_hand_retargeter/geometry/mesh.py b/examples/mano_hand_retargeter/geometry/mesh.py new file mode 100644 index 000000000..be44852b1 --- /dev/null +++ b/examples/mano_hand_retargeter/geometry/mesh.py @@ -0,0 +1,145 @@ +import os +import numpy as np +import trimesh + + +def get_mesh_bb(mesh): + """ + :param mesh - trimesh mesh object + returns bb_min (3), bb_max (3) + """ + bb_min = mesh.vertices.max(axis=0) + bb_max = mesh.vertices.min(axis=0) + return bb_min, bb_max + + +def get_scene_bb(meshes): + """ + :param mesh_seqs - (potentially nested) list of trimesh objects + returns bb_min (3), bb_max (3) + """ + if isinstance(meshes, trimesh.Trimesh): + return get_mesh_bb(meshes) + + bb_mins, bb_maxs = zip(*[get_scene_bb(mesh) for mesh in meshes]) + bb_mins = np.stack(bb_mins, axis=0) + bb_maxs = np.stack(bb_maxs, axis=0) + return bb_mins.min(axis=0), bb_maxs.max(axis=0) + + +def make_batch_mesh(verts, faces, colors): + """ + convenience function to make batch of meshes + meshs have same faces in batch, verts have same color in mesh + :param verts (B, V, 3) + :param faces (F, 3) + :param colors (B, 3) + """ + B, V, _ = verts.shape + return [make_mesh(verts[b], faces, colors[b, None].expand(V, -1)) for b in range(B)] + + +def make_mesh(verts, faces, colors=None, yup=True): + """ + create a trimesh object for the faces and vertices + :param verts (V, 3) tensor + :param faces (F, 3) tensor + :param colors (optional) (V, 3) tensor + :param yup (optional bool) whether or not to save with Y up + """ + verts = verts.detach().cpu().numpy() + faces = faces.detach().cpu().numpy() + if yup: + verts = np.array([1, -1, -1])[None, :] * verts + if colors is None: + colors = np.ones_like(verts) * 0.5 + else: + colors = colors.detach().cpu().numpy() + return trimesh.Trimesh( + vertices=verts, faces=faces, vertex_colors=colors, process=False + ) + + +def save_mesh_scenes(out_dir, scenes): + """ + :param scenes, list of scenes (list of meshes) + """ + assert isinstance(scenes, list) + assert isinstance(scenes[0], list) + B = len(scenes[0]) + if B == 1: + save_meshes_to_obj(out_dir, [x[0] for x in scenes]) + else: + save_scenes_to_glb(out_dir, scenes) + + +def save_scenes_to_glb(out_dir, scenes): + """ + Saves a list of scenes (list of meshes) each to glb files + """ + os.makedirs(out_dir, exist_ok=True) + for t, meshes in enumerate(scenes): + save_meshes_to_glb(f"{out_dir}/scene_{t:03d}.glb", meshes) + + +def save_meshes_to_glb(path, meshes, names=None): + """ + put trimesh meshes in a scene and export to glb + """ + if names is not None: + assert len(meshes) == len(names) + + scene = trimesh.Scene() + for i, mesh in enumerate(meshes): + name = f"mesh_{i:03d}" if names is None else names[i] + scene.add_geometry(mesh, node_name=name) + + with open(path, "wb") as f: + f.write(trimesh.exchange.gltf.export_glb(scene, include_normals=True)) + + +def save_meshes_to_obj(out_dir, meshes, names=None): + if names is not None: + assert len(meshes) == len(names) + + os.makedirs(out_dir, exist_ok=True) + for i, mesh in enumerate(meshes): + name = f"mesh_{i:03d}" if names is None else names[i] + path = os.path.join(out_dir, f"{name}.obj") + with open(path, "w") as f: + mesh.export(f, file_type="obj", include_color=False, include_normals=True) + +def vertices_to_trimesh(vertices, faces, mesh_base_color=(1.0, 1.0, 0.9), + rot_axis=[1,0,0], rot_angle=0, is_right=1): + # material = pyrender.MetallicRoughnessMaterial( + # metallicFactor=0.0, + # alphaMode='OPAQUE', + # baseColorFactor=(*mesh_base_color, 1.0)) + faces_new = np.array([[92, 38, 234], + [234, 38, 239], + [38, 122, 239], + [239, 122, 279], + [122, 118, 279], + [279, 118, 215], + [118, 117, 215], + [215, 117, 214], + [117, 119, 214], + [214, 119, 121], + [119, 120, 121], + [121, 120, 78], + [120, 108, 78], + [78, 108, 79]]) + faces = np.concatenate([faces, faces_new], axis=0) + vertex_colors = np.array([(*mesh_base_color, 1.0)] * vertices.shape[0]) + # print(vertices.shape, self.faces.shape) + mesh = trimesh.Trimesh(vertices.copy(), faces.copy(), vertex_colors=vertex_colors) + # mesh = trimesh.Trimesh(vertices.copy(), self.faces.copy()) + + rot = trimesh.transformations.rotation_matrix( + np.radians(rot_angle), rot_axis) + mesh.apply_transform(rot) + + rot = trimesh.transformations.rotation_matrix( + np.radians(180), [1, 0, 0]) + mesh.apply_transform(rot) + return mesh diff --git a/examples/mano_hand_retargeter/geometry/pcl.py b/examples/mano_hand_retargeter/geometry/pcl.py new file mode 100644 index 000000000..5ff0feaca --- /dev/null +++ b/examples/mano_hand_retargeter/geometry/pcl.py @@ -0,0 +1,60 @@ +import numpy as np +import torch + + +def read_pcl_tensor(path): + pcl_np = read_pcl(path) + return torch.from_numpy(pcl_np) + + +def align_pcl(Y, X, weight=None, fixed_scale=False): + """align similarity transform to align X with Y using umeyama method + X' = s * R * X + t is aligned with Y + :param Y (*, N, 3) first trajectory + :param X (*, N, 3) second trajectory + :param weight (*, N, 1) optional weight of valid correspondences + :returns s (*, 1), R (*, 3, 3), t (*, 3) + """ + *dims, N, _ = Y.shape + N = torch.ones(*dims, 1, 1) * N + + if weight is not None: + Y = Y * weight + X = X * weight + N = weight.sum(dim=-2, keepdim=True) # (*, 1, 1) + + # subtract mean + my = Y.sum(dim=-2) / N[..., 0] # (*, 3) + mx = X.sum(dim=-2) / N[..., 0] + y0 = Y - my[..., None, :] # (*, N, 3) + x0 = X - mx[..., None, :] + + if weight is not None: + y0 = y0 * weight + x0 = x0 * weight + + # correlation + C = torch.matmul(y0.transpose(-1, -2), x0) / N # (*, 3, 3) + U, D, Vh = torch.linalg.svd(C) # (*, 3, 3), (*, 3), (*, 3, 3) + + S = torch.eye(3).reshape(*(1,) * (len(dims)), 3, 3).repeat(*dims, 1, 1) + neg = torch.det(U) * torch.det(Vh.transpose(-1, -2)) < 0 + S[neg, 2, 2] = -1 + + R = torch.matmul(U, torch.matmul(S, Vh)) # (*, 3, 3) + + D = torch.diag_embed(D) # (*, 3, 3) + if fixed_scale: + s = torch.ones(*dims, 1, device=Y.device, dtype=torch.float32) + else: + var = torch.sum(torch.square(x0), dim=(-1, -2), keepdim=True) / N # (*, 1, 1) + s = ( + torch.diagonal(torch.matmul(D, S), dim1=-2, dim2=-1).sum( + dim=-1, keepdim=True + ) + / var[..., 0] + ) # (*, 1) + + t = my - s * torch.matmul(R, mx[..., None])[..., 0] # (*, 3) + + return s, R, t diff --git a/examples/mano_hand_retargeter/geometry/plane.py b/examples/mano_hand_retargeter/geometry/plane.py new file mode 100644 index 000000000..69dad0b41 --- /dev/null +++ b/examples/mano_hand_retargeter/geometry/plane.py @@ -0,0 +1,101 @@ +import torch + + +def fit_plane(points): + """ + :param points (*, N, 3) + returns (*, 3) plane parameters (returns in normal * offset format) + """ + *dims, N, D = points.shape + mean = points.mean(dim=-2, keepdim=True) + # (*, N, D), (*, D), (*, D, D) + U, S, Vh = torch.linalg.svd(points - mean) + normal = Vh[..., -1, :] # (*, D) + offset = torch.einsum("...ij,...j->...i", points, normal) # (*, N) + offset = offset.mean(dim=-1, keepdim=True) + return torch.cat([normal, offset], dim=-1) + + +def get_plane_transform(up, ground_plane=None, xyz_orig=None): + """ + get R, t rigid transform from plane and desired origin + :param up (3,) up vector of coordinate frame + :param ground_plane (4) (a, b, c, d) where a,b,c is the normal + :param xyz_orig (3) desired origin + """ + R = torch.eye(3) + t = torch.zeros(3) + if ground_plane is None: + return R, t + + # compute transform between world up vector and passed in floor + ground_plane = torch.as_tensor(ground_plane) + ground_plane = torch.sign(ground_plane[3]) * ground_plane + + normal = ground_plane[:3] + normal = normal / torch.linalg.norm(normal) + v = torch.linalg.cross(up, normal) + ang_sin = torch.linalg.norm(v) + ang_cos = up.dot(normal) + skew_v = torch.as_tensor([[0.0, -v[2], v[1]], [v[2], 0.0, -v[0]], [-v[1], v[0], 0.0]]) + R = torch.eye(3) + skew_v + (skew_v @ skew_v) * ((1.0 - ang_cos) / (ang_sin**2)) + + # project origin onto plane + if xyz_orig is None: + xyz_orig = torch.zeros(3) + t, _ = compute_plane_intersection(xyz_orig, -normal, ground_plane) + + return R, t + + +def parse_floor_plane(floor_plane): + """ + Takes floor plane in the optimization form (Bx3 with a,b,c * d) and parses into + (a,b,c,d) from with (a,b,c) normal facing "up in the camera frame and d the offset. + """ + floor_offset = torch.norm(floor_plane, dim=-1, keepdim=True) + floor_normal = floor_plane / floor_offset + + # in camera system -y is up, so floor plane normal y component should never be positive + # (assuming the camera is not sideways or upside down) + neg_mask = floor_normal[..., 1:2] > 0.0 + floor_normal = torch.where( + neg_mask.expand_as(floor_normal), -floor_normal, floor_normal + ) + floor_offset = torch.where(neg_mask, -floor_offset, floor_offset) + floor_plane_4d = torch.cat([floor_normal, floor_offset], dim=-1) + + return floor_plane_4d + + +def compute_plane_intersection(point, direction, plane): + """ + Given a ray defined by a point in space and a direction, + compute the intersection point with the given plane. + Detect intersection in either direction or -direction. + Note, ray may not actually intersect with the plane. + + Returns the intersection point and s where + point + s * direction = intersection_point. if s < 0 it means + -direction intersects. + + - point : B x 3 + - direction : B x 3 + - plane : B x 4 (a, b, c, d) where (a, b, c) is the normal and (d) the offset. + """ + dims = point.shape[:-1] + plane_normal = plane[..., :3] + plane_off = plane[..., 3] + s = (plane_off - bdot(plane_normal, point)) / (bdot(plane_normal, direction) + 1e-4) + itsct_pt = point + s.reshape((-1, 1)) * direction + return itsct_pt, s + + +def bdot(A1, A2, keepdim=False): + """ + Batched dot product. + - A1 : B x D + - A2 : B x D. + Returns B. + """ + return (A1 * A2).sum(dim=-1, keepdim=keepdim) diff --git a/examples/mano_hand_retargeter/geometry/rotation.py b/examples/mano_hand_retargeter/geometry/rotation.py new file mode 100644 index 000000000..a7bf9dd99 --- /dev/null +++ b/examples/mano_hand_retargeter/geometry/rotation.py @@ -0,0 +1,293 @@ +import torch +import numpy as np +from torch.nn import functional as F + + +def batch_rodrigues(rot_vecs, epsilon=1e-8, dtype=torch.float32): + """ + Taken from https://github.com/mkocabas/VIBE/blob/master/lib/utils/geometry.py + Calculates the rotation matrices for a batch of rotation vectors + - param rot_vecs: torch.tensor (N, 3) array of N axis-angle vectors + - returns R: torch.tensor (N, 3, 3) rotation matrices + """ + batch_size = rot_vecs.shape[0] + device = rot_vecs.device + + angle = torch.norm(rot_vecs + 1e-8, dim=1, keepdim=True) + rot_dir = rot_vecs / angle + + cos = torch.unsqueeze(torch.cos(angle), dim=1) + sin = torch.unsqueeze(torch.sin(angle), dim=1) + + # Bx1 arrays + rx, ry, rz = torch.split(rot_dir, 1, dim=1) + K = torch.zeros((batch_size, 3, 3), dtype=dtype, device=device) + + zeros = torch.zeros((batch_size, 1), dtype=dtype, device=device) + K = torch.cat([zeros, -rz, ry, rz, zeros, -rx, -ry, rx, zeros], dim=1).view( + (batch_size, 3, 3) + ) + + ident = torch.eye(3, dtype=dtype, device=device).unsqueeze(dim=0) + rot_mat = ident + sin * K + (1 - cos) * torch.bmm(K, K) + return rot_mat + + +def quaternion_mul(q0, q1): + """ + EXPECTS WXYZ + :param q0 (*, 4) + :param q1 (*, 4) + """ + r0, r1 = q0[..., :1], q1[..., :1] + v0, v1 = q0[..., 1:], q1[..., 1:] + r = r0 * r1 - (v0 * v1).sum(dim=-1, keepdim=True) + v = r0 * v1 + r1 * v0 + torch.linalg.cross(v0, v1) + return torch.cat([r, v], dim=-1) + + +def quaternion_inverse(q, eps=1e-8): + """ + EXPECTS WXYZ + :param q (*, 4) + """ + conj = torch.cat([q[..., :1], -q[..., 1:]], dim=-1) + mag = torch.square(q).sum(dim=-1, keepdim=True) + eps + return conj / mag + + +def quaternion_slerp(t, q0, q1, eps=1e-8): + """ + :param t (*, 1) must be between 0 and 1 + :param q0 (*, 4) + :param q1 (*, 4) + """ + dims = q0.shape[:-1] + t = t.view(*dims, 1) + + q0 = F.normalize(q0, p=2, dim=-1) + q1 = F.normalize(q1, p=2, dim=-1) + dot = (q0 * q1).sum(dim=-1, keepdim=True) + + # make sure we give the shortest rotation path (< 180d) + neg = dot < 0 + q1 = torch.where(neg, -q1, q1) + dot = torch.where(neg, -dot, dot) + angle = torch.acos(dot) + + # if angle is too small, just do linear interpolation + collin = torch.abs(dot) > 1 - eps + fac = 1 / torch.sin(angle) + w0 = torch.where(collin, 1 - t, torch.sin((1 - t) * angle) * fac) + w1 = torch.where(collin, t, torch.sin(t * angle) * fac) + slerp = q0 * w0 + q1 * w1 + return slerp + + +def rotation_matrix_to_angle_axis(rotation_matrix): + """ + This function is borrowed from https://github.com/kornia/kornia + + Convert rotation matrix to Rodrigues vector + """ + quaternion = rotation_matrix_to_quaternion(rotation_matrix) + aa = quaternion_to_angle_axis(quaternion) + aa[torch.isnan(aa)] = 0.0 + return aa + + +def quaternion_to_angle_axis(quaternion): + """ + This function is borrowed from https://github.com/kornia/kornia + + Convert quaternion vector to angle axis of rotation. + Adapted from ceres C++ library: ceres-solver/include/ceres/rotation.h + + :param quaternion (*, 4) expects WXYZ + :returns angle_axis (*, 3) + """ + # unpack input and compute conversion + q1 = quaternion[..., 1] + q2 = quaternion[..., 2] + q3 = quaternion[..., 3] + sin_squared_theta = q1 * q1 + q2 * q2 + q3 * q3 + + sin_theta = torch.sqrt(sin_squared_theta) + cos_theta = quaternion[..., 0] + two_theta = 2.0 * torch.where( + cos_theta < 0.0, + torch.atan2(-sin_theta, -cos_theta), + torch.atan2(sin_theta, cos_theta), + ) + + k_pos = two_theta / sin_theta + k_neg = 2.0 * torch.ones_like(sin_theta) + k = torch.where(sin_squared_theta > 0.0, k_pos, k_neg) + + angle_axis = torch.zeros_like(quaternion)[..., :3] + angle_axis[..., 0] += q1 * k + angle_axis[..., 1] += q2 * k + angle_axis[..., 2] += q3 * k + return angle_axis + + +def angle_axis_to_rotation_matrix(angle_axis): + """ + :param angle_axis (*, 3) + return (*, 3, 3) + """ + quat = angle_axis_to_quaternion(angle_axis) + return quaternion_to_rotation_matrix(quat) + + +def quaternion_to_rotation_matrix(quaternion): + """ + Convert a quaternion to a rotation matrix. + Taken from https://github.com/kornia/kornia, based on + https://github.com/matthew-brett/transforms3d/blob/8965c48401d9e8e66b6a8c37c65f2fc200a076fa/transforms3d/quaternions.py#L101 + https://github.com/tensorflow/graphics/blob/master/tensorflow_graphics/geometry/transformation/rotation_matrix_3d.py#L247 + :param quaternion (N, 4) expects WXYZ order + returns rotation matrix (N, 3, 3) + """ + # normalize the input quaternion + quaternion_norm = F.normalize(quaternion, p=2, dim=-1, eps=1e-12) + *dims, _ = quaternion_norm.shape + + # unpack the normalized quaternion components + w, x, y, z = torch.chunk(quaternion_norm, chunks=4, dim=-1) + + # compute the actual conversion + tx = 2.0 * x + ty = 2.0 * y + tz = 2.0 * z + twx = tx * w + twy = ty * w + twz = tz * w + txx = tx * x + txy = ty * x + txz = tz * x + tyy = ty * y + tyz = tz * y + tzz = tz * z + one = torch.tensor(1.0) + + matrix = torch.stack( + ( + one - (tyy + tzz), + txy - twz, + txz + twy, + txy + twz, + one - (txx + tzz), + tyz - twx, + txz - twy, + tyz + twx, + one - (txx + tyy), + ), + dim=-1, + ).view(*dims, 3, 3) + return matrix + + +def angle_axis_to_quaternion(angle_axis): + """ + This function is borrowed from https://github.com/kornia/kornia + Convert angle axis to quaternion in WXYZ order + :param angle_axis (*, 3) + :returns quaternion (*, 4) WXYZ order + """ + theta_sq = torch.sum(angle_axis**2, dim=-1, keepdim=True) # (*, 1) + # need to handle the zero rotation case + valid = theta_sq > 0 + theta = torch.sqrt(theta_sq) + half_theta = 0.5 * theta + ones = torch.ones_like(half_theta) + # fill zero with the limit of sin ax / x -> a + k = torch.where(valid, torch.sin(half_theta) / theta, 0.5 * ones) + w = torch.where(valid, torch.cos(half_theta), ones) + quat = torch.cat([w, k * angle_axis], dim=-1) + return quat + + +def rotation_matrix_to_quaternion(rotation_matrix, eps=1e-6): + """ + This function is borrowed from https://github.com/kornia/kornia + Convert rotation matrix to 4d quaternion vector + This algorithm is based on algorithm described in + https://github.com/KieranWynn/pyquaternion/blob/master/pyquaternion/quaternion.py#L201 + + :param rotation_matrix (N, 3, 3) + """ + *dims, m, n = rotation_matrix.shape + rmat_t = torch.transpose(rotation_matrix.reshape(-1, m, n), -1, -2) + + mask_d2 = rmat_t[:, 2, 2] < eps + + mask_d0_d1 = rmat_t[:, 0, 0] > rmat_t[:, 1, 1] + mask_d0_nd1 = rmat_t[:, 0, 0] < -rmat_t[:, 1, 1] + + t0 = 1 + rmat_t[:, 0, 0] - rmat_t[:, 1, 1] - rmat_t[:, 2, 2] + q0 = torch.stack( + [ + rmat_t[:, 1, 2] - rmat_t[:, 2, 1], + t0, + rmat_t[:, 0, 1] + rmat_t[:, 1, 0], + rmat_t[:, 2, 0] + rmat_t[:, 0, 2], + ], + -1, + ) + t0_rep = t0.repeat(4, 1).t() + + t1 = 1 - rmat_t[:, 0, 0] + rmat_t[:, 1, 1] - rmat_t[:, 2, 2] + q1 = torch.stack( + [ + rmat_t[:, 2, 0] - rmat_t[:, 0, 2], + rmat_t[:, 0, 1] + rmat_t[:, 1, 0], + t1, + rmat_t[:, 1, 2] + rmat_t[:, 2, 1], + ], + -1, + ) + t1_rep = t1.repeat(4, 1).t() + + t2 = 1 - rmat_t[:, 0, 0] - rmat_t[:, 1, 1] + rmat_t[:, 2, 2] + q2 = torch.stack( + [ + rmat_t[:, 0, 1] - rmat_t[:, 1, 0], + rmat_t[:, 2, 0] + rmat_t[:, 0, 2], + rmat_t[:, 1, 2] + rmat_t[:, 2, 1], + t2, + ], + -1, + ) + t2_rep = t2.repeat(4, 1).t() + + t3 = 1 + rmat_t[:, 0, 0] + rmat_t[:, 1, 1] + rmat_t[:, 2, 2] + q3 = torch.stack( + [ + t3, + rmat_t[:, 1, 2] - rmat_t[:, 2, 1], + rmat_t[:, 2, 0] - rmat_t[:, 0, 2], + rmat_t[:, 0, 1] - rmat_t[:, 1, 0], + ], + -1, + ) + t3_rep = t3.repeat(4, 1).t() + + mask_c0 = mask_d2 * mask_d0_d1 + mask_c1 = mask_d2 * ~mask_d0_d1 + mask_c2 = ~mask_d2 * mask_d0_nd1 + mask_c3 = ~mask_d2 * ~mask_d0_nd1 + mask_c0 = mask_c0.view(-1, 1).type_as(q0) + mask_c1 = mask_c1.view(-1, 1).type_as(q1) + mask_c2 = mask_c2.view(-1, 1).type_as(q2) + mask_c3 = mask_c3.view(-1, 1).type_as(q3) + + q = q0 * mask_c0 + q1 * mask_c1 + q2 * mask_c2 + q3 * mask_c3 + q /= torch.sqrt( + t0_rep * mask_c0 + + t1_rep * mask_c1 + + t2_rep * mask_c2 # noqa + + t3_rep * mask_c3 + ) # noqa + q *= 0.5 + return q.reshape(*dims, 4) diff --git a/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_000300_world_results.npz b/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_000300_world_results.npz new file mode 100644 index 000000000..479978555 Binary files /dev/null and b/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_000300_world_results.npz differ diff --git a/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_smooth_fit_final_000300_world_poses_plot_inputs.npz b/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_smooth_fit_final_000300_world_poses_plot_inputs.npz new file mode 100644 index 000000000..c3f3493b2 Binary files /dev/null and b/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_smooth_fit_final_000300_world_poses_plot_inputs.npz differ diff --git a/examples/mano_hand_retargeter/hand_reconstruction_results/output_video_000300_world_results.npz b/examples/mano_hand_retargeter/hand_reconstruction_results/output_video_000300_world_results.npz new file mode 100644 index 000000000..a592bdc6a Binary files /dev/null and b/examples/mano_hand_retargeter/hand_reconstruction_results/output_video_000300_world_results.npz differ diff --git a/examples/mano_hand_retargeter/optim/__init__.py b/examples/mano_hand_retargeter/optim/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/examples/mano_hand_retargeter/optim/base_scene.py b/examples/mano_hand_retargeter/optim/base_scene.py new file mode 100644 index 000000000..de7af4d59 --- /dev/null +++ b/examples/mano_hand_retargeter/optim/base_scene.py @@ -0,0 +1,309 @@ +import os +import numpy as np + +import torch +import torch.nn as nn +import torch.nn.functional as F + +from body_model import MANO_JOINTS, run_mano +from geometry.rotation import ( + rotation_matrix_to_angle_axis, + angle_axis_to_rotation_matrix, +) +from util.logger import Logger +from util.tensor import move_to, detach_all + +# from .helpers import estimate_initial_trans +from .params import CameraParams + +J_HAND = len(MANO_JOINTS) - 1 # no root + + +class BaseSceneModel(nn.Module): + """ + Scene model of sequences of human poses. + All poses are in their own INDEPENDENT camera reference frames. + A basic class mostly for testing purposes. + + Parameters: + batch_size: number of sequences to optimize + seq_len: length of the sequences + body_model: MANO hand model + pose_prior: VPoser model + fit_gender: gender of model (optional) + """ + + def __init__( + self, + batch_size, + seq_len, + body_model, + pose_prior, + # fit_gender="neutral", + use_init=False, + opt_cams=False, + opt_scale=True, + **kwargs, + ): + super().__init__() + B, T = batch_size, seq_len + self.batch_size = batch_size + self.seq_len = seq_len + + self.body_model = body_model + self.hand_mean = self.body_model.hand_mean + + self.pose_prior = pose_prior + if self.pose_prior is not None: + self.latent_pose_dim = self.pose_prior.latentD + + self.num_betas = body_model.num_betas + + self.use_init = use_init + print("USE INIT", use_init) + self.opt_scale = opt_scale + self.opt_cams = opt_cams + print("OPT SCALE", self.opt_scale) + print("OPT CAMERAS", self.opt_cams) + print("Batch size: ", batch_size) + self.params = CameraParams(batch_size) + + def initialize(self, obs_data, cam_data): + Logger.log("Initializing scene model with observed data") + + # initialize cameras + self.params.set_cameras( + cam_data, + opt_scale=self.opt_scale, + opt_cams=self.opt_cams, + opt_focal=self.opt_cams, + ) + + # initialize body params + B, T = self.batch_size, self.seq_len + device = next(iter(cam_data.values())).device + init_betas = torch.mean(obs_data["init_body_shape"], dim=1) # torch.zeros(B, self.num_betas, device=device) + + if self.use_init and "init_body_pose" in obs_data: + init_pose = obs_data["init_body_pose"][:, :, :J_HAND, :] + init_pose_latent = self.pose2latent(init_pose) + else: + raise ValueError + # init_pose = torch.zeros(B, T, J_HAND, 3, device=device) + # init_pose_latent = torch.zeros(B, T, self.latent_pose_dim, device=device) + + # transform into world frame (T, 3, 3), (T, 3) + R_w2c, t_w2c = cam_data["cam_R"], cam_data["cam_t"] + R_c2w = R_w2c.transpose(-1, -2) + t_c2w = -torch.einsum("tij,tj->ti", R_c2w, t_w2c) + + if self.use_init and "init_root_orient" in obs_data: + init_rot = obs_data["init_root_orient"] # (B, T, 3) + init_rot_mat = angle_axis_to_rotation_matrix(init_rot) + print(R_c2w.shape, init_rot_mat.shape) + init_rot_mat = torch.einsum("tij,btjk->btik", R_c2w, init_rot_mat) + init_rot = rotation_matrix_to_angle_axis(init_rot_mat) + else: + raise ValueError + # init_rot = ( + # torch.tensor([np.pi, 0, 0], dtype=torch.float32) + # .reshape(1, 1, 3) + # .repeat(B, T, 1) + # ) + + init_trans = torch.zeros(B, T, 3, device=device) + if self.use_init and "init_trans" in obs_data: + # must offset by the root location before applying camera to world transform + is_right = obs_data["is_right"] + pred_data = self.pred_mano(init_trans, init_rot, init_pose, is_right, init_betas) + root_loc = pred_data["joints3d"][..., 0, :] # (B, T, 3) + init_trans = obs_data["init_trans"] # (B, T, 3) + init_trans = ( + torch.einsum("tij,btj->bti", R_c2w, init_trans + root_loc) + + t_c2w[None] + - root_loc + ) + else: + # initialize trans with reprojected joints + # pred_data = self.pred_mano(init_trans, init_rot, init_pose, init_betas) + # init_trans = estimate_initial_trans( + # init_pose, + # pred_data["joints3d_op"], + # obs_data["joints2d"], + # obs_data["intrins"][:, 0], + # ) + raise ValueError + + self.params.set_param("init_body_pose", init_pose) + self.params.set_param("latent_pose", init_pose_latent) + self.params.set_param("betas", init_betas) + self.params.set_param("trans", init_trans) + self.params.set_param("root_orient", init_rot) + self.params.set_param("is_right", is_right, requires_grad=False) + + # Store initial latent pose in obs_data for pose prior loss + obs_data["init_latent_pose"] = init_pose_latent.detach() + # print(init_pose.shape, init_pose_latent.shape, init_betas.shape, init_trans.shape, init_rot.shape, is_right.shape) + # raise ValueError + + def get_optim_result(self, **kwargs): + """ + Collect predicted outputs (latent_pose, trans, root_orient, betas, body pose) into dict + """ + print('running get_optim_result in base_scene.py...') + res = self.params.get_dict() + if "latent_pose" in res: + res["pose_body"] = self.latent2pose(self.params.latent_pose).detach() + + # add the cameras + res["cam_R"], res["cam_t"], _, _ = self.params.get_cameras() + res["intrins"] = self.params.intrins + return {"world": res} + + def latent2pose(self, latent_pose): + """ + Converts VPoser latent embedding to aa body pose. + latent_pose : B x T x D + body_pose : B x T x J*3 + """ + if self.pose_prior is not None: + B, T, _ = latent_pose.size() + d_latent = self.pose_prior.latentD + latent_pose = latent_pose.reshape((-1, d_latent)) + body_pose = self.pose_prior.decode(latent_pose, output_type="matrot") + body_pose = rotation_matrix_to_angle_axis( + body_pose.reshape((B * T * J_HAND, 3, 3)) + ).reshape((B, T, J_HAND * 3)) + return body_pose + self.hand_mean + else: + return latent_pose + + def pose2latent(self, body_pose): + """ + Encodes aa body pose to VPoser latent space. + body_pose : B x T x J*3 + latent_pose : B x T x D + """ + if self.pose_prior is not None: + B, T = body_pose.shape[:2] + body_pose = body_pose.reshape((-1, J_HAND * 3)) + latent_pose_distrib = self.pose_prior.encode(body_pose - self.hand_mean) + d_latent = self.pose_prior.latentD + latent_pose = latent_pose_distrib.mean.reshape((B, T, d_latent)) + return latent_pose + else: + return body_pose + + def pred_mano(self, trans, root_orient, body_pose, is_right, betas): + """ + Forward pass of the MANO model and populates pred_data accordingly with + joints3d, verts3d, points3d. + + trans : B x T x 3 + root_orient : B x T x 3 + body_pose : B x T x J*3 + betas : B x D + """ + + mano_out = run_mano(self.body_model, trans, root_orient, body_pose, is_right, betas=betas) + joints3d, points3d = mano_out["joints"], mano_out["vertices"] + + # select desired joints and vertices + # joints3d_body = joints3d + # joints3d_op = joints3d.clone() + # joints3d_op = joints3d[:, :, self.smpl2op_map, :] + # # hacky way to get hip joints that align with ViTPose keypoints + # # this could be moved elsewhere in the future (and done properly) + # joints3d_op[:, :, [9, 12]] = ( + # joints3d_op[:, :, [9, 12]] + # + 0.25 * (joints3d_op[:, :, [9, 12]] - joints3d_op[:, :, [12, 9]]) + # + 0.5 + # * ( + # joints3d_op[:, :, [8]] + # - 0.5 * (joints3d_op[:, :, [9, 12]] + joints3d_op[:, :, [12, 9]]) + # ) + # ) + verts3d = points3d #[:, :, KEYPT_VERTS, :] + + return { + "is_right": is_right, + "points3d": points3d, # all vertices + "verts3d": verts3d, # keypoint vertices + "joints3d": joints3d, # smpl joints + "joints3d_op": joints3d, # OP joints + "l_faces": mano_out["l_faces"], # index array of faces + "r_faces": mano_out["r_faces"], # index array of faces + "body_pose": mano_out["body_pose"] + } + + def pred_params_mano(self, is_right, reproj=True): + body_pose = self.latent2pose(self.params.latent_pose) + pred_data = self.pred_mano( + self.params.trans, self.params.root_orient, body_pose, is_right, self.params.betas + ) + # from geometry.mesh import save_mesh_scenes, vertices_to_trimesh + # LIGHT_BLUE=(0.65098039, 0.74117647, 0.85882353) + # print(pred_data.keys()) + # verts, l_faces, r_faces, is_right = pred_data['verts3d'], pred_data['l_faces'], pred_data['l_faces'], pred_data['is_right'] + # T = len(verts[0]) + # print(f"{T} mesh frames") + # print(verts.shape, l_faces.shape, is_right.shape, is_right) + # times = list(range(0, T, 1)) + # os.makedirs('./mesh/') + # for t in times: + + # tmesh = vertices_to_trimesh(verts[0][t].detach().cpu().numpy(), l_faces.detach().cpu().numpy(), LIGHT_BLUE, is_right=0) + # tmesh.export(os.path.join('./mesh/', f'{str(t).zfill(6)}_0.obj')) + + # tmesh = vertices_to_trimesh(verts[1][t].detach().cpu().numpy(), r_faces.detach().cpu().numpy(), LIGHT_BLUE, is_right=1) + # tmesh.export(os.path.join('./mesh/', f'{str(t).zfill(6)}_1.obj')) + # print(os.path.join('./mesh/', f'{str(t).zfill(6)}_1.obj')) + + ################################# + # print(self.params.root_orient.shape, self.params.init_body_pose.shape, body_pose.shape, self.params.trans.shape, self.params.betas.shape) + # hand_model = mano.load( + # model_path= '/vol/bitbucket/zy3023/code/hand/slam-hand/_DATA/data/mano',# '/vol/bitbucket/zy3023/code/hand/slam-hand/VPoser/pretrained/Vposer_right_mirrored', + # is_right=True, + # num_pca_comps=45, + # batch_size=1, + # flat_hand_mean=False, + # ).cuda() + + # output = hand_model( + # betas=self.params.betas[0][None].repeat(180,1), + # global_orient=self.params.root_orient[0], + # hand_pose=self.params.init_body_pose[0].reshape(180, -1) - self.hand_mean, + # transl=self.params.trans[0], + # return_verts=True, + # return_tips=False + # ) + # np.save('x.npy', self.params.init_body_pose[0].reshape(180, -1).detach().cpu().numpy()) + + # out_path = './out' + # h_meshes = hand_model.hand_meshes(output) + # if not os.path.exists(out_path): + # os.mkdir(out_path + '_after') + # os.mkdir(out_path) + + # for i in range(180): + # #print(f"export to {out_path}/{str(i).zfill(6)}.ply") + # h_meshes[i].export(f"{out_path}/{str(i).zfill(6)}.ply") + + # # print(body_pose.shape, body_pose[0]) + # print(self.hand_mean) + # output = hand_model( + # betas=self.params.betas[0][None].repeat(180,1), + # global_orient=self.params.root_orient[0], + # hand_pose=body_pose[0].reshape(180, -1) - self.hand_mean, + # transl=self.params.trans[0], + # return_verts=True, + # return_tips=False + # ) + + # h_meshes = hand_model.hand_meshes(output) + # for i in range(180): + # #print(f"export to {out_path}_after/{str(i).zfill(6)}.ply") + # h_meshes[i].export(f"{out_path}_after/{str(i).zfill(6)}.ply") + # exit() + + return pred_data diff --git a/examples/mano_hand_retargeter/optim/bio_loss.py b/examples/mano_hand_retargeter/optim/bio_loss.py new file mode 100644 index 000000000..461a57e61 --- /dev/null +++ b/examples/mano_hand_retargeter/optim/bio_loss.py @@ -0,0 +1,399 @@ +import os + +import matplotlib.pyplot as plt +import numpy as np +import torch +import torch.nn.functional as torch_f + +SNAP_PARENT = [ + 0, # 0's parent + 0, # 1's parent + 1, + 2, + 3, + 0, # 5's parent + 5, + 6, + 7, + 0, # 9's parent + 9, + 10, + 11, + 0, # 13's parent + 13, + 14, + 15, + 0, # 17's parent + 17, + 18, + 19, +] + +JOINT_ROOT_IDX = 9 + +REF_BONE_LINK = (0, 9) # mid mcp + +# bone indexes in 20 bones setting +ID_ROOT_bone = np.array([0, 4, 8, 12, 16]) # ROOT_bone from wrist to MCP +ID_PIP_bone = np.array([1, 5, 9, 13, 17]) # PIP_bone from MCP to PIP +ID_DIP_bone = np.array([2, 6, 10, 14, 18]) # DIP_bone from PIP to DIP +ID_TIP_bone = np.array([3, 7, 11, 15, 19]) # TIP_bone from DIP to TIP + +def plot_hull(theta, hull): + del_rdp_hull = hull.detach().cpu().numpy() + theta = theta.detach().cpu().numpy() + + fig = plt.figure() + figManager = plt.get_current_fig_manager() + figManager.window.showMaximized() + + ax = fig.add_subplot(111) + ax.scatter(theta[:, 0], theta[:, 1], s=10, c='r') + ax.set_xlabel("flexion") + ax.set_ylabel("abduction") + + plt.plot(del_rdp_hull[:, 0], + del_rdp_hull[:, 1], + '-yo', linewidth=2) + + plt.xticks(np.arange(-3, 4, 1)) + plt.yticks(np.arange(-2, 2, 0.5)) + plt.show() + + +def two_norm(a): + ''' + + Args: + a: B*M*2 or B*M*3 + + Returns: + + ''' + return torch.norm(a, dim=-1) + + +def one_norm(a): + ''' + + Args: + a: B*M*2 or B*M*3 + + Returns: + + ''' + return torch.norm(a, dim=-1, p=1) + + +def calculate_joint_angle_loss(thetas, hulls): + ''' + + Args: + Theta: B*15*2 + hulls: list + + Returns: + + ''' + + loss = torch.Tensor([0]).cuda() + for i in range(15): + # print("i=",i) + hull = hulls[i] # (M*2) + theta = thetas[:, i] # (B*2) + hull = torch.cat((hull, hull[0].unsqueeze(0)), dim=0) + + v = (hull[1:] - hull[:-1]).unsqueeze(0) # (M-1)*2 + w = - hull[:-1].unsqueeze(0) + theta.unsqueeze(1).repeat(1, hull[:-1].shape[0], 1) # B*(M-1)*2 + + cross_product_2d = w[:, :, 0] * v[:, :, 1] - w[:, :, 1] * v[:, :, 0] + tmp = torch.sum(cross_product_2d < 1e-6, dim=-1) + + is_outside = (tmp != (hull.shape[0] - 1)) + if not torch.sum(is_outside): + sub_loss = torch.Tensor([0]).cuda() + else: + outside_theta = theta[is_outside] + outside_theta = outside_theta.unsqueeze(1).repeat(1, hull[:-1].shape[0], 1) + w_outside = - hull[:-1].unsqueeze(0) + outside_theta # B*(M-1)*2 + t = torch.clamp(inner_product(w_outside, v) / (two_norm(v) ** 2), min=0, max=1).unsqueeze(2) + p = hull[:-1] + t * v + + D = one_norm(torch.cos(outside_theta) - torch.cos(p)) + one_norm(torch.sin(outside_theta) - torch.sin(p)) + sub_loss = torch.sum(torch.min(D, dim=-1)[0]) + + vis = 0 + if vis: + print(theta) + plot_hull(theta, hull) + + loss += sub_loss + + loss /= (15 * thetas.shape[0]) + + return loss + + +def angle_between(v1, v2): + epsilon = 1e-7 + cos = torch_f.cosine_similarity(v1, v2, dim=-1).clamp(-1 + epsilon, 1 - epsilon) # (B) + theta = torch.acos(cos) # (B) + return theta + + +def normalize(vec): + return torch_f.normalize(vec, p=2, dim=-1) + + +def inner_product(x1, x2): + return torch.sum(x1 * x2, dim=-1) + + +def cross_product(x1, x2): + return torch.cross(x1, x2, dim=-1) + + +def axangle2mat_torch(axis, angle, is_normalized=False): + """ Rotation matrix for rotation angle `angle` around `axis` + Parameters + ---------- + axis : [B,M, 3] element sequence + vector specifying axis for rotation. + angle :[B,M, ] scalar + angle of rotation in radians. + is_normalized : bool, optional + True if `axis` is already normalized (has norm of 1). Default False. + Returns + ------- + mat : array shape (B, M,3,3) + rotation matrix for specified rotation + Notes + ----- + From: http://en.wikipedia.org/wiki/Rotation_matrix#Axis_and_angle + """ + B = axis.shape[0] + M = axis.shape[1] + + if not is_normalized: + norm_axis = axis.norm(p=2, dim=-1, keepdim=True) + normed_axis = axis / norm_axis + else: + normed_axis = axis + x, y, z = normed_axis[:, :, 0], normed_axis[:, :, 1], normed_axis[:, :, 2] + c = torch.cos(angle) + s = torch.sin(angle) + C = 1 - c + + xs = x * s; + ys = y * s; + zs = z * s # noqa + xC = x * C; + yC = y * C; + zC = z * C # noqa + xyC = x * yC; + yzC = y * zC; + zxC = z * xC # noqa + + TMP = torch.stack([x * xC + c, xyC - zs, zxC + ys, xyC + zs, y * yC + c, yzC - xs, zxC - ys, yzC + xs, z * zC + c], + dim=-1) + return TMP.reshape(B, M, 3, 3) + + +def interval_loss(value, min, max): + ''' + calculate interval loss + Args: + value: B*M + max: M + min: M + + Returns: + + ''' + + batch_3d_size = value.shape[0] + + min = min.repeat(value.shape[0], 1) + max = max.repeat(value.shape[0], 1) + + loss1 = torch.max(min - value, torch.Tensor([0]).cuda()) + loss2 = torch.max(value - max, torch.Tensor([0]).cuda()) + + loss = (loss1 + loss2).sum() + + loss /= (batch_3d_size * value.shape[1]) + + return loss + + + + + +class BMCLoss: + def __init__( + self, + lambda_bl=0., + lambda_rb=0., + lambda_a=0., + ): + self.lambda_bl = lambda_bl + self.lambda_rb = lambda_rb + self.lambda_a = lambda_a + + self.lp = os.path.join(os.path.dirname(__file__), "../../_DATA/BMC") + # resolved_path = os.path.abspath(self.lp) + # print(f"Resolved path: {resolved_path}") + # print(f"Current working directory: {os.getcwd()}") + # exit() + + self.bone_len_max = np.load(os.path.join(self.lp, "bone_len_max.npy")) + self.bone_len_min = np.load(os.path.join(self.lp, "bone_len_min.npy")) + self.rb_curvatures_max = np.load(os.path.join(self.lp, "curvatures_max.npy")) + self.rb_curvatures_min = np.load(os.path.join(self.lp, "curvatures_min.npy")) + self.rb_PHI_max = np.load(os.path.join(self.lp, "PHI_max.npy")) + self.rb_PHI_min = np.load(os.path.join(self.lp, "PHI_min.npy")) + + self.joint_angle_limit = np.load(os.path.join(self.lp, "CONVEX_HULLS.npy"), + allow_pickle=True) + LEN_joint_angle_limit = len(self.joint_angle_limit) + + self.bl_max = torch.from_numpy(self.bone_len_max).float().cuda() + self.bl_min = torch.from_numpy(self.bone_len_min).float().cuda() + self.rb_curvatures_max = torch.from_numpy(self.rb_curvatures_max).float().cuda() + self.rb_curvatures_min = torch.from_numpy(self.rb_curvatures_min).float().cuda() + self.rb_PHI_max = torch.from_numpy(self.rb_PHI_max).float().cuda() + self.rb_PHI_min = torch.from_numpy(self.rb_PHI_min).float().cuda() + + self.joint_angle_limit = [torch.from_numpy(self.joint_angle_limit[i]).float().cuda() for i in + range(LEN_joint_angle_limit)] + + def compute_loss(self, ori_joints, valid_mask): + ''' + + Args: + joints: B*21*3 + + Returns: + + ''' + + joints = ori_joints[valid_mask] + print(joints.shape, ori_joints.shape) + batch_size = joints.shape[0] + final_loss = torch.Tensor([0]).cuda() + + BMC_losses = {"bmc_bl": torch.Tensor([0]).cuda(), "bmc_rb": torch.Tensor([0]).cuda(), "bmc_a": torch.Tensor([0]).cuda()} + + if (self.lambda_bl < 1e-6) and (self.lambda_rb < 1e-6) and (self.lambda_a < 1e-6): + return final_loss, BMC_losses + + ALL_bones = [ + ( + joints[:, i, :] - + joints[:, SNAP_PARENT[i], :] + ) for i in range(21) + ] + ALL_bones = torch.stack(ALL_bones[1:], dim=1) # (B,20,3) + ROOT_bones = ALL_bones[:, ID_ROOT_bone] # (B,5,3) + PIP_bones = ALL_bones[:, ID_PIP_bone] + DIP_bones = ALL_bones[:, ID_DIP_bone] + TIP_bones = ALL_bones[:, ID_TIP_bone] + + ALL_Z_axis = normalize(ALL_bones) + PIP_Z_axis = ALL_Z_axis[:, ID_ROOT_bone] + DIP_Z_axis = ALL_Z_axis[:, ID_PIP_bone] + TIP_Z_axis = ALL_Z_axis[:, ID_DIP_bone] + + normals = normalize(cross_product(ROOT_bones[:, 1:], ROOT_bones[:, :-1])) + + # compute loss of bone length + bl_loss = torch.Tensor([0]).cuda() + if self.lambda_bl: + bls = two_norm(ALL_bones) # (B,20,1) + bl_loss = interval_loss(value=bls, min=self.bl_min, max=self.bl_max) + final_loss += self.lambda_bl * bl_loss + BMC_losses["bmc_bl"] = bl_loss + + # compute loss of Root bones + rb_loss = torch.Tensor([0]).cuda() + if self.lambda_rb: + edge_normals = torch.zeros_like(ROOT_bones).cuda() # (B,5,3) + edge_normals[:, [0, 4]] = normals[:, [0, 3]] + edge_normals[:, 1:4] = normalize(normals[:, 1:4] + normals[:, :3]) + + curvatures = inner_product(edge_normals[:, 1:] - edge_normals[:, :4], + ROOT_bones[:, 1:] - ROOT_bones[:, :4]) / \ + (two_norm(ROOT_bones[:, 1:] - ROOT_bones[:, :4]) ** 2) + PHI = angle_between(ROOT_bones[:, :4], ROOT_bones[:, 1:]) # (B) + + rb_loss = interval_loss(value=curvatures, min=self.rb_curvatures_min, max=self.rb_curvatures_max) + \ + interval_loss(value=PHI, min=self.rb_PHI_min, max=self.rb_PHI_max) + final_loss += self.lambda_rb * rb_loss + BMC_losses["bmc_rb"] = rb_loss + + # compute loss of Joint angles + a_loss = torch.Tensor([0]).cuda() + if self.lambda_a: + # PIP bones + PIP_X_axis = torch.zeros([batch_size, 5, 3]).cuda() # (B,5,3) + PIP_X_axis[:, [0, 1, 4], :] = -normals[:, [0, 1, 3]] + PIP_X_axis[:, 2:4] = -normalize(normals[:, 2:4] + normals[:, 1:3]) # (B,2,3) + PIP_Y_axis = normalize(cross_product(PIP_Z_axis, PIP_X_axis)) # (B,5,3) + + PIP_bones_xz = PIP_bones - inner_product(PIP_bones, PIP_Y_axis).unsqueeze(2) * PIP_Y_axis + PIP_theta_flexion = angle_between(PIP_bones_xz, PIP_Z_axis) # in global coordinate (B) + PIP_theta_abduction = angle_between(PIP_bones_xz, PIP_bones) # in global coordinate (B) + # x-component of the bone vector + tmp = inner_product(PIP_bones, PIP_X_axis) + PIP_theta_flexion = torch.where(tmp < 1e-6, -PIP_theta_flexion, PIP_theta_flexion) + # y-component of the bone vector + tmp = torch.sum((PIP_bones * PIP_Y_axis), dim=-1) + PIP_theta_abduction = torch.where(tmp < 1e-6, -PIP_theta_abduction, PIP_theta_abduction) + + temp_axis = normalize(cross_product(PIP_Z_axis, PIP_bones)) + temp_alpha = angle_between(PIP_Z_axis, PIP_bones) # alpha belongs to [pi/2, pi] + temp_R = axangle2mat_torch(axis=temp_axis, angle=temp_alpha, is_normalized=True) + + # DIP bones + DIP_X_axis = torch.matmul(temp_R, PIP_X_axis.unsqueeze(3)).squeeze() + DIP_Y_axis = torch.matmul(temp_R, PIP_Y_axis.unsqueeze(3)).squeeze() + + DIP_bones_xz = DIP_bones - inner_product(DIP_bones, DIP_Y_axis).unsqueeze(2) * DIP_Y_axis + DIP_theta_flexion = angle_between(DIP_bones_xz, DIP_Z_axis) # in global coordinate + DIP_theta_abduction = angle_between(DIP_bones_xz, DIP_bones) # in global coordinate + # x-component of the bone vector + tmp = inner_product(DIP_bones, DIP_X_axis) + DIP_theta_flexion = torch.where(tmp < 0, -DIP_theta_flexion, DIP_theta_flexion) + # y-component of the bone vector + tmp = inner_product(DIP_bones, DIP_Y_axis) + DIP_theta_abduction = torch.where(tmp < 0, -DIP_theta_abduction, DIP_theta_abduction) + + temp_axis = normalize(cross_product(DIP_Z_axis, DIP_bones)) + temp_alpha = angle_between(DIP_Z_axis, DIP_bones) # alpha belongs to [pi/2, pi] + temp_R = axangle2mat_torch(axis=temp_axis, angle=temp_alpha, is_normalized=True) + + # TIP bones + TIP_X_axis = torch.matmul(temp_R, DIP_X_axis.unsqueeze(3)).squeeze() + TIP_Y_axis = torch.matmul(temp_R, DIP_Y_axis.unsqueeze(3)).squeeze() + TIP_bones_xz = TIP_bones - inner_product(TIP_bones, TIP_Y_axis).unsqueeze(2) * TIP_Y_axis + + TIP_theta_flexion = angle_between(TIP_bones_xz, TIP_Z_axis) # in global coordinate + TIP_theta_abduction = angle_between(TIP_bones_xz, TIP_bones) # in global coordinate + # x-component of the bone vector + tmp = inner_product(TIP_bones, TIP_X_axis) + TIP_theta_flexion = torch.where(tmp < 1e-6, -TIP_theta_flexion, TIP_theta_flexion) + # y-component of the bone vector + tmp = inner_product(TIP_bones, TIP_Y_axis) + TIP_theta_abduction = torch.where(tmp < 1e-6, -TIP_theta_abduction, TIP_theta_abduction) + + # ALL + ALL_theta_flexion = torch.cat((PIP_theta_flexion, DIP_theta_flexion, TIP_theta_flexion), dim=-1) + ALL_theta_abduction = torch.cat((PIP_theta_abduction, DIP_theta_abduction, TIP_theta_abduction), dim=-1) + ALL_theta = torch.stack((ALL_theta_flexion, ALL_theta_abduction), dim=-1) + + a_loss = calculate_joint_angle_loss(ALL_theta, self.joint_angle_limit) + final_loss += self.lambda_a * a_loss + + BMC_losses["bmc_a"] = a_loss + + return final_loss, BMC_losses diff --git a/examples/mano_hand_retargeter/optim/helpers.py b/examples/mano_hand_retargeter/optim/helpers.py new file mode 100644 index 000000000..fd01bedaa --- /dev/null +++ b/examples/mano_hand_retargeter/optim/helpers.py @@ -0,0 +1,180 @@ +import numpy as np +import torch + +from body_model import OP_EDGE_LIST +from geometry.rotation import batch_rodrigues +from geometry.plane import ( + parse_floor_plane, + compute_plane_intersection, + fit_plane, +) + + +def compute_world2prior(floor_plane, trans, root_orient, origin): + """ + Computes rotation and translation from the camera frame to the canonical coordinate system + used by the motion and initial state priors. + - floor_plane : B x 3 + - trans : B x 3 + - root_orient : B x 3 + - origin: B x 3 desired origin (first joint of human model) + - returns R (B, 3, 3), t (B, 3), root_height (B) + """ + B = trans.size(0) + if floor_plane.size(1) == 3: + floor_plane_4d = parse_floor_plane(floor_plane) + else: + floor_plane_4d = floor_plane + floor_normal = floor_plane_4d[:, :3] + floor_trans, _ = compute_plane_intersection(trans, -floor_normal, floor_plane_4d) + + # compute prior frame axes within the camera frame + # up is the floor_plane normal + up_axis = floor_normal + # right is body -x direction projected to floor plane + root_orient_mat = batch_rodrigues(root_orient) + body_right = -root_orient_mat[:, :, 0] + floor_body_right, s = compute_plane_intersection(trans, body_right, floor_plane_4d) + right_axis = floor_body_right - floor_trans + # body right may not actually intersect - in this case must negate axis because we have the -x + right_axis = torch.where(s.reshape((B, 1)) < 0, -right_axis, right_axis) + right_axis = right_axis / torch.norm(right_axis, dim=1, keepdim=True) + # forward is their cross product + fwd_axis = torch.linalg.cross(up_axis, right_axis) + fwd_axis = fwd_axis / torch.norm(fwd_axis, dim=1, keepdim=True) + + # prior frame is right, fwd, up + prior_R = torch.stack([right_axis, fwd_axis, up_axis], dim=2) + world2prior_R = prior_R.transpose(-1, -2) + + # translation takes translation to origin plus offset to the floor + world2prior_t = -trans + + # compute the distance from root to ground plane + _, s_root = compute_plane_intersection(origin, -floor_normal, floor_plane_4d) + root_height = s_root.reshape(B, 1) + + if False: + # apply transform to origin + origin_prior = torch.matmul(world2prior_R, (origin - trans)[..., None])[..., 0] + root_height = s_root.reshape(B, 1) - origin_prior[:, 2:3] + + return world2prior_R, world2prior_t, root_height + + +def find_cliques(edges): + cliques = [] + N = edges.shape[0] + empty = np.ones(N, dtype=bool) + while empty.sum() > 0: + idcs = np.where(empty)[0] + i = idcs[0] + cur_clique = [i] + for j in idcs[1:]: + if all(edges[c, j] for c in cur_clique): + cur_clique.append(j) + empty[cur_clique] = False + cliques.append(cur_clique) + return cliques + + +def estimate_floor_planes( + smpl_joints, valid_mask, thresh=0.5, group=False, flatten=False +): + """ + :param smpl_joints (B, T, J, 3) + :param valid_mask (B, T) + :param thresh (optional, default 0.5) threshold for separating + :param group (optional, default False) whether to group the planes + :param flatten (optional, default False) whether to estimate one plane for everyone + returns floor_plane (C, 3), floor_idcs (B,) + """ + B, T = valid_mask.shape + device = valid_mask.device + feet_joints = smpl_joints[..., 10:12, :] # (B, T, 2, 3) + points = [feet_joints[b, valid_mask[b]].reshape(-1, 3) for b in range(B)] + + if flatten: + planes = fit_plane(torch.cat(points, dim=0))[None] + labels = torch.zeros(B, device=device, dtype=torch.long) + return planes[..., :3] * planes[..., 3:], labels + + # estimate floors independently + planes = torch.stack([fit_plane(pts) for pts in points], dim=0) # (B, 4) + normals, offsets = planes[..., :3], planes[..., 3:] # (B, 3), (B, 1) + sgn = torch.sign(offsets) + normals, offsets = sgn * normals, sgn * offsets + planes = normals * offsets # (B, 3) + labels = torch.arange(B, device=device) + + if not group: + return planes, labels # (B, 3), (B,) + + # asymetric, project each plane vector onto the other normals + diffs = offsets - (planes[None] * normals[:, None]).sum(dim=-1) + print(diffs) + edges = diffs < thresh + edges = edges.T & edges + clusters = find_cliques(edges) # list of indices of clusters + planes = [] + labels = torch.zeros(B, dtype=torch.long, device=device) + for c, idcs in enumerate(clusters): + plane = fit_plane(torch.cat([points[i] for i in idcs], dim=0)) + planes.append(plane) + labels[idcs] = c + planes = torch.stack(planes, dim=0) # (C, 4) + return planes[..., :3] * planes[..., 3:], labels + + +def estimate_initial_trans(body_pose, joints3d_op, joints2d_op, focal): + """ + use focal length and bone lengths to approximate distance from camera + (based on PROX https://github.com/mohamedhassanmus/prox/blob/master/prox/fitting.py) + :param body_pose + :param joints3d_op OP keypoints in 3d + :param joints2d_op OP keypoints in 2d + """ + B, T, N, _ = joints2d_op.shape + joints2d_obs = joints2d_op[:, :, :, :2] # (B, T, N, 3) + joints2d_conf = joints2d_op[:, :, :, 2] + + # find least-occluded 2d frame + num_2d_vis = torch.sum(joints2d_conf > 0.0, dim=2) + best_2d_idx = torch.max(num_2d_vis, dim=1)[1] + + # calculate bone lengths and confidence in each bone length + bone3d = [] + bone2d = [] + conf2d = [] + for pair in OP_EDGE_LIST: + diff3d = torch.norm( + joints3d_op[:, 0, pair[0], :] - joints3d_op[:, 0, pair[1], :], + dim=1, + ) # does not change over time + diff2d = torch.norm( + joints2d_obs[:, :, pair[0], :] - joints2d_obs[:, :, pair[1], :], + dim=2, + ) + minconf2d = torch.min( + joints2d_conf[:, :, pair[0]], joints2d_conf[:, :, pair[1]] + ) + bone3d.append(diff3d) + bone2d.append(diff2d) + conf2d.append(minconf2d) + + bone3d = torch.stack(bone3d, dim=1) + bone2d = torch.stack(bone2d, dim=2) + bone2d = bone2d[np.arange(B), best_2d_idx, :] + conf2d = torch.stack(conf2d, dim=2) + conf2d = conf2d[np.arange(B), best_2d_idx, :] + + # mean over all bones + mean_bone3d = torch.mean(bone3d, dim=1) + mean_bone2d = torch.mean(bone2d * (conf2d > 0.0), dim=1) + + # approx z based on ratio + init_z = focal * (mean_bone3d / mean_bone2d) + init_trans = torch.zeros(B, T, 3) + init_trans[:, :, 2] = init_z.unsqueeze(1).expand(B, T).detach() + + return init_trans diff --git a/examples/mano_hand_retargeter/optim/losses.py b/examples/mano_hand_retargeter/optim/losses.py new file mode 100644 index 000000000..5e0763110 --- /dev/null +++ b/examples/mano_hand_retargeter/optim/losses.py @@ -0,0 +1,1456 @@ +import os +import math +import numpy as np +import cv2 +import torch +import torch.nn as nn +import torch.nn.functional as F +from torch.distributions import ( + MixtureSameFamily, + Categorical, + Normal, + MultivariateNormal, +) + +# from body_model import SMPL_JOINTS, SMPL_PARENTS +from geometry.rotation import rotation_matrix_to_angle_axis +from geometry import camera as cam_util +from optim.bio_loss import BMCLoss +from util.logger import Logger +from typing import List, Tuple, NewType + +Tensor = NewType('Tensor', torch.Tensor) + +CONTACT_HEIGHT_THRESH = 0.08 +openpose_indices = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] +gt_indices = openpose_indices + +def solid_angles( + points: Tensor, + triangles: Tensor, + thresh: float = 1e-8 +) -> Tensor: + ''' Compute solid angle between the input points and triangles + Follows the method described in: + The Solid Angle of a Plane Triangle + A. VAN OOSTEROM AND J. STRACKEE + IEEE TRANSACTIONS ON BIOMEDICAL ENGINEERING, + VOL. BME-30, NO. 2, FEBRUARY 1983 + Parameters + ----------- + points: BxQx3 + Tensor of input query points + triangles: BxFx3x3 + Target triangles + thresh: float + float threshold + Returns + ------- + solid_angles: BxQxF + A tensor containing the solid angle between all query points + and input triangles + ''' + # Center the triangles on the query points. Size should be BxQxFx3x3 + centered_tris = triangles[:, None] - points[:, :, None, None] + + # BxQxFx3 + norms = torch.norm(centered_tris, dim=-1) + + # Should be BxQxFx3 + cross_prod = torch.cross( + centered_tris[:, :, :, 1], centered_tris[:, :, :, 2], dim=-1) + # Should be BxQxF + numerator = (centered_tris[:, :, :, 0] * cross_prod).sum(dim=-1) + del cross_prod + + dot01 = (centered_tris[:, :, :, 0] * centered_tris[:, :, :, 1]).sum(dim=-1) + dot12 = (centered_tris[:, :, :, 1] * centered_tris[:, :, :, 2]).sum(dim=-1) + dot02 = (centered_tris[:, :, :, 0] * centered_tris[:, :, :, 2]).sum(dim=-1) + del centered_tris + + denominator = ( + norms.prod(dim=-1) + + dot01 * norms[:, :, :, 2] + + dot02 * norms[:, :, :, 1] + + dot12 * norms[:, :, :, 0] + ) + del dot01, dot12, dot02, norms + + # Should be BxQ + solid_angle = torch.atan2(numerator, denominator) + del numerator, denominator + + torch.cuda.empty_cache() + + return 2 * solid_angle + +def winding_numbers( + points: Tensor, + triangles: Tensor, + thresh: float = 1e-8 +) -> Tensor: + ''' Uses winding_numbers to compute inside/outside + Robust inside-outside segmentation using generalized winding numbers + Alec Jacobson, + Ladislav Kavan, + Olga Sorkine-Hornung + Fast Winding Numbers for Soups and Clouds SIGGRAPH 2018 + Gavin Barill + NEIL G. Dickson + Ryan Schmidt + David I.W. Levin + and Alec Jacobson + Parameters + ----------- + points: BxQx3 + Tensor of input query points + triangles: BxFx3x3 + Target triangles + thresh: float + float threshold + Returns + ------- + winding_numbers: BxQ + A tensor containing the Generalized winding numbers + ''' + # The generalized winding number is the sum of solid angles of the point + # with respect to all triangles. + return 1 / (4 * math.pi) * solid_angles( + points, triangles, thresh=thresh).sum(dim=-1) + +def pcl_pcl_pairwise_distance( + x: torch.Tensor, + y: torch.Tensor, + use_cuda: bool = True, + squared: bool = False +): + """ + Calculate the pairse distance between two point clouds. + """ + + bs, num_points_x, points_dim = x.size() + _, num_points_y, _ = y.size() + + dtype = torch.cuda.LongTensor if \ + use_cuda else torch.LongTensor + + xx = torch.bmm(x, x.transpose(2, 1)) + yy = torch.bmm(y, y.transpose(2, 1)) + zz = torch.bmm(x, y.transpose(2, 1)) + + diag_ind_x = torch.arange(0, num_points_x).type(dtype) + diag_ind_y = torch.arange(0, num_points_y).type(dtype) + rx = ( + xx[:, diag_ind_x, diag_ind_x] + .unsqueeze(1) + .expand_as(zz.transpose(2, 1)) + ) + ry = yy[:, diag_ind_y, diag_ind_y].unsqueeze(1).expand_as(zz) + P = rx.transpose(2, 1) + ry - 2 * zz + + if not squared: + P = torch.clamp(P, min=0.0) # make sure we dont get nans + P = torch.sqrt(P) + + return P + +def get_keypoints_rectangle(keypoints: np.array, threshold: float) -> Tuple[float, float, float]: + """ + Compute rectangle enclosing keypoints above the threshold. + Args: + keypoints (np.array): Keypoint array of shape (N, 3). + threshold (float): Confidence visualization threshold. + Returns: + Tuple[float, float, float]: Rectangle width, height and area. + """ + # print(keypoints.shape) + valid_ind = keypoints[:, -1] > threshold + if valid_ind.sum() > 0: + valid_keypoints = keypoints[valid_ind][:, :-1] + max_x = valid_keypoints[:,0].max() + max_y = valid_keypoints[:,1].max() + min_x = valid_keypoints[:,0].min() + min_y = valid_keypoints[:,1].min() + width = max_x - min_x + height = max_y - min_y + area = width * height + return width, height, area + else: + return 0,0,0 + +def render_keypoints(img: np.array, + keypoints: np.array, + pairs: List, + colors: List, + thickness_circle_ratio: float, + thickness_line_ratio_wrt_circle: float, + pose_scales: List, + threshold: float = 0.1, + alpha: float = 1.0) -> np.array: + """ + Render keypoints on input image. + Args: + img (np.array): Input image of shape (H, W, 3) with pixel values in the [0,255] range. + keypoints (np.array): Keypoint array of shape (N, 3). + pairs (List): List of keypoint pairs per limb. + colors: (List): List of colors per keypoint. + thickness_circle_ratio (float): Circle thickness ratio. + thickness_line_ratio_wrt_circle (float): Line thickness ratio wrt the circle. + pose_scales (List): List of pose scales. + threshold (float): Only visualize keypoints with confidence above the threshold. + Returns: + (np.array): Image of shape (H, W, 3) with keypoints drawn on top of the original image. + """ + img_orig = img.copy() + width, height = img.shape[1], img.shape[2] + area = width * height + + lineType = 8 + shift = 0 + numberColors = len(colors) + thresholdRectangle = 0.1 + + person_width, person_height, person_area = get_keypoints_rectangle(keypoints, thresholdRectangle) + if person_area > 0: + ratioAreas = min(1, max(person_width / width, person_height / height)) + thicknessRatio = np.maximum(np.round(math.sqrt(area) * thickness_circle_ratio * ratioAreas), 2) + thicknessCircle = np.maximum(1, thicknessRatio if ratioAreas > 0.05 else -np.ones_like(thicknessRatio)) + thicknessLine = np.maximum(1, np.round(thicknessRatio * thickness_line_ratio_wrt_circle)) + radius = thicknessRatio / 2 + + img = np.ascontiguousarray(img.copy()) + for i, pair in enumerate(pairs): + index1, index2 = pair + if keypoints[index1, -1] > threshold and keypoints[index2, -1] > threshold: + thicknessLineScaled = int(round(min(thicknessLine[index1], thicknessLine[index2]) * pose_scales[0])) + colorIndex = index2 + color = colors[colorIndex % numberColors] + keypoint1 = keypoints[index1, :-1].astype(np.int32) + keypoint2 = keypoints[index2, :-1].astype(np.int32) + cv2.line(img, tuple(keypoint1.tolist()), tuple(keypoint2.tolist()), tuple(color.tolist()), thicknessLineScaled, lineType, shift) + for part in range(len(keypoints)): + faceIndex = part + if keypoints[faceIndex, -1] > threshold: + radiusScaled = int(round(radius[faceIndex] * pose_scales[0])) + thicknessCircleScaled = int(round(thicknessCircle[faceIndex] * pose_scales[0])) + colorIndex = part + color = colors[colorIndex % numberColors] + center = keypoints[faceIndex, :-1].astype(np.int32) + cv2.circle(img, tuple(center.tolist()), radiusScaled, tuple(color.tolist()), thicknessCircleScaled, lineType, shift) + return img + +def render_hand_keypoints(img, right_hand_keypoints, threshold=0.1, use_confidence=False, map_fn=lambda x: np.ones_like(x), alpha=1.0): + if use_confidence and map_fn is not None: + #thicknessCircleRatioLeft = 1./50 * map_fn(left_hand_keypoints[:, -1]) + thicknessCircleRatioRight = 1./50 * map_fn(right_hand_keypoints[:, -1]) + else: + #thicknessCircleRatioLeft = 1./50 * np.ones(left_hand_keypoints.shape[0]) + thicknessCircleRatioRight = 1./50 * np.ones(right_hand_keypoints.shape[0]) + thicknessLineRatioWRTCircle = 0.75 + pairs = [0,1, 1,2, 2,3, 3,4, 0,5, 5,6, 6,7, 7,8, 0,9, 9,10, 10,11, 11,12, 0,13, 13,14, 14,15, 15,16, 0,17, 17,18, 18,19, 19,20] + pairs = np.array(pairs).reshape(-1,2) + + colors = [100., 100., 100., + 100., 0., 0., + 150., 0., 0., + 200., 0., 0., + 255., 0., 0., + 100., 100., 0., + 150., 150., 0., + 200., 200., 0., + 255., 255., 0., + 0., 100., 50., + 0., 150., 75., + 0., 200., 100., + 0., 255., 125., + 0., 50., 100., + 0., 75., 150., + 0., 100., 200., + 0., 125., 255., + 100., 0., 100., + 150., 0., 150., + 200., 0., 200., + 255., 0., 255.] + colors = np.array(colors).reshape(-1,3) + #colors = np.zeros_like(colors) + poseScales = [1] + #img = render_keypoints(img, left_hand_keypoints, pairs, colors, thicknessCircleRatioLeft, thicknessLineRatioWRTCircle, poseScales, threshold, alpha=alpha) + img = render_keypoints(img, right_hand_keypoints, pairs, colors, thicknessCircleRatioRight, thicknessLineRatioWRTCircle, poseScales, threshold, alpha=alpha) + #img = render_keypoints(img, right_hand_keypoints, pairs, colors, thickness_circle_ratio, thickness_line_ratio_wrt_circle, pose_scales, 0.1) + return img + +def render_body_keypoints(img: np.array, + body_keypoints: np.array) -> np.array: + """ + Render OpenPose body keypoints on input image. + Args: + img (np.array): Input image of shape (H, W, 3) with pixel values in the [0,255] range. + body_keypoints (np.array): Keypoint array of shape (N, 3); 3 <====> (x, y, confidence). + Returns: + (np.array): Image of shape (H, W, 3) with keypoints drawn on top of the original image. + """ + + thickness_circle_ratio = 1./75. * np.ones(body_keypoints.shape[0]) + thickness_line_ratio_wrt_circle = 0.75 + pairs = [] + pairs = [1,8,1,2,1,5,2,3,3,4,5,6,6,7,8,9,9,10,10,11,8,12,12,13,13,14,1,0,0,15,15,17,0,16,16,18,14,19,19,20,14,21,11,22,22,23,11,24] + pairs = np.array(pairs).reshape(-1,2) + colors = [255., 0., 85., + 255., 0., 0., + 255., 85., 0., + 255., 170., 0., + 255., 255., 0., + 170., 255., 0., + 85., 255., 0., + 0., 255., 0., + 255., 0., 0., + 0., 255., 85., + 0., 255., 170., + 0., 255., 255., + 0., 170., 255., + 0., 85., 255., + 0., 0., 255., + 255., 0., 170., + 170., 0., 255., + 255., 0., 255., + 85., 0., 255., + 0., 0., 255., + 0., 0., 255., + 0., 0., 255., + 0., 255., 255., + 0., 255., 255., + 0., 255., 255.] + colors = np.array(colors).reshape(-1,3) + pose_scales = [1] + return render_keypoints(img, body_keypoints, pairs, colors, thickness_circle_ratio, thickness_line_ratio_wrt_circle, pose_scales, 0.1) + +def render_openpose(img: np.array, + hand_keypoints: np.array) -> np.array: + """ + Render keypoints in the OpenPose format on input image. + Args: + img (np.array): Input image of shape (H, W, 3) with pixel values in the [0,255] range. + body_keypoints (np.array): Keypoint array of shape (N, 3); 3 <====> (x, y, confidence). + Returns: + (np.array): Image of shape (H, W, 3) with keypoints drawn on top of the original image. + """ + #img = render_body_keypoints(img, body_keypoints) + img = render_hand_keypoints(img, hand_keypoints) + return img +################################################### + +class StageLoss(nn.Module): + def __init__(self, loss_weights, **kwargs): + super().__init__() + self.cur_optim_step = 0 + self.set_loss_weights(loss_weights) + print(kwargs) + self.setup_losses(loss_weights, **kwargs) + + def setup_losses(self, *args, **kwargs): + raise NotImplementedError + + def set_loss_weights(self, loss_weights): + self.loss_weights = loss_weights + Logger.log("Stage loss weights set to:") + Logger.log(self.loss_weights) + + +class RootLoss(StageLoss): + def setup_losses( + self, + loss_weights, + ignore_op_joints=None, + joints2d_sigma=100, + use_chamfer=False, + robust_loss="none", + robust_tuning_const=4.6851, + faces=None + ): + self.joints2d_loss = Joints2DLoss(ignore_op_joints, joints2d_sigma) + self.points3d_loss = Points3DLoss(use_chamfer, robust_loss, robust_tuning_const) + self.inter_penetration_loss = GeneralContactLoss(faces) + self.bio_loss = BMCLoss(lambda_bl=1, lambda_rb=1, lambda_a=1) + + def forward(self, observed_data, pred_data, valid_mask=None): + """ + For fitting just global root trans/orientation. + Only computes joint/point/vert losses, i.e. no priors. + """ + stats_dict = dict() + loss = 0.0 + + # Joints in 3D space + if ( + "joints3d" in observed_data + and "joints3d" in pred_data + and self.loss_weights["joints3d"] > 0.0 + ): + cur_loss = joints3d_loss( + observed_data["joints3d"], pred_data["joints3d"], valid_mask + ) + loss += self.loss_weights["joints3d"] * cur_loss + stats_dict["joints3d"] = cur_loss + + if ( + "joints3d" in pred_data + and self.loss_weights["bio"] > 0.0 + ): + # print('biobiobiobiobiobiobiobiobiobiobiobio') + cur_loss, _ = self.bio_loss.compute_loss( + pred_data["joints3d"], valid_mask + ) + loss += self.loss_weights["bio"] * cur_loss[0] + stats_dict["bio"] = cur_loss[0] + + # Select vertices in 3D space + if ( + "verts3d" in observed_data + and "verts3d" in pred_data + and self.loss_weights["verts3d"] > 0.0 + ): + # raise ValueError + cur_loss = verts3d_loss( + observed_data["verts3d"], pred_data["verts3d"], valid_mask + ) + loss += self.loss_weights["verts3d"] * cur_loss + stats_dict["verts3d"] = cur_loss + + # All vertices to non-corresponding observed points in 3D space + if ( + "points3d" in observed_data + and "points3d" in pred_data + and self.loss_weights["points3d"] > 0.0 + ): + # raise ValueError + cur_loss = self.points3d_loss( + observed_data["points3d"], pred_data["points3d"] + ) + loss += self.loss_weights["points3d"] * cur_loss + stats_dict["points3d"] = cur_loss + + # 2D re-projection loss + if ( + "joints2d" in observed_data + and "joints3d_op" in pred_data + and "cameras" in pred_data + and self.loss_weights["joints2d"] > 0.0 + ): + # print(4444444444444444444) + joints2d = cam_util.reproject( + pred_data["joints3d_op"], *pred_data["cameras"] + ) + cur_loss = self.joints2d_loss( + observed_data["joints2d"], joints2d, valid_mask + ) + + loss += self.loss_weights["joints2d"] * cur_loss + stats_dict["joints2d"] = cur_loss + + # smooth 3d joint motion + if self.loss_weights["joints3d_smooth"] > 0.0: + # print(55555555555555555555) + cur_loss = joints3d_smooth_loss(pred_data["joints3d"], valid_mask) + loss += self.loss_weights["joints3d_smooth"] * cur_loss + stats_dict["joints3d_smooth"] = cur_loss + + # If we're optimizing cameras, camera reprojection loss + if "bg2d_err" in pred_data and self.loss_weights["bg2d"] > 0.0: + raise ValueError + cur_loss = pred_data["bg2d_err"] + loss += self.loss_weights["bg2d"] * cur_loss + stats_dict["bg2d_err"] = cur_loss + + # camera smoothness + if "cam_R" in pred_data and self.loss_weights["cam_R_smooth"] > 0.0: + raise ValueError + cam_R = pred_data["cam_R"] # (T, 3, 3) + cur_loss = rotation_smoothness_loss(cam_R[1:], cam_R[:-1]) + loss += self.loss_weights["cam_R_smooth"] * cur_loss + stats_dict["cam_R_smooth"] = cur_loss + + if "cam_t" in pred_data and self.loss_weights["cam_t_smooth"] > 0.0: + raise ValueError + cam_t = pred_data["cam_t"] # (T, 3, 3) + cur_loss = translation_smoothness_loss(cam_t[1:], cam_t[:-1]) + loss += self.loss_weights["cam_t_smooth"] * cur_loss + stats_dict["cam_t_smooth"] = cur_loss + + # Depth constraint: keep hand in front of camera + if ( + "joints3d" in pred_data + and "cameras" in pred_data + and self.loss_weights.get("depth_constraint", 0.0) > 0.0 + ): + # Extract cam_R and cam_t from cameras tuple + # cameras = (cam_R, cam_t, cam_f, cam_center) + cam_R, cam_t, cam_f, cam_center = pred_data["cameras"] + cur_loss = depth_constraint_loss( + pred_data["joints3d"], + cam_R, + cam_t, + min_depth=0.0, + max_depth=999 + ) + loss += self.loss_weights["depth_constraint"] * cur_loss + stats_dict["depth_constraint"] = cur_loss + + print(stats_dict) + return loss, stats_dict + + +def rotation_smoothness_loss(R1, R2): + R12 = torch.einsum("...ij,...jk->...ik", R2, R1.transpose(-1, -2)) + aa12 = rotation_matrix_to_angle_axis(R12) + return torch.sum(aa12**2) + + +def translation_smoothness_loss(t1, t2): + return torch.sum((t2 - t1) ** 2) + + +def depth_constraint_loss(joints3d, cam_R, cam_t, min_depth=0.0, max_depth=999): + """ + Penalize joints that are behind the camera or too far away. + Ensures hand stays within reasonable depth range in camera space. + + :param joints3d (B, T, J, 3) or (T, J, 3) joints in world space + :param cam_R (B, T, 3, 3) or (T, 3, 3) world-to-camera rotation + :param cam_t (B, T, 3) or (T, 3) world-to-camera translation + :param min_depth minimum allowed Z in camera space (default 0.1m) + :param max_depth maximum allowed Z in camera space (default 5.0m) + """ + # Handle both (B, T, J, 3) and (T, J, 3) shapes + if joints3d.ndim == 3: + # (T, J, 3) -> add batch dimension + joints3d = joints3d.unsqueeze(0) # (1, T, J, 3) + if cam_R.ndim == 3: + # (T, 3, 3) -> add batch dimension + cam_R = cam_R.unsqueeze(0) # (1, T, 3, 3) + if cam_t.ndim == 2: + # (T, 3) -> add batch dimension + cam_t = cam_t.unsqueeze(0) # (1, T, 3) + + # Transform joints to camera space + B, T, J, _ = joints3d.shape + joints_cam = torch.einsum("btij,btjk->btik", cam_R, joints3d.transpose(-1, -2)).transpose(-1, -2) + joints_cam = joints_cam + cam_t[..., None, :] # (B, T, J, 3) + + # Get Z coordinate (depth) + depth = joints_cam[..., 2] # (B, T, J) + + # Penalize negative depth (behind camera) heavily + behind_camera_loss = torch.sum(torch.relu(-depth) ** 2) + + # Penalize depth outside reasonable range + too_close_loss = torch.sum(torch.relu(min_depth - depth) ** 2) + too_far_loss = torch.sum(torch.relu(depth - max_depth) ** 2) + + return behind_camera_loss * 100.0 + too_close_loss + too_far_loss + + +def camera_smoothness_loss(R1, t1, R2, t2): + """ + :param R1, t1 (N, 3, 3), (N, 3) + :param R2, t2 (N, 3, 3), (N, 3) + """ + R12, t12 = cam_util.compose_cameras(R2, t2, *cam_util.invert_camera(R1, t1)) + aa12 = rotation_matrix_to_angle_axis(R12) + return torch.sum(aa12**2) + torch.sum(t12**2) + +""" +Losses are cumulative +SMPLLoss setup is same as RootLoss +""" + +class SMPLLoss(RootLoss): + def forward(self, observed_data, pred_data, nsteps, valid_mask=None): + """ + For fitting full shape and pose of SMPL. + nsteps used to scale single-step losses + """ + loss, stats_dict = super().forward( + observed_data, pred_data, valid_mask=valid_mask + ) + + # prior to keep latent pose likely + print(f"DEBUG pose_prior check: 'latent_pose' in pred_data = {'latent_pose' in pred_data}, loss_weight = {self.loss_weights.get('pose_prior', 'NOT_FOUND')}") + if "latent_pose" in pred_data: + print(f" latent_pose shape: {pred_data['latent_pose'].shape}") + if "init_latent_pose" in observed_data: + print(f" init_latent_pose shape: {observed_data['init_latent_pose'].shape}") + + if "latent_pose" in pred_data and self.loss_weights["pose_prior"] > 0.0: + # Use initial latent pose from HaMeR as the prior target + latent_pose_init = observed_data["init_latent_pose"] + cur_loss = pose_prior_loss(pred_data["latent_pose"], latent_pose_init, valid_mask) + print("pose_prior: ", cur_loss, pred_data["latent_pose"][0],latent_pose_init[0]) + loss += self.loss_weights["pose_prior"] * cur_loss + stats_dict["pose_prior"] = cur_loss + else: + raise ValueError + + # prior to keep PCA shape likely + if "betas" in pred_data and self.loss_weights["shape_prior"] > 0.0: + cur_loss = shape_prior_loss(pred_data["betas"]) + loss += self.loss_weights["shape_prior"] * nsteps * cur_loss + stats_dict["shape_prior"] = cur_loss + + # inter-penetration loss + if 'verts3d' in pred_data and self.loss_weights["penetration"] > 0.0: + print('???????????????????????????????? inter-penetration loss') + # print(pred_data["verts3d"].shape, pred_data['is_right'].shape) + order = torch.sum(pred_data['is_right'], dim=-1)//pred_data['is_right'].shape[1] + + if len(order) > 1: + cur_loss = 0 + if order[0] == 0: + l_verts = pred_data["verts3d"][0] + r_verts = pred_data["verts3d"][1] + else: + l_verts = pred_data["verts3d"][1] + r_verts = pred_data["verts3d"][0] + + for idx in range(len(l_verts)): + cur_loss += self.inter_penetration_loss(v1=l_verts[idx:idx+1], v2=r_verts[idx:idx+1]) + + loss += self.loss_weights["penetration"] * cur_loss + stats_dict["penetration"] = cur_loss + + print(stats_dict) + # if 'penetration' in stats_dict.keys(): + # if stats_dict['penetration'] == 0: + # print(pred_data) + # print('***************') + # print(observed_data) + # raise ValueError + return loss, stats_dict + +# class MotionLoss(SMPLLoss): +# def setup_losses( +# self, +# loss_weights, +# init_motion_prior=None, +# **kwargs, +# ): +# super().setup_losses(loss_weights, **kwargs) +# if loss_weights["init_motion_prior"] > 0.0: +# self.init_motion_prior_loss = GMMPriorLoss(init_motion_prior) + +# def forward( +# self, +# observed_data, +# pred_data, +# cam_pred_data, +# nsteps, +# valid_mask=None, +# init_motion_scale=1.0, +# ): +# """ +# For fitting full shape and pose of SMPL with motion prior. + +# pred_data is data pertinent to the canonical prior coordinate frame +# cam_pred_data is for the camera coordinate frame + +# loss rather than standard normal if given. +# """ +# cam_pred_data["latent_pose"] = pred_data["latent_pose"] +# loss, stats_dict = super().forward( +# observed_data, cam_pred_data, nsteps, valid_mask=valid_mask +# ) + +# # prior to keep latent motion likely +# if "latent_motion" in pred_data and self.loss_weights["motion_prior"] > 0.0: +# # NOTE: latent is NOT synchronized in time, +# # the mask is NOT relevant +# # Generate the async mask to properly mask motion prior loss +# # Helps to calibrate the range of 'good' loss values +# B, T, _ = pred_data["latent_motion"].shape +# device = pred_data["latent_motion"].device +# async_mask = ( +# torch.arange(T, device=device)[None].expand(B, -1) +# < valid_mask.sum(dim=1)[:, None] +# ) +# cur_loss = motion_prior_loss( +# pred_data["latent_motion"], +# cond_prior=pred_data.get("cond_prior", None), +# mask=async_mask, +# ) +# loss += self.loss_weights["motion_prior"] * cur_loss +# stats_dict["motion_prior"] = cur_loss + +# # prior to keep initial state likely +# have_init_prior_info = ( +# "joints3d_init" in pred_data +# and "joints_vel" in pred_data +# and "trans_vel" in pred_data +# and "root_orient_vel" in pred_data +# ) +# if have_init_prior_info and self.loss_weights["init_motion_prior"] > 0.0: +# cur_loss = self.init_motion_prior_loss( +# pred_data["joints3d_init"], +# pred_data["joints_vel"], +# pred_data["trans_vel"], +# pred_data["root_orient_vel"], +# ) +# loss += ( +# self.loss_weights["init_motion_prior"] * init_motion_scale * cur_loss +# ) # must scale since doesn't scale with more steps +# stats_dict["init_motion_prior"] = cur_loss + +# # make sure joints consistent between SMPL and direct motion prior output +# if ( +# "joints3d_rollout" in pred_data +# and "joints3d" in pred_data +# and self.loss_weights["joint_consistency"] > 0.0 +# ): +# cur_loss = joint_consistency_loss( +# pred_data["joints3d"], +# pred_data["joints3d_rollout"], +# valid_mask, +# ) +# loss += self.loss_weights["joint_consistency"] * cur_loss +# stats_dict["joint_consistency"] = cur_loss + +# # make sure bone lengths between frames of direct motion prior output are consistent +# if "joints3d_rollout" in pred_data and self.loss_weights["bone_length"] > 0.0: +# cur_loss = bone_length_loss(pred_data["joints3d_rollout"], valid_mask) +# loss += self.loss_weights["bone_length"] * cur_loss +# stats_dict["bone_length"] = cur_loss + +# # make sure rolled out joints match observations too +# if ( +# "joints3d" in observed_data +# and "joints3d_rollout" in pred_data +# and self.loss_weights["joints3d_rollout"] > 0.0 +# ): +# raise ValueError +# # cur_loss = joints3d_loss( +# # observed_data["joints3d"], pred_data["joints3d_rollout"], valid_mask +# # ) +# # loss += self.loss_weights["joints3d_rollout"] * cur_loss +# # stats_dict["joints3d_rollout"] = cur_loss + +# # velocity 0 during contacts +# if ( +# self.loss_weights["contact_vel"] > 0.0 +# and "contacts_conf" in pred_data +# and "joints3d" in pred_data +# ): +# raise ValueError +# # cur_loss = contact_vel_loss( +# # pred_data["contacts_conf"], pred_data["joints3d"], valid_mask +# # ) +# # loss += self.loss_weights["contact_vel"] * cur_loss +# # stats_dict["contact_vel"] = cur_loss + +# # contacting joints are near the floor +# if ( +# self.loss_weights["contact_height"] > 0.0 +# and "contacts_conf" in pred_data +# and "joints3d" in pred_data +# ): +# raise ValueError +# # cur_loss = contact_height_loss( +# # pred_data["contacts_conf"], pred_data["joints3d"], valid_mask +# # ) +# # loss += self.loss_weights["contact_height"] * cur_loss +# # stats_dict["contact_height"] = cur_loss + +# # floor is close to the initialization +# if ( +# self.loss_weights["floor_reg"] > 0.0 +# and "floor_plane" in pred_data +# and "floor_plane" in observed_data +# ): +# raise ValueError +# # cur_loss = floor_reg_loss( +# # pred_data["floor_plane"], observed_data["floor_plane"] +# # ) +# # loss += self.loss_weights["floor_reg"] * nsteps * cur_loss +# # stats_dict["floor_reg"] = cur_loss + +# return loss, stats_dict + + +def joints3d_loss(joints3d_obs, joints3d_pred, mask=None): + """ + :param joints3d_obs (B, T, J, 3) + :param joints3d_pred (B, T, J, 3) + :param mask (optional) (B, T) + """ + B, T, *dims = joints3d_obs.shape + vis_mask = get_visible_mask(joints3d_obs) + if mask is not None: + vis_mask = vis_mask & mask.reshape(B, T, *(1,) * len(dims)).bool() + loss = (joints3d_obs[vis_mask] - joints3d_pred[vis_mask]) ** 2 + loss = 0.5 * torch.sum(loss) + return loss + + +def verts3d_loss(verts3d_obs, verts3d_pred, mask=None): + """ + :param verts3d_obs (B, T, V, 3) + :param verts3d_pred (B, T, V, 3) + :param mask (optional) (B, T) + """ + B, T, *dims = verts3d_obs.shape + vis_mask = get_visible_mask(verts3d_obs) + if mask is not None: + assert mask.shape == (B, T) + vis_mask = vis_mask & mask.reshape(B, T, *(1,) * len(dims)).bool() + loss = (verts3d_obs[vis_mask] - verts3d_pred[vis_mask]) ** 2 + loss = 0.5 * torch.sum(loss) + return loss + + +def get_visible_mask(obs_data): + """ + Given observed data gets the mask of visible data (that actually contributes to the loss). + """ + return torch.logical_not(torch.isinf(obs_data)) + + +class Joints2DLoss(nn.Module): + def __init__(self, ignore_op_joints=None, joints2d_sigma=100, normalize_by_scale=True): + super().__init__() + self.ignore_op_joints = ignore_op_joints + self.joints2d_sigma = joints2d_sigma + self.normalize_by_scale = normalize_by_scale + + def forward(self, joints2d_obs, joints2d_pred, mask=None): + """ + :param joints2d_obs (B, T, 25, 3) + :param joints2d_pred (B, T, 22, 2) + :param mask (optional) (B, T) + """ + # Safety check: detect NaN in predictions before computing loss + if torch.isnan(joints2d_pred).any() or torch.isinf(joints2d_pred).any(): + print(f"ERROR: joints2d_pred contains NaN or Inf!") + print(f" NaN count: {torch.isnan(joints2d_pred).sum().item()}") + print(f" This means MANO model produced invalid output") + return torch.tensor(1e8, device=joints2d_pred.device, requires_grad=True) + + if mask is not None: + mask = mask.bool() + joints2d_obs = joints2d_obs[mask] # (N, 25, 3) + joints2d_pred = joints2d_pred[mask] # (N, 22, 2) + + joints2d_obs_conf = joints2d_obs[..., 2:3] + if self.ignore_op_joints is not None: + # set confidence to 0 so not weighted + joints2d_obs_conf[..., self.ignore_op_joints, :] = 0.0 + + # Compute error + error = joints2d_pred - joints2d_obs[..., :2] # (N, 22, 2) + + # Normalize by hand scale to make loss resolution-independent + if self.normalize_by_scale: + # Estimate hand scale from observed keypoints spread + valid_obs = joints2d_obs[:, :, :2] # (N, 25, 2) + # Compute bbox size of observed keypoints for each hand + kp_min = valid_obs.min(dim=1, keepdim=True)[0] # (N, 1, 2) + kp_max = valid_obs.max(dim=1, keepdim=True)[0] # (N, 1, 2) + hand_scale = torch.sqrt(((kp_max - kp_min) ** 2).sum(dim=-1, keepdim=True)) # (N, 1, 1) + + # Safety check: detect invalid/degenerate cases + if torch.isnan(hand_scale).any() or torch.isinf(hand_scale).any() or (hand_scale < 5.0).any(): + print(f"ERROR: Invalid hand_scale! min={hand_scale.min():.2f}, max={hand_scale.max():.2f}") + print(f" This indicates MANO produced degenerate output (collapsed joints)") + print(f" kp_min: {kp_min[0, 0]}, kp_max: {kp_max[0, 0]}") + # Return a large constant loss to signal the optimizer this is a bad configuration + return torch.tensor(1e6, device=hand_scale.device, requires_grad=True) + + # Clamp to reasonable range (5-1000 pixels) + hand_scale = torch.clamp(hand_scale, min=5.0, max=1000.0) + + # Normalize error by hand scale AND scale up to reasonable magnitude + error = error / hand_scale * 100.0 # Now error is in normalized units (0-100 scale) + + # Use FIXED sigma in normalized space (not divided by hand_scale!) + normalized_sigma = self.joints2d_sigma # Already in normalized units + else: + normalized_sigma = self.joints2d_sigma + + # weight errors by detection confidence + robust_sqr_dist = gmof(error, normalized_sigma) + reproj_err = (joints2d_obs_conf**2) * robust_sqr_dist + loss = torch.mean(reproj_err) + return loss + + +# class Joints2DLoss(nn.Module): +# def __init__(self, ignore_op_joints=None, joints2d_sigma=100): +# super().__init__() +# self.ignore_op_joints = ignore_op_joints +# self.joints2d_sigma = joints2d_sigma + +# def forward(self, joints2d_obs, joints2d_pred, mask=None): +# """ +# :param joints2d_obs (B, T, 25, 3) +# :param joints2d_pred (B, T, 22, 2) +# :param mask (optional) (B, T) +# """ +# if mask is not None: +# mask = mask.bool() +# joints2d_obs = joints2d_obs[mask] # (N, 25, 3) +# joints2d_pred = joints2d_pred[mask] # (N, 22, 2) + +# joints2d_obs_conf = joints2d_obs[..., 2:3] +# if self.ignore_op_joints is not None: +# # set confidence to 0 so not weighted +# joints2d_obs_conf[..., self.ignore_op_joints, :] = 0.0 + +# # Compute per-joint pixel errors +# error = joints2d_pred - joints2d_obs[..., :2] # (N, J, 2) +# pixel_error = torch.sqrt((error**2).sum(dim=-1, keepdim=True)) # (N, J, 1) + +# # Use Smooth L1 (Huber) loss: L2 for small errors, L1 for large errors +# # This prevents gradient explosion while keeping strong gradients for normal errors +# # Beta=1000 means: errors <1000px get L2 (strong gradients), errors >1000px get L1 (bounded) +# beta = 1000.0 # Transition point: L2 below, L1 above + +# smooth_l1 = torch.nn.functional.smooth_l1_loss( +# joints2d_pred, +# joints2d_obs[..., :2], +# reduction='none', +# beta=beta +# ) # (N, J, 2) + +# sqr_dist = smooth_l1 + +# # DEBUG +# print(f'Pixel errors: mean={pixel_error.mean():.1f}, max={pixel_error.max():.1f}, median={pixel_error.median():.1f}') +# num_large = (pixel_error > beta).sum().item() +# print(f'L2 loss for {pixel_error.numel() - num_large}/{pixel_error.numel()} joints, L1 for {num_large} large >{beta}px') +# print(f'Loss stats: mean={sqr_dist.mean():.2f}, max={sqr_dist.max():.2f}') + +# # Weight by confidence and compute loss +# reproj_err = (joints2d_obs_conf**2) * sqr_dist +# reproj_err = torch.clamp(reproj_err, max=1000) +# loss = torch.mean(reproj_err) +# return loss + + +class Points3DLoss(nn.Module): + def __init__( + self, + use_chamfer=False, + robust_loss="bisquare", + robust_tuning_const=4.6851, + ): + super().__init__() + + if not use_chamfer: + self.active = False + return + + self.active = True + + robust_choices = ["none", "bisquare", "gm"] + if robust_loss not in robust_choices: + Logger.log( + "Not a valid robust loss: %s. Please use %s" + % (robust_loss, str(robust_choices)) + ) + exit() + + from utils.chamfer_distance import ChamferDistance + + self.chamfer_dist = ChamferDistance() + + self.robust_loss = robust_loss + self.robust_tuning_const = robust_tuning_const + + def forward(self, points3d_obs, points3d_pred): + if not self.active: + return torch.tensor(0.0, dtype=torch.float32, device=points3d_obs.device) + + # one-way chamfer + B, T, N_obs, _ = points3d_obs.size() + N_pred = points3d_pred.size(2) + points3d_obs = points3d_obs.reshape((B * T, -1, 3)) + points3d_pred = points3d_pred.reshape((B * T, -1, 3)) + + obs2pred_sqr_dist, pred2obs_sqr_dist = self.chamfer_dist( + points3d_obs, points3d_pred + ) + obs2pred_sqr_dist = obs2pred_sqr_dist.reshape((B, T * N_obs)) + pred2obs_sqr_dist = pred2obs_sqr_dist.reshape((B, T * N_pred)) + + weighted_obs2pred_sqr_dist, w = apply_robust_weighting( + obs2pred_sqr_dist.sqrt(), + robust_loss_type=self.robust_loss, + robust_tuning_const=self.robust_tuning_const, + ) + + loss = torch.sum(weighted_obs2pred_sqr_dist) + loss = 0.5 * loss + return loss + + +###################### +# losses +###################### +class GeneralContactLoss(nn.Module): + def __init__( + self, + faces, + region_aggregation_type: str = 'sum', + squared_dist: bool = False, + model_type: str = 'mano', + body_model_utils_folder: str = 'body_model_utils', + **kwargs + ): + super().__init__() + """ + Compute intersection and contact between two meshes and resolves. + """ + + self.region_aggregation_type = region_aggregation_type + self.squared = squared_dist + + self.criterion = self.init_loss() + + # create extra vertex and faces to close back of the mouth to maske + # the mano mesh watertight. + self.model_type = model_type + + if self.model_type == 'mano': + # add faces that make the hand mesh watertight + faces_new = torch.tensor([[92, 38, 234], + [234, 38, 239], + [38, 122, 239], + [239, 122, 279], + [122, 118, 279], + [279, 118, 215], + [118, 117, 215], + [215, 117, 214], + [117, 119, 214], + [214, 119, 121], + [119, 120, 121], + [121, 120, 78], + [120, 108, 78], + [78, 108, 79]]) + + r_faces = torch.cat([faces, faces_new.to(faces.device)], dim=0) + l_faces = r_faces[:,[0,2,1]].clone() + + self.register_buffer('l_faces', l_faces) + self.register_buffer('r_faces', r_faces) + + # low resolution mesh + # inner_mouth_verts_path = f'{body_model_utils_folder}/lowres_{model_type}.pkl' + # self.low_res_mesh = pickle.load(open(inner_mouth_verts_path, 'rb')) + + # def close_mouth(self, v): + # mv = torch.mean(v[:,self.vert_ids_wt,:], 1, keepdim=True) + # v = torch.cat((v, mv), 1) + # return v + + def to_lowres(self, v, is_right): + v = v + if is_right == 0: + t = v[:,self.l_faces,:] + elif is_right == 1: + t = v[:,self.r_faces,:] + else: + raise ValueError + + return v, t + + def init_loss(self): + def loss_func(v1, v2, factor=100, wn_batch=True): + """ + Compute loss between region r1 on meshes v1 and + region r2 on mesh v2. + """ + + nn = 1000 + + loss = torch.tensor(0.0, device=v1.device) + + if wn_batch: + # close mouth for self-intersection test + v1l, t1l = self.to_lowres(v1, 0) + v2l, t2l = self.to_lowres(v2, 1) + + # compute intersection between v1 and v2 + # print(v1.shape, t1l.shape) + # exit() + interior_v1 = winding_numbers(v1, t2l).ge(0.99) + interior_v2 = winding_numbers(v2, t1l).ge(0.99) + + # visu results + # if True: + # import trimesh + # mesh = trimesh.Trimesh( + # vertices=v2l[0].detach().cpu().numpy(), + # faces=self.l_faces.cpu().numpy().astype(np.int32), + # ) + # col = 255 * np.ones((778, 4)) + # inside_idx = torch.where(interior_v2[0])[0].detach().cpu().numpy() + # col[inside_idx] = [0, 255, 0, 255] + # mesh.visual.vertex_colors = col + # _ = mesh.export('/vol/bitbucket/zy3023/code/hand/slam-hand//interior_v2_lowres.obj') + + # vmc = v1 # self.close_mouth(v1) + # mesh = trimesh.Trimesh(vertices=vmc[0].detach().cpu().numpy(), faces=self.l_faces.cpu().numpy()) + # col = 255 * np.ones((778, 4)) + # inside_idx = torch.where(interior_v1[0])[0].detach().cpu().numpy() + # col[inside_idx] = [255, 0, 0, 255] + # mesh.visual.vertex_colors = col + # _ = mesh.export('/vol/bitbucket/zy3023/code/hand/slam-hand//interior_v1_highres.obj') + + # # Other direction + # mesh = trimesh.Trimesh( + # vertices=v1l[0].detach().cpu().numpy(), + # faces=self.r_faces.cpu().numpy().astype(np.int32), + # ) + # col = 255 * np.ones((778, 4)) + # inside_idx = torch.where(interior_v1[0])[0].detach().cpu().numpy() + # col[inside_idx] = [0, 255, 0, 255] + # mesh.visual.vertex_colors = col + # _ = mesh.export('/vol/bitbucket/zy3023/code/hand/slam-hand//interior_v1_lowres.obj') + + # vmc = v2 # self.close_mouth(v2) + # mesh = trimesh.Trimesh(vertices=vmc[0].detach().cpu().numpy(), faces=self.r_faces.cpu().numpy()) + # col = 255 * np.ones((778, 4)) + # inside_idx = torch.where(interior_v2[0])[0].detach().cpu().numpy() + # col[inside_idx] = [255, 0, 0, 255] + # mesh.visual.vertex_colors = col + # _ = mesh.export('/vol/bitbucket/zy3023/code/hand/slam-hand//interior_v2_highres.obj') + # exit() + + batch_losses = [] + for bidx in range(v1.shape[0]): + if not wn_batch: + # close mouth for self-intersection test + v1l, t1l = self.to_lowres(v1[[bidx]], nn) + v2l, t2l = self.to_lowres(v2[[bidx]], nn) + + # compute intersection between v1 and v2 + curr_interior_v1 = winding_numbers(v1[[bidx]], t2l.detach()).ge(0.99)[0] + curr_interior_v2 = winding_numbers(v2[[bidx]], t1l.detach()).ge(0.99)[0] + crit_v1, crit_v2 = torch.any(curr_interior_v1), torch.any(curr_interior_v2) + else: + curr_interior_v1 = interior_v1[bidx] + curr_interior_v2 = interior_v2[bidx] + crit_v1, crit_v2 = torch.any(interior_v1[bidx]), torch.any(interior_v2[bidx]) + + bloss = torch.tensor(0.0, device=v1.device) + if crit_v1 and crit_v2: + # find vertices that are close to each other between v1 and v2 + #squared_dist = pcl_pcl_pairwise_distance( + # v1[:,interior_v1[bidx],:], v2[:, interior_v2[bidx], :], squared=self.squared + #) + squared_dist_v1v2 = pcl_pcl_pairwise_distance( + v1[[[bidx]],curr_interior_v1,:], v2[[bidx]], squared=self.squared) + squared_dist_v2v1 = pcl_pcl_pairwise_distance( + v2[[[bidx]], curr_interior_v2, :], v1[[bidx]], squared=self.squared) + + v1_to_v2 = (squared_dist_v1v2[0].min(1)[0] * factor)**2 + #v1_to_v2 = 10.0 * (torch.tanh(v1_to_v2 / 10.0)**2) + bloss += v1_to_v2.sum() + + v2_to_v1 = (squared_dist_v2v1[0].min(1)[0] * factor)**2 + #v2_to_v1 = 10.0 * (torch.tanh(v2_to_v1 / 10.0)**2) + bloss += v2_to_v1.sum() + + batch_losses.append(bloss) + + # compute loss + if len(batch_losses) > 0: + loss = sum(batch_losses) / len(batch_losses) + + #if loss > 1.0: + # import ipdb; ipdb.set_trace() + + return loss + + return loss_func + + def forward(self, **args): + losses = self.criterion(**args) + return losses + +def pose_prior_loss(latent_pose_pred, latent_pose_init=None, mask=None): + """ + :param latent_pose_pred (B, T, D) - optimized latent pose + :param latent_pose_init (optional) (B, T, D) - initial HaMeR prediction + :param mask (optional) (B, T) + """ + if latent_pose_init is not None: + # Penalize deviation from original HaMeR prediction + loss = (latent_pose_pred - latent_pose_init)**2 + else: + # Fallback: prior is isotropic gaussian so take L2 distance from 0 + loss = latent_pose_pred**2 + + if mask is not None: + loss = loss[mask.bool()] + loss = torch.sum(loss) + return loss + + +def shape_prior_loss(betas_pred): + # prior is isotropic gaussian so take L2 distance from 0 + loss = betas_pred**2 + loss = torch.sum(loss) + return loss + + +def joints3d_smooth_loss(joints3d_pred, mask=None, normalize_by_scale=True): + """ + :param joints3d_pred (B, T, J, 3) + :param mask (optional) (B, T) + :param normalize_by_scale: If True, normalize by hand scale for size-invariance + """ + # Safety check: detect NaN in predictions before computing loss + if torch.isnan(joints3d_pred).any() or torch.isinf(joints3d_pred).any(): + print(f"ERROR: joints3d_pred contains NaN or Inf in smooth loss!") + print(f" NaN count: {torch.isnan(joints3d_pred).sum().item()}") + return torch.tensor(1e8, device=joints3d_pred.device, requires_grad=True) + + B, T, *dims = joints3d_pred.shape + + # Normalize by hand scale FIRST to make loss size-invariant + if normalize_by_scale: + # Estimate hand scale from 3D joint positions at each frame + # Use bbox of joints as scale reference + joints_min = joints3d_pred.min(dim=2, keepdim=True)[0] # (B, T, 1, 3) + joints_max = joints3d_pred.max(dim=2, keepdim=True)[0] # (B, T, 1, 3) + hand_scale = torch.sqrt(((joints_max - joints_min) ** 2).sum(dim=-1, keepdim=True)) # (B, T, 1, 1) + + # Safety check: detect invalid/degenerate cases + if torch.isnan(hand_scale).any() or torch.isinf(hand_scale).any() or (hand_scale < 0.001).any(): + print(f"ERROR: Invalid hand_scale in joints3d_smooth! min={hand_scale.min():.4f}, max={hand_scale.max():.4f}") + print(f" This indicates MANO produced degenerate 3D output") + # Return a large constant loss + return torch.tensor(1e6, device=hand_scale.device, requires_grad=True) + + # Clamp to reasonable range (0.001m - 1m for hand size) + hand_scale = torch.clamp(hand_scale, min=0.001, max=1.0) + + # Normalize joints FIRST by their own scale at each frame (same as joints2d) + joints3d_pred_normalized = joints3d_pred / hand_scale # (B, T, J, 3) - same scale factor as joints2d + else: + joints3d_pred_normalized = joints3d_pred + + # Now compute delta on normalized joints + delta = joints3d_pred_normalized[:, 1:, :, :] - joints3d_pred_normalized[:, :-1, :, :] # (B, T-1, J, 3) + + loss = delta ** 2 + if mask is not None: + mask = mask.bool() + mask = mask[:, 1:] & mask[:, :-1] + loss = loss[mask] + + loss = torch.mean(loss, dim=0) + loss = 0.5 * torch.sum(loss) + return loss + +# def motion_prior_loss(latent_motion_pred, cond_prior=None, mask=None): +# """ +# :param latent_motion_pred (B, T, D) +# :param cond_prior (optional) (B, T, D, 2) stacked mean and var of post distribution +# :param mask (optional) (B, T) +# """ +# if mask is not None: +# latent_motion_pred = latent_motion_pred[mask.bool()] + +# if cond_prior is None: +# # assume standard normal +# loss = latent_motion_pred**2 +# else: +# pm, pv = cond_prior[..., 0], cond_prior[..., 1] +# if mask is not None: +# mask = mask.bool() +# pm, pv = pm[mask], pv[mask] +# loss = -log_normal(latent_motion_pred, pm, pv) + +# return torch.sum(loss) + +# class GMMPriorLoss(nn.Module): +# def __init__(self, init_motion_prior=None): +# super().__init__() +# if init_motion_prior is None: +# self.active = False +# return + +# # build pytorch GMM +# self.active = True +# self.init_motion_prior = dict() +# gmm = build_gmm(*init_motion_prior["gmm"]) +# self.init_motion_prior["gmm"] = gmm + +# def forward(self, joints, joints_vel, trans_vel, root_orient_vel): +# if not self.active: +# return torch.tensor(0.0, dtype=torch.float32, device=joints.device) + +# # create input +# B = joints.size(0) + +# joints = joints.reshape((B, -1)) +# joints_vel = joints_vel.reshape((B, -1)) +# trans_vel = trans_vel.reshape((B, -1)) +# root_orient_vel = root_orient_vel.reshape((B, -1)) +# init_state = torch.cat([joints, joints_vel, trans_vel, root_orient_vel], dim=-1) + +# loss = -self.init_motion_prior["gmm"].log_prob(init_state) +# loss = torch.sum(loss) + +# return loss + + +# def build_gmm(gmm_weights, gmm_means, gmm_covs): +# mix = Categorical(gmm_weights) +# comp = MultivariateNormal(gmm_means, covariance_matrix=gmm_covs) +# gmm_distrib = MixtureSameFamily(mix, comp) +# return gmm_distrib + + +# def joint_consistency_loss(smpl_joints3d, rollout_joints3d, mask=None): +# """ +# :param smpl_joints3d (B, T, J, 3) +# :param rollout_joints3d (B, T, J, 3) +# :param mask (optional) (B, T) +# """ +# loss = (smpl_joints3d - rollout_joints3d) ** 2 +# if mask is not None: +# loss = loss[mask.bool()] +# loss = 0.5 * torch.sum(loss) +# return loss + + +# def bone_length_loss(rollout_joints3d, mask=None): +# bones = rollout_joints3d[:, :, 1:] +# parents = rollout_joints3d[:, :, SMPL_PARENTS[1:]] +# bone_lengths = torch.norm(bones - parents, dim=-1) +# loss = bone_lengths[:, 1:] - bone_lengths[:, :-1] +# if mask is not None: +# mask = mask.bool() +# mask = mask[:, 1:] & mask[:, :-1] +# loss = loss[mask] +# loss = 0.5 * torch.sum(loss**2) +# return loss + + +def kl_normal(qm, qv, pm, pv): + """ + Computes the elem-wise KL divergence between two normal distributions KL(q || p) and + sum over the last dimension + ​ + Args: + qm: tensor: (batch, dim): q mean + qv: tensor: (batch, dim): q variance + pm: tensor: (batch, dim): p mean + pv: tensor: (batch, dim): p variance + ​ + Return: + kl: tensor: (batch,): kl between each sample + """ + element_wise = 0.5 * ( + torch.log(pv) - torch.log(qv) + qv / pv + (qm - pm).pow(2) / pv - 1 + ) + kl = element_wise.sum(-1) + return kl + + +def log_normal(x, m, v): + """ + Computes the elem-wise log probability of a Gaussian and then sum over the + last dim. Basically we're assuming all dims are batch dims except for the + last dim. Args: + x: tensor: (batch_1, batch_2, ..., batch_k, dim): Observation + m: tensor: (batch_1, batch_2, ..., batch_k, dim): Mean + v: tensor: (batch_1, batch_2, ..., batch_k, dim): Variance Return: + log_prob: tensor: (batch_1, batch_2, ..., batch_k): log probability of + each sample. Note that the summation dimension is not kept + """ + log_prob = ( + -torch.log(torch.sqrt(v)) + - math.log(math.sqrt(2 * math.pi)) + - ((x - m) ** 2 / (2 * v)) + ) + log_prob = torch.sum(log_prob, dim=-1) + return log_prob + + +def apply_robust_weighting( + res, robust_loss_type="bisquare", robust_tuning_const=4.6851 +): + """ + Returns robustly weighted squared residuals. + - res : torch.Tensor (B x N), take the MAD over each batch dimension independently. + """ + robust_choices = ["none", "bisquare"] + if robust_loss_type not in robust_choices: + print( + "Not a valid robust loss: %s. Please use %s" + % (robust_loss_type, str(robust_choices)) + ) + + w = None + detach_res = ( + res.clone().detach() + ) # don't want gradients flowing through the weights to avoid degeneracy + if robust_loss_type == "none": + w = torch.ones_like(detach_res) + elif robust_loss_type == "bisquare": + w = bisquare_robust_weights(detach_res, tune_const=robust_tuning_const) + + # apply weights to squared residuals + weighted_sqr_res = w * (res**2) + return weighted_sqr_res, w + + +def robust_std(res): + """ + Compute robust estimate of standarad deviation using median absolute deviation (MAD) + of the given residuals independently over each batch dimension. + + - res : (B x N) + + Returns: + - std : B x 1 + """ + B = res.size(0) + med = torch.median(res, dim=-1)[0].reshape((B, 1)) + abs_dev = torch.abs(res - med) + MAD = torch.median(abs_dev, dim=-1)[0].reshape((B, 1)) + std = MAD / 0.67449 + return std + + +def bisquare_robust_weights(res, tune_const=4.6851): + """ + Bisquare (Tukey) loss. + See https://www.mathworks.com/help/curvefit/least-squares-fitting.html + + - residuals + """ + # print(res.size()) + norm_res = res / (robust_std(res) * tune_const) + # NOTE: this should use absolute value, it's ok right now since only used for 3d point cloud residuals + # which are guaranteed positive, but generally this won't work) + outlier_mask = norm_res >= 1.0 + + # print(torch.sum(outlier_mask)) + # print('Outlier frac: %f' % (float(torch.sum(outlier_mask)) / res.size(1))) + + w = (1.0 - norm_res**2) ** 2 + w[outlier_mask] = 0.0 + + return w + + +def gmof(res, sigma): + """ + Geman-McClure error function + - residual + - sigma scaling factor + """ + x_squared = res**2 + sigma_squared = sigma**2 + return (sigma_squared * x_squared) / (sigma_squared + x_squared) diff --git a/examples/mano_hand_retargeter/optim/moving_scene.py b/examples/mano_hand_retargeter/optim/moving_scene.py new file mode 100644 index 000000000..6ded28d06 --- /dev/null +++ b/examples/mano_hand_retargeter/optim/moving_scene.py @@ -0,0 +1,727 @@ +import os +import numpy as np + +import torch +import torch.nn as nn +import torch.nn.functional as F + +from body_model import MANO_JOINTS, KEYPT_VERTS, smpl_to_openpose +from geometry.rotation import batch_rodrigues, rotation_matrix_to_angle_axis +from util.logger import Logger +from util.tensor import ( + detach_all, + scatter_intervals, + select_intervals, + get_scatter_mask, +) + +from .base_scene import BaseSceneModel +from .helpers import compute_world2prior, estimate_floor_planes + + +J_BODY = len(MANO_JOINTS) - 1 # no root +CONTACT_ORDERING = [ + "hips", + "leftLeg", + "rightLeg", + "leftFoot", + "rightFoot", + "leftToeBase", + "rightToeBase", + "leftHand", + "rightHand", +] +CONTACT_INDS = [MANO_JOINTS[jname] for jname in CONTACT_ORDERING] +CONTACT_THRESH = 0.5 + + +class MovingSceneModel(BaseSceneModel): + """ + Scene model of moving people in a shared global reference frame + + Parameters: + batch_size: number of sequences to optimize + seq_len: length of the sequences + pose_prior: VPoser model + motion_prior: humor model + init_motion_prior: dict of GMM params to use for prior on initial motion state + shared_floor: (default True) if true, sequences are in the same reference frame + fit_gender: (optional) gender of SMPL model + """ + + def __init__( + self, + batch_size, + seq_len, + body_model, + pose_prior, + motion_prior, + init_motion_prior=None, + fit_gender="neutral", + use_init=False, + opt_cams=False, + opt_scale=True, + cam_graph=False, + est_floor=True, + floor_type="shared", + async_tracks=True, + **kwargs, + ): + super().__init__( + batch_size, + seq_len, + body_model, + pose_prior, + fit_gender=fit_gender, + use_init=use_init, + opt_cams=opt_cams, + opt_scale=opt_scale, + cam_graph=cam_graph, + ) + assert motion_prior is not None + assert motion_prior.model_data_config in [ + "mano+joints", + "mano+joints+contacts", + ], "Only mano+joints motion prior configuration is supported!" + + self.motion_prior = motion_prior + self.init_motion_prior = init_motion_prior + + # need latent dynamics sequence as well + self.latent_motion_dim = self.motion_prior.latent_size + self.cond_prior = self.motion_prior.use_conditional_prior + assert self.cond_prior + + # the frame chosen to use for the initial state (first frame by default) + self.async_tracks = async_tracks + self.register_buffer("track_start", torch.zeros(self.batch_size)) + self.register_buffer("track_end", torch.ones(self.batch_size) * self.seq_len) + + self.shared_floor = floor_type == "shared" + self.group_floor = floor_type == "group" + self.floor_type = floor_type + print("FLOOR TYPE", floor_type) + self.est_floor = est_floor + + @property + def is_motion_active(self): + return hasattr(self.params, "latent_motion") + + def initialize(self, obs_data, cam_data, param_dict, data_fps): + """ + we need to also optimize for floor and world scale + """ + Logger.log("Initializing moving scene model with observed data") + + self.params.set_cameras( + cam_data, + opt_scale=self.opt_scale, + opt_cams=self.opt_cams, + opt_focal=self.opt_cams, + **param_dict, + ) + # self.init_floor(obs_data, param_dict) + self.init_first_state(obs_data, param_dict, data_fps) + + # def init_floor(self, obs_data, param_dict): + # if self.est_floor or self.group_floor: + # with torch.no_grad(): + # smpl_preds = self.pred_mano( + # param_dict["trans"], + # param_dict["root_orient"], + # self.latent2pose(param_dict["latent_pose"]), + # param_dict["betas"], + # ) + # floor_plane, floor_idcs = estimate_floor_planes( + # smpl_preds["joints3d"].detach(), + # obs_data["vis_mask"] > 0, + # group=self.group_floor, + # flatten=self.shared_floor, + # ) + # if self.group_floor and not self.est_floor: + # # don't use the estimated floor as initial plane + # floor_plane = obs_data["floor_plane"][: len(floor_plane)] + # else: # fixed shared or separate floors + # num_floors = 1 if self.shared_floor else self.batch_size + # floor_plane = obs_data["floor_plane"][:num_floors] + # if self.shared_floor: + # floor_idcs = torch.zeros( + # self.batch_size, dtype=torch.long, device=floor_plane.device + # ) + # else: + # floor_idcs = torch.arange( + # self.batch_size, dtype=torch.long, device=floor_plane.device + # ) + + # Logger.log(f"ESTIMATED FLOORS: {str(floor_plane.detach().cpu())}") + # Logger.log(f"FLOOR IDCS: {str(floor_idcs.detach().cpu())}") + # self.params.set_param("floor_plane", floor_plane.float().detach()) + # self.params.set_param( + # "floor_idcs", floor_idcs.long().detach(), requires_grad=False + # ) + + def init_first_state(self, obs_data, param_dict, data_fps): + """ + initialize the latent motion and first state of each track + using per-frame trajectories of trans, rot, latent_pose, betas + and observed data + """ + B, T = self.batch_size, self.seq_len + param_dict = detach_all(param_dict) + + # select the valid segments of each track; pad the shorter tracks with final element + if self.async_tracks and "track_interval" in obs_data: + print("asynchronous tracks") + interval = obs_data["track_interval"] # (B, 2) + start, end = interval[:, 0], interval[:, 1] + self.track_start, self.track_end = start, end + param_dict = select_dict_segments( + param_dict, start, end, names=["trans", "root_orient", "latent_pose"] + ) + + trans = param_dict["trans"] # (B, T, 3) + root_orient = param_dict["root_orient"] # (B, T, 3) + latent_pose = param_dict["latent_pose"] # (B, T, D) + betas = param_dict["betas"] # (B, b) + + Logger.log(f"SEL TRACKS {trans.shape}, {root_orient.shape}") + + # save each track's first appearance + self.params.set_param("trans", trans[:, :1]) + Logger.log(f"INITIAL TRANS {trans[:, :1].detach().cpu()}") + self.params.set_param("root_orient", root_orient[:, :1]) + self.params.set_param("latent_pose", latent_pose[:, :1]) + self.params.set_param("betas", betas) + + # pass the current pose estimates through the motion prior + self.data_fps = data_fps + body_pose = self.latent2pose(latent_pose) + init_latent = self.infer_latent_motion( + trans, root_orient, body_pose, betas, data_fps + ).detach() # (B, T-1, D) + self.params.set_param("latent_motion", init_latent) + + # estimate velocities in prior frame and save initial state + trans_vel, joints_vel, root_orient_vel = self.estimate_prior_velocities( + trans, root_orient, body_pose, betas, data_fps + ) + self.params.set_param("trans_vel", trans_vel[:, :1].detach()) + self.params.set_param("joints_vel", joints_vel[:, :1].detach()) + self.params.set_param("root_orient_vel", root_orient_vel[:, :1].detach()) + + def get_optim_result(self, num_steps=-1): + res = super().get_optim_result() + if not self.is_motion_active: + return res + + num_steps = self.seq_len if num_steps < 0 else num_steps + prior_res, world_res = self.rollout_latent_motion( + self.params.latent_motion[:, : num_steps - 1] + ) + world_res = self.synchronize_preds(world_res, num_steps) + res["world"].update(world_res) + + prior_res = self.synchronize_preds(prior_res, num_steps) + res["prior"] = prior_res + return res + + def estimate_prior_velocities(self, trans, root_orient, body_pose, betas, data_fps): + """ + compute velocities of trajectory in prior frame (not world frame) + Transforms the first of each track into the prior frame + :param trans (B, T, 3) + :param root_orient (B, T, 3) + :param body_pose (B, T, Dp) + :param betas (B, Db) + """ + with torch.no_grad(): + self.update_world2prior(trans, root_orient, body_pose, betas) + trans, root_orient = self.apply_world2prior( + trans, root_orient, body_pose, betas + ) + mano_results = self.pred_mano(trans, root_orient, body_pose, betas) + return estimate_velocities( + trans, root_orient, mano_results["joints3d"], data_fps + ) + + def update_world2prior(self, trans, root_orient, body_pose, betas): + B = trans.shape[0] + mano_data = self.pred_mano( + trans[:, :1], root_orient[:, :1], body_pose[:, :1], betas + ) + floor_plane = self.params.floor_plane[self.params.floor_idcs] + R, t, height = compute_world2prior( + floor_plane, + trans[:, 0], + root_orient[:, 0], + mano_data["joints3d"][:, 0, 0], + ) + self.world2prior_R = R # (B, 3, 3) + self.world2prior_t = t # (B, 3) + self.world2prior_root_height = height # (B) + + def apply_world2prior(self, trans, root_orient, body_pose, betas, inverse=False): + """ + Applies the world2prior tranformation to trans, root_orient + If T=1, this function assumes they are at key_frame_idx, + which we need to compute the offset from the origin + :param trans (B, T, 3) + :param root_orient (B, T, 3) + :param body_pose (B, T, J, 3) + :param betas (B, b) + :param inverse (bool) optional, default False + """ + B, T, _ = trans.size() + # (B, 3, 3), (B, 3), (B) + R, t, root_height = ( + self.world2prior_R, + self.world2prior_t, + self.world2prior_root_height, + ) + R_time = R.unsqueeze(1).expand((B, T, 3, 3)) + t_time = t.unsqueeze(1).expand((B, T, 3)) + root_orient_mat = batch_rodrigues(root_orient.reshape(-1, 3)).reshape( + B, T, 3, 3 + ) + + if inverse: + R_time = R_time.transpose(-1, -2) + + root_orient_mat = torch.matmul(R_time, root_orient_mat) + root_orient = rotation_matrix_to_angle_axis( + root_orient_mat.reshape(B * T, 3, 3) + ).reshape(B, T, 3) + + if inverse: + # transform so first frame is at origin + trans = trans - trans[:, :1, :] + + # rotates to world frame + trans = torch.matmul(R_time, trans[..., None])[..., 0] + # translate to world frame + trans = trans - t_time + + return trans, root_orient + + # first transform so the trans of key frame is at origin + trans = trans + t_time + # then rotate to canonical frame + trans = torch.matmul(R_time, trans[..., None])[..., 0] + # compute the root height after transforming + cur_smpl_data = self.pred_mano(trans, root_orient, body_pose, betas) + cur_root_height = cur_smpl_data["joints3d"][:, 0, 0, 2:3] + # then apply floor offset so the root joint is at root_height + height_diff = root_height - cur_root_height + trans_offset = torch.cat( + [torch.zeros((B, 2)).to(height_diff), height_diff], axis=1 + ) + trans = trans + trans_offset.reshape((B, 1, 3)) + + return trans, root_orient + + def convert_prior_rot_inputs(self, root_orient, body_pose): + # convert rots + # body pose and root orient are both in aa + B, T = root_orient.shape[:2] + if ( + self.motion_prior.in_rot_rep == "mat" + or self.motion_prior.in_rot_rep == "6d" + ): + root_orient_in = batch_rodrigues(root_orient.reshape(-1, 3)).reshape( + (B, T, 9) + ) + body_pose_in = batch_rodrigues(body_pose.reshape(-1, 3)).reshape( + (B, T, J_BODY * 9) + ) + if self.motion_prior.in_rot_rep == "6d": + root_orient_in = root_orient[:, :, :6] + body_pose_in = body_pose.reshape((B, T, J_BODY, 9))[:, :, :, :6].reshape( + (B, T, J_BODY * 6) + ) + return root_orient_in, body_pose_in + + def convert_prior_rot_outputs(self, out_dict): + keys = ["root_orient", "pose_body"] + for k in keys: + out = out_dict[k] + B, T = out.shape[:2] + out_dict[k] = rotation_matrix_to_angle_axis( + out.reshape((-1, 3, 3)) + ).reshape((B, T, -1)) + return out_dict + + def infer_latent_motion( + self, trans, root_orient, body_pose, betas, data_fps, full_forward_pass=False + ): + """ + By default, gets a sequence of z's from the current SMPL optim params. + + If full_forward_pass is true, also samples from the posterior and feeds + through the motion prior decoder to get all terms needed to calculate the ELBO. + """ + B, T, _ = trans.size() + h = 1.0 / data_fps + + # need to first transform into canonical coordinate frame + self.update_world2prior(trans, root_orient, body_pose, betas) + trans, root_orient = self.apply_world2prior( + trans, root_orient, body_pose, betas + ) + + mano_results = self.pred_mano(trans, root_orient, body_pose, betas) + joints = mano_results["joints3d"] # (B, T, len(MANO_JOINTS), 3) + trans_vel, joints_vel, root_orient_vel = estimate_velocities( + trans, root_orient, joints, data_fps + ) + + root_orient_in, body_pose_in = self.convert_prior_rot_inputs( + root_orient, body_pose + ) + joints_in = joints.reshape((B, T, -1)) + joints_vel_in = joints_vel.reshape((B, T, -1)) + + seq_dict = { + "trans": trans, + "trans_vel": trans_vel, + "root_orient": root_orient_in, + "root_orient_vel": root_orient_vel, + "pose_body": body_pose_in, + "joints": joints_in, + "joints_vel": joints_vel_in, + } + + infer_results = self.motion_prior.infer_global_seq( + seq_dict, full_forward_pass=full_forward_pass + ) + if full_forward_pass: + # return both the given motion and the one from the forward pass + # make sure rotations are matrix + # NOTE: assumes seq_dict is same thing we want to compute loss on + # Need to change if multiple future steps. + if self.motion_prior.in_rot_rep != "mat": + seq_dict["trans"] = batch_rodrigues(root_orient.reshape(-1, 3)).reshape( + (B, T, 9) + ) + seq_dict["pose_body"] = batch_rodrigues( + body_pose.reshape(-1, 3) + ).reshape((B, T, J_BODY * 9)) + # do not need initial step anymore since output will be T-1 + for k, v in seq_dict.items(): + seq_dict[k] = v[:, 1:] + for k in infer_results.keys(): + if k != "posterior_distrib" and k != "prior_distrib": + infer_results[k] = infer_results[k][ + :, :, 0 + ] # only want first output step + infer_results = (seq_dict, infer_results) + else: + prior_z, posterior_z = infer_results + infer_results = posterior_z[0] # mean of the approximate posterior + + return infer_results + + def rollout_mano_steps(self, num_steps=-1): + # rollout motion given initial state + num_steps = self.seq_len if num_steps < 0 else num_steps + latent_motion = self.params.latent_motion[:, : num_steps - 1] + + # roll out tracks from their first appearances + # NOTE rolled out tracks are unsynced in time + res, world_res = self.rollout_latent_motion( + latent_motion, return_prior=self.cond_prior + ) + + # get the smpl predictions for the unsynced tracks + preds = self.pred_mano( + res["trans"], res["root_orient"], res["pose_body"], res["betas"] + ) + world_preds = self.pred_mano( + world_res["trans"], + world_res["root_orient"], + world_res["pose_body"], + world_res["betas"], + ) + + # pass along relevant results + preds["joints3d_rollout"] = res["joints"] + preds["latent_pose"] = self.pose2latent(res["pose_body"]) + preds["joints3d_init"] = preds["joints3d"][:, :1] + + if "contacts" in res: + preds["contacts"] = res["contacts"] + if "contacts_conf" in res: + preds["contacts_conf"] = res["contacts_conf"] + + # synchronize the tracklets to the same timesteps + preds = self.synchronize_preds(preds, num_steps) + world_preds = self.synchronize_preds(world_preds, num_steps) + + # pass along unsynchronized motion latents + preds["latent_motion"] = latent_motion + if "cond_prior" in res: + preds["cond_prior"] = res["cond_prior"] + + return preds, world_preds + + def rollout_latent_motion( + self, + latent_motion, + return_prior=False, + return_vel=False, + num_steps=-1, + canonicalize_input=False, + ): + """ + From the stored initial state, rolls out a sequence from the latent_motion vector + NOTE: the stored initial states are not at the same time step, but we return all + predicted sequences starting from time 0. + + If latent_motion is None, samples num_steps into the future sequence from the prior. + using the mean of the prior rather than random samples. + + If canonicalize_input is True, transform the initial state into the local canonical + frame before roll out + """ + # get the first frame state + # NOTE: first states do not occur at same time step + trans, root_orient, betas = ( + self.params.trans, + self.params.root_orient, + self.params.betas, + ) + trans_vel, root_orient_vel, joints_vel = ( + self.params.trans_vel, + self.params.root_orient_vel, + self.params.joints_vel, + ) + body_pose = self.latent2pose(self.params.latent_pose) + + B = trans.size(0) + is_sampling = latent_motion is None + Tm1 = num_steps if latent_motion is None else latent_motion.size(1) + if is_sampling and Tm1 <= 0: + Logger.log("num_steps must be positive to sample!") + exit() + + # need to first transform initial state into canonical coordinate frame + self.update_world2prior(trans, root_orient, body_pose, betas) + trans, root_orient = self.apply_world2prior( + trans, root_orient, body_pose, betas + ) + + smpl_results = self.pred_mano(trans, root_orient, body_pose, betas) + joints = smpl_results["joints3d"] # (B, T, len(MANO_JOINTS), 3) + + # update to correct rotations for input + root_orient_in, body_pose_in = self.convert_prior_rot_inputs( + root_orient, body_pose + ) + joints_in = joints.reshape((B, 1, -1)) + joints_vel_in = joints_vel.reshape((B, 1, -1)) + + rollout_in_dict = { + "trans": trans, + "root_orient": root_orient_in, + "pose_body": body_pose_in, + "joints": joints_in, + "trans_vel": trans_vel, + "root_orient_vel": root_orient_vel, + "joints_vel": joints_vel_in, + } + + roll_output = self.motion_prior.roll_out( + None, + rollout_in_dict, + Tm1, + z_seq=latent_motion, + return_prior=return_prior, + return_z=is_sampling, + canonicalize_input=canonicalize_input, + gender=[self.fit_gender] * B, + betas=betas.reshape((B, 1, -1)), + ) + + pred_dict = prior_out = None + if return_prior: + pred_dict, prior_out = roll_output + else: + pred_dict = roll_output + + pred_dict = self.convert_prior_rot_outputs(pred_dict) + + # concat with initial state + trans_out = torch.cat([trans, pred_dict["trans"]], dim=1) + root_orient_out = torch.cat([root_orient, pred_dict["root_orient"]], dim=1) + body_pose_out = torch.cat([body_pose, pred_dict["pose_body"]], dim=1) + joints_out = torch.cat( + [joints, pred_dict["joints"].reshape((B, Tm1, -1, 3))], dim=1 + ) + out_dict = { + "trans": trans_out, + "root_orient": root_orient_out, + "pose_body": body_pose_out, + "joints": joints_out, + "betas": betas, + } + if return_vel: + out_dict["trans_vel"] = torch.cat( + [trans_vel, pred_dict["trans_vel"]], dim=1 + ) + out_dict["root_orient_vel"] = torch.cat( + [root_orient_vel, pred_dict["root_orient_vel"]], dim=1 + ) + out_dict["joints_vel"] = torch.cat( + [joints_vel, pred_dict["joints_vel"].reshape((B, Tm1, -1, 3))], + dim=1, + ) + + if return_prior: # return the mean and var of distribution stacked + pm, pv = prior_out + out_dict["cond_prior"] = torch.stack([pm, pv], dim=-1) + + if self.motion_prior.model_data_config == "smpl+joints+contacts": + pred_contacts = pred_dict["contacts"] + # get binary classification + contact_conf = torch.sigmoid(pred_contacts) + pred_contacts = (contact_conf > CONTACT_THRESH).to(torch.float) + # expand to full body + full_contact_conf = torch.zeros((B, Tm1, len(MANO_JOINTS))).to(contact_conf) + full_contact_conf[:, :, CONTACT_INDS] = ( + full_contact_conf[:, :, CONTACT_INDS] + contact_conf + ) + full_contacts = torch.zeros((B, Tm1, len(MANO_JOINTS))).to(pred_contacts) + full_contacts[:, :, CONTACT_INDS] = ( + full_contacts[:, :, CONTACT_INDS] + pred_contacts + ) + # repeat first entry for t0 + full_contact_conf = torch.cat( + [full_contact_conf[:, 0:1], full_contact_conf], dim=1 + ) + full_contacts = torch.cat([full_contacts[:, 0:1], full_contacts], dim=1) + out_dict["contacts_conf"] = full_contact_conf + out_dict["contacts"] = full_contacts + + if is_sampling: + out_dict["z"] = pred_dict["z"] + + cam_dict = { + "trans": out_dict["trans"], + "root_orient": out_dict["root_orient"], + "pose_body": out_dict["pose_body"], + "betas": out_dict["betas"], + } + + # also must return trans and root orient in camera frame + cam_dict["trans"], cam_dict["root_orient"] = self.apply_world2prior( + out_dict["trans"], + out_dict["root_orient"], + out_dict["pose_body"], + out_dict["betas"], + inverse=True, + ) + return out_dict, cam_dict + + def synchronize_preds(self, pred_dict, seg_len): + """ + synchronize predictions in time, scatter predictions into [0, seq_len) + """ + if not self.async_tracks: + # predictions are already synchronized + return pred_dict, None + + # return time-synchronized predictions + start = self.track_start + end = torch.clip(start + seg_len, max=self.track_end) + T = end.max() + pred_dict = scatter_dict_segments(pred_dict, start, end, T) + pred_mask = get_scatter_mask(start, end, T) + pred_dict["track_mask"] = pred_mask + return pred_dict + + +def scatter_dict_segments(data_dict, start, end, T=None, names=None): + """ + the tracks as they are stored are synchronized by time step + Uses the start and end to synchronize output predictions + """ + sync_dict = data_dict.copy() + min_len = (end - start).min() + if names is None: + names = data_dict.keys() + for name in names: + val = data_dict[name] + if not isinstance(val, torch.Tensor) or val.ndim < 3 or val.shape[1] < min_len: + continue + sync_dict[name] = scatter_intervals(val, start, end, T) + return sync_dict + + +def select_dict_segments(data_dict, start, end, names=None): + out_data_dict = data_dict.copy() + min_len = (end - start).min() + if names is None: + names = data_dict.keys() + for name in names: + val = data_dict[name] + if not isinstance(val, torch.Tensor) or val.ndim < 3 or val.shape[1] < min_len: + continue + # only select for time-series observations + out_data_dict[name] = select_intervals(val, start, end) + return out_data_dict + + +def estimate_velocities(trans, root_orient, joints3d, data_fps): + """ + Estimates velocity inputs to the motion prior. + - trans (B, T, 3) root translation + - root_orient (B, T, 3) aa root orientation + - joints3d (B, T, len(MANO_JOINTS), 3) joints3d of SMPL prediction + """ + B, T, _ = trans.size() + h = 1.0 / data_fps + trans_vel = estimate_linear_velocity(trans, h) + joints_vel = estimate_linear_velocity(joints3d, h) + root_orient_mat = batch_rodrigues(root_orient.reshape((-1, 3))).reshape( + (B, T, 3, 3) + ) + root_orient_vel = estimate_angular_velocity(root_orient_mat, h) + return trans_vel, joints_vel, root_orient_vel + + +def estimate_linear_velocity(data_seq, h): + """ + Given some batched data sequences of T timesteps in the shape (B, T, ...), estimates + the velocity for the middle T-2 steps using a second order central difference scheme. + The first and last frames are with forward and backward first-order + differences, respectively + - h : step size + """ + # first steps is forward diff (t+1 - t) / h + init_vel = (data_seq[:, 1:2] - data_seq[:, :1]) / h + # middle steps are second order (t+1 - t-1) / 2h + middle_vel = (data_seq[:, 2:] - data_seq[:, 0:-2]) / (2 * h) + # last step is backward diff (t - t-1) / h + final_vel = (data_seq[:, -1:] - data_seq[:, -2:-1]) / h + + vel_seq = torch.cat([init_vel, middle_vel, final_vel], dim=1) + return vel_seq + + +def estimate_angular_velocity(rot_seq, h): + """ + Given a batch of sequences of T rotation matrices, estimates angular velocity at T-2 steps. + Input sequence should be of shape (B, T, ..., 3, 3) + """ + # see https://en.wikipedia.org/wiki/Angular_velocity#Calculation_from_the_orientation_matrix + dRdt = estimate_linear_velocity(rot_seq, h) + R = rot_seq + RT = R.transpose(-1, -2) + # compute skew-symmetric angular velocity tensor + w_mat = torch.matmul(dRdt, RT) + # pull out angular velocity vector + # average symmetric entries + w_x = (-w_mat[..., 1, 2] + w_mat[..., 2, 1]) / 2.0 + w_y = (w_mat[..., 0, 2] - w_mat[..., 2, 0]) / 2.0 + w_z = (-w_mat[..., 0, 1] + w_mat[..., 1, 0]) / 2.0 + w = torch.stack([w_x, w_y, w_z], axis=-1) + return w diff --git a/examples/mano_hand_retargeter/optim/optimizers.py b/examples/mano_hand_retargeter/optim/optimizers.py new file mode 100644 index 000000000..a524d71b1 --- /dev/null +++ b/examples/mano_hand_retargeter/optim/optimizers.py @@ -0,0 +1,643 @@ +import os +import glob +import numpy as np +import matplotlib.pyplot as plt + +import torch +import torch.nn as nn +import torch.nn.functional as F +import torch.optim as optim + +from body_model import OP_IGNORE_JOINTS +from geometry.mesh import save_mesh_scenes, vertices_to_trimesh +from util.logger import Logger, log_cur_stats +from util.tensor import move_to, detach_all +from vis.output import prep_result_vis, animate_scene + +from .losses import RootLoss, SMPLLoss #, MotionLoss +from .output import save_camera_json +import time + +LINE_SEARCH = "strong_wolfe" +LIGHT_BLUE=(0.65098039, 0.74117647, 0.85882353) + +""" +Optimization happens in multiple stages +Stage 1: fit root orients and trans of each frame indendpently +Stage 2: fit SMPL poses and betas of each frame independently +Stage 3: fit poses and roots in same global coordinate frame +""" + + +class StageOptimizer(object): + def __init__( + self, + name, + model, + param_names, + lr=1.0, + lbfgs_max_iter=20, + save_every=10, + vis_every=-1, + save_meshes=True, + max_chunk_steps=10, + **kwargs, + ): + Logger.log(f"INITIALIZING OPTIMIZER {name} for {param_names}") + self.name = name + self.model = model + + self.set_opt_vars(param_names) + + self.optim = torch.optim.LBFGS( + self.opt_params, max_iter=lbfgs_max_iter, lr=lr, line_search_fn=LINE_SEARCH + ) + # LBFGS computes losses multiple times per iteration, + # save a dict mapping iteration to list of stats_dicts + self.loss_dicts = {} + + self.save_every = save_every + self.vis_every = vis_every + self.save_meshes = save_meshes + self.max_chunk_steps = max_chunk_steps + + self.cur_step = 0 + + self.add_chunk = 0 + self.cur_loss = 0 + self.prev_loss = np.inf + self.last_updated = 0 + self.reached_max = False + self.reached_max_iter = -1 + + def set_opt_vars(self, param_names): + Logger.log("Set param names:") + Logger.log(param_names) + + self.param_names = param_names + self.model.params.set_require_grads(self.param_names) + self.opt_params = [ + getattr(self.model.params, name) for name in self.param_names + ] + + def forward_pass(self, obs_data): + raise NotImplementedError + + def load_checkpoint(self, out_dir, device=None): + if device is None: + device = torch.device("cpu") + + param_path = os.path.join(out_dir, f"{self.name}_params.pth") + if os.path.isfile(param_path): + param_dict = torch.load(param_path, map_location=device) + self.model.params.load_dict(param_dict) + Logger.log(f"Params loaded from {param_path}") + + optim_path = os.path.join(out_dir, f"{self.name}_optim.pth") + if os.path.isfile(optim_path): + optim_dict = torch.load(optim_path) + self.optim.load_state_dict(optim_dict["optim"]) + self.cur_step = optim_dict["cur_step"] + Logger.log(f"Optimizer loaded from {optim_path} at iter {self.cur_step}") + + def save_checkpoint(self, out_dir): + param_path = os.path.join(out_dir, f"{self.name}_params.pth") + param_dict = self.model.params.get_dict() + if "world_scale" in param_dict: + print("WORLD_SCALE", param_dict["world_scale"].detach().cpu()) + if "floor_plane" in param_dict: + print("FLOOR PLANE", param_dict["floor_plane"].detach().cpu()) + if "cam_f" in param_dict: + print("CAM_F", param_dict["cam_f"].detach().cpu()) + torch.save(param_dict, param_path) + Logger.log(f"Model saved at {param_path}") + + optim_path = os.path.join(out_dir, f"{self.name}_optim.pth") + torch.save( + {"optim": self.optim.state_dict(), "cur_step": self.cur_step}, + optim_path, + ) + Logger.log(f"Optimizer saved at {optim_path}") + + def save_results(self, out_dir, seq_name): + """ + pred dict will be a dictionary of trajectories. + each trajectory will have params and lists of trimesh sequences + """ + os.makedirs(out_dir, exist_ok=True) + + with torch.no_grad(): + print('go into get_optim_result from optimizer.py save_results') + pred_dict = self.model.get_optim_result() + pred_dict = move_to(detach_all(pred_dict), "cpu") + + i = self.cur_step + for name, results in pred_dict.items(): + print('save_results, name: ', name) + # save parameters of trajectory + out_path = f"{out_dir}/{seq_name}_{i:06d}_{name}_results.npz" + Logger.log(f"saving params to {out_path}") + np.savez(out_path, **results) + print('cam_R in save_results and its .npz', results['cam_R']) + + # also save the cameras + # print('save the cameras in ptimizer.py save_results') + # print(self.model.params) + # with torch.no_grad(): + # cam_R, cam_t = self.model.params.get_extrinsics() + # intrins = self.model.params.get_intrinsics() + # print('cam_R in 0000.json:', cam_R) + # save_camera_json( + # f"{out_dir}/{seq_name}_cameras_{self.cur_step:06d}.json", + # cam_R.detach().cpu(), + # cam_t.detach().cpu(), + # intrins.detach().cpu(), + # ) + + # plot losses + self.plot_losses(out_dir) + + # def save_meshes_all(self, res_dir, obs_data, seq_name, num_steps=-1): + + # # check which results are saved + # seq_name = obs_data["seq_name"][0] + # res_pre = f"{res_dir}/{seq_name}_opt_{self.cur_step:06d}" + # with torch.no_grad(): + # print('go into get_optim_result from optimizer.py vis_result') + # pred_dict = self.model.get_optim_result(num_steps=num_steps) + + # res_dict = detach_all(pred_dict["world"]) + # scene_dict = move_to( + # prep_result_vis( + # res_dict, + # obs_data["vis_mask"], + # obs_data["track_id"], + # self.model.body_model, + # temporal_smooth=True + # ), + # "cpu", + # ) + + # # save the meshes + # os.makedirs(res_dir, exist_ok=True) + # i = self.cur_step + # scene_dir = f"{res_dir}/{seq_name}_{i:06d}_meshes" + # os.makedirs(scene_dir, exist_ok=True) + + # verts, joints, colors, l_faces, r_faces, is_right, bounds = scene_dict["geometry"] + # T = len(verts) + # print(f"{T} mesh frames") + # times = list(range(0, T, 1)) + # for t in times: + # if len(is_right[t]) > 1: + # assert (is_right[t].cpu().numpy().tolist() == [0,1]) + # # l_meshes = make_batch_mesh(verts[t][0][None], l_faces[t], colors[t][0][None]) + # # r_meshes = make_batch_mesh(verts[t][1][None], r_faces[t], colors[t][1][None]) + # # assert len(l_meshes) == 1 + # # assert len(r_meshes) == 1 + # tmesh = vertices_to_trimesh(verts[t][0].detach().cpu().numpy(), l_faces[t].detach().cpu().numpy(), LIGHT_BLUE, is_right=0) + # tmesh.export(os.path.join(scene_dir, f'{str(t).zfill(6)}_0.obj')) + + # tmesh = vertices_to_trimesh(verts[t][1].detach().cpu().numpy(), r_faces[t].detach().cpu().numpy(), LIGHT_BLUE, is_right=1) + # tmesh.export(os.path.join(scene_dir, f'{str(t).zfill(6)}_1.obj')) + + # else: + # assert len(is_right[t]) == 1 + # if is_right[t] == 0: + # # meshes = make_batch_mesh(verts[t][0][None], l_faces[t], colors[t][0][None]) + # tmesh = vertices_to_trimesh(verts[t][0].detach().cpu().numpy(), l_faces[t].detach().cpu().numpy(), LIGHT_BLUE, is_right=0) + # tmesh.export(os.path.join(scene_dir, f'{str(t).zfill(6)}_0.obj')) + # elif is_right[t] == 1: + # # meshes = make_batch_mesh(verts[t][0][None], r_faces[t], colors[t][0][None]) + # tmesh = vertices_to_trimesh(verts[t][0].detach().cpu().numpy(), r_faces[t].detach().cpu().numpy(), LIGHT_BLUE, is_right=1) + # tmesh.export(os.path.join(scene_dir, f'{str(t).zfill(6)}_1.obj')) + + def vis_result(self, res_dir, obs_data, vis=None, num_steps=-1): + if vis is None or self.vis_every < 0: + return + + # check which results are saved + seq_name = obs_data["seq_name"][0] + res_pre = f"{res_dir}/{seq_name}_opt_{self.cur_step:06d}" + with torch.no_grad(): + print('go into get_optim_result from optimizer.py vis_result') + pred_dict = self.model.get_optim_result(num_steps=num_steps) + + res_dict = detach_all(pred_dict["world"]) + scene_dict = move_to( + prep_result_vis( + res_dict, + obs_data["vis_mask"], + obs_data["track_id"], + self.model.body_model, + ), + "cpu", + ) + animate_scene(vis, scene_dict, res_pre, render_views=["src_cam", "above"]) + + def log_losses(self, stats_dict): + stats_dict = move_to(detach_all(stats_dict), "cpu") + log_cur_stats( + stats_dict, + iter=self.cur_step, + to_stdout=(self.cur_step % self.save_every == 0), + ) + for loss_name, loss_val in stats_dict.items(): + loss_dict = self.loss_dicts.get(loss_name, {}) + loss_series = loss_dict.get(self.cur_step, []) + loss_series.append(loss_val) + loss_dict[self.cur_step] = loss_series + self.loss_dicts[loss_name] = loss_dict + + def record_current_losses(self, writer): + """ + record the mean of current step's loss values in tensorboard + """ + if len(self.loss_dicts) < 1: + return + + for loss_name, loss_dict in self.loss_dicts.items(): + loss_mean = np.mean(loss_dict[self.cur_step]) + writer.add_scalar(f"{self.name}/{loss_name}", loss_mean, self.cur_step) + + def plot_losses(self, res_dir): + """ + plot a box plot for each BFGS iteration + """ + if len(self.loss_dicts) < 1: + return + for loss_name, loss_dict in self.loss_dicts.items(): + # times (list len T) + # loss vals (list len T of loss value lists) + times, loss_vals = zip(*loss_dict.items()) + plt.figure() + plt.boxplot(loss_vals, labels=times, showfliers=False) + plt.savefig(f"{res_dir}/{loss_name}.png") + + def run(self, obs_data, num_iters, out_dir, vis=None, writer=None): + self.cur_step = 0 + self.loss.cur_step = 0 + res_dir = os.path.join(out_dir, self.name) + os.makedirs(res_dir, exist_ok=True) + seq_name = obs_data["seq_name"][0] + print("SEQ NAME", seq_name, "num_iters", num_iters) + + # try to load from checkpoint if exists + device = obs_data["joints2d"].device + self.load_checkpoint(out_dir, device=device) + + if self.cur_step >= num_iters: + Logger.log(f"Current optimizer {self}") + Logger.log(f"Checkpoint at {self.cur_step} >= {num_iters}, skipping") + return + + Logger.log(f"OPTIMIZING {self.name} FOR {num_iters} ITERATIONS") + # time.sleep(5) + + # save initial results and vis + print('go into save_results in optimizers.py run()') + self.save_results(res_dir, seq_name) + + for i in range(self.cur_step, num_iters): + Logger.log("ITER: %d" % (i)) + + if (i + 1) % self.save_every == 0: # save before + self.save_checkpoint(out_dir) + self.save_results(res_dir, seq_name) + else: + self.save_checkpoint(out_dir) + + if (i + 1) % self.vis_every == 0: # render + self.vis_result(res_dir, obs_data, vis) + + self.cur_step = i + self.loss.cur_step = i + + #print("ITER: %d" % (i)) + self.optim_step(obs_data, i, writer) + + # early termination in case of nans + if np.isnan(self.cur_loss): + # we need to backtrack + self.load_checkpoint(out_dir, device=device) + print(self.cur_loss, self.kkk, self.ppp) + raise ValueError + + # termination for the last chunk + if self.reached_max and self.reached_max_iter < 0: + self.reached_max_iter = i - 1 + if self.reached_max and i - self.reached_max_iter >= self.max_chunk_steps: + break + + # termination for middle chunks + loss_change = self.prev_loss - self.cur_loss + if self.last_updated == i - 1 and loss_change == 0: + break + if ( + (self.cur_loss < 0 and loss_change < 100) + or (i - self.last_updated >= self.max_chunk_steps) + or (loss_change < 20 and i - self.last_updated > 5) + ): + self.add_chunk = self.add_chunk + 1 + self.last_updated = i + self.prev_loss = self.cur_loss + + # final save and vis step + self.cur_step = num_iters + self.save_checkpoint(out_dir) + self.save_results(res_dir, seq_name) + self.vis_result(res_dir, obs_data, vis) + # self.save_meshes_all(res_dir, obs_data, seq_name) + + def optim_step(self, obs_data, i, writer=None): + def closure(): + self.optim.zero_grad() + #print('******************************', i) + loss, stats_dict, preds = self.forward_pass(obs_data) + #print('******************************', i) + stats_dict["total"] = loss + self.log_losses(move_to(detach_all(stats_dict), "cpu")) + self.cur_loss = stats_dict["total"].detach().cpu().item() + self.kkk = stats_dict + self.ppp = preds + loss_keys = stats_dict.keys() + if "motion_prior" in loss_keys and "pose_prior" in loss_keys: + self.cur_loss = ( + self.cur_loss + - 0.04 * stats_dict["pose_prior"].detach().cpu().item() + ) + print("optimizer print", loss, loss.shape, stats_dict, loss.requires_grad) + loss.backward() + # print('end of loss backward') + return loss + + #print('!!!!!!!!!!!!!!!!!!!!!!!!!!', i) + self.optim.step(closure) + #print('!!!!!!!!!!!!!!!!!!!!!!!!!!', i) + if writer is not None: + self.record_current_losses(writer) + + +class RootOptimizer(StageOptimizer): + name = "root_fit" + stage = 0 + + def __init__( + self, + model, + all_loss_weights, + use_chamfer=False, + robust_loss_type="none", + robust_tuning_const=4.6851, + joints2d_sigma=100, + **kwargs, + ): + param_names = ["trans", "root_orient"] + super().__init__(self.name, model, param_names, **kwargs) + + self.loss = RootLoss( + all_loss_weights[self.stage], + ignore_op_joints=OP_IGNORE_JOINTS, + joints2d_sigma=joints2d_sigma, + use_chamfer=use_chamfer, + robust_loss=robust_loss_type, + robust_tuning_const=robust_tuning_const, + faces=model.body_model.faces_tensor + ) + + def forward_pass(self, obs_data): + """ + Takes in observed data, predicts the smpl parameters and returns loss + """ + # raise ValueError + # Use current params to go through SMPL and get joints3d, verts3d, points3d + pred_data = self.model.pred_params_mano(obs_data["is_right"]) + pred_data["cameras"] = self.model.params.get_cameras() + + # compute data losses only + vis_mask = obs_data["vis_mask"] >= 0 + # print('entering loss from RootOptimizer') + loss, stats_dict = self.loss(obs_data, pred_data, vis_mask) + return loss, stats_dict, pred_data + + +class SmoothOptimizer(StageOptimizer): + name = "smooth_fit" + stage = 1 + + def __init__( + self, + model, + all_loss_weights, + use_chamfer=False, + robust_loss_type="none", + robust_tuning_const=4.6851, + joints2d_sigma=100, + **kwargs, + ): + param_names = ["trans", "root_orient", "betas", "latent_pose"] + if model.opt_scale: + param_names += ["world_scale"] + if model.opt_cams: + param_names += ["cam_f", "delta_cam_R"] + + super().__init__(self.name, model, param_names, **kwargs) + + self.loss = SMPLLoss( + all_loss_weights[self.stage], + ignore_op_joints=OP_IGNORE_JOINTS, + joints2d_sigma=joints2d_sigma, + use_chamfer=use_chamfer, + robust_loss=robust_loss_type, + robust_tuning_const=robust_tuning_const, + faces=model.body_model.faces_tensor + ) + + def forward_pass(self, obs_data): + """ + Takes in observed data, predicts the smpl parameters and returns loss + """ + # raise ValueError + # Use current params to go through SMPL and get joints3d, verts3d, points3d + pred_data = self.model.pred_params_mano(obs_data["is_right"]) + pred_data["cameras"] = self.model.params.get_cameras() + pred_data.update(self.model.params.get_vars()) + + # camera predictions + # pts_ij, target, weight = self.model.params.get_reprojected_points() + # pred_data["bg2d_err"] = ( + # (weight * (pts_ij - target) ** 2).sum(dim=(-1, -2)).mean() + # ) + pred_data["cam_R"], pred_data["cam_t"] = self.model.params.get_extrinsics() + + # compute data losses only + vis_mask = obs_data["vis_mask"] >= 0 + loss, stats_dict = self.loss(obs_data, pred_data, self.model.seq_len, vis_mask) + return loss, stats_dict, pred_data + + +# class MotionOptimizer(StageOptimizer): +# name = "motion_fit" +# stage = 2 + +# def __init__(self, model, all_loss_weights, opt_cams=False, **kwargs): +# self.opt_cams = opt_cams and model.opt_cams +# param_names = [ +# "trans", +# "root_orient", +# "latent_pose", +# "trans_vel", +# "root_orient_vel", +# "joints_vel", +# "betas", +# "latent_motion", +# "floor_plane", +# ] +# if model.opt_scale: +# param_names += ["world_scale"] + +# if self.opt_cams: +# Logger.log(f"{self.name} OPTIMIZING CAMERAS") +# param_names += ["delta_cam_R", "cam_f"] + +# super().__init__(self.name, model, param_names, **kwargs) +# self.set_loss(model, all_loss_weights[self.stage], **kwargs) + +# def set_loss( +# self, +# model, +# loss_weights, +# use_chamfer=False, +# robust_loss_type="none", +# robust_tuning_const=4.6851, +# joints2d_sigma=100, +# **kwargs, +# ): +# self.loss = MotionLoss( +# loss_weights, +# init_motion_prior=model.init_motion_prior, +# ignore_op_joints=OP_IGNORE_JOINTS, +# joints2d_sigma=joints2d_sigma, +# use_chamfer=use_chamfer, +# robust_loss=robust_loss_type, +# robust_tuning_const=robust_tuning_const, +# ) + +# def get_motion_scale(self): +# return 1.0 + +# def forward_pass(self, obs_data, num_steps=-1): +# p = self.model.params +# param_names = [ +# "betas", +# "joints_vel", +# "trans_vel", +# "root_orient_vel", +# ] +# param_dict = p.get_vars(param_names) +# # param_dict["floor_plane"] = p.floor_plane[p.floor_idcs] + +# preds, world_preds = self.model.rollout_mano_steps(num_steps) +# preds.update(param_dict) +# world_preds.update(param_dict) + +# # track mask is the length of the sequence that contains num_steps of each track +# track_mask = world_preds.get("track_mask", None) +# T = track_mask.shape[1] if track_mask is not None else num_steps +# world_preds["cameras"] = p.get_cameras(np.arange(T)) +# if self.opt_cams: +# cam_R, cam_t = p.get_extrinsics() +# world_preds["cam_R"], world_preds["cam_t"] = cam_R[:T], cam_t[:T] + +# obs_data = slice_dict(obs_data, 0, T) +# motion_scale = self.get_motion_scale() +# loss, stats_dict = self.loss( +# obs_data, +# preds, +# world_preds, +# self.model.seq_len, +# valid_mask=track_mask, +# init_motion_scale=motion_scale, +# ) +# return loss, stats_dict, (preds, world_preds) + + +# def slice_dict(d, start, end): +# out = d.copy() +# for k, v in d.items(): +# if not isinstance(v, torch.Tensor) or v.ndim < 3 or v.shape[1] < end: +# continue +# out[k] = v[:, start:end] +# return out + + +# class MotionOptimizerChunks(MotionOptimizer): +# """ +# Incrementally optimize sequence in chunks (with all variables) +# :param chunk_size (int) number of frames per chunk +# :param init_steps (int) number of optimization steps to spend on first chunk +# :param chunk_steps (int) number of opt steps to spend on subsequent chunks +# """ + +# name = "motion_chunks" +# stage = 2 + +# def __init__(self, *args, chunk_size=20, init_steps=20, chunk_steps=10, **kwargs): +# self.chunk_size = chunk_size +# self.init_steps = init_steps +# self.chunk_steps = chunk_steps +# super().__init__(*args, **kwargs) + +# @property +# def num_iters(self): +# num_chunks = int(np.ceil(self.model.seq_len / self.chunk_size)) + 1 +# return self.init_steps + self.chunk_steps * num_chunks + +# @property +# def end_idx(self): +# if self.cur_step < self.init_steps and self.add_chunk == 0: +# return self.chunk_size +# chunk_idx = max( +# (self.cur_step - self.init_steps) // self.chunk_steps + 1, self.add_chunk +# ) +# if int(np.ceil(self.model.seq_len / self.chunk_size)) == self.add_chunk: +# self.reached_max = True +# return min(self.chunk_size * (chunk_idx + 1), self.model.seq_len) + +# @property +# def start_idx(self): +# return 0 + +# def get_motion_scale(self): +# num_frames = self.end_idx - self.start_idx +# return max(1.0, float(self.model.seq_len) / num_frames) + +# def forward_pass(self, obs_data): +# return super().forward_pass(obs_data, num_steps=self.end_idx) + +# def vis_result(self, res_dir, obs_data, vis=None, **kwargs): +# print("start, end", self.start_idx, self.end_idx) +# return super().vis_result(res_dir, obs_data, vis=vis, num_steps=self.end_idx) + + +# class MotionOptimizerFreeze(MotionOptimizer): +# """ +# Only optimizing a subset of parameters +# """ + +# name = "motion_freeze" +# stage = 2 + +# def __init__(self, model, all_loss_weights, no_contacts=True, **kwargs): +# loss_weights = all_loss_weights[self.stage].copy() + +# if no_contacts: +# loss_weights["contact_height"] = 0.0 +# loss_weights["contact_vel"] = 0.0 + +# param_names = ["latent_motion", "betas", "trans", "floor_plane"] +# if model.optim_scale: +# param_names += ["world_scale"] + +# StageOptimizer.__init__(self, self.name, model, param_names, **kwargs) +# self.set_loss(model, loss_weights, **kwargs) diff --git a/examples/mano_hand_retargeter/optim/output.py b/examples/mano_hand_retargeter/optim/output.py new file mode 100644 index 000000000..5904183b3 --- /dev/null +++ b/examples/mano_hand_retargeter/optim/output.py @@ -0,0 +1,188 @@ +import os +import imageio +import glob +import json +import subprocess + +import numpy as np +import torch + +from util.tensor import move_to, detach_all, to_torch +from util.logger import Logger + + +def get_results_paths(res_dir): + """ + get the iterations of all saved results in res_dir + :param res_dir (str) result dir + returns a dict of iter to result path + """ + res_files = sorted(glob.glob(f"{res_dir}/*_results.npz")) + print(f"found {len(res_files)} results in {res_dir}") + + path_dict = {} + for res_file in res_files: + it, name, _ = os.path.basename(res_file).split("_")[-3:] + assert name in ["world", "prior"] + if it not in path_dict: + path_dict[it] = {} + path_dict[it][name] = res_file + return path_dict + + +def load_result(res_path_dict): + """ + load all saved results for a given iteration + :param res_path_dict (dict) paths to relevant results + returns dict of results + """ + res_dict = {} + for name, path in res_path_dict.items(): + res = np.load(path) + res_dict[name] = to_torch({k: res[k] for k in res.files}) + return res_dict + + +def save_initial_predictions(model, out_dir, seq_name): + os.makedirs(out_dir, exist_ok=True) + with torch.no_grad(): + print('go into get_optim_result from output.py save_initial_predictions') + pred_dict = model.get_optim_result() + pred_dict = move_to(detach_all(pred_dict), "cpu") + + for name, results in pred_dict.items(): + out_path = f"{out_dir}/{seq_name}_{0:06d}_init_{name}_results.npz" + Logger.log(f"saving initial results to {out_path}") + np.savez(out_path, **results) + # print('cam_R in save_initial_predictions: ', results['cam_R'].shape, results['cam_R']) + # print((results['cam_R'][0] == results['cam_R'][1]).all()) + # print((results['cam_R'][1] == results['cam_R'][2]).all()) + # print((results['cam_R'][2] == results['cam_R'][3]).all()) + # print((results['cam_R'][3] == results['cam_R'][4]).all()) + # print((results['cam_R'][4] == results['cam_R'][5]).all()) + # print((results['cam_R'][5] == results['cam_R'][6]).all()) + + +def save_input_poses(dataset, out_dir, seq_name, name="phalp"): + os.makedirs(out_dir, exist_ok=True) + dataset.load_data(interp_input=False) + d = dataset.data_dict + res = { + "pose_body": np.stack(d["init_body_pose"], axis=0), + "trans": np.stack(d["init_trans"], axis=0), + "root_orient": np.stack(d["init_root_orient"], axis=0), + } + print({k: v.shape for k, v in res.items()}) + out_path = f"{out_dir}/{seq_name}_{0:06d}_{name}_world_results.npz" + Logger.log(f"saving inputs to {out_path}") + np.savez(out_path, **res) + + +def save_input_frames_ffmpeg(dataset, out_dir, name="input", fps=30, overwrite=False): + vid_path = f"{out_dir}/{name}.mp4" + if not overwrite and os.path.isfile(vid_path): + return + + list_path = f"{out_dir}/src_paths.txt" + with open(list_path, "w") as f: + f.write("\n".join([f"file '{p}'" for p in dataset.sel_img_paths])) + + filter_str = f"-framerate {fps} -vf 'format=yuv420p'" + cmd = ( + f"ffmpeg -loglevel error -f concat -safe 0 " + f"-i {list_path} -c:v libx264 {filter_str} {vid_path} -y" + ) + print(cmd) + subprocess.call(cmd, shell=True, stdin=subprocess.PIPE) + print(f"SAVED {len(dataset.sel_img_paths)} INPUT FRAMES TO {vid_path}") + return vid_path + + +def save_input_frames(dataset, vid_path, fps=30, overwrite=False): + if not overwrite and os.path.isfile(vid_path): + return + + writer = imageio.get_writer(vid_path, fps=fps) + for path in dataset.sel_img_paths: + writer.append_data(imageio.imread(path)) + writer.close() + print(f"SAVED {len(dataset.sel_img_paths)} INPUT FRAMES TO {vid_path}") + return vid_path + + +def load_track_info(path): + assert os.path.isfile(path) + + with open(path, "r") as f: + track_info = json.load(f) + + meta = track_info["meta"] + tracks = track_info["tracks"] + track_ids, idcs, vis_masks = map( + torch.as_tensor, + zip( + *[ + (int(tid), info["index"], info["vis_mask"]) + for tid, info in tracks.items() + ] + ), + ) + track_ids = track_ids[idcs] + vis_masks = vis_masks[idcs] + data_interval = meta["data_interval"] + seq_interval = meta["seq_interval"] + return track_ids, vis_masks, data_interval, seq_interval + + +def save_track_info(dataset, out_dir): + # track indices are relative to the entire sequence + track_ids = dataset.track_ids + track_dict = {} + for i, (tid, mask) in enumerate(zip(dataset.track_ids, dataset.track_vis_masks)): + track_dict[int(tid)] = {"index": i, "vis_mask": mask.tolist()} + + out_dict = { + "tracks": track_dict, + "meta": { + "seq_interval": (int(dataset.start_idx), int(dataset.end_idx)), + "data_interval": (int(dataset.data_start), int(dataset.data_end)), + }, + } + + with open(f"{out_dir}/track_info.json", "w") as f: + json.dump(out_dict, f) + print("SAVED TRACK INFO") + + +def load_camera_json(path): + assert os.path.isfile(path) + + with open(path, "r") as f: + cam_data = json.load(f) + R = torch.as_tensor(cam_data["rotation"]).reshape(-1, 3, 3) + t = torch.as_tensor(cam_data["translation"]) + intrins = torch.as_tensor(cam_data["intrinsics"]) + return R.float(), t.float(), intrins.float() + + +def save_camera_json(path, cam_R, cam_t, intrins): + """ + :param path + :param cam_R (N, 3, 3) + :param cam_t (N, 3) + :param intrins (N, 4) + """ + N = len(cam_R) + T = torch.tensor([[1, 0, 0], [0, -1, 0], [0, 0, -1]], dtype=torch.float32) + cam_R = torch.einsum("ij,bjk->bik", T, cam_R) + cam_t = torch.einsum("ij,bj->bi", T, cam_t) + with open(path, "w") as f: + json.dump( + { + "rotation": cam_R.reshape(N, 9).tolist(), + "translation": cam_t.tolist(), + "intrinsics": intrins.tolist(), + }, + f, + indent=1, + ) diff --git a/examples/mano_hand_retargeter/optim/params.py b/examples/mano_hand_retargeter/optim/params.py new file mode 100644 index 000000000..42e69caf6 --- /dev/null +++ b/examples/mano_hand_retargeter/optim/params.py @@ -0,0 +1,174 @@ +import numpy as np + +import torch +import torch.nn as nn +import torch.nn.functional as F + +# from body_model import MANO_JOINTS +from geometry.camera import invert_camera, compose_cameras +from geometry.rotation import batch_rodrigues +from util.logger import Logger +from util.tensor import detach_all + +# J_BODY = len(MANO_JOINTS) - 1 # no root +# assert J_BODY == 15 + +class Params(nn.Module): + def __init__(self, batch_size): + super().__init__() + self.batch_size = batch_size + self.param_names = set() + + def set_param(self, name, val, requires_grad=False): + print("SETTING PARAM", name, val.shape) + with torch.no_grad(): + setattr( + self, name, nn.Parameter(val.contiguous(), requires_grad=requires_grad) + ) + self.param_names.add(name) + + def get_param(self, name): + if name not in self.param_names: + raise ValueError(f"{name} not stored as opt param") + return getattr(self, name) + + def load_dict(self, param_dict): + for name, val in param_dict.items(): + self.set_param(name, val, requires_grad=False) + + def get_dict(self): + return {name: self.get_param_item(name) for name in self.param_names} + + def get_vars(self, names=None): + if names is None: + names = self.param_names + return {name: self.get_param(name) for name in names} + + def get_param_item(self, name): + with torch.no_grad(): + param = self.get_param(name) + return param.detach() + + def _set_param_grad(self, name, val: bool): + if name not in self.param_names: + raise ValueError(f"{name} not stored as param") + param = getattr(self, name) + assert isinstance(param, torch.Tensor) + param.requires_grad = val + + def set_require_grads(self, names): + """ + set parameters in names to True, set all others to False + """ + for name in self.param_names: + self._set_param_grad(name, False) + + for name in names: + self._set_param_grad(name, True) + + Logger.log("Set parameter grads:") + Logger.log( + {name: getattr(self, name).requires_grad for name in self.param_names} + ) + + +class CameraParams(Params): + """ + Parameter container with cameras + """ + + def set_cameras( + self, cam_data, opt_scale=True, opt_cams=False, opt_focal=False, **kwargs + ): + self.opt_scale = opt_scale + self.opt_cams = opt_cams + self.opt_focal = opt_focal + + # (T, 3, 3), (T, 3) + cam_R, cam_t = cam_data["cam_R"], cam_data["cam_t"] + intrins = cam_data["intrins"] # (T, 4) + + T = cam_R.shape[0] + device = cam_R.device + + # assume focal length and center are same for all timesteps + # print(intrins.shape, cam_R.shape, cam_t.shape) + # torch.Size([128, 4]) torch.Size([128, 3, 3]) torch.Size([128, 3]) + + self.cam_center = intrins[:, 2:] # (T, 2) + cam_f = intrins[:, :2] # (T, 2) + if self.opt_focal: + self.set_param("cam_f", cam_f) + else: + self.cam_f = cam_f + + self._cam_R = cam_R # (T, 3, 3) + self._cam_t = cam_t # (T, 3) + + world_scale = torch.ones(1, 1, device=device) + if self.opt_scale: + if "world_scale" in kwargs: + world_scale = kwargs["world_scale"] + self.set_param("world_scale", world_scale) + else: + self.world_scale = world_scale + + if self.opt_cams: + init_delta_R = torch.zeros(T, 3, device=device) + init_delta_t = torch.zeros(T, 3, device=device) + if "delta_cam_R" in kwargs: + print("setting delta_cam_R from kwargs") + init_delta_R = kwargs["delta_cam_R"] + if "delta_cam_t" in kwargs: + print("setting delta_cam_t from kwargs") + init_delta_t = kwargs["delta_cam_t"] + + self.set_param("delta_cam_R", init_delta_R) + self.set_param("delta_cam_t", init_delta_t) + + @property + def intrins(self): # (4,) + return torch.cat([self.cam_f[0], self.cam_center[0]], dim=-1).detach().cpu() + + def get_extrinsics(self): + """ + returns (T, 3, 3), (T, 3) + """ + cam_R, cam_t = self._cam_R, self._cam_t + print('get_extrinsics') + if self.opt_cams: + raise ValueError + print('self.opt_cams:', self.opt_cams) + # raise ValueError + dR = batch_rodrigues(self.delta_cam_R) + cam_R = torch.matmul(cam_R, dR) + cam_t = cam_t + self.delta_cam_t + return cam_R, cam_t * self.world_scale + + def get_intrinsics(self): + """ + returns (T, 4) + """ + return torch.cat([self.cam_f, self.cam_center], axis=-1) + + def get_cameras(self, idcs=None): + """ + returns cam_R (B, T, 3, 3) cam_t (B, T, 3), cam_f (T, 2), cam_center (T, 2) + """ + if idcs is None: + idcs = np.arange(self._cam_R.shape[0]) + + # print('idcs:', idcs, self._cam_R.shape[0], self._cam_R.shape) + cam_R, cam_t = self.get_extrinsics() + cam_R, cam_t = cam_R[None, idcs], cam_t[None, idcs] + cam_f, cam_center = self.cam_f[idcs], self.cam_center[idcs] + + B = self.batch_size + cam_R = cam_R.repeat(B, 1, 1, 1) + cam_t = cam_t.repeat(B, 1, 1) + # print(cam_R.shape, cam_t.shape, cam_f.shape, cam_center.shape) + # print(B, self.batch_size) + # raise ValueError + # torch.Size([2, 128, 3, 3]) torch.Size([2, 128, 3]) torch.Size([128, 2]) torch.Size([128, 2]) + # 2 2 + return cam_R, cam_t, cam_f, cam_center diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0000_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0000_g1_upper_body_cmd.npz new file mode 100644 index 000000000..86780b30b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0000_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0001_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0001_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e2058a96c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0001_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0002_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0002_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c7361b5b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0002_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0003_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0003_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7fe434fc5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0003_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0004_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0004_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cc29fe07a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0004_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0005_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0005_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7174f771 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0005_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0006_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0006_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec22a5bf4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0006_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0007_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0007_g1_upper_body_cmd.npz new file mode 100644 index 000000000..43a906eba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0007_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0008_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0008_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4b33745c7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0008_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0009_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0009_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6f387f13b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0009_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0010_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0010_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5002ad941 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0010_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0011_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0011_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ba3e97554 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0011_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0012_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0012_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41d2ea8c5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0012_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0013_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0013_g1_upper_body_cmd.npz new file mode 100644 index 000000000..19e76fc76 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0013_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0014_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0014_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ca33c3998 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0014_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0015_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0015_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7e5a504f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0015_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0016_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0016_g1_upper_body_cmd.npz new file mode 100644 index 000000000..885a1731d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0016_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0017_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0017_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c8bf95aab Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0017_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0018_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0018_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c3fecef94 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0018_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0019_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0019_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3c08979db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0019_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0020_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0020_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36ad798b1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0020_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0021_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0021_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd136e94b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0021_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0022_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0022_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dbace8729 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0022_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0023_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0023_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f485b5ce6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0023_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0024_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0024_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e1bcdb1aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0024_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0025_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0025_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8f7fddebf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0025_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0026_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0026_g1_upper_body_cmd.npz new file mode 100644 index 000000000..07c57ebc4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0026_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0027_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0027_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3659c7bd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0027_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0028_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0028_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a4422079 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0028_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0029_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0029_g1_upper_body_cmd.npz new file mode 100644 index 000000000..80be28799 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0029_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0030_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0030_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8914888f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0030_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0031_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0031_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0279e821c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0031_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0032_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0032_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38a640248 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0032_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0033_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0033_g1_upper_body_cmd.npz new file mode 100644 index 000000000..daf7f3d93 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0033_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0034_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0034_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b8da2f9d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0034_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0035_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0035_g1_upper_body_cmd.npz new file mode 100644 index 000000000..21e1efb73 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0035_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0036_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0036_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9090aa15 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0036_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0037_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0037_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c7f430aad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0037_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0038_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0038_g1_upper_body_cmd.npz new file mode 100644 index 000000000..42066c628 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0038_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0039_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0039_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa8649fa4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0039_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0040_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0040_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1b13e16f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0040_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0041_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0041_g1_upper_body_cmd.npz new file mode 100644 index 000000000..567135ddd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0041_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0042_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0042_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c0b33c0c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0042_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0043_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0043_g1_upper_body_cmd.npz new file mode 100644 index 000000000..12b49f93f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0043_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0044_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0044_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad8ab7c48 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0044_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0045_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0045_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7c1f82f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0045_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0046_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0046_g1_upper_body_cmd.npz new file mode 100644 index 000000000..017e3979f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0046_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0047_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0047_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9e4283e3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0047_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0048_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0048_g1_upper_body_cmd.npz new file mode 100644 index 000000000..610157a95 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0048_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0049_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0049_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c0b726c61 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0049_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0050_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0050_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9c7301a98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0050_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0051_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0051_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0885b5c98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0051_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0052_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0052_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cdc25f18d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0052_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0053_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0053_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e54891c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0053_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0054_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0054_g1_upper_body_cmd.npz new file mode 100644 index 000000000..be03fdd45 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0054_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0055_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0055_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0d179cebf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0055_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0056_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0056_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7f957688 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0056_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0057_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0057_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5760645ff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0057_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0058_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0058_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d1ca40d6b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0058_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0059_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0059_g1_upper_body_cmd.npz new file mode 100644 index 000000000..45b8074dd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0059_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0060_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0060_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f900c35e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0060_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0061_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0061_g1_upper_body_cmd.npz new file mode 100644 index 000000000..17b729e5d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0061_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0062_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0062_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cb210267b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0062_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0063_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0063_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a395df9d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0063_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0064_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0064_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4b2e163f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0064_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0065_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0065_g1_upper_body_cmd.npz new file mode 100644 index 000000000..276600669 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0065_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0066_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0066_g1_upper_body_cmd.npz new file mode 100644 index 000000000..03573028e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0066_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0067_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0067_g1_upper_body_cmd.npz new file mode 100644 index 000000000..66e50d12d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0067_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0068_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0068_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a1634285c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0068_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0069_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0069_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9b030ef4f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0069_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0070_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0070_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8d5b113f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0070_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0071_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0071_g1_upper_body_cmd.npz new file mode 100644 index 000000000..be2028b5f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0071_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0072_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0072_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3e268f0b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0072_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0073_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0073_g1_upper_body_cmd.npz new file mode 100644 index 000000000..20470467f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0073_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0074_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0074_g1_upper_body_cmd.npz new file mode 100644 index 000000000..68fe9158b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0074_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0075_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0075_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c05f7f0a1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0075_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0076_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0076_g1_upper_body_cmd.npz new file mode 100644 index 000000000..015d94958 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0076_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0077_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0077_g1_upper_body_cmd.npz new file mode 100644 index 000000000..755af1d0a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0077_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0078_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0078_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7a2dd25b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0078_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0079_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0079_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd7598fb7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0079_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0080_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0080_g1_upper_body_cmd.npz new file mode 100644 index 000000000..246f1f2c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0080_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0081_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0081_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2d34c56b6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0081_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0082_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0082_g1_upper_body_cmd.npz new file mode 100644 index 000000000..962c07d20 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0082_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0083_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0083_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e8561c8f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0083_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0084_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0084_g1_upper_body_cmd.npz new file mode 100644 index 000000000..faef16410 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0084_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0085_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0085_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fc998812e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0085_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0086_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0086_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b81e8da54 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0086_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0087_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0087_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0feea2451 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0087_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0088_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0088_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d6b3f52ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0088_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0089_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0089_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ac248f4e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0089_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0090_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0090_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4cea34115 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0090_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0091_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0091_g1_upper_body_cmd.npz new file mode 100644 index 000000000..75f4b17b7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0091_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0092_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0092_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f0542f880 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0092_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0093_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0093_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d7a54914d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0093_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0094_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0094_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b7855423a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0094_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0095_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0095_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c07e3d595 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0095_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0096_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0096_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2633463a4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0096_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0097_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0097_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e2ba6823 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0097_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0098_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0098_g1_upper_body_cmd.npz new file mode 100644 index 000000000..235064c79 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0098_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0099_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0099_g1_upper_body_cmd.npz new file mode 100644 index 000000000..386211f30 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0099_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0100_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0100_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3bcc16d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0100_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0101_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0101_g1_upper_body_cmd.npz new file mode 100644 index 000000000..394fb5f4c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0101_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0102_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0102_g1_upper_body_cmd.npz new file mode 100644 index 000000000..52ccbb632 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0102_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0103_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0103_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fa8798661 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0103_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0104_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0104_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9c337960d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0104_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0105_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0105_g1_upper_body_cmd.npz new file mode 100644 index 000000000..50d94c939 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0105_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0106_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0106_g1_upper_body_cmd.npz new file mode 100644 index 000000000..15a270710 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0106_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0107_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0107_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2e8d11b50 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0107_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0108_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0108_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8680699fd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0108_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0109_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0109_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0fba934e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0109_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0110_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0110_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b325d33bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0110_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0111_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0111_g1_upper_body_cmd.npz new file mode 100644 index 000000000..10dd81d73 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0111_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0112_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0112_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a6c8fd830 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0112_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0113_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0113_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aca023cf3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0113_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0114_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0114_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dbff472c2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0114_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0115_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0115_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4d343a852 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0115_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0116_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0116_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c825b98d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0116_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0117_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0117_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e14d67c02 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0117_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0118_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0118_g1_upper_body_cmd.npz new file mode 100644 index 000000000..352973dec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0118_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0119_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0119_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2c50a63ee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0119_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0120_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0120_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b5a86cf4a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0120_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0121_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0121_g1_upper_body_cmd.npz new file mode 100644 index 000000000..35e3a9bae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0121_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0122_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0122_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a98f0e33d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0122_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0123_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0123_g1_upper_body_cmd.npz new file mode 100644 index 000000000..414038fe6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0123_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0124_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0124_g1_upper_body_cmd.npz new file mode 100644 index 000000000..905929a77 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0124_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0125_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0125_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c40720d64 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0125_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0126_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0126_g1_upper_body_cmd.npz new file mode 100644 index 000000000..abea3f5a7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0126_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0127_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0127_g1_upper_body_cmd.npz new file mode 100644 index 000000000..29d321692 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0127_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0128_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0128_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4855d1b83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0128_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0129_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0129_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fc005228d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0129_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0130_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0130_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e067009d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0130_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0131_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0131_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3bd869849 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0131_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0132_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0132_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2cbb466d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0132_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0133_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0133_g1_upper_body_cmd.npz new file mode 100644 index 000000000..73e482b15 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0133_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0134_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0134_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0944053ff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0134_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0135_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0135_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5ebbf5d5e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0135_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0136_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0136_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8c8232a2f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0136_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0137_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0137_g1_upper_body_cmd.npz new file mode 100644 index 000000000..562ba7e67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0137_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0138_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0138_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ff582eea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0138_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0139_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0139_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e8a0dd92 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0139_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0140_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0140_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0a9745d53 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0140_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0141_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0141_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6c772cac8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0141_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0142_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0142_g1_upper_body_cmd.npz new file mode 100644 index 000000000..928a8b861 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0142_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0143_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0143_g1_upper_body_cmd.npz new file mode 100644 index 000000000..15ddca545 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0143_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0144_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0144_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d8d4c30c7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0144_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0145_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0145_g1_upper_body_cmd.npz new file mode 100644 index 000000000..78ddf2e32 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0145_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0146_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0146_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bf9a0910a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0146_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0147_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0147_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c795fb359 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0147_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0148_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0148_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1107704c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0148_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0149_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0149_g1_upper_body_cmd.npz new file mode 100644 index 000000000..21bf35482 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0149_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0150_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0150_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e70e03b4b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0150_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0151_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0151_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3b15de18f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0151_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0152_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0152_g1_upper_body_cmd.npz new file mode 100644 index 000000000..90634c4f4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0152_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0153_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0153_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3dc16fbb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0153_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0154_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0154_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2264663f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0154_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0155_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0155_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0d40a8a60 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0155_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0156_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0156_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fee03349b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0156_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0157_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0157_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd71411a9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0157_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0158_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0158_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a90110b6b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0158_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0159_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0159_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a3c9d26f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0159_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0160_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0160_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e2692472b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0160_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0161_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0161_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c374e36d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0161_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0162_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0162_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bfd3407d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0162_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0163_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0163_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4edd4816a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0163_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0164_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0164_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c5f8ba00c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0164_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0165_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0165_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8366b2a34 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0165_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0166_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0166_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b790db6f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0166_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0167_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0167_g1_upper_body_cmd.npz new file mode 100644 index 000000000..60e540e5d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0167_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0168_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0168_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39b6e0d60 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0168_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0169_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0169_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aab7b80b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0169_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0170_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0170_g1_upper_body_cmd.npz new file mode 100644 index 000000000..47bb67689 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0170_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0171_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0171_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cd436b0eb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0171_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0172_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0172_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d245881c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0172_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0173_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0173_g1_upper_body_cmd.npz new file mode 100644 index 000000000..197eafab7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0173_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0174_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0174_g1_upper_body_cmd.npz new file mode 100644 index 000000000..034b62119 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0174_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0175_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0175_g1_upper_body_cmd.npz new file mode 100644 index 000000000..769f5fa42 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0175_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0176_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0176_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4c8b0bf73 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0176_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0177_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0177_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2661fd0d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0177_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0178_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0178_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6f5860189 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0178_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0179_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0179_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8055b62c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0179_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0180_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0180_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1b8d6dd1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0180_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0181_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0181_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f8380252a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0181_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0182_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0182_g1_upper_body_cmd.npz new file mode 100644 index 000000000..90eea60ba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0182_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0183_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0183_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a48ba5d0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0183_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0184_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0184_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b6cad85f3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0184_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0185_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0185_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a0bdce8b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0185_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0186_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0186_g1_upper_body_cmd.npz new file mode 100644 index 000000000..08f5a97bc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0186_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0187_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0187_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fb894607a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0187_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0188_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0188_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c49dac080 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0188_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0189_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0189_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64c696e3b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0189_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0190_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0190_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c18bba59b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0190_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0191_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0191_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2cf8b15e8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0191_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0192_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0192_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e499e515 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0192_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0193_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0193_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41b3050e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0193_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0194_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0194_g1_upper_body_cmd.npz new file mode 100644 index 000000000..82096ec7d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0194_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0195_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0195_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cdb499c44 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0195_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0196_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0196_g1_upper_body_cmd.npz new file mode 100644 index 000000000..894777c30 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0196_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0197_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0197_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c1ea4433c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0197_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0198_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0198_g1_upper_body_cmd.npz new file mode 100644 index 000000000..761e5a09a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0198_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0199_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0199_g1_upper_body_cmd.npz new file mode 100644 index 000000000..79228c5de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0199_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0200_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0200_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4fd382418 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0200_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0201_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0201_g1_upper_body_cmd.npz new file mode 100644 index 000000000..732879186 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0201_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0202_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0202_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bcd4fe021 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0202_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0203_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0203_g1_upper_body_cmd.npz new file mode 100644 index 000000000..847d8282c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0203_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0204_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0204_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f9b57857 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0204_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0205_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0205_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3bcac465 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0205_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0206_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0206_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e83aeecb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0206_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0207_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0207_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8d6e18e14 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0207_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0208_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0208_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2b1c86762 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0208_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0209_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0209_g1_upper_body_cmd.npz new file mode 100644 index 000000000..28b0aefed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0209_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0210_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0210_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4b2212b64 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0210_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0211_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0211_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bcd38de8b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0211_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0212_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0212_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64152d6df Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0212_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0213_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0213_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9cf721f0d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0213_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0214_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0214_g1_upper_body_cmd.npz new file mode 100644 index 000000000..be23ac1ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0214_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0215_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0215_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62e781cd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0215_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0216_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0216_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9078ddc1a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0216_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0217_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0217_g1_upper_body_cmd.npz new file mode 100644 index 000000000..33c3a02db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0217_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0218_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0218_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6472d686b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0218_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0219_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0219_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0f32c374c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0219_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0220_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0220_g1_upper_body_cmd.npz new file mode 100644 index 000000000..522b17d66 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0220_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0221_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0221_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5af918fbf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0221_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0222_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0222_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ebfc380c9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0222_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0223_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0223_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4de39f280 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0223_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0224_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0224_g1_upper_body_cmd.npz new file mode 100644 index 000000000..542fae83d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0224_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0225_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0225_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f8019c4a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0225_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0226_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0226_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5de3835ec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0226_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0227_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0227_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b08db1c97 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0227_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0228_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0228_g1_upper_body_cmd.npz new file mode 100644 index 000000000..141afc219 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0228_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0229_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0229_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a1ef8451a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0229_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0230_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0230_g1_upper_body_cmd.npz new file mode 100644 index 000000000..449508362 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0230_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0231_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0231_g1_upper_body_cmd.npz new file mode 100644 index 000000000..edd2dbef8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0231_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0232_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0232_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e2370b5f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0232_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0233_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0233_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b55cb97c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0233_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0234_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0234_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b12b27065 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0234_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0235_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0235_g1_upper_body_cmd.npz new file mode 100644 index 000000000..06ac4da5b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0235_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0236_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0236_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b98c5686b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0236_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0237_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0237_g1_upper_body_cmd.npz new file mode 100644 index 000000000..237b5af94 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0237_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0238_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0238_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d6a8bdfe0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0238_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0239_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0239_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9ef9ebf0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0239_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0240_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0240_g1_upper_body_cmd.npz new file mode 100644 index 000000000..05bdcd976 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0240_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0241_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0241_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6cc720ff8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0241_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0242_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0242_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0ce29b821 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0242_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0243_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0243_g1_upper_body_cmd.npz new file mode 100644 index 000000000..89534ce88 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0243_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0244_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0244_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f30dddbbe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0244_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0245_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0245_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd11f94ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0245_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0246_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0246_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dc16a0cef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0246_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0247_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0247_g1_upper_body_cmd.npz new file mode 100644 index 000000000..37fcde86e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0247_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0248_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0248_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62355dfee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0248_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0249_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0249_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1e8e11623 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0249_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0250_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0250_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b9ceede29 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0250_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0251_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0251_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1084c78e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0251_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0252_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0252_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea6b07223 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0252_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0253_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0253_g1_upper_body_cmd.npz new file mode 100644 index 000000000..736c44c7f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0253_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0254_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0254_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a602eafa3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0254_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0255_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0255_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c54d997a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0255_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0256_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0256_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b3c7eade1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0256_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0257_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0257_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a33181850 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0257_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0258_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0258_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7decb2dc5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0258_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0259_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0259_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f133055ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0259_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0260_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0260_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9dad11523 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0260_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0261_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0261_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c914ed196 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0261_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0262_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0262_g1_upper_body_cmd.npz new file mode 100644 index 000000000..35cf2bcdb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0262_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0263_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0263_g1_upper_body_cmd.npz new file mode 100644 index 000000000..298432572 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0263_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0264_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0264_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f4627fa34 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0264_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0265_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0265_g1_upper_body_cmd.npz new file mode 100644 index 000000000..560ceab92 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0265_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0266_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0266_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a833a85ed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0266_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0267_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0267_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a1366ffb7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0267_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0268_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0268_g1_upper_body_cmd.npz new file mode 100644 index 000000000..33e4624c5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0268_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0269_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0269_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bbf263ac1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0269_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0270_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0270_g1_upper_body_cmd.npz new file mode 100644 index 000000000..305c0c04f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0270_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0271_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0271_g1_upper_body_cmd.npz new file mode 100644 index 000000000..350929ef8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0271_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0272_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0272_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7a20bc8cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0272_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0273_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0273_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5dc7642c2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0273_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0274_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0274_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6486fe36c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0274_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0275_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0275_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f5cae009 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0275_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0276_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0276_g1_upper_body_cmd.npz new file mode 100644 index 000000000..11b1e15af Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0276_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0277_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0277_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9f29942e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0277_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0278_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0278_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38d9f064d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0278_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0279_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0279_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a6ffc9cd7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0279_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0280_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0280_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa73f489d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0280_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0281_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0281_g1_upper_body_cmd.npz new file mode 100644 index 000000000..245ddcd50 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0281_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0282_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0282_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee9c6f66c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0282_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0283_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0283_g1_upper_body_cmd.npz new file mode 100644 index 000000000..66f730bd3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0283_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0284_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0284_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8257c7186 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0284_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0285_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0285_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6eed29a82 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0285_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0286_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0286_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b4f0df542 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0286_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0287_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0287_g1_upper_body_cmd.npz new file mode 100644 index 000000000..87468e0a8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0287_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0288_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0288_g1_upper_body_cmd.npz new file mode 100644 index 000000000..33c00198e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0288_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0289_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0289_g1_upper_body_cmd.npz new file mode 100644 index 000000000..baee0b396 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0289_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0290_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0290_g1_upper_body_cmd.npz new file mode 100644 index 000000000..84ffe335f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0290_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0291_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0291_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e1942a358 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0291_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0292_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0292_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e8c15054d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0292_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0293_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0293_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4eb2f4161 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0293_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0294_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0294_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7b4bd22dc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0294_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0295_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0295_g1_upper_body_cmd.npz new file mode 100644 index 000000000..74b84b07a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0295_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0296_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0296_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41cf686a7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0296_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0297_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0297_g1_upper_body_cmd.npz new file mode 100644 index 000000000..43998cf05 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0297_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0298_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0298_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a0a59202f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0298_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0299_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0299_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d027a8343 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0299_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0300_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0300_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a59b3d9bc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0300_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0301_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0301_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1e110154c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0301_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0302_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0302_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d415747c4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0302_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0303_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0303_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1fa8c1f18 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0303_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0304_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0304_g1_upper_body_cmd.npz new file mode 100644 index 000000000..17d06dab7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0304_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0305_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0305_g1_upper_body_cmd.npz new file mode 100644 index 000000000..def8bf2dc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0305_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0306_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0306_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c2879d3ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0306_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0307_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0307_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a3a2818e8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0307_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0308_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0308_g1_upper_body_cmd.npz new file mode 100644 index 000000000..07ab99102 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0308_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0309_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0309_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bfd6aef60 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0309_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0310_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0310_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a3f288c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0310_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0311_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0311_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1c54cc5a8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0311_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0312_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0312_g1_upper_body_cmd.npz new file mode 100644 index 000000000..49d66ab21 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0312_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0313_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0313_g1_upper_body_cmd.npz new file mode 100644 index 000000000..606309902 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0313_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0314_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0314_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ae8b38ef5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0314_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0315_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0315_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ae8aec72d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0315_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0316_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0316_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5eaea0518 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0316_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0317_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0317_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e57d7d094 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0317_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0318_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0318_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9d05b65a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0318_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0319_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0319_g1_upper_body_cmd.npz new file mode 100644 index 000000000..615e257c2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0319_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0320_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0320_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a01bcbf5b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0320_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0321_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0321_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3052bb271 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0321_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0322_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0322_g1_upper_body_cmd.npz new file mode 100644 index 000000000..baac5ee6b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0322_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0323_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0323_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c460c63bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0323_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0324_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0324_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7ff222c3a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0324_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0325_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0325_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea75f3ddb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0325_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0326_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0326_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fddcf5a79 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0326_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0327_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0327_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3ce04e031 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0327_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0328_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0328_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed3fc751b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0328_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0329_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0329_g1_upper_body_cmd.npz new file mode 100644 index 000000000..876b788b4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0329_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0330_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0330_g1_upper_body_cmd.npz new file mode 100644 index 000000000..49e8ff75e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0330_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0331_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0331_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0cc4f932c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0331_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0332_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0332_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f352c5374 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0332_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0333_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0333_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9b8d5f40f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0333_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0334_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0334_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d8a54e101 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0334_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0335_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0335_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3592a8b4c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0335_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0336_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0336_g1_upper_body_cmd.npz new file mode 100644 index 000000000..06ec7127b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0336_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0337_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0337_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2eb333470 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0337_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0338_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0338_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b0ae3f205 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0338_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0339_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0339_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7ed11e75a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0339_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0340_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0340_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c110b7bee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0340_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0341_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0341_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c021ad3b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0341_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0342_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0342_g1_upper_body_cmd.npz new file mode 100644 index 000000000..415a5e4c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0342_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0343_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0343_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4acdc851f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0343_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0344_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0344_g1_upper_body_cmd.npz new file mode 100644 index 000000000..56eb63848 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0344_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0345_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0345_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3fb42f5c5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0345_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0346_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0346_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f0148b0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0346_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0347_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0347_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dec66337d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0347_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0348_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0348_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd1e5fa78 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0348_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0349_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0349_g1_upper_body_cmd.npz new file mode 100644 index 000000000..71c8dd9a7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0349_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0350_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0350_g1_upper_body_cmd.npz new file mode 100644 index 000000000..731ece3ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0350_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0351_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0351_g1_upper_body_cmd.npz new file mode 100644 index 000000000..431aab7e1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0351_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0352_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0352_g1_upper_body_cmd.npz new file mode 100644 index 000000000..63cd15dc1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0352_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0353_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0353_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b79ca7ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0353_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0354_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0354_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ca3c6482b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0354_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0355_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0355_g1_upper_body_cmd.npz new file mode 100644 index 000000000..20a0f27c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0355_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0356_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0356_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7365b2a4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0356_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0357_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0357_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a86b41c01 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0357_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0358_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0358_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c173553f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0358_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0359_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0359_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7cfbc778f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0359_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0360_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0360_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f358623d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0360_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0361_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0361_g1_upper_body_cmd.npz new file mode 100644 index 000000000..362b04b96 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0361_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0362_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0362_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a84778ceb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0362_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0363_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0363_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f02421204 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0363_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0364_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0364_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6843f0d7a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0364_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0365_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0365_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9efd17c7a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0365_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0366_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0366_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1f8ad9da2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0366_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0367_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0367_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7c18a56e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0367_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0368_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0368_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9d2b8d3de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0368_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0369_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0369_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4250bce98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0369_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0370_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0370_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0024dc86f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0370_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0371_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0371_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e4e81412 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0371_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0372_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0372_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e2fd1fcf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0372_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0373_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0373_g1_upper_body_cmd.npz new file mode 100644 index 000000000..815ad6e0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0373_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0374_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0374_g1_upper_body_cmd.npz new file mode 100644 index 000000000..821e82a2b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0374_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0375_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0375_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed8ebf6a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0375_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0376_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0376_g1_upper_body_cmd.npz new file mode 100644 index 000000000..47717c52b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0376_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0377_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0377_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3c3a478a9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0377_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0378_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0378_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8847dec15 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0378_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0379_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0379_g1_upper_body_cmd.npz new file mode 100644 index 000000000..57e4ea77f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0379_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0380_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0380_g1_upper_body_cmd.npz new file mode 100644 index 000000000..74ddcf6de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0380_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0381_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0381_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e4a6d608c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0381_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0382_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0382_g1_upper_body_cmd.npz new file mode 100644 index 000000000..328fa9c95 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0382_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0383_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0383_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c5003987c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0383_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0384_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0384_g1_upper_body_cmd.npz new file mode 100644 index 000000000..88e656d06 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0384_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0385_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0385_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a5bdcd403 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0385_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0386_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0386_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4da3906ab Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0386_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0387_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0387_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a64327491 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0387_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0388_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0388_g1_upper_body_cmd.npz new file mode 100644 index 000000000..54188567a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0388_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0389_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0389_g1_upper_body_cmd.npz new file mode 100644 index 000000000..95b6958cd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0389_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0390_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0390_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad797d9c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0390_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0391_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0391_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7dc72a33 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0391_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0392_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0392_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39c10b1ed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0392_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0393_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0393_g1_upper_body_cmd.npz new file mode 100644 index 000000000..20696d93d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0393_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0394_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0394_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d46ee70b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0394_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0395_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0395_g1_upper_body_cmd.npz new file mode 100644 index 000000000..43a5e437f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0395_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0396_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0396_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e0c3b645 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0396_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0397_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0397_g1_upper_body_cmd.npz new file mode 100644 index 000000000..baff1281b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0397_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0398_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0398_g1_upper_body_cmd.npz new file mode 100644 index 000000000..02148d901 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0398_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0399_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0399_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f450c4d19 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0399_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0400_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0400_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a66b671aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0400_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0401_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0401_g1_upper_body_cmd.npz new file mode 100644 index 000000000..13aed5f42 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0401_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0402_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0402_g1_upper_body_cmd.npz new file mode 100644 index 000000000..98242f9a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0402_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0403_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0403_g1_upper_body_cmd.npz new file mode 100644 index 000000000..af54539db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0403_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0404_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0404_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01d2fe9b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0404_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0405_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0405_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4d883ec88 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0405_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0406_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0406_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a5757433c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0406_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0407_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0407_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5be0ea19f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0407_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0408_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0408_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6125728fd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0408_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0409_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0409_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df6bf81b7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0409_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0410_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0410_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d6ac9f8e8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0410_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0411_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0411_g1_upper_body_cmd.npz new file mode 100644 index 000000000..440eb9fc9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0411_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0412_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0412_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f7b3431cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0412_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0413_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0413_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0168099eb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0413_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0414_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0414_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f2f3f8340 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0414_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0415_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0415_g1_upper_body_cmd.npz new file mode 100644 index 000000000..989738998 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0415_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0416_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0416_g1_upper_body_cmd.npz new file mode 100644 index 000000000..11662d2c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0416_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0417_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0417_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7e134da85 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0417_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0418_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0418_g1_upper_body_cmd.npz new file mode 100644 index 000000000..98739b2ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0418_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0419_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0419_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2fb57a180 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0419_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0420_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0420_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a37d827a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0420_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0421_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0421_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36cc46822 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0421_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0422_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0422_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad5b19239 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0422_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0423_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0423_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a66bfa4a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0423_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0424_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0424_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4402048a6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0424_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0425_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0425_g1_upper_body_cmd.npz new file mode 100644 index 000000000..76bba8608 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0425_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0426_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0426_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d20cbc02d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0426_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0427_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0427_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce3ba48fb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0427_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0428_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0428_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f0b25ab7d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0428_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0429_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0429_g1_upper_body_cmd.npz new file mode 100644 index 000000000..488859852 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0429_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0430_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0430_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64da03462 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0430_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0431_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0431_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df085816e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0431_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0432_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0432_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9bdb45b48 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0432_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0433_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0433_g1_upper_body_cmd.npz new file mode 100644 index 000000000..73f4f00bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0433_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0434_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0434_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b5228b75d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0434_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0435_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0435_g1_upper_body_cmd.npz new file mode 100644 index 000000000..da8896df3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0435_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0436_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0436_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bdf77ff2e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0436_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0437_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0437_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2964a30d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0437_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0438_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0438_g1_upper_body_cmd.npz new file mode 100644 index 000000000..099969fe0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0438_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0439_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0439_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9892a2abe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0439_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0440_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0440_g1_upper_body_cmd.npz new file mode 100644 index 000000000..627a6e858 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0440_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0441_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0441_g1_upper_body_cmd.npz new file mode 100644 index 000000000..430d6be8d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0441_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0442_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0442_g1_upper_body_cmd.npz new file mode 100644 index 000000000..534833fda Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0442_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0443_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0443_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5d5330177 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0443_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0444_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0444_g1_upper_body_cmd.npz new file mode 100644 index 000000000..53087aa5f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0444_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0445_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0445_g1_upper_body_cmd.npz new file mode 100644 index 000000000..798a96e7d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0445_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0446_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0446_g1_upper_body_cmd.npz new file mode 100644 index 000000000..017d2548a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0446_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0447_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0447_g1_upper_body_cmd.npz new file mode 100644 index 000000000..43f467fb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0447_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0448_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0448_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7a97a94c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0448_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0449_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0449_g1_upper_body_cmd.npz new file mode 100644 index 000000000..20d7b78df Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0449_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0450_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0450_g1_upper_body_cmd.npz new file mode 100644 index 000000000..51b4cd139 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0450_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0451_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0451_g1_upper_body_cmd.npz new file mode 100644 index 000000000..345a3e2c9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0451_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0452_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0452_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bfd7e6d69 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0452_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0453_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0453_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a1e1b762 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0453_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0454_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0454_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c0806b10a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0454_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0455_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0455_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fbcb46788 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0455_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0456_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0456_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f123dbe14 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0456_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0457_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0457_g1_upper_body_cmd.npz new file mode 100644 index 000000000..05308a4a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0457_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0458_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0458_g1_upper_body_cmd.npz new file mode 100644 index 000000000..14451739a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0458_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0459_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0459_g1_upper_body_cmd.npz new file mode 100644 index 000000000..242c6841d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0459_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0460_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0460_g1_upper_body_cmd.npz new file mode 100644 index 000000000..34d0ef6d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0460_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0461_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0461_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f29f9bc7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0461_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0462_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0462_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1dbc62ae6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0462_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0463_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0463_g1_upper_body_cmd.npz new file mode 100644 index 000000000..099c0207b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0463_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0464_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0464_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ab55fdd47 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0464_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0465_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0465_g1_upper_body_cmd.npz new file mode 100644 index 000000000..874d4a662 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0465_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0466_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0466_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e1c2d15d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0466_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0467_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0467_g1_upper_body_cmd.npz new file mode 100644 index 000000000..eeaa2176f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0467_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0468_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0468_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e65a0e171 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0468_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0469_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0469_g1_upper_body_cmd.npz new file mode 100644 index 000000000..87fa5a446 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0469_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0470_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0470_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5d0ef8451 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0470_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0471_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0471_g1_upper_body_cmd.npz new file mode 100644 index 000000000..983bec751 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0471_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0472_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0472_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c66095067 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0472_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0473_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0473_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f98f09bd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0473_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0474_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0474_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d1666490e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0474_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0475_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0475_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0abfa745d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0475_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0476_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0476_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4f9c639bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0476_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0477_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0477_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df6d70088 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0477_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0478_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0478_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f83530307 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0478_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0479_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0479_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a71f1b63 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0479_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0480_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0480_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d84e16841 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0480_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0481_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0481_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2cdbe769b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0481_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0482_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0482_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a1d384742 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0482_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0483_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0483_g1_upper_body_cmd.npz new file mode 100644 index 000000000..50e830349 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0483_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0484_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0484_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1e9d0e959 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0484_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0485_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0485_g1_upper_body_cmd.npz new file mode 100644 index 000000000..985d41c51 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0485_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0486_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0486_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6210bf556 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0486_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0487_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0487_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f8971fabb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0487_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0488_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0488_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0e34a96e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0488_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0489_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0489_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e11747f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0489_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0490_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0490_g1_upper_body_cmd.npz new file mode 100644 index 000000000..eca09db2d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0490_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0491_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0491_g1_upper_body_cmd.npz new file mode 100644 index 000000000..12614ba6b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0491_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0492_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0492_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c33fea7f2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0492_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0493_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0493_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7d9ff4bff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0493_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0494_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0494_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aebe0c9e5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0494_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0495_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0495_g1_upper_body_cmd.npz new file mode 100644 index 000000000..58c21d40e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0495_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0496_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0496_g1_upper_body_cmd.npz new file mode 100644 index 000000000..49407a07c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0496_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0497_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0497_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6a01ca2fc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0497_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0498_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0498_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c67543aa7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0498_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0499_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0499_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5043d6371 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0499_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0500_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0500_g1_upper_body_cmd.npz new file mode 100644 index 000000000..703cbd6bd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0500_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0501_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0501_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01934b0ec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0501_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0502_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0502_g1_upper_body_cmd.npz new file mode 100644 index 000000000..818107d8f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0502_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0503_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0503_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7ca7f1472 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0503_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0504_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0504_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c2f0e93c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0504_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0505_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0505_g1_upper_body_cmd.npz new file mode 100644 index 000000000..09465b982 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0505_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0506_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0506_g1_upper_body_cmd.npz new file mode 100644 index 000000000..77b96e3c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0506_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0507_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0507_g1_upper_body_cmd.npz new file mode 100644 index 000000000..57ae6e696 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0507_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0508_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0508_g1_upper_body_cmd.npz new file mode 100644 index 000000000..15e2c5f7e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0508_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0509_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0509_g1_upper_body_cmd.npz new file mode 100644 index 000000000..438330a96 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0509_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0510_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0510_g1_upper_body_cmd.npz new file mode 100644 index 000000000..77b805e26 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0510_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0511_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0511_g1_upper_body_cmd.npz new file mode 100644 index 000000000..37b7ead3f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0511_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0512_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0512_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a5b766f39 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0512_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0513_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0513_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee312013d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0513_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0514_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0514_g1_upper_body_cmd.npz new file mode 100644 index 000000000..eb02df4bf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0514_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0515_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0515_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2db85ed90 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0515_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0516_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0516_g1_upper_body_cmd.npz new file mode 100644 index 000000000..97732396f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0516_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0517_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0517_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2fa718f98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0517_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0518_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0518_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1c1ec23e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0518_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0519_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0519_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cc91c6098 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0519_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0520_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0520_g1_upper_body_cmd.npz new file mode 100644 index 000000000..686f296f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0520_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0521_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0521_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b0f8ac8e4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0521_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0522_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0522_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c6934c791 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0522_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0523_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0523_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0abb658f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0523_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0524_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0524_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5624153c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0524_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0525_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0525_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a0690d723 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0525_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0526_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0526_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e096154ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0526_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0527_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0527_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f7211361e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0527_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0528_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0528_g1_upper_body_cmd.npz new file mode 100644 index 000000000..90b554dec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0528_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0529_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0529_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4089c44fa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0529_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0530_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0530_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36462a9d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0530_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0531_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0531_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1f9de7ea4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0531_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0532_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0532_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e2c63ed4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0532_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0533_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0533_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39a8a2f3a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0533_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0534_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0534_g1_upper_body_cmd.npz new file mode 100644 index 000000000..58cb607a8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0534_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0535_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0535_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bb310178b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0535_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0536_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0536_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8dabfd8be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0536_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0537_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0537_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1cf5d6096 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0537_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0538_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0538_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f3ed97e46 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0538_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0539_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0539_g1_upper_body_cmd.npz new file mode 100644 index 000000000..52bc6825d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0539_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0540_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0540_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6dde534e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0540_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0541_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0541_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ccfe9d85c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0541_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0542_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0542_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0811c6e48 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0542_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0543_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0543_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a3da5797 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0543_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0544_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0544_g1_upper_body_cmd.npz new file mode 100644 index 000000000..271340b3d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0544_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0545_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0545_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1b3443d1f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0545_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0546_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0546_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bfcd250d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0546_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0547_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0547_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c8c265f00 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0547_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0548_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0548_g1_upper_body_cmd.npz new file mode 100644 index 000000000..83de50bda Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0548_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0549_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0549_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef4f6b8fc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0549_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0550_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0550_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f5f3762e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0550_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0551_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0551_g1_upper_body_cmd.npz new file mode 100644 index 000000000..78b461b87 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0551_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0552_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0552_g1_upper_body_cmd.npz new file mode 100644 index 000000000..913bab822 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0552_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0553_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0553_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9bc812645 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0553_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0554_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0554_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fcc8f4b74 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0554_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0555_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0555_g1_upper_body_cmd.npz new file mode 100644 index 000000000..81082963a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0555_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0556_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0556_g1_upper_body_cmd.npz new file mode 100644 index 000000000..365888a0c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0556_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0557_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0557_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c2271b9dd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0557_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0558_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0558_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7a00cbeb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0558_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0559_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0559_g1_upper_body_cmd.npz new file mode 100644 index 000000000..69c5f102c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0559_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0560_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0560_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bdbaa94f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0560_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0561_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0561_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a77cfe5d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0561_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0562_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0562_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7381419d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0562_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0563_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0563_g1_upper_body_cmd.npz new file mode 100644 index 000000000..43df5a9d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0563_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0564_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0564_g1_upper_body_cmd.npz new file mode 100644 index 000000000..515c09be6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0564_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0565_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0565_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9085d59e5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0565_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0566_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0566_g1_upper_body_cmd.npz new file mode 100644 index 000000000..503728019 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0566_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0567_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0567_g1_upper_body_cmd.npz new file mode 100644 index 000000000..97a43ee27 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0567_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0568_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0568_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64f965cff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0568_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0569_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0569_g1_upper_body_cmd.npz new file mode 100644 index 000000000..35419a5a4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0569_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0570_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0570_g1_upper_body_cmd.npz new file mode 100644 index 000000000..218523dd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0570_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0571_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0571_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0368de878 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0571_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0572_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0572_g1_upper_body_cmd.npz new file mode 100644 index 000000000..992eefd51 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0572_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0573_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0573_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dcfaf11c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0573_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0574_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0574_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f04e5bba4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0574_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0575_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0575_g1_upper_body_cmd.npz new file mode 100644 index 000000000..023d95a0e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0575_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0576_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0576_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df7910b8f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0576_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0577_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0577_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5cb46a45d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0577_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0578_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0578_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3584bc806 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0578_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0579_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0579_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b03916d67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0579_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0580_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0580_g1_upper_body_cmd.npz new file mode 100644 index 000000000..692088b67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0580_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0581_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0581_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c670be5a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0581_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0582_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0582_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ff5e99e99 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0582_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0583_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0583_g1_upper_body_cmd.npz new file mode 100644 index 000000000..628db26b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0583_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0584_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0584_g1_upper_body_cmd.npz new file mode 100644 index 000000000..22ec52cde Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0584_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0585_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0585_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3b6006025 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0585_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0586_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0586_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d92dc796a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0586_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0587_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0587_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b5db7d8c4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0587_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0588_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0588_g1_upper_body_cmd.npz new file mode 100644 index 000000000..532c78739 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0588_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0589_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0589_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8035f251e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0589_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0590_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0590_g1_upper_body_cmd.npz new file mode 100644 index 000000000..13a1b6740 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0590_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0591_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0591_g1_upper_body_cmd.npz new file mode 100644 index 000000000..767a93894 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0591_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0592_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0592_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5ef8a3aeb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0592_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0593_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0593_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7d788976b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0593_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0594_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0594_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a86d1ada3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0594_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0595_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0595_g1_upper_body_cmd.npz new file mode 100644 index 000000000..04e784fdd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0595_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0596_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0596_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2c08d315c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0596_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0597_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0597_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fdead7fd0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0597_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0598_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0598_g1_upper_body_cmd.npz new file mode 100644 index 000000000..063719bb7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0598_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0599_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0599_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9c2622eeb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0599_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0600_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0600_g1_upper_body_cmd.npz new file mode 100644 index 000000000..202696443 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0600_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0601_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0601_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e975ffb9e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0601_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0602_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0602_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f23ad1797 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0602_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0603_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0603_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0ccf497f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0603_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0604_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0604_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a15c8efa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0604_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0605_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0605_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee689dfd6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0605_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0606_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0606_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2c74b7b99 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0606_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0607_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0607_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec39c15c4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0607_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0608_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0608_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fd344c4e3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0608_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0609_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0609_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c72b11313 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0609_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0610_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0610_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3ad90b43f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0610_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0611_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0611_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6eed42607 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0611_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0612_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0612_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d8a7a7dec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0612_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0613_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0613_g1_upper_body_cmd.npz new file mode 100644 index 000000000..49cab96eb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0613_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0614_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0614_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6843f4d18 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0614_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0615_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0615_g1_upper_body_cmd.npz new file mode 100644 index 000000000..65c8f70c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0615_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0616_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0616_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0552f9e42 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0616_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0617_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0617_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c18ccce45 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0617_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0618_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0618_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6299c50e3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0618_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0619_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0619_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b3431814f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0619_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0620_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0620_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce529304c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0620_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0621_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0621_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d0339a1f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0621_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0622_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0622_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ba235e3ab Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0622_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0623_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0623_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a592b334 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0623_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0624_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0624_g1_upper_body_cmd.npz new file mode 100644 index 000000000..42344cdcc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0624_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0625_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0625_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41d4a27b3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0625_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0626_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0626_g1_upper_body_cmd.npz new file mode 100644 index 000000000..615966025 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0626_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0627_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0627_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ff58b751 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0627_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0628_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0628_g1_upper_body_cmd.npz new file mode 100644 index 000000000..521a69e8c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0628_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0629_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0629_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a0b21d140 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0629_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0630_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0630_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7cd9a278e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0630_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0631_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0631_g1_upper_body_cmd.npz new file mode 100644 index 000000000..04d5999b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0631_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0632_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0632_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e05898efc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0632_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0633_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0633_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5bde5c504 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0633_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0634_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0634_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8386eefe6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0634_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0635_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0635_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9205efc0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0635_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0636_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0636_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c2ae8e36 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0636_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0637_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0637_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c7e157b6a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0637_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0638_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0638_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a6e4265f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0638_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0639_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0639_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a8b8d568c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0639_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0640_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0640_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5caaf224e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0640_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0641_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0641_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f145380b0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0641_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0642_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0642_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e5f2f7f1f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0642_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0643_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0643_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2c42539c4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0643_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0644_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0644_g1_upper_body_cmd.npz new file mode 100644 index 000000000..31aaf1006 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0644_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0645_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0645_g1_upper_body_cmd.npz new file mode 100644 index 000000000..795105613 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0645_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0646_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0646_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a34d2a3b0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0646_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0647_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0647_g1_upper_body_cmd.npz new file mode 100644 index 000000000..884a91dea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0647_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0648_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0648_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ad18f528 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0648_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0649_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0649_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5eeaeccdd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0649_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0650_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0650_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc8004085 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0650_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0651_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0651_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9bafa40c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0651_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0652_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0652_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9b7e0cee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0652_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0653_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0653_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7353fa096 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0653_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0654_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0654_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1ae65588b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0654_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0655_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0655_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3531db48 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0655_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0656_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0656_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9fb47ee7b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0656_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0657_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0657_g1_upper_body_cmd.npz new file mode 100644 index 000000000..826e23234 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0657_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0658_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0658_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36411f0f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0658_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0659_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0659_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aadb80342 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0659_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0660_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0660_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea197d9d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0660_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0661_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0661_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b3dcc80d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0661_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0662_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0662_g1_upper_body_cmd.npz new file mode 100644 index 000000000..111fe4626 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0662_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0663_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0663_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d8a1b3bec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0663_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0664_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0664_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e155e7bdb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0664_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0665_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0665_g1_upper_body_cmd.npz new file mode 100644 index 000000000..226800866 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0665_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0666_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0666_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d593a09de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0666_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0667_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0667_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0212d2252 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0667_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0668_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0668_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bca9ff830 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0668_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0669_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0669_g1_upper_body_cmd.npz new file mode 100644 index 000000000..afedc81f4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0669_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0670_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0670_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f197183f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0670_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0671_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0671_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41e32c55d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0671_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0672_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0672_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3decfd4ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0672_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0673_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0673_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d2b9dc7b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0673_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0674_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0674_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fc9e6da23 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0674_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0675_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0675_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8f19ad6c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0675_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0676_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0676_g1_upper_body_cmd.npz new file mode 100644 index 000000000..111961e01 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0676_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0677_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0677_g1_upper_body_cmd.npz new file mode 100644 index 000000000..44716077f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0677_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0678_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0678_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f2b4bc61d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0678_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0679_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0679_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8a7cd7b92 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0679_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0680_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0680_g1_upper_body_cmd.npz new file mode 100644 index 000000000..19c0db338 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0680_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0681_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0681_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a8c1c04a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0681_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0682_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0682_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5d7f4fa3d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0682_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0683_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0683_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4e077a124 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0683_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0684_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0684_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3aaf15019 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0684_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0685_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0685_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d41b37ef9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0685_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0686_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0686_g1_upper_body_cmd.npz new file mode 100644 index 000000000..748c632fa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0686_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0687_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0687_g1_upper_body_cmd.npz new file mode 100644 index 000000000..89605a5fe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0687_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0688_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0688_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dc333e8a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0688_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0689_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0689_g1_upper_body_cmd.npz new file mode 100644 index 000000000..81e3ca1e1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0689_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0690_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0690_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4c16ba979 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0690_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0691_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0691_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c22ea96d9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0691_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0692_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0692_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d309e0489 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0692_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0693_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0693_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ca0fe20d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0693_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0694_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0694_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5da3dd5d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0694_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0695_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0695_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d38b673a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0695_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0696_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0696_g1_upper_body_cmd.npz new file mode 100644 index 000000000..226c5b5a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0696_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0697_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0697_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8041a479d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0697_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0698_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0698_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9b3a6e208 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0698_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0699_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0699_g1_upper_body_cmd.npz new file mode 100644 index 000000000..92a14a4f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0699_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0700_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0700_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2f6491449 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0700_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0701_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0701_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0f2594737 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0701_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0702_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0702_g1_upper_body_cmd.npz new file mode 100644 index 000000000..78f7c3079 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0702_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0703_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0703_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a37fcdb68 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0703_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0704_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0704_g1_upper_body_cmd.npz new file mode 100644 index 000000000..437618f29 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0704_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0705_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0705_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7592cded8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0705_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0706_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0706_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0a4d079c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0706_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0707_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0707_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ac31ee3d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0707_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0708_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0708_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6a52887d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0708_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0709_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0709_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e43639eb7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0709_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0710_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0710_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38dae5cf7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0710_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0711_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0711_g1_upper_body_cmd.npz new file mode 100644 index 000000000..17354e390 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0711_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0712_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0712_g1_upper_body_cmd.npz new file mode 100644 index 000000000..04927ec18 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0712_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0713_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0713_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c2ca0a5d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0713_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0714_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0714_g1_upper_body_cmd.npz new file mode 100644 index 000000000..771aaa307 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0714_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0715_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0715_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5964e9510 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0715_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0716_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0716_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bacb8fe8a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0716_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0717_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0717_g1_upper_body_cmd.npz new file mode 100644 index 000000000..699b19e13 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0717_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0718_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0718_g1_upper_body_cmd.npz new file mode 100644 index 000000000..21ef131ef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0718_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0719_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0719_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8417ead26 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0719_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0720_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0720_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1c185d052 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0720_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0721_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0721_g1_upper_body_cmd.npz new file mode 100644 index 000000000..97ee5e6be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0721_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0722_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0722_g1_upper_body_cmd.npz new file mode 100644 index 000000000..99c770971 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0722_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0723_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0723_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e93f54bd9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0723_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0724_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0724_g1_upper_body_cmd.npz new file mode 100644 index 000000000..25a9e8b20 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0724_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0725_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0725_g1_upper_body_cmd.npz new file mode 100644 index 000000000..579866a21 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0725_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0726_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0726_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9341bcc0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0726_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0727_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0727_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cbcd6e602 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0727_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0000_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0000_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee36ee0f4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0000_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0001_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0001_g1_upper_body_cmd.npz new file mode 100644 index 000000000..863082d3d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0001_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0002_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0002_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6fa1e6c99 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0002_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0003_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0003_g1_upper_body_cmd.npz new file mode 100644 index 000000000..faa3c91cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0003_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0004_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0004_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2e9d72492 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0004_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0005_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0005_g1_upper_body_cmd.npz new file mode 100644 index 000000000..574b31544 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0005_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0006_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0006_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f3e2e8cc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0006_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0007_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0007_g1_upper_body_cmd.npz new file mode 100644 index 000000000..71f271986 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0007_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0008_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0008_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38c603517 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0008_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0009_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0009_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9340ab045 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0009_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0010_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0010_g1_upper_body_cmd.npz new file mode 100644 index 000000000..968cda08f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0010_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0011_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0011_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e8d5b0574 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0011_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0012_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0012_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2ce4b0beb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0012_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0013_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0013_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e8d7df1c9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0013_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0014_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0014_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2dd80c1c1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0014_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0015_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0015_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a543df9b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0015_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0016_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0016_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2d2d97284 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0016_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0017_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0017_g1_upper_body_cmd.npz new file mode 100644 index 000000000..74827d8d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0017_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0018_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0018_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a5d573735 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0018_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0019_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0019_g1_upper_body_cmd.npz new file mode 100644 index 000000000..00e13db38 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0019_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0020_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0020_g1_upper_body_cmd.npz new file mode 100644 index 000000000..17403d2ff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0020_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0021_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0021_g1_upper_body_cmd.npz new file mode 100644 index 000000000..236e7aa04 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0021_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0022_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0022_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fe2c32fc7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0022_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0023_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0023_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dc67a5955 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0023_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0024_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0024_g1_upper_body_cmd.npz new file mode 100644 index 000000000..985219d47 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0024_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0025_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0025_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de844dcdb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0025_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0026_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0026_g1_upper_body_cmd.npz new file mode 100644 index 000000000..613a30276 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0026_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0027_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0027_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa5aea1d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0027_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0028_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0028_g1_upper_body_cmd.npz new file mode 100644 index 000000000..af126edd2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0028_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0029_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0029_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7608a70f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0029_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0030_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0030_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e95d86123 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0030_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0031_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0031_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61060a1f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0031_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0032_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0032_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c9cff481 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0032_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0033_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0033_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8b093db4f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0033_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0034_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0034_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dec357878 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0034_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0035_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0035_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a8e635458 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0035_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0036_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0036_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e6e9e8174 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0036_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0037_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0037_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ee6e9e06 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0037_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0038_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0038_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a4523db9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0038_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0039_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0039_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f3a4471b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0039_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0040_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0040_g1_upper_body_cmd.npz new file mode 100644 index 000000000..129972f32 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0040_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0041_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0041_g1_upper_body_cmd.npz new file mode 100644 index 000000000..382e0a890 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0041_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0042_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0042_g1_upper_body_cmd.npz new file mode 100644 index 000000000..18f6d7586 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0042_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0043_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0043_g1_upper_body_cmd.npz new file mode 100644 index 000000000..070ebaf7c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0043_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0044_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0044_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f28e6962e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0044_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0045_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0045_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f56617350 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0045_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0046_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0046_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62abf8fe5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0046_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0047_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0047_g1_upper_body_cmd.npz new file mode 100644 index 000000000..877f82ae2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0047_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0048_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0048_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fc4b11dd1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0048_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0049_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0049_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3bfa0f5d5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0049_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0050_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0050_g1_upper_body_cmd.npz new file mode 100644 index 000000000..eb5d1c414 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0050_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0051_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0051_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6f6291d6c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0051_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0052_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0052_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b16d34793 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0052_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0053_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0053_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f38cbd49 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0053_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0054_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0054_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d40cd5eec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0054_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0055_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0055_g1_upper_body_cmd.npz new file mode 100644 index 000000000..187770fec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0055_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0056_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0056_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39e06b386 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0056_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0057_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0057_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6678e33cd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0057_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0058_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0058_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4e5ec3359 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0058_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0059_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0059_g1_upper_body_cmd.npz new file mode 100644 index 000000000..317400325 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0059_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0060_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0060_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8768daf26 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0060_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0061_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0061_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e5d31923e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0061_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0062_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0062_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3115362ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0062_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0063_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0063_g1_upper_body_cmd.npz new file mode 100644 index 000000000..55360e5be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0063_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0064_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0064_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b5beb1b73 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0064_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0065_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0065_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a778a2af9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0065_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0066_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0066_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ffd8fb4bc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0066_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0067_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0067_g1_upper_body_cmd.npz new file mode 100644 index 000000000..446d4f0d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0067_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0068_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0068_g1_upper_body_cmd.npz new file mode 100644 index 000000000..417c55249 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0068_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0069_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0069_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b89562b2a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0069_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0070_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0070_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a8b6d42b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0070_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0071_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0071_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec74faf31 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0071_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0072_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0072_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e79ad722 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0072_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0073_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0073_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9729a2ab Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0073_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0074_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0074_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad8c1b208 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0074_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0075_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0075_g1_upper_body_cmd.npz new file mode 100644 index 000000000..312915e17 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0075_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0076_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0076_g1_upper_body_cmd.npz new file mode 100644 index 000000000..128e5f57c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0076_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0077_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0077_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38b9e1f14 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0077_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0078_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0078_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c97aaf9e8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0078_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0079_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0079_g1_upper_body_cmd.npz new file mode 100644 index 000000000..858e2632b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0079_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0080_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0080_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1b819acad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0080_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0081_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0081_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ab7175b63 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0081_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0082_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0082_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1c1dcca10 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0082_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0083_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0083_g1_upper_body_cmd.npz new file mode 100644 index 000000000..37947f6b3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0083_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0084_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0084_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a5780b217 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0084_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0085_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0085_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cde4ddca4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0085_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0086_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0086_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b5222c4e4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0086_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0087_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0087_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ddfa7a3fc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0087_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0088_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0088_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c80e26f3a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0088_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0089_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0089_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ba3ae8ec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0089_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0090_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0090_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3bae86ae2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0090_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0091_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0091_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ca7f9112b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0091_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0092_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0092_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ddc25ac61 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0092_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0093_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0093_g1_upper_body_cmd.npz new file mode 100644 index 000000000..becb0bbe8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0093_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0094_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0094_g1_upper_body_cmd.npz new file mode 100644 index 000000000..864a93463 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0094_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0095_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0095_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cc6afe63c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0095_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0096_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0096_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9b80d8d6f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0096_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0097_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0097_g1_upper_body_cmd.npz new file mode 100644 index 000000000..999af5459 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0097_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0098_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0098_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f3c0202d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0098_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0099_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0099_g1_upper_body_cmd.npz new file mode 100644 index 000000000..17dcbb2a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0099_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0100_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0100_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea58d7da0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0100_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0101_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0101_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b7d8ac5e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0101_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0102_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0102_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1c5069e4f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0102_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0103_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0103_g1_upper_body_cmd.npz new file mode 100644 index 000000000..293ac4b98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0103_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0104_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0104_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b540c467c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0104_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0105_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0105_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1f763b55b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0105_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0106_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0106_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1ccd8811 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0106_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0107_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0107_g1_upper_body_cmd.npz new file mode 100644 index 000000000..419e71246 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0107_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0108_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0108_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce7477e32 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0108_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0109_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0109_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6216f2780 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0109_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0110_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0110_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c2750395 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0110_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0111_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0111_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a152476ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0111_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0112_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0112_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d35e4321a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0112_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0113_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0113_g1_upper_body_cmd.npz new file mode 100644 index 000000000..da27363cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0113_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0114_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0114_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b279bf948 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0114_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0115_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0115_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8029a71d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0115_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0116_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0116_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4095507b0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0116_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0117_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0117_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a3bc4b56d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0117_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0118_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0118_g1_upper_body_cmd.npz new file mode 100644 index 000000000..55ddc0927 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0118_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0119_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0119_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a50b332e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0119_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0120_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0120_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f546c7cde Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0120_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0121_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0121_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d7f87d28d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0121_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0122_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0122_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9d39696da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0122_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0123_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0123_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5ed1add4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0123_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0124_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0124_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5047f73e7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0124_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0125_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0125_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dce7713a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0125_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0126_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0126_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6222091eb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0126_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0127_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0127_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4f38ce802 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0127_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0128_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0128_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c521f3c5c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0128_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0129_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0129_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad94e2a5b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0129_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0130_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0130_g1_upper_body_cmd.npz new file mode 100644 index 000000000..086dfab68 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0130_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0131_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0131_g1_upper_body_cmd.npz new file mode 100644 index 000000000..126a09dce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0131_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0132_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0132_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd0f2c4f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0132_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0133_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0133_g1_upper_body_cmd.npz new file mode 100644 index 000000000..22243fd04 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0133_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0134_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0134_g1_upper_body_cmd.npz new file mode 100644 index 000000000..243d91965 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0134_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0135_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0135_g1_upper_body_cmd.npz new file mode 100644 index 000000000..07f522cae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0135_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0136_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0136_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41341a28b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0136_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0137_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0137_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c23e6d780 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0137_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0138_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0138_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a647e2f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0138_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0139_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0139_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cd655f135 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0139_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0140_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0140_g1_upper_body_cmd.npz new file mode 100644 index 000000000..038ec3693 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0140_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0141_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0141_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6018eb6bf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0141_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0142_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0142_g1_upper_body_cmd.npz new file mode 100644 index 000000000..beb9acb85 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0142_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0143_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0143_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7183430d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0143_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0144_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0144_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01070f7b7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0144_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0145_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0145_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d801256a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0145_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0146_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0146_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6a669bea7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0146_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0147_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0147_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9faf77eb8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0147_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0148_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0148_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6eb8d1b90 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0148_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0149_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0149_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7bc8d8b45 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0149_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0150_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0150_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0093afa36 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0150_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0151_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0151_g1_upper_body_cmd.npz new file mode 100644 index 000000000..87bdeb815 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0151_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0152_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0152_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7740dd57d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0152_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0153_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0153_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1ddc835da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0153_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0154_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0154_g1_upper_body_cmd.npz new file mode 100644 index 000000000..570cb6ded Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0154_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0155_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0155_g1_upper_body_cmd.npz new file mode 100644 index 000000000..45a6085b9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0155_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0156_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0156_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b874302d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0156_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0157_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0157_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b41b46140 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0157_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0158_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0158_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a16be0285 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0158_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0159_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0159_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2e2571c4c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0159_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0160_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0160_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c1051ec83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0160_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0161_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0161_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de49ea672 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0161_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0162_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0162_g1_upper_body_cmd.npz new file mode 100644 index 000000000..78fbb3355 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0162_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0163_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0163_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f4a28ca56 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0163_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0164_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0164_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d05de2604 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0164_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0165_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0165_g1_upper_body_cmd.npz new file mode 100644 index 000000000..641e3fbb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0165_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0166_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0166_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cb2851634 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0166_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0167_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0167_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7e2d210de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0167_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0168_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0168_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc19bb8fd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0168_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0169_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0169_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2943dc3ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0169_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0170_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0170_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7de1402af Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0170_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0171_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0171_g1_upper_body_cmd.npz new file mode 100644 index 000000000..84465409a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0171_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0172_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0172_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8823f1c3b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0172_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0173_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0173_g1_upper_body_cmd.npz new file mode 100644 index 000000000..971e766f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0173_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0174_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0174_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1110d065b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0174_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0175_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0175_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5ad338948 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0175_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0176_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0176_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc6a6e371 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0176_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0177_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0177_g1_upper_body_cmd.npz new file mode 100644 index 000000000..427c0b3e1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0177_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0178_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0178_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bcd51d32c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0178_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0179_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0179_g1_upper_body_cmd.npz new file mode 100644 index 000000000..da07907ca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0179_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0180_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0180_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5a52d9d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0180_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0181_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0181_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f0d783819 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0181_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0182_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0182_g1_upper_body_cmd.npz new file mode 100644 index 000000000..957419e1a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0182_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0183_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0183_g1_upper_body_cmd.npz new file mode 100644 index 000000000..97a881e25 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0183_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0184_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0184_g1_upper_body_cmd.npz new file mode 100644 index 000000000..190f29584 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0184_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0185_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0185_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b924c13d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0185_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0186_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0186_g1_upper_body_cmd.npz new file mode 100644 index 000000000..057a916da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0186_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0187_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0187_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4b07bdc32 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0187_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0188_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0188_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7678f7225 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0188_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0189_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0189_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5e92c1443 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0189_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0190_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0190_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9fec2c32 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0190_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0191_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0191_g1_upper_body_cmd.npz new file mode 100644 index 000000000..501e5dde3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0191_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0192_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0192_g1_upper_body_cmd.npz new file mode 100644 index 000000000..94fa5b8a1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0192_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0193_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0193_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0ade6a8ea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0193_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0194_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0194_g1_upper_body_cmd.npz new file mode 100644 index 000000000..63d0b145c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0194_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0195_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0195_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de90a68e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0195_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0196_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0196_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b10cb5c4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0196_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0197_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0197_g1_upper_body_cmd.npz new file mode 100644 index 000000000..044ca93cd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0197_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0198_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0198_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8d2f9b241 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0198_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0199_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0199_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc3ba46ed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0199_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0200_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0200_g1_upper_body_cmd.npz new file mode 100644 index 000000000..654af402f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0200_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0201_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0201_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b464a6f5b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0201_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0202_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0202_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cc7787de5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0202_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0203_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0203_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef6283e8b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0203_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0204_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0204_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3ef908b9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0204_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0205_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0205_g1_upper_body_cmd.npz new file mode 100644 index 000000000..68c259a16 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0205_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0206_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0206_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f1a3e7d46 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0206_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0207_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0207_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e77c5c750 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0207_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0208_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0208_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ff224dc67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0208_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0209_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0209_g1_upper_body_cmd.npz new file mode 100644 index 000000000..af8dab38f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0209_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0210_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0210_g1_upper_body_cmd.npz new file mode 100644 index 000000000..10bc28494 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0210_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0211_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0211_g1_upper_body_cmd.npz new file mode 100644 index 000000000..805359dd2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0211_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0212_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0212_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0cd080076 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0212_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0213_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0213_g1_upper_body_cmd.npz new file mode 100644 index 000000000..743cde4dd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0213_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0214_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0214_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c6cd5ec2c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0214_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0215_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0215_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3fa14ebbf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0215_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0216_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0216_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0ab1a67ee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0216_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0217_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0217_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5d259de0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0217_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0218_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0218_g1_upper_body_cmd.npz new file mode 100644 index 000000000..571f24529 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0218_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0219_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0219_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e4cac0ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0219_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0220_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0220_g1_upper_body_cmd.npz new file mode 100644 index 000000000..be256d9d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0220_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0221_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0221_g1_upper_body_cmd.npz new file mode 100644 index 000000000..71b3a55c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0221_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0222_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0222_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fd50aa4e3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0222_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0223_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0223_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b055d73f3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0223_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0224_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0224_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1aa025a87 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0224_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0225_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0225_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3dcceaf5e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0225_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0226_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0226_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa10483b6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0226_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0227_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0227_g1_upper_body_cmd.npz new file mode 100644 index 000000000..85b938a26 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0227_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0228_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0228_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d423402b2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0228_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0229_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0229_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b14f6e537 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0229_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0230_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0230_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2da0c3bbd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0230_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0231_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0231_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1e55dcb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0231_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0232_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0232_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef65c886f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0232_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0233_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0233_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f01631c2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0233_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0234_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0234_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b9fbc72d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0234_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0235_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0235_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1595c5d1f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0235_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0236_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0236_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e15cb8cce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0236_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0237_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0237_g1_upper_body_cmd.npz new file mode 100644 index 000000000..86fa70ea7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0237_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0238_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0238_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e810eb64 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0238_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0239_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0239_g1_upper_body_cmd.npz new file mode 100644 index 000000000..320fe9b7c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0239_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0240_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0240_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9d7e79c34 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0240_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0241_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0241_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1cd8b0b21 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0241_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0242_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0242_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e5d9b5f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0242_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0243_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0243_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0604dd298 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0243_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0244_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0244_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a1603b072 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0244_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0245_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0245_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64030fcd2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0245_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0246_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0246_g1_upper_body_cmd.npz new file mode 100644 index 000000000..16002537e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0246_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0247_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0247_g1_upper_body_cmd.npz new file mode 100644 index 000000000..75ddd722f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0247_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0248_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0248_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4e7c88793 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0248_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0249_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0249_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9cfd6d0bc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0249_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0250_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0250_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e9b3b222f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0250_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0251_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0251_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce920c98a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0251_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0252_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0252_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9750f1e13 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0252_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0253_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0253_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6d2acc4a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0253_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0254_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0254_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d0216da24 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0254_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0255_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0255_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2671014a7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0255_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0256_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0256_g1_upper_body_cmd.npz new file mode 100644 index 000000000..09fe07cd1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0256_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0257_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0257_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bb228180c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0257_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0258_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0258_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fd41b4345 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0258_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0259_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0259_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ccbbe43c9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0259_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0260_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0260_g1_upper_body_cmd.npz new file mode 100644 index 000000000..704addcc2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0260_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0261_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0261_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e6ea45466 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0261_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0262_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0262_g1_upper_body_cmd.npz new file mode 100644 index 000000000..93c2b51f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0262_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0263_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0263_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d4556169a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0263_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0264_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0264_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a3cc82f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0264_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0265_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0265_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6febf7621 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0265_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0266_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0266_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ddf31b7d5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0266_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0267_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0267_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c40ca3398 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0267_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0268_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0268_g1_upper_body_cmd.npz new file mode 100644 index 000000000..47361035f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0268_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0269_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0269_g1_upper_body_cmd.npz new file mode 100644 index 000000000..29f69f5d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0269_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0270_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0270_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6be72b2d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0270_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0271_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0271_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5f07c572f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0271_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0272_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0272_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8cad5b230 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0272_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0273_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0273_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a0c3fca67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0273_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0274_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0274_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6386403cf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0274_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0275_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0275_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dbd533d02 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0275_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0276_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0276_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1119972ca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0276_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0277_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0277_g1_upper_body_cmd.npz new file mode 100644 index 000000000..307ae0387 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0277_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0278_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0278_g1_upper_body_cmd.npz new file mode 100644 index 000000000..acf243e67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0278_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0279_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0279_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f33ac337 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0279_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0280_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0280_g1_upper_body_cmd.npz new file mode 100644 index 000000000..473ca3daa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0280_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0281_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0281_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e69b9cb1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0281_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0282_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0282_g1_upper_body_cmd.npz new file mode 100644 index 000000000..016d41b30 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0282_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0283_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0283_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a608871ba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0283_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0284_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0284_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dcbae36b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0284_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0285_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0285_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b86ee464 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0285_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0286_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0286_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2f003d5f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0286_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0287_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0287_g1_upper_body_cmd.npz new file mode 100644 index 000000000..78746706b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0287_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0288_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0288_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9bf604ead Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0288_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0289_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0289_g1_upper_body_cmd.npz new file mode 100644 index 000000000..67e2cad4b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0289_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0290_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0290_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4099b8728 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0290_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0291_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0291_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d7848a722 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0291_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0292_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0292_g1_upper_body_cmd.npz new file mode 100644 index 000000000..14d4763ea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0292_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0293_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0293_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c855b1476 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0293_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0294_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0294_g1_upper_body_cmd.npz new file mode 100644 index 000000000..05cfbdced Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0294_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0295_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0295_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5429cef23 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0295_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0296_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0296_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61e0df9ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0296_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0297_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0297_g1_upper_body_cmd.npz new file mode 100644 index 000000000..579859b55 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0297_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0298_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0298_g1_upper_body_cmd.npz new file mode 100644 index 000000000..792e1aee3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0298_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0299_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0299_g1_upper_body_cmd.npz new file mode 100644 index 000000000..311b0c5b9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0299_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0300_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0300_g1_upper_body_cmd.npz new file mode 100644 index 000000000..52700416e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0300_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0301_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0301_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8200de072 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0301_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0302_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0302_g1_upper_body_cmd.npz new file mode 100644 index 000000000..722039965 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0302_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0303_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0303_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5e837ab69 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0303_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0304_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0304_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1c9ae15b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0304_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0305_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0305_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f2e8f9d4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0305_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0306_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0306_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2c22614af Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0306_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0307_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0307_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8765ebfe8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0307_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0308_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0308_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a994a112 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0308_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0309_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0309_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7970ea488 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0309_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0310_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0310_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a2c63265 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0310_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0311_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0311_g1_upper_body_cmd.npz new file mode 100644 index 000000000..42f392ec4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0311_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0312_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0312_g1_upper_body_cmd.npz new file mode 100644 index 000000000..feefa02bd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0312_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0313_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0313_g1_upper_body_cmd.npz new file mode 100644 index 000000000..87b1cd41d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0313_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0314_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0314_g1_upper_body_cmd.npz new file mode 100644 index 000000000..682db1b06 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0314_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0315_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0315_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dcd28d704 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0315_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0316_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0316_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0f5c60901 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0316_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0317_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0317_g1_upper_body_cmd.npz new file mode 100644 index 000000000..19074b713 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0317_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0318_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0318_g1_upper_body_cmd.npz new file mode 100644 index 000000000..95a486454 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0318_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0319_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0319_g1_upper_body_cmd.npz new file mode 100644 index 000000000..92aa77a9c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0319_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0320_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0320_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4828d5ae1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0320_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0321_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0321_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df9a86c49 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0321_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0322_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0322_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b6f766820 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0322_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0323_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0323_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bbcfeb05e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0323_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0324_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0324_g1_upper_body_cmd.npz new file mode 100644 index 000000000..44e7422ff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0324_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0325_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0325_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3c27e8c0c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0325_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0326_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0326_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dc35d259a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0326_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0327_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0327_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dbcbc9535 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0327_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0328_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0328_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6709ca752 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0328_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0329_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0329_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d7f7cd4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0329_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0330_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0330_g1_upper_body_cmd.npz new file mode 100644 index 000000000..75561cad4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0330_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0331_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0331_g1_upper_body_cmd.npz new file mode 100644 index 000000000..83f8ec5db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0331_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0332_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0332_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cdd5694f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0332_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0333_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0333_g1_upper_body_cmd.npz new file mode 100644 index 000000000..575a0da8e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0333_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0334_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0334_g1_upper_body_cmd.npz new file mode 100644 index 000000000..740b5e9b9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0334_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0335_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0335_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2124312f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0335_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0336_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0336_g1_upper_body_cmd.npz new file mode 100644 index 000000000..05e562c8f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0336_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0337_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0337_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d7a9a38c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0337_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0338_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0338_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d590888d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0338_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0339_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0339_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8b10bd4b2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0339_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0340_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0340_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a381a49f3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0340_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0341_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0341_g1_upper_body_cmd.npz new file mode 100644 index 000000000..90dd5898e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0341_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0342_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0342_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41046f1c7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0342_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0343_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0343_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8f2a05fe5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0343_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0344_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0344_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0889e3e7f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0344_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0345_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0345_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0a32bf7f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0345_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0346_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0346_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c3baef0fc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0346_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0347_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0347_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e5798ea19 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0347_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0348_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0348_g1_upper_body_cmd.npz new file mode 100644 index 000000000..345b8a4c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0348_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0349_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0349_g1_upper_body_cmd.npz new file mode 100644 index 000000000..979b212b3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0349_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0350_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0350_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3b5fca848 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0350_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0351_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0351_g1_upper_body_cmd.npz new file mode 100644 index 000000000..500dd9084 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0351_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0352_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0352_g1_upper_body_cmd.npz new file mode 100644 index 000000000..baf2ad916 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0352_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0353_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0353_g1_upper_body_cmd.npz new file mode 100644 index 000000000..648127198 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0353_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0354_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0354_g1_upper_body_cmd.npz new file mode 100644 index 000000000..30c7a5ef6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0354_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0355_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0355_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2b0c16e68 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0355_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0356_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0356_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b2ed7e0a4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0356_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0357_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0357_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bd408625f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0357_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0358_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0358_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c9dad540 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0358_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0359_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0359_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61e8d48a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0359_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0360_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0360_g1_upper_body_cmd.npz new file mode 100644 index 000000000..365a1b6f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0360_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0361_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0361_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5cd086fff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0361_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0362_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0362_g1_upper_body_cmd.npz new file mode 100644 index 000000000..31f91f278 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0362_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0363_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0363_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed714de00 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0363_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0364_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0364_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1ebb0c161 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0364_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0365_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0365_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1bb8b473f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0365_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0366_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0366_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e84de9339 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0366_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0367_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0367_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41f7ab467 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0367_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0368_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0368_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a4a4423f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0368_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0369_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0369_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5bff5891b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0369_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0370_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0370_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b62615cf8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0370_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0371_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0371_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2d94b91da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0371_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0372_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0372_g1_upper_body_cmd.npz new file mode 100644 index 000000000..56ae490f2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0372_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0373_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0373_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41352d1e3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0373_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0374_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0374_g1_upper_body_cmd.npz new file mode 100644 index 000000000..adf4c4f5d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0374_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0375_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0375_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d2aad3917 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0375_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0376_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0376_g1_upper_body_cmd.npz new file mode 100644 index 000000000..70c985904 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0376_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0377_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0377_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a10731dd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0377_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0378_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0378_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ae33022bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0378_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0379_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0379_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e374d1133 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0379_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0380_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0380_g1_upper_body_cmd.npz new file mode 100644 index 000000000..29e2b59f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0380_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0381_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0381_g1_upper_body_cmd.npz new file mode 100644 index 000000000..319b5e58d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0381_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0382_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0382_g1_upper_body_cmd.npz new file mode 100644 index 000000000..84991a64a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0382_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0383_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0383_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed002d253 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0383_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0384_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0384_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9660e40c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0384_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0385_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0385_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0cd834038 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0385_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0386_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0386_g1_upper_body_cmd.npz new file mode 100644 index 000000000..77edd536b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0386_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0387_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0387_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a864dd328 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0387_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0388_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0388_g1_upper_body_cmd.npz new file mode 100644 index 000000000..be83c617c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0388_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0389_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0389_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d47aaed83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0389_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0390_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0390_g1_upper_body_cmd.npz new file mode 100644 index 000000000..848b9484c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0390_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0391_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0391_g1_upper_body_cmd.npz new file mode 100644 index 000000000..049073d1d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0391_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0392_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0392_g1_upper_body_cmd.npz new file mode 100644 index 000000000..76978666b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0392_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0393_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0393_g1_upper_body_cmd.npz new file mode 100644 index 000000000..14cc1bd87 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0393_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0394_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0394_g1_upper_body_cmd.npz new file mode 100644 index 000000000..319857511 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0394_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0395_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0395_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7e6ba32a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0395_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0396_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0396_g1_upper_body_cmd.npz new file mode 100644 index 000000000..da9f54e02 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0396_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0397_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0397_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1f8f643b2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0397_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0398_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0398_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b92ed94c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0398_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0399_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0399_g1_upper_body_cmd.npz new file mode 100644 index 000000000..caf892441 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0399_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0400_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0400_g1_upper_body_cmd.npz new file mode 100644 index 000000000..514d7deba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0400_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0401_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0401_g1_upper_body_cmd.npz new file mode 100644 index 000000000..504698b3f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0401_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0402_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0402_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9d8e3c7f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0402_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0403_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0403_g1_upper_body_cmd.npz new file mode 100644 index 000000000..470a50f38 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0403_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0404_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0404_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5895623a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0404_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0405_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0405_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b12602cd4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0405_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0406_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0406_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ac3471762 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0406_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0407_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0407_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a534f0f4f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0407_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0408_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0408_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c152ee40 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0408_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0409_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0409_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c8ddadfeb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0409_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0410_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0410_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aded33803 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0410_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0411_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0411_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ab781cf4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0411_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0412_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0412_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7dbac99c1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0412_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0413_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0413_g1_upper_body_cmd.npz new file mode 100644 index 000000000..db8343a39 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0413_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0414_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0414_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6de757cc6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0414_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0415_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0415_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e9013c970 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0415_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0416_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0416_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a29c9ef69 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0416_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0417_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0417_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e1eb88700 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0417_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0418_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0418_g1_upper_body_cmd.npz new file mode 100644 index 000000000..013cdcf0a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0418_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0419_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0419_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8c0446694 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0419_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0420_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0420_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a659cacfb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0420_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0421_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0421_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b83c053b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0421_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0422_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0422_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c4aaf5d52 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0422_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0423_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0423_g1_upper_body_cmd.npz new file mode 100644 index 000000000..151b790dd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0423_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0424_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0424_g1_upper_body_cmd.npz new file mode 100644 index 000000000..087a48083 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0424_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0425_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0425_g1_upper_body_cmd.npz new file mode 100644 index 000000000..04b88d5d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0425_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0426_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0426_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f300d4ba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0426_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0427_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0427_g1_upper_body_cmd.npz new file mode 100644 index 000000000..21ea32114 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0427_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0428_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0428_g1_upper_body_cmd.npz new file mode 100644 index 000000000..72ed434cc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0428_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0429_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0429_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec2aeb713 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0429_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0430_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0430_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed7a173f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0430_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0431_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0431_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a322d386f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0431_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0432_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0432_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b7ad8e70b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0432_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0433_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0433_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a67225457 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0433_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0434_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0434_g1_upper_body_cmd.npz new file mode 100644 index 000000000..236222a19 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0434_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0435_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0435_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5de6f717c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0435_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0436_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0436_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c6cc2bf95 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0436_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0437_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0437_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4d06c5f65 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0437_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0438_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0438_g1_upper_body_cmd.npz new file mode 100644 index 000000000..149db5947 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0438_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0439_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0439_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f3f2e8eed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0439_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0440_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0440_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6f8f89bce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0440_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0441_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0441_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7d160cbca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0441_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0442_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0442_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6a867d8e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0442_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0443_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0443_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b3ddb60dd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0443_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0444_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0444_g1_upper_body_cmd.npz new file mode 100644 index 000000000..446c07079 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0444_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0445_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0445_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7f51612f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0445_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0446_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0446_g1_upper_body_cmd.npz new file mode 100644 index 000000000..69c572421 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0446_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0447_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0447_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d28307c4c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0447_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0448_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0448_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7109c8419 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0448_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0449_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0449_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6b7c37322 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0449_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0450_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0450_g1_upper_body_cmd.npz new file mode 100644 index 000000000..52b2d2c74 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0450_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0451_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0451_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea6ffe7d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0451_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0452_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0452_g1_upper_body_cmd.npz new file mode 100644 index 000000000..31a144c57 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0452_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0453_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0453_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01eb9a003 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0453_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0454_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0454_g1_upper_body_cmd.npz new file mode 100644 index 000000000..94e0acd61 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0454_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0455_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0455_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2e602d269 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0455_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0456_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0456_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ba4588d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0456_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0457_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0457_g1_upper_body_cmd.npz new file mode 100644 index 000000000..03c7f8266 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0457_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0458_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0458_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5bde2fa92 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0458_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0459_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0459_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6237055f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0459_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0460_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0460_g1_upper_body_cmd.npz new file mode 100644 index 000000000..56098293c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0460_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0461_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0461_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c59760809 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0461_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0462_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0462_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36023f718 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0462_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0463_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0463_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f891de3a1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0463_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0464_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0464_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ace41c29 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0464_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0465_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0465_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d9d1926cd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0465_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0466_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0466_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bee3a0c4f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0466_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0467_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0467_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fad24e3e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0467_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0468_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0468_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a43143c4f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0468_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0469_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0469_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1d6024b2b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0469_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0470_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0470_g1_upper_body_cmd.npz new file mode 100644 index 000000000..50fa861e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0470_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0471_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0471_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec00b7651 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0471_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0472_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0472_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e6e82ced Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0472_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0473_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0473_g1_upper_body_cmd.npz new file mode 100644 index 000000000..955b6128e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0473_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0474_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0474_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dc485097a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0474_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0475_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0475_g1_upper_body_cmd.npz new file mode 100644 index 000000000..970e7802a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0475_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0476_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0476_g1_upper_body_cmd.npz new file mode 100644 index 000000000..15634b07a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0476_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0477_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0477_g1_upper_body_cmd.npz new file mode 100644 index 000000000..46bc20214 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0477_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0478_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0478_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4c7d8d285 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0478_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0479_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0479_g1_upper_body_cmd.npz new file mode 100644 index 000000000..27a53d32a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0479_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0480_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0480_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bff56c0a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0480_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0481_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0481_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bcef93f97 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0481_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0482_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0482_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e15a449c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0482_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0483_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0483_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c87b2debf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0483_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0484_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0484_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ba878452c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0484_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0485_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0485_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cb0d04b49 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0485_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0486_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0486_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cef56023b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0486_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0487_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0487_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d1bc7bcbb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0487_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0488_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0488_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9c3372b0d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0488_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0489_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0489_g1_upper_body_cmd.npz new file mode 100644 index 000000000..786e9b36e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0489_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0490_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0490_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7518039cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0490_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0491_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0491_g1_upper_body_cmd.npz new file mode 100644 index 000000000..54f214018 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0491_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0492_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0492_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e15733da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0492_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0493_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0493_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4c3a0ca3c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0493_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0494_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0494_g1_upper_body_cmd.npz new file mode 100644 index 000000000..409b79696 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0494_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0495_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0495_g1_upper_body_cmd.npz new file mode 100644 index 000000000..eefcd3223 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0495_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0496_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0496_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd9f69ad5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0496_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0497_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0497_g1_upper_body_cmd.npz new file mode 100644 index 000000000..46380f53e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0497_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0498_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0498_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5004dd2d9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0498_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0499_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0499_g1_upper_body_cmd.npz new file mode 100644 index 000000000..60a01af78 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0499_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0500_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0500_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8931109ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0500_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0501_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0501_g1_upper_body_cmd.npz new file mode 100644 index 000000000..871ec65f2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0501_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0502_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0502_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f698bc616 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0502_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0503_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0503_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c34dcc80e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0503_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0504_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0504_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5801cfd86 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0504_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0505_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0505_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e253ca5b0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0505_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0506_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0506_g1_upper_body_cmd.npz new file mode 100644 index 000000000..98297d4e6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0506_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0507_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0507_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d619d7b5f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0507_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0508_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0508_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cdd7baa6a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0508_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0509_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0509_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a226e860 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0509_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0510_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0510_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a176ed37b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0510_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0511_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0511_g1_upper_body_cmd.npz new file mode 100644 index 000000000..798aacd2e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0511_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0512_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0512_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6a66a658a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0512_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0513_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0513_g1_upper_body_cmd.npz new file mode 100644 index 000000000..95247cf0b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0513_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0514_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0514_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5fa295269 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0514_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0515_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0515_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2c48cefdc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0515_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0516_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0516_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7dab98c3d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0516_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0517_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0517_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e49470e51 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0517_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0518_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0518_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7df837274 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0518_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0519_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0519_g1_upper_body_cmd.npz new file mode 100644 index 000000000..76b4dd0aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0519_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0520_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0520_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8dca6a93f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0520_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0521_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0521_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7d560ac7c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0521_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0522_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0522_g1_upper_body_cmd.npz new file mode 100644 index 000000000..afe9573fa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0522_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0523_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0523_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d3de8369 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0523_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0524_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0524_g1_upper_body_cmd.npz new file mode 100644 index 000000000..53145b33e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0524_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0525_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0525_g1_upper_body_cmd.npz new file mode 100644 index 000000000..da8d0f1bc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0525_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0526_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0526_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de1b894fb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0526_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0527_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0527_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d7bad8609 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0527_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0528_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0528_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bf19b086a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0528_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0529_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0529_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8830da453 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0529_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0530_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0530_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c80815057 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0530_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0531_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0531_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1d8de11b3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0531_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0532_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0532_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e51e66c46 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0532_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0533_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0533_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a82ecf4d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0533_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0534_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0534_g1_upper_body_cmd.npz new file mode 100644 index 000000000..436ac0e2a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0534_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0535_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0535_g1_upper_body_cmd.npz new file mode 100644 index 000000000..671b3e8c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0535_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0536_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0536_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e7e138f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0536_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0537_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0537_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36c7f86f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0537_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0538_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0538_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b5016c2da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0538_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0539_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0539_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1247940f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0539_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0540_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0540_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6f9ab6f45 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0540_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0541_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0541_g1_upper_body_cmd.npz new file mode 100644 index 000000000..50d53e92b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0541_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0542_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0542_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9f7d1c46 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0542_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0543_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0543_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7f279c59e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0543_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0544_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0544_g1_upper_body_cmd.npz new file mode 100644 index 000000000..94d6c8a06 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0544_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0545_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0545_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c8e6595d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0545_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0546_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0546_g1_upper_body_cmd.npz new file mode 100644 index 000000000..73de3251b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0546_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0547_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0547_g1_upper_body_cmd.npz new file mode 100644 index 000000000..68cb52df0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0547_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0548_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0548_g1_upper_body_cmd.npz new file mode 100644 index 000000000..82e856c8a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0548_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0549_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0549_g1_upper_body_cmd.npz new file mode 100644 index 000000000..88de68e50 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0549_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0550_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0550_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9691cab69 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0550_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0551_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0551_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8a0c1758a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0551_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0552_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0552_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e0777b59 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0552_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0553_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0553_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f73c5382e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0553_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0554_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0554_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d0e4472d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0554_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0555_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0555_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fa9c8a902 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0555_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0556_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0556_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d301aa86c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0556_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0557_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0557_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d40c12636 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0557_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0558_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0558_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a1fdf98be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0558_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0559_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0559_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e071cbf80 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0559_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0560_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0560_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3c46d1141 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0560_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0561_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0561_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f7c3a27ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0561_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0562_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0562_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a1f11b01 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0562_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0563_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0563_g1_upper_body_cmd.npz new file mode 100644 index 000000000..96991b160 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0563_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0564_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0564_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0f1888132 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0564_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0565_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0565_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6ada54aa6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0565_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0566_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0566_g1_upper_body_cmd.npz new file mode 100644 index 000000000..774898500 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0566_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0567_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0567_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1690cb531 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0567_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0568_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0568_g1_upper_body_cmd.npz new file mode 100644 index 000000000..695091621 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0568_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0569_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0569_g1_upper_body_cmd.npz new file mode 100644 index 000000000..972af1faf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0569_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0570_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0570_g1_upper_body_cmd.npz new file mode 100644 index 000000000..832c848c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0570_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0571_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0571_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e16fa9ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0571_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0572_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0572_g1_upper_body_cmd.npz new file mode 100644 index 000000000..67009ac19 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0572_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0573_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0573_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5cc7df4cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0573_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0574_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0574_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b4860b292 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0574_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0575_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0575_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2ba1b0a3d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0575_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0576_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0576_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d24a66a53 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0576_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0577_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0577_g1_upper_body_cmd.npz new file mode 100644 index 000000000..861faedca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0577_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0578_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0578_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9cb905977 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0578_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0579_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0579_g1_upper_body_cmd.npz new file mode 100644 index 000000000..70ada7707 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0579_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0580_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0580_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1aebf0d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0580_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0581_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0581_g1_upper_body_cmd.npz new file mode 100644 index 000000000..15d297ad6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0581_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0582_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0582_g1_upper_body_cmd.npz new file mode 100644 index 000000000..222f23b9a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0582_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0583_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0583_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a631dfedc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0583_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0584_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0584_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f76c6401e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0584_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0585_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0585_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0a6a0e93a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0585_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0586_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0586_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61340fdd4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0586_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0587_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0587_g1_upper_body_cmd.npz new file mode 100644 index 000000000..53228c469 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0587_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0588_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0588_g1_upper_body_cmd.npz new file mode 100644 index 000000000..08efa643c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0588_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0589_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0589_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cbcd7fe46 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0589_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0590_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0590_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a76a6d20c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0590_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0591_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0591_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9c3337653 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0591_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0592_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0592_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6d9bf740d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0592_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0593_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0593_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f027e454 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0593_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0594_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0594_g1_upper_body_cmd.npz new file mode 100644 index 000000000..47b79be22 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0594_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0595_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0595_g1_upper_body_cmd.npz new file mode 100644 index 000000000..609af02f2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0595_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0596_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0596_g1_upper_body_cmd.npz new file mode 100644 index 000000000..044c08cea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0596_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0597_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0597_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e626adb43 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0597_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0598_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0598_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cb38a1c2a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0598_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0599_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0599_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0be501bf1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0599_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0600_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0600_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ca2e88a25 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0600_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0601_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0601_g1_upper_body_cmd.npz new file mode 100644 index 000000000..74a096e44 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0601_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0602_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0602_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ddf02d5a6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0602_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0603_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0603_g1_upper_body_cmd.npz new file mode 100644 index 000000000..79a8f147f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0603_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0604_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0604_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c7291426a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0604_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0605_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0605_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ead64babd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0605_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0606_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0606_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cedc9caf5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0606_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0607_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0607_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39f7f2d7c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0607_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0608_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0608_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7548ea75 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0608_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0609_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0609_g1_upper_body_cmd.npz new file mode 100644 index 000000000..448f9a894 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0609_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0610_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0610_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2c3b274c9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0610_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0611_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0611_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8aee3d3d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0611_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0612_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0612_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b16c71b0e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0612_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0613_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0613_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36832d135 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0613_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0614_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0614_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fd2f96cc0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0614_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0615_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0615_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1d8c90526 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0615_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0616_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0616_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf72a21ae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0616_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0617_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0617_g1_upper_body_cmd.npz new file mode 100644 index 000000000..129e34e32 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0617_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0618_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0618_g1_upper_body_cmd.npz new file mode 100644 index 000000000..783224472 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0618_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0619_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0619_g1_upper_body_cmd.npz new file mode 100644 index 000000000..890795e7e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0619_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0620_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0620_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a532908d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0620_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0621_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0621_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9387bf8cf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0621_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0622_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0622_g1_upper_body_cmd.npz new file mode 100644 index 000000000..53442b85f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0622_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0623_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0623_g1_upper_body_cmd.npz new file mode 100644 index 000000000..03e80e14f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0623_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0624_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0624_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ae6632715 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0624_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0625_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0625_g1_upper_body_cmd.npz new file mode 100644 index 000000000..83e6ded35 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0625_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0626_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0626_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ff832a386 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0626_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0627_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0627_g1_upper_body_cmd.npz new file mode 100644 index 000000000..17f579152 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0627_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0628_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0628_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c95ff14a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0628_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0629_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0629_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7137b6ba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0629_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0630_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0630_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad3d5d25d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0630_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0631_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0631_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c42f1df48 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0631_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0632_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0632_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e916a9a29 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0632_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0633_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0633_g1_upper_body_cmd.npz new file mode 100644 index 000000000..63c473e16 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0633_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0634_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0634_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cb3d78aaa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0634_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0635_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0635_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa8313921 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0635_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0636_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0636_g1_upper_body_cmd.npz new file mode 100644 index 000000000..37c48afd1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0636_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0637_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0637_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3cd5835f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0637_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0638_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0638_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b15593a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0638_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0639_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0639_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cbb5f3aaa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0639_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0640_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0640_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2ac32fac2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0640_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0641_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0641_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df2d60c2c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0641_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0642_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0642_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5ba0d0533 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0642_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0643_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0643_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4193f090d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0643_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0644_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0644_g1_upper_body_cmd.npz new file mode 100644 index 000000000..46d53ad45 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0644_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0645_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0645_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8f1587865 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0645_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0646_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0646_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5631a7cd1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0646_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0647_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0647_g1_upper_body_cmd.npz new file mode 100644 index 000000000..af9e7cf96 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0647_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0648_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0648_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ffeffddb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0648_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0649_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0649_g1_upper_body_cmd.npz new file mode 100644 index 000000000..18c404f9a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0649_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0650_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0650_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bba65c63c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0650_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0651_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0651_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9f18c130 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0651_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0652_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0652_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c6b75faf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0652_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0653_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0653_g1_upper_body_cmd.npz new file mode 100644 index 000000000..30751d871 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0653_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0654_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0654_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fb9415a30 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0654_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0655_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0655_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4007071ea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0655_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0656_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0656_g1_upper_body_cmd.npz new file mode 100644 index 000000000..31750073a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0656_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0657_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0657_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f2d6d2293 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0657_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0658_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0658_g1_upper_body_cmd.npz new file mode 100644 index 000000000..078336d6d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0658_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0659_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0659_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1b4f99861 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0659_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0660_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0660_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f519197aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0660_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0661_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0661_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a5375591 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0661_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0662_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0662_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3041225d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0662_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0663_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0663_g1_upper_body_cmd.npz new file mode 100644 index 000000000..261bc36e4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0663_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0664_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0664_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0e5dadadb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0664_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0665_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0665_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5bfdb221b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0665_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0666_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0666_g1_upper_body_cmd.npz new file mode 100644 index 000000000..34ea3e8e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0666_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0667_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0667_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a9b985fd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0667_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0668_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0668_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7cc7e80de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0668_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0669_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0669_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0056642df Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0669_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0670_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0670_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6eda2381b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0670_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0671_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0671_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f093fff63 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0671_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0672_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0672_g1_upper_body_cmd.npz new file mode 100644 index 000000000..540dc38b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0672_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0673_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0673_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9bafbf2ca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0673_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0674_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0674_g1_upper_body_cmd.npz new file mode 100644 index 000000000..78916cd5d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0674_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0675_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0675_g1_upper_body_cmd.npz new file mode 100644 index 000000000..807861299 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0675_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0676_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0676_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0f56e004e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0676_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0677_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0677_g1_upper_body_cmd.npz new file mode 100644 index 000000000..349a9eda6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0677_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0678_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0678_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a2a6d9c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0678_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0679_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0679_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0e07c74f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0679_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0680_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0680_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1d95a1d17 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0680_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0681_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0681_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e6773361c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0681_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0682_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0682_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7eeaa5d25 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0682_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0683_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0683_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee4d144d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0683_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0684_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0684_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7b5002934 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0684_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0685_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0685_g1_upper_body_cmd.npz new file mode 100644 index 000000000..853d5cf90 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0685_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0686_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0686_g1_upper_body_cmd.npz new file mode 100644 index 000000000..654fc82a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0686_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0687_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0687_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec565f882 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0687_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0688_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0688_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a76112f54 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0688_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0689_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0689_g1_upper_body_cmd.npz new file mode 100644 index 000000000..259a8cb0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0689_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0690_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0690_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9cf6006e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0690_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0691_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0691_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cb3941629 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0691_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0692_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0692_g1_upper_body_cmd.npz new file mode 100644 index 000000000..551056dc0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0692_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0693_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0693_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3ca165d56 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0693_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0694_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0694_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7443bbaf1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0694_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0695_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0695_g1_upper_body_cmd.npz new file mode 100644 index 000000000..195edd106 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0695_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0696_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0696_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce5f2ce60 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0696_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0697_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0697_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b3d955cd5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0697_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0698_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0698_g1_upper_body_cmd.npz new file mode 100644 index 000000000..592e39d9d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0698_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0699_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0699_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c7134ed97 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0699_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0700_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0700_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f913d3fac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0700_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0701_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0701_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0747f967c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0701_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0702_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0702_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a6e0f8503 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0702_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0703_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0703_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5530fda8b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0703_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0704_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0704_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5a74ba6ed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0704_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0705_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0705_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c4022f272 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0705_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0706_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0706_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d8ef4846d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0706_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0707_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0707_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6308754eb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0707_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0708_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0708_g1_upper_body_cmd.npz new file mode 100644 index 000000000..82e0f7100 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0708_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0709_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0709_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7f3896ed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0709_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0710_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0710_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b4d93c1b1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0710_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0711_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0711_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a399f072 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0711_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0712_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0712_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0666fcd0e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0712_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0713_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0713_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7dc0bbac7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0713_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0714_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0714_g1_upper_body_cmd.npz new file mode 100644 index 000000000..27bd20838 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0714_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0715_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0715_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8b22f32d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0715_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0716_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0716_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e8b2e26cd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0716_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0717_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0717_g1_upper_body_cmd.npz new file mode 100644 index 000000000..08b4e22de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0717_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0718_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0718_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2dcc8b9b1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0718_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0719_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0719_g1_upper_body_cmd.npz new file mode 100644 index 000000000..249cc058c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0719_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0720_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0720_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7357ae04 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0720_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0721_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0721_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c6200dd5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0721_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0722_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0722_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fcaaf18ba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0722_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0723_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0723_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8fbda5680 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0723_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0724_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0724_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3cb760fa2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0724_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0725_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0725_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a570943d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0725_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0726_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0726_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cdfdbe80e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0726_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0727_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0727_g1_upper_body_cmd.npz new file mode 100644 index 000000000..75d32dce3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0727_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz new file mode 100644 index 000000000..05b7b4dbf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot_nopickle.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot_nopickle.npz new file mode 100644 index 000000000..1ebf2e1ae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot_nopickle.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz new file mode 100644 index 000000000..1f9372992 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz new file mode 100644 index 000000000..47ef2dd9a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints.npz new file mode 100644 index 000000000..5c72ee457 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz new file mode 100644 index 000000000..db151de1d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_left.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz new file mode 100644 index 000000000..1f10bd03a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/openxr26_joints_right.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz new file mode 100644 index 000000000..401472d03 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot_nopickle.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot_nopickle.npz new file mode 100644 index 000000000..038327ba8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot_nopickle.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz new file mode 100644 index 000000000..457de150c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz new file mode 100644 index 000000000..02025f9b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__combined_opt.png new file mode 100644 index 000000000..5e424ee27 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..9476b185c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__loss.png new file mode 100644 index 000000000..2c9624d83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__openxr26_rot.png new file mode 100644 index 000000000..da5e89c5c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best00__x-180_y+90_z-180__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__combined_opt.png new file mode 100644 index 000000000..43598c33d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..776f290cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__loss.png new file mode 100644 index 000000000..8c3c65e3b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__openxr26_rot.png new file mode 100644 index 000000000..510a18c0d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best01__x+180_y+90_z-180__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__combined_opt.png new file mode 100644 index 000000000..328b16177 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..b7a35d059 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__loss.png new file mode 100644 index 000000000..c38ea97da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__openxr26_rot.png new file mode 100644 index 000000000..1b7615e4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best02__x-180_y+90_z+180__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__combined_opt.png new file mode 100644 index 000000000..97d988485 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..d91124808 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__loss.png new file mode 100644 index 000000000..62e194dc7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__openxr26_rot.png new file mode 100644 index 000000000..242b56c62 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best03__x-135_y+90_z-135__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__combined_opt.png new file mode 100644 index 000000000..0b1a110d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..a3cef1452 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__loss.png new file mode 100644 index 000000000..5d60b8821 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__openxr26_rot.png new file mode 100644 index 000000000..8a089f1dc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__best04__x-90_y+90_z-90__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__rot_grid_search_multiframe.csv b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__rot_grid_search_multiframe.csv new file mode 100644 index 000000000..8274fae11 --- /dev/null +++ b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_left/openxr26_joints_left__left__rot_grid_search_multiframe.csv @@ -0,0 +1,730 @@ +x_deg,y_deg,z_deg,n_frames,mean_opt_loss,median_opt_loss,std_opt_loss,mean_init_loss +-180.0,90.0,-180.0,73,0.0014130640774965286,0.0009479126892983913,0.0010877747554332018,0.003919606097042561 +180.0,90.0,-180.0,73,0.0014130640774965286,0.0009479126892983913,0.0010877747554332018,0.003919606097042561 +-180.0,90.0,180.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +-135.0,90.0,-135.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722076451405883,0.003919606097042561 +-90.0,90.0,-90.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +-45.0,90.0,-45.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +0.0,90.0,0.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +45.0,90.0,45.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +90.0,90.0,90.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +135.0,90.0,135.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +180.0,90.0,180.0,73,0.0014573902590200305,0.0009550219983793795,0.0011722077615559101,0.003919606097042561 +-135.0,90.0,-180.0,73,0.0020552827045321465,0.0020192095544189215,0.0009813298238441348,0.003980052191764116 +-90.0,45.0,-90.0,73,0.0020771948620676994,0.002021010732278228,0.000686843937728554,0.0044024125672876835 +90.0,135.0,90.0,73,0.0020771948620676994,0.002021010732278228,0.000686843937728554,0.0044024125672876835 +-180.0,90.0,135.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +-135.0,90.0,180.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +-90.0,90.0,-135.0,73,0.0022747342009097338,0.0020404269453138113,0.0013373678084462881,0.003980052191764116 +-45.0,90.0,-90.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +0.0,90.0,-45.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +45.0,90.0,0.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +90.0,90.0,45.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +135.0,90.0,90.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +180.0,90.0,135.0,73,0.0022747342009097338,0.0020404269453138113,0.00133736792486161,0.003980052191764116 +135.0,90.0,-180.0,73,0.002329530892893672,0.001962608890607953,0.0011283493367955089,0.006509086117148399 +-45.0,45.0,-90.0,73,0.002333769341930747,0.0023872291203588247,0.000796133594121784,0.0036937897093594074 +135.0,135.0,90.0,73,0.002333769341930747,0.0023872291203588247,0.000796133594121784,0.0036937897093594074 +-180.0,90.0,-135.0,73,0.002361441496759653,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +180.0,90.0,-135.0,73,0.002361441496759653,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +-135.0,90.0,-90.0,73,0.0023614417295902967,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +-90.0,90.0,-45.0,73,0.0023614417295902967,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +-45.0,90.0,0.0,73,0.0023614417295902967,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +0.0,90.0,45.0,73,0.0023614417295902967,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +45.0,90.0,90.0,73,0.0023614417295902967,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +90.0,90.0,135.0,73,0.0023614417295902967,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +135.0,90.0,180.0,73,0.0023614417295902967,0.0019626186694949865,0.0011929200263693929,0.006509086117148399 +-180.0,45.0,-135.0,73,0.0023834051098674536,0.002033521654084325,0.0010629405733197927,0.004897719714790583 +0.0,135.0,45.0,73,0.0023834051098674536,0.002033521654084325,0.0010629405733197927,0.004897719714790583 +180.0,45.0,-135.0,73,0.0023834051098674536,0.002033521654084325,0.0010629405733197927,0.004897719714790583 +-135.0,45.0,-90.0,73,0.0024077054113149643,0.0024555011186748743,0.000781756010837853,0.0054766531102359295 +45.0,135.0,90.0,73,0.0024077054113149643,0.0024555011186748743,0.000781756010837853,0.0054766531102359295 +-180.0,135.0,135.0,73,0.0024134505074471235,0.002095861127600074,0.001221245969645679,0.0031523716170340776 +0.0,45.0,-45.0,73,0.0024134505074471235,0.002095861127600074,0.001221245969645679,0.0031523716170340776 +180.0,135.0,135.0,73,0.0024134505074471235,0.002095861127600074,0.001221245969645679,0.0031523716170340776 +-135.0,135.0,135.0,73,0.002652064198628068,0.00226573646068573,0.0013914728770032525,0.0031524943187832832 +45.0,45.0,-45.0,73,0.002652064198628068,0.00226573646068573,0.0013914728770032525,0.0031524943187832832 +-45.0,135.0,45.0,73,0.002682445803657174,0.0024900867138057947,0.0011436417698860168,0.006149604916572571 +135.0,45.0,-135.0,73,0.002682445803657174,0.0024900867138057947,0.0011436417698860168,0.006149604916572571 +-90.0,135.0,90.0,73,0.0029675259720534086,0.002633577212691307,0.001073584076948464,0.005650711711496115 +90.0,45.0,-90.0,73,0.0029675259720534086,0.002633577212691307,0.001073584076948464,0.005650711711496115 +-180.0,135.0,90.0,73,0.003074011066928506,0.0028963822405785322,0.0010601116809993982,0.00376588711515069 +0.0,45.0,-90.0,73,0.003074011066928506,0.0028963822405785322,0.0010601116809993982,0.00376588711515069 +180.0,135.0,90.0,73,0.003074011066928506,0.0028963822405785322,0.0010601116809993982,0.00376588711515069 +-180.0,45.0,-90.0,73,0.0031075000297278166,0.002959601581096649,0.0009094932465814054,0.006287237163633108 +0.0,135.0,90.0,73,0.0031075000297278166,0.002959601581096649,0.0009094932465814054,0.006287237163633108 +180.0,45.0,-90.0,73,0.0031075000297278166,0.002959601581096649,0.0009094932465814054,0.006287237163633108 +-135.0,135.0,90.0,73,0.0031548046972602606,0.0028070721309632063,0.0012572489213198423,0.004576470702886581 +45.0,45.0,-90.0,73,0.0031548046972602606,0.0028070721309632063,0.0012572489213198423,0.004576470702886581 +-45.0,135.0,90.0,73,0.0031927432864904404,0.0030431586783379316,0.0008178696734830737,0.006359334569424391 +135.0,45.0,-90.0,73,0.0031927432864904404,0.0030431586783379316,0.0008178696734830737,0.006359334569424391 +-135.0,45.0,-135.0,73,0.003296897280961275,0.0032706044148653746,0.0011576591059565544,0.004911448806524277 +45.0,135.0,45.0,73,0.003296897280961275,0.0032706044148653746,0.0011576591059565544,0.004911448806524277 +-45.0,45.0,-45.0,73,0.00373363820835948,0.0034112606663256884,0.0011467636795714498,0.005454706028103828 +135.0,135.0,135.0,73,0.00373363820835948,0.0034112606663256884,0.0011467636795714498,0.005454706028103828 +-90.0,90.0,-180.0,73,0.0037458580918610096,0.0036988251376897097,0.0016433538403362036,0.006655016448348761 +-90.0,135.0,135.0,73,0.003925856202840805,0.0037688473239541054,0.0014104248257353902,0.005455002188682556 +90.0,45.0,-45.0,73,0.003925856202840805,0.0037688473239541054,0.0014104248257353902,0.005455002188682556 +-90.0,135.0,45.0,73,0.003940303344279528,0.003582378849387169,0.0012775924988090992,0.007933765649795532 +90.0,45.0,-135.0,73,0.003940303344279528,0.003582378849387169,0.0012775922659784555,0.007933765649795532 +-180.0,90.0,90.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +-135.0,90.0,135.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +-90.0,90.0,180.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +-45.0,90.0,-135.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +0.0,90.0,-90.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +45.0,90.0,-45.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +90.0,90.0,0.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +135.0,90.0,45.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +180.0,90.0,90.0,73,0.003976680804044008,0.003883910598233342,0.0017917333170771599,0.006655016448348761 +-90.0,-180.0,90.0,73,0.004281591158360243,0.004104141145944595,0.0015953471884131432,0.007527556270360947 +-90.0,180.0,90.0,73,0.004281591158360243,0.004104141145944595,0.0015953471884131432,0.007527556270360947 +90.0,0.0,-90.0,73,0.004281591158360243,0.004104141145944595,0.0015953471884131432,0.007527556270360947 +90.0,90.0,-180.0,73,0.004646759945899248,0.0042068371549248695,0.001550914254039526,0.010231610387563705 +-180.0,90.0,-90.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +-135.0,90.0,-45.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +-90.0,90.0,0.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +-45.0,90.0,45.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +0.0,90.0,90.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +45.0,90.0,135.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +90.0,90.0,180.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +135.0,90.0,-135.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +180.0,90.0,-90.0,73,0.004652003757655621,0.0042068371549248695,0.0015525807393714786,0.010231610387563705 +-45.0,-180.0,90.0,73,0.004681275691837072,0.004788171034306288,0.0015096737770363688,0.008488844148814678 +-45.0,180.0,90.0,73,0.004681275691837072,0.004788171034306288,0.0015096737770363688,0.008488844148814678 +135.0,0.0,-90.0,73,0.004681275691837072,0.004788171034306288,0.0015096737770363688,0.008488844148814678 +135.0,45.0,-180.0,73,0.0047288136556744576,0.004283341113477945,0.002211397048085928,0.008204786106944084 +-45.0,135.0,0.0,73,0.004810357932001352,0.0045697507448494434,0.0022177689243108034,0.008204786106944084 +135.0,45.0,180.0,73,0.004810357932001352,0.0045697507448494434,0.0022177689243108034,0.008204786106944084 +-135.0,135.0,180.0,73,0.004886338487267494,0.004655836615711451,0.002253183862194419,0.005767282098531723 +45.0,45.0,0.0,73,0.004886338487267494,0.004655836615711451,0.002253183862194419,0.005767282098531723 +-135.0,135.0,-180.0,73,0.004903371911495924,0.004655820783227682,0.002256534295156598,0.005767282098531723 +-90.0,45.0,-135.0,73,0.00528843654319644,0.00562276178970933,0.0014695781283080578,0.006182748358696699 +90.0,135.0,45.0,73,0.00528843654319644,0.00562276178970933,0.0014695781283080578,0.006182748358696699 +-45.0,90.0,-180.0,73,0.005381331779062748,0.0050086756236851215,0.00225525489076972,0.010377541184425354 +-180.0,0.0,-90.0,73,0.005505377892404795,0.006004991475492716,0.0016370989615097642,0.0107660461217165 +0.0,-180.0,90.0,73,0.005505377892404795,0.006004991475492716,0.0016370989615097642,0.0107660461217165 +0.0,180.0,90.0,73,0.005505377892404795,0.006004991475492716,0.0016370989615097642,0.0107660461217165 +180.0,0.0,-90.0,73,0.005505377892404795,0.006004991475492716,0.0016370989615097642,0.0107660461217165 +-90.0,45.0,-45.0,73,0.00551595538854599,0.005602322984486818,0.0011521176202222705,0.008710822090506554 +90.0,135.0,135.0,73,0.00551595538854599,0.005602322984486818,0.0011521176202222705,0.008710822090506554 +-180.0,90.0,45.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +-135.0,90.0,90.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +-90.0,90.0,135.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +-45.0,90.0,180.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +0.0,90.0,-135.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +45.0,90.0,-90.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +90.0,90.0,-45.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +135.0,90.0,0.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +180.0,90.0,45.0,73,0.005527246277779341,0.0053003448992967606,0.0023261932656168938,0.010377541184425354 +-90.0,135.0,180.0,73,0.005542941391468048,0.005209360737353563,0.0023340166080743074,0.007461281027644873 +90.0,45.0,0.0,73,0.005542941391468048,0.005209360737353563,0.0023340166080743074,0.007461281027644873 +-135.0,-180.0,90.0,73,0.005591280292719603,0.005292298272252083,0.0018603448988869786,0.008445297367870808 +-135.0,180.0,90.0,73,0.005591280292719603,0.005292298272252083,0.0018603448988869786,0.008445297367870808 +45.0,0.0,-90.0,73,0.005591280292719603,0.005292298272252083,0.0018603448988869786,0.008445297367870808 +-90.0,135.0,-180.0,73,0.005646510049700737,0.005271122325211763,0.00235246354714036,0.007461281027644873 +90.0,45.0,-180.0,73,0.0057860189117491245,0.005676691886037588,0.0020078166853636503,0.01096678338944912 +-180.0,-180.0,90.0,73,0.005852339323610067,0.005775913596153259,0.001348214689642191,0.01070446241647005 +-180.0,180.0,90.0,73,0.005852339323610067,0.005775913596153259,0.001348214689642191,0.01070446241647005 +0.0,0.0,-90.0,73,0.005852339323610067,0.005775913596153259,0.001348214689642191,0.01070446241647005 +180.0,-180.0,90.0,73,0.005852339323610067,0.005775913596153259,0.001348214689642191,0.01070446241647005 +180.0,180.0,90.0,73,0.005852339323610067,0.005775913596153259,0.001348214689642191,0.01070446241647005 +-90.0,135.0,0.0,73,0.005871488247066736,0.005676767323166132,0.002190900733694434,0.01096678338944912 +90.0,45.0,180.0,73,0.005871488247066736,0.005676767323166132,0.002190900733694434,0.01096678338944912 +-45.0,-180.0,45.0,73,0.005877096671611071,0.0054579563438892365,0.0023466621059924364,0.010167325846850872 +-45.0,180.0,45.0,73,0.005877096671611071,0.0054579563438892365,0.0023466621059924364,0.010167325846850872 +135.0,0.0,-135.0,73,0.005877096671611071,0.0054579563438892365,0.0023466621059924364,0.010167325846850872 +-135.0,-180.0,135.0,73,0.005902411416172981,0.005988553166389465,0.0025178801734000444,0.008457805030047894 +-135.0,180.0,135.0,73,0.005902411416172981,0.005988553166389465,0.0025178801734000444,0.008457805030047894 +45.0,0.0,-45.0,73,0.005902411416172981,0.005988553166389465,0.0025178801734000444,0.008457805030047894 +-135.0,135.0,45.0,73,0.005926335696130991,0.005716660525649786,0.0014498165110126138,0.009205066598951817 +45.0,45.0,-135.0,73,0.005926335696130991,0.005716660525649786,0.0014498162781819701,0.009205066598951817 +-90.0,135.0,-135.0,73,0.0059640309773385525,0.005412326660007238,0.0025833838153630495,0.010494297370314598 +90.0,45.0,45.0,73,0.0059640309773385525,0.0054123252630233765,0.0025833838153630495,0.010494297370314598 +-45.0,135.0,135.0,73,0.006069917697459459,0.00622548907995224,0.0013931134017184377,0.008711117319762707 +135.0,45.0,-45.0,73,0.006069917697459459,0.00622548907995224,0.0013931134017184377,0.008711117319762707 +-180.0,0.0,-135.0,73,0.006104561034590006,0.00580755015835166,0.002470567123964429,0.0109455157071352 +0.0,-180.0,45.0,73,0.006104561034590006,0.00580755015835166,0.002470567123964429,0.0109455157071352 +0.0,180.0,45.0,73,0.006104561034590006,0.00580755015835166,0.002470567123964429,0.0109455157071352 +180.0,0.0,-135.0,73,0.006104561034590006,0.00580755015835166,0.002470567123964429,0.0109455157071352 +-180.0,45.0,-180.0,73,0.006146690808236599,0.005758760962635279,0.0024406646843999624,0.007658861111849546 +180.0,45.0,-180.0,73,0.006146690808236599,0.005758760962635279,0.0024406646843999624,0.007658861111849546 +-90.0,135.0,-90.0,73,0.006163634359836578,0.005443633068352938,0.0025543547235429287,0.012777351774275303 +90.0,45.0,90.0,73,0.006163634359836578,0.005443633068352938,0.0025543547235429287,0.012777351774275303 +-180.0,-180.0,135.0,73,0.006254600826650858,0.006214572582393885,0.002053550910204649,0.01095502357929945 +-180.0,180.0,135.0,73,0.006254600826650858,0.006214572582393885,0.002053550910204649,0.01095502357929945 +0.0,0.0,-45.0,73,0.006254600826650858,0.006214572582393885,0.002053550910204649,0.01095502357929945 +180.0,-180.0,135.0,73,0.006254600826650858,0.006214572582393885,0.002053550910204649,0.01095502357929945 +180.0,180.0,135.0,73,0.006254600826650858,0.006214572582393885,0.002053550910204649,0.01095502357929945 +-180.0,45.0,180.0,73,0.006267348304390907,0.005823694169521332,0.002305180998519063,0.007658861111849546 +0.0,135.0,0.0,73,0.006267348304390907,0.005823694169521332,0.002305180998519063,0.007658861111849546 +180.0,45.0,180.0,73,0.006267348304390907,0.005823694169521332,0.002305180998519063,0.007658861111849546 +-180.0,135.0,180.0,73,0.006399564445018768,0.00596952810883522,0.0018513653194531798,0.007737636566162109 +0.0,45.0,0.0,73,0.006399564445018768,0.00596952810883522,0.0018513653194531798,0.007737636566162109 +180.0,135.0,180.0,73,0.006399564445018768,0.00596952810883522,0.0018513653194531798,0.007737636566162109 +-180.0,135.0,-180.0,73,0.0064287795685231686,0.0059695118106901646,0.0018595613073557615,0.007737636566162109 +180.0,135.0,-180.0,73,0.0064287795685231686,0.0059695118106901646,0.0018595613073557615,0.007737636566162109 +-180.0,90.0,-45.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +-135.0,90.0,0.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +-90.0,90.0,45.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +-45.0,90.0,90.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +0.0,90.0,135.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +45.0,90.0,180.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +90.0,90.0,-135.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +135.0,90.0,-90.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +180.0,90.0,-45.0,73,0.006431290414184332,0.006071502808481455,0.0019133089808747172,0.01290657464414835 +0.0,90.0,-180.0,73,0.0064333477057516575,0.006108347792178392,0.0022513382136821747,0.012967020273208618 +45.0,90.0,-180.0,73,0.006469434592872858,0.0060704718343913555,0.001956464257091284,0.01290657464414835 +-180.0,90.0,0.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +-135.0,90.0,45.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +-90.0,90.0,90.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +-45.0,90.0,135.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +0.0,90.0,180.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +45.0,90.0,-135.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +90.0,90.0,-90.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +135.0,90.0,-45.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +180.0,90.0,0.0,73,0.006476701237261295,0.006108342204242945,0.0022953012958168983,0.012967020273208618 +-135.0,0.0,-90.0,73,0.0064871646463871,0.007004988845437765,0.001999050611630082,0.013025211170315742 +45.0,-180.0,90.0,73,0.0064871646463871,0.007004988845437765,0.001999050611630082,0.013025211170315742 +45.0,180.0,90.0,73,0.0064871646463871,0.007004988845437765,0.001999050611630082,0.013025211170315742 +-90.0,135.0,-45.0,73,0.006558694876730442,0.006123824045062065,0.002319118706509471,0.012973062694072723 +90.0,45.0,135.0,73,0.006558694876730442,0.006123824045062065,0.002319118706509471,0.012973062694072723 +-45.0,0.0,-90.0,73,0.0066154650412499905,0.006790681276470423,0.0014609688660129905,0.012981665320694447 +135.0,-180.0,90.0,73,0.0066154650412499905,0.006790681276470423,0.0014609688660129905,0.012981665320694447 +135.0,180.0,90.0,73,0.0066154650412499905,0.006790681276470423,0.0014609688660129905,0.012981665320694447 +-135.0,135.0,-135.0,73,0.006646651774644852,0.006070676725357771,0.0021134812850505114,0.010889127850532532 +45.0,45.0,45.0,73,0.006646651774644852,0.006070676725357771,0.0021134812850505114,0.010889127850532532 +-90.0,0.0,-90.0,73,0.007223513908684254,0.007496976759284735,0.0015759714879095554,0.013942952267825603 +90.0,-180.0,90.0,73,0.007223513908684254,0.007496976759284735,0.0015759714879095554,0.013942952267825603 +90.0,180.0,90.0,73,0.007223513908684254,0.007496976759284735,0.0015759714879095554,0.013942952267825603 +-135.0,45.0,-45.0,73,0.007255525793880224,0.007592618465423584,0.0017745920922607183,0.011013329960405827 +45.0,135.0,135.0,73,0.007255525793880224,0.007592618465423584,0.0017745920922607183,0.011013329960405827 +-45.0,45.0,-135.0,73,0.007265265565365553,0.007594385650008917,0.0016746390610933304,0.007966911420226097 +135.0,135.0,45.0,73,0.007265265565365553,0.007594385650008917,0.0016746390610933304,0.007966911420226097 +-45.0,135.0,-45.0,73,0.0072671654634177685,0.007120683789253235,0.0024752512108534575,0.011320979334414005 +135.0,45.0,135.0,73,0.0072671654634177685,0.007120683789253235,0.0024752512108534575,0.011320979334414005 +-90.0,-180.0,45.0,73,0.007270859554409981,0.007250675465911627,0.001851400127634406,0.011404932476580143 +-90.0,180.0,45.0,73,0.007270859554409981,0.007250675465911627,0.001851400127634406,0.011404932476580143 +90.0,0.0,-135.0,73,0.007270859554409981,0.007250675465911627,0.001851400127634406,0.011404932476580143 +-90.0,-180.0,135.0,73,0.007488483563065529,0.007846868596971035,0.0027875141240656376,0.008998219855129719 +-90.0,180.0,135.0,73,0.007488483563065529,0.007846868596971035,0.0027875141240656376,0.008998219855129719 +90.0,0.0,-45.0,73,0.007488483563065529,0.007846868596971035,0.0027875141240656376,0.008998219855129719 +-180.0,45.0,-45.0,73,0.007628174033015966,0.0080252131447196,0.0018891207873821259,0.011013451963663101 +0.0,135.0,135.0,73,0.007628174033015966,0.0080252131447196,0.0018891207873821259,0.011013451963663101 +180.0,45.0,-45.0,73,0.007628174033015966,0.0080252131447196,0.0018891207873821259,0.011013451963663101 +-135.0,0.0,-135.0,73,0.0076732817105948925,0.008333521895110607,0.002642639447003603,0.01328364759683609 +45.0,-180.0,45.0,73,0.0076732817105948925,0.008333521895110607,0.002642639447003603,0.01328364759683609 +45.0,180.0,45.0,73,0.0076732817105948925,0.008333521895110607,0.002642639447003603,0.01328364759683609 +-135.0,135.0,-90.0,73,0.007790966425091028,0.007173827383667231,0.002107080537825823,0.015517721883952618 +45.0,45.0,90.0,73,0.007790966425091028,0.007173827383667231,0.002107080537825823,0.015517721883952618 +-180.0,135.0,45.0,73,0.007949508726596832,0.008065509609878063,0.0015734659973531961,0.009218795225024223 +0.0,45.0,-135.0,73,0.007949508726596832,0.008065509609878063,0.0015734659973531961,0.009218795225024223 +180.0,135.0,45.0,73,0.007949508726596832,0.008065509609878063,0.0015734659973531961,0.009218795225024223 +-45.0,135.0,-90.0,73,0.008233627304434776,0.0076684230007231236,0.002653942909091711,0.013672763481736183 +135.0,45.0,90.0,73,0.008233627304434776,0.0076684230007231236,0.002653942909091711,0.013672763481736183 +-45.0,0.0,-45.0,73,0.008540717884898186,0.008427058346569538,0.0017421841621398926,0.015027041547000408 +135.0,-180.0,135.0,73,0.008540717884898186,0.008427058346569538,0.0017421841621398926,0.015027041547000408 +135.0,180.0,135.0,73,0.008540717884898186,0.008427058346569538,0.0017421841621398926,0.015027041547000408 +-45.0,135.0,180.0,73,0.008551711216568947,0.008513259701430798,0.002417729003354907,0.011827312409877777 +135.0,45.0,0.0,73,0.008551711216568947,0.008513259701430798,0.002417729003354907,0.011827312409877777 +45.0,45.0,-180.0,73,0.008555852808058262,0.008445735089480877,0.001583387260325253,0.014326912350952625 +-135.0,135.0,0.0,73,0.008582727052271366,0.00839441642165184,0.0017179995775222778,0.014326912350952625 +45.0,45.0,180.0,73,0.008582727052271366,0.00839441642165184,0.0017179995775222778,0.014326912350952625 +-45.0,135.0,-135.0,73,0.008614831604063511,0.008159180171787739,0.002631169743835926,0.01388249360024929 +135.0,45.0,45.0,73,0.008614831604063511,0.008159180171787739,0.002631169743835926,0.01388249360024929 +-45.0,135.0,-180.0,73,0.008729804307222366,0.008617662824690342,0.002267939504235983,0.011827312409877777 +-135.0,45.0,-180.0,73,0.00883910246193409,0.009511292912065983,0.0029253135435283184,0.009648803621530533 +-135.0,45.0,180.0,73,0.00890215951949358,0.009511291980743408,0.0028280916158109903,0.009648803621530533 +45.0,135.0,0.0,73,0.00890215951949358,0.009511291980743408,0.0028280916158109903,0.009648803621530533 +-135.0,135.0,-45.0,73,0.008920938707888126,0.008307968266308308,0.0021666574757546186,0.016941700130701065 +45.0,45.0,135.0,73,0.008920938707888126,0.008307968266308308,0.0021666574757546186,0.016941700130701065 +135.0,135.0,-180.0,73,0.008964551612734795,0.009003804065287113,0.001651700004003942,0.012218138203024864 +-45.0,45.0,0.0,73,0.008992072194814682,0.00903636496514082,0.0016692407662048936,0.012218138203024864 +135.0,135.0,180.0,73,0.008992072194814682,0.00903636496514082,0.0016692407662048936,0.012218138203024864 +-90.0,0.0,-135.0,73,0.009455643594264984,0.010432320646941662,0.0028426970820873976,0.01581207662820816 +90.0,-180.0,45.0,73,0.009455643594264984,0.010432320646941662,0.0028426970820873976,0.01581207662820816 +90.0,180.0,45.0,73,0.009455643594264984,0.010432320646941662,0.0028426970820873976,0.01581207662820816 +-45.0,-180.0,135.0,73,0.009516165591776371,0.010553207248449326,0.002974672010168433,0.012259704060852528 +-45.0,180.0,135.0,73,0.009516165591776371,0.010553207248449326,0.002974672010168433,0.012259704060852528 +135.0,0.0,-45.0,73,0.009516165591776371,0.010553207248449326,0.002974672010168433,0.012259704060852528 +-135.0,0.0,-45.0,73,0.00996383186429739,0.010396372526884079,0.002601735293865204,0.018828939646482468 +45.0,-180.0,135.0,73,0.00996383186429739,0.010396372526884079,0.002601735293865204,0.018828939646482468 +45.0,180.0,135.0,73,0.00996383186429739,0.010396372526884079,0.002601735293865204,0.018828939646482468 +-180.0,0.0,-45.0,73,0.010140130296349525,0.01094062626361847,0.0030145172495394945,0.016331719234585762 +0.0,-180.0,135.0,73,0.010140130296349525,0.01094062626361847,0.0030145172495394945,0.016331719234585762 +0.0,180.0,135.0,73,0.010140130296349525,0.01094062626361847,0.0030145172495394945,0.016331719234585762 +180.0,0.0,-45.0,73,0.010140130296349525,0.01094062626361847,0.0030145172495394945,0.016331719234585762 +-90.0,-135.0,90.0,73,0.010180190205574036,0.010568473488092422,0.0032729841768741608,0.01749812811613083 +90.0,-45.0,-90.0,73,0.010180190205574036,0.010568473488092422,0.0032729841768741608,0.01749812811613083 +-180.0,135.0,-135.0,73,0.010195903480052948,0.010314002633094788,0.0019523935625329614,0.01483569759875536 +0.0,45.0,45.0,73,0.010195903480052948,0.010314002633094788,0.0019523935625329614,0.01483569759875536 +180.0,135.0,-135.0,73,0.010195903480052948,0.010314002633094788,0.0019523935625329614,0.01483569759875536 +-135.0,-180.0,45.0,73,0.010220352560281754,0.010156764648854733,0.001573891844600439,0.013933363370597363 +-135.0,180.0,45.0,73,0.010220352560281754,0.010156764648854733,0.001573891844600439,0.013933363370597363 +45.0,0.0,-135.0,73,0.010220352560281754,0.010156764648854733,0.001573891844600439,0.013933363370597363 +-45.0,-135.0,90.0,73,0.010221267119050026,0.010289766825735569,0.003664740826934576,0.01804766245186329 +135.0,-45.0,-90.0,73,0.010221267119050026,0.010289766825735569,0.003664740826934576,0.01804766245186329 +-45.0,0.0,-135.0,73,0.010616662912070751,0.011327131651341915,0.0026834120508283377,0.01704968512058258 +135.0,-180.0,45.0,73,0.010616662912070751,0.011327131651341915,0.0026834120508283377,0.01704968512058258 +135.0,180.0,45.0,73,0.010616662912070751,0.011327131651341915,0.0026834120508283377,0.01704968512058258 +-45.0,-180.0,0.0,73,0.010782807134091854,0.010999877005815506,0.0035281390883028507,0.016311917454004288 +-45.0,180.0,0.0,73,0.010782807134091854,0.010999877005815506,0.0035281390883028507,0.016311917454004288 +135.0,0.0,180.0,73,0.010782807134091854,0.010999877005815506,0.0035281390883028507,0.016311917454004288 +-90.0,0.0,-45.0,73,0.01081523671746254,0.010804444551467896,0.002179729752242565,0.018288522958755493 +90.0,-180.0,135.0,73,0.01081523671746254,0.010804444551467896,0.002179729752242565,0.018288522958755493 +90.0,180.0,135.0,73,0.01081523671746254,0.010804444551467896,0.002179729752242565,0.018288522958755493 +-180.0,45.0,135.0,73,0.010821262374520302,0.011085904203355312,0.003155023790895939,0.012953221797943115 +0.0,135.0,-45.0,73,0.010821262374520302,0.011085904203355312,0.003155023790895939,0.012953221797943115 +180.0,45.0,135.0,73,0.010821262374520302,0.011085904203355312,0.003155023790895939,0.012953221797943115 +135.0,0.0,-180.0,73,0.01084682997316122,0.010999876074492931,0.0034581776708364487,0.016311917454004288 +-135.0,-180.0,-180.0,73,0.010874402709305286,0.011145365424454212,0.0035661738365888596,0.013963558711111546 +-135.0,-180.0,180.0,73,0.010940398089587688,0.011145505122840405,0.0034732960630208254,0.013963558711111546 +-135.0,180.0,180.0,73,0.010940398089587688,0.011145505122840405,0.0034732960630208254,0.013963558711111546 +45.0,0.0,0.0,73,0.010940398089587688,0.011145505122840405,0.0034732960630208254,0.013963558711111546 +-135.0,-135.0,135.0,73,0.010959883220493793,0.011533990502357483,0.0037256600335240364,0.01946316845715046 +45.0,-45.0,-45.0,73,0.010959883220493793,0.011533990502357483,0.0037256600335240364,0.01946316845715046 +-180.0,0.0,180.0,73,0.01101134717464447,0.011630100198090076,0.003839663928374648,0.016764996573328972 +0.0,-180.0,0.0,73,0.01101134717464447,0.011630100198090076,0.003839663928374648,0.016764996573328972 +0.0,180.0,0.0,73,0.01101134717464447,0.011630100198090076,0.003839663928374648,0.016764996573328972 +180.0,0.0,180.0,73,0.01101134717464447,0.011630100198090076,0.003839663928374648,0.016764996573328972 +-180.0,0.0,-180.0,73,0.011068852618336678,0.011630100198090076,0.0037459521554410458,0.016764996573328972 +180.0,0.0,-180.0,73,0.011068852618336678,0.011630100198090076,0.0037459521554410458,0.016764996573328972 +-45.0,-135.0,45.0,73,0.01112791895866394,0.011476065963506699,0.0030197238083928823,0.01993124559521675 +135.0,-45.0,-135.0,73,0.01112791895866394,0.011476065963506699,0.0030197238083928823,0.01993124559521675 +-135.0,180.0,-180.0,73,0.011169280856847763,0.011168836615979671,0.0032280785962939262,0.013963558711111546 +-135.0,-135.0,90.0,73,0.011268774047493935,0.01178764645010233,0.0030807582661509514,0.019717713817954063 +45.0,-45.0,-90.0,73,0.011268774047493935,0.01178764645010233,0.0030807582661509514,0.019717713817954063 +90.0,135.0,-180.0,73,0.011338533833622932,0.011673507280647755,0.0023090916220098734,0.016584167256951332 +-90.0,45.0,0.0,73,0.01139257475733757,0.011669430881738663,0.0022297659888863564,0.016584167256951332 +90.0,135.0,180.0,73,0.01139257475733757,0.011669430881738663,0.0022297659888863564,0.016584167256951332 +-180.0,-180.0,-180.0,73,0.011506573297083378,0.012255155481398106,0.0034987698309123516,0.016876403242349625 +-90.0,-135.0,135.0,73,0.011524451896548271,0.012023000977933407,0.0041815005242824554,0.01893162913620472 +90.0,-45.0,-45.0,73,0.011524451896548271,0.012023000977933407,0.0041815005242824554,0.01893162913620472 +-90.0,45.0,-180.0,73,0.011529003269970417,0.012537557631731033,0.00318407965824008,0.013008934445679188 +-90.0,45.0,180.0,73,0.011663571931421757,0.012537789531052113,0.0029575214721262455,0.013008934445679188 +90.0,135.0,0.0,73,0.011663571931421757,0.012537789531052113,0.0029575214721262455,0.013008934445679188 +0.0,45.0,-180.0,73,0.01173317339271307,0.011880770325660706,0.001977517968043685,0.01631685346364975 +-180.0,135.0,0.0,73,0.011769615113735199,0.011944446712732315,0.001975143561139703,0.01631685346364975 +0.0,45.0,180.0,73,0.011769615113735199,0.011944446712732315,0.001975143561139703,0.01631685346364975 +180.0,135.0,0.0,73,0.011769615113735199,0.011944446712732315,0.001975143561139703,0.01631685346364975 +-90.0,-135.0,45.0,73,0.011819103732705116,0.011747508309781551,0.0022468003444373608,0.02128671109676361 +90.0,-45.0,-135.0,73,0.011819103732705116,0.011747508309781551,0.0022468003444373608,0.02128671109676361 +-180.0,-45.0,-90.0,73,0.011852318421006203,0.01277026068419218,0.004000550135970116,0.0210444126278162 +0.0,-135.0,90.0,73,0.011852318421006203,0.01277026068419218,0.004000550135970116,0.0210444126278162 +180.0,-45.0,-90.0,73,0.011852318421006203,0.01277026068419218,0.004000550135970116,0.0210444126278162 +-180.0,45.0,0.0,73,0.011859300546348095,0.012545709498226643,0.003027528990060091,0.016307814046740532 +0.0,135.0,180.0,73,0.011859300546348095,0.012545709498226643,0.003027528990060091,0.016307814046740532 +180.0,45.0,0.0,73,0.011859300546348095,0.012545709498226643,0.003027528990060091,0.016307814046740532 +-180.0,-180.0,180.0,73,0.011867770925164223,0.012253992259502411,0.0029972924385219812,0.016876403242349625 +-180.0,180.0,180.0,73,0.011867770925164223,0.012253992259502411,0.0029972924385219812,0.016876403242349625 +0.0,0.0,0.0,73,0.011867770925164223,0.012253992259502411,0.0029972924385219812,0.016876403242349625 +180.0,-180.0,180.0,73,0.011867770925164223,0.012253992259502411,0.0029972924385219812,0.016876403242349625 +180.0,180.0,180.0,73,0.011867770925164223,0.012253992259502411,0.0029972924385219812,0.016876403242349625 +180.0,-180.0,-180.0,73,0.01187971979379654,0.012254398316144943,0.002988639520481229,0.016876403242349625 +-180.0,-45.0,-135.0,73,0.011894493363797665,0.012060385197401047,0.004046212881803513,0.02110975608229637 +0.0,-135.0,45.0,73,0.011894493363797665,0.012060385197401047,0.004046212881803513,0.02110975608229637 +180.0,-45.0,-135.0,73,0.011894493363797665,0.012060385197401047,0.004046212881803513,0.02110975608229637 +-45.0,-135.0,135.0,73,0.011913372203707695,0.01278617512434721,0.0036616839934140444,0.021534064784646034 +135.0,-45.0,-45.0,73,0.011913372203707695,0.01278617512434721,0.0036616839934140444,0.021534064784646034 +-135.0,0.0,-180.0,73,0.011932889930903912,0.013377491384744644,0.003524826606735587,0.019452862441539764 +-135.0,0.0,180.0,73,0.01193819846957922,0.013378274627029896,0.0035248224157840014,0.019452862441539764 +45.0,-180.0,0.0,73,0.01193819846957922,0.013378274627029896,0.0035248224157840014,0.019452862441539764 +45.0,180.0,0.0,73,0.01193819846957922,0.013378274627029896,0.0035248224157840014,0.019452862441539764 +-90.0,-180.0,0.0,73,0.011985817924141884,0.012395385652780533,0.002921254141256213,0.01835903339087963 +-90.0,180.0,0.0,73,0.011985817924141884,0.012395385652780533,0.002921254141256213,0.01835903339087963 +90.0,0.0,180.0,73,0.011985817924141884,0.012395385652780533,0.002921254141256213,0.01835903339087963 +90.0,0.0,-180.0,73,0.012052759528160095,0.0126300984993577,0.0028830363880842924,0.01835903339087963 +-90.0,-180.0,-180.0,73,0.012074882164597511,0.013328100554645061,0.0042823064140975475,0.01495543122291565 +0.0,135.0,-180.0,73,0.012084247544407845,0.012545742094516754,0.00268657342530787,0.016307814046740532 +-180.0,180.0,-180.0,73,0.012086047790944576,0.012331411242485046,0.002854603109881282,0.016876403242349625 +180.0,180.0,-180.0,73,0.012086047790944576,0.012331411242485046,0.002854603109881282,0.016876403242349625 +-90.0,-180.0,180.0,73,0.01215097401291132,0.013328100554645061,0.004168144427239895,0.01495543122291565 +-90.0,180.0,180.0,73,0.01215097401291132,0.013328100554645061,0.004168144427239895,0.01495543122291565 +90.0,0.0,0.0,73,0.01215097401291132,0.013328100554645061,0.004168144427239895,0.01495543122291565 +-180.0,-180.0,45.0,73,0.012398185208439827,0.012456358410418034,0.0020811629947274923,0.016271492466330528 +-180.0,180.0,45.0,73,0.012398185208439827,0.012456358410418034,0.0020811629947274923,0.016271492466330528 +0.0,0.0,-135.0,73,0.012398185208439827,0.012456358410418034,0.0020811629947274923,0.016271492466330528 +180.0,-180.0,45.0,73,0.012398185208439827,0.012456358410418034,0.0020811629947274923,0.016271492466330528 +180.0,180.0,45.0,73,0.012398185208439827,0.012456358410418034,0.0020811629947274923,0.016271492466330528 +-90.0,180.0,-180.0,73,0.012527484446763992,0.013328100554645061,0.0037009117659181356,0.01495543122291565 +-180.0,-135.0,135.0,73,0.012651054188609123,0.013201978988945484,0.003052801825106144,0.022817321121692657 +0.0,-45.0,-45.0,73,0.012651054188609123,0.013201978988945484,0.003052801825106144,0.022817321121692657 +180.0,-135.0,135.0,73,0.012651054188609123,0.013201978988945484,0.003052801825106144,0.022817321121692657 +-180.0,135.0,-90.0,73,0.012728782370686531,0.01274172868579626,0.0023972676135599613,0.020288605242967606 +0.0,45.0,90.0,73,0.012728782370686531,0.01274172868579626,0.0023972676135599613,0.020288605242967606 +180.0,135.0,-90.0,73,0.012728782370686531,0.01274172868579626,0.0023972676135599613,0.020288605242967606 +-135.0,45.0,0.0,73,0.012759317643940449,0.013546464033424854,0.002923965221270919,0.01827816851437092 +45.0,135.0,180.0,73,0.012759317643940449,0.013546464033424854,0.002923965221270919,0.01827816851437092 +-180.0,-45.0,-45.0,73,0.012836572714149952,0.013681548647582531,0.003587213344871998,0.02574600838124752 +0.0,-135.0,135.0,73,0.012836572714149952,0.013681548647582531,0.003587213344871998,0.02574600838124752 +180.0,-45.0,-45.0,73,0.012836572714149952,0.013681548647582531,0.003587213344871998,0.02574600838124752 +45.0,135.0,-180.0,73,0.012889977544546127,0.013553432188928127,0.0027792982291430235,0.01827816851437092 +-45.0,-180.0,-180.0,73,0.012994712218642235,0.014695697464048862,0.004234750755131245,0.019270988181233406 +-135.0,-45.0,-135.0,73,0.013002709485590458,0.014522220939397812,0.004218286368995905,0.024131884798407555 +45.0,-135.0,45.0,73,0.013002709485590458,0.014522220939397812,0.004218286368995905,0.024131884798407555 +-45.0,-180.0,180.0,73,0.013044305145740509,0.014695703983306885,0.004151497967541218,0.019270988181233406 +-45.0,180.0,180.0,73,0.013044305145740509,0.014695703983306885,0.004151497967541218,0.019270988181233406 +135.0,0.0,0.0,73,0.013044305145740509,0.014695703983306885,0.004151497967541218,0.019270988181233406 +-180.0,135.0,-45.0,73,0.013323831371963024,0.013380001299083233,0.0024014709051698446,0.020902119576931 +0.0,45.0,135.0,73,0.013323831371963024,0.013380001299083233,0.0024014709051698446,0.020902119576931 +180.0,135.0,-45.0,73,0.013323831371963024,0.013380001299083233,0.0024014709051698446,0.020902119576931 +-135.0,-45.0,-90.0,73,0.0133898314088583,0.01446246262639761,0.0037412894889712334,0.024732917547225952 +45.0,-135.0,90.0,73,0.0133898314088583,0.01446246262639761,0.0037412894889712334,0.024732917547225952 +-180.0,45.0,90.0,73,0.01345533225685358,0.01403974462300539,0.0036921477876603603,0.01767943613231182 +0.0,135.0,-90.0,73,0.01345533225685358,0.01403974462300539,0.0036921477876603603,0.01767943613231182 +180.0,45.0,90.0,73,0.01345533225685358,0.01403974462300539,0.0036921477876603603,0.01767943613231182 +-45.0,45.0,180.0,73,0.013487013056874275,0.013918827287852764,0.0026372980792075396,0.015770932659506798 +135.0,135.0,0.0,73,0.013487013056874275,0.013918827287852764,0.0026372980792075396,0.015770932659506798 +-45.0,45.0,-180.0,73,0.013508596457540989,0.01391883660107851,0.0025886378716677427,0.015770932659506798 +-45.0,180.0,-180.0,73,0.013543661683797836,0.014695730991661549,0.0034468004014343023,0.019270988181233406 +-180.0,-135.0,90.0,73,0.013625115156173706,0.013711300678551197,0.002705582184717059,0.023406218737363815 +0.0,-45.0,-90.0,73,0.013625115156173706,0.013711300678551197,0.002705582184717059,0.023406218737363815 +180.0,-135.0,90.0,73,0.013625115156173706,0.013711300678551197,0.002705582184717059,0.023406218737363815 +-90.0,0.0,-180.0,73,0.013690526597201824,0.014913507737219334,0.003884815378114581,0.022800995036959648 +-90.0,0.0,180.0,73,0.013692553155124187,0.014913477003574371,0.003880754578858614,0.022800995036959648 +90.0,-180.0,0.0,73,0.013692553155124187,0.014913477003574371,0.003880754578858614,0.022800995036959648 +90.0,180.0,0.0,73,0.013692553155124187,0.014913477003574371,0.003880754578858614,0.022800995036959648 +-180.0,-45.0,180.0,73,0.0137301255017519,0.01432336401194334,0.0032772060949355364,0.025903763249516487 +0.0,-135.0,0.0,73,0.0137301255017519,0.01432336401194334,0.0032772060949355364,0.025903763249516487 +180.0,-45.0,180.0,73,0.0137301255017519,0.01432336401194334,0.0032772060949355364,0.025903763249516487 +-180.0,45.0,45.0,73,0.013747097924351692,0.014581245370209217,0.0036900194827467203,0.01906895637512207 +0.0,135.0,-135.0,73,0.013747097924351692,0.014581245370209217,0.0036900194827467203,0.01906895637512207 +180.0,45.0,45.0,73,0.013747097924351692,0.014581245370209217,0.0036900194827467203,0.01906895637512207 +-45.0,-135.0,0.0,73,0.013754662126302719,0.014167048037052155,0.0030642508063465357,0.026081440970301628 +135.0,-45.0,180.0,73,0.013754662126302719,0.014167048037052155,0.0030642508063465357,0.026081440970301628 +-180.0,-45.0,-180.0,73,0.013791749253869057,0.014323544688522816,0.003197618992999196,0.025903763249516487 +180.0,-45.0,-180.0,73,0.013791749253869057,0.014323544688522816,0.003197618992999196,0.025903763249516487 +-45.0,-180.0,-45.0,73,0.013797445222735405,0.01505154650658369,0.00381535105407238,0.02332320436835289 +-45.0,180.0,-45.0,73,0.013797445222735405,0.01505154650658369,0.00381535105407238,0.02332320436835289 +135.0,0.0,135.0,73,0.013797445222735405,0.01505154650658369,0.00381535105407238,0.02332320436835289 +-135.0,-135.0,180.0,73,0.013839932158589363,0.015053525567054749,0.004297229927033186,0.023767614737153053 +45.0,-45.0,0.0,73,0.013839932158589363,0.015053525567054749,0.004297229927033186,0.023767614737153053 +135.0,-45.0,-180.0,73,0.013918383046984673,0.014174841344356537,0.002913298085331917,0.026081440970301628 +-135.0,-135.0,-180.0,73,0.01393178105354309,0.015053612180054188,0.00416614068672061,0.023767614737153053 +-90.0,-135.0,180.0,73,0.013987472280859947,0.014893789775669575,0.003896598005667329,0.024747489020228386 +90.0,-45.0,0.0,73,0.013987472280859947,0.014893789775669575,0.003896598005667329,0.024747489020228386 +0.0,-180.0,-180.0,73,0.014045975171029568,0.01510061975568533,0.004152175039052963,0.02438224107027054 +-90.0,-135.0,-180.0,73,0.014055746607482433,0.014894254505634308,0.0037794194649904966,0.024747489020228386 +-180.0,0.0,0.0,73,0.014122655615210533,0.015101470053195953,0.004016981925815344,0.02438224107027054 +0.0,-180.0,180.0,73,0.014122655615210533,0.015101470053195953,0.004016981925815344,0.02438224107027054 +0.0,180.0,180.0,73,0.014122655615210533,0.015101470053195953,0.004016981925815344,0.02438224107027054 +180.0,0.0,0.0,73,0.014122655615210533,0.015101470053195953,0.004016981925815344,0.02438224107027054 +-135.0,-45.0,-45.0,73,0.014160208404064178,0.014951936900615692,0.003197501879185438,0.02910015732049942 +45.0,-135.0,135.0,73,0.014160208404064178,0.014951936900615692,0.003197501879185438,0.02910015732049942 +0.0,180.0,-180.0,73,0.014276070520281792,0.01510328147560358,0.003781507723033428,0.02438224107027054 +-90.0,-180.0,-135.0,73,0.014369663782417774,0.015913773328065872,0.0045027355663478374,0.021909529343247414 +-90.0,180.0,-135.0,73,0.014369663782417774,0.015913773328065872,0.0045027355663478374,0.021909529343247414 +90.0,0.0,45.0,73,0.014369663782417774,0.015913773328065872,0.0045027355663478374,0.021909529343247414 +-90.0,-45.0,-135.0,73,0.014390922151505947,0.015653561800718307,0.004061994608491659,0.027227308601140976 +90.0,-135.0,45.0,73,0.014390922151505947,0.015653561800718307,0.004061994608491659,0.027227308601140976 +-180.0,0.0,135.0,73,0.014424895867705345,0.016032518818974495,0.0042522139847278595,0.024815520271658897 +0.0,-180.0,-45.0,73,0.014424895867705345,0.016032518818974495,0.0042522139847278595,0.024815520271658897 +0.0,180.0,-45.0,73,0.014424895867705345,0.016032518818974495,0.0042522139847278595,0.024815520271658897 +180.0,0.0,135.0,73,0.014424895867705345,0.016032518818974495,0.0042522139847278595,0.024815520271658897 +-45.0,-135.0,180.0,73,0.014659831300377846,0.015781527385115623,0.004186365753412247,0.02834816463291645 +135.0,-45.0,0.0,73,0.014659831300377846,0.015781527385115623,0.004186365753412247,0.02834816463291645 +-135.0,45.0,135.0,73,0.014670447446405888,0.01603960432112217,0.004124551545828581,0.01691364124417305 +45.0,135.0,-45.0,73,0.014670447446405888,0.01603960432112217,0.004124551545828581,0.01691364124417305 +-45.0,-135.0,-180.0,73,0.01468102540820837,0.015781810507178307,0.00414586067199707,0.02834816463291645 +-180.0,-135.0,180.0,73,0.014799297787249088,0.015866683796048164,0.0036864683497697115,0.025982540100812912 +0.0,-45.0,0.0,73,0.014799297787249088,0.015866683796048164,0.0036864683497697115,0.025982540100812912 +180.0,-135.0,180.0,73,0.014799297787249088,0.015866683796048164,0.0036864683497697115,0.025982540100812912 +-180.0,-135.0,-180.0,73,0.014828100800514221,0.01586725376546383,0.003659017151221633,0.025982540100812912 +180.0,-135.0,-180.0,73,0.014828100800514221,0.01586725376546383,0.003659017151221633,0.025982540100812912 +-45.0,-180.0,-135.0,73,0.01485501229763031,0.016462499275803566,0.004588142037391663,0.025415582582354546 +-45.0,180.0,-135.0,73,0.01485501229763031,0.016462499275803566,0.004588142037391663,0.025415582582354546 +135.0,0.0,45.0,73,0.01485501229763031,0.016462499275803566,0.004588142037391663,0.025415582582354546 +-90.0,-45.0,-90.0,73,0.014890463091433048,0.015787998214364052,0.003364273114129901,0.026952499523758888 +90.0,-135.0,90.0,73,0.014890463091433048,0.015787998214364052,0.003364273114129901,0.026952499523758888 +-45.0,45.0,45.0,73,0.014950405806303024,0.01527759712189436,0.0029200143180787563,0.020022159442305565 +135.0,135.0,-135.0,73,0.014950405806303024,0.01527759712189436,0.0029200145509094,0.020022159442305565 +-135.0,-180.0,0.0,73,0.015136965550482273,0.015556052327156067,0.0026201773434877396,0.021707167848944664 +-135.0,180.0,0.0,73,0.015136965550482273,0.015556052327156067,0.0026201773434877396,0.021707167848944664 +45.0,0.0,180.0,73,0.015136965550482273,0.015556052327156067,0.0026201773434877396,0.021707167848944664 +-135.0,-45.0,-180.0,73,0.015153450891375542,0.016573727130889893,0.004026883747428656,0.027649134397506714 +-135.0,-45.0,180.0,73,0.01516995020210743,0.016573281958699226,0.003996298648416996,0.027649134397506714 +45.0,-135.0,0.0,73,0.01516995020210743,0.016573281958699226,0.003996298648416996,0.027649134397506714 +45.0,0.0,-180.0,73,0.015210852026939392,0.015571805648505688,0.002591579221189022,0.021707167848944664 +-45.0,-45.0,-90.0,73,0.015213461592793465,0.01515064388513565,0.00279724202118814,0.026402967050671577 +135.0,-135.0,90.0,73,0.015213461592793465,0.01515064388513565,0.00279724202118814,0.026402967050671577 +-45.0,-180.0,-90.0,73,0.015225193463265896,0.016422124579548836,0.00420507974922657,0.02709406614303589 +-45.0,180.0,-90.0,73,0.015225193463265896,0.016422124579548836,0.00420507974922657,0.02709406614303589 +135.0,0.0,90.0,73,0.015225193463265896,0.016422124579548836,0.00420507974922657,0.02709406614303589 +45.0,-180.0,-180.0,73,0.015286363661289215,0.01592976786196232,0.003940040711313486,0.027295086532831192 +45.0,180.0,-180.0,73,0.015331516973674297,0.015930401161313057,0.0038747331127524376,0.027295086532831192 +-135.0,0.0,0.0,73,0.015343865379691124,0.0159302931278944,0.0038437461480498314,0.027295086532831192 +45.0,-180.0,180.0,73,0.015343865379691124,0.0159302931278944,0.0038437461480498314,0.027295086532831192 +45.0,180.0,180.0,73,0.015343865379691124,0.0159302931278944,0.0038437461480498314,0.027295086532831192 +-135.0,-180.0,-135.0,73,0.015385155566036701,0.016178391873836517,0.003912747371941805,0.021737363189458847 +-135.0,180.0,-135.0,73,0.015385155566036701,0.016178391873836517,0.003912747371941805,0.021737363189458847 +45.0,0.0,45.0,73,0.015385155566036701,0.016178391873836517,0.003912747371941805,0.021737363189458847 +-90.0,-135.0,0.0,73,0.01539202407002449,0.01578725315630436,0.002628656104207039,0.028078079223632812 +90.0,-45.0,180.0,73,0.01539202407002449,0.01578725315630436,0.002628656104207039,0.028078079223632812 +-90.0,-180.0,-45.0,73,0.01542716845870018,0.01626809500157833,0.0034906105138361454,0.02431624010205269 +-90.0,180.0,-45.0,73,0.01542716845870018,0.01626809500157833,0.0034906105138361454,0.02431624010205269 +90.0,0.0,135.0,73,0.01542716845870018,0.01626809500157833,0.0034906105138361454,0.02431624010205269 +90.0,-45.0,-180.0,73,0.01545577310025692,0.015797609463334084,0.0025602667592465878,0.028078079223632812 +-135.0,-90.0,-180.0,73,0.015482462011277676,0.017218152061104774,0.00462840311229229,0.02943636290729046 +-180.0,-90.0,-135.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +-135.0,-90.0,180.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +-90.0,-90.0,135.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +-45.0,-90.0,90.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +0.0,-90.0,45.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +45.0,-90.0,0.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +90.0,-90.0,-45.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +135.0,-90.0,-90.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +180.0,-90.0,-135.0,73,0.015482843853533268,0.017218051478266716,0.004623968154191971,0.02943636290729046 +0.0,-135.0,-180.0,73,0.01570846699178219,0.016306286677718163,0.0041897534392774105,0.03246041387319565 +-180.0,-45.0,0.0,73,0.01570972427725792,0.016306240111589432,0.004183894954621792,0.03246041387319565 +0.0,-135.0,180.0,73,0.01570972427725792,0.016306240111589432,0.004183894954621792,0.03246041387319565 +180.0,-45.0,0.0,73,0.01570972427725792,0.016306240111589432,0.004183894954621792,0.03246041387319565 +-90.0,-180.0,-90.0,73,0.015710828825831413,0.016755321994423866,0.004315052181482315,0.025786906480789185 +-90.0,180.0,-90.0,73,0.015710828825831413,0.016755321994423866,0.004315052181482315,0.025786906480789185 +90.0,0.0,90.0,73,0.015710828825831413,0.016755321994423866,0.004315052181482315,0.025786906480789185 +-45.0,0.0,-180.0,73,0.015834100544452667,0.016675405204296112,0.0036779011134058237,0.024848107248544693 +-90.0,-45.0,180.0,73,0.015838533639907837,0.017309486865997314,0.004564368166029453,0.03029514104127884 +90.0,-135.0,0.0,73,0.015838533639907837,0.017309486865997314,0.004564368166029453,0.03029514104127884 +-90.0,-45.0,-180.0,73,0.015839004889130592,0.01730944775044918,0.004563007969409227,0.03029514104127884 +-45.0,-45.0,-45.0,73,0.015898142009973526,0.016039161011576653,0.0028293959330767393,0.027029264718294144 +135.0,-135.0,135.0,73,0.015898142009973526,0.016039161011576653,0.0028293959330767393,0.027029264718294144 +-45.0,0.0,180.0,73,0.015928680077195168,0.016675496473908424,0.003497846657410264,0.024848107248544693 +135.0,-180.0,0.0,73,0.015928680077195168,0.016675496473908424,0.003497846657410264,0.024848107248544693 +135.0,180.0,0.0,73,0.015928680077195168,0.016675496473908424,0.003497846657410264,0.024848107248544693 +90.0,180.0,-180.0,73,0.015959283336997032,0.01667342521250248,0.003534348914399743,0.02630321867763996 +90.0,-180.0,-180.0,73,0.015971079468727112,0.016637802124023438,0.0035096826031804085,0.02630321867763996 +-135.0,-135.0,45.0,73,0.016063278540968895,0.01576751284301281,0.002172602340579033,0.02438213676214218 +45.0,-45.0,-135.0,73,0.016063278540968895,0.01576751284301281,0.002172602340579033,0.02438213676214218 +-90.0,0.0,0.0,73,0.016128018498420715,0.01668984442949295,0.003308572806417942,0.02630321867763996 +90.0,-180.0,180.0,73,0.016128018498420715,0.01668984442949295,0.003308572806417942,0.02630321867763996 +90.0,180.0,180.0,73,0.016128018498420715,0.01668984442949295,0.003308572806417942,0.02630321867763996 +-180.0,-90.0,-90.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +-135.0,-90.0,-135.0,73,0.016191162168979645,0.017698122188448906,0.00483046006411314,0.03110140562057495 +-90.0,-90.0,180.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +-45.0,-90.0,135.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +0.0,-90.0,90.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +45.0,-90.0,45.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +90.0,-90.0,0.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +135.0,-90.0,-45.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +180.0,-90.0,-90.0,73,0.016191162168979645,0.017698122188448906,0.004830459598451853,0.03110140562057495 +-90.0,-90.0,-180.0,73,0.01622752659022808,0.017697511240839958,0.004753635730594397,0.03110140562057495 +-45.0,-45.0,-135.0,73,0.016300974413752556,0.017233477905392647,0.0035270897205919027,0.028582772240042686 +135.0,-135.0,45.0,73,0.016300974413752556,0.017233477905392647,0.0035270897205919027,0.028582772240042686 +-180.0,-90.0,-180.0,73,0.016302818432450294,0.017277425155043602,0.003856700612232089,0.02972179651260376 +180.0,-90.0,-180.0,73,0.016302818432450294,0.017277425155043602,0.003856700612232089,0.02972179651260376 +-180.0,-90.0,180.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +-135.0,-90.0,135.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +-90.0,-90.0,90.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +-45.0,-90.0,45.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +0.0,-90.0,0.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +45.0,-90.0,-45.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +90.0,-90.0,-90.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +135.0,-90.0,-135.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +180.0,-90.0,180.0,73,0.01632319949567318,0.017277425155043602,0.003835211042314768,0.02972179651260376 +-135.0,0.0,135.0,73,0.016541503369808197,0.018116511404514313,0.004484031815081835,0.02791900746524334 +45.0,-180.0,-45.0,73,0.016541503369808197,0.018116511404514313,0.004484031815081835,0.02791900746524334 +45.0,180.0,-45.0,73,0.016541503369808197,0.018116511404514313,0.004484031815081835,0.02791900746524334 +135.0,-180.0,-180.0,73,0.016579056158661842,0.016660086810588837,0.0028393371030688286,0.021987656131386757 +135.0,180.0,-180.0,73,0.016583474352955818,0.016660088673233986,0.0028181765228509903,0.021987656131386757 +-45.0,0.0,0.0,73,0.016595657914876938,0.016660086810588837,0.002789650345221162,0.021987656131386757 +135.0,-180.0,180.0,73,0.016595657914876938,0.016660086810588837,0.002789650345221162,0.021987656131386757 +135.0,180.0,180.0,73,0.016595657914876938,0.016660086810588837,0.002789650345221162,0.021987656131386757 +-180.0,-45.0,135.0,73,0.016643483191728592,0.01725396141409874,0.0037966398522257805,0.03261817246675491 +0.0,-135.0,-45.0,73,0.016643483191728592,0.01725396141409874,0.0037966398522257805,0.03261817246675491 +180.0,-45.0,135.0,73,0.016643483191728592,0.01725396141409874,0.0037966398522257805,0.03261817246675491 +-180.0,0.0,90.0,73,0.016646912321448326,0.017774907872080803,0.004347096662968397,0.03038119524717331 +0.0,-180.0,-90.0,73,0.016646912321448326,0.017774907872080803,0.004347096662968397,0.03038119524717331 +0.0,180.0,-90.0,73,0.016646912321448326,0.017774907872080803,0.004347096662968397,0.03038119524717331 +180.0,0.0,90.0,73,0.016646912321448326,0.017774907872080803,0.004347096662968397,0.03038119524717331 +-180.0,0.0,45.0,73,0.016716396436095238,0.017762772738933563,0.004524029325693846,0.030201725661754608 +0.0,-180.0,-135.0,73,0.016716396436095238,0.017762772738933563,0.004524029325693846,0.030201725661754608 +0.0,180.0,-135.0,73,0.016716396436095238,0.017762772738933563,0.004524029325693846,0.030201725661754608 +180.0,0.0,45.0,73,0.016716396436095238,0.017762772738933563,0.004524029325693846,0.030201725661754608 +-90.0,-135.0,-135.0,73,0.016954075545072556,0.018333589658141136,0.004321585409343243,0.03153885528445244 +90.0,-45.0,45.0,73,0.016954075545072556,0.018333589658141136,0.004321585409343243,0.03153885528445244 +-45.0,-135.0,-45.0,73,0.01703459583222866,0.017684271559119225,0.0034415649715811014,0.032895542681217194 +135.0,-45.0,135.0,73,0.01703459583222866,0.017684271559119225,0.0034415649715811014,0.032895542681217194 +-135.0,-135.0,-135.0,73,0.01710512302815914,0.018132010474801064,0.004156879149377346,0.03010956197977066 +45.0,-45.0,45.0,73,0.01710512302815914,0.018132010474801064,0.004156879149377346,0.03010956197977066 +-45.0,-135.0,-135.0,73,0.017107434570789337,0.018137801438570023,0.004522258881479502,0.03449836000800133 +135.0,-45.0,45.0,73,0.017107434570789337,0.018137801438570023,0.004522258881479502,0.03449836000800133 +-180.0,-135.0,-135.0,73,0.017280081287026405,0.017899660393595695,0.003965539392083883,0.03104773536324501 +0.0,-45.0,45.0,73,0.017280081287026405,0.017899660393595695,0.003965539392083883,0.03104773536324501 +180.0,-135.0,-135.0,73,0.017280081287026405,0.017899660393595695,0.003965539392083883,0.03104773536324501 +-45.0,45.0,135.0,73,0.01731373555958271,0.01802384853363037,0.0040818070992827415,0.022534362971782684 +135.0,135.0,-45.0,73,0.01731373555958271,0.01802384853363037,0.0040818070992827415,0.022534362971782684 +-135.0,-45.0,0.0,73,0.017319848760962486,0.017845148220658302,0.003861840348690748,0.03467533737421036 +45.0,-135.0,180.0,73,0.017319848760962486,0.017845148220658302,0.003861840348690748,0.03467533737421036 +45.0,-135.0,-180.0,73,0.01732434518635273,0.017856314778327942,0.0038556254003196955,0.03467533737421036 +-135.0,45.0,45.0,73,0.017331771552562714,0.01832500472664833,0.0046732923947274685,0.023015523329377174 +45.0,135.0,-135.0,73,0.017331771552562714,0.01832500472664833,0.0046732923947274685,0.023015523329377174 +-90.0,45.0,135.0,73,0.017336763441562653,0.018062813207507133,0.004221134353429079,0.02088228240609169 +90.0,135.0,-45.0,73,0.017336763441562653,0.018062813207507133,0.004221134353429079,0.02088228240609169 +-180.0,-135.0,45.0,73,0.017491042613983154,0.01735995151102543,0.003036170033738017,0.027404265478253365 +0.0,-45.0,-135.0,73,0.017491042613983154,0.01735995151102543,0.003036170033738017,0.027404265478253365 +180.0,-135.0,45.0,73,0.017491042613983154,0.01735995151102543,0.003036170033738017,0.027404265478253365 +-45.0,-45.0,180.0,73,0.017663439735770226,0.01854952611029148,0.004262987524271011,0.03229178115725517 +135.0,-135.0,0.0,73,0.017663439735770226,0.01854952611029148,0.004262987524271011,0.03229178115725517 +-90.0,45.0,45.0,73,0.01775602623820305,0.018216893076896667,0.003914174623787403,0.023410353809595108 +90.0,135.0,-135.0,73,0.01775602623820305,0.018216893076896667,0.003914174623787403,0.023410353809595108 +-45.0,-45.0,-180.0,73,0.01775718480348587,0.018549861386418343,0.004079937003552914,0.03229178115725517 +-135.0,-180.0,-90.0,73,0.017769383266568184,0.018961681053042412,0.004044125322252512,0.027225429192185402 +-135.0,180.0,-90.0,73,0.017769383266568184,0.018961681053042412,0.004044125322252512,0.027225429192185402 +45.0,0.0,90.0,73,0.017769383266568184,0.018961681053042412,0.004044125322252512,0.027225429192185402 +-45.0,45.0,90.0,73,0.017778852954506874,0.01861570216715336,0.003909760620445013,0.024295279756188393 +135.0,135.0,-90.0,73,0.017778852954506874,0.01861570216715336,0.003909760620445013,0.024295279756188393 +-135.0,45.0,90.0,73,0.0178077295422554,0.019212083891034126,0.005027055740356445,0.022450320422649384 +45.0,135.0,-90.0,73,0.0178077295422554,0.019212083891034126,0.005027055740356445,0.022450320422649384 +-180.0,-90.0,-45.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +-135.0,-90.0,-90.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +-90.0,-90.0,-135.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +-45.0,-90.0,180.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +0.0,-90.0,135.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +45.0,-90.0,90.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +90.0,-90.0,45.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +135.0,-90.0,0.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +180.0,-90.0,-45.0,73,0.01788492128252983,0.01963614672422409,0.0043168384581804276,0.033741552382707596 +-45.0,-90.0,-180.0,73,0.01795884594321251,0.01963614672422409,0.004161754623055458,0.033741552382707596 +-135.0,-45.0,135.0,73,0.01798126846551895,0.01875152811408043,0.003466007998213172,0.03322431817650795 +45.0,-135.0,-45.0,73,0.01798126846551895,0.01875152811408043,0.003466007998213172,0.03322431817650795 +-45.0,-45.0,0.0,73,0.017986753955483437,0.0183778777718544,0.003145939437672496,0.03009478934109211 +135.0,-135.0,180.0,73,0.017986753955483437,0.0183778777718544,0.003145939437672496,0.03009478934109211 +135.0,-135.0,-180.0,73,0.018012123182415962,0.018378019332885742,0.003129831049591303,0.03009478934109211 +-90.0,-135.0,-90.0,73,0.01801895536482334,0.018886694684624672,0.0040355706587433815,0.03532744571566582 +90.0,-45.0,90.0,73,0.01801895536482334,0.018886694684624672,0.0040355706587433815,0.03532744571566582 +0.0,-90.0,-180.0,73,0.018097279593348503,0.01892010122537613,0.0033060263376682997,0.03581024706363678 +-180.0,-90.0,0.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +-135.0,-90.0,-45.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +-90.0,-90.0,-90.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +-45.0,-90.0,-135.0,73,0.018114207312464714,0.01892009936273098,0.0032683105673640966,0.03581024706363678 +0.0,-90.0,180.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +45.0,-90.0,135.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +90.0,-90.0,90.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +135.0,-90.0,45.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +180.0,-90.0,0.0,73,0.018114207312464714,0.01892009936273098,0.003268310334533453,0.03581024706363678 +-135.0,-180.0,-45.0,73,0.018204525113105774,0.018762147054076195,0.003090950660407543,0.027212919667363167 +-135.0,180.0,-45.0,73,0.018204525113105774,0.018762147054076195,0.003090950660407543,0.027212919667363167 +45.0,0.0,135.0,73,0.018204525113105774,0.018762147054076195,0.003090950660407543,0.027212919667363167 +-90.0,-45.0,135.0,73,0.018243081867694855,0.019578592851758003,0.004343332722783089,0.034358903765678406 +90.0,-135.0,-45.0,73,0.018243081867694855,0.019578592851758003,0.004343332722783089,0.034358903765678406 +-90.0,-45.0,-45.0,73,0.018297040835022926,0.018545979633927345,0.003343809861689806,0.02963170036673546 +90.0,-135.0,135.0,73,0.018297040835022926,0.018545979633927345,0.003343809861689806,0.02963170036673546 +-45.0,-135.0,-90.0,73,0.01841103844344616,0.019121980294585228,0.003922527655959129,0.03638194128870964 +135.0,-45.0,90.0,73,0.01841103844344616,0.019121980294585228,0.003922527655959129,0.03638194128870964 +-135.0,0.0,90.0,73,0.018510472029447556,0.019535770639777184,0.004567919764667749,0.033722732216119766 +45.0,-180.0,-90.0,73,0.018510472029447556,0.019535770639777184,0.004567919764667749,0.033722732216119766 +45.0,180.0,-90.0,73,0.018510472029447556,0.019535770639777184,0.004567919764667749,0.033722732216119766 +-90.0,-135.0,-45.0,73,0.01851487159729004,0.01901022158563137,0.003041286952793598,0.03389394283294678 +90.0,-45.0,135.0,73,0.01851487159729004,0.01901022158563137,0.003041286952793598,0.03389394283294678 +0.0,0.0,-180.0,73,0.018571576103568077,0.01860876940190792,0.0026822618674486876,0.02439502812922001 +-180.0,-180.0,-135.0,73,0.018645213916897774,0.018444985151290894,0.0032730959355831146,0.024999937042593956 +-180.0,180.0,-135.0,73,0.018645213916897774,0.018444985151290894,0.0032730959355831146,0.024999937042593956 +0.0,0.0,45.0,73,0.018645213916897774,0.018444985151290894,0.0032730961684137583,0.024999937042593956 +180.0,-180.0,-135.0,73,0.018645213916897774,0.018444985151290894,0.0032730961684137583,0.024999937042593956 +180.0,180.0,-135.0,73,0.018645213916897774,0.018444985151290894,0.0032730959355831146,0.024999937042593956 +-180.0,-45.0,45.0,73,0.0186754260212183,0.019476860761642456,0.0042756241746246815,0.03725442662835121 +0.0,-135.0,-135.0,73,0.0186754260212183,0.019476860761642456,0.0042756241746246815,0.03725442662835121 +180.0,-45.0,45.0,73,0.0186754260212183,0.019476860761642456,0.0042756241746246815,0.03725442662835121 +-180.0,-180.0,0.0,73,0.01873776875436306,0.018664458766579628,0.002477361122146249,0.02439502812922001 +-180.0,180.0,0.0,73,0.01873776875436306,0.018664458766579628,0.002477361122146249,0.02439502812922001 +0.0,0.0,180.0,73,0.01873776875436306,0.018664458766579628,0.002477361122146249,0.02439502812922001 +180.0,-180.0,0.0,73,0.01873776875436306,0.018664458766579628,0.002477361122146249,0.02439502812922001 +180.0,180.0,0.0,73,0.01873776875436306,0.018664458766579628,0.002477361122146249,0.02439502812922001 +-45.0,-45.0,135.0,73,0.018862012773752213,0.020025642588734627,0.004409566521644592,0.03535730764269829 +135.0,-135.0,-45.0,73,0.018862012773752213,0.020025642588734627,0.004409566521644592,0.03535730764269829 +-135.0,0.0,45.0,73,0.018881935626268387,0.01935740001499653,0.004091789945960045,0.03346429765224457 +45.0,-180.0,-135.0,73,0.018881935626268387,0.01935740001499653,0.004091789945960045,0.03346429765224457 +45.0,180.0,-135.0,73,0.018881935626268387,0.01935740001499653,0.004091789945960045,0.03346429765224457 +-180.0,-45.0,90.0,73,0.018904948607087135,0.01936703361570835,0.0037449412047863007,0.037319768220186234 +0.0,-135.0,-90.0,73,0.018904948607087135,0.01936703361570835,0.0037449412047863007,0.037319768220186234 +180.0,-45.0,90.0,73,0.018904948607087135,0.01936703361570835,0.0037449412047863007,0.037319768220186234 +-135.0,-135.0,0.0,73,0.01895410567522049,0.019152559340000153,0.002217330737039447,0.03072408400475979 +45.0,-45.0,180.0,73,0.01895410567522049,0.019152559340000153,0.002217330737039447,0.03072408400475979 +45.0,-45.0,-180.0,73,0.018958136439323425,0.019152559340000153,0.0022086966782808304,0.03072408400475979 +-180.0,-90.0,90.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +-135.0,-90.0,45.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +-90.0,-90.0,0.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +-45.0,-90.0,-45.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +0.0,-90.0,-90.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +45.0,-90.0,-135.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +90.0,-90.0,180.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +135.0,-90.0,135.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +180.0,-90.0,90.0,73,0.018967244774103165,0.01880214922130108,0.002254586201161146,0.03443064168095589 +90.0,-90.0,-180.0,73,0.01906607113778591,0.018802162259817123,0.002145885955542326,0.03443064168095589 +45.0,-90.0,-180.0,73,0.01910494640469551,0.01948464848101139,0.0030211706180125475,0.03609567880630493 +-180.0,-90.0,135.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +-135.0,-90.0,90.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +-90.0,-90.0,45.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +-45.0,-90.0,0.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +0.0,-90.0,-45.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +45.0,-90.0,-90.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +90.0,-90.0,-135.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +135.0,-90.0,180.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +180.0,-90.0,135.0,73,0.01910495012998581,0.01877795346081257,0.0031546589452773333,0.031790491193532944 +-180.0,-90.0,45.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +-135.0,-90.0,0.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +-90.0,-90.0,-45.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +-45.0,-90.0,-90.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +0.0,-90.0,-135.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +45.0,-90.0,180.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +90.0,-90.0,135.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +135.0,-90.0,90.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +180.0,-90.0,45.0,73,0.01911248080432415,0.019484655931591988,0.0030059299897402525,0.03609567880630493 +135.0,-90.0,-180.0,73,0.019205596297979355,0.018778249621391296,0.0030571746174246073,0.031790491193532944 +-180.0,-135.0,-90.0,73,0.019366711378097534,0.02028469182550907,0.0041480520740151405,0.03504577651619911 +0.0,-45.0,90.0,73,0.019366711378097534,0.02028469182550907,0.0041480520740151405,0.03504577651619911 +180.0,-135.0,-90.0,73,0.019366711378097534,0.02028469182550907,0.0041480520740151405,0.03504577651619911 +-135.0,-135.0,-45.0,73,0.01940014772117138,0.019852202385663986,0.0030189761891961098,0.03502853214740753 +45.0,-45.0,135.0,73,0.01940014772117138,0.019852202385663986,0.0030189761891961098,0.03502853214740753 +-45.0,-45.0,45.0,73,0.019425012171268463,0.019950279965996742,0.0034419207368046045,0.033803801983594894 +135.0,-135.0,-135.0,73,0.019425012171268463,0.019950279965996742,0.0034419207368046045,0.033803801983594894 +-135.0,-45.0,90.0,73,0.019454611465334892,0.019720759242773056,0.0038164518773555756,0.03759155794978142 +45.0,-135.0,-90.0,73,0.019454611465334892,0.019720759242773056,0.0038164518773555756,0.03759155794978142 +-90.0,0.0,135.0,73,0.019494198262691498,0.02104809693992138,0.003945016767829657,0.030815687030553818 +90.0,-180.0,-45.0,73,0.019494198262691498,0.02104809693992138,0.003945016767829657,0.030815687030553818 +90.0,180.0,-45.0,73,0.019494198262691498,0.02104809693992138,0.003945016767829657,0.030815687030553818 +-90.0,45.0,90.0,73,0.019521094858646393,0.02053125388920307,0.005026636179536581,0.0251906905323267 +90.0,135.0,-90.0,73,0.019521094858646393,0.02053125388920307,0.005026636179536581,0.0251906905323267 +-45.0,-45.0,90.0,73,0.019567208364605904,0.020151490345597267,0.00400845380499959,0.035983607172966 +135.0,-135.0,-90.0,73,0.019567208364605904,0.020151490345597267,0.00400845380499959,0.035983607172966 +-135.0,-45.0,45.0,73,0.02004888281226158,0.0198629479855299,0.00322732119821012,0.038192588835954666 +45.0,-135.0,-135.0,73,0.02004888281226158,0.0198629479855299,0.00322732119821012,0.038192588835954666 +-135.0,-135.0,-90.0,73,0.020065559074282646,0.02071133442223072,0.002970120869576931,0.03477398306131363 +45.0,-45.0,90.0,73,0.020065559074282646,0.02071133442223072,0.002970120869576931,0.03477398306131363 +-180.0,-135.0,0.0,73,0.020263351500034332,0.0207360852509737,0.0032948763109743595,0.032469455152750015 +0.0,-45.0,180.0,73,0.020263351500034332,0.0207360852509737,0.0032948763109743595,0.032469455152750015 +180.0,-135.0,0.0,73,0.020263351500034332,0.0207360852509737,0.0032948763109743595,0.032469455152750015 +0.0,-45.0,-180.0,73,0.020280413329601288,0.020736297592520714,0.0032682849559932947,0.032469455152750015 +90.0,-135.0,-180.0,73,0.020411117002367973,0.020931387320160866,0.003306702245026827,0.03369547054171562 +-90.0,-45.0,0.0,73,0.020565040409564972,0.020931385457515717,0.003058390459045768,0.03369547054171562 +90.0,-135.0,180.0,73,0.020565040409564972,0.020931385457515717,0.003058390459045768,0.03369547054171562 +-180.0,-135.0,-45.0,73,0.02069809101521969,0.021953364834189415,0.0038428008556365967,0.03563467413187027 +0.0,-45.0,135.0,73,0.02069809101521969,0.021953364834189415,0.0038428008556365967,0.03563467413187027 +180.0,-135.0,-45.0,73,0.02069809101521969,0.021953364834189415,0.0038428008556365967,0.03563467413187027 +-90.0,0.0,90.0,73,0.021028580144047737,0.022041596472263336,0.00425291620194912,0.03516125679016113 +90.0,-180.0,-90.0,73,0.021028580144047737,0.022041596472263336,0.00425291620194912,0.03516125679016113 +90.0,180.0,-90.0,73,0.021028580144047737,0.022041596472263336,0.00425291620194912,0.03516125679016113 +-90.0,0.0,45.0,73,0.02113465406000614,0.021770576015114784,0.0037904204800724983,0.03329213336110115 +90.0,-180.0,-135.0,73,0.02113465406000614,0.021770576015114784,0.0037904204800724983,0.03329213336110115 +90.0,180.0,-135.0,73,0.02113465406000614,0.021770576015114784,0.0037904204800724983,0.03329213336110115 +-45.0,0.0,45.0,73,0.02147170528769493,0.021424347534775734,0.0030419928953051567,0.02978607639670372 +135.0,-180.0,-135.0,73,0.02147170528769493,0.021424347534775734,0.0030419928953051567,0.02978607639670372 +135.0,180.0,-135.0,73,0.02147170528769493,0.021424347534775734,0.0030419928953051567,0.02978607639670372 +-180.0,-180.0,-90.0,73,0.021502729505300522,0.02152489311993122,0.0027197618037462234,0.030566969886422157 +-180.0,180.0,-90.0,73,0.021502729505300522,0.02152489311993122,0.0027197618037462234,0.030566969886422157 +0.0,0.0,90.0,73,0.021502729505300522,0.02152489311993122,0.0027197618037462234,0.030566969886422157 +180.0,-180.0,-90.0,73,0.021502729505300522,0.02152489311993122,0.0027197618037462234,0.030566969886422157 +180.0,180.0,-90.0,73,0.021502729505300522,0.02152489311993122,0.0027197618037462234,0.030566969886422157 +-45.0,0.0,135.0,73,0.021545562893152237,0.021839505061507225,0.0032247519120573997,0.031808722764253616 +135.0,-180.0,-45.0,73,0.021545562893152237,0.021839505061507225,0.0032247519120573997,0.031808722764253616 +135.0,180.0,-45.0,73,0.021545562893152237,0.021839505061507225,0.0032247519120573997,0.031808722764253616 +-90.0,-45.0,45.0,73,0.021784119307994843,0.02141604758799076,0.003011372173205018,0.03676329553127289 +90.0,-135.0,-135.0,73,0.021784119307994843,0.02141604758799076,0.0030113724060356617,0.03676329553127289 +-90.0,-45.0,90.0,73,0.021858002990484238,0.022729577496647835,0.0029813828878104687,0.03703810274600983 +90.0,-135.0,-90.0,73,0.021858002990484238,0.022729577496647835,0.0029813828878104687,0.03703810274600983 +-180.0,-180.0,-45.0,73,0.022094937041401863,0.0222184956073761,0.002520705573260784,0.030316408723592758 +-180.0,180.0,-45.0,73,0.022094937041401863,0.0222184956073761,0.002520705573260784,0.030316408723592758 +0.0,0.0,135.0,73,0.022094937041401863,0.0222184956073761,0.002520705573260784,0.030316408723592758 +180.0,-180.0,-45.0,73,0.022094937041401863,0.0222184956073761,0.002520705573260784,0.030316408723592758 +180.0,180.0,-45.0,73,0.022094937041401863,0.0222184956073761,0.002520705573260784,0.030316408723592758 +-45.0,0.0,90.0,73,0.023334123194217682,0.023533860221505165,0.0025735865347087383,0.03385410085320473 +135.0,-180.0,-90.0,73,0.023334123194217682,0.023533860221505165,0.0025735865347087383,0.03385410085320473 +135.0,180.0,-90.0,73,0.023334123194217682,0.023533860221505165,0.0025735865347087383,0.03385410085320473 diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__combined_opt.png new file mode 100644 index 000000000..d2d798737 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..676ff0ae3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__loss.png new file mode 100644 index 000000000..c63b6025b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__openxr26_rot.png new file mode 100644 index 000000000..d2b835594 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best00__x-180_y-90_z+180__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__combined_opt.png new file mode 100644 index 000000000..b27d2dc38 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..73ab37880 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__loss.png new file mode 100644 index 000000000..6c71809b4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__openxr26_rot.png new file mode 100644 index 000000000..0c6929ac9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best01__x-135_y-90_z+135__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__combined_opt.png new file mode 100644 index 000000000..7711332b0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..a1e497601 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__loss.png new file mode 100644 index 000000000..56bd91ed5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__openxr26_rot.png new file mode 100644 index 000000000..bc7dbe0a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best02__x-90_y-90_z+90__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__combined_opt.png new file mode 100644 index 000000000..49927e0be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..f9be4f735 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__loss.png new file mode 100644 index 000000000..1da7711c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__openxr26_rot.png new file mode 100644 index 000000000..3014f83a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best03__x-45_y-90_z+45__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__combined_opt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__combined_opt.png new file mode 100644 index 000000000..78b1b8d2f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__combined_opt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__human_openpose21_preopt.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__human_openpose21_preopt.png new file mode 100644 index 000000000..5342c4fb5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__human_openpose21_preopt.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__loss.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__loss.png new file mode 100644 index 000000000..d5bb24566 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__loss.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__openxr26_rot.png b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__openxr26_rot.png new file mode 100644 index 000000000..c98ecefd9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__best04__x+0_y-90_z+0__t0000__openxr26_rot.png differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__rot_grid_search_multiframe.csv b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__rot_grid_search_multiframe.csv new file mode 100644 index 000000000..26c2b483e --- /dev/null +++ b/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/rot_grid_search_multi_right/openxr26_joints_right__right__rot_grid_search_multiframe.csv @@ -0,0 +1,730 @@ +x_deg,y_deg,z_deg,n_frames,mean_opt_loss,median_opt_loss,std_opt_loss,mean_init_loss +-180.0,-90.0,180.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +-135.0,-90.0,135.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +-90.0,-90.0,90.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +-45.0,-90.0,45.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +0.0,-90.0,0.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +45.0,-90.0,-45.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +90.0,-90.0,-90.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +135.0,-90.0,-135.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +180.0,-90.0,180.0,73,0.0013219660613685846,0.0009048827923834324,0.0011342689394950867,0.0030795345082879066 +-180.0,-90.0,-180.0,73,0.0013399674789980054,0.0009048809297382832,0.0011768388794735074,0.0030795345082879066 +180.0,-90.0,-180.0,73,0.0013399674789980054,0.0009048809297382832,0.0011768388794735074,0.0030795345082879066 +-180.0,-45.0,135.0,73,0.001659769332036376,0.0012426351895555854,0.0010451319394633174,0.00380342872813344 +0.0,-135.0,-45.0,73,0.001659769332036376,0.0012426351895555854,0.0010451319394633174,0.00380342872813344 +180.0,-45.0,135.0,73,0.001659769332036376,0.0012426351895555854,0.0010451319394633174,0.00380342872813344 +-45.0,-135.0,-45.0,73,0.0019137071212753654,0.001611226238310337,0.0010301930597051978,0.004939963575452566 +135.0,-45.0,135.0,73,0.0019137071212753654,0.001611226238310337,0.0010301930597051978,0.004939963575452566 +-90.0,-45.0,90.0,73,0.0021934607066214085,0.002077332464978099,0.0006957259029150009,0.004674950614571571 +90.0,-135.0,-90.0,73,0.0021934607066214085,0.002077332464978099,0.0006957259029150009,0.004674950614571571 +-180.0,-90.0,135.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +-135.0,-90.0,90.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +-90.0,-90.0,45.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +-45.0,-90.0,0.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +0.0,-90.0,-45.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +45.0,-90.0,-90.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +90.0,-90.0,-135.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +135.0,-90.0,180.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +180.0,-90.0,135.0,73,0.0023353633005172014,0.0021950658410787582,0.0009934556437656283,0.0055529531091451645 +-135.0,-90.0,-180.0,73,0.0023789082188159227,0.0021674761082977057,0.0008761394419707358,0.003716487204656005 +-180.0,-135.0,-135.0,73,0.002383639570325613,0.00214293017052114,0.001196086872369051,0.00320124882273376 +0.0,-45.0,45.0,73,0.002383639570325613,0.00214293017052114,0.0011960867559537292,0.00320124882273376 +180.0,-135.0,-135.0,73,0.002383639570325613,0.00214293017052114,0.001196086872369051,0.00320124882273376 +-180.0,-90.0,-135.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +-135.0,-90.0,180.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +-90.0,-90.0,135.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +-45.0,-90.0,90.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +0.0,-90.0,45.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +45.0,-90.0,0.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +90.0,-90.0,-45.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +135.0,-90.0,-90.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +180.0,-90.0,-135.0,73,0.0023953712079674006,0.0021674761082977057,0.0008985060267150402,0.003716487204656005 +135.0,-90.0,-180.0,73,0.0024354716297239065,0.0022803025785833597,0.0011615474941208959,0.0055529531091451645 +-135.0,-45.0,90.0,73,0.002459942130371928,0.0024036457762122154,0.0007406885852105916,0.0053081028163433075 +45.0,-135.0,-90.0,73,0.002459942130371928,0.0024036457762122154,0.0007406885852105916,0.0053081028163433075 +-45.0,-45.0,90.0,73,0.0027118090074509382,0.0027455731760710478,0.0006300887907855213,0.004335928708314896 +135.0,-135.0,-90.0,73,0.0027118090074509382,0.0027455731760710478,0.0006300887907855213,0.004335928708314896 +-135.0,-45.0,135.0,73,0.0027216498274356127,0.002479907823726535,0.0011330486740916967,0.004511086270213127 +45.0,-135.0,-45.0,73,0.0027216498274356127,0.002479907823726535,0.0011330486740916967,0.004511086270213127 +-135.0,-135.0,-135.0,73,0.0027753182221204042,0.00238988921046257,0.0013949410058557987,0.0032239467836916447 +45.0,-45.0,45.0,73,0.0027753182221204042,0.00238988921046257,0.0013949410058557987,0.0032239467836916447 +-90.0,-135.0,-90.0,73,0.003154205624014139,0.002936386503279209,0.0009688832797110081,0.005679171998053789 +90.0,-45.0,90.0,73,0.003154205624014139,0.002936386503279209,0.0009688832797110081,0.005679171998053789 +-45.0,-135.0,-90.0,73,0.0031648268923163414,0.003196688601747155,0.000660620687995106,0.006018194369971752 +135.0,-45.0,90.0,73,0.0031648268923163414,0.003196688601747155,0.000660620687995106,0.006018194369971752 +-180.0,-45.0,90.0,73,0.0031941269990056753,0.003333988832309842,0.0008433937910012901,0.005864492617547512 +0.0,-135.0,-90.0,73,0.0031941269990056753,0.003333988832309842,0.0008433937910012901,0.005864492617547512 +180.0,-45.0,90.0,73,0.0031941269990056753,0.003333988832309842,0.0008433937910012901,0.005864492617547512 +-45.0,-135.0,0.0,73,0.003328154096379876,0.0025843605399131775,0.0019956869073212147,0.00631720433011651 +135.0,-45.0,180.0,73,0.003328154096379876,0.0025843605399131775,0.0019956869073212147,0.00631720433011651 +135.0,-45.0,-180.0,73,0.0033355180639773607,0.0025843598414212465,0.0019989765714854,0.00631720433011651 +-90.0,-135.0,-45.0,73,0.0034817983396351337,0.0033388559240847826,0.001030729035846889,0.007254923693835735 +90.0,-45.0,135.0,73,0.0034817983396351337,0.0033388559240847826,0.001030729035846889,0.007254923693835735 +-45.0,-45.0,45.0,73,0.0036095045506954193,0.003407306969165802,0.0011770215351134539,0.005538051016628742 +135.0,-135.0,-135.0,73,0.0036095045506954193,0.003407306969165802,0.001177021418698132,0.005538051016628742 +-135.0,-135.0,-90.0,73,0.003858560463413596,0.0037207985296845436,0.0009956390131264925,0.005046019796282053 +45.0,-45.0,90.0,73,0.003858560463413596,0.0037207985296845436,0.0009956390131264925,0.005046019796282053 +-180.0,-135.0,-90.0,73,0.0038769228849560022,0.003968423698097467,0.0009168985998257995,0.004489630460739136 +0.0,-45.0,90.0,73,0.0038769228849560022,0.003968423698097467,0.0009168985998257995,0.004489630460739136 +180.0,-135.0,-90.0,73,0.0038769228849560022,0.003968423698097467,0.0009168985998257995,0.004489630460739136 +-90.0,-135.0,-135.0,73,0.003941707778722048,0.003588718129321933,0.0015390996122732759,0.005592848174273968 +90.0,-45.0,45.0,73,0.003941707778722048,0.003588718129321933,0.0015390997286885977,0.005592848174273968 +-90.0,-180.0,-90.0,73,0.0039743222296237946,0.003681153990328312,0.001570122316479683,0.006358511745929718 +-90.0,180.0,-90.0,73,0.0039743222296237946,0.003681153990328312,0.001570122316479683,0.006358511745929718 +90.0,0.0,90.0,73,0.0039743222296237946,0.003681153990328312,0.001570122316479683,0.006358511745929718 +-135.0,-135.0,-180.0,73,0.004122703801840544,0.0034699703101068735,0.002306526992470026,0.004993364214897156 +-45.0,-180.0,-90.0,73,0.004157392308115959,0.004063216503709555,0.001343742711469531,0.007233887445181608 +-45.0,180.0,-90.0,73,0.004157392308115959,0.004063216503709555,0.001343742711469531,0.007233887445181608 +135.0,0.0,90.0,73,0.004157392308115959,0.004063216503709555,0.001343742711469531,0.007233887445181608 +-135.0,-135.0,180.0,73,0.004224093165248632,0.00367306568659842,0.0023312047123908997,0.004993364214897156 +45.0,-45.0,0.0,73,0.004224093165248632,0.00367306568659842,0.0023312047123908997,0.004993364214897156 +-45.0,-180.0,-45.0,73,0.004621494561433792,0.0039503308944404125,0.0020935290958732367,0.00814943015575409 +-45.0,180.0,-45.0,73,0.004621494561433792,0.0039503308944404125,0.0020935290958732367,0.00814943015575409 +135.0,0.0,135.0,73,0.004621494561433792,0.0039503308944404125,0.0020935290958732367,0.00814943015575409 +-90.0,-135.0,0.0,73,0.004642522893846035,0.0040283952839672565,0.001762906089425087,0.0093970512971282 +90.0,-45.0,180.0,73,0.004642522893846035,0.0040283952839672565,0.001762906089425087,0.0093970512971282 +90.0,-45.0,-180.0,73,0.0046484386548399925,0.004040285479277372,0.001770967268384993,0.0093970512971282 +-180.0,-90.0,-90.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +-135.0,-90.0,-135.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +-90.0,-90.0,180.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +-45.0,-90.0,135.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +0.0,-90.0,90.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +45.0,-90.0,45.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +90.0,-90.0,0.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +135.0,-90.0,-45.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +180.0,-90.0,-90.0,73,0.004765717312693596,0.004740617703646421,0.0011905697174370289,0.007090694271028042 +-90.0,-90.0,-180.0,73,0.004797943402081728,0.004782389383763075,0.001168315066024661,0.007090694271028042 +-180.0,0.0,135.0,73,0.004806288983672857,0.004308940377086401,0.002054551849141717,0.009411472827196121 +0.0,-180.0,-45.0,73,0.004806288983672857,0.004308940377086401,0.002054551849141717,0.009411472827196121 +0.0,180.0,-45.0,73,0.004806288983672857,0.004308940377086401,0.002054551849141717,0.009411472827196121 +180.0,0.0,135.0,73,0.004806288983672857,0.004308940377086401,0.002054551849141717,0.009411472827196121 +-90.0,-135.0,-180.0,73,0.004863352049142122,0.003967152442783117,0.0025270162150263786,0.007046522572636604 +-180.0,-90.0,90.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +-135.0,-90.0,45.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +-90.0,-90.0,0.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +-45.0,-90.0,-45.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +0.0,-90.0,-90.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +45.0,-90.0,-135.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +90.0,-90.0,180.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +135.0,-90.0,135.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +180.0,-90.0,90.0,73,0.0049429237842559814,0.004963027313351631,0.0011964751174673438,0.009687847457826138 +-90.0,-135.0,180.0,73,0.004994682036340237,0.004307636525481939,0.002465942408889532,0.007046522572636604 +90.0,-45.0,0.0,73,0.004994682036340237,0.004307636525481939,0.002465942408889532,0.007046522572636604 +90.0,-90.0,-180.0,73,0.005015001632273197,0.00498113501816988,0.0012137378798797727,0.009687847457826138 +-180.0,-45.0,-180.0,73,0.005030856933444738,0.004350123926997185,0.0021635761950165033,0.0062812380492687225 +180.0,-45.0,-180.0,73,0.005030856933444738,0.004350123926997185,0.0021635761950165033,0.0062812380492687225 +-180.0,-45.0,180.0,73,0.005040222778916359,0.0044014970771968365,0.002172206761315465,0.0062812380492687225 +0.0,-135.0,0.0,73,0.005040222778916359,0.0044014970771968365,0.002172206761315465,0.0062812380492687225 +180.0,-45.0,180.0,73,0.005040222778916359,0.0044014970771968365,0.002172206761315465,0.0062812380492687225 +-180.0,0.0,90.0,73,0.00504700280725956,0.005326304119080305,0.0015141972107812762,0.010015065781772137 +0.0,-180.0,-90.0,73,0.00504700280725956,0.005326304119080305,0.0015141972107812762,0.010015065781772137 +0.0,180.0,-90.0,73,0.00504700280725956,0.005326304119080305,0.0015141972107812762,0.010015065781772137 +180.0,0.0,90.0,73,0.00504700280725956,0.005326304119080305,0.0015141972107812762,0.010015065781772137 +-90.0,-45.0,135.0,73,0.005107556935399771,0.005357938352972269,0.001441211556084454,0.006648399867117405 +90.0,-135.0,-45.0,73,0.005107556935399771,0.005357938352972269,0.001441211556084454,0.006648399867117405 +-90.0,-135.0,135.0,73,0.005187875125557184,0.003951577469706535,0.0030886942986398935,0.009188649244606495 +90.0,-45.0,-45.0,73,0.005187875125557184,0.003951577469706535,0.0030886942986398935,0.009188649244606495 +-90.0,-135.0,90.0,73,0.0052063921466469765,0.003941127564758062,0.0030412536580115557,0.010764402337372303 +90.0,-45.0,-90.0,73,0.0052063921466469765,0.003941127564758062,0.0030412536580115557,0.010764402337372303 +-90.0,-135.0,45.0,73,0.005300086457282305,0.00439656525850296,0.0023867059499025345,0.010850724764168262 +90.0,-45.0,-135.0,73,0.005300086457282305,0.00439656525850296,0.0023867059499025345,0.010850724764168262 +-135.0,-180.0,-135.0,73,0.005379008129239082,0.004928089212626219,0.0026198807172477245,0.0075590829364955425 +-135.0,180.0,-135.0,73,0.005379008129239082,0.004928089212626219,0.0026198807172477245,0.0075590829364955425 +45.0,0.0,45.0,73,0.005379008129239082,0.004928089212626219,0.0026198807172477245,0.0075590829364955425 +-135.0,-180.0,-90.0,73,0.005392693914473057,0.005167826544493437,0.001748297712765634,0.007901720702648163 +-135.0,180.0,-90.0,73,0.005392693914473057,0.005167826544493437,0.001748297712765634,0.007901720702648163 +45.0,0.0,90.0,73,0.005392693914473057,0.005167826544493437,0.001748297712765634,0.007901720702648163 +-90.0,-45.0,45.0,73,0.00566078582778573,0.005839849356561899,0.0014045106945559382,0.008865485899150372 +90.0,-135.0,-135.0,73,0.00566078582778573,0.005839849356561899,0.0014045106945559382,0.008865485899150372 +-45.0,-135.0,45.0,73,0.0057446700520813465,0.004930329974740744,0.0027198789175599813,0.00934314914047718 +135.0,-45.0,-135.0,73,0.0057446700520813465,0.004930329974740744,0.0027198789175599813,0.00934314914047718 +-180.0,-135.0,180.0,73,0.0058642965741455555,0.005484342109411955,0.0019904766231775284,0.006989466957747936 +0.0,-45.0,0.0,73,0.0058642965741455555,0.005484342109411955,0.0019904766231775284,0.006989466957747936 +180.0,-135.0,180.0,73,0.0058642965741455555,0.005484342109411955,0.0019904766231775284,0.006989466957747936 +-180.0,-135.0,-180.0,73,0.005918699782341719,0.005484336521476507,0.0020175122190266848,0.006989466957747936 +180.0,-135.0,-180.0,73,0.005918699782341719,0.005484336521476507,0.0020175122190266848,0.006989466957747936 +-135.0,-135.0,135.0,73,0.006072986871004105,0.0050757164135575294,0.002548443851992488,0.009317771531641483 +45.0,-45.0,-45.0,73,0.006072986871004105,0.0050757164135575294,0.002548443851992488,0.009317771531641483 +-45.0,-135.0,-135.0,73,0.0061058830469846725,0.00620592525228858,0.00155926204752177,0.008920283988118172 +135.0,-45.0,45.0,73,0.0061058830469846725,0.00620592525228858,0.0015592619311064482,0.008920283988118172 +-180.0,-180.0,-135.0,73,0.006190258543938398,0.006082845386117697,0.002274465514346957,0.0106025580316782 +-180.0,180.0,-135.0,73,0.006190258543938398,0.006082845386117697,0.002274465514346957,0.0106025580316782 +0.0,0.0,45.0,73,0.006190258543938398,0.006082845386117697,0.002274465514346957,0.0106025580316782 +180.0,-180.0,-135.0,73,0.006190258543938398,0.006082845386117697,0.002274465514346957,0.0106025580316782 +180.0,180.0,-135.0,73,0.006190258543938398,0.006082845386117697,0.002274465514346957,0.0106025580316782 +-135.0,-135.0,-45.0,73,0.006198986899107695,0.006110008805990219,0.0011704100761562586,0.009392237290740013 +45.0,-45.0,135.0,73,0.006198986899107695,0.006110008805990219,0.0011704100761562586,0.009392237290740013 +-180.0,-180.0,-90.0,73,0.0064447373151779175,0.006599950138479471,0.0016860084142535925,0.010959524661302567 +-180.0,180.0,-90.0,73,0.0064447373151779175,0.006599950138479471,0.0016860084142535925,0.010959524661302567 +0.0,0.0,90.0,73,0.0064447373151779175,0.006599950138479471,0.0016860084142535925,0.010959524661302567 +180.0,-180.0,-90.0,73,0.0064447373151779175,0.006599950138479471,0.0016860084142535925,0.010959524661302567 +180.0,180.0,-90.0,73,0.0064447373151779175,0.006599950138479471,0.0016860084142535925,0.010959524661302567 +-45.0,-90.0,-180.0,73,0.006613142788410187,0.006624200846999884,0.0018255802569910884,0.01122558768838644 +-180.0,-90.0,-45.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +-135.0,-90.0,-90.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +-90.0,-90.0,-135.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +-45.0,-90.0,180.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +0.0,-90.0,135.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +45.0,-90.0,90.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +90.0,-90.0,45.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +135.0,-90.0,0.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +180.0,-90.0,-45.0,73,0.00661797309294343,0.006623898167163134,0.0018203504150733352,0.01122558768838644 +-90.0,-180.0,-45.0,73,0.006648670416325331,0.006494630593806505,0.0017826363909989595,0.009727004915475845 +-90.0,180.0,-45.0,73,0.006648670416325331,0.006494630593806505,0.0017826363909989595,0.009727004915475845 +90.0,0.0,135.0,73,0.006648670416325331,0.006494630593806505,0.0017826363909989595,0.009727004915475845 +-90.0,-180.0,-135.0,73,0.006799835246056318,0.006773596629500389,0.002665949519723654,0.00793093629181385 +-90.0,180.0,-135.0,73,0.006799835246056318,0.006773596629500389,0.002665949519723654,0.00793093629181385 +90.0,0.0,45.0,73,0.006799835246056318,0.006773596629500389,0.002665949519723654,0.00793093629181385 +-135.0,0.0,135.0,73,0.006800690200179815,0.006833209190517664,0.0022860742174088955,0.012773843482136726 +45.0,-180.0,-45.0,73,0.006800690200179815,0.006833209190517664,0.0022860742174088955,0.012773843482136726 +45.0,180.0,-45.0,73,0.006800690200179815,0.006833209190517664,0.0022860742174088955,0.012773843482136726 +-135.0,0.0,90.0,73,0.006811089813709259,0.0072477273643016815,0.0022417688742280006,0.01307286974042654 +45.0,-180.0,-90.0,73,0.006811089813709259,0.0072477273643016815,0.0022417688742280006,0.01307286974042654 +45.0,180.0,-90.0,73,0.006811089813709259,0.0072477273643016815,0.0022417688742280006,0.01307286974042654 +-180.0,-90.0,45.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +-135.0,-90.0,0.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +-90.0,-90.0,-45.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +-45.0,-90.0,-90.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +0.0,-90.0,-135.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +45.0,-90.0,180.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +90.0,-90.0,135.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +135.0,-90.0,90.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +180.0,-90.0,45.0,73,0.007222210057079792,0.007475511636584997,0.0018825891893357038,0.013062055222690105 +-45.0,0.0,90.0,73,0.007296630181372166,0.007679010275751352,0.0018824953585863113,0.013740702532231808 +135.0,-180.0,-90.0,73,0.007296630181372166,0.007679010275751352,0.0018824953585863113,0.013740702532231808 +135.0,180.0,-90.0,73,0.007296630181372166,0.007679010275751352,0.0018824953585863113,0.013740702532231808 +45.0,-90.0,-180.0,73,0.007302660029381514,0.00747600756585598,0.0018376812804490328,0.013062055222690105 +-45.0,-135.0,90.0,73,0.007373650558292866,0.006466253194957972,0.003147233510389924,0.012245239689946175 +135.0,-45.0,-90.0,73,0.007373650558292866,0.006466253194957972,0.003147233510389924,0.012245239689946175 +-135.0,-135.0,90.0,73,0.007458706386387348,0.0065770335495471954,0.0023065893910825253,0.01366398949176073 +45.0,-45.0,-90.0,73,0.007458706386387348,0.0065770335495471954,0.0023065893910825253,0.01366398949176073 +-135.0,-45.0,45.0,73,0.007564025465399027,0.00791624654084444,0.0020250275265425444,0.011234389618039131 +45.0,-135.0,-135.0,73,0.007564025465399027,0.00791624654084444,0.0020250275265425444,0.011234389618039131 +0.0,-90.0,-180.0,73,0.00759194977581501,0.007695131003856659,0.0022211880423128605,0.013699007220566273 +-180.0,-90.0,0.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +-135.0,-90.0,-45.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +-90.0,-90.0,-90.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +-45.0,-90.0,-135.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +0.0,-90.0,180.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +45.0,-90.0,135.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +90.0,-90.0,90.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +135.0,-90.0,45.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +180.0,-90.0,0.0,73,0.00759853096678853,0.007711519952863455,0.0022089513950049877,0.013699007220566273 +-90.0,0.0,90.0,73,0.007620448712259531,0.007886894978582859,0.001720698899589479,0.01461607962846756 +90.0,-180.0,-90.0,73,0.007620448712259531,0.007886894978582859,0.001720698899589479,0.01461607962846756 +90.0,180.0,-90.0,73,0.007620448712259531,0.007886894978582859,0.001720698899589479,0.01461607962846756 +-45.0,-45.0,135.0,73,0.00790352001786232,0.008537055924534798,0.0020308091770857573,0.008963361382484436 +135.0,-135.0,-45.0,73,0.00790352001786232,0.008537055924534798,0.0020308091770857573,0.008963361382484436 +-180.0,-45.0,45.0,73,0.007941573858261108,0.008605831302702427,0.002107362961396575,0.01125708594918251 +0.0,-135.0,-135.0,73,0.007941573858261108,0.008605831302702427,0.002107362961396575,0.01125708594918251 +180.0,-45.0,45.0,73,0.007941573858261108,0.008605831302702427,0.002107362961396575,0.01125708594918251 +-45.0,-135.0,-180.0,73,0.008145997300744057,0.007656946312636137,0.0028189164586365223,0.011946228332817554 +-135.0,-45.0,180.0,73,0.00817115418612957,0.008021743968129158,0.0026027963031083345,0.009310219436883926 +45.0,-135.0,0.0,73,0.00817115418612957,0.008021743968129158,0.0026027963031083345,0.009310219436883926 +-135.0,-135.0,0.0,73,0.008195827715098858,0.00822294782847166,0.0016075021121650934,0.013716645538806915 +45.0,-45.0,180.0,73,0.008195827715098858,0.00822294782847166,0.0016075021121650934,0.013716645538806915 +-135.0,-45.0,-180.0,73,0.008200003765523434,0.008014737628400326,0.002555284881964326,0.009310219436883926 +45.0,-45.0,-180.0,73,0.008206669241189957,0.008222895674407482,0.0016117807244881988,0.013716645538806915 +-45.0,-135.0,180.0,73,0.008261729031801224,0.007656945381313562,0.0026232872623950243,0.011946228332817554 +135.0,-45.0,0.0,73,0.008261729031801224,0.007656945381313562,0.0026232872623950243,0.011946228332817554 +-45.0,-135.0,135.0,73,0.008305683732032776,0.007674614433199167,0.0031473401468247175,0.013323470018804073 +135.0,-45.0,-45.0,73,0.008305683732032776,0.007674614433199167,0.0031473401468247175,0.013323470018804073 +-180.0,-135.0,-45.0,73,0.008591912686824799,0.00896409247070551,0.001540101831778884,0.010099895298480988 +0.0,-45.0,135.0,73,0.008591912686824799,0.00896409247070551,0.001540101831778884,0.010099895298480988 +180.0,-135.0,-45.0,73,0.008591912686824799,0.00896409247070551,0.001540101831778884,0.010099895298480988 +-90.0,135.0,-90.0,73,0.008627067320048809,0.008244247175753117,0.0031558426562696695,0.015339079312980175 +90.0,45.0,90.0,73,0.008627067320048809,0.008244247175753117,0.0031558426562696695,0.015339079312980175 +-135.0,-135.0,45.0,73,0.008715571835637093,0.0083420155569911,0.002053663367405534,0.015486064366996288 +45.0,-45.0,-135.0,73,0.008715571835637093,0.0083420155569911,0.002053663367405534,0.015486064366996288 +-45.0,0.0,45.0,73,0.008758550509810448,0.00904256571084261,0.0019419683376327157,0.015278532169759274 +135.0,-180.0,-135.0,73,0.008758550509810448,0.00904256571084261,0.0019419683376327157,0.015278532169759274 +135.0,180.0,-135.0,73,0.008758550509810448,0.00904256571084261,0.0019419683376327157,0.015278532169759274 +-45.0,-45.0,0.0,73,0.008808828890323639,0.008914672769606113,0.0019229883328080177,0.011865539476275444 +135.0,-135.0,180.0,73,0.008808828890323639,0.008914672769606113,0.0019229883328080177,0.011865539476275444 +-45.0,135.0,-90.0,73,0.008821380324661732,0.008283805102109909,0.003231255104765296,0.01599699817597866 +135.0,45.0,90.0,73,0.008821380324661732,0.008283805102109909,0.003231255104765296,0.01599699817597866 +135.0,-135.0,-180.0,73,0.008911537006497383,0.008972786366939545,0.0018723678076639771,0.011865539476275444 +-45.0,-180.0,-135.0,73,0.008976390585303307,0.009472492150962353,0.0029333927668631077,0.011500289663672447 +-45.0,180.0,-135.0,73,0.008976390585303307,0.009472492150962353,0.002933392534032464,0.011500289663672447 +135.0,0.0,45.0,73,0.008976390585303307,0.009472492150962353,0.0029333927668631077,0.011500289663672447 +-90.0,0.0,135.0,73,0.009267433546483517,0.00979106966406107,0.0027570913080126047,0.01626691408455372 +90.0,-180.0,-45.0,73,0.009267433546483517,0.00979106966406107,0.0027570913080126047,0.01626691408455372 +90.0,180.0,-45.0,73,0.009267433546483517,0.00979106966406107,0.0027570913080126047,0.01626691408455372 +-45.0,-180.0,0.0,73,0.009359057992696762,0.008785084821283817,0.0030843336135149,0.013710607774555683 +-45.0,180.0,0.0,73,0.009359057992696762,0.008785084821283817,0.0030843336135149,0.013710607774555683 +135.0,0.0,180.0,73,0.009359057992696762,0.008785084821283817,0.0030843336135149,0.013710607774555683 +135.0,0.0,-180.0,73,0.009371324442327023,0.008785069920122623,0.0030879657715559006,0.013710607774555683 +-180.0,0.0,180.0,73,0.009431806392967701,0.008980334736406803,0.003212899435311556,0.01471906341612339 +0.0,-180.0,0.0,73,0.009431806392967701,0.008980334736406803,0.003212899435311556,0.01471906341612339 +0.0,180.0,0.0,73,0.009431806392967701,0.008980334736406803,0.003212899435311556,0.01471906341612339 +180.0,0.0,180.0,73,0.009431806392967701,0.008980334736406803,0.003212899435311556,0.01471906341612339 +-180.0,0.0,-180.0,73,0.009470121935009956,0.008995048701763153,0.0031926294323056936,0.01471906341612339 +180.0,0.0,-180.0,73,0.009470121935009956,0.008995048701763153,0.0031926294323056936,0.01471906341612339 +-180.0,-45.0,-135.0,73,0.009588032960891724,0.009113860316574574,0.0032467602286487818,0.011846452951431274 +0.0,-135.0,45.0,73,0.009588032960891724,0.009113860316574574,0.0032467602286487818,0.011846452951431274 +180.0,-45.0,-135.0,73,0.009588032960891724,0.009113860316574574,0.0032467602286487818,0.011846452951431274 +-180.0,-135.0,135.0,73,0.009729662910103798,0.00951134692877531,0.0021562394686043262,0.013635197654366493 +0.0,-45.0,-45.0,73,0.009729662910103798,0.00951134692877531,0.0021562394686043262,0.013635197654366493 +180.0,-135.0,135.0,73,0.009729662910103798,0.00951134692877531,0.0021562394686043262,0.013635197654366493 +-135.0,180.0,-180.0,73,0.009923337958753109,0.009758525528013706,0.003547642147168517,0.01239287294447422 +-135.0,-180.0,-180.0,73,0.009938028641045094,0.009758560918271542,0.0035316317807883024,0.01239287294447422 +-45.0,135.0,-45.0,73,0.009958258830010891,0.009550348855555058,0.0029862276278436184,0.017436187714338303 +135.0,45.0,135.0,73,0.009958258830010891,0.009550348855555058,0.0029862276278436184,0.017436187714338303 +-90.0,135.0,-135.0,73,0.009976142086088657,0.009563708677887917,0.003770682495087385,0.016870228573679924 +90.0,45.0,45.0,73,0.009976142086088657,0.009563708677887917,0.003770682495087385,0.016870228573679924 +-135.0,-180.0,180.0,73,0.010009080171585083,0.009758601896464825,0.0034603404346853495,0.01239287294447422 +-135.0,180.0,180.0,73,0.010009080171585083,0.009758601896464825,0.0034603404346853495,0.01239287294447422 +45.0,0.0,0.0,73,0.010009080171585083,0.009758601896464825,0.0034603404346853495,0.01239287294447422 +-135.0,135.0,-135.0,73,0.010011937469244003,0.00967029295861721,0.0035164665896445513,0.01755663752555847 +45.0,45.0,45.0,73,0.010011937469244003,0.00967029295861721,0.0035164665896445513,0.01755663752555847 +-180.0,0.0,45.0,73,0.010074139572679996,0.010896611027419567,0.0030887306202203035,0.016176266595721245 +0.0,-180.0,-135.0,73,0.010074139572679996,0.010896611027419567,0.0030887306202203035,0.016176266595721245 +180.0,0.0,45.0,73,0.010074139572679996,0.010896611027419567,0.0030887306202203035,0.016176266595721245 +0.0,180.0,-135.0,73,0.010074140504002571,0.010896611027419567,0.003088730853050947,0.016176266595721245 +-135.0,-180.0,-45.0,73,0.010197515599429607,0.010460293851792812,0.0014435130869969726,0.013220075517892838 +-135.0,180.0,-45.0,73,0.010197515599429607,0.010460293851792812,0.0014435130869969726,0.013220075517892838 +45.0,0.0,135.0,73,0.010197515599429607,0.010460293851792812,0.0014435130869969726,0.013220075517892838 +-180.0,45.0,135.0,73,0.010213612578809261,0.009819012135267258,0.003331168321892619,0.019091971218585968 +0.0,135.0,-45.0,73,0.010213612578809261,0.009819012135267258,0.003331168321892619,0.019091971218585968 +180.0,45.0,135.0,73,0.010213612578809261,0.009819012135267258,0.003331168321892619,0.019091971218585968 +-135.0,135.0,-90.0,73,0.010557509027421474,0.010566183365881443,0.0029088810551911592,0.01811986230313778 +45.0,45.0,90.0,73,0.010557509027421474,0.010566183365881443,0.0029088810551911592,0.01811986230313778 +-180.0,45.0,90.0,73,0.010637521743774414,0.010770440101623535,0.0034894088748842478,0.019708218052983284 +0.0,135.0,-90.0,73,0.010637521743774414,0.010770440101623535,0.0034894088748842478,0.019708218052983284 +180.0,45.0,90.0,73,0.010637521743774414,0.010770440101623535,0.0034894088748842478,0.019708218052983284 +-135.0,0.0,45.0,73,0.010737665928900242,0.011372950859367847,0.003001626580953598,0.019219741225242615 +45.0,-180.0,-135.0,73,0.010737665928900242,0.011372950859367847,0.003001626580953598,0.019219741225242615 +45.0,180.0,-135.0,73,0.010737665928900242,0.011372950859367847,0.003001626580953598,0.019219741225242615 +-180.0,-180.0,-180.0,73,0.010864020325243473,0.011147481389343739,0.0034284302964806557,0.015720650553703308 +-45.0,135.0,-135.0,73,0.010997025296092033,0.011568943969905376,0.0031899097375571728,0.019927693530917168 +135.0,45.0,45.0,73,0.010997025296092033,0.011568943969905376,0.0031899097375571728,0.019927693530917168 +-90.0,135.0,-45.0,73,0.010999101214110851,0.010916023515164852,0.0022004081401973963,0.019030189141631126 +90.0,45.0,135.0,73,0.010999101214110851,0.010916023515164852,0.0022004081401973963,0.019030189141631126 +-135.0,0.0,180.0,73,0.011000613681972027,0.011188194155693054,0.0030765701085329056,0.018497826531529427 +45.0,-180.0,0.0,73,0.011000613681972027,0.011188194155693054,0.0030765701085329056,0.018497826531529427 +45.0,180.0,0.0,73,0.011000613681972027,0.011188194155693054,0.0030765701085329056,0.018497826531529427 +-135.0,0.0,-180.0,73,0.011010274291038513,0.01119029801338911,0.0030733540188521147,0.018497826531529427 +-90.0,180.0,-180.0,73,0.011053727008402348,0.011150733567774296,0.003925189841538668,0.013523174449801445 +-90.0,-180.0,0.0,73,0.01105443388223648,0.011098201386630535,0.002580017317086458,0.016063202172517776 +-90.0,180.0,0.0,73,0.01105443388223648,0.011098201386630535,0.002580017317086458,0.016063202172517776 +90.0,0.0,180.0,73,0.01105443388223648,0.011098201386630535,0.002580017317086458,0.016063202172517776 +90.0,0.0,-180.0,73,0.011070065200328827,0.011098201386630535,0.0026080510579049587,0.016063202172517776 +-90.0,-180.0,-180.0,73,0.01107829436659813,0.011150729842483997,0.0038937607314437628,0.013523174449801445 +-90.0,-180.0,180.0,73,0.011090199463069439,0.011150666512548923,0.003877296345308423,0.013523174449801445 +-90.0,180.0,180.0,73,0.011090199463069439,0.011150666512548923,0.003877296345308423,0.013523174449801445 +90.0,0.0,0.0,73,0.011090199463069439,0.011150666512548923,0.003877296345308423,0.013523174449801445 +-180.0,180.0,-180.0,73,0.011171177960932255,0.011208872310817242,0.003028550185263157,0.015720650553703308 +180.0,180.0,-180.0,73,0.011171177960932255,0.011208872310817242,0.003028550185263157,0.015720650553703308 +180.0,-180.0,-180.0,73,0.011198386549949646,0.01120880525559187,0.003005189122632146,0.015720650553703308 +-180.0,-180.0,180.0,73,0.011252008378505707,0.011362246237695217,0.002963377395644784,0.015720650553703308 +-180.0,180.0,180.0,73,0.011252008378505707,0.011362246237695217,0.002963377395644784,0.015720650553703308 +0.0,0.0,0.0,73,0.011252008378505707,0.011362246237695217,0.002963377395644784,0.015720650553703308 +180.0,-180.0,180.0,73,0.011252008378505707,0.011362246237695217,0.002963377395644784,0.015720650553703308 +180.0,180.0,180.0,73,0.011252008378505707,0.011362246237695217,0.002963377395644784,0.015720650553703308 +-45.0,0.0,135.0,73,0.011262504383921623,0.012080634944140911,0.0031215159688144922,0.017844486981630325 +135.0,-180.0,-45.0,73,0.011262504383921623,0.012080634944140911,0.0031215159688144922,0.017844486981630325 +135.0,180.0,-45.0,73,0.011262504383921623,0.012080634944140911,0.0031215159688144922,0.017844486981630325 +-90.0,0.0,45.0,73,0.011557319201529026,0.012156563811004162,0.002597307786345482,0.018847886472940445 +90.0,-180.0,-135.0,73,0.011557319201529026,0.012156563811004162,0.002597307786345482,0.018847886472940445 +90.0,180.0,-135.0,73,0.011557319201529026,0.012156563811004162,0.002597307786345482,0.018847886472940445 +-90.0,-45.0,0.0,73,0.011632016859948635,0.012240628711879253,0.0026492078322917223,0.01676524430513382 +90.0,-135.0,180.0,73,0.011632016859948635,0.012240628711879253,0.0026492078322917223,0.01676524430513382 +-90.0,-45.0,180.0,73,0.011652032844722271,0.012501497752964497,0.0032114379573613405,0.013629811815917492 +90.0,-135.0,0.0,73,0.011652032844722271,0.012501497752964497,0.0032114379573613405,0.013629811815917492 +90.0,-135.0,-180.0,73,0.011733662337064743,0.012261506170034409,0.002511975821107626,0.01676524430513382 +-90.0,-45.0,-180.0,73,0.01176817063242197,0.012501499615609646,0.0030005101580172777,0.013629811815917492 +-135.0,45.0,135.0,73,0.011948321014642715,0.01223344448953867,0.003701398614794016,0.02302759699523449 +45.0,135.0,-45.0,73,0.011948321014642715,0.01223344448953867,0.003701398614794016,0.02302759699523449 +-180.0,135.0,-135.0,73,0.012232856824994087,0.012199555523693562,0.003105347976088524,0.021584827452898026 +0.0,45.0,45.0,73,0.012232856824994087,0.012199555523693562,0.003105347976088524,0.021584827452898026 +180.0,135.0,-135.0,73,0.012232856824994087,0.012199555523693562,0.003105347976088524,0.021584827452898026 +0.0,-135.0,-180.0,73,0.012237800285220146,0.01323629915714264,0.003308838000521064,0.01682230271399021 +-180.0,-45.0,0.0,73,0.012253876775503159,0.013217401690781116,0.00326211703941226,0.01682230271399021 +0.0,-135.0,180.0,73,0.012253876775503159,0.013217401690781116,0.00326211703941226,0.01682230271399021 +180.0,-45.0,0.0,73,0.012253876775503159,0.013217401690781116,0.00326211703941226,0.01682230271399021 +-180.0,-135.0,0.0,73,0.012329871766269207,0.012809637933969498,0.0021504636388272047,0.01674562692642212 +0.0,-45.0,180.0,73,0.012329871766269207,0.012809637933969498,0.0021504636388272047,0.01674562692642212 +180.0,-135.0,0.0,73,0.012329871766269207,0.012809637933969498,0.0021504636388272047,0.01674562692642212 +0.0,-45.0,-180.0,73,0.012365368194878101,0.012789205648005009,0.0021180608309805393,0.01674562692642212 +-45.0,180.0,-180.0,73,0.012557928450405598,0.013045314699411392,0.004030799027532339,0.018449438735842705 +-45.0,-180.0,180.0,73,0.012567125260829926,0.013045132160186768,0.004009441006928682,0.018449438735842705 +-45.0,180.0,180.0,73,0.012567125260829926,0.013045132160186768,0.004009441006928682,0.018449438735842705 +135.0,0.0,0.0,73,0.012567125260829926,0.013045132160186768,0.004009441006928682,0.018449438735842705 +-45.0,-180.0,-180.0,73,0.012577826157212257,0.013045229017734528,0.003994530998170376,0.018449438735842705 +-180.0,-180.0,-45.0,73,0.012630326673388481,0.013399352319538593,0.0028663796838372946,0.016582444310188293 +-180.0,180.0,-45.0,73,0.012630326673388481,0.013399352319538593,0.0028663796838372946,0.016582444310188293 +0.0,0.0,135.0,73,0.012630326673388481,0.013399352319538593,0.0028663796838372946,0.016582444310188293 +180.0,-180.0,-45.0,73,0.012630326673388481,0.013399352319538593,0.0028663796838372946,0.016582444310188293 +180.0,180.0,-45.0,73,0.012630326673388481,0.013399352319538593,0.0028663796838372946,0.016582444310188293 +-135.0,135.0,-180.0,73,0.01265846285969019,0.012938938103616238,0.0038644494488835335,0.02158048376441002 +-135.0,135.0,180.0,73,0.012679997831583023,0.012938943691551685,0.003837875323370099,0.02158048376441002 +45.0,45.0,0.0,73,0.012679997831583023,0.012938943691551685,0.003837875323370099,0.02158048376441002 +-180.0,45.0,45.0,73,0.01281781680881977,0.013808603398501873,0.00327815068885684,0.024938007816672325 +0.0,135.0,-135.0,73,0.01281781680881977,0.013808603398501873,0.00327815068885684,0.024938007816672325 +180.0,45.0,45.0,73,0.01281781680881977,0.013808603398501873,0.00327815068885684,0.024938007816672325 +-45.0,-180.0,45.0,73,0.012834683991968632,0.012787316925823689,0.0032182999420911074,0.020659754052758217 +-45.0,180.0,45.0,73,0.012834683991968632,0.012787316925823689,0.0032182999420911074,0.020659754052758217 +135.0,0.0,-135.0,73,0.012834683991968632,0.012787316925823689,0.0032182999420911074,0.020659754052758217 +-180.0,45.0,-180.0,73,0.012903583236038685,0.013114634901285172,0.002956981537863612,0.023450246080756187 +180.0,45.0,-180.0,73,0.012903583236038685,0.013114634901285172,0.002956981537863612,0.023450246080756187 +-180.0,45.0,180.0,73,0.012925416231155396,0.013114626519382,0.0029222324956208467,0.023450246080756187 +0.0,135.0,0.0,73,0.012925416231155396,0.013114626519382,0.0029222324956208467,0.023450246080756187 +180.0,45.0,180.0,73,0.012925416231155396,0.013114626519382,0.0029222324956208467,0.023450246080756187 +-135.0,45.0,90.0,73,0.013073503039777279,0.013759729452431202,0.003534642979502678,0.024298757314682007 +45.0,135.0,-90.0,73,0.013073503039777279,0.013759729452431202,0.003534642979502678,0.024298757314682007 +-90.0,135.0,-180.0,73,0.013078389689326286,0.013750066049396992,0.003661610186100006,0.022726714611053467 +-180.0,-45.0,-90.0,73,0.01312736514955759,0.013946185819804668,0.003780391998589039,0.017239047214388847 +0.0,-135.0,90.0,73,0.01312736514955759,0.013946185819804668,0.003780391998589039,0.017239047214388847 +180.0,-45.0,-90.0,73,0.01312736514955759,0.013946185819804668,0.003780391998589039,0.017239047214388847 +135.0,45.0,-180.0,73,0.013132219202816486,0.013284094631671906,0.002852486213669181,0.023402206599712372 +-45.0,135.0,0.0,73,0.013160262256860733,0.01334561500698328,0.0028032532427459955,0.023402206599712372 +135.0,45.0,180.0,73,0.013160262256860733,0.01334561500698328,0.0028032532427459955,0.023402206599712372 +-90.0,135.0,180.0,73,0.013180933892726898,0.013754983432590961,0.003504769178107381,0.022726714611053467 +90.0,45.0,0.0,73,0.013180933892726898,0.013754983432590961,0.003504769178107381,0.022726714611053467 +-180.0,-135.0,90.0,73,0.013441124930977821,0.013433012180030346,0.0020576303359121084,0.019245460629463196 +0.0,-45.0,-90.0,73,0.013441124930977821,0.013433012180030346,0.0020576303359121084,0.019245460629463196 +180.0,-135.0,90.0,73,0.013441124930977821,0.013433012180030346,0.0020576303359121084,0.019245460629463196 +-135.0,-45.0,0.0,73,0.013458249159157276,0.014474574476480484,0.003461899934336543,0.018818404525518417 +45.0,-135.0,180.0,73,0.013458249159157276,0.014474574476480484,0.003461899934336543,0.018818404525518417 +-180.0,135.0,-90.0,73,0.013496414758265018,0.013762135989964008,0.0027557993307709694,0.022710401564836502 +0.0,45.0,90.0,73,0.013496414758265018,0.013762135989964008,0.0027557993307709694,0.022710401564836502 +180.0,135.0,-90.0,73,0.013496414758265018,0.013762135989964008,0.0027557993307709694,0.022710401564836502 +45.0,-135.0,-180.0,73,0.013538413681089878,0.014474588446319103,0.003327677259221673,0.018818404525518417 +-90.0,-180.0,135.0,73,0.013586870394647121,0.013894026167690754,0.003741601714864373,0.019859369844198227 +-90.0,180.0,135.0,73,0.013586870394647121,0.013894026167690754,0.003741601714864373,0.019859369844198227 +90.0,0.0,-45.0,73,0.013586870394647121,0.013894026167690754,0.003741601714864373,0.019859369844198227 +-90.0,0.0,180.0,73,0.013691453263163567,0.014269067905843258,0.0035167476162314415,0.022833354771137238 +90.0,-180.0,0.0,73,0.013691453263163567,0.014269067905843258,0.0035167476162314415,0.022833354771137238 +90.0,180.0,0.0,73,0.013691453263163567,0.014269067905843258,0.0035167476162314415,0.022833354771137238 +-90.0,0.0,-180.0,73,0.013749781996011734,0.014269067905843258,0.003407785901799798,0.022833354771137238 +-180.0,0.0,-135.0,73,0.01380356028676033,0.014175348915159702,0.0036253558937460184,0.0228287223726511 +0.0,-180.0,45.0,73,0.01380356028676033,0.014175348915159702,0.0036253556609153748,0.0228287223726511 +0.0,180.0,45.0,73,0.01380356028676033,0.014175348915159702,0.0036253556609153748,0.0228287223726511 +180.0,0.0,-135.0,73,0.01380356028676033,0.014175348915159702,0.0036253558937460184,0.0228287223726511 +-45.0,-45.0,180.0,73,0.013819213956594467,0.014637060463428497,0.002939137164503336,0.01670965924859047 +135.0,-135.0,0.0,73,0.013819213956594467,0.014637060463428497,0.002939137164503336,0.01670965924859047 +-45.0,-45.0,-180.0,73,0.01388020534068346,0.014636124484241009,0.0028366344049572945,0.01670965924859047 +-135.0,45.0,-180.0,73,0.013907672837376595,0.014110942371189594,0.0034190912265330553,0.02589733712375164 +-135.0,45.0,180.0,73,0.013909743167459965,0.014111298136413097,0.0034201995003968477,0.02589733712375164 +45.0,135.0,0.0,73,0.013909743167459965,0.014111298136413097,0.0034201995003968477,0.02589733712375164 +-180.0,-45.0,-45.0,73,0.013945195823907852,0.014876951463520527,0.003824568120762706,0.019300110638141632 +0.0,-135.0,135.0,73,0.013945195823907852,0.014876951463520527,0.003824568120762706,0.019300110638141632 +180.0,-45.0,-45.0,73,0.013945195823907852,0.014876951463520527,0.003824568120762706,0.019300110638141632 +-135.0,-45.0,-135.0,73,0.013948059640824795,0.014479967765510082,0.004290648736059666,0.016894234344363213 +45.0,-135.0,45.0,73,0.013948059640824795,0.014479967765510082,0.004290648736059666,0.016894234344363213 +-135.0,-180.0,135.0,73,0.013984350487589836,0.01373229268938303,0.003274317365139723,0.019571522250771523 +-135.0,180.0,135.0,73,0.013984350487589836,0.01373229268938303,0.003274317365139723,0.019571522250771523 +45.0,0.0,-45.0,73,0.013984350487589836,0.01373229268938303,0.003274317365139723,0.019571522250771523 +-180.0,135.0,-180.0,73,0.014037370681762695,0.014141152612864971,0.003552833339199424,0.024158474057912827 +180.0,135.0,-180.0,73,0.014037370681762695,0.014141152612864971,0.003552833339199424,0.024158474057912827 +-180.0,135.0,180.0,73,0.0140560083091259,0.014141158200800419,0.003536628093570471,0.024158474057912827 +0.0,45.0,0.0,73,0.0140560083091259,0.014141158200800419,0.003536628093570471,0.024158474057912827 +180.0,135.0,180.0,73,0.0140560083091259,0.014141158200800419,0.003536628093570471,0.024158474057912827 +-90.0,45.0,135.0,73,0.014275070279836655,0.015115064568817616,0.0040062060579657555,0.026937633752822876 +90.0,135.0,-45.0,73,0.014275070279836655,0.015115064568817616,0.0040062060579657555,0.026937633752822876 +-180.0,-135.0,45.0,73,0.014281084761023521,0.014872856438159943,0.0024693228770047426,0.020533844828605652 +0.0,-45.0,-135.0,73,0.014281084761023521,0.014872856438159943,0.0024693228770047426,0.020533844828605652 +180.0,-135.0,45.0,73,0.014281084761023521,0.014872856438159943,0.0024693228770047426,0.020533844828605652 +-135.0,90.0,-180.0,73,0.014323224313557148,0.014729495160281658,0.004082753788679838,0.027174213901162148 +-180.0,90.0,135.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +-135.0,90.0,180.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +-90.0,90.0,-135.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +-45.0,90.0,-90.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +0.0,90.0,-45.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +45.0,90.0,0.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +90.0,90.0,45.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +135.0,90.0,90.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +180.0,90.0,135.0,73,0.01433099340647459,0.014729569666087627,0.004073888063430786,0.027174213901162148 +-45.0,-45.0,-45.0,73,0.014368176460266113,0.01467041950672865,0.0027530048973858356,0.019611841067671776 +135.0,-135.0,135.0,73,0.014368176460266113,0.01467041950672865,0.0027530048973858356,0.019611841067671776 +-135.0,-180.0,0.0,73,0.014434592798352242,0.014755976386368275,0.002294133882969618,0.02039872668683529 +-135.0,180.0,0.0,73,0.014434592798352242,0.014755976386368275,0.002294133882969618,0.02039872668683529 +45.0,0.0,180.0,73,0.014434592798352242,0.014755976386368275,0.002294133882969618,0.02039872668683529 +-90.0,-180.0,45.0,73,0.014484859071671963,0.014514823444187641,0.002768947510048747,0.021655438467860222 +-90.0,180.0,45.0,73,0.014484859071671963,0.014514823444187641,0.002768947510048747,0.021655438467860222 +90.0,0.0,-135.0,73,0.014484859071671963,0.014514823444187641,0.002768947510048747,0.021655438467860222 +45.0,0.0,-180.0,73,0.014514674432575703,0.014777862466871738,0.0023123121354728937,0.02039872668683529 +-180.0,0.0,0.0,73,0.014543069526553154,0.015592608600854874,0.004183150362223387,0.024285927414894104 +0.0,-180.0,180.0,73,0.014543069526553154,0.015592608600854874,0.004183150362223387,0.024285927414894104 +0.0,180.0,180.0,73,0.014543069526553154,0.015592608600854874,0.004183150362223387,0.024285927414894104 +180.0,0.0,0.0,73,0.014543069526553154,0.015592608600854874,0.004183150362223387,0.024285927414894104 +0.0,-180.0,-180.0,73,0.014548171311616898,0.01559266448020935,0.004175232257694006,0.024285927414894104 +0.0,180.0,-180.0,73,0.014557799324393272,0.015592686831951141,0.004155428148806095,0.024285927414894104 +-45.0,135.0,-180.0,73,0.014603915624320507,0.015448776073753834,0.0035998146049678326,0.026925725862383842 +-45.0,135.0,180.0,73,0.014654491096735,0.015448878519237041,0.0035339517053216696,0.026925725862383842 +135.0,45.0,0.0,73,0.014654491096735,0.015448878519237041,0.0035339517053216696,0.026925725862383842 +-45.0,-180.0,135.0,73,0.014753194525837898,0.015487062744796276,0.004124186933040619,0.024010615423321724 +-45.0,180.0,135.0,73,0.014753194525837898,0.015487062744796276,0.004124186933040619,0.024010615423321724 +135.0,0.0,-45.0,73,0.014753194525837898,0.015487062744796276,0.004124186933040619,0.024010615423321724 +-135.0,45.0,45.0,73,0.014872084371745586,0.015581482090055943,0.0031804190948605537,0.02896619588136673 +45.0,135.0,-135.0,73,0.014872084371745586,0.015581482090055943,0.0031804190948605537,0.02896619588136673 +-135.0,135.0,-45.0,73,0.014959350228309631,0.01495156716555357,0.0022321019787341356,0.022940225899219513 +45.0,45.0,135.0,73,0.014959350228309631,0.01495156716555357,0.0022321019787341356,0.022940225899219513 +-45.0,-180.0,90.0,73,0.014971676282584667,0.015512277372181416,0.0036409059539437294,0.024926157668232918 +-45.0,180.0,90.0,73,0.014971676282584667,0.015512277372181416,0.0036409059539437294,0.024926157668232918 +135.0,0.0,-90.0,73,0.014971676282584667,0.015512277372181416,0.0036409059539437294,0.024926157668232918 +-180.0,90.0,180.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +-135.0,90.0,-135.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +-90.0,90.0,-90.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +-45.0,90.0,-45.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +0.0,90.0,0.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +45.0,90.0,45.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +90.0,90.0,90.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +135.0,90.0,135.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +180.0,90.0,180.0,73,0.014989332295954227,0.015007453970611095,0.00365768326446414,0.027360180392861366 +-90.0,45.0,90.0,73,0.015013402327895164,0.015798814594745636,0.0035367882810533047,0.027079541236162186 +90.0,135.0,-90.0,73,0.015013402327895164,0.015798814594745636,0.0035367882810533047,0.027079541236162186 +90.0,45.0,-180.0,73,0.015033372677862644,0.015402436256408691,0.0024735971819609404,0.025781357660889626 +-180.0,90.0,-180.0,73,0.015035460703074932,0.015007453970611095,0.003611196530982852,0.027360180392861366 +180.0,90.0,-180.0,73,0.015035460703074932,0.015007453970611095,0.003611196530982852,0.027360180392861366 +-90.0,135.0,0.0,73,0.015070481225848198,0.015402366407215595,0.0024106756318360567,0.025781357660889626 +90.0,45.0,180.0,73,0.015070481225848198,0.015402366407215595,0.0024106756318360567,0.025781357660889626 +-90.0,-180.0,90.0,73,0.015207136981189251,0.015635540708899498,0.003606518032029271,0.023227863013744354 +-90.0,180.0,90.0,73,0.015207136981189251,0.015635540708899498,0.003606518032029271,0.023227863013744354 +90.0,0.0,-90.0,73,0.015207136981189251,0.015635540708899498,0.003606518032029271,0.023227863013744354 +-180.0,90.0,90.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +-135.0,90.0,135.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +-90.0,90.0,180.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +-45.0,90.0,-135.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +0.0,90.0,-90.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +45.0,90.0,-45.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +90.0,90.0,0.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +135.0,90.0,45.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +180.0,90.0,90.0,73,0.015347305685281754,0.016099464148283005,0.004244948737323284,0.029265832155942917 +-90.0,90.0,-180.0,73,0.015348403714597225,0.01610024832189083,0.004245712421834469,0.029265832155942917 +-45.0,45.0,90.0,73,0.015375026501715183,0.016063636168837547,0.0030577813740819693,0.026421621441841125 +135.0,135.0,-90.0,73,0.015375026501715183,0.016063636168837547,0.0030577813740819693,0.026421621441841125 +-90.0,45.0,180.0,73,0.015406912192702293,0.016116032376885414,0.004199777264147997,0.02931000478565693 +90.0,135.0,0.0,73,0.015406912192702293,0.016116032376885414,0.004199777264147997,0.02931000478565693 +-90.0,45.0,-180.0,73,0.015416372567415237,0.016118036583065987,0.0041852728463709354,0.02931000478565693 +-45.0,0.0,0.0,73,0.015609491616487503,0.015258501283824444,0.002747796941548586,0.021557137370109558 +135.0,-180.0,180.0,73,0.015609491616487503,0.015258501283824444,0.002747796941548586,0.021557137370109558 +135.0,180.0,180.0,73,0.015609491616487503,0.015258501283824444,0.002747796941548586,0.021557137370109558 +135.0,-180.0,-180.0,73,0.015611914917826653,0.015295763500034809,0.0027500519063323736,0.021557137370109558 +135.0,180.0,-180.0,73,0.015615311451256275,0.015258383937180042,0.0027408578898757696,0.021557137370109558 +-45.0,45.0,45.0,73,0.01566052995622158,0.015940610319375992,0.0028980004135519266,0.026595139876008034 +135.0,135.0,-135.0,73,0.01566052995622158,0.015940610319375992,0.0028980004135519266,0.026595139876008034 +45.0,-180.0,-180.0,73,0.016242973506450653,0.017437713220715523,0.004201709758490324,0.027613701298832893 +-135.0,0.0,0.0,73,0.016245296224951744,0.017437713220715523,0.004196598194539547,0.027613701298832893 +45.0,-180.0,180.0,73,0.016245296224951744,0.017437713220715523,0.004196598194539547,0.027613701298832893 +45.0,180.0,180.0,73,0.016245296224951744,0.017437713220715523,0.004196598194539547,0.027613701298832893 +45.0,180.0,-180.0,73,0.01628602296113968,0.01743771880865097,0.004119624849408865,0.027613701298832893 +-135.0,135.0,135.0,73,0.016290605068206787,0.017164522781968117,0.003434065030887723,0.02783428132534027 +45.0,45.0,-45.0,73,0.016290605068206787,0.017164522781968117,0.003434065030887723,0.02783428132534027 +-135.0,0.0,-135.0,73,0.016321519389748573,0.01733293943107128,0.0040233856998384,0.026891790330410004 +45.0,-180.0,45.0,73,0.016321519389748573,0.01733293943107128,0.0040233856998384,0.026891790330410004 +45.0,180.0,45.0,73,0.016321519389748573,0.01733293943107128,0.0040233856998384,0.026891790330410004 +0.0,135.0,-180.0,73,0.016505273059010506,0.017533354461193085,0.003933980129659176,0.03171779215335846 +-180.0,45.0,0.0,73,0.01652071438729763,0.017533548176288605,0.0039243437349796295,0.03171779215335846 +0.0,135.0,180.0,73,0.01652071438729763,0.017533548176288605,0.0039243437349796295,0.03171779215335846 +180.0,45.0,0.0,73,0.01652071438729763,0.017533548176288605,0.0039243437349796295,0.03171779215335846 +-45.0,45.0,135.0,73,0.016530152410268784,0.017349502071738243,0.0037716461811214685,0.02853163704276085 +135.0,135.0,-45.0,73,0.016530152410268784,0.017349502071738243,0.0037716461811214685,0.02853163704276085 +-45.0,0.0,180.0,73,0.016530552878975868,0.01731213368475437,0.0038436432369053364,0.025185948237776756 +135.0,-180.0,0.0,73,0.016530552878975868,0.01731213368475437,0.0038436432369053364,0.025185948237776756 +135.0,180.0,0.0,73,0.016530552878975868,0.01731213368475437,0.0038436432369053364,0.025185948237776756 +-90.0,135.0,135.0,73,0.016560429707169533,0.017275119200348854,0.0033212986309081316,0.029477883130311966 +90.0,45.0,-45.0,73,0.016560429707169533,0.017275119200348854,0.0033212986309081316,0.029477883130311966 +-180.0,135.0,135.0,73,0.01662379689514637,0.017239214852452278,0.0034595748875290155,0.02892374061048031 +0.0,45.0,-45.0,73,0.01662379689514637,0.017239214852452278,0.0034595748875290155,0.02892374061048031 +180.0,135.0,135.0,73,0.01662379689514637,0.017239214852452278,0.0034595748875290155,0.02892374061048031 +-180.0,45.0,-135.0,73,0.016624106094241142,0.017352918162941933,0.003411513054743409,0.030230028554797173 +0.0,135.0,45.0,73,0.016624106094241142,0.017352918162941933,0.003411513054743409,0.030230028554797173 +180.0,45.0,-135.0,73,0.016624106094241142,0.017352918162941933,0.003411513054743409,0.030230028554797173 +-135.0,-180.0,90.0,73,0.016639361158013344,0.017008734866976738,0.0032783348578959703,0.024889877066016197 +-135.0,180.0,90.0,73,0.016639361158013344,0.017008734866976738,0.0032783348578959703,0.024889877066016197 +45.0,0.0,-90.0,73,0.016639361158013344,0.017008734866976738,0.0032783348578959703,0.024889877066016197 +90.0,-180.0,-180.0,73,0.01664811745285988,0.017129594460129738,0.003570535685867071,0.026483401656150818 +90.0,180.0,-180.0,73,0.01666109263896942,0.017129594460129738,0.0035514209885150194,0.026483401656150818 +-90.0,0.0,0.0,73,0.016661835834383965,0.017129594460129738,0.0035497494973242283,0.026483401656150818 +90.0,-180.0,180.0,73,0.016661835834383965,0.017129594460129738,0.0035497494973242283,0.026483401656150818 +90.0,180.0,180.0,73,0.016661835834383965,0.017129594460129738,0.0035497494973242283,0.026483401656150818 +-45.0,0.0,-180.0,73,0.016674773767590523,0.01731271483004093,0.003569345222786069,0.025185948237776756 +-180.0,0.0,-90.0,73,0.01679084077477455,0.017823224887251854,0.004033965524286032,0.028989922255277634 +0.0,-180.0,90.0,73,0.01679084077477455,0.017823224887251854,0.004033965524286032,0.028989922255277634 +0.0,180.0,90.0,73,0.01679084077477455,0.017823224887251854,0.004033965524286032,0.028989922255277634 +180.0,0.0,-90.0,73,0.01679084077477455,0.017823224887251854,0.004033965524286032,0.028989922255277634 +-45.0,135.0,45.0,73,0.016800962388515472,0.017222901806235313,0.0029821505304425955,0.030400237068533897 +135.0,45.0,-135.0,73,0.016800962388515472,0.017222901806235313,0.0029821505304425955,0.030400237068533897 +-180.0,135.0,-45.0,73,0.016859397292137146,0.01734086126089096,0.0029205838218331337,0.026875851675868034 +0.0,45.0,135.0,73,0.016859397292137146,0.01734086126089096,0.0029205838218331337,0.026875851675868034 +180.0,135.0,-45.0,73,0.016859397292137146,0.01734086126089096,0.0029205838218331337,0.026875851675868034 +-180.0,-180.0,135.0,73,0.017105260863900185,0.016942255198955536,0.0028321894351392984,0.02331569418311119 +-180.0,180.0,135.0,73,0.017105260863900185,0.016942255198955536,0.0028321894351392984,0.02331569418311119 +0.0,0.0,-45.0,73,0.017105260863900185,0.016942255198955536,0.0028321894351392984,0.02331569418311119 +180.0,-180.0,135.0,73,0.017105260863900185,0.016942255198955536,0.0028321894351392984,0.02331569418311119 +180.0,180.0,135.0,73,0.017105260863900185,0.016942255198955536,0.0028321894351392984,0.02331569418311119 +-90.0,-45.0,-135.0,73,0.017149223014712334,0.0186053104698658,0.00451968889683485,0.02152957394719124 +90.0,-135.0,45.0,73,0.017149223014712334,0.0186053104698658,0.00451968889683485,0.02152957394719124 +-45.0,90.0,-180.0,73,0.017177633941173553,0.017951907590031624,0.004001436289399862,0.03240979090332985 +-180.0,90.0,45.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +-135.0,90.0,90.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +-90.0,90.0,135.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +-45.0,90.0,180.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +0.0,90.0,-135.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +45.0,90.0,-90.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +90.0,90.0,-45.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +135.0,90.0,0.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +180.0,90.0,45.0,73,0.017192034050822258,0.017951911315321922,0.003967197146266699,0.03240979090332985 +-135.0,-180.0,45.0,73,0.01731860265135765,0.01742352358996868,0.0024583633057773113,0.02523251809179783 +-135.0,180.0,45.0,73,0.01731860265135765,0.01742352358996868,0.0024583633057773113,0.02523251809179783 +45.0,0.0,-135.0,73,0.01731860265135765,0.01742352358996868,0.002458363538607955,0.02523251809179783 +-180.0,0.0,-45.0,73,0.017327407374978065,0.018553609028458595,0.004466117359697819,0.029593516141176224 +0.0,-180.0,135.0,73,0.017327407374978065,0.018553609028458595,0.004466117359697819,0.029593516141176224 +0.0,180.0,135.0,73,0.017327407374978065,0.018553609028458595,0.004466117359697819,0.029593516141176224 +180.0,0.0,-45.0,73,0.017327407374978065,0.018553609028458595,0.004466117359697819,0.029593516141176224 +-45.0,45.0,0.0,73,0.017348220571875572,0.017452040687203407,0.003207094967365265,0.028950538486242294 +135.0,135.0,180.0,73,0.017348220571875572,0.017452040687203407,0.003207094967365265,0.028950538486242294 +-135.0,45.0,-135.0,73,0.01736442930996418,0.018146159127354622,0.003214789554476738,0.031226925551891327 +45.0,135.0,45.0,73,0.01736442930996418,0.018146159127354622,0.003214789554476738,0.031226925551891327 +135.0,135.0,-180.0,73,0.017374316230416298,0.017452044412493706,0.0031886696815490723,0.028950538486242294 +-45.0,135.0,135.0,73,0.017477937042713165,0.018552973866462708,0.003902376862242818,0.03289174288511276 +135.0,45.0,-45.0,73,0.017477937042713165,0.018552973866462708,0.003902376862242818,0.03289174288511276 +-90.0,45.0,-135.0,73,0.01768569089472294,0.01855909824371338,0.003806621301919222,0.03280695155262947 +90.0,135.0,45.0,73,0.01768569089472294,0.01855909824371338,0.003806621301919222,0.03280695155262947 +-45.0,45.0,180.0,73,0.01773051731288433,0.018756598234176636,0.004103845451027155,0.03168915584683418 +135.0,135.0,0.0,73,0.01773051731288433,0.018756598234176636,0.004103845451027155,0.03168915584683418 +-45.0,45.0,-180.0,73,0.01775713823735714,0.01876579411327839,0.004057538229972124,0.03168915584683418 +-45.0,-45.0,-135.0,73,0.0177950169891119,0.018697017803788185,0.00393463671207428,0.023037148639559746 +135.0,-135.0,45.0,73,0.0177950169891119,0.018697017803788185,0.00393463671207428,0.023037148639559746 +-180.0,-180.0,0.0,73,0.01780015230178833,0.018159018829464912,0.0026039397343993187,0.024177491664886475 +-180.0,180.0,0.0,73,0.01780015230178833,0.018159018829464912,0.0026039397343993187,0.024177491664886475 +0.0,0.0,180.0,73,0.01780015230178833,0.018159018829464912,0.0026039397343993187,0.024177491664886475 +180.0,-180.0,0.0,73,0.01780015230178833,0.018159018829464912,0.0026039397343993187,0.024177491664886475 +180.0,180.0,0.0,73,0.01780015230178833,0.018159018829464912,0.0026039397343993187,0.024177491664886475 +-135.0,-45.0,-90.0,73,0.01785128191113472,0.019367309287190437,0.005035356152802706,0.022820519283413887 +45.0,-135.0,90.0,73,0.01785128191113472,0.019367309287190437,0.005035356152802706,0.022820519283413887 +-135.0,-45.0,-45.0,73,0.017906539142131805,0.01973980851471424,0.004804987460374832,0.023617537692189217 +45.0,-135.0,135.0,73,0.017906539142131805,0.01973980851471424,0.004804987460374832,0.023617537692189217 +-90.0,-45.0,-45.0,73,0.017908604815602303,0.01898687332868576,0.004049825482070446,0.023746659979224205 +90.0,-135.0,135.0,73,0.017908604815602303,0.01898687332868576,0.004049825482070446,0.023746659979224205 +-90.0,45.0,45.0,73,0.01792627014219761,0.01819498836994171,0.003009842010214925,0.02965259924530983 +90.0,135.0,-135.0,73,0.01792627014219761,0.01819498836994171,0.003009842010214925,0.02965259924530983 +0.0,0.0,-180.0,73,0.017957765609025955,0.018159018829464912,0.0023092327173799276,0.024177491664886475 +135.0,90.0,-180.0,73,0.01807478629052639,0.017786046490073204,0.0031836305279284716,0.02971479296684265 +-90.0,135.0,90.0,73,0.018087606877088547,0.018737660720944405,0.0032508354634046555,0.033168990164995193 +90.0,45.0,-90.0,73,0.018087606877088547,0.018737660720944405,0.0032508354634046555,0.033168990164995193 +-180.0,90.0,-135.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +-135.0,90.0,-90.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +-90.0,90.0,-45.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +-45.0,90.0,0.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +0.0,90.0,45.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +45.0,90.0,90.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +90.0,90.0,135.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +135.0,90.0,180.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +180.0,90.0,-135.0,73,0.018093066290020943,0.017785854637622833,0.0031538086477667093,0.02971479296684265 +-135.0,135.0,0.0,73,0.018381750211119652,0.01817147620022297,0.0017421975499019027,0.029194025322794914 +45.0,45.0,180.0,73,0.018381750211119652,0.01817147620022297,0.0017421975499019027,0.029194025322794914 +45.0,45.0,-180.0,73,0.01838528923690319,0.018171826377511024,0.001754910103045404,0.029194025322794914 +-90.0,135.0,45.0,73,0.0184010062366724,0.018633104860782623,0.0025060870684683323,0.03163784369826317 +90.0,45.0,-135.0,73,0.0184010062366724,0.018633104860782623,0.0025060870684683323,0.03163784369826317 +-45.0,-45.0,-90.0,73,0.01840156316757202,0.019340626895427704,0.003706893650814891,0.024239270016551018 +135.0,-135.0,90.0,73,0.01840156316757202,0.019340626895427704,0.003706893650814891,0.024239270016551018 +45.0,135.0,-180.0,73,0.018429389223456383,0.019250182434916496,0.003836850170046091,0.03429578244686127 +-135.0,45.0,0.0,73,0.01843329519033432,0.01925021968781948,0.0038302463945001364,0.03429578244686127 +45.0,135.0,180.0,73,0.01843329519033432,0.01925021968781948,0.0038302463945001364,0.03429578244686127 +-45.0,135.0,90.0,73,0.018691418692469597,0.019478190690279007,0.00337079050950706,0.034330934286117554 +135.0,45.0,-90.0,73,0.018691418692469597,0.019478190690279007,0.00337079050950706,0.034330934286117554 +-45.0,45.0,-45.0,73,0.018738966435194016,0.019420944154262543,0.0032303333282470703,0.032108061015605927 +135.0,135.0,135.0,73,0.018738966435194016,0.019420944154262543,0.0032303333282470703,0.032108061015605927 +-45.0,45.0,-135.0,73,0.01876353845000267,0.019828813150525093,0.0039371587336063385,0.03404455631971359 +135.0,135.0,45.0,73,0.01876353845000267,0.019828813150525093,0.0039371587336063385,0.03404455631971359 +-180.0,90.0,0.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +-135.0,90.0,45.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +-90.0,90.0,90.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +-45.0,90.0,135.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +0.0,90.0,180.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +45.0,90.0,-135.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +90.0,90.0,-90.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +135.0,90.0,-45.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +180.0,90.0,0.0,73,0.018804213032126427,0.019236234948039055,0.00256856856867671,0.03476440906524658 +0.0,90.0,-180.0,73,0.018811505287885666,0.019236234948039055,0.002550450386479497,0.03476440906524658 +90.0,90.0,-180.0,73,0.01897655427455902,0.019084507599473,0.002387956017628312,0.03285875543951988 +-180.0,135.0,90.0,73,0.019008934497833252,0.020174674689769745,0.0034834975376725197,0.03308918699622154 +0.0,45.0,-90.0,73,0.019008934497833252,0.020174674689769745,0.0034834975376725197,0.03308918699622154 +180.0,135.0,90.0,73,0.019008934497833252,0.020174674689769745,0.0034834975376725197,0.03308918699622154 +-180.0,90.0,-90.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +-135.0,90.0,-45.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +-90.0,90.0,0.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +-45.0,90.0,45.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +0.0,90.0,90.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +45.0,90.0,135.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +90.0,90.0,180.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +135.0,90.0,-135.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +180.0,90.0,-90.0,73,0.01902187429368496,0.01908423937857151,0.002333269687369466,0.03285875543951988 +-90.0,0.0,-135.0,73,0.019079675897955894,0.02001473493874073,0.0036846757866442204,0.030468866229057312 +90.0,-180.0,45.0,73,0.019079675897955894,0.02001473493874073,0.0036846757866442204,0.030468866229057312 +90.0,180.0,45.0,73,0.019079675897955894,0.02001473493874073,0.0036846757866442204,0.030468866229057312 +-45.0,45.0,-90.0,73,0.019192861393094063,0.02022017352283001,0.003452327800914645,0.03421807661652565 +135.0,135.0,90.0,73,0.019192861393094063,0.02022017352283001,0.003452327800914645,0.03421807661652565 +-180.0,45.0,-90.0,73,0.019235379993915558,0.02009318582713604,0.0034516151063144207,0.035459816455841064 +0.0,135.0,90.0,73,0.019235379993915558,0.02009318582713604,0.0034516151063144207,0.035459816455841064 +180.0,45.0,-90.0,73,0.019235379993915558,0.02009318582713604,0.0034516151063144207,0.035459816455841064 +-135.0,135.0,90.0,73,0.019252069294452667,0.019314559176564217,0.002031634794548154,0.032654643058776855 +45.0,45.0,-90.0,73,0.019252069294452667,0.019314559176564217,0.002031634794548154,0.032654643058776855 +-180.0,45.0,-45.0,73,0.019346240907907486,0.02017492987215519,0.004045219626277685,0.03607606515288353 +0.0,135.0,135.0,73,0.019346240907907486,0.02017492987215519,0.004045219626277685,0.03607606515288353 +180.0,45.0,-45.0,73,0.019346240907907486,0.02017492987215519,0.004045219626277685,0.03607606515288353 +-180.0,135.0,0.0,73,0.019359001889824867,0.01986892893910408,0.003232573624700308,0.03164111450314522 +0.0,45.0,180.0,73,0.019359001889824867,0.01986892893910408,0.003232573624700308,0.03164111450314522 +180.0,135.0,0.0,73,0.019359001889824867,0.01986892893910408,0.003232573624700308,0.03164111450314522 +-135.0,0.0,-90.0,73,0.01939060352742672,0.02041415311396122,0.004438447766005993,0.0330386608839035 +45.0,-180.0,90.0,73,0.01939060352742672,0.02041415311396122,0.004438447766005993,0.0330386608839035 +45.0,180.0,90.0,73,0.01939060352742672,0.02041415311396122,0.004438447766005993,0.0330386608839035 +-90.0,-45.0,-90.0,73,0.019413957372307777,0.020762620493769646,0.0049506197683513165,0.025720108300447464 +90.0,-135.0,90.0,73,0.019413957372307777,0.020762620493769646,0.0049506197683513165,0.025720108300447464 +-135.0,135.0,45.0,73,0.01947636529803276,0.019389456138014793,0.00195364560931921,0.033217865973711014 +45.0,45.0,-135.0,73,0.01947636529803276,0.019389456138014793,0.00195364560931921,0.033217865973711014 +0.0,45.0,-180.0,73,0.019590983167290688,0.019869694486260414,0.002886144444346428,0.03164111450314522 +-180.0,90.0,-45.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +-135.0,90.0,0.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +-90.0,90.0,45.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +-45.0,90.0,90.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +0.0,90.0,135.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +45.0,90.0,180.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +90.0,90.0,-135.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +135.0,90.0,-90.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +180.0,90.0,-45.0,73,0.01960749737918377,0.019789662212133408,0.002519058994948864,0.0349503755569458 +45.0,90.0,-180.0,73,0.019611256197094917,0.019789662212133408,0.0025107578840106726,0.0349503755569458 +-180.0,-180.0,90.0,73,0.019906051456928253,0.019728833809494972,0.002321421867236495,0.028938617557287216 +-180.0,180.0,90.0,73,0.019906051456928253,0.019728833809494972,0.002321421867236495,0.028938617557287216 +0.0,0.0,-90.0,73,0.019906051456928253,0.019728833809494972,0.002321421867236495,0.028938617557287216 +180.0,-180.0,90.0,73,0.019906051456928253,0.019728833809494972,0.002321421867236495,0.028938617557287216 +180.0,180.0,90.0,73,0.019906051456928253,0.019728833809494972,0.002321421867236495,0.028938617557287216 +-135.0,45.0,-90.0,73,0.01995515078306198,0.020596789196133614,0.0037582304794341326,0.03589436411857605 +45.0,135.0,90.0,73,0.01995515078306198,0.020596789196133614,0.0037582304794341326,0.03589436411857605 +-135.0,0.0,-45.0,73,0.019983237609267235,0.020978113636374474,0.004420722369104624,0.03333768621087074 +45.0,-180.0,135.0,73,0.019983237609267235,0.020978113636374474,0.004420722369104624,0.03333768621087074 +45.0,180.0,135.0,73,0.019983237609267235,0.020978113636374474,0.004420722369104624,0.03333768621087074 +-45.0,0.0,-45.0,73,0.020040353760123253,0.020109450444579124,0.0030537908896803856,0.02889859490096569 +135.0,-180.0,135.0,73,0.020040353760123253,0.020109450444579124,0.0030537908896803856,0.02889859490096569 +135.0,180.0,135.0,73,0.020040353760123253,0.020109450444579124,0.0030537908896803856,0.02889859490096569 +90.0,135.0,-180.0,73,0.020081067457795143,0.020301656797528267,0.0034129484556615353,0.03314955160021782 +-90.0,45.0,0.0,73,0.020083077251911163,0.020301654934883118,0.003408030839636922,0.03314955160021782 +90.0,135.0,180.0,73,0.020083077251911163,0.020301654934883118,0.003408030839636922,0.03314955160021782 +-180.0,135.0,45.0,73,0.020109811797738075,0.020604973658919334,0.003550309455022216,0.03421476483345032 +0.0,45.0,-135.0,73,0.020109811797738075,0.020604973658919334,0.003550309455022216,0.03421476483345032 +180.0,135.0,45.0,73,0.020109811797738075,0.020604973658919334,0.003550309455022216,0.03421476483345032 +-180.0,-180.0,45.0,73,0.020582040771842003,0.020655544474720955,0.002252457430586219,0.029295584186911583 +-180.0,180.0,45.0,73,0.020582040771842003,0.020655544474720955,0.002252457430586219,0.029295584186911583 +0.0,0.0,-135.0,73,0.020582040771842003,0.020655544474720955,0.002252457430586219,0.029295584186911583 +180.0,-180.0,45.0,73,0.020582040771842003,0.020655544474720955,0.002252457430586219,0.029295584186911583 +180.0,180.0,45.0,73,0.020582040771842003,0.020655544474720955,0.002252457430586219,0.029295584186911583 +-135.0,45.0,-45.0,73,0.02084742672741413,0.02138386107981205,0.0033632039558142424,0.037165526300668716 +45.0,135.0,135.0,73,0.02084742672741413,0.02138386107981205,0.0033632039558142424,0.037165526300668716 +-90.0,45.0,-90.0,73,0.020865781232714653,0.021257661283016205,0.0028031766414642334,0.03538001328706741 +90.0,135.0,90.0,73,0.020865781232714653,0.021257661283016205,0.0028031766414642334,0.03538001328706741 +-45.0,0.0,-135.0,73,0.021153582260012627,0.021791106089949608,0.0029371408745646477,0.03146455064415932 +135.0,-180.0,45.0,73,0.021153582260012627,0.021791106089949608,0.0029371408745646477,0.03146455064415932 +135.0,180.0,45.0,73,0.021153582260012627,0.021791106089949608,0.0029371408745646477,0.03146455064415932 +-90.0,45.0,-45.0,73,0.02144206315279007,0.02178056724369526,0.0033305624965578318,0.03552192077040672 +90.0,135.0,135.0,73,0.02144206315279007,0.02178056724369526,0.0033305624965578318,0.03552192077040672 +-90.0,0.0,-45.0,73,0.021457970142364502,0.02198708988726139,0.003862075274810195,0.03304984048008919 +90.0,-180.0,135.0,73,0.021457970142364502,0.02198708988726139,0.003862075274810195,0.03304984048008919 +90.0,180.0,135.0,73,0.021457970142364502,0.02198708988726139,0.003862075274810195,0.03304984048008919 +-90.0,0.0,-90.0,73,0.021479642018675804,0.022791841998696327,0.004231228958815336,0.0347006730735302 +90.0,-180.0,90.0,73,0.021479642018675804,0.022791841998696327,0.004231228958815336,0.0347006730735302 +90.0,180.0,90.0,73,0.021479642018675804,0.022791841998696327,0.004231228958815336,0.0347006730735302 +-45.0,0.0,-90.0,73,0.022333402186632156,0.022887354716658592,0.0030356799252331257,0.03300238028168678 +135.0,-180.0,90.0,73,0.022333402186632156,0.022887354716658592,0.0030356799252331257,0.03300238028168678 +135.0,180.0,90.0,73,0.022333402186632156,0.022887354716658592,0.0030356799252331257,0.03300238028168678 diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0000_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0000_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c98592b4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0000_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0001_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0001_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e1da04030 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0001_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0002_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0002_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7b6c7ce54 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0002_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0003_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0003_g1_upper_body_cmd.npz new file mode 100644 index 000000000..90a1404ca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0003_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0004_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0004_g1_upper_body_cmd.npz new file mode 100644 index 000000000..28fed886f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0004_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0005_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0005_g1_upper_body_cmd.npz new file mode 100644 index 000000000..57ff8e008 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0005_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0006_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0006_g1_upper_body_cmd.npz new file mode 100644 index 000000000..449bc6a62 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0006_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0007_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0007_g1_upper_body_cmd.npz new file mode 100644 index 000000000..690fb5607 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0007_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0008_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0008_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2214369ea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0008_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0009_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0009_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8a9445889 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0009_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0010_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0010_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fb292b409 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0010_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0011_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0011_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d735c048a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0011_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0012_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0012_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e2675434 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0012_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0013_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0013_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e544f970 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0013_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0014_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0014_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4d15a0cef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0014_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0015_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0015_g1_upper_body_cmd.npz new file mode 100644 index 000000000..598104f2c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0015_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0016_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0016_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1ecc5da70 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0016_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0017_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0017_g1_upper_body_cmd.npz new file mode 100644 index 000000000..359bcf5f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0017_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0018_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0018_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b194a3b88 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0018_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0019_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0019_g1_upper_body_cmd.npz new file mode 100644 index 000000000..45c381835 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0019_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0020_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0020_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4554c8df3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0020_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0021_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0021_g1_upper_body_cmd.npz new file mode 100644 index 000000000..115a9e200 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0021_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0022_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0022_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cc100dc71 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0022_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0023_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0023_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1b5a023db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0023_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0024_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0024_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ab4a2aafd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0024_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0025_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0025_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c9d733aa1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0025_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0026_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0026_g1_upper_body_cmd.npz new file mode 100644 index 000000000..66df82ff9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0026_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0027_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0027_g1_upper_body_cmd.npz new file mode 100644 index 000000000..95c4bcdc5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0027_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0028_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0028_g1_upper_body_cmd.npz new file mode 100644 index 000000000..98e8d6205 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0028_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0029_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0029_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b40ce0536 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0029_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0030_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0030_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f36a5371c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0030_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0031_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0031_g1_upper_body_cmd.npz new file mode 100644 index 000000000..641b6e22d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0031_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0032_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0032_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0747f44bf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0032_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0033_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0033_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64bb56907 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0033_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0034_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0034_g1_upper_body_cmd.npz new file mode 100644 index 000000000..280874f37 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0034_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0035_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0035_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0458906a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0035_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0036_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0036_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c682eeb66 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0036_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0037_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0037_g1_upper_body_cmd.npz new file mode 100644 index 000000000..50d161d35 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0037_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0038_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0038_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e2c7ee674 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0038_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0039_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0039_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c110b9dc9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0039_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0040_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0040_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de2f79dbb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0040_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0041_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0041_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41c2e3b78 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0041_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0042_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0042_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e4be2482b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0042_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0043_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0043_g1_upper_body_cmd.npz new file mode 100644 index 000000000..28be9e1e1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0043_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0044_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0044_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d39978c43 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0044_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0045_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0045_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1e1a26f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0045_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0046_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0046_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2795eced3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0046_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0047_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0047_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b7e6f0685 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0047_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0048_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0048_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cb3f1dc69 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0048_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0049_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0049_g1_upper_body_cmd.npz new file mode 100644 index 000000000..858c36347 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0049_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0050_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0050_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6d96d7837 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0050_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0051_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0051_g1_upper_body_cmd.npz new file mode 100644 index 000000000..19c057414 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0051_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0052_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0052_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a67802305 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0052_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0053_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0053_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5ab13a980 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0053_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0054_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0054_g1_upper_body_cmd.npz new file mode 100644 index 000000000..83c50a8d3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0054_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0055_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0055_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64781a385 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0055_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0056_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0056_g1_upper_body_cmd.npz new file mode 100644 index 000000000..036287bd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0056_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0057_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0057_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3c52b986a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0057_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0058_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0058_g1_upper_body_cmd.npz new file mode 100644 index 000000000..537e83c0c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0058_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0059_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0059_g1_upper_body_cmd.npz new file mode 100644 index 000000000..437aa592e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0059_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0060_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0060_g1_upper_body_cmd.npz new file mode 100644 index 000000000..25bde4bf9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0060_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0061_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0061_g1_upper_body_cmd.npz new file mode 100644 index 000000000..25728dff0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0061_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0062_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0062_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4cad056a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0062_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0063_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0063_g1_upper_body_cmd.npz new file mode 100644 index 000000000..acbbb44d5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0063_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0064_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0064_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a937e337c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0064_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0065_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0065_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bb691c059 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0065_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0066_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0066_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7635504d6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0066_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0067_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0067_g1_upper_body_cmd.npz new file mode 100644 index 000000000..388ba1055 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0067_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0068_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0068_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0b6371e23 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0068_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0069_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0069_g1_upper_body_cmd.npz new file mode 100644 index 000000000..26d644218 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0069_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0070_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0070_g1_upper_body_cmd.npz new file mode 100644 index 000000000..311a7e843 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0070_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0071_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0071_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3ff2824c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0071_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0072_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0072_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3e7ec674 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0072_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0073_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0073_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d24e92080 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0073_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0074_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0074_g1_upper_body_cmd.npz new file mode 100644 index 000000000..96a9116bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0074_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0075_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0075_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a4f6d53b7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0075_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0076_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0076_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5908937d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0076_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0077_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0077_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e6e7d0514 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0077_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0078_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0078_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38aac0223 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0078_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0079_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0079_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a68541f67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0079_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0080_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0080_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2be9c2696 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0080_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0081_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0081_g1_upper_body_cmd.npz new file mode 100644 index 000000000..97ae7f4c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0081_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0082_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0082_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1cd6a0c89 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0082_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0083_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0083_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f08b65108 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0083_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0084_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0084_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f36d02eae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0084_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0085_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0085_g1_upper_body_cmd.npz new file mode 100644 index 000000000..591a8a7bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0085_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0086_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0086_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7574fa23a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0086_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0087_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0087_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2f5b4d585 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0087_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0088_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0088_g1_upper_body_cmd.npz new file mode 100644 index 000000000..79f6c99fb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0088_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0089_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0089_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b8d61a656 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0089_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0090_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0090_g1_upper_body_cmd.npz new file mode 100644 index 000000000..521ca27c7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0090_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0091_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0091_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8cd05eb98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0091_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0092_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0092_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fed8c47df Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0092_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0093_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0093_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc74e94bd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0093_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0094_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0094_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3838b6ecb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0094_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0095_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0095_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fa00520ca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0095_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0096_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0096_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8b94128be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0096_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0097_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0097_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ba8e8370 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0097_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0098_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0098_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ad2c2741 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0098_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0099_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0099_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38674a7bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0099_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0100_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0100_g1_upper_body_cmd.npz new file mode 100644 index 000000000..82be53113 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0100_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0101_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0101_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ddeb8481 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0101_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0102_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0102_g1_upper_body_cmd.npz new file mode 100644 index 000000000..487af9139 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0102_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0103_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0103_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf6700e9c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0103_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0104_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0104_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce1226ac3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0104_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0105_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0105_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fc2ecd06f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0105_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0106_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0106_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e1657ec7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0106_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0107_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0107_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b11fa2df6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0107_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0108_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0108_g1_upper_body_cmd.npz new file mode 100644 index 000000000..37f6b8647 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0108_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0109_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0109_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d90ab177 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0109_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0110_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0110_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a48c3941d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0110_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0111_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0111_g1_upper_body_cmd.npz new file mode 100644 index 000000000..05fa27dbb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0111_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0112_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0112_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a66cc637c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0112_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0113_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0113_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b9a15c7c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0113_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0114_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0114_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6c9c024f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0114_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0115_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0115_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3bb056d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0115_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0116_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0116_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1b1cbf09 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0116_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0117_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0117_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8590bc1f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0117_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0118_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0118_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0704877b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0118_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0119_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0119_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e4fb2d036 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0119_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0120_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0120_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6d7a957cc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0120_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0121_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0121_g1_upper_body_cmd.npz new file mode 100644 index 000000000..92c7bf68c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0121_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0122_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0122_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d41351858 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0122_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0123_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0123_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8fa1f5327 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0123_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0124_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0124_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fc1668cf4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0124_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0125_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0125_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d96f7a248 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0125_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0126_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0126_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6a2da00e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0126_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0127_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0127_g1_upper_body_cmd.npz new file mode 100644 index 000000000..72551431f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0127_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0128_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0128_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de51564dd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0128_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0129_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0129_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5375d0c06 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0129_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0130_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0130_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa27feeff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0130_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0131_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0131_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3744b4a95 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0131_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0132_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0132_g1_upper_body_cmd.npz new file mode 100644 index 000000000..74a85cd54 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0132_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0133_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0133_g1_upper_body_cmd.npz new file mode 100644 index 000000000..67bace7f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0133_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0134_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0134_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b1f52c77 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0134_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0135_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0135_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e9bf3a23 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0135_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0136_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0136_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9fc40c58a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0136_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0137_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0137_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6de7931c1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0137_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0138_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0138_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c33521bbd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0138_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0139_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0139_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4e616ef22 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0139_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0140_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0140_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f2669697 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0140_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0141_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0141_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d6a53de55 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0141_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0142_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0142_g1_upper_body_cmd.npz new file mode 100644 index 000000000..691bb3a41 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0142_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0143_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0143_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e758b8448 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0143_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0144_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0144_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5f12544ca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0144_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0145_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0145_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62d06283d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0145_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0146_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0146_g1_upper_body_cmd.npz new file mode 100644 index 000000000..48fdd2e55 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0146_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0147_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0147_g1_upper_body_cmd.npz new file mode 100644 index 000000000..434ead01f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0147_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0148_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0148_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0bb85f868 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0148_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0149_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0149_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2846850c1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0149_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0150_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0150_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e8a66ad4d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0150_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0151_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0151_g1_upper_body_cmd.npz new file mode 100644 index 000000000..458f94530 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0151_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0152_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0152_g1_upper_body_cmd.npz new file mode 100644 index 000000000..57ca1d8ba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0152_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0153_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0153_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dfd08cb2a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0153_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0154_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0154_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f97489bdf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0154_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0155_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0155_g1_upper_body_cmd.npz new file mode 100644 index 000000000..199e5aab1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0155_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0156_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0156_g1_upper_body_cmd.npz new file mode 100644 index 000000000..68e304caa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0156_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0157_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0157_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d230544a6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0157_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0158_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0158_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c82a2b830 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0158_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0159_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0159_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c45bc5e1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0159_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0160_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0160_g1_upper_body_cmd.npz new file mode 100644 index 000000000..277912d66 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0160_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0161_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0161_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a3d98c6f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0161_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0162_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0162_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d9ee55631 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0162_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0163_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0163_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6d8d40a8e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0163_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0164_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0164_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d1f530cfe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0164_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0165_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0165_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d41926283 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0165_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0166_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0166_g1_upper_body_cmd.npz new file mode 100644 index 000000000..913845149 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0166_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0167_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0167_g1_upper_body_cmd.npz new file mode 100644 index 000000000..80cdeba2e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0167_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0168_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0168_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7e0f0fb74 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0168_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0169_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0169_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d07e66dff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0169_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0170_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0170_g1_upper_body_cmd.npz new file mode 100644 index 000000000..11c38036d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0170_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0171_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0171_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0e921322f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0171_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0172_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0172_g1_upper_body_cmd.npz new file mode 100644 index 000000000..96f7ba222 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0172_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0173_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0173_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8d07bd864 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0173_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0174_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0174_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2885e09d5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0174_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0175_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0175_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b2d19c420 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0175_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0176_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0176_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d9a146aa9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0176_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0177_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0177_g1_upper_body_cmd.npz new file mode 100644 index 000000000..67c4b14aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0177_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0178_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0178_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aeb360091 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0178_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0179_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0179_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61abb5ea1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0179_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0180_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0180_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c6584bbc3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0180_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0181_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0181_g1_upper_body_cmd.npz new file mode 100644 index 000000000..71cbd0923 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0181_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0182_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0182_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3c26b5391 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0182_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0183_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0183_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a553f538 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0183_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0184_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0184_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f6d974909 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0184_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0185_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0185_g1_upper_body_cmd.npz new file mode 100644 index 000000000..176145b2f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0185_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0186_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0186_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7729ded2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0186_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0187_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0187_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a97d652f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0187_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0188_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0188_g1_upper_body_cmd.npz new file mode 100644 index 000000000..397789c97 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0188_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0189_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0189_g1_upper_body_cmd.npz new file mode 100644 index 000000000..485d6d7e5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0189_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0190_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0190_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a927d483d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0190_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0191_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0191_g1_upper_body_cmd.npz new file mode 100644 index 000000000..890299196 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0191_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0192_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0192_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dad48202d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0192_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0193_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0193_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d4cebaef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0193_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0194_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0194_g1_upper_body_cmd.npz new file mode 100644 index 000000000..202558608 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0194_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0195_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0195_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5d3ab304 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0195_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0196_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0196_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d195098a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0196_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0197_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0197_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ccccaebbb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0197_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0198_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0198_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ef4366a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0198_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0199_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0199_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5a9d7d6e7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0199_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0200_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0200_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ab7ff6da9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0200_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0201_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0201_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3d765f363 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0201_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0202_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0202_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6ded15bd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0202_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0203_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0203_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a2d71bc88 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0203_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0204_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0204_g1_upper_body_cmd.npz new file mode 100644 index 000000000..18965beab Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0204_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0205_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0205_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0fbbc4c8b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0205_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0206_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0206_g1_upper_body_cmd.npz new file mode 100644 index 000000000..938fb5b79 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0206_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0207_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0207_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9be04c03d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0207_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0208_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0208_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6ced0f6e4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0208_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0209_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0209_g1_upper_body_cmd.npz new file mode 100644 index 000000000..169649161 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0209_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0210_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0210_g1_upper_body_cmd.npz new file mode 100644 index 000000000..abbeff434 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0210_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0211_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0211_g1_upper_body_cmd.npz new file mode 100644 index 000000000..30baf5545 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0211_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0212_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0212_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7ff9f4d0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0212_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0213_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0213_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc783211b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0213_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0214_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0214_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4263eb54e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0214_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0215_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0215_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f30e4eb7c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0215_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0216_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0216_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3b9ca0c14 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0216_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0217_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0217_g1_upper_body_cmd.npz new file mode 100644 index 000000000..186d4faf3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0217_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0218_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0218_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b12267305 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0218_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0219_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0219_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5677236f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0219_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0220_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0220_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1f864e08a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0220_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0221_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0221_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cbecdd14d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0221_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0222_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0222_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e58822dcd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0222_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0223_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0223_g1_upper_body_cmd.npz new file mode 100644 index 000000000..12d706390 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0223_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0224_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0224_g1_upper_body_cmd.npz new file mode 100644 index 000000000..04a92971d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0224_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0225_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0225_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b14b60b6f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0225_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0226_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0226_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8862d37c1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0226_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0227_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0227_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c266f7d83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0227_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0228_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0228_g1_upper_body_cmd.npz new file mode 100644 index 000000000..904e3561e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0228_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0229_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0229_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61754bad6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0229_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0230_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0230_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3de6199f3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0230_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0231_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0231_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a8245ae83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0231_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0232_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0232_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4125980ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0232_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0233_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0233_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf8b373c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0233_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0234_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0234_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b07aba3a4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0234_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0235_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0235_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39d62272c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0235_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0236_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0236_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a07cc0875 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0236_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0237_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0237_g1_upper_body_cmd.npz new file mode 100644 index 000000000..478c2a309 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0237_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0238_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0238_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fb99345aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0238_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0239_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0239_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8faca1127 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0239_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0240_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0240_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7189bca5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0240_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0241_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0241_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3b50fc8f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0241_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0242_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0242_g1_upper_body_cmd.npz new file mode 100644 index 000000000..65005e32c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0242_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0243_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0243_g1_upper_body_cmd.npz new file mode 100644 index 000000000..83f87a879 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0243_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0244_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0244_g1_upper_body_cmd.npz new file mode 100644 index 000000000..601bda361 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0244_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0245_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0245_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fe7c5f77e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0245_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0246_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0246_g1_upper_body_cmd.npz new file mode 100644 index 000000000..32ce38c7b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0246_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0247_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0247_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a355e539 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0247_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0248_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0248_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b03556abb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0248_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0249_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0249_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8dceaa200 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0249_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0250_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0250_g1_upper_body_cmd.npz new file mode 100644 index 000000000..42e8e3007 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0250_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0251_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0251_g1_upper_body_cmd.npz new file mode 100644 index 000000000..55de88cac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0251_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0252_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0252_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2784f5fff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0252_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0253_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0253_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f395e87c8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0253_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0254_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0254_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36cfb64f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0254_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0255_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0255_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7f713b0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0255_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0256_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0256_g1_upper_body_cmd.npz new file mode 100644 index 000000000..262b0946a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0256_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0257_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0257_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1f5a5133e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0257_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0258_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0258_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a01b1dce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0258_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0259_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0259_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3bfb9bd0c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0259_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0260_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0260_g1_upper_body_cmd.npz new file mode 100644 index 000000000..24f8f6d7e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0260_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0261_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0261_g1_upper_body_cmd.npz new file mode 100644 index 000000000..efdcf6688 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0261_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0262_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0262_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bb4a39ea4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0262_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0263_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0263_g1_upper_body_cmd.npz new file mode 100644 index 000000000..125e5957a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0263_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0264_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0264_g1_upper_body_cmd.npz new file mode 100644 index 000000000..72c423c0e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0264_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0265_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0265_g1_upper_body_cmd.npz new file mode 100644 index 000000000..897b986f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0265_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0266_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0266_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad1016f96 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0266_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0267_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0267_g1_upper_body_cmd.npz new file mode 100644 index 000000000..860342167 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0267_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0268_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0268_g1_upper_body_cmd.npz new file mode 100644 index 000000000..168a9b5d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0268_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0269_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0269_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3c1d182d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0269_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0270_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0270_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fa3bb5989 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0270_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0271_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0271_g1_upper_body_cmd.npz new file mode 100644 index 000000000..396d5daa8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0271_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0272_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0272_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7bd37af51 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0272_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0273_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0273_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1df84d337 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0273_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0274_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0274_g1_upper_body_cmd.npz new file mode 100644 index 000000000..901e7d283 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0274_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0275_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0275_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bbac27f02 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0275_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0276_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0276_g1_upper_body_cmd.npz new file mode 100644 index 000000000..18f180a1c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0276_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0277_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0277_g1_upper_body_cmd.npz new file mode 100644 index 000000000..848b599bd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0277_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0278_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0278_g1_upper_body_cmd.npz new file mode 100644 index 000000000..68ccd596f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0278_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0279_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0279_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8aab7dedf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0279_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0280_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0280_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9b34eb93c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0280_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0281_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0281_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b9be66d85 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0281_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0282_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0282_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c95e18209 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0282_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0283_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0283_g1_upper_body_cmd.npz new file mode 100644 index 000000000..956495058 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0283_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0284_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0284_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e353acc4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0284_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0285_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0285_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee144dabc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0285_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0286_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0286_g1_upper_body_cmd.npz new file mode 100644 index 000000000..70fd92a28 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0286_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0287_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0287_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7a4dff647 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0287_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0288_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0288_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62b1dd29d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0288_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0289_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0289_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad3d961d5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0289_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0290_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0290_g1_upper_body_cmd.npz new file mode 100644 index 000000000..796f31e0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0290_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0291_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0291_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a8953331 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0291_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0292_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0292_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2f1538e5c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0292_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0293_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0293_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9d2495a9e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0293_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0294_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0294_g1_upper_body_cmd.npz new file mode 100644 index 000000000..98b25d6e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0294_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0295_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0295_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9969ad9d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0295_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0296_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0296_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fd17ca899 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0296_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0297_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0297_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01c2e8168 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0297_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0298_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0298_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e10c64e8e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0298_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0299_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0299_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea1fd3195 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0299_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0300_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0300_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e03647a8f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0300_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0301_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0301_g1_upper_body_cmd.npz new file mode 100644 index 000000000..77143b238 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0301_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0302_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0302_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61158af16 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0302_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0303_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0303_g1_upper_body_cmd.npz new file mode 100644 index 000000000..093a64926 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0303_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0304_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0304_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d1977acd8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0304_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0305_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0305_g1_upper_body_cmd.npz new file mode 100644 index 000000000..99caacf22 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0305_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0306_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0306_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d8aa661e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0306_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0307_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0307_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d07992486 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0307_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0308_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0308_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee957d2c2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0308_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0309_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0309_g1_upper_body_cmd.npz new file mode 100644 index 000000000..21cdfaf10 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0309_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0310_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0310_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e05d8fca1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0310_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0311_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0311_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9035950f3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0311_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0312_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0312_g1_upper_body_cmd.npz new file mode 100644 index 000000000..367ffe3ef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0312_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0313_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0313_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b7cf734ed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0313_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0314_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0314_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7538df5ff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0314_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0315_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0315_g1_upper_body_cmd.npz new file mode 100644 index 000000000..878eff270 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0315_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0316_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0316_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a5827b673 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0316_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0317_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0317_g1_upper_body_cmd.npz new file mode 100644 index 000000000..48fedc078 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0317_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0318_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0318_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f807766e5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0318_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0319_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0319_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c5519e28f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0319_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0320_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0320_g1_upper_body_cmd.npz new file mode 100644 index 000000000..21780ad98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0320_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0321_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0321_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0a0f412f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0321_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0322_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0322_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39756d20e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0322_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0323_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0323_g1_upper_body_cmd.npz new file mode 100644 index 000000000..25a81cc7c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0323_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0324_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0324_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0ca0e5da8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0324_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0325_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0325_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64b477945 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0325_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0326_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0326_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d71bd1274 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0326_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0327_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0327_g1_upper_body_cmd.npz new file mode 100644 index 000000000..08ac3b597 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0327_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0328_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0328_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ee4e6896 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0328_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0329_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0329_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4dc744c0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0329_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0330_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0330_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c8a6baffa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0330_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0331_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0331_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b705764e6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0331_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0332_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0332_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f4168495c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0332_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0333_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0333_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f4ece0e3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0333_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0334_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0334_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9897efb6c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0334_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0335_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0335_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1912ddff0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0335_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0336_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0336_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8a5f63abf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0336_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0337_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0337_g1_upper_body_cmd.npz new file mode 100644 index 000000000..33854afdd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0337_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0338_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0338_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fab32863e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0338_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0339_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0339_g1_upper_body_cmd.npz new file mode 100644 index 000000000..92186abe1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0339_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0340_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0340_g1_upper_body_cmd.npz new file mode 100644 index 000000000..65d3d1850 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0340_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0341_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0341_g1_upper_body_cmd.npz new file mode 100644 index 000000000..edd4b0f03 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0341_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0342_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0342_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c5697f6c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0342_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0343_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0343_g1_upper_body_cmd.npz new file mode 100644 index 000000000..249259e92 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0343_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0344_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0344_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5835ea3a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0344_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0345_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0345_g1_upper_body_cmd.npz new file mode 100644 index 000000000..167e1b652 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0345_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0346_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0346_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad0c5fa4c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0346_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0347_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0347_g1_upper_body_cmd.npz new file mode 100644 index 000000000..959e855ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0347_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0348_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0348_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f98a055e8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0348_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0349_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0349_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ae13d27b6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0349_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0350_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0350_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c2f18ca7f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0350_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0351_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0351_g1_upper_body_cmd.npz new file mode 100644 index 000000000..11da933f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0351_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0352_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0352_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5158fd383 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0352_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0353_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0353_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad1ae1f43 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0353_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0354_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0354_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c608e728a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0354_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0355_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0355_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec6881ade Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0355_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0356_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0356_g1_upper_body_cmd.npz new file mode 100644 index 000000000..15722b39a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0356_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0357_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0357_g1_upper_body_cmd.npz new file mode 100644 index 000000000..929409803 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0357_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0358_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0358_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ce3046f4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0358_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0359_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0359_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b6f93018c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0359_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0360_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0360_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ba019c0f2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0360_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0361_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0361_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7dce03df0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0361_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0362_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0362_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5edef68b3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0362_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0363_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0363_g1_upper_body_cmd.npz new file mode 100644 index 000000000..edd3b257b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0363_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0364_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0364_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7f7dc1ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0364_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0365_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0365_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e288ad82a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0365_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0366_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0366_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5ee0a951 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0366_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0367_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0367_g1_upper_body_cmd.npz new file mode 100644 index 000000000..edb96f028 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0367_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0368_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0368_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e13a7bf83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0368_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0369_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0369_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3aa12a433 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0369_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0370_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0370_g1_upper_body_cmd.npz new file mode 100644 index 000000000..388ae11d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0370_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0371_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0371_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1973769d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0371_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0372_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0372_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4d40e1935 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0372_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0373_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0373_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c0675582f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0373_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0374_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0374_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a92e9c9fb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0374_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0375_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0375_g1_upper_body_cmd.npz new file mode 100644 index 000000000..57d9e214a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0375_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0376_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0376_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef64652a4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0376_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0377_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0377_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ee8dee24 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0377_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0378_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0378_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fabba88fc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0378_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0379_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0379_g1_upper_body_cmd.npz new file mode 100644 index 000000000..40ed73692 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0379_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0380_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0380_g1_upper_body_cmd.npz new file mode 100644 index 000000000..edccce21a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0380_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0381_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0381_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5ed75668b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0381_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0382_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0382_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4c60f3087 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0382_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0383_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0383_g1_upper_body_cmd.npz new file mode 100644 index 000000000..231051c44 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0383_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0384_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0384_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c90f6fea2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0384_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0385_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0385_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2ab85c30a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0385_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0386_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0386_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9d9c15fb1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0386_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0387_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0387_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e21737d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0387_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0388_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0388_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e202b9a2c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0388_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0389_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0389_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4300cc9ef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0389_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0390_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0390_g1_upper_body_cmd.npz new file mode 100644 index 000000000..203d75be3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0390_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0391_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0391_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f036023c9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0391_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0392_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0392_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e85ae012d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0392_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0393_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0393_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f5434677a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0393_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0394_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0394_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fba25d8db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0394_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0395_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0395_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9fe51e177 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0395_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0396_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0396_g1_upper_body_cmd.npz new file mode 100644 index 000000000..614fcd9aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0396_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0397_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0397_g1_upper_body_cmd.npz new file mode 100644 index 000000000..48e5abbaa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0397_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0398_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0398_g1_upper_body_cmd.npz new file mode 100644 index 000000000..70f15cb19 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0398_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0399_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0399_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5afd1ac1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0399_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0400_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0400_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a56149b90 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0400_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0401_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0401_g1_upper_body_cmd.npz new file mode 100644 index 000000000..24f3088ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0401_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0402_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0402_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8f2257232 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0402_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0403_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0403_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b88dab49e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0403_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0404_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0404_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5a5fa71a8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0404_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0405_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0405_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f38e8814 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0405_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0406_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0406_g1_upper_body_cmd.npz new file mode 100644 index 000000000..669adbf92 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0406_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0407_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0407_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62b5bd9c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0407_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0408_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0408_g1_upper_body_cmd.npz new file mode 100644 index 000000000..55c36a455 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0408_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0409_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0409_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad8cd1d52 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0409_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0410_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0410_g1_upper_body_cmd.npz new file mode 100644 index 000000000..922e00afa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0410_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0411_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0411_g1_upper_body_cmd.npz new file mode 100644 index 000000000..084f94625 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0411_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0412_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0412_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5a44e5acb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0412_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0413_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0413_g1_upper_body_cmd.npz new file mode 100644 index 000000000..caa30c379 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0413_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0414_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0414_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef7b1e25e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0414_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0415_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0415_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6518e9347 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0415_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0416_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0416_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a602c6be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0416_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0417_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0417_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e1dceaa2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0417_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0418_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0418_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d6b4a9fe4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0418_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0419_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0419_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f55e96b75 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0419_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0420_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0420_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4254e40c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0420_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0421_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0421_g1_upper_body_cmd.npz new file mode 100644 index 000000000..61bfc7e76 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0421_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0422_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0422_g1_upper_body_cmd.npz new file mode 100644 index 000000000..549669469 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0422_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0423_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0423_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b50ba2c69 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0423_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0424_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0424_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dbce72212 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0424_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0425_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0425_g1_upper_body_cmd.npz new file mode 100644 index 000000000..77fd8651c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0425_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0426_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0426_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b24530804 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0426_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0427_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0427_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6072c5fb3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0427_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0428_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0428_g1_upper_body_cmd.npz new file mode 100644 index 000000000..659482152 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0428_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0429_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0429_g1_upper_body_cmd.npz new file mode 100644 index 000000000..456ef4f4d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0429_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0430_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0430_g1_upper_body_cmd.npz new file mode 100644 index 000000000..60186e95b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0430_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0431_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0431_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0920e3083 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0431_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0432_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0432_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df747f252 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0432_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0433_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0433_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1f8216a67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0433_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0434_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0434_g1_upper_body_cmd.npz new file mode 100644 index 000000000..44420981d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0434_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0435_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0435_g1_upper_body_cmd.npz new file mode 100644 index 000000000..275813f5a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0435_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0436_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0436_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d6fe914ab Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0436_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0437_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0437_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0e2391ec1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0437_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0438_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0438_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f46167df0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0438_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0439_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0439_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38c76d2c1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0439_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0440_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0440_g1_upper_body_cmd.npz new file mode 100644 index 000000000..798127f47 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0440_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0441_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0441_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a003c95bf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0441_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0442_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0442_g1_upper_body_cmd.npz new file mode 100644 index 000000000..740194ce7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0442_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0443_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0443_g1_upper_body_cmd.npz new file mode 100644 index 000000000..875fd1b5c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0443_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0444_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0444_g1_upper_body_cmd.npz new file mode 100644 index 000000000..450a0174b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0444_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0445_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0445_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e8693406f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0445_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0446_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0446_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b560cb411 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0446_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0447_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0447_g1_upper_body_cmd.npz new file mode 100644 index 000000000..69be05dc1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0447_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0448_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0448_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0c531cb4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0448_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0449_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0449_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2dccd7ef3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0449_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0450_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0450_g1_upper_body_cmd.npz new file mode 100644 index 000000000..108631c8d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0450_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0451_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0451_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7180024f3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0451_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0452_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0452_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2dc99212b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0452_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0453_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0453_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fd7a83de4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0453_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0454_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0454_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9724badfb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0454_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0455_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0455_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dca77bdf2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0455_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0456_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0456_g1_upper_body_cmd.npz new file mode 100644 index 000000000..082cb0902 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0456_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0457_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0457_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7bbbf340 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0457_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0458_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0458_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e492d59ae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0458_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0459_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0459_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c299d24bd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0459_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0460_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0460_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cd6985395 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0460_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0461_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0461_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9b4eee242 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0461_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0462_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0462_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e5cf4a09 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0462_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0463_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0463_g1_upper_body_cmd.npz new file mode 100644 index 000000000..04209129d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0463_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0464_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0464_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bcf1cefa7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0464_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0465_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0465_g1_upper_body_cmd.npz new file mode 100644 index 000000000..54aada60d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0465_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0466_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0466_g1_upper_body_cmd.npz new file mode 100644 index 000000000..67f9b29b7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0466_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0467_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0467_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7e705b04d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0467_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0468_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0468_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a7053b6b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0468_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0469_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0469_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f84e96ca8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0469_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0470_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0470_g1_upper_body_cmd.npz new file mode 100644 index 000000000..334ab2ef7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0470_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0471_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0471_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1389961a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0471_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0472_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0472_g1_upper_body_cmd.npz new file mode 100644 index 000000000..353138522 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0472_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0473_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0473_g1_upper_body_cmd.npz new file mode 100644 index 000000000..338d3d0f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0473_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0474_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0474_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a661901f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0474_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0475_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0475_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0255b65f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0475_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0476_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0476_g1_upper_body_cmd.npz new file mode 100644 index 000000000..34e93be9f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0476_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0477_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0477_g1_upper_body_cmd.npz new file mode 100644 index 000000000..22a4d140b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0477_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0478_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0478_g1_upper_body_cmd.npz new file mode 100644 index 000000000..85a0c93db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0478_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0479_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0479_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a674c7eb5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0479_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0480_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0480_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3454d167 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0480_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0481_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0481_g1_upper_body_cmd.npz new file mode 100644 index 000000000..72e869a2e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0481_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0482_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0482_g1_upper_body_cmd.npz new file mode 100644 index 000000000..443fb534e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0482_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0483_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0483_g1_upper_body_cmd.npz new file mode 100644 index 000000000..34cc39053 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0483_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0484_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0484_g1_upper_body_cmd.npz new file mode 100644 index 000000000..75ea58e8c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0484_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0485_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0485_g1_upper_body_cmd.npz new file mode 100644 index 000000000..12c0d4ce7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0485_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0486_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0486_g1_upper_body_cmd.npz new file mode 100644 index 000000000..16031277d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0486_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0487_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0487_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ac21a53f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0487_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0488_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0488_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e03a2041 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0488_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0489_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0489_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed70f5bd5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0489_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0490_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0490_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a698f9a71 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0490_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0491_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0491_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d76608304 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0491_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0492_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0492_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5fb57c888 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0492_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0493_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0493_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f6fc2c6e4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0493_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0494_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0494_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a3a55e9c5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0494_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0495_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0495_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0bfdee25d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0495_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0496_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0496_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b86b7905d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0496_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0497_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0497_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b9c4534d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0497_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0498_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0498_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8fdfba3ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0498_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0499_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0499_g1_upper_body_cmd.npz new file mode 100644 index 000000000..649f7c015 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0499_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0500_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0500_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2dd153237 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0500_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0501_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0501_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a8f9356e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0501_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0502_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0502_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0fa92807d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0502_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0503_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0503_g1_upper_body_cmd.npz new file mode 100644 index 000000000..94bda7815 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0503_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0504_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0504_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a91e08a86 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0504_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0505_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0505_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4bde3d591 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0505_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0506_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0506_g1_upper_body_cmd.npz new file mode 100644 index 000000000..30452f77d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0506_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0507_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0507_g1_upper_body_cmd.npz new file mode 100644 index 000000000..118eba092 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0507_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0508_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0508_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e437dd7f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0508_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0509_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0509_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0f3097fbd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0509_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0510_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0510_g1_upper_body_cmd.npz new file mode 100644 index 000000000..07374e3c7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0510_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0511_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0511_g1_upper_body_cmd.npz new file mode 100644 index 000000000..33c033aa4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0511_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0512_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0512_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d52d951f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0512_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0513_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0513_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f385d96b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0513_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0514_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0514_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a84c52e82 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0514_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0515_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0515_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a2a9e3458 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0515_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0516_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0516_g1_upper_body_cmd.npz new file mode 100644 index 000000000..028cd06ff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0516_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0517_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0517_g1_upper_body_cmd.npz new file mode 100644 index 000000000..50ed49794 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0517_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0518_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0518_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d31877e73 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0518_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0519_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0519_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4197fd726 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0519_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0520_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0520_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0190cd178 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0520_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0521_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0521_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d8814c4fd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0521_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0522_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0522_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf3cc69ab Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0522_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0523_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0523_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a31d72d75 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0523_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0524_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0524_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4792bb0d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0524_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0525_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0525_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1fc230c4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0525_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0526_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0526_g1_upper_body_cmd.npz new file mode 100644 index 000000000..526e78ddf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0526_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0527_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0527_g1_upper_body_cmd.npz new file mode 100644 index 000000000..72f995419 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0527_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0528_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0528_g1_upper_body_cmd.npz new file mode 100644 index 000000000..584395de1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0528_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0529_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0529_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4eb28edff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0529_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0530_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0530_g1_upper_body_cmd.npz new file mode 100644 index 000000000..621e8b662 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0530_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0531_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0531_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8ab889927 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0531_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0532_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0532_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6abf9f939 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0532_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0533_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0533_g1_upper_body_cmd.npz new file mode 100644 index 000000000..44d5c49b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0533_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0534_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0534_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f73f62b9c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0534_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0535_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0535_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01f1051ea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0535_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0536_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0536_g1_upper_body_cmd.npz new file mode 100644 index 000000000..423717514 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0536_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0537_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0537_g1_upper_body_cmd.npz new file mode 100644 index 000000000..348e77d30 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0537_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0538_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0538_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aebe59a91 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0538_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0539_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0539_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e189bd77 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0539_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0540_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0540_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf992a90e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0540_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0541_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0541_g1_upper_body_cmd.npz new file mode 100644 index 000000000..189603455 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0541_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0542_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0542_g1_upper_body_cmd.npz new file mode 100644 index 000000000..079ee3aa0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0542_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0543_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0543_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6161c6794 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0543_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0544_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0544_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6f6b76ad5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0544_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0545_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0545_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ca9bc033c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0545_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0546_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0546_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec3680567 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0546_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0547_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0547_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc5815bba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0547_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0548_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0548_g1_upper_body_cmd.npz new file mode 100644 index 000000000..345ee62be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0548_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0549_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0549_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0dfb1c687 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0549_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0550_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0550_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f3df2b15 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0550_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0551_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0551_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8449781ba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0551_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0552_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0552_g1_upper_body_cmd.npz new file mode 100644 index 000000000..614b67d7f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0552_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0553_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0553_g1_upper_body_cmd.npz new file mode 100644 index 000000000..238820655 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0553_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0554_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0554_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3b9d9eeaa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0554_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0555_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0555_g1_upper_body_cmd.npz new file mode 100644 index 000000000..50b33c1d8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0555_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0556_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0556_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ff5b28b59 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0556_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0557_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0557_g1_upper_body_cmd.npz new file mode 100644 index 000000000..eb5cacb64 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0557_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0558_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0558_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3b89d346 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0558_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0559_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0559_g1_upper_body_cmd.npz new file mode 100644 index 000000000..afddb2571 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0559_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0560_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0560_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a42fd5b80 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0560_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0561_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0561_g1_upper_body_cmd.npz new file mode 100644 index 000000000..025bec80d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0561_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0562_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0562_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4bf309524 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0562_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0563_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0563_g1_upper_body_cmd.npz new file mode 100644 index 000000000..398b678a8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0563_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0564_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0564_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f0e1ed712 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0564_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0565_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0565_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fb8ea312f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0565_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0566_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0566_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7989bc8d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0566_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0567_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0567_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c25d7bf1b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0567_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0568_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0568_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8a712ead0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0568_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0569_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0569_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea38c7ad9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0569_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0570_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0570_g1_upper_body_cmd.npz new file mode 100644 index 000000000..92cfbc047 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0570_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0571_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0571_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c420e6c27 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0571_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0572_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0572_g1_upper_body_cmd.npz new file mode 100644 index 000000000..621103a60 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0572_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0573_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0573_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a56dc9059 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0573_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0574_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0574_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9b3f87d4d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0574_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0575_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0575_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b469eafe9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0575_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0576_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0576_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7446afcc4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0576_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0577_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0577_g1_upper_body_cmd.npz new file mode 100644 index 000000000..580abc0f9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0577_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0578_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0578_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0c40a51e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0578_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0579_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0579_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5845e5b56 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0579_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0580_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0580_g1_upper_body_cmd.npz new file mode 100644 index 000000000..57f525ab4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0580_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0581_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0581_g1_upper_body_cmd.npz new file mode 100644 index 000000000..68fcb44d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0581_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0582_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0582_g1_upper_body_cmd.npz new file mode 100644 index 000000000..34811eaee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0582_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0583_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0583_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed1cc74e3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0583_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0584_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0584_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8cbeb333d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0584_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0585_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0585_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ab7ce4f0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0585_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0586_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0586_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0317894c9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0586_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0587_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0587_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5b31636b1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0587_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0588_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0588_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5fe2a219f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0588_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0589_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0589_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0aab569f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0589_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0590_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0590_g1_upper_body_cmd.npz new file mode 100644 index 000000000..720214191 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0590_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0591_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0591_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4f2723455 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0591_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0592_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0592_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b7f220b9d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0592_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0593_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0593_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b0384d810 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0593_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0594_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0594_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1d5ad2de4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0594_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0595_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0595_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c9512a0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0595_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0596_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0596_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e118f1e1a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0596_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0597_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0597_g1_upper_body_cmd.npz new file mode 100644 index 000000000..daeff837e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0597_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0598_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0598_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f2162942b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0598_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0599_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0599_g1_upper_body_cmd.npz new file mode 100644 index 000000000..43fb26a8c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_left/openxr26_joints_left_b00_t0599_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0000_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0000_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f554490d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0000_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0001_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0001_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0b98bd6da Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0001_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0002_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0002_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef2e8d357 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0002_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0003_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0003_g1_upper_body_cmd.npz new file mode 100644 index 000000000..60df672df Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0003_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0004_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0004_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d63849f78 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0004_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0005_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0005_g1_upper_body_cmd.npz new file mode 100644 index 000000000..945d35cca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0005_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0006_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0006_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a79f3d15 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0006_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0007_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0007_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a4502963c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0007_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0008_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0008_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e21ee9dae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0008_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0009_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0009_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc92b9d81 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0009_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0010_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0010_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9cd2d1a9e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0010_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0011_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0011_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5ac04e302 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0011_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0012_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0012_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e1359cf90 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0012_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0013_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0013_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7a2e7cdcd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0013_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0014_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0014_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b14741068 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0014_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0015_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0015_g1_upper_body_cmd.npz new file mode 100644 index 000000000..88cef1283 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0015_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0016_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0016_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b38c1fdac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0016_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0017_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0017_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41a58c306 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0017_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0018_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0018_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee5b2f01d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0018_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0019_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0019_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dff73d1dd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0019_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0020_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0020_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c90788fba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0020_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0021_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0021_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e249ed0f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0021_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0022_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0022_g1_upper_body_cmd.npz new file mode 100644 index 000000000..840c2df23 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0022_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0023_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0023_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41fb537c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0023_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0024_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0024_g1_upper_body_cmd.npz new file mode 100644 index 000000000..304617396 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0024_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0025_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0025_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa1ded1bb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0025_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0026_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0026_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8affb8091 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0026_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0027_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0027_g1_upper_body_cmd.npz new file mode 100644 index 000000000..40de6ac2b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0027_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0028_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0028_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5fc687591 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0028_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0029_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0029_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9bad26b6b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0029_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0030_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0030_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7157034c2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0030_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0031_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0031_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f69559173 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0031_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0032_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0032_g1_upper_body_cmd.npz new file mode 100644 index 000000000..848e41b97 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0032_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0033_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0033_g1_upper_body_cmd.npz new file mode 100644 index 000000000..993a51572 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0033_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0034_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0034_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e2dce5b2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0034_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0035_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0035_g1_upper_body_cmd.npz new file mode 100644 index 000000000..614f872c2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0035_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0036_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0036_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a5e397ae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0036_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0037_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0037_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c83f38c2f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0037_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0038_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0038_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1144b60f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0038_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0039_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0039_g1_upper_body_cmd.npz new file mode 100644 index 000000000..924350757 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0039_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0040_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0040_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d86009c0e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0040_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0041_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0041_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1d11a578 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0041_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0042_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0042_g1_upper_body_cmd.npz new file mode 100644 index 000000000..10198ec3e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0042_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0043_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0043_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6bafc01a4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0043_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0044_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0044_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a05b175e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0044_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0045_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0045_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa5b63ef3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0045_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0046_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0046_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d06aca1ea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0046_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0047_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0047_g1_upper_body_cmd.npz new file mode 100644 index 000000000..740cbf845 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0047_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0048_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0048_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3313bf151 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0048_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0049_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0049_g1_upper_body_cmd.npz new file mode 100644 index 000000000..148d28865 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0049_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0050_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0050_g1_upper_body_cmd.npz new file mode 100644 index 000000000..17403af98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0050_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0051_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0051_g1_upper_body_cmd.npz new file mode 100644 index 000000000..06d5b2505 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0051_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0052_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0052_g1_upper_body_cmd.npz new file mode 100644 index 000000000..589e85d16 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0052_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0053_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0053_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0199efbc0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0053_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0054_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0054_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef9030a0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0054_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0055_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0055_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a229c8b61 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0055_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0056_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0056_g1_upper_body_cmd.npz new file mode 100644 index 000000000..90d7e867d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0056_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0057_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0057_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a197f31f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0057_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0058_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0058_g1_upper_body_cmd.npz new file mode 100644 index 000000000..13b6020dc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0058_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0059_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0059_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d16f99a5a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0059_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0060_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0060_g1_upper_body_cmd.npz new file mode 100644 index 000000000..be73be2e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0060_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0061_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0061_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e7f07c34b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0061_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0062_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0062_g1_upper_body_cmd.npz new file mode 100644 index 000000000..41dd8bcdc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0062_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0063_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0063_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a674a2821 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0063_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0064_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0064_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dddf0c44c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0064_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0065_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0065_g1_upper_body_cmd.npz new file mode 100644 index 000000000..421b44280 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0065_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0066_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0066_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ff7b8a02f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0066_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0067_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0067_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6ded4430b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0067_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0068_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0068_g1_upper_body_cmd.npz new file mode 100644 index 000000000..34661dbad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0068_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0069_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0069_g1_upper_body_cmd.npz new file mode 100644 index 000000000..101a6945c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0069_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0070_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0070_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f710cfbe0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0070_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0071_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0071_g1_upper_body_cmd.npz new file mode 100644 index 000000000..acae42cf1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0071_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0072_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0072_g1_upper_body_cmd.npz new file mode 100644 index 000000000..871c3659e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0072_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0073_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0073_g1_upper_body_cmd.npz new file mode 100644 index 000000000..839faf17e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0073_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0074_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0074_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e565175a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0074_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0075_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0075_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aef726625 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0075_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0076_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0076_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3ee87f494 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0076_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0077_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0077_g1_upper_body_cmd.npz new file mode 100644 index 000000000..329b504ed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0077_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0078_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0078_g1_upper_body_cmd.npz new file mode 100644 index 000000000..11d8044cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0078_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0079_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0079_g1_upper_body_cmd.npz new file mode 100644 index 000000000..58ff4303c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0079_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0080_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0080_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7f5c72138 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0080_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0081_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0081_g1_upper_body_cmd.npz new file mode 100644 index 000000000..299a4166c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0081_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0082_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0082_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fad0608be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0082_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0083_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0083_g1_upper_body_cmd.npz new file mode 100644 index 000000000..97222b383 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0083_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0084_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0084_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aabf1bb87 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0084_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0085_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0085_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d53ca6aa8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0085_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0086_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0086_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1b2020345 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0086_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0087_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0087_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bf0619012 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0087_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0088_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0088_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e5a917057 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0088_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0089_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0089_g1_upper_body_cmd.npz new file mode 100644 index 000000000..339cb0b98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0089_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0090_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0090_g1_upper_body_cmd.npz new file mode 100644 index 000000000..53e0b6edd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0090_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0091_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0091_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8b6c35850 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0091_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0092_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0092_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4703feddf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0092_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0093_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0093_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62234ffdc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0093_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0094_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0094_g1_upper_body_cmd.npz new file mode 100644 index 000000000..876fe0b89 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0094_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0095_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0095_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f461c2d78 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0095_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0096_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0096_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a1627830 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0096_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0097_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0097_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd16c731d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0097_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0098_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0098_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a667a2216 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0098_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0099_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0099_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fe9be9a21 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0099_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0100_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0100_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed5b0b2b4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0100_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0101_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0101_g1_upper_body_cmd.npz new file mode 100644 index 000000000..121fe6fa3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0101_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0102_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0102_g1_upper_body_cmd.npz new file mode 100644 index 000000000..edf10ccd5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0102_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0103_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0103_g1_upper_body_cmd.npz new file mode 100644 index 000000000..754950c6e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0103_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0104_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0104_g1_upper_body_cmd.npz new file mode 100644 index 000000000..482da45de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0104_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0105_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0105_g1_upper_body_cmd.npz new file mode 100644 index 000000000..535f596ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0105_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0106_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0106_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9cf0a6bb5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0106_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0107_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0107_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9a56fe7b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0107_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0108_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0108_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a98a69f1c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0108_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0109_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0109_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b30fb51fe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0109_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0110_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0110_g1_upper_body_cmd.npz new file mode 100644 index 000000000..05f47fee3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0110_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0111_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0111_g1_upper_body_cmd.npz new file mode 100644 index 000000000..146ee6025 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0111_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0112_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0112_g1_upper_body_cmd.npz new file mode 100644 index 000000000..115185099 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0112_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0113_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0113_g1_upper_body_cmd.npz new file mode 100644 index 000000000..129461e34 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0113_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0114_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0114_g1_upper_body_cmd.npz new file mode 100644 index 000000000..46c925c6d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0114_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0115_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0115_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2d9e0b03e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0115_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0116_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0116_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5fc2f9d9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0116_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0117_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0117_g1_upper_body_cmd.npz new file mode 100644 index 000000000..15d4071af Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0117_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0118_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0118_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e4e2af1b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0118_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0119_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0119_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2e6482640 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0119_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0120_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0120_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e1c95e6b3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0120_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0121_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0121_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0858eadb8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0121_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0122_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0122_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0e5307358 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0122_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0123_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0123_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7d5ddd61d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0123_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0124_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0124_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c7341fe30 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0124_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0125_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0125_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38a29aaa7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0125_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0126_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0126_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fc98b1b45 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0126_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0127_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0127_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a748801f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0127_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0128_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0128_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a35f066a7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0128_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0129_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0129_g1_upper_body_cmd.npz new file mode 100644 index 000000000..60bf98b23 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0129_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0130_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0130_g1_upper_body_cmd.npz new file mode 100644 index 000000000..584daed8e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0130_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0131_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0131_g1_upper_body_cmd.npz new file mode 100644 index 000000000..34f86a34d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0131_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0132_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0132_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4acd9f0c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0132_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0133_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0133_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5c29b98a8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0133_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0134_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0134_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8514f7f39 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0134_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0135_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0135_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e8b851a71 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0135_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0136_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0136_g1_upper_body_cmd.npz new file mode 100644 index 000000000..acb1d390c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0136_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0137_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0137_g1_upper_body_cmd.npz new file mode 100644 index 000000000..770e43bcd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0137_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0138_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0138_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e464cbd59 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0138_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0139_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0139_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7a9664cce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0139_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0140_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0140_g1_upper_body_cmd.npz new file mode 100644 index 000000000..09fe03ec7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0140_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0141_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0141_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4d039c963 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0141_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0142_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0142_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6cfd6904d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0142_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0143_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0143_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c120ec5a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0143_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0144_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0144_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e332a35a7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0144_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0145_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0145_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b41d95fe3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0145_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0146_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0146_g1_upper_body_cmd.npz new file mode 100644 index 000000000..525fa63ea Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0146_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0147_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0147_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c2c993650 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0147_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0148_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0148_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4dac710a9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0148_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0149_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0149_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3edcf1a4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0149_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0150_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0150_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7ab668855 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0150_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0151_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0151_g1_upper_body_cmd.npz new file mode 100644 index 000000000..59d1c4b32 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0151_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0152_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0152_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a4280458f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0152_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0153_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0153_g1_upper_body_cmd.npz new file mode 100644 index 000000000..204815067 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0153_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0154_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0154_g1_upper_body_cmd.npz new file mode 100644 index 000000000..acf746a88 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0154_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0155_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0155_g1_upper_body_cmd.npz new file mode 100644 index 000000000..80daa6de7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0155_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0156_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0156_g1_upper_body_cmd.npz new file mode 100644 index 000000000..42577dc98 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0156_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0157_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0157_g1_upper_body_cmd.npz new file mode 100644 index 000000000..77abe2196 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0157_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0158_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0158_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec45bf31b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0158_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0159_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0159_g1_upper_body_cmd.npz new file mode 100644 index 000000000..131db5958 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0159_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0160_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0160_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de60858b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0160_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0161_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0161_g1_upper_body_cmd.npz new file mode 100644 index 000000000..161a0e573 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0161_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0162_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0162_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8db8da7e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0162_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0163_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0163_g1_upper_body_cmd.npz new file mode 100644 index 000000000..47fab9a5a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0163_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0164_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0164_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f4d8fb0b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0164_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0165_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0165_g1_upper_body_cmd.npz new file mode 100644 index 000000000..70deea0a0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0165_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0166_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0166_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ac016106a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0166_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0167_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0167_g1_upper_body_cmd.npz new file mode 100644 index 000000000..286196b33 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0167_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0168_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0168_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bba402d28 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0168_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0169_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0169_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2f3fb5ba5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0169_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0170_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0170_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e3c63e005 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0170_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0171_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0171_g1_upper_body_cmd.npz new file mode 100644 index 000000000..03cc9ec03 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0171_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0172_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0172_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b3a9e8a68 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0172_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0173_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0173_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef6f53645 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0173_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0174_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0174_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5058eea72 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0174_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0175_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0175_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df34e17db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0175_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0176_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0176_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e2d015e88 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0176_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0177_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0177_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c57439758 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0177_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0178_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0178_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1d45cb821 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0178_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0179_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0179_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9be4da1e5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0179_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0180_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0180_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7971d1393 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0180_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0181_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0181_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9ae75ee58 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0181_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0182_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0182_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9fe6e81e7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0182_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0183_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0183_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b646d7c4a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0183_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0184_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0184_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2100085b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0184_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0185_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0185_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc8650da7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0185_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0186_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0186_g1_upper_body_cmd.npz new file mode 100644 index 000000000..feefd3e9c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0186_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0187_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0187_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c87db815e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0187_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0188_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0188_g1_upper_body_cmd.npz new file mode 100644 index 000000000..671a78b2d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0188_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0189_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0189_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d42583ff5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0189_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0190_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0190_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2245ea907 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0190_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0191_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0191_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c61190af9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0191_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0192_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0192_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a9fc0514 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0192_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0193_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0193_g1_upper_body_cmd.npz new file mode 100644 index 000000000..640ba7723 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0193_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0194_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0194_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6570749f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0194_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0195_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0195_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a14c218e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0195_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0196_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0196_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fd76dff2c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0196_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0197_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0197_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01a6fe20e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0197_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0198_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0198_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7dd7f5e4d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0198_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0199_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0199_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3aecfbfae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0199_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0200_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0200_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3e3e4270d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0200_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0201_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0201_g1_upper_body_cmd.npz new file mode 100644 index 000000000..08275f338 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0201_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0202_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0202_g1_upper_body_cmd.npz new file mode 100644 index 000000000..93cc58bad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0202_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0203_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0203_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a47e35865 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0203_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0204_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0204_g1_upper_body_cmd.npz new file mode 100644 index 000000000..abc22c44f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0204_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0205_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0205_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a46e859f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0205_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0206_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0206_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f34887972 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0206_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0207_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0207_g1_upper_body_cmd.npz new file mode 100644 index 000000000..649008952 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0207_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0208_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0208_g1_upper_body_cmd.npz new file mode 100644 index 000000000..08639a305 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0208_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0209_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0209_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fe75dadfd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0209_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0210_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0210_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c9f483e1b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0210_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0211_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0211_g1_upper_body_cmd.npz new file mode 100644 index 000000000..240b6a6aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0211_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0212_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0212_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f3336ed8a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0212_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0213_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0213_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cd5c72f43 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0213_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0214_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0214_g1_upper_body_cmd.npz new file mode 100644 index 000000000..11b180fd7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0214_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0215_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0215_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f63af981f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0215_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0216_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0216_g1_upper_body_cmd.npz new file mode 100644 index 000000000..006be9d0e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0216_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0217_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0217_g1_upper_body_cmd.npz new file mode 100644 index 000000000..63c9155cd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0217_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0218_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0218_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3edc45c6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0218_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0219_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0219_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce45c6fec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0219_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0220_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0220_g1_upper_body_cmd.npz new file mode 100644 index 000000000..68e99bead Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0220_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0221_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0221_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2e87dc7ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0221_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0222_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0222_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9595fab1a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0222_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0223_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0223_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6048297d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0223_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0224_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0224_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0f464552 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0224_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0225_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0225_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6c8e7ea16 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0225_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0226_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0226_g1_upper_body_cmd.npz new file mode 100644 index 000000000..624610c58 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0226_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0227_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0227_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1a979243f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0227_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0228_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0228_g1_upper_body_cmd.npz new file mode 100644 index 000000000..eaf25f989 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0228_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0229_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0229_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9345989e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0229_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0230_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0230_g1_upper_body_cmd.npz new file mode 100644 index 000000000..827c32646 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0230_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0231_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0231_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ebd0a69c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0231_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0232_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0232_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9dd9bbe0c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0232_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0233_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0233_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2cf7e3577 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0233_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0234_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0234_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f648330d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0234_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0235_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0235_g1_upper_body_cmd.npz new file mode 100644 index 000000000..03bc14e04 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0235_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0236_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0236_g1_upper_body_cmd.npz new file mode 100644 index 000000000..692791358 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0236_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0237_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0237_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9112038bc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0237_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0238_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0238_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5503ef43a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0238_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0239_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0239_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2b4122951 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0239_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0240_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0240_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8b0bdc1d9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0240_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0241_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0241_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0074fb92 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0241_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0242_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0242_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2500f62a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0242_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0243_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0243_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2b13a07e5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0243_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0244_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0244_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6d89a1ce8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0244_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0245_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0245_g1_upper_body_cmd.npz new file mode 100644 index 000000000..de1dc28b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0245_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0246_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0246_g1_upper_body_cmd.npz new file mode 100644 index 000000000..29bf8c012 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0246_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0247_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0247_g1_upper_body_cmd.npz new file mode 100644 index 000000000..64e0c9102 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0247_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0248_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0248_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3feb5b2d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0248_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0249_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0249_g1_upper_body_cmd.npz new file mode 100644 index 000000000..247252995 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0249_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0250_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0250_g1_upper_body_cmd.npz new file mode 100644 index 000000000..62f8f9f82 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0250_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0251_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0251_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bcb1749af Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0251_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0252_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0252_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1450a9d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0252_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0253_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0253_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a8ae0f853 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0253_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0254_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0254_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c9dcadf9a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0254_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0255_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0255_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee0df5e87 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0255_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0256_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0256_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cd2b5a565 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0256_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0257_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0257_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bad9991a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0257_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0258_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0258_g1_upper_body_cmd.npz new file mode 100644 index 000000000..679ceba36 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0258_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0259_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0259_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b8b10f719 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0259_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0260_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0260_g1_upper_body_cmd.npz new file mode 100644 index 000000000..14de28e04 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0260_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0261_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0261_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5f1074cff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0261_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0262_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0262_g1_upper_body_cmd.npz new file mode 100644 index 000000000..06047c696 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0262_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0263_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0263_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e64922e3c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0263_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0264_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0264_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf4f736ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0264_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0265_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0265_g1_upper_body_cmd.npz new file mode 100644 index 000000000..47abeccca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0265_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0266_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0266_g1_upper_body_cmd.npz new file mode 100644 index 000000000..340803f42 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0266_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0267_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0267_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c85a5df3d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0267_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0268_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0268_g1_upper_body_cmd.npz new file mode 100644 index 000000000..043361d4b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0268_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0269_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0269_g1_upper_body_cmd.npz new file mode 100644 index 000000000..049385aba Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0269_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0270_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0270_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8837361f3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0270_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0271_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0271_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39aeae342 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0271_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0272_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0272_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4c0c20e86 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0272_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0273_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0273_g1_upper_body_cmd.npz new file mode 100644 index 000000000..92456c653 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0273_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0274_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0274_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ac6108b65 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0274_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0275_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0275_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7396b8295 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0275_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0276_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0276_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cde15db1f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0276_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0277_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0277_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9dc87a7df Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0277_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0278_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0278_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f7c3cd5a6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0278_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0279_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0279_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d83bbe681 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0279_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0280_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0280_g1_upper_body_cmd.npz new file mode 100644 index 000000000..95ab85cc4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0280_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0281_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0281_g1_upper_body_cmd.npz new file mode 100644 index 000000000..899fd6fed Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0281_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0282_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0282_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d5f300dff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0282_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0283_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0283_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0ffcb415c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0283_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0284_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0284_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ff7bd295e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0284_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0285_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0285_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7979063ff Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0285_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0286_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0286_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0c060f694 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0286_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0287_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0287_g1_upper_body_cmd.npz new file mode 100644 index 000000000..55eaa51fa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0287_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0288_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0288_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee8717496 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0288_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0289_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0289_g1_upper_body_cmd.npz new file mode 100644 index 000000000..674e289a5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0289_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0290_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0290_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c5a9b1494 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0290_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0291_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0291_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3f69696bf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0291_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0292_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0292_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3fa351fa4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0292_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0293_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0293_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d49999e74 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0293_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0294_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0294_g1_upper_body_cmd.npz new file mode 100644 index 000000000..360cacd9b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0294_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0295_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0295_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3ed86c6a1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0295_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0296_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0296_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5312c59e6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0296_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0297_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0297_g1_upper_body_cmd.npz new file mode 100644 index 000000000..493fe4f5b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0297_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0298_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0298_g1_upper_body_cmd.npz new file mode 100644 index 000000000..84895085e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0298_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0299_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0299_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ed7bbef62 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0299_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0300_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0300_g1_upper_body_cmd.npz new file mode 100644 index 000000000..845bb7ef5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0300_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0301_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0301_g1_upper_body_cmd.npz new file mode 100644 index 000000000..865587f2e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0301_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0302_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0302_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0a749402 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0302_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0303_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0303_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7d67033a8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0303_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0304_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0304_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0c289ec63 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0304_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0305_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0305_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1895f487c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0305_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0306_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0306_g1_upper_body_cmd.npz new file mode 100644 index 000000000..589d6f43f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0306_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0307_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0307_g1_upper_body_cmd.npz new file mode 100644 index 000000000..16589e35a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0307_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0308_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0308_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ddb97edbb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0308_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0309_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0309_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bf5c53a7e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0309_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0310_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0310_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f214b0c83 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0310_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0311_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0311_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa9e0439e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0311_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0312_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0312_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3eb066f4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0312_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0313_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0313_g1_upper_body_cmd.npz new file mode 100644 index 000000000..46fb8a1d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0313_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0314_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0314_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a4eda890d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0314_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0315_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0315_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c38292704 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0315_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0316_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0316_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0aa2cfad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0316_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0317_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0317_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3cd47c544 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0317_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0318_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0318_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b262fc704 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0318_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0319_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0319_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d70f217f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0319_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0320_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0320_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f1c5618f7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0320_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0321_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0321_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c677f5796 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0321_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0322_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0322_g1_upper_body_cmd.npz new file mode 100644 index 000000000..939dfcb4a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0322_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0323_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0323_g1_upper_body_cmd.npz new file mode 100644 index 000000000..463ba5a8c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0323_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0324_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0324_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0cfb98b7f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0324_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0325_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0325_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9fec38dce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0325_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0326_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0326_g1_upper_body_cmd.npz new file mode 100644 index 000000000..55cb4187a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0326_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0327_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0327_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d463271c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0327_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0328_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0328_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ee6c3c543 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0328_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0329_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0329_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ab7ede3cc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0329_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0330_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0330_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0fae48476 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0330_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0331_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0331_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2eb9fa7ca Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0331_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0332_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0332_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b19278c0f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0332_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0333_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0333_g1_upper_body_cmd.npz new file mode 100644 index 000000000..03b5cea03 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0333_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0334_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0334_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9e4b550b9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0334_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0335_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0335_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dae94d033 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0335_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0336_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0336_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a23c916ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0336_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0337_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0337_g1_upper_body_cmd.npz new file mode 100644 index 000000000..baf6ef1db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0337_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0338_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0338_g1_upper_body_cmd.npz new file mode 100644 index 000000000..59ac263d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0338_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0339_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0339_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4730a48c7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0339_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0340_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0340_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4f05c734c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0340_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0341_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0341_g1_upper_body_cmd.npz new file mode 100644 index 000000000..18df6de0c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0341_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0342_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0342_g1_upper_body_cmd.npz new file mode 100644 index 000000000..df1b7bd7e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0342_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0343_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0343_g1_upper_body_cmd.npz new file mode 100644 index 000000000..06fbf4c7b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0343_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0344_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0344_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0fc60f44d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0344_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0345_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0345_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3029a5b37 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0345_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0346_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0346_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b5bb75ffe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0346_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0347_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0347_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e9c1fd9c5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0347_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0348_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0348_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4f7f3260e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0348_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0349_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0349_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6e01e7d55 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0349_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0350_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0350_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fec1023e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0350_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0351_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0351_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f5d767944 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0351_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0352_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0352_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc3215d67 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0352_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0353_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0353_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1ed1afdf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0353_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0354_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0354_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ab6dbd654 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0354_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0355_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0355_g1_upper_body_cmd.npz new file mode 100644 index 000000000..026f05966 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0355_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0356_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0356_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c956fa469 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0356_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0357_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0357_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6ad7b7a2b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0357_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0358_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0358_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d50aabb51 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0358_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0359_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0359_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea990fded Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0359_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0360_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0360_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bc7b6630f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0360_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0361_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0361_g1_upper_body_cmd.npz new file mode 100644 index 000000000..186d901a7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0361_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0362_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0362_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f39844ecb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0362_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0363_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0363_g1_upper_body_cmd.npz new file mode 100644 index 000000000..85adeb6a1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0363_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0364_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0364_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9e8f2a0d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0364_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0365_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0365_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6bde617f0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0365_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0366_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0366_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8c71d183e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0366_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0367_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0367_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4502e05a6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0367_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0368_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0368_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b6497e70b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0368_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0369_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0369_g1_upper_body_cmd.npz new file mode 100644 index 000000000..663e603a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0369_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0370_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0370_g1_upper_body_cmd.npz new file mode 100644 index 000000000..92976c2e4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0370_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0371_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0371_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c9a5ca68a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0371_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0372_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0372_g1_upper_body_cmd.npz new file mode 100644 index 000000000..86a49ba37 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0372_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0373_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0373_g1_upper_body_cmd.npz new file mode 100644 index 000000000..da34e2077 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0373_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0374_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0374_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e629f2902 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0374_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0375_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0375_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c0ccca16c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0375_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0376_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0376_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9663325a1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0376_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0377_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0377_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a6904caa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0377_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0378_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0378_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c2480806 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0378_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0379_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0379_g1_upper_body_cmd.npz new file mode 100644 index 000000000..73d1d05e9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0379_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0380_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0380_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ba3aea90b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0380_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0381_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0381_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9a71d6dc4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0381_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0382_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0382_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5e7aa1aee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0382_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0383_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0383_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9547e1598 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0383_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0384_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0384_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e74d60814 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0384_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0385_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0385_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a74f664c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0385_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0386_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0386_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0b67e2338 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0386_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0387_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0387_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2ed274d52 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0387_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0388_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0388_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f4f1e2e41 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0388_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0389_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0389_g1_upper_body_cmd.npz new file mode 100644 index 000000000..974dc069c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0389_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0390_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0390_g1_upper_body_cmd.npz new file mode 100644 index 000000000..77e2a40f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0390_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0391_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0391_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f9e4eb88d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0391_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0392_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0392_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3fcb2bbe7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0392_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0393_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0393_g1_upper_body_cmd.npz new file mode 100644 index 000000000..832f86465 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0393_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0394_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0394_g1_upper_body_cmd.npz new file mode 100644 index 000000000..aa3219781 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0394_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0395_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0395_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9ca6be2c1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0395_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0396_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0396_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f5b935d8c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0396_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0397_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0397_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ba026e659 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0397_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0398_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0398_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c9d6e3a59 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0398_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0399_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0399_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fa1a7c140 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0399_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0400_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0400_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d0a4da89b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0400_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0401_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0401_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8b8a6424b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0401_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0402_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0402_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b4b30d737 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0402_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0403_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0403_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e055afe0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0403_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0404_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0404_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5713c311e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0404_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0405_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0405_g1_upper_body_cmd.npz new file mode 100644 index 000000000..36a40eb9e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0405_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0406_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0406_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7c4de417e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0406_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0407_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0407_g1_upper_body_cmd.npz new file mode 100644 index 000000000..798a69528 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0407_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0408_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0408_g1_upper_body_cmd.npz new file mode 100644 index 000000000..38ec07a4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0408_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0409_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0409_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b933b8ceb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0409_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0410_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0410_g1_upper_body_cmd.npz new file mode 100644 index 000000000..563ad84d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0410_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0411_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0411_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a3f775609 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0411_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0412_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0412_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf4299944 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0412_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0413_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0413_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1048bd5db Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0413_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0414_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0414_g1_upper_body_cmd.npz new file mode 100644 index 000000000..10e76cc04 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0414_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0415_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0415_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a875776a3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0415_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0416_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0416_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7bb6221cb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0416_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0417_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0417_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a06ad5e15 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0417_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0418_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0418_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d471d433c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0418_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0419_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0419_g1_upper_body_cmd.npz new file mode 100644 index 000000000..467f5f07a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0419_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0420_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0420_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2d9d93dfb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0420_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0421_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0421_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9f0dbaed7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0421_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0422_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0422_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2b838d826 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0422_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0423_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0423_g1_upper_body_cmd.npz new file mode 100644 index 000000000..932e6e0e6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0423_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0424_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0424_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b1fb07cfb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0424_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0425_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0425_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b6d0699f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0425_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0426_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0426_g1_upper_body_cmd.npz new file mode 100644 index 000000000..682523d29 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0426_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0427_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0427_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f05b7f3c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0427_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0428_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0428_g1_upper_body_cmd.npz new file mode 100644 index 000000000..39182e8d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0428_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0429_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0429_g1_upper_body_cmd.npz new file mode 100644 index 000000000..08a8d4778 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0429_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0430_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0430_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bcaa51b6d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0430_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0431_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0431_g1_upper_body_cmd.npz new file mode 100644 index 000000000..76f405b9d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0431_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0432_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0432_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1b87cf202 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0432_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0433_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0433_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ad91697ce Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0433_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0434_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0434_g1_upper_body_cmd.npz new file mode 100644 index 000000000..06fdf443f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0434_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0435_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0435_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e11392207 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0435_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0436_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0436_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bdc2714ad Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0436_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0437_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0437_g1_upper_body_cmd.npz new file mode 100644 index 000000000..752133cf6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0437_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0438_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0438_g1_upper_body_cmd.npz new file mode 100644 index 000000000..916895f3d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0438_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0439_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0439_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8f590827c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0439_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0440_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0440_g1_upper_body_cmd.npz new file mode 100644 index 000000000..37740f7d1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0440_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0441_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0441_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cebbef9f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0441_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0442_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0442_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c9eff8eb8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0442_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0443_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0443_g1_upper_body_cmd.npz new file mode 100644 index 000000000..973338081 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0443_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0444_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0444_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cdde0ebbb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0444_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0445_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0445_g1_upper_body_cmd.npz new file mode 100644 index 000000000..13d9965ef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0445_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0446_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0446_g1_upper_body_cmd.npz new file mode 100644 index 000000000..28123da72 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0446_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0447_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0447_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4a5109750 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0447_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0448_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0448_g1_upper_body_cmd.npz new file mode 100644 index 000000000..919cbdf86 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0448_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0449_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0449_g1_upper_body_cmd.npz new file mode 100644 index 000000000..60f7b6ac3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0449_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0450_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0450_g1_upper_body_cmd.npz new file mode 100644 index 000000000..95bab089d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0450_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0451_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0451_g1_upper_body_cmd.npz new file mode 100644 index 000000000..96f0f78bf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0451_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0452_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0452_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6d8ebbd0e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0452_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0453_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0453_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4007f4881 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0453_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0454_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0454_g1_upper_body_cmd.npz new file mode 100644 index 000000000..996f6314d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0454_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0455_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0455_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b37fbee10 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0455_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0456_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0456_g1_upper_body_cmd.npz new file mode 100644 index 000000000..568088c35 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0456_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0457_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0457_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2af10386e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0457_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0458_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0458_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a78cff8f8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0458_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0459_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0459_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5143a891d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0459_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0460_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0460_g1_upper_body_cmd.npz new file mode 100644 index 000000000..18a0a71b9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0460_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0461_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0461_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bb96b2626 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0461_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0462_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0462_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1af38ce7d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0462_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0463_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0463_g1_upper_body_cmd.npz new file mode 100644 index 000000000..113bbc9b6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0463_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0464_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0464_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1414954c3 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0464_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0465_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0465_g1_upper_body_cmd.npz new file mode 100644 index 000000000..731c65d76 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0465_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0466_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0466_g1_upper_body_cmd.npz new file mode 100644 index 000000000..16447c2b5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0466_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0467_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0467_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f8152272d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0467_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0468_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0468_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2bbce7769 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0468_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0469_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0469_g1_upper_body_cmd.npz new file mode 100644 index 000000000..90e631c84 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0469_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0470_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0470_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ecb93e7c7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0470_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0471_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0471_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9556c59d5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0471_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0472_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0472_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7ceb6281e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0472_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0473_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0473_g1_upper_body_cmd.npz new file mode 100644 index 000000000..49142b440 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0473_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0474_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0474_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b9b685ebc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0474_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0475_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0475_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3575a76e7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0475_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0476_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0476_g1_upper_body_cmd.npz new file mode 100644 index 000000000..714e8f359 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0476_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0477_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0477_g1_upper_body_cmd.npz new file mode 100644 index 000000000..23d03f94b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0477_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0478_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0478_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e53093607 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0478_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0479_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0479_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5fbbb4a31 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0479_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0480_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0480_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2b9572403 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0480_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0481_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0481_g1_upper_body_cmd.npz new file mode 100644 index 000000000..9691faefa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0481_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0482_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0482_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b8e314d66 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0482_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0483_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0483_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fab709a01 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0483_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0484_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0484_g1_upper_body_cmd.npz new file mode 100644 index 000000000..32ea85058 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0484_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0485_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0485_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2a7b41b2a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0485_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0486_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0486_g1_upper_body_cmd.npz new file mode 100644 index 000000000..041080514 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0486_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0487_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0487_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2860a6f3e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0487_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0488_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0488_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4417e96fa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0488_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0489_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0489_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d42a2df19 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0489_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0490_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0490_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7ee560aae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0490_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0491_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0491_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f76a80b38 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0491_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0492_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0492_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3a52f0ee6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0492_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0493_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0493_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bbdb9d304 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0493_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0494_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0494_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c1a274f1d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0494_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0495_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0495_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d6635baf4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0495_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0496_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0496_g1_upper_body_cmd.npz new file mode 100644 index 000000000..480bd25fc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0496_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0497_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0497_g1_upper_body_cmd.npz new file mode 100644 index 000000000..31220d61e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0497_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0498_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0498_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0846535fd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0498_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0499_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0499_g1_upper_body_cmd.npz new file mode 100644 index 000000000..edbe82d47 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0499_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0500_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0500_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6348c69f5 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0500_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0501_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0501_g1_upper_body_cmd.npz new file mode 100644 index 000000000..5e693e39a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0501_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0502_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0502_g1_upper_body_cmd.npz new file mode 100644 index 000000000..009f09aec Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0502_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0503_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0503_g1_upper_body_cmd.npz new file mode 100644 index 000000000..316d15992 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0503_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0504_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0504_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1fbdbb81c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0504_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0505_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0505_g1_upper_body_cmd.npz new file mode 100644 index 000000000..afbdc5da9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0505_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0506_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0506_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ef5bf0ade Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0506_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0507_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0507_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cd104a7a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0507_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0508_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0508_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7fbd442ac Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0508_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0509_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0509_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4437926e0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0509_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0510_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0510_g1_upper_body_cmd.npz new file mode 100644 index 000000000..593913be1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0510_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0511_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0511_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6748718b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0511_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0512_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0512_g1_upper_body_cmd.npz new file mode 100644 index 000000000..bf831828f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0512_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0513_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0513_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b86dcc0aa Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0513_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0514_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0514_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1571f1347 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0514_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0515_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0515_g1_upper_body_cmd.npz new file mode 100644 index 000000000..db7b50f81 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0515_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0516_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0516_g1_upper_body_cmd.npz new file mode 100644 index 000000000..908974c5f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0516_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0517_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0517_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2b36d2f8b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0517_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0518_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0518_g1_upper_body_cmd.npz new file mode 100644 index 000000000..af99e4967 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0518_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0519_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0519_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4bcf29333 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0519_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0520_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0520_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce8fbae31 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0520_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0521_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0521_g1_upper_body_cmd.npz new file mode 100644 index 000000000..751bae9a4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0521_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0522_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0522_g1_upper_body_cmd.npz new file mode 100644 index 000000000..447d0a0a2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0522_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0523_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0523_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7f00ebeee Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0523_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0524_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0524_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f1a05f861 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0524_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0525_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0525_g1_upper_body_cmd.npz new file mode 100644 index 000000000..713b0a3be Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0525_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0526_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0526_g1_upper_body_cmd.npz new file mode 100644 index 000000000..0bfd226de Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0526_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0527_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0527_g1_upper_body_cmd.npz new file mode 100644 index 000000000..26d8b4498 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0527_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0528_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0528_g1_upper_body_cmd.npz new file mode 100644 index 000000000..1dbd12b15 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0528_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0529_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0529_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c192f53d7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0529_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0530_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0530_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ce21f600e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0530_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0531_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0531_g1_upper_body_cmd.npz new file mode 100644 index 000000000..708d4c978 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0531_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0532_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0532_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8c81bfd4e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0532_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0533_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0533_g1_upper_body_cmd.npz new file mode 100644 index 000000000..837029f61 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0533_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0534_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0534_g1_upper_body_cmd.npz new file mode 100644 index 000000000..951e2a00b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0534_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0535_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0535_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4ebfe70eb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0535_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0536_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0536_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c3ee8cd6a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0536_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0537_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0537_g1_upper_body_cmd.npz new file mode 100644 index 000000000..98e32c66f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0537_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0538_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0538_g1_upper_body_cmd.npz new file mode 100644 index 000000000..6a769be05 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0538_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0539_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0539_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a8ac2a484 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0539_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0540_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0540_g1_upper_body_cmd.npz new file mode 100644 index 000000000..52d886dd2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0540_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0541_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0541_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a63f3f80e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0541_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0542_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0542_g1_upper_body_cmd.npz new file mode 100644 index 000000000..256f381e2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0542_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0543_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0543_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4d863c4f1 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0543_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0544_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0544_g1_upper_body_cmd.npz new file mode 100644 index 000000000..21d1efcf7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0544_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0545_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0545_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e2e8fad41 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0545_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0546_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0546_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b63abd7c0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0546_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0547_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0547_g1_upper_body_cmd.npz new file mode 100644 index 000000000..14ed62cdd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0547_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0548_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0548_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cc9147bcb Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0548_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0549_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0549_g1_upper_body_cmd.npz new file mode 100644 index 000000000..efd52a37e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0549_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0550_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0550_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a61409b1d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0550_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0551_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0551_g1_upper_body_cmd.npz new file mode 100644 index 000000000..dd6bea609 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0551_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0552_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0552_g1_upper_body_cmd.npz new file mode 100644 index 000000000..d3ee22adf Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0552_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0553_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0553_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ec7f6d97f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0553_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0554_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0554_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea3c4368c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0554_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0555_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0555_g1_upper_body_cmd.npz new file mode 100644 index 000000000..13293e290 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0555_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0556_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0556_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7606dfa0a Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0556_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0557_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0557_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4589e9a7d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0557_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0558_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0558_g1_upper_body_cmd.npz new file mode 100644 index 000000000..01a1d7bef Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0558_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0559_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0559_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a7b74e23f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0559_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0560_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0560_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c6ac30c0d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0560_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0561_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0561_g1_upper_body_cmd.npz new file mode 100644 index 000000000..932eda5d0 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0561_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0562_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0562_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e0f88b7e8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0562_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0563_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0563_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a195eaba7 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0563_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0564_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0564_g1_upper_body_cmd.npz new file mode 100644 index 000000000..04cd407ae Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0564_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0565_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0565_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ffcf5d13e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0565_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0566_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0566_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c877b0d47 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0566_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0567_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0567_g1_upper_body_cmd.npz new file mode 100644 index 000000000..192cfdc66 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0567_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0568_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0568_g1_upper_body_cmd.npz new file mode 100644 index 000000000..303f0bd29 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0568_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0569_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0569_g1_upper_body_cmd.npz new file mode 100644 index 000000000..871f6b466 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0569_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0570_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0570_g1_upper_body_cmd.npz new file mode 100644 index 000000000..2ffa3ffcc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0570_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0571_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0571_g1_upper_body_cmd.npz new file mode 100644 index 000000000..3eabc7c4f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0571_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0572_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0572_g1_upper_body_cmd.npz new file mode 100644 index 000000000..09f7a9e44 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0572_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0573_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0573_g1_upper_body_cmd.npz new file mode 100644 index 000000000..491e1e9c4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0573_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0574_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0574_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4550b4ead Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0574_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0575_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0575_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8241c3b21 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0575_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0576_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0576_g1_upper_body_cmd.npz new file mode 100644 index 000000000..44a8f68d2 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0576_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0577_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0577_g1_upper_body_cmd.npz new file mode 100644 index 000000000..c9c85cbb9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0577_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0578_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0578_g1_upper_body_cmd.npz new file mode 100644 index 000000000..a21ef0cfe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0578_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0579_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0579_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f229d3304 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0579_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0580_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0580_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b78aef51b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0580_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0581_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0581_g1_upper_body_cmd.npz new file mode 100644 index 000000000..72f03f2dc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0581_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0582_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0582_g1_upper_body_cmd.npz new file mode 100644 index 000000000..024e1a07c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0582_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0583_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0583_g1_upper_body_cmd.npz new file mode 100644 index 000000000..572045411 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0583_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0584_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0584_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cc8d7f179 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0584_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0585_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0585_g1_upper_body_cmd.npz new file mode 100644 index 000000000..fcc82b1b8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0585_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0586_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0586_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f5411dbbc Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0586_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0587_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0587_g1_upper_body_cmd.npz new file mode 100644 index 000000000..710383095 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0587_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0588_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0588_g1_upper_body_cmd.npz new file mode 100644 index 000000000..94b9bfae8 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0588_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0589_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0589_g1_upper_body_cmd.npz new file mode 100644 index 000000000..87a20089b Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0589_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0590_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0590_g1_upper_body_cmd.npz new file mode 100644 index 000000000..4c2b92209 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0590_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0591_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0591_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b215675d4 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0591_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0592_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0592_g1_upper_body_cmd.npz new file mode 100644 index 000000000..787923e22 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0592_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0593_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0593_g1_upper_body_cmd.npz new file mode 100644 index 000000000..cf28c86fe Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0593_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0594_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0594_g1_upper_body_cmd.npz new file mode 100644 index 000000000..7edb244f6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0594_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0595_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0595_g1_upper_body_cmd.npz new file mode 100644 index 000000000..f8142bced Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0595_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0596_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0596_g1_upper_body_cmd.npz new file mode 100644 index 000000000..b4017e24e Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0596_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0597_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0597_g1_upper_body_cmd.npz new file mode 100644 index 000000000..ea8a24fa9 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0597_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0598_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0598_g1_upper_body_cmd.npz new file mode 100644 index 000000000..e2c95f808 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0598_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0599_g1_upper_body_cmd.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0599_g1_upper_body_cmd.npz new file mode 100644 index 000000000..8e182bb16 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/g1_cmds_right/openxr26_joints_right_b00_t0599_g1_upper_body_cmd.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz new file mode 100644 index 000000000..e1cba9631 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_optrot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz new file mode 100644 index 000000000..65550d80c Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_world_prerot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz new file mode 100644 index 000000000..159aecacd Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints.npz new file mode 100644 index 000000000..0f2b48081 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints_left.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints_left.npz new file mode 100644 index 000000000..bbcd17fd6 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints_left.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints_right.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints_right.npz new file mode 100644 index 000000000..32fac1b5f Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/openxr26_joints_right.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz new file mode 100644 index 000000000..5510d5d2d Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_optrot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz new file mode 100644 index 000000000..902655a48 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_world_prerot.npz differ diff --git a/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz new file mode 100644 index 000000000..423031138 Binary files /dev/null and b/examples/mano_hand_retargeter/outputs/retarget_output/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz differ diff --git a/examples/mano_hand_retargeter/retarget_openxr26_with_g1_upper_body.py b/examples/mano_hand_retargeter/retarget_openxr26_with_g1_upper_body.py new file mode 100644 index 000000000..69af527dc --- /dev/null +++ b/examples/mano_hand_retargeter/retarget_openxr26_with_g1_upper_body.py @@ -0,0 +1,2484 @@ +#!/usr/bin/env python3 +""" +Retarget transformed OpenXR-26 joints to Unitree G1 upper-body commands (offline, no Isaac Sim). + +Why this exists +--------------- +IsaacLab's `G1TriHandUpperBodyRetargeter` (and the OpenXR package) transitively imports Omniverse USD +(`pxr`) and `carb/omni.client`. In a plain Python environment you may not have these modules, which +causes import failures like: + + ModuleNotFoundError: No module named 'pxr' + +This script implements the *same* core logic as IsaacLab's G1 tri-hand dex retargeting utility, +but without importing `isaaclab` at all. It only depends on: + - numpy + - torch + - scipy + - pyyaml + - dex_retargeting (+ pinocchio) + +Inputs +------ +- Your `.npz` frame files must contain OpenXR-26 joint positions for left/right hands as float arrays + shaped (26, 3), using OpenXR joint ordering. + +Output command layout (matches IsaacLab's upper-body retargeter layout) +---------------------------------------------------------------------- +- [0:7] left wrist pose in USD control frame (x,y,z,qw,qx,qy,qz) +- [7:14] right wrist pose in USD control frame (x,y,z,qw,qx,qy,qz) +- [14:] hand joint angles in the dex-retargeting DOF order (names saved alongside) +""" + +from __future__ import annotations + +import argparse +import os +import sys +import tempfile +from pathlib import Path +from typing import Any, Optional, Tuple + + +# OpenXR-26 joint ordering (IsaacLab's `isaaclab.devices.openxr.common.HAND_JOINT_NAMES`). +HAND_JOINT_NAMES = [ + "palm", + "wrist", + "thumb_metacarpal", + "thumb_proximal", + "thumb_distal", + "thumb_tip", + "index_metacarpal", + "index_proximal", + "index_intermediate", + "index_distal", + "index_tip", + "middle_metacarpal", + "middle_proximal", + "middle_intermediate", + "middle_distal", + "middle_tip", + "ring_metacarpal", + "ring_proximal", + "ring_intermediate", + "ring_distal", + "ring_tip", + "little_metacarpal", + "little_proximal", + "little_intermediate", + "little_distal", + "little_tip", +] + +# Map OpenXR-26 joints to the 21 joints used in dex-retargeting (IsaacLab). +_HAND_JOINTS_INDEX = [1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 22, 23, 24, 25] + +# Canonical-frame conversion (IsaacLab `g1_dex_retargeting_utils.py`). +_OPERATOR2MANO_RIGHT = [ + [0, 0, 1], + [1, 0, 0], + [0, 1, 0], +] +_OPERATOR2MANO_LEFT = [ + [0, 0, 1], + [1, 0, 0], + [0, 1, 0], +] + +# Wrist conversion quaternions used by IsaacLab `G1TriHandUpperBodyRetargeter._retarget_abs`. +_LEFT_WRIST_COMBINED_QUAT_WXYZ = (0.7071, 0.0, 0.7071, 0.0) +_RIGHT_WRIST_COMBINED_QUAT_WXYZ = (0.0, -0.7071, 0.0, 0.7071) + + +# ----------------------------- +# Visualization helpers (ported from IsaacLab's `g1_dex_retargeting_utils.py`) +# ----------------------------- + +_OPENPOSE21_EDGES = [ + (0, 1), + (1, 2), + (2, 3), + (3, 4), # thumb + (0, 5), + (5, 6), + (6, 7), + (7, 8), # index + (0, 9), + (9, 10), + (10, 11), + (11, 12), # middle + (0, 13), + (13, 14), + (14, 15), + (15, 16), # ring + (0, 17), + (17, 18), + (18, 19), + (19, 20), # little +] + +_OPENPOSE21_FINGERS = { + "root": [0], + "thumb": [1, 2, 3, 4], + "index": [5, 6, 7, 8], + "middle": [9, 10, 11, 12], + "ring": [13, 14, 15, 16], + "little": [17, 18, 19, 20], +} + +_FINGER_COLORS = { + "root": (0.55, 0.55, 0.55), + "thumb": (0.90, 0.20, 0.20), + "index": (0.20, 0.60, 0.95), + "middle": (0.20, 0.75, 0.30), + "ring": (0.90, 0.55, 0.15), + "little": (0.75, 0.30, 0.85), +} + + +def _colors_lighter_with_y(points_xyz, base_rgb, strength: float = 0.65): + import numpy as np + + pts = np.asarray(points_xyz, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] != 3: + raise ValueError(f"points_xyz must be (N,3); got {pts.shape}") + y = pts[:, 1] + denom = float(np.max(y) - np.min(y)) + if denom < 1e-8: + t = np.zeros_like(y) + else: + t = (y - float(np.min(y))) / (denom + 1e-8) + t = np.clip(t * float(strength), 0.0, 1.0)[:, None] + base = np.asarray(base_rgb, dtype=np.float32)[None, :] + white = np.ones((1, 3), dtype=np.float32) + return (base * (1.0 - t) + white * t).clip(0.0, 1.0) + + +def _joint_to_finger_openpose21(j: int) -> str: + for k, idxs in _OPENPOSE21_FINGERS.items(): + if j in idxs: + return k + return "root" + + +def _lazy_import_matplotlib(): + import matplotlib + + matplotlib.use("Agg") + import matplotlib.pyplot as plt + + return plt + + +def _append_text(path: Path, msg: str) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, "a", encoding="utf-8") as f: + f.write(msg.rstrip() + "\n") + + +def _plot_openxr26_joints(joints26, *, out_path: Path, title: str): + """ + Simple OpenXR-26 visualization: point cloud + labels for wrist + tips. + """ + import numpy as np + + joints26 = np.asarray(joints26, dtype=np.float32) + if joints26.shape != (26, 3): + return + plt = _lazy_import_matplotlib() + fig = plt.figure(figsize=(7.2, 6.2), dpi=160) + ax = fig.add_subplot(111, projection="3d") + ax.scatter(joints26[:, 0], joints26[:, 1], joints26[:, 2], s=18, c="tab:blue", alpha=0.9) + # label wrist and tips + for name in ["wrist", "thumb_tip", "index_tip", "middle_tip", "ring_tip", "little_tip"]: + if name in HAND_JOINT_NAMES: + i = HAND_JOINT_NAMES.index(name) + x, y, z = joints26[i] + ax.text(x, y, z, f"{name} (y={y:+.3f})" if "tip" in name else name, fontsize=8, color="black") + ax.plot([x, x], [y, 0.0], [z, z], c="black", linewidth=1.0, alpha=0.25, linestyle=":") + ax.set_title(title) + ax.set_xlabel("X") + ax.set_ylabel("Y") + ax.set_zlabel("Z") + ax.view_init(elev=20, azim=-60) + mins = joints26.min(axis=0) + maxs = joints26.max(axis=0) + center = 0.5 * (mins + maxs) + radius = 0.5 * float(np.max(maxs - mins) + 1e-6) + ax.set_xlim(center[0] - radius, center[0] + radius) + ax.set_ylim(center[1] - radius, center[1] + radius) + ax.set_zlim(center[2] - radius, center[2] + radius) + fig.tight_layout() + out_path.parent.mkdir(parents=True, exist_ok=True) + fig.savefig(str(out_path)) + plt.close(fig) + + +def _plot_joint_pos_openpose21( + joint_pos, + *, + out_path: Path, + title: str, + ref_value=None, + human_indices=None, + retargeting_type: Optional[str] = None, +): + import numpy as np + + joint_pos = np.asarray(joint_pos, dtype=np.float32) + if joint_pos.shape != (21, 3): + return + plt = _lazy_import_matplotlib() + fig = plt.figure(figsize=(7.2, 6.2), dpi=160) + ax = fig.add_subplot(111, projection="3d") + + for finger, idxs in _OPENPOSE21_FINGERS.items(): + pts = joint_pos[idxs] + cols = _colors_lighter_with_y(pts, _FINGER_COLORS.get(finger, (0.3, 0.3, 0.3))) + ax.scatter( + pts[:, 0], + pts[:, 1], + pts[:, 2], + s=30 if finger == "root" else 22, + c=cols, + label=finger, + ) + + for a, b in _OPENPOSE21_EDGES: + finger = _joint_to_finger_openpose21(int(b)) + ax.plot( + [joint_pos[a, 0], joint_pos[b, 0]], + [joint_pos[a, 1], joint_pos[b, 1]], + [joint_pos[a, 2], joint_pos[b, 2]], + linewidth=2.0, + alpha=0.9, + c=_FINGER_COLORS.get(finger, (0.2, 0.2, 0.2)), + ) + + # fingertips labels + tip_ids = [4, 8, 12, 16, 20] + tip_names = ["thumb_tip", "index_tip", "middle_tip", "ring_tip", "little_tip"] + y_label_tips = {"thumb_tip", "index_tip", "middle_tip"} + for i, name in zip(tip_ids, tip_names): + x, y, z = joint_pos[i] + label = f"{name} (y={y:+.3f})" if name in y_label_tips else name + ax.text(x, y, z, label, fontsize=8, color="black") + ax.plot([x, x], [y, 0.0], [z, z], c="black", linewidth=1.0, alpha=0.35, linestyle=":") + + # Draw ref_value as overlay (POSITION: target points; VECTOR: dashed vectors) + if ref_value is not None and human_indices is not None and retargeting_type is not None: + ref_value = np.asarray(ref_value, dtype=np.float32) + human_indices = np.asarray(human_indices) + rtype = str(retargeting_type).upper() + if rtype == "POSITION": + idxs = human_indices.reshape(-1).astype(int) + idxs = idxs[(idxs >= 0) & (idxs < joint_pos.shape[0])] + if idxs.size > 0: + ax.scatter( + joint_pos[idxs, 0], + joint_pos[idxs, 1], + joint_pos[idxs, 2], + s=70, + marker="x", + c="black", + label="ref_value (pos targets)", + ) + else: + if human_indices.ndim == 2 and human_indices.shape[0] == 2: + origin = human_indices[0].astype(int) + task = human_indices[1].astype(int) + n = min(len(origin), len(task), ref_value.shape[0]) + for k in range(n): + a = int(origin[k]) + b = int(task[k]) + if not (0 <= a < joint_pos.shape[0] and 0 <= b < joint_pos.shape[0]): + continue + p0 = joint_pos[a] + p1 = p0 + ref_value[k] + ax.plot( + [p0[0], p1[0]], + [p0[1], p1[1]], + [p0[2], p1[2]], + linewidth=1.5, + alpha=0.8, + c="black", + linestyle="--", + ) + + ax.set_title(title) + ax.set_xlabel("X") + ax.set_ylabel("Y") + ax.set_zlabel("Z") + ax.view_init(elev=20, azim=-60) + ax.legend(loc="upper left", bbox_to_anchor=(0.0, 1.0)) + + mins = joint_pos.min(axis=0) + maxs = joint_pos.max(axis=0) + center = 0.5 * (mins + maxs) + radius = 0.5 * float(np.max(maxs - mins) + 1e-6) + ax.set_xlim(center[0] - radius, center[0] + radius) + ax.set_ylim(center[1] - radius, center[1] + radius) + ax.set_zlim(center[2] - radius, center[2] + radius) + + out_path.parent.mkdir(parents=True, exist_ok=True) + fig.tight_layout() + fig.savefig(str(out_path)) + plt.close(fig) + + +def _extract_robot_points_for_optimizer(optimizer, robot_qpos): + import numpy as np + + robot = optimizer.robot + robot.compute_forward_kinematics(robot_qpos) + + link_names = None + link_indices = None + if hasattr(optimizer, "computed_link_names") and hasattr(optimizer, "computed_link_indices"): + link_names = list(getattr(optimizer, "computed_link_names")) + link_indices = list(getattr(optimizer, "computed_link_indices")) + elif hasattr(optimizer, "body_names") and hasattr(optimizer, "target_link_indices"): + link_names = list(getattr(optimizer, "body_names")) + link_indices = list(getattr(optimizer, "target_link_indices")) + else: + link_names, link_indices = [], [] + + pts = [] + for idx in link_indices: + pose = robot.get_link_pose(int(idx)) + pts.append(pose[:3, 3]) + pts = np.asarray(pts, dtype=np.float32) if pts else np.zeros((0, 3), dtype=np.float32) + return link_names, link_indices, pts + + +def _proxy_loss_from_optimizer(optimizer, *, ref_value, robot_qpos) -> Optional[float]: + """ + Best-effort "loss" estimate from geometry (works even if dex_retargeting doesn't expose loss history). + """ + import numpy as np + + ref_value = np.asarray(ref_value, dtype=np.float32) + robot_qpos = np.asarray(robot_qpos, dtype=np.float32).reshape(-1) + + rtype = str(getattr(optimizer, "retargeting_type", "")).upper() + link_names, link_indices, pts = _extract_robot_points_for_optimizer(optimizer, robot_qpos) + if pts.shape[0] == 0: + return None + + if rtype == "POSITION": + # Target link positions vs ref_value positions + if not hasattr(optimizer, "target_link_indices"): + return None + idxs = np.asarray(getattr(optimizer, "target_link_indices")).astype(int).reshape(-1) + n = min(len(idxs), ref_value.shape[0], pts.shape[0]) + if n <= 0: + return None + # `pts` already corresponds to `link_indices`, not necessarily `target_link_indices`. + # If computed_link_indices equals target_link_indices, this is consistent; otherwise best-effort. + err = pts[:n] - ref_value[:n] + return float(np.mean(np.sum(err * err, axis=-1))) + + # VECTOR / DexPilot style: robot vectors (task-origin) vs ref_value vectors + if not (hasattr(optimizer, "origin_link_indices") and hasattr(optimizer, "task_link_indices")): + return None + origin_idx = np.asarray(getattr(optimizer, "origin_link_indices")).astype(int).reshape(-1) + task_idx = np.asarray(getattr(optimizer, "task_link_indices")).astype(int).reshape(-1) + n = min(len(origin_idx), len(task_idx), ref_value.shape[0]) + if n <= 0: + return None + + # Here origin/task indices are into the robot's link set used by optimizer; often matches `computed_link_indices`. + # We interpret them as indices into `pts` if that seems valid; otherwise can't compute. + if np.max(origin_idx[:n]) >= pts.shape[0] or np.max(task_idx[:n]) >= pts.shape[0]: + return None + robot_vec = pts[task_idx[:n]] - pts[origin_idx[:n]] + err = robot_vec - ref_value[:n] + return float(np.mean(np.sum(err * err, axis=-1))) + + +def _plot_robot_links(robot_qpos, *, optimizer, out_path: Path, title: str): + import numpy as np + + robot_qpos = np.asarray(robot_qpos, dtype=np.float32).reshape(-1) + link_names, link_indices, pts = _extract_robot_points_for_optimizer(optimizer, robot_qpos) + if pts.shape[0] == 0: + return + plt = _lazy_import_matplotlib() + fig = plt.figure(figsize=(7.2, 6.2), dpi=160) + ax = fig.add_subplot(111, projection="3d") + ax.scatter(pts[:, 0], pts[:, 1], pts[:, 2], s=28, c="tab:orange") + for i, name in enumerate(link_names): + if name == "base_link" or "tip" in name: + ax.text(pts[i, 0], pts[i, 1], pts[i, 2], f"{name} (y={pts[i, 1]:+.3f})", fontsize=8, color="black") + ax.set_title(title) + ax.set_xlabel("X") + ax.set_ylabel("Y") + ax.set_zlabel("Z") + ax.view_init(elev=20, azim=-60) + mins = pts.min(axis=0) + maxs = pts.max(axis=0) + center = 0.5 * (mins + maxs) + radius = 0.5 * float(np.max(maxs - mins) + 1e-6) + ax.set_xlim(center[0] - radius, center[0] + radius) + ax.set_ylim(center[1] - radius, center[1] + radius) + ax.set_zlim(center[2] - radius, center[2] + radius) + out_path.parent.mkdir(parents=True, exist_ok=True) + fig.tight_layout() + fig.savefig(str(out_path)) + plt.close(fig) + + +def _plot_combined_scene( + joint_pos, + *, + ref_value, + human_indices, + retargeting_type: str, + optimizer, + robot_qpos, + out_path: Path, + title: str, +): + import numpy as np + + joint_pos = np.asarray(joint_pos, dtype=np.float32) + ref_value = np.asarray(ref_value, dtype=np.float32) + human_indices = np.asarray(human_indices) + robot_qpos = np.asarray(robot_qpos, dtype=np.float32).reshape(-1) + if joint_pos.shape != (21, 3): + return + + plt = _lazy_import_matplotlib() + fig = plt.figure(figsize=(7.8, 6.8), dpi=160) + ax = fig.add_subplot(111, projection="3d") + + # Human + for finger, idxs in _OPENPOSE21_FINGERS.items(): + pts = joint_pos[idxs] + cols = _colors_lighter_with_y(pts, _FINGER_COLORS.get(finger, (0.3, 0.3, 0.3))) + ax.scatter(pts[:, 0], pts[:, 1], pts[:, 2], s=30 if finger == "root" else 22, c=cols, alpha=0.95) + for a, b in _OPENPOSE21_EDGES: + finger = _joint_to_finger_openpose21(int(b)) + ax.plot( + [joint_pos[a, 0], joint_pos[b, 0]], + [joint_pos[a, 1], joint_pos[b, 1]], + [joint_pos[a, 2], joint_pos[b, 2]], + linewidth=2.0, + alpha=0.65, + c=_FINGER_COLORS.get(finger, (0.2, 0.2, 0.2)), + ) + # Ref vectors (vector mode) + rtype = str(retargeting_type).upper() + if rtype != "POSITION" and human_indices.ndim == 2 and human_indices.shape[0] == 2: + origin = human_indices[0].astype(int) + task = human_indices[1].astype(int) + n = min(len(origin), len(task), ref_value.shape[0]) + for k in range(n): + a = int(origin[k]) + b = int(task[k]) + if not (0 <= a < joint_pos.shape[0] and 0 <= b < joint_pos.shape[0]): + continue + p0 = joint_pos[a] + p1 = p0 + ref_value[k] + ax.plot([p0[0], p1[0]], [p0[1], p1[1]], [p0[2], p1[2]], c="black", lw=1.4, alpha=0.9, ls="--") + + # Robot + link_names, link_indices, pts = _extract_robot_points_for_optimizer(optimizer, robot_qpos) + if pts.shape[0] > 0: + ax.scatter(pts[:, 0], pts[:, 1], pts[:, 2], s=34, c="tab:orange", alpha=0.95) + # robot vectors (if exposed) + if hasattr(optimizer, "origin_link_indices") and hasattr(optimizer, "task_link_indices") and hasattr( + optimizer, "num_fingers" + ): + origin_idx = np.asarray(getattr(optimizer, "origin_link_indices")).astype(int).reshape(-1) + task_idx = np.asarray(getattr(optimizer, "task_link_indices")).astype(int).reshape(-1) + n = min(len(origin_idx), len(task_idx), ref_value.shape[0]) + num_fingers = int(getattr(optimizer, "num_fingers")) + base_start = max(0, n - num_fingers) + if np.max(origin_idx[:n]) < pts.shape[0] and np.max(task_idx[:n]) < pts.shape[0]: + for k in range(n): + a = int(origin_idx[k]) + b = int(task_idx[k]) + p0 = pts[a] + p1 = pts[b] + if k >= base_start: + c = "tab:orange" + lw = 2.2 + al = 0.85 + else: + c = "tab:gray" + lw = 1.4 + al = 0.6 + ax.plot([p0[0], p1[0]], [p0[1], p1[1]], [p0[2], p1[2]], c=c, lw=lw, alpha=al) + + ax.set_title(title) + ax.set_xlabel("X") + ax.set_ylabel("Y") + ax.set_zlabel("Z") + ax.view_init(elev=20, azim=-60) + + # Equal-ish axis across both sets + all_pts = [joint_pos] + if pts.shape[0] > 0: + all_pts.append(pts) + all_pts = np.concatenate(all_pts, axis=0) + mins = all_pts.min(axis=0) + maxs = all_pts.max(axis=0) + center = 0.5 * (mins + maxs) + radius = 0.5 * float(np.max(maxs - mins) + 1e-6) + ax.set_xlim(center[0] - radius, center[0] + radius) + ax.set_ylim(center[1] - radius, center[1] + radius) + ax.set_zlim(center[2] - radius, center[2] + radius) + + out_path.parent.mkdir(parents=True, exist_ok=True) + fig.tight_layout() + fig.savefig(str(out_path)) + plt.close(fig) + + +def _plot_loss_summary(*, out_path: Path, title: str, init_loss: Optional[float], opt_loss: Optional[float]): + plt = _lazy_import_matplotlib() + fig = plt.figure(figsize=(6.0, 3.2), dpi=160) + ax = fig.add_subplot(111) + xs = [0, 1] + ys = [init_loss if init_loss is not None else 0.0, opt_loss if opt_loss is not None else 0.0] + ax.bar(xs, ys, color=["tab:gray", "tab:orange"]) + ax.set_xticks(xs, ["init", "opt"]) + ax.set_title(title) + ax.set_ylabel("proxy loss (mean squared error)") + if init_loss is not None: + ax.text(0, ys[0], f"{ys[0]:.4g}", ha="center", va="bottom", fontsize=9) + if opt_loss is not None: + ax.text(1, ys[1], f"{ys[1]:.4g}", ha="center", va="bottom", fontsize=9) + out_path.parent.mkdir(parents=True, exist_ok=True) + fig.tight_layout() + fig.savefig(str(out_path)) + plt.close(fig) + + +def _parse_float_list(csv: str) -> list[float]: + parts = [p.strip() for p in str(csv).split(",") if p.strip() != ""] + return [float(p) for p in parts] + + +def _rotate_openxr26_xyz(joints26_xyz, *, euler_xyz_deg: tuple[float, float, float], pivot: str = "wrist"): + """ + Apply an XYZ Euler rotation (degrees) to OpenXR-26 joint positions. + + Rotation is applied about: + - 'wrist' (default): joint index for 'wrist' + - 'palm': joint index for 'palm' + - 'origin': (0,0,0) + """ + import numpy as np + from scipy.spatial.transform import Rotation as R + + joints = np.asarray(joints26_xyz, dtype=np.float32) + if joints.shape != (26, 3): + raise ValueError(f"Expected joints26_xyz shape (26,3), got {joints.shape}") + + rot = R.from_euler("xyz", list(euler_xyz_deg), degrees=True).as_matrix().astype(np.float32) + + pv = str(pivot).lower().strip() + if pv == "origin": + center = np.zeros((1, 3), dtype=np.float32) + elif pv == "palm": + center = joints[HAND_JOINT_NAMES.index("palm") : HAND_JOINT_NAMES.index("palm") + 1] + else: + center = joints[HAND_JOINT_NAMES.index("wrist") : HAND_JOINT_NAMES.index("wrist") + 1] + + # row-vector convention: p' = (p-center) @ R^T + center + return (joints - center) @ rot.T + center + + +def _grid_search_rotations( + *, + controller: "_StandaloneDexTriHandRetargeter", + hand: str, + openxr26_xyz, # for single-file mode + tag_base: str, # for single-file mode + out_dir: Path, + angles_deg: list[float], + pivot: str, + topk_viz: int = 0, +) -> Path: + """ + Grid-search XYZ Euler rotations and compare proxy loss after optimization. + Writes a CSV sorted by opt_loss (ascending). Returns the CSV path. + """ + import csv + import numpy as np + + out_dir.mkdir(parents=True, exist_ok=True) + hand = str(hand).lower().strip() + if hand not in ("left", "right"): + raise ValueError("--grid-hand must be 'left' or 'right'") + + # Choose retargeting objects + retargeting = controller._dex_left_hand if hand == "left" else controller._dex_right_hand # noqa: SLF001 + operator2mano = _OPERATOR2MANO_LEFT if hand == "left" else _OPERATOR2MANO_RIGHT + + # Cache init qpos for fair resets (if supported). + init_qpos0 = None + try: + if hasattr(retargeting, "get_qpos"): + init_qpos0 = np.asarray(retargeting.get_qpos(), dtype=np.float32).reshape(-1) + except Exception: + init_qpos0 = None + + def maybe_reset_qpos(): + if init_qpos0 is None: + return + if hasattr(retargeting, "set_qpos"): + try: + retargeting.set_qpos(init_qpos0) + except Exception: + pass + + rows = [] + # Evaluate all combos + for ax in angles_deg: + for ay in angles_deg: + for az in angles_deg: + maybe_reset_qpos() + xyz_rot = _rotate_openxr26_xyz(openxr26_xyz, euler_xyz_deg=(ax, ay, az), pivot=pivot) + pose_dict = openxr26_positions_to_pose_dict(xyz_rot) + joint_pos = controller.convert_hand_joints(pose_dict, operator2mano) + ref_value = controller.compute_ref_value( + joint_pos, + indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + + init_loss = None + if init_qpos0 is not None: + init_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=init_qpos0) + + # Optimize + try: + import torch + + with torch.enable_grad(): + with torch.inference_mode(False): + robot_qpos = retargeting.retarget(ref_value) + except Exception: + robot_qpos = retargeting.retarget(ref_value) + + opt_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=robot_qpos) + rows.append( + { + "x_deg": float(ax), + "y_deg": float(ay), + "z_deg": float(az), + "init_loss": float(init_loss) if init_loss is not None else "", + "opt_loss": float(opt_loss) if opt_loss is not None else "", + } + ) + + # Sort and write CSV + def sort_key(r): + v = r["opt_loss"] + return float(v) if v != "" else float("inf") + + rows_sorted = sorted(rows, key=sort_key) + csv_path = out_dir / f"{tag_base}__{hand}__rot_grid_search.csv" + with open(csv_path, "w", newline="", encoding="utf-8") as f: + w = csv.DictWriter(f, fieldnames=["x_deg", "y_deg", "z_deg", "init_loss", "opt_loss"]) + w.writeheader() + w.writerows(rows_sorted) + + # Optional: visualize best K (human+robot+loss) to sanity check. + if topk_viz > 0: + best = rows_sorted[: max(int(topk_viz), 0)] + for i, r in enumerate(best): + ax, ay, az = float(r["x_deg"]), float(r["y_deg"]), float(r["z_deg"]) + maybe_reset_qpos() + xyz_rot = _rotate_openxr26_xyz(openxr26_xyz, euler_xyz_deg=(ax, ay, az), pivot=pivot) + pose_dict = openxr26_positions_to_pose_dict(xyz_rot) + joint_pos = controller.convert_hand_joints(pose_dict, operator2mano) + ref_value = controller.compute_ref_value( + joint_pos, + indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + init_qpos = init_qpos0 if init_qpos0 is not None else None + try: + import torch + + with torch.enable_grad(): + with torch.inference_mode(False): + robot_qpos = retargeting.retarget(ref_value) + except Exception: + robot_qpos = retargeting.retarget(ref_value) + + tag = f"{tag_base}__{hand}__best{i:02d}__x{ax:+.0f}_y{ay:+.0f}_z{az:+.0f}" + _plot_openxr26_joints(xyz_rot, out_path=out_dir / f"{tag}__openxr26_rot.png", title=f"OpenXR26 (rot): {tag}") + _plot_joint_pos_openpose21( + joint_pos, + out_path=out_dir / f"{tag}__human_openpose21_preopt.png", + title=f"Human pre-opt (rot): {tag}", + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + if init_qpos is not None: + _plot_combined_scene( + joint_pos, + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + optimizer=retargeting.optimizer, + robot_qpos=init_qpos, + out_path=out_dir / f"{tag}__combined_init.png", + title=f"Human+Robot init (rot): {tag}", + ) + _plot_combined_scene( + joint_pos, + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + optimizer=retargeting.optimizer, + robot_qpos=robot_qpos, + out_path=out_dir / f"{tag}__combined_opt.png", + title=f"Human+Robot opt (rot): {tag}", + ) + init_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=init_qpos) if init_qpos is not None else None + opt_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=robot_qpos) + _plot_loss_summary( + out_path=out_dir / f"{tag}__loss.png", + title=f"Proxy loss (rot): {tag}", + init_loss=init_loss, + opt_loss=opt_loss, + ) + + return csv_path + + +def _grid_search_rotations_multi( + *, + controller: "_StandaloneDexTriHandRetargeter", + hand: str, + frame_paths: list[Path], + tag_base: str, + out_dir: Path, + angles_deg: list[float], + pivot: str, + step: int = 10, + max_frames: Optional[int] = None, + topk_viz: int = 0, + left_key: Optional[str] = None, + right_key: Optional[str] = None, + lr_key_2x26x3: Optional[str] = None, + single_hand: Optional[str] = None, +) -> Path: + """ + Multi-frame rotation grid search: + - samples `frame_paths[::step]` (and optionally truncates to `max_frames`) + - ranks rotations by aggregate opt loss across sampled frames + - writes a summary CSV sorted by mean_opt_loss + """ + import csv + import numpy as np + from scipy.spatial.transform import Rotation as R + + out_dir.mkdir(parents=True, exist_ok=True) + hand = str(hand).lower().strip() + if hand not in ("left", "right"): + raise ValueError("--grid-hand must be 'left' or 'right'") + step = max(int(step), 1) + + # sample frames + sampled = frame_paths[::step] + if max_frames is not None: + sampled = sampled[: max(int(max_frames), 0)] + if not sampled: + raise ValueError("No frames selected for multi-frame grid search") + + # Choose retargeting objects + retargeting = controller._dex_left_hand if hand == "left" else controller._dex_right_hand # noqa: SLF001 + operator2mano = _OPERATOR2MANO_LEFT if hand == "left" else _OPERATOR2MANO_RIGHT + + # Cache initial qpos for fair resets (if supported). + init_qpos0 = None + try: + if hasattr(retargeting, "get_qpos"): + init_qpos0 = np.asarray(retargeting.get_qpos(), dtype=np.float32).reshape(-1) + except Exception: + init_qpos0 = None + + def maybe_reset_qpos(): + if init_qpos0 is None: + return + if hasattr(retargeting, "set_qpos"): + try: + retargeting.set_qpos(init_qpos0) + except Exception: + pass + + # Precompute rotation matrices for all combos. + combos: list[tuple[float, float, float, np.ndarray]] = [] + for ax in angles_deg: + for ay in angles_deg: + for az in angles_deg: + mat = R.from_euler("xyz", [ax, ay, az], degrees=True).as_matrix().astype(np.float32) + combos.append((float(ax), float(ay), float(az), mat)) + + # Evaluate: for each combo, accumulate losses across frames. + summary_rows = [] + for ax, ay, az, rot in combos: + losses = [] + init_losses = [] + n_used = 0 + + for p in sampled: + left_xyz, right_xyz, _, _, _ = _load_openxr26_from_npz( + p, + left_key=left_key, + right_key=right_key, + lr_key_2x26x3=lr_key_2x26x3, + single_hand=single_hand, + ) + xyz = left_xyz if hand == "left" else right_xyz + if xyz is None: + continue + + # Rotate about pivot + joints = np.asarray(xyz, dtype=np.float32) + pv = str(pivot).lower().strip() + if pv == "origin": + center = np.zeros((1, 3), dtype=np.float32) + elif pv == "palm": + center = joints[HAND_JOINT_NAMES.index("palm") : HAND_JOINT_NAMES.index("palm") + 1] + else: + center = joints[HAND_JOINT_NAMES.index("wrist") : HAND_JOINT_NAMES.index("wrist") + 1] + joints_rot = (joints - center) @ rot.T + center + + pose_dict = openxr26_positions_to_pose_dict(joints_rot) + joint_pos = controller.convert_hand_joints(pose_dict, operator2mano) + ref_value = controller.compute_ref_value( + joint_pos, + indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + + if init_qpos0 is not None: + init_l = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=init_qpos0) + if init_l is not None: + init_losses.append(float(init_l)) + + maybe_reset_qpos() + try: + import torch + + with torch.enable_grad(): + with torch.inference_mode(False): + robot_qpos = retargeting.retarget(ref_value) + except Exception: + robot_qpos = retargeting.retarget(ref_value) + + opt_l = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=robot_qpos) + if opt_l is None: + continue + losses.append(float(opt_l)) + n_used += 1 + + if n_used == 0: + continue + arr = np.asarray(losses, dtype=np.float32) + init_arr = np.asarray(init_losses, dtype=np.float32) if init_losses else None + summary_rows.append( + { + "x_deg": ax, + "y_deg": ay, + "z_deg": az, + "n_frames": int(n_used), + "mean_opt_loss": float(np.mean(arr)), + "median_opt_loss": float(np.median(arr)), + "std_opt_loss": float(np.std(arr)), + "mean_init_loss": float(np.mean(init_arr)) if init_arr is not None else "", + } + ) + + # sort and write summary + summary_rows = sorted(summary_rows, key=lambda r: float(r["mean_opt_loss"])) + csv_path = out_dir / f"{tag_base}__{hand}__rot_grid_search_multiframe.csv" + with open(csv_path, "w", newline="", encoding="utf-8") as f: + w = csv.DictWriter( + f, + fieldnames=[ + "x_deg", + "y_deg", + "z_deg", + "n_frames", + "mean_opt_loss", + "median_opt_loss", + "std_opt_loss", + "mean_init_loss", + ], + ) + w.writeheader() + w.writerows(summary_rows) + + # Optional: visualize best K rotations on the first sampled frame (representative). + if topk_viz > 0 and summary_rows: + first_frame = sampled[0] + left_xyz, right_xyz, _, _, _ = _load_openxr26_from_npz( + first_frame, + left_key=left_key, + right_key=right_key, + lr_key_2x26x3=lr_key_2x26x3, + single_hand=single_hand, + ) + xyz0 = left_xyz if hand == "left" else right_xyz + if xyz0 is not None: + best = summary_rows[: max(int(topk_viz), 0)] + for i, r in enumerate(best): + ax, ay, az = float(r["x_deg"]), float(r["y_deg"]), float(r["z_deg"]) + tag = f"{tag_base}__{hand}__best{i:02d}__x{ax:+.0f}_y{ay:+.0f}_z{az:+.0f}__frame{first_frame.stem}" + # Reuse single-file viz path by calling the single-file grid helper's viz path building + # (implemented inline here for clarity). + from scipy.spatial.transform import Rotation as R2 + + rot = R2.from_euler("xyz", [ax, ay, az], degrees=True).as_matrix().astype(np.float32) + joints = np.asarray(xyz0, dtype=np.float32) + pv = str(pivot).lower().strip() + if pv == "origin": + center = np.zeros((1, 3), dtype=np.float32) + elif pv == "palm": + center = joints[HAND_JOINT_NAMES.index("palm") : HAND_JOINT_NAMES.index("palm") + 1] + else: + center = joints[HAND_JOINT_NAMES.index("wrist") : HAND_JOINT_NAMES.index("wrist") + 1] + joints_rot = (joints - center) @ rot.T + center + + pose_dict = openxr26_positions_to_pose_dict(joints_rot) + joint_pos = controller.convert_hand_joints(pose_dict, operator2mano) + ref_value = controller.compute_ref_value( + joint_pos, + indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + maybe_reset_qpos() + try: + import torch + + with torch.enable_grad(): + with torch.inference_mode(False): + robot_qpos = retargeting.retarget(ref_value) + except Exception: + robot_qpos = retargeting.retarget(ref_value) + + _plot_openxr26_joints(joints_rot, out_path=out_dir / f"{tag}__openxr26_rot.png", title=f"OpenXR26 (rot): {tag}") + _plot_joint_pos_openpose21( + joint_pos, + out_path=out_dir / f"{tag}__human_openpose21_preopt.png", + title=f"Human pre-opt (rot): {tag}", + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + _plot_combined_scene( + joint_pos, + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + optimizer=retargeting.optimizer, + robot_qpos=robot_qpos, + out_path=out_dir / f"{tag}__combined_opt.png", + title=f"Human+Robot opt (rot): {tag}", + ) + opt_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=robot_qpos) + _plot_loss_summary( + out_path=out_dir / f"{tag}__loss.png", + title=f"Proxy loss (rot): {tag}", + init_loss=None, + opt_loss=opt_loss, + ) + + return csv_path + + +def _try_load_openxr26_seq_from_npz( + npz_path: Path, + *, + seq_key: str = "joints_openxr26", + seq_track: int = 0, +) -> Optional[Any]: + """ + Best-effort loader for a sequence NPZ containing OpenXR-26 joints as: + - (B,T,26,3) under `seq_key`, OR + - (T,26,3) under `seq_key` (single track already sliced). + + Returns: + - joints_t263: (T,26,3) float32 if present, else None. + """ + import numpy as np + + npz_path = Path(npz_path) + with np.load(npz_path, allow_pickle=True) as npz: + if seq_key not in npz.files: + return None + v = np.asarray(npz[seq_key], dtype=np.float32) + if v.ndim == 4 and v.shape[-2:] == (26, 3): + b = int(seq_track) + if b < 0 or b >= v.shape[0]: + raise ValueError(f"{npz_path}: --seq-track={b} out of range for {seq_key} with shape {v.shape}") + return v[b] + if v.ndim == 3 and v.shape[-2:] == (26, 3): + return v + return None + + +def _grid_search_rotations_seq( + *, + controller: "_StandaloneDexTriHandRetargeter", + hand: str, + joints_t263, # (T,26,3) + tag_base: str, + out_dir: Path, + angles_deg: list[float], + pivot: str, + step: int = 10, + max_frames: Optional[int] = None, + topk_viz: int = 0, +) -> Path: + """ + Multi-frame rotation grid search on an in-memory OpenXR-26 joint sequence. + Same output format as `_grid_search_rotations_multi`. + """ + import csv + import numpy as np + from scipy.spatial.transform import Rotation as R + + out_dir.mkdir(parents=True, exist_ok=True) + hand = str(hand).lower().strip() + if hand not in ("left", "right"): + raise ValueError("--grid-hand must be 'left' or 'right'") + step = max(int(step), 1) + + joints_t263 = np.asarray(joints_t263, dtype=np.float32) + if joints_t263.ndim != 3 or joints_t263.shape[1:] != (26, 3): + raise ValueError(f"Expected joints_t263 shape (T,26,3), got {joints_t263.shape}") + + # sample frames by index + t_idxs = list(range(0, joints_t263.shape[0], step)) + if max_frames is not None: + t_idxs = t_idxs[: max(int(max_frames), 0)] + if not t_idxs: + raise ValueError("No frames selected for sequence multi-frame grid search") + + # Choose retargeting objects + retargeting = controller._dex_left_hand if hand == "left" else controller._dex_right_hand # noqa: SLF001 + operator2mano = _OPERATOR2MANO_LEFT if hand == "left" else _OPERATOR2MANO_RIGHT + + # Cache initial qpos for fair resets (if supported). + init_qpos0 = None + try: + if hasattr(retargeting, "get_qpos"): + init_qpos0 = np.asarray(retargeting.get_qpos(), dtype=np.float32).reshape(-1) + except Exception: + init_qpos0 = None + + def maybe_reset_qpos(): + if init_qpos0 is None: + return + if hasattr(retargeting, "set_qpos"): + try: + retargeting.set_qpos(init_qpos0) + except Exception: + pass + + # Precompute rotation matrices for all combos. + combos: list[tuple[float, float, float, np.ndarray]] = [] + for ax in angles_deg: + for ay in angles_deg: + for az in angles_deg: + mat = R.from_euler("xyz", [ax, ay, az], degrees=True).as_matrix().astype(np.float32) + combos.append((float(ax), float(ay), float(az), mat)) + + # Evaluate: for each combo, accumulate losses across frames. + summary_rows = [] + for ax, ay, az, rot in combos: + losses = [] + init_losses = [] + n_used = 0 + + for t in t_idxs: + xyz = joints_t263[int(t)] + joints = np.asarray(xyz, dtype=np.float32) + pv = str(pivot).lower().strip() + if pv == "origin": + center = np.zeros((1, 3), dtype=np.float32) + elif pv == "palm": + center = joints[HAND_JOINT_NAMES.index("palm") : HAND_JOINT_NAMES.index("palm") + 1] + else: + center = joints[HAND_JOINT_NAMES.index("wrist") : HAND_JOINT_NAMES.index("wrist") + 1] + joints_rot = (joints - center) @ rot.T + center + + pose_dict = openxr26_positions_to_pose_dict(joints_rot) + joint_pos = controller.convert_hand_joints(pose_dict, operator2mano) + ref_value = controller.compute_ref_value( + joint_pos, + indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + + if init_qpos0 is not None: + init_l = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=init_qpos0) + if init_l is not None: + init_losses.append(float(init_l)) + + maybe_reset_qpos() + try: + import torch + + with torch.enable_grad(): + with torch.inference_mode(False): + robot_qpos = retargeting.retarget(ref_value) + except Exception: + robot_qpos = retargeting.retarget(ref_value) + + opt_l = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=robot_qpos) + if opt_l is None: + continue + losses.append(float(opt_l)) + n_used += 1 + + if n_used == 0: + continue + arr = np.asarray(losses, dtype=np.float32) + init_arr = np.asarray(init_losses, dtype=np.float32) if init_losses else None + summary_rows.append( + { + "x_deg": ax, + "y_deg": ay, + "z_deg": az, + "n_frames": int(n_used), + "mean_opt_loss": float(np.mean(arr)), + "median_opt_loss": float(np.median(arr)), + "std_opt_loss": float(np.std(arr)), + "mean_init_loss": float(np.mean(init_arr)) if init_arr is not None else "", + } + ) + + summary_rows = sorted(summary_rows, key=lambda r: float(r["mean_opt_loss"])) + csv_path = out_dir / f"{tag_base}__{hand}__rot_grid_search_multiframe.csv" + with open(csv_path, "w", newline="", encoding="utf-8") as f: + w = csv.DictWriter( + f, + fieldnames=[ + "x_deg", + "y_deg", + "z_deg", + "n_frames", + "mean_opt_loss", + "median_opt_loss", + "std_opt_loss", + "mean_init_loss", + ], + ) + w.writeheader() + w.writerows(summary_rows) + + # Optional: visualize best K rotations on the first sampled frame (representative). + if topk_viz > 0 and summary_rows: + t0 = int(t_idxs[0]) + xyz0 = joints_t263[t0] + best = summary_rows[: max(int(topk_viz), 0)] + for i, r in enumerate(best): + ax, ay, az = float(r["x_deg"]), float(r["y_deg"]), float(r["z_deg"]) + tag = f"{tag_base}__{hand}__best{i:02d}__x{ax:+.0f}_y{ay:+.0f}_z{az:+.0f}__t{t0:04d}" + rot = R.from_euler("xyz", [ax, ay, az], degrees=True).as_matrix().astype(np.float32) + joints = np.asarray(xyz0, dtype=np.float32) + pv = str(pivot).lower().strip() + if pv == "origin": + center = np.zeros((1, 3), dtype=np.float32) + elif pv == "palm": + center = joints[HAND_JOINT_NAMES.index("palm") : HAND_JOINT_NAMES.index("palm") + 1] + else: + center = joints[HAND_JOINT_NAMES.index("wrist") : HAND_JOINT_NAMES.index("wrist") + 1] + joints_rot = (joints - center) @ rot.T + center + + pose_dict = openxr26_positions_to_pose_dict(joints_rot) + joint_pos = controller.convert_hand_joints(pose_dict, operator2mano) + ref_value = controller.compute_ref_value( + joint_pos, + indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + maybe_reset_qpos() + try: + import torch + + with torch.enable_grad(): + with torch.inference_mode(False): + robot_qpos = retargeting.retarget(ref_value) + except Exception: + robot_qpos = retargeting.retarget(ref_value) + + _plot_openxr26_joints(joints_rot, out_path=out_dir / f"{tag}__openxr26_rot.png", title=f"OpenXR26 (rot): {tag}") + _plot_joint_pos_openpose21( + joint_pos, + out_path=out_dir / f"{tag}__human_openpose21_preopt.png", + title=f"Human pre-opt (rot): {tag}", + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + _plot_combined_scene( + joint_pos, + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + optimizer=retargeting.optimizer, + robot_qpos=robot_qpos, + out_path=out_dir / f"{tag}__combined_opt.png", + title=f"Human+Robot opt (rot): {tag}", + ) + opt_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=robot_qpos) + _plot_loss_summary( + out_path=out_dir / f"{tag}__loss.png", + title=f"Proxy loss (rot): {tag}", + init_loss=None, + opt_loss=opt_loss, + ) + + return csv_path + + +def _describe_npz(npz) -> str: + """Return a compact description of keys and shapes for error messages.""" + parts = [] + for k in list(getattr(npz, "files", [])): + try: + v = npz[k] + shape = getattr(v, "shape", None) + dtype = getattr(v, "dtype", None) + parts.append(f"{k}: shape={shape}, dtype={dtype}") + except Exception: + parts.append(f"{k}: ") + return "; ".join(parts) + + +def _infer_hand_xyz_keys(npz) -> Tuple[Optional[str], Optional[str]]: + """ + Heuristic key inference for left/right OpenXR-26 joint xyz arrays. + We look for arrays shaped (26,3), preferring keys that contain 'left'/'right'. + """ + keys = list(npz.files) + + def is_26x3(k: str) -> bool: + try: + v = npz[k] + except Exception: + return False + return getattr(v, "shape", None) == (26, 3) + + left_candidates = [k for k in keys if is_26x3(k) and "left" in k.lower()] + right_candidates = [k for k in keys if is_26x3(k) and "right" in k.lower()] + if left_candidates and right_candidates: + return left_candidates[0], right_candidates[0] + + # Try common names + common_left = [ + "left_joints_xyz", + "left_openxr26_xyz", + "openxr26_left_xyz", + "openxr26_left", + "joints_left", + "joints_xyz_left", + ] + common_right = [ + "right_joints_xyz", + "right_openxr26_xyz", + "openxr26_right_xyz", + "openxr26_right", + "joints_right", + "joints_xyz_right", + ] + for lk in common_left: + if lk in keys and is_26x3(lk): + for rk in common_right: + if rk in keys and getattr(npz[rk], "shape", None) == (26, 3): + return lk, rk + + # Fallback: first two (26,3) arrays + any_26x3 = [k for k in keys if is_26x3(k)] + if len(any_26x3) >= 2: + return any_26x3[0], any_26x3[1] + if len(any_26x3) == 1: + return any_26x3[0], None + return None, None + + +def openxr26_positions_to_pose_dict(joints_xyz, *, wrist_quat_wxyz=None): + """ + Convert OpenXR-26 joint positions (26,3) to an OpenXR-style pose dict: + joint_name -> [x, y, z, qw, qx, qy, qz] + """ + import numpy as np + + joints_xyz = np.asarray(joints_xyz, dtype=np.float32) + if joints_xyz.shape != (26, 3): + raise ValueError(f"Expected joints_xyz shape (26,3), got {joints_xyz.shape}") + + if wrist_quat_wxyz is None: + wrist_quat_wxyz = np.array([1.0, 0.0, 0.0, 0.0], dtype=np.float32) + else: + wrist_quat_wxyz = np.asarray(wrist_quat_wxyz, dtype=np.float32).reshape(-1) + if wrist_quat_wxyz.shape != (4,): + raise ValueError(f"Expected wrist_quat_wxyz shape (4,), got {wrist_quat_wxyz.shape}") + + out = {} + for i, name in enumerate(HAND_JOINT_NAMES): + p = joints_xyz[i] + out[name] = np.array([p[0], p[1], p[2], *wrist_quat_wxyz], dtype=np.float32) + return out + + +def _quat_mul_wxyz(q1, q2): + """Quaternion multiply (wxyz): q = q1 ⊗ q2.""" + import numpy as np + + q1 = np.asarray(q1, dtype=np.float32).reshape(4) + q2 = np.asarray(q2, dtype=np.float32).reshape(4) + w1, x1, y1, z1 = q1 + w2, x2, y2, z2 = q2 + return np.array( + [ + w1 * w2 - x1 * x2 - y1 * y2 - z1 * z2, + w1 * x2 + x1 * w2 + y1 * z2 - z1 * y2, + w1 * y2 - x1 * z2 + y1 * w2 + z1 * x2, + w1 * z2 + x1 * y2 - y1 * x2 + z1 * w2, + ], + dtype=np.float32, + ) + + +def _retarget_abs_wrist_pose_usd_control(wrist_pose_wxyz, *, is_left: bool): + """ + Same wrist conversion as IsaacLab `G1TriHandUpperBodyRetargeter._retarget_abs`, + but without `isaaclab.utils.math`. + + In IsaacLab this is effectively: openxr_pose @ transform_pose, where transform_pose is + a pure rotation (combined_quat). Therefore: + pos_out = pos_in + quat_out = quat_in ⊗ combined_quat + """ + import numpy as np + + wrist_pose_wxyz = np.asarray(wrist_pose_wxyz, dtype=np.float32).reshape(-1) + if wrist_pose_wxyz.shape != (7,): + raise ValueError(f"Expected wrist pose shape (7,), got {wrist_pose_wxyz.shape}") + pos = wrist_pose_wxyz[:3] + quat = wrist_pose_wxyz[3:] + combined = _LEFT_WRIST_COMBINED_QUAT_WXYZ if is_left else _RIGHT_WRIST_COMBINED_QUAT_WXYZ + quat_out = _quat_mul_wxyz(quat, combined) + return np.concatenate([pos, quat_out]).astype(np.float32) + + +class _StandaloneDexTriHandRetargeter: + """Standalone version of IsaacLab's `G1TriHandDexRetargeting` (no `isaaclab` imports).""" + + def __init__( + self, + *, + left_config_yml: Path, + right_config_yml: Path, + left_hand_urdf: Path, + right_hand_urdf: Path, + viz_dir: Optional[Path] = None, + viz_tag_prefix: str = "", + ) -> None: + import yaml + from dex_retargeting.retargeting_config import RetargetingConfig + + self._dex_left_hand = self._load_config( + RetargetingConfig, yaml, cfg_path=left_config_yml, urdf_path=left_hand_urdf + ) + self._dex_right_hand = self._load_config( + RetargetingConfig, yaml, cfg_path=right_config_yml, urdf_path=right_hand_urdf + ) + + self.left_dof_names = list(self._dex_left_hand.optimizer.robot.dof_joint_names) + self.right_dof_names = list(self._dex_right_hand.optimizer.robot.dof_joint_names) + self.dof_names = self.left_dof_names + self.right_dof_names + self._viz_dir = Path(viz_dir) if viz_dir is not None else None + self._viz_tag_prefix = str(viz_tag_prefix) + + @staticmethod + def _load_config(RetargetingConfig, yaml, *, cfg_path: Path, urdf_path: Path): + cfg_path = Path(cfg_path) + urdf_path = Path(urdf_path) + if not cfg_path.exists(): + raise FileNotFoundError(f"Missing dex-retargeting config: {cfg_path}") + if not urdf_path.exists(): + raise FileNotFoundError(f"Missing URDF: {urdf_path}") + + with open(cfg_path, "r") as f: + cfg = yaml.safe_load(f) + if "retargeting" not in cfg: + raise ValueError(f"Config file has no 'retargeting' section: {cfg_path}") + cfg["retargeting"]["urdf_path"] = str(urdf_path) + + with tempfile.NamedTemporaryFile("w", suffix=".yml", delete=False) as tf: + yaml.safe_dump(cfg, tf) + tmp_path = tf.name + try: + return RetargetingConfig.load_from_file(tmp_path).build() + finally: + try: + os.remove(tmp_path) + except OSError: + pass + + @staticmethod + def convert_hand_joints(hand_poses, operator2mano): + import numpy as np + from scipy.spatial.transform import Rotation as R + + joint_position = np.zeros((21, 3), dtype=np.float32) + hand_joints = list(hand_poses.values()) + for i, joint_index in enumerate(_HAND_JOINTS_INDEX): + joint_position[i] = np.asarray(hand_joints[joint_index][:3], dtype=np.float32) + + joint_position = joint_position - joint_position[0:1, :] + xr_wrist_quat = np.asarray(hand_poses.get("wrist")[3:], dtype=np.float32) + wrist_rot = R.from_quat([xr_wrist_quat[1], xr_wrist_quat[2], xr_wrist_quat[3], xr_wrist_quat[0]]).as_matrix() + return joint_position @ wrist_rot @ np.asarray(operator2mano, dtype=np.float32) + + @staticmethod + def compute_ref_value(joint_position, indices, retargeting_type: str): + import numpy as np + + if retargeting_type == "POSITION": + return joint_position[indices, :] + origin_indices = indices[0, :] + task_indices = indices[1, :] + return joint_position[task_indices, :] - joint_position[origin_indices, :] + + def compute_one_hand( + self, + *, + hand_joints, + retargeting, + operator2mano, + tag: str, + openxr26_xyz=None, + do_viz: bool = True, + ): + import torch + + joint_pos = self.convert_hand_joints(hand_joints, operator2mano) + ref_value = self.compute_ref_value( + joint_pos, + indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=retargeting.optimizer.retargeting_type, + ) + + # --- Debug visualization (before optimize) --- + if self._viz_dir is not None and do_viz: + viz_tag = f"{self._viz_tag_prefix}{tag}".strip("_") + try: + # raw openxr26 + if openxr26_xyz is not None: + _plot_openxr26_joints( + openxr26_xyz, + out_path=self._viz_dir / f"{viz_tag}__openxr26.png", + title=f"OpenXR26 joints: {viz_tag}", + ) + # openpose21 canonical (+ ref_value overlay) + _plot_joint_pos_openpose21( + joint_pos, + out_path=self._viz_dir / f"{viz_tag}__human_openpose21_preopt.png", + title=f"Human (OpenPose21 canonical) pre-opt: {viz_tag}", + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + ) + except Exception as e: + # Keep retargeting robust even if plotting fails. + _append_text(self._viz_dir / "_viz_errors.txt", f"{viz_tag} preopt plot failed: {e}") + + # Try to capture init qpos for before/after robot visualization + proxy loss. + init_qpos = None + try: + if hasattr(retargeting, "get_qpos"): + init_qpos = retargeting.get_qpos() + except Exception: + init_qpos = None + + # Optional combined plot at init qpos + if self._viz_dir is not None and do_viz and init_qpos is not None: + viz_tag = f"{self._viz_tag_prefix}{tag}".strip("_") + try: + _plot_combined_scene( + joint_pos, + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + optimizer=retargeting.optimizer, + robot_qpos=init_qpos, + out_path=self._viz_dir / f"{viz_tag}__combined_init.png", + title=f"Human + Robot (init): {viz_tag}", + ) + except Exception as e: + _append_text(self._viz_dir / "_viz_errors.txt", f"{viz_tag} combined(init) plot failed: {e}") + + with torch.enable_grad(): + with torch.inference_mode(False): + robot_qpos = retargeting.retarget(ref_value) + + # --- Debug visualization (after optimize) --- + if self._viz_dir is not None and do_viz: + viz_tag = f"{self._viz_tag_prefix}{tag}".strip("_") + try: + _plot_combined_scene( + joint_pos, + ref_value=ref_value, + human_indices=retargeting.optimizer.target_link_human_indices, + retargeting_type=str(retargeting.optimizer.retargeting_type), + optimizer=retargeting.optimizer, + robot_qpos=robot_qpos, + out_path=self._viz_dir / f"{viz_tag}__combined_opt.png", + title=f"Human + Robot (opt): {viz_tag}", + ) + _plot_robot_links( + robot_qpos, + optimizer=retargeting.optimizer, + out_path=self._viz_dir / f"{viz_tag}__robot_links_opt.png", + title=f"Robot links (opt): {viz_tag}", + ) + + init_loss = None + if init_qpos is not None: + init_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=init_qpos) + opt_loss = _proxy_loss_from_optimizer(retargeting.optimizer, ref_value=ref_value, robot_qpos=robot_qpos) + _plot_loss_summary( + out_path=self._viz_dir / f"{viz_tag}__loss.png", + title=f"Proxy loss (init vs opt): {viz_tag}", + init_loss=init_loss, + opt_loss=opt_loss, + ) + # Also write a small text file for easy grepping. + (self._viz_dir / f"{viz_tag}__loss.txt").write_text( + f"init_loss={init_loss}\nopt_loss={opt_loss}\n", + encoding="utf-8", + ) + except Exception as e: + _append_text(self._viz_dir / "_viz_errors.txt", f"{viz_tag} postopt plot failed: {e}") + + return robot_qpos + + def compute_left(self, left_hand_poses, *, tag: str = "left", openxr26_xyz=None, do_viz: bool = True): + import numpy as np + + if left_hand_poses is None: + return np.zeros(len(self.left_dof_names), dtype=np.float32) + return self.compute_one_hand( + hand_joints=left_hand_poses, + retargeting=self._dex_left_hand, + operator2mano=_OPERATOR2MANO_LEFT, + tag=tag, + openxr26_xyz=openxr26_xyz, + do_viz=do_viz, + ) + + def compute_right(self, right_hand_poses, *, tag: str = "right", openxr26_xyz=None, do_viz: bool = True): + import numpy as np + + if right_hand_poses is None: + return np.zeros(len(self.right_dof_names), dtype=np.float32) + return self.compute_one_hand( + hand_joints=right_hand_poses, + retargeting=self._dex_right_hand, + operator2mano=_OPERATOR2MANO_RIGHT, + tag=tag, + openxr26_xyz=openxr26_xyz, + do_viz=do_viz, + ) + +def _load_openxr26_from_npz( + npz_path: Path, + *, + left_key: Optional[str], + right_key: Optional[str], + lr_key_2x26x3: Optional[str], + single_hand: Optional[str] = None, # "left" | "right" | None +) -> Tuple[Optional[Any], Optional[Any], Optional[str], Optional[str], Optional[str]]: + """ + Returns (left_xyz, right_xyz, used_left_key, used_right_key, used_lr_key) where: + - left_xyz/right_xyz are shaped (26,3) float32 or None if missing. + """ + import numpy as np + + with np.load(npz_path, allow_pickle=True) as npz: + if lr_key_2x26x3 is not None: + if lr_key_2x26x3 not in npz.files: + raise KeyError( + f"{npz_path}: missing key '{lr_key_2x26x3}'. Available: {_describe_npz(npz)}" + ) + v = np.asarray(npz[lr_key_2x26x3], dtype=np.float32) + if v.shape != (2, 26, 3): + raise ValueError(f"{npz_path}: expected {lr_key_2x26x3} shape (2,26,3), got {v.shape}") + return v[0], v[1], None, None, lr_key_2x26x3 + + if left_key is None and right_key is None: + left_key, right_key = _infer_hand_xyz_keys(npz) + if left_key is None and right_key is None: + raise ValueError( + f"{npz_path}: could not infer any (26,3) OpenXR-26 xyz arrays. " + f"Pass --left-key/--right-key or --lr-key-2x26x3. Available: {_describe_npz(npz)}" + ) + + # If only ONE (26,3) array exists, `_infer_hand_xyz_keys` will return it as "left" by default. + # Allow user to force-mount it as "right" (or "left") when processing single-hand tracks. + if single_hand is not None: + sh = str(single_hand).lower().strip() + if sh not in ("left", "right"): + raise ValueError(f"{npz_path}: invalid single_hand='{single_hand}' (expected 'left' or 'right')") + if left_key is not None and right_key is None and sh == "right": + right_key, left_key = left_key, None + elif right_key is not None and left_key is None and sh == "left": + left_key, right_key = right_key, None + + left_xyz = None + right_xyz = None + if left_key is not None: + if left_key not in npz.files: + raise KeyError(f"{npz_path}: missing key '{left_key}'. Available: {_describe_npz(npz)}") + left_xyz = np.asarray(npz[left_key], dtype=np.float32) + if left_xyz.shape != (26, 3): + raise ValueError( + f"{npz_path}: expected {left_key} shape (26,3), got {left_xyz.shape}. " + f"Available: {_describe_npz(npz)}" + ) + if right_key is not None: + if right_key not in npz.files: + raise KeyError(f"{npz_path}: missing key '{right_key}'. Available: {_describe_npz(npz)}") + right_xyz = np.asarray(npz[right_key], dtype=np.float32) + if right_xyz.shape != (26, 3): + raise ValueError( + f"{npz_path}: expected {right_key} shape (26,3), got {right_xyz.shape}. " + f"Available: {_describe_npz(npz)}" + ) + return left_xyz, right_xyz, left_key, right_key, None + + +def _load_wrist_pose_from_npz( + npz_path: Path, + *, + left_wrist_pose_key: Optional[str], + right_wrist_pose_key: Optional[str], +) -> Tuple[Optional[Any], Optional[Any], Optional[str], Optional[str]]: + """ + Optional helper: load per-hand wrist poses (x,y,z,qw,qx,qy,qz) from an input frame NPZ. + Returns (left_wrist_pose, right_wrist_pose, used_left_key, used_right_key). + """ + import numpy as np + + with np.load(npz_path, allow_pickle=True) as npz: + keys = list(npz.files) + + def _pick_pose(k: Optional[str], candidates: list[str]) -> Tuple[Optional[str], Optional[np.ndarray]]: + if k is not None: + if k not in keys: + raise KeyError(f"{npz_path}: missing key '{k}'. Available: {_describe_npz(npz)}") + v = np.asarray(npz[k], dtype=np.float32).reshape(-1) + if v.shape != (7,): + raise ValueError(f"{npz_path}: expected '{k}' shape (7,), got {v.shape}") + return k, v + for ck in candidates: + if ck in keys: + v = np.asarray(npz[ck], dtype=np.float32).reshape(-1) + if v.shape == (7,): + return ck, v + return None, None + + used_lk, left_pose = _pick_pose( + left_wrist_pose_key, + candidates=["left_wrist_pose_wxyz", "left_wrist_pose", "left_wrist_wxyz", "left_wrist"], + ) + used_rk, right_pose = _pick_pose( + right_wrist_pose_key, + candidates=["right_wrist_pose_wxyz", "right_wrist_pose", "right_wrist_wxyz", "right_wrist"], + ) + return left_pose, right_pose, used_lk, used_rk + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument( + "--input", + type=str, + required=True, + help=( + "Input .npz file or a directory containing per-frame .npz files. " + "Also supports a single 'sequence NPZ' containing OpenXR-26 joints as (B,T,26,3) under --seq-key." + ), + ) + parser.add_argument( + "--glob", + type=str, + default="*.npz", + help="When --input is a directory, glob pattern to find frames (default: *.npz).", + ) + parser.add_argument( + "--output", + type=str, + required=True, + help="Output directory to write retargeted command .npz files.", + ) + parser.add_argument("--sim-device", type=str, default="cpu", help="Torch device for outputs (default: cpu).") + parser.add_argument( + "--left-key", + type=str, + default=None, + help="NPZ key for left hand OpenXR-26 xyz array with shape (26,3). If omitted, inferred.", + ) + parser.add_argument( + "--right-key", + type=str, + default=None, + help="NPZ key for right hand OpenXR-26 xyz array with shape (26,3). If omitted, inferred.", + ) + parser.add_argument( + "--lr-key-2x26x3", + type=str, + default=None, + help="NPZ key for stacked hands xyz with shape (2,26,3) where [0]=left, [1]=right.", + ) + parser.add_argument( + "--left-wrist-pose-key", + type=str, + default=None, + help="Optional NPZ key for left wrist pose (7,) as [x,y,z,qw,qx,qy,qz]. If omitted, inferred.", + ) + parser.add_argument( + "--right-wrist-pose-key", + type=str, + default=None, + help="Optional NPZ key for right wrist pose (7,) as [x,y,z,qw,qx,qy,qz]. If omitted, inferred.", + ) + parser.add_argument( + "--single-hand", + type=str, + default=None, + choices=["left", "right"], + help=( + "If the NPZ contains only ONE (26,3) hand array, force it to be treated as this hand. " + "Useful for single-hand tracks (e.g. track01 is right-hand only)." + ), + ) + parser.add_argument( + "--left-hand-urdf", + type=str, + default=None, + help="Local URDF path for the G1 LEFT hand (required for standalone retargeting).", + ) + parser.add_argument( + "--right-hand-urdf", + type=str, + default=None, + help="Local URDF path for the G1 RIGHT hand (required for standalone retargeting).", + ) + parser.add_argument( + "--dex-config-dir", + type=str, + default=None, + help=( + "Directory containing dex-retargeting YAML configs. " + "If omitted, will try to auto-locate configs (prefers this repo's `examples/mano_hand_retargeter/_DATA`)." + ), + ) + parser.add_argument( + "--left-config", + type=str, + default="g1_hand_left_dexpilot.yml", + help="Left dex-retargeting config filename (within --dex-config-dir).", + ) + parser.add_argument( + "--right-config", + type=str, + default="g1_hand_right_dexpilot.yml", + help="Right dex-retargeting config filename (within --dex-config-dir).", + ) + parser.add_argument( + "--viz-dir", + type=str, + default=None, + help=( + "If set, dumps debug PNGs (human joints, ref_value, robot links init/opt, proxy loss) to this directory." + ), + ) + parser.add_argument( + "--viz-every", + type=int, + default=1, + help="Only visualize every N-th frame when processing a directory (default: 1).", + ) + parser.add_argument( + "--viz-hands", + type=str, + default="both", + choices=["left", "right", "both"], + help="Which hands to visualize (default: both).", + ) + parser.add_argument( + "--apply-rot", + type=str, + default=None, + help="Optional fixed input rotation as 'x_deg,y_deg,z_deg' applied to OpenXR26 joints before retargeting.", + ) + parser.add_argument( + "--apply-rot-left", + type=str, + default=None, + help=( + "Optional fixed input rotation as 'x_deg,y_deg,z_deg' applied ONLY to the LEFT hand OpenXR26 joints " + "before retargeting. Overrides --apply-rot/--apply-rot-hand for the left hand." + ), + ) + parser.add_argument( + "--apply-rot-right", + type=str, + default=None, + help=( + "Optional fixed input rotation as 'x_deg,y_deg,z_deg' applied ONLY to the RIGHT hand OpenXR26 joints " + "before retargeting. Overrides --apply-rot/--apply-rot-hand for the right hand." + ), + ) + parser.add_argument( + "--apply-rot-hand", + type=str, + default="both", + choices=["left", "right", "both"], + help="Which hand(s) to apply --apply-rot to (default: both).", + ) + parser.add_argument( + "--apply-rot-pivot", + type=str, + default="wrist", + choices=["wrist", "palm", "origin"], + help="Pivot point for --apply-rot (default: wrist).", + ) + parser.add_argument( + "--save-traj-npz", + type=str, + default=None, + help=( + "If set, also writes a single trajectory NPZ with stacked joint targets for replay in Isaac Sim. " + "Contains right/left hand joint targets (7 DOF each) when available, plus frame file list." + ), + ) + parser.add_argument( + "--traj-step", + type=int, + default=1, + help="When --save-traj-npz is set, only keep every N-th frame in the saved trajectory (default: 1).", + ) + parser.add_argument( + "--traj-frame-dt", + type=float, + default=1.0 / 30.0, + help="Frame timestep (seconds) stored in the trajectory NPZ for replay (default: 1/30).", + ) + parser.add_argument( + "--grid-search-rot", + action="store_true", + help=( + "Grid search input XYZ Euler rotations and compare proxy loss. " + "Supports either (1) a directory of per-frame .npz files, or (2) a single sequence .npz containing " + "`joints_openxr26` with shape (B,T,26,3) (use --seq-track to choose B)." + ), + ) + parser.add_argument( + "--grid-hand", + type=str, + default="right", + choices=["left", "right"], + help=( + "Which hand to run the rotation grid search on (default: right). " + "DEPRECATED: prefer --grid-hands." + ), + ) + parser.add_argument( + "--grid-hands", + type=str, + default=None, + choices=["left", "right", "both"], + help="Which hand(s) to run the rotation grid search on. If set, overrides --grid-hand.", + ) + parser.add_argument( + "--grid-angles", + type=str, + default="-180,-135,-90,-45,0,45,90,135,180", + help="Comma-separated list of angles (degrees) to sweep for x,y,z (default is your 9-angle set).", + ) + parser.add_argument( + "--grid-pivot", + type=str, + default="wrist", + choices=["wrist", "palm", "origin"], + help="Pivot point for rotating the OpenXR26 joints (default: wrist).", + ) + parser.add_argument( + "--grid-out-dir", + type=str, + default=None, + help=( + "Output directory for grid-search CSV (and optional best-k viz). " + "Defaults to /rot_grid_search." + ), + ) + parser.add_argument( + "--grid-topk-viz", + type=int, + default=0, + help="If >0, also dump debug PNGs for the best K rotations (default: 0).", + ) + parser.add_argument( + "--grid-step", + type=int, + default=10, + help="When running grid search on a directory, only evaluate every N-th frame (default: 10).", + ) + parser.add_argument( + "--grid-max-frames", + type=int, + default=None, + help="Optional cap on number of sampled frames for grid search (after applying --grid-step).", + ) + parser.add_argument( + "--seq-key", + type=str, + default="joints_openxr26", + help="When --input is a sequence NPZ, the key for OpenXR-26 joint positions (default: joints_openxr26).", + ) + parser.add_argument( + "--seq-track", + type=int, + default=0, + help="When --input is a sequence NPZ with shape (B,T,26,3), which track index (B) to use (default: 0).", + ) + args = parser.parse_args() + + try: + import numpy as np + import torch # noqa: F401 + except Exception as e: + raise ImportError( + "Missing required Python deps. Install at least: numpy, torch, scipy, pyyaml, dex_retargeting. " + "Example: python3 -m pip install numpy torch scipy pyyaml dex-retargeting" + ) from e + + if args.left_hand_urdf is None or args.right_hand_urdf is None: + raise ValueError("--left-hand-urdf and --right-hand-urdf are required in standalone mode.") + + # Resolve dex-retargeting config directory. + dex_dir = Path(args.dex_config_dir) if args.dex_config_dir is not None else None + if dex_dir is None: + # Prefer local, repo-relative data first (works out-of-the-box for this repo). + this_dir = Path(__file__).resolve().parent + # Fall back to common IsaacLab checkout layouts (best-effort). + isaaclab_root = os.environ.get("ISAACLAB_PATH", None) + candidates = [ + this_dir / "_DATA", + this_dir / "_DATA" / "dex-retargeting", + # If user provides ISAACLAB_PATH, try to resolve from there. + (Path(isaaclab_root) / "source/isaaclab/isaaclab/devices/openxr/retargeters/humanoid/unitree/trihand/data/configs/dex-retargeting") + if isaaclab_root + else None, + Path.home() + / "Documents" + / "IsaacLab" + / "source" + / "isaaclab" + / "isaaclab" + / "devices" + / "openxr" + / "retargeters" + / "humanoid" + / "unitree" + / "trihand" + / "data" + / "configs" + / "dex-retargeting", + ] + dex_dir = next((c for c in candidates if c is not None and c.exists()), None) + if dex_dir is None or not dex_dir.exists(): + raise FileNotFoundError( + "Could not locate dex-retargeting YAML configs. " + "Pass --dex-config-dir pointing to a directory that contains the YAMLs " + f"(e.g. '{args.left_config}' / '{args.right_config}'). " + "This repo typically keeps them under `examples/mano_hand_retargeter/_DATA`." + ) + + left_cfg = dex_dir / args.left_config + right_cfg = dex_dir / args.right_config + + controller = _StandaloneDexTriHandRetargeter( + left_config_yml=left_cfg, + right_config_yml=right_cfg, + left_hand_urdf=Path(args.left_hand_urdf), + right_hand_urdf=Path(args.right_hand_urdf), + viz_dir=Path(args.viz_dir) if args.viz_dir else None, + viz_tag_prefix="", + ) + hand_joint_names = list(controller.dof_names) + + in_path = Path(args.input) + out_dir = Path(args.output) + out_dir.mkdir(parents=True, exist_ok=True) + viz_dir = Path(args.viz_dir) if args.viz_dir else None + if viz_dir is not None: + viz_dir.mkdir(parents=True, exist_ok=True) + + # ------------------------------------------------------------ + # Rotation grid search mode (single file only) + # ------------------------------------------------------------ + if args.grid_search_rot: + angles = _parse_float_list(args.grid_angles) + if not angles: + raise ValueError("--grid-angles parsed to an empty list") + + grid_hands = args.grid_hands if args.grid_hands is not None else args.grid_hand + grid_out_dir = Path(args.grid_out_dir) if args.grid_out_dir else (out_dir / "rot_grid_search") + + grid_out_dir = Path(args.grid_out_dir) if args.grid_out_dir else (out_dir / "rot_grid_search") + + if in_path.is_dir(): + # Multi-frame mode: evaluate directory with stride + frame_paths = sorted(in_path.glob(args.glob)) + if not frame_paths: + raise FileNotFoundError(f"No input frames found under {in_path} with glob '{args.glob}'") + hands_to_run = ["left", "right"] if grid_hands == "both" else [grid_hands] + csv_paths = [] + for h in hands_to_run: + csv_path = _grid_search_rotations_multi( + controller=controller, + hand=str(h), + frame_paths=frame_paths, + tag_base=in_path.name, + out_dir=grid_out_dir, + angles_deg=angles, + pivot=args.grid_pivot, + step=int(args.grid_step), + max_frames=args.grid_max_frames, + topk_viz=int(args.grid_topk_viz), + left_key=args.left_key, + right_key=args.right_key, + lr_key_2x26x3=args.lr_key_2x26x3, + single_hand=args.single_hand, + ) + csv_paths.append(csv_path) + print(f"[grid-search] wrote (multi-frame) {h}: {csv_path}") + if len(csv_paths) == 1: + print(f"[grid-search] wrote (multi-frame): {csv_paths[0]}") + return + + # Single file mode: either a sequence NPZ (multi-frame) or a single-frame NPZ. + seq = _try_load_openxr26_seq_from_npz(in_path, seq_key=str(args.seq_key), seq_track=int(args.seq_track)) + if seq is not None: + if grid_hands == "both": + raise ValueError( + "Sequence NPZ grid search assumes the file contains ONE hand's joints. " + "Run twice (left/right) with the corresponding input file." + ) + csv_path = _grid_search_rotations_seq( + controller=controller, + hand=str(grid_hands), + joints_t263=seq, + tag_base=in_path.stem, + out_dir=grid_out_dir, + angles_deg=angles, + pivot=args.grid_pivot, + step=int(args.grid_step), + max_frames=args.grid_max_frames, + topk_viz=int(args.grid_topk_viz), + ) + print(f"[grid-search] wrote (sequence) {grid_hands}: {csv_path}") + return + + # Single-frame NPZ: evaluate one file + left_xyz, right_xyz, used_left_key, used_right_key, used_lr_key_2x26x3 = _load_openxr26_from_npz( + in_path, + left_key=args.left_key, + right_key=args.right_key, + lr_key_2x26x3=args.lr_key_2x26x3, + single_hand=args.single_hand, + ) + hands_to_run = ["left", "right"] if grid_hands == "both" else [grid_hands] + for h in hands_to_run: + openxr26_xyz = left_xyz if str(h) == "left" else right_xyz + if openxr26_xyz is None: + raise ValueError( + f"Grid search requested for {h} but that hand has no (26,3) array. " + f"Try --single-hand {h} or pass explicit keys." + ) + + csv_path = _grid_search_rotations( + controller=controller, + hand=str(h), + openxr26_xyz=openxr26_xyz, + tag_base=in_path.stem, + out_dir=grid_out_dir, + angles_deg=angles, + pivot=args.grid_pivot, + topk_viz=int(args.grid_topk_viz), + ) + print(f"[grid-search] wrote {h}: {csv_path}") + return + + # ------------------------------------------------------------ + # Normal retargeting mode: per-frame NPZs OR a single sequence NPZ + # ------------------------------------------------------------ + + # Sequence NPZ mode (single file containing (B,T,26,3) or (T,26,3)) + if in_path.is_file() and in_path.suffix.lower() == ".npz": + seq = _try_load_openxr26_seq_from_npz(in_path, seq_key=str(args.seq_key), seq_track=int(args.seq_track)) + else: + seq = None + + if seq is not None: + # This sequence format does not encode left+right in a single file; user should pass a left-only + # or right-only sequence, and specify which hand it is with --single-hand. + if args.single_hand is None: + raise ValueError( + "Sequence NPZ input detected (via --seq-key), but --single-hand was not set. " + "Pass --single-hand left or --single-hand right to indicate which hand this file represents." + ) + + seq_hand = str(args.single_hand).lower().strip() + if seq_hand not in ("left", "right"): + raise ValueError("--single-hand must be 'left' or 'right' for sequence NPZ mode.") + + seq = np.asarray(seq, dtype=np.float32) + if seq.ndim != 3 or seq.shape[1:] != (26, 3): + raise ValueError(f"Sequence NPZ {in_path}: expected (T,26,3) after slicing, got {seq.shape}") + + T = int(seq.shape[0]) + used_left_key = str(args.seq_key) if seq_hand == "left" else None + used_right_key = str(args.seq_key) if seq_hand == "right" else None + used_lr_key_2x26x3 = None + used_left_wrist_key = None + used_right_wrist_key = None + + # Rotation parsing (mirrors per-frame mode below). + def _parse_rot_seq(name: str, s: Optional[str]): + if s is None: + return None + vals = _parse_float_list(s) + if len(vals) != 3: + raise ValueError(f"{name} must be 'x_deg,y_deg,z_deg' (3 numbers)") + return (float(vals[0]), float(vals[1]), float(vals[2])) + + apply_rot_global = _parse_rot_seq("--apply-rot", args.apply_rot) + apply_rot_left = _parse_rot_seq("--apply-rot-left", args.apply_rot_left) + apply_rot_right = _parse_rot_seq("--apply-rot-right", args.apply_rot_right) + + # Optional trajectory accumulation for replay. + traj_paths: list[str] = [] + traj_left_q: list[Any] = [] + traj_right_q: list[Any] = [] + traj_left_wrist: list[Any] = [] + traj_right_wrist: list[Any] = [] + + for frame_i in range(T): + xyz = seq[frame_i] + left_xyz = xyz if seq_hand == "left" else None + right_xyz = xyz if seq_hand == "right" else None + left_wrist_pose = None + right_wrist_pose = None + + # Apply fixed rotations (if requested) before pose dict conversion. + if left_xyz is not None: + rot_l = apply_rot_left + if rot_l is None and apply_rot_global is not None and args.apply_rot_hand in ("left", "both"): + rot_l = apply_rot_global + if rot_l is not None: + left_xyz = _rotate_openxr26_xyz(left_xyz, euler_xyz_deg=rot_l, pivot=args.apply_rot_pivot) + + if right_xyz is not None: + rot_r = apply_rot_right + if rot_r is None and apply_rot_global is not None and args.apply_rot_hand in ("right", "both"): + rot_r = apply_rot_global + if rot_r is not None: + right_xyz = _rotate_openxr26_xyz(right_xyz, euler_xyz_deg=rot_r, pivot=args.apply_rot_pivot) + + left_pose_dict = None if left_xyz is None else openxr26_positions_to_pose_dict(left_xyz) + right_pose_dict = None if right_xyz is None else openxr26_positions_to_pose_dict(right_xyz) + + default_pose = np.array([0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], dtype=np.float32) + left_wrist = ( + default_pose + if left_pose_dict is None + else (left_wrist_pose if left_wrist_pose is not None else left_pose_dict.get("wrist", default_pose)) + ) + right_wrist = ( + default_pose + if right_pose_dict is None + else (right_wrist_pose if right_wrist_pose is not None else right_pose_dict.get("wrist", default_pose)) + ) + + do_viz = args.viz_dir is not None and (frame_i % max(int(args.viz_every), 1) == 0) + tag_base = f"{in_path.stem}__b{int(args.seq_track):02d}__t{frame_i:04d}" + + do_viz_left = do_viz and args.viz_hands in ("left", "both") + do_viz_right = do_viz and args.viz_hands in ("right", "both") + + left_q = ( + controller.compute_left( + left_pose_dict, + tag=f"{tag_base}__left", + openxr26_xyz=left_xyz if do_viz_left else None, + do_viz=do_viz_left, + ) + if left_pose_dict is not None + else np.zeros(len(controller.left_dof_names), dtype=np.float32) + ) + right_q = ( + controller.compute_right( + right_pose_dict, + tag=f"{tag_base}__right", + openxr26_xyz=right_xyz if do_viz_right else None, + do_viz=do_viz_right, + ) + if right_pose_dict is not None + else np.zeros(len(controller.right_dof_names), dtype=np.float32) + ) + hand_joints = np.concatenate([np.asarray(left_q, dtype=np.float32), np.asarray(right_q, dtype=np.float32)]) + + left_wrist_cmd = _retarget_abs_wrist_pose_usd_control(left_wrist, is_left=True) + right_wrist_cmd = _retarget_abs_wrist_pose_usd_control(right_wrist, is_left=False) + cmd_np = np.concatenate([left_wrist_cmd, right_wrist_cmd, hand_joints]).astype(np.float32) + + out_path = out_dir / f"{in_path.stem}_b{int(args.seq_track):02d}_t{frame_i:04d}_g1_upper_body_cmd.npz" + np.savez_compressed( + out_path, + cmd=cmd_np, + left_wrist=cmd_np[:7], + right_wrist=cmd_np[7:14], + hand_joints=cmd_np[14:], + hand_joint_names=np.array(hand_joint_names, dtype=object), + input_file=str(in_path), + input_frame_index=int(frame_i), + seq_key=str(args.seq_key), + seq_track=int(args.seq_track), + used_left_key=used_left_key, + used_right_key=used_right_key, + used_lr_key_2x26x3=used_lr_key_2x26x3, + used_left_wrist_pose_key=used_left_wrist_key, + used_right_wrist_pose_key=used_right_wrist_key, + ) + + if args.save_traj_npz is not None and (frame_i % max(int(args.traj_step), 1) == 0): + traj_paths.append(f"{str(in_path)}::t={frame_i:04d}") + traj_left_q.append(np.asarray(left_q, dtype=np.float32).reshape(-1)) + traj_right_q.append(np.asarray(right_q, dtype=np.float32).reshape(-1)) + traj_left_wrist.append(np.asarray(left_wrist_cmd, dtype=np.float32).reshape(7)) + traj_right_wrist.append(np.asarray(right_wrist_cmd, dtype=np.float32).reshape(7)) + + print(f"Wrote {T} command file(s) to: {out_dir}") + + if args.save_traj_npz is not None: + traj_path = Path(args.save_traj_npz).expanduser().resolve() + traj_path.parent.mkdir(parents=True, exist_ok=True) + np.savez_compressed( + traj_path, + frame_files=np.array(traj_paths, dtype=object), + frame_dt=float(args.traj_frame_dt), + left_wrist=np.stack(traj_left_wrist, axis=0) + if traj_left_wrist + else np.zeros((0, 7), dtype=np.float32), + right_wrist=np.stack(traj_right_wrist, axis=0) + if traj_right_wrist + else np.zeros((0, 7), dtype=np.float32), + left_hand_q=np.stack(traj_left_q, axis=0) if traj_left_q else np.zeros((0, 7), dtype=np.float32), + right_hand_q=np.stack(traj_right_q, axis=0) if traj_right_q else np.zeros((0, 7), dtype=np.float32), + left_dof_names=np.array(controller.left_dof_names, dtype=object), + right_dof_names=np.array(controller.right_dof_names, dtype=object), + input_file=str(in_path), + seq_key=str(args.seq_key), + seq_track=int(args.seq_track), + ) + print(f"[traj] wrote: {traj_path} (T={len(traj_paths)})") + return + + # Per-frame NPZ mode (directory or single per-frame NPZ) + if in_path.is_dir(): + frame_paths = sorted(in_path.glob(args.glob)) + else: + frame_paths = [in_path] + + if not frame_paths: + raise FileNotFoundError(f"No input frames found under {in_path} with glob '{args.glob}'") + + def _parse_rot(name: str, s: Optional[str]): + if s is None: + return None + vals = _parse_float_list(s) + if len(vals) != 3: + raise ValueError(f"{name} must be 'x_deg,y_deg,z_deg' (3 numbers)") + return (float(vals[0]), float(vals[1]), float(vals[2])) + + # Backward-compatible rotation handling: + # - If --apply-rot-left/right are provided, they override global --apply-rot for that hand. + # - Otherwise, use --apply-rot + --apply-rot-hand. + apply_rot_global = _parse_rot("--apply-rot", args.apply_rot) + apply_rot_left = _parse_rot("--apply-rot-left", args.apply_rot_left) + apply_rot_right = _parse_rot("--apply-rot-right", args.apply_rot_right) + + # Optional trajectory accumulation for replay. + traj_paths: list[str] = [] + traj_left_q: list[Any] = [] + traj_right_q: list[Any] = [] + traj_left_wrist: list[Any] = [] + traj_right_wrist: list[Any] = [] + + for frame_i, p in enumerate(frame_paths): + left_xyz, right_xyz, used_left_key, used_right_key, used_lr_key_2x26x3 = _load_openxr26_from_npz( + p, + left_key=args.left_key, + right_key=args.right_key, + lr_key_2x26x3=args.lr_key_2x26x3, + single_hand=args.single_hand, + ) + # Optional: load wrist poses (lets replay place the robot in world view). + left_wrist_pose, right_wrist_pose, used_left_wrist_key, used_right_wrist_key = _load_wrist_pose_from_npz( + p, + left_wrist_pose_key=args.left_wrist_pose_key, + right_wrist_pose_key=args.right_wrist_pose_key, + ) + + # Apply fixed rotations (if requested) before pose dict conversion. + # Per-hand rotations override global rotation for that hand. + if left_xyz is not None: + rot_l = apply_rot_left + if rot_l is None and apply_rot_global is not None and args.apply_rot_hand in ("left", "both"): + rot_l = apply_rot_global + if rot_l is not None: + left_xyz = _rotate_openxr26_xyz(left_xyz, euler_xyz_deg=rot_l, pivot=args.apply_rot_pivot) + + if right_xyz is not None: + rot_r = apply_rot_right + if rot_r is None and apply_rot_global is not None and args.apply_rot_hand in ("right", "both"): + rot_r = apply_rot_global + if rot_r is not None: + right_xyz = _rotate_openxr26_xyz(right_xyz, euler_xyz_deg=rot_r, pivot=args.apply_rot_pivot) + + # Important: we keep wrist orientation identity for retargeting unless you explicitly embed it into xyz->pose. + # (Most datasets only have positions; orientation often needs a separate alignment step.) + left_pose_dict = None if left_xyz is None else openxr26_positions_to_pose_dict(left_xyz) + right_pose_dict = None if right_xyz is None else openxr26_positions_to_pose_dict(right_xyz) + + default_pose = np.array([0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], dtype=np.float32) + # Use provided wrist poses if present, else fall back to pose dict (position from joints, identity orientation). + left_wrist = ( + default_pose + if left_pose_dict is None + else (left_wrist_pose if left_wrist_pose is not None else left_pose_dict.get("wrist", default_pose)) + ) + right_wrist = ( + default_pose + if right_pose_dict is None + else (right_wrist_pose if right_wrist_pose is not None else right_pose_dict.get("wrist", default_pose)) + ) + + do_viz = args.viz_dir is not None and (frame_i % max(int(args.viz_every), 1) == 0) + tag_base = p.stem + + # If visualization is requested but the requested hand is missing, warn loudly. + if do_viz and viz_dir is not None: + if args.viz_hands in ("right", "both") and right_pose_dict is None: + msg = ( + f"[viz] {p.name}: requested right-hand viz but no right-hand (26,3) array was found/inferred. " + f"Pass --right-key/--lr-key-2x26x3 if the data exists." + ) + print(msg) + _append_text(viz_dir / "_viz_status.txt", msg) + if args.viz_hands in ("left", "both") and left_pose_dict is None: + msg = ( + f"[viz] {p.name}: requested left-hand viz but no left-hand (26,3) array was found/inferred. " + f"Pass --left-key/--lr-key-2x26x3 if the data exists." + ) + print(msg) + _append_text(viz_dir / "_viz_status.txt", msg) + + do_viz_left = do_viz and args.viz_hands in ("left", "both") + do_viz_right = do_viz and args.viz_hands in ("right", "both") + + left_q = ( + controller.compute_left( + left_pose_dict, + tag=f"{tag_base}__left", + openxr26_xyz=left_xyz if do_viz_left else None, + do_viz=do_viz_left, + ) + if left_pose_dict is not None + else np.zeros(len(controller.left_dof_names), dtype=np.float32) + ) + right_q = ( + controller.compute_right( + right_pose_dict, + tag=f"{tag_base}__right", + openxr26_xyz=right_xyz if do_viz_right else None, + do_viz=do_viz_right, + ) + if right_pose_dict is not None + else np.zeros(len(controller.right_dof_names), dtype=np.float32) + ) + hand_joints = np.concatenate([np.asarray(left_q, dtype=np.float32), np.asarray(right_q, dtype=np.float32)]) + + left_wrist_cmd = _retarget_abs_wrist_pose_usd_control(left_wrist, is_left=True) + right_wrist_cmd = _retarget_abs_wrist_pose_usd_control(right_wrist, is_left=False) + cmd_np = np.concatenate([left_wrist_cmd, right_wrist_cmd, hand_joints]).astype(np.float32) + + out_path = out_dir / (p.stem + "_g1_upper_body_cmd.npz") + np.savez_compressed( + out_path, + cmd=cmd_np, + left_wrist=cmd_np[:7], + right_wrist=cmd_np[7:14], + hand_joints=cmd_np[14:], + hand_joint_names=np.array(hand_joint_names, dtype=object), + input_file=str(p), + used_left_key=used_left_key, + used_right_key=used_right_key, + used_lr_key_2x26x3=used_lr_key_2x26x3, + used_left_wrist_pose_key=used_left_wrist_key, + used_right_wrist_pose_key=used_right_wrist_key, + ) + + # Trajectory accumulation (keep every Nth frame). + if args.save_traj_npz is not None and (frame_i % max(int(args.traj_step), 1) == 0): + traj_paths.append(str(p)) + traj_left_q.append(np.asarray(left_q, dtype=np.float32).reshape(-1)) + traj_right_q.append(np.asarray(right_q, dtype=np.float32).reshape(-1)) + traj_left_wrist.append(np.asarray(left_wrist_cmd, dtype=np.float32).reshape(7)) + traj_right_wrist.append(np.asarray(right_wrist_cmd, dtype=np.float32).reshape(7)) + + print(f"Wrote {len(frame_paths)} command file(s) to: {out_dir}") + + if args.save_traj_npz is not None: + traj_path = Path(args.save_traj_npz).expanduser().resolve() + traj_path.parent.mkdir(parents=True, exist_ok=True) + np.savez_compressed( + traj_path, + frame_files=np.array(traj_paths, dtype=object), + frame_dt=float(args.traj_frame_dt), + # Wrist poses (USD control frame) + left_wrist=np.stack(traj_left_wrist, axis=0) if traj_left_wrist else np.zeros((0, 7), dtype=np.float32), + right_wrist=np.stack(traj_right_wrist, axis=0) if traj_right_wrist else np.zeros((0, 7), dtype=np.float32), + # Joint targets (dex-retargeting order) + left_hand_q=np.stack(traj_left_q, axis=0) if traj_left_q else np.zeros((0, 7), dtype=np.float32), + right_hand_q=np.stack(traj_right_q, axis=0) if traj_right_q else np.zeros((0, 7), dtype=np.float32), + left_dof_names=np.array(controller.left_dof_names, dtype=object), + right_dof_names=np.array(controller.right_dof_names, dtype=object), + ) + print(f"[traj] wrote: {traj_path} (T={len(traj_paths)})") + + +if __name__ == "__main__": + main() + + diff --git a/examples/mano_hand_retargeter/retarget_openxr26_with_sharpa_upper_body.py b/examples/mano_hand_retargeter/retarget_openxr26_with_sharpa_upper_body.py new file mode 100644 index 000000000..4b5e20f12 --- /dev/null +++ b/examples/mano_hand_retargeter/retarget_openxr26_with_sharpa_upper_body.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python3 +""" +Sharpa HA4 variant of `retarget_openxr26_with_g1_upper_body.py`. + +This is a thin wrapper that reuses the standalone dex-retargeting pipeline, but sets +the default dex-retargeting YAML config filenames to: + - sharpa_ha4_left_dexpilot.yml + - sharpa_ha4_right_dexpilot.yml + +Usage is intentionally identical to the G1 script; just swap the script path and URDFs: + + python3 dyn-hamr/retarget_openxr26_with_sharpa_upper_body.py \\ + --input \\ + --output \\ + --left-hand-urdf /path/to/left_sharpa_ha4_v2_1.urdf \\ + --right-hand-urdf /path/to/right_sharpa_ha4_v2_1.urdf +""" + +from __future__ import annotations + +import sys + + +def _ensure_default(argv: list[str], flag: str, value: str) -> list[str]: + # Only append if the user didn't explicitly set it. + return argv if flag in argv else (argv + [flag, value]) + + +def main() -> None: + # Import the full implementation (kept in the G1 script for historical reasons). + import retarget_openxr26_with_g1_upper_body as base # noqa: WPS433 + + argv = sys.argv[1:] + argv = _ensure_default(argv, "--left-config", "sharpa_ha4_left_dexpilot.yml") + argv = _ensure_default(argv, "--right-config", "sharpa_ha4_right_dexpilot.yml") + + # Forward to the underlying implementation. + sys.argv = [sys.argv[0]] + argv + base.main() + + +if __name__ == "__main__": + main() + + diff --git a/examples/mano_hand_retargeter/sharpahand_replay_traj.py b/examples/mano_hand_retargeter/sharpahand_replay_traj.py new file mode 100644 index 000000000..0b79e2470 --- /dev/null +++ b/examples/mano_hand_retargeter/sharpahand_replay_traj.py @@ -0,0 +1,1368 @@ +#!/usr/bin/env python3 +""" +Replay a saved Sharpa HA4 (or other URDF) hand joint trajectory in Isaac Sim. + +Expected trajectory NPZ format (written by `vis_mano_lw_openxr26/retarget_openxr26_with_g1_upper_body.py`): + - right_hand_q: (T, 7) float32 + - right_dof_names: (7,) object (joint names) + - frame_dt: float (seconds between frames) +Optionally (for world-view placement): + - left_wrist: (T, 7) float32 [x,y,z,qw,qx,qy,qz] in USD control frame + - right_wrist: (T, 7) float32 [x,y,z,qw,qx,qy,qz] in USD control frame + +Usage: + ./isaaclab.sh -p scripts/demos/sharpahand_replay_traj.py \ + --traj_npz /abs/path/to/right_hand_traj.npz \ + --hand right \ + --spawn_height 0.3 +""" + +from __future__ import annotations + +import argparse +import os +import shutil +import tempfile +from pathlib import Path + +from isaaclab.app import AppLauncher + + +def main() -> None: + parser = argparse.ArgumentParser(description="Replay Sharpa (or custom URDF) hand trajectory in Isaac Sim.") + parser.add_argument( + "--traj_npz", + type=str, + default=None, + help=( + "Trajectory npz for single-hand replay (contains *_hand_q and *_dof_names). " + "For --hand both, use --traj_npz_left and --traj_npz_right instead." + ), + ) + parser.add_argument("--traj_npz_left", type=str, default=None, help="Left-hand trajectory npz (required for --hand both).") + parser.add_argument("--traj_npz_right", type=str, default=None, help="Right-hand trajectory npz (required for --hand both).") + parser.add_argument("--hand", choices=["right", "left", "both"], default="right", help="Which hand(s) to replay.") + parser.add_argument("--spawn_height", type=float, default=0.3, help="Spawn height above ground (meters).") + parser.add_argument( + "--ground_z", + type=float, + default=0.0, + help="Ground plane Z position in world meters (default: 0.0). Use a large negative value to move it far below.", + ) + parser.add_argument("--no_ground", action="store_true", help="If set, do not spawn a ground plane.") + parser.add_argument( + "--hand_spacing", + type=float, + default=0.18, + help="When --hand both, X-axis spacing between the two hands (meters).", + ) + parser.add_argument( + "--use_wrist_pose", + action="store_true", + help=( + "If set and the trajectory NPZ contains left_wrist/right_wrist, " + "teleport the hand base each frame to that pose (world-view replay)." + ), + ) + parser.add_argument( + "--wrist_z_offset", + type=float, + default=0.0, + help="Optional z offset (meters) added to wrist pose when --use_wrist_pose is enabled.", + ) + parser.add_argument( + "--wrist_pose_rot", + type=str, + default=None, + help=( + "Optional extra rotation applied to wrist WORLD poses before teleporting, as 'x_deg,y_deg,z_deg' " + "(XYZ Euler degrees). Useful to fix a coordinate-frame mismatch." + ), + ) + parser.add_argument( + "--wrist_pose_rot_left", + type=str, + default=None, + help="Optional extra rotation for LEFT wrist pose only (overrides --wrist_pose_rot for left).", + ) + parser.add_argument( + "--wrist_pose_rot_right", + type=str, + default=None, + help="Optional extra rotation for RIGHT wrist pose only (overrides --wrist_pose_rot for right).", + ) + parser.add_argument( + "--wrist_pose_rot_pivot", + type=str, + default="0,0,0", + help=( + "Pivot for --wrist_pose_rot{,_left,_right} rotation, as 'x,y,z' in world meters (default: 0,0,0). " + "Position is rotated about this pivot." + ), + ) + parser.add_argument( + "--wrist_pose_rot_only_orientation", + action="store_true", + help="If set, apply wrist pose rotation ONLY to the quaternion (do not rotate the position trajectory).", + ) + parser.add_argument( + "--wrist_pose_rot_order", + type=str, + default="pre", + choices=["pre", "post"], + help=( + "How to compose the extra wrist rotation with the incoming quaternion. " + "'pre' = q_out = qR ⊗ q (rotate in world). " + "'post' = q_out = q ⊗ qR (rotate in local/body)." + ), + ) + parser.add_argument( + "--wrist_to_root_offset_left", + type=str, + default="0,0,0", + help=( + "Translate the spawned LEFT URDF root relative to the incoming wrist pose by this local offset " + "(meters) expressed in the wrist frame, as 'x,y,z'. This compensates for URDF root not being at wrist." + ), + ) + parser.add_argument( + "--wrist_to_root_offset_right", + type=str, + default="0,0,0", + help=( + "Translate the spawned RIGHT URDF root relative to the incoming wrist pose by this local offset " + "(meters) expressed in the wrist frame, as 'x,y,z'." + ), + ) + parser.add_argument( + "--print_wrist_stats", + action="store_true", + help="If set, print basic stats for left/right wrist trajectories and their relative displacement.", + ) + parser.add_argument("--stiffness", type=float, default=50.0, help="Joint drive stiffness (PD).") + parser.add_argument("--damping", type=float, default=5.0, help="Joint drive damping (PD).") + parser.add_argument( + "--left_hand_urdf", + type=str, + default=None, + help="Local URDF path for the LEFT hand (required for --hand left/both).", + ) + # Backward-compatible alias (matches other scripts that use kebab-case flags). + parser.add_argument( + "--left-hand-urdf", + dest="left_hand_urdf", + type=str, + default=None, + help="Alias for --left_hand_urdf.", + ) + parser.add_argument( + "--right_hand_urdf", + type=str, + default=None, + help="Local URDF path for the RIGHT hand (required for --hand right/both).", + ) + # Backward-compatible alias (matches other scripts that use kebab-case flags). + parser.add_argument( + "--right-hand-urdf", + dest="right_hand_urdf", + type=str, + default=None, + help="Alias for --right_hand_urdf.", + ) + parser.add_argument( + "--mesh_dir", + type=str, + default=None, + help=( + "Optional local directory containing the URDF's `meshes/*.STL` files. " + "If provided, the script will stage a copy of the URDF with a `meshes/` symlink next to it." + ), + ) + parser.add_argument( + "--mesh_dir_left", + type=str, + default=None, + help="Optional LEFT-hand mesh directory (overrides --mesh_dir for the left hand).", + ) + parser.add_argument( + "--mesh_dir_right", + type=str, + default=None, + help="Optional RIGHT-hand mesh directory (overrides --mesh_dir for the right hand).", + ) + # Optional: replay an interaction object (mesh + per-frame pose). + parser.add_argument( + "--object_mesh", + type=str, + default=None, + help=( + "Optional mesh file for an interaction object (.obj/.stl/.fbx). " + "If provided, the script will convert it to USD (cached) and replay its pose." + ), + ) + # Backward-compatible: a single NPZ that already contains the object's world pose sequence. + # This matches Dyn-HaMR `run_vis_object.py --save_world_poses` outputs (e.g., obj_R_o2w/obj_t_o2w). + parser.add_argument( + "--object_pose_npz", + type=str, + default=None, + help=( + "Path to NPZ containing object world pose sequence. Supported keys:\n" + " - obj_R_o2w: (T,3,3) and obj_t_o2w: (T,3) in Dyn-HaMR world coords\n" + " - obj_T_o2w: (T,4,4) in Dyn-HaMR world coords\n" + "If provided, this replaces --object_pose/--object_world_results." + ), + ) + parser.add_argument( + "--object_pose", + type=str, + default=None, + help=( + "Path to NPZ containing object pose in camera coordinates (either R_obj_cam/t_obj_cam or T_obj_cam). " + "Required if --object_mesh is set." + ), + ) + parser.add_argument( + "--object_world_results", + type=str, + default=None, + help=( + "Path to Dyn-HaMR `*_world_results.npz` containing cam_R/cam_t (world->cam). " + "Used to map object pose from camera to world. Required if --object_mesh is set." + ), + ) + parser.add_argument( + "--object_world_track", + type=int, + default=0, + help="Track index (B) in --object_world_results for cam_R/cam_t if they are batched (default: 0).", + ) + parser.add_argument( + "--object_scale", + type=str, + default="1.0", + help=( + "Visual scale applied to the object mesh. Accepts either a single number 's' or 'sx,sy,sz'. " + "Example: --object_scale 1.0 or --object_scale 1,1,1" + ), + ) + parser.add_argument( + "--object_pos_offset", + type=str, + default="0,0,0", + help="Extra XYZ offset (meters) added to object position in Isaac world, as 'x,y,z'.", + ) + parser.add_argument( + "--object_pose_rot", + type=str, + default=None, + help=( + "Optional extra rotation applied to the object WORLD pose before placement, as 'x_deg,y_deg,z_deg' " + "(XYZ Euler degrees). Useful to fix an object-frame mismatch." + ), + ) + parser.add_argument( + "--object_pose_rot_pivot", + type=str, + default="0,0,0", + help="Pivot for --object_pose_rot, as 'x,y,z' in world meters (default: 0,0,0).", + ) + parser.add_argument( + "--object_pose_rot_only_orientation", + action="store_true", + help="If set, apply --object_pose_rot ONLY to the quaternion (do not rotate the position trajectory).", + ) + parser.add_argument( + "--object_pose_rot_order", + type=str, + default="pre", + choices=["pre", "post"], + help=( + "How to compose --object_pose_rot with the incoming quaternion. " + "'pre' = q_out = qR ⊗ q (rotate in world). " + "'post' = q_out = q ⊗ qR (rotate in local/body)." + ), + ) + parser.add_argument( + "--object_pose_is_isaac_world", + action="store_true", + help=( + "If set, treat the computed object world pose as already in Isaac world coordinates " + "(skip Dyn-HaMR world -> Isaac world axis mapping)." + ), + ) + parser.add_argument( + "--object_usd_cache_dir", + type=str, + default="/tmp/isaaclab_mesh_cache", + help="Directory for cached USD conversions of --object_mesh (default: /tmp/isaaclab_mesh_cache).", + ) + parser.add_argument( + "--object_mesh_recenter", + action="store_true", + help=( + "If set, recenter the converted USD so the object's geometry bounding-box center is at the asset origin. " + "This fixes the common issue where rotating the object trajectory makes the mesh 'orbit' because the OBJ " + "origin is not at the object center." + ), + ) + parser.add_argument( + "--object_mesh_recenter_mode", + type=str, + default="bbox_center", + choices=["bbox_center"], + help="Recentering mode for --object_mesh_recenter (default: bbox_center).", + ) + parser.add_argument( + "--object_mesh_rot", + type=str, + default="0,0,0", + help=( + "Fixed rotation baked into the converted USD for the OBJECT MESH (not the trajectory), as 'x_deg,y_deg,z_deg' " + "(XYZ Euler degrees). Use this to fix OBJ axis/up convention mismatches." + ), + ) + parser.add_argument( + "--object_mesh_pos", + type=str, + default="0,0,0", + help=( + "Fixed translation baked into the converted USD for the OBJECT MESH in its local frame, as 'x,y,z' meters. " + "Useful if the OBJ's authored frame origin differs from the pose frame." + ), + ) + parser.add_argument("--speed", type=float, default=1.0, help="Playback speed multiplier (1.0 = realtime frame_dt).") + parser.add_argument( + "--camera_yaw_deg", + type=float, + default=0.0, + help=( + "Rotate the default camera eye position about world +Z around the camera target by this yaw (degrees). " + "Positive values rotate the view to the left (counter-clockwise when looking down +Z)." + ), + ) + parser.add_argument( + "--camera_pitch_deg", + type=float, + default=0.0, + help=( + "Rotate the default camera eye position about world +Y around the camera target by this pitch (degrees). " + "Positive values pitch the view down toward the ground (right-hand rule about +Y)." + ), + ) + parser.add_argument( + "--camera_roll_deg", + type=float, + default=0.0, + help=( + "Rotate the default camera eye position about world +X around the camera target by this roll (degrees). " + "This is the third orbit rotation (after yaw/pitch). Positive values follow the right-hand rule about +X." + ), + ) + parser.add_argument( + "--camera_target", + type=str, + default=None, + help="Optional camera target override as 'x,y,z' in world meters (overrides --camera_target_mode).", + ) + parser.add_argument( + "--camera_target_mode", + type=str, + choices=["fixed", "wrist_mean"], + default="fixed", + help=( + "How to choose the camera target. " + "'fixed' uses (0,0,spawn_height) (default). " + "'wrist_mean' uses the mean of available wrist positions at --start_frame (requires wrist poses)." + ), + ) + parser.add_argument( + "--print_camera", + action="store_true", + help="If set, print the final camera eye/target used for sim.set_camera_view().", + ) + parser.add_argument( + "--camera_preset", + type=str, + choices=["default", "dynhamr_front"], + default="default", + help=( + "Camera preset to roughly match Dyn-HaMR `run_vis.py` viewpoints. " + "'default' uses the script's default eye offset. " + "'dynhamr_front' matches Dyn-HaMR's static 'front' view direction (camera below + in front of target)." + ), + ) + parser.add_argument( + "--camera_dir", + type=str, + default=None, + help=( + "Optional camera viewing direction override as 'x,y,z' in world space. The camera eye will be placed at " + "`target + dist * normalize(camera_dir)` so that it looks toward the target from that direction. " + "Example: --camera_target 0,0,0 --camera_dir -1,1,1." + ), + ) + parser.add_argument( + "--camera_dist", + type=float, + default=None, + help=( + "Optional camera distance used with --camera_dir (meters). If not set, uses the default orbit radius." + ), + ) + parser.add_argument( + "--loop", + action="store_true", + help="If set, loop playback indefinitely (until the Isaac Sim window is closed).", + ) + parser.add_argument("--start_frame", type=int, default=0, help="Start playback from this frame index (default: 0).") + parser.add_argument( + "--stop_frame", + type=int, + default=None, + help=( + "If set, stop advancing once this frame index is reached and HOLD that pose indefinitely " + "(until the Isaac Sim window is closed)." + ), + ) + AppLauncher.add_app_launcher_args(parser) + args = parser.parse_args() + + # launch isaac sim + app_launcher = AppLauncher(args) + simulation_app = app_launcher.app + + import numpy as np + import torch + import isaaclab.sim as sim_utils + import isaaclab.sim.utils.prims as prim_utils + from isaaclab.sim.converters import MeshConverter, MeshConverterCfg + from isaaclab.sim.schemas import schemas_cfg + from isaaclab.actuators import ImplicitActuatorCfg + from isaaclab.assets import Articulation, ArticulationCfg + # NOTE: For Sharpa/custom URDF replay we don't rely on Nucleus assets. + # We keep the import here because other parts of this script may use IsaacLab utilities. + from isaaclab.utils.assets import ISAACLAB_NUCLEUS_DIR, retrieve_file_path + + def _load_traj(traj_npz_path: str, *, hand: str) -> tuple[np.ndarray, list[str], float, Path, dict[str, np.ndarray]]: + traj_path = Path(traj_npz_path).expanduser().resolve() + if not traj_path.is_file(): + raise FileNotFoundError(traj_path) + traj = np.load(str(traj_path), allow_pickle=True) + + if hand == "right": + q_key = "right_hand_q" + n_key = "right_dof_names" + else: + q_key = "left_hand_q" + n_key = "left_dof_names" + + if q_key not in traj.files or n_key not in traj.files: + raise KeyError(f"Trajectory npz missing '{q_key}' or '{n_key}'. Found keys: {traj.files}") + + q_seq = np.asarray(traj[q_key], dtype=np.float32) + dof_names = [str(x) for x in traj[n_key].tolist()] + frame_dt = float(np.asarray(traj.get("frame_dt", 1.0 / 30.0)).reshape(())) + if q_seq.ndim != 2: + raise ValueError(f"{q_key} must be (T, dof). Got {q_seq.shape}") + print(f"[traj] loaded ({hand}): {traj_path}") + print(f"[traj] key={q_key} shape={q_seq.shape} dt={frame_dt:.4f}s") + if q_seq.size > 0: + q_min = float(np.min(q_seq)) + q_max = float(np.max(q_seq)) + q_std = np.std(q_seq, axis=0) + print(f"[traj] q min/max: {q_min:+.4f} / {q_max:+.4f}") + print(f"[traj] per-joint std: {q_std}") + if float(np.max(q_std)) < 1e-4: + print(f"[traj][WARN] {hand} trajectory is nearly constant (std ~0). The hand may look not moving.") + extras = {} + # optional wrist poses (USD control frame) + if "left_wrist" in traj.files: + extras["left_wrist"] = np.asarray(traj["left_wrist"], dtype=np.float32) + if "right_wrist" in traj.files: + extras["right_wrist"] = np.asarray(traj["right_wrist"], dtype=np.float32) + return q_seq, dof_names, frame_dt, traj_path, extras + + def _parse_floats(name: str, s: str, n: int) -> list[float]: + parts = [p.strip() for p in str(s).split(",") if p.strip() != ""] + if len(parts) != n: + raise ValueError(f"{name} must have {n} comma-separated numbers. Got: {s!r}") + try: + return [float(x) for x in parts] + except Exception as e: + raise ValueError(f"{name} could not parse floats from {s!r}") from e + + def _load_object_pose_npz(object_pose_path: str) -> tuple[np.ndarray, np.ndarray]: + """ + Load object pose from NPZ. Supports: + - R_obj_cam (T,3,3) + t_obj_cam (T,3) [object->camera] + - T_obj_cam (T,4,4) [object->camera] + Returns: + (R_obj_cam_np, t_obj_cam_np) as float32 numpy arrays + """ + obj = np.load(str(Path(object_pose_path).expanduser().resolve()), allow_pickle=True) + if "R_obj_cam" in obj.files and "t_obj_cam" in obj.files: + R = np.asarray(obj["R_obj_cam"], dtype=np.float32) + t = np.asarray(obj["t_obj_cam"], dtype=np.float32) + elif "T_obj_cam" in obj.files: + T = np.asarray(obj["T_obj_cam"], dtype=np.float32) + if T.ndim != 3 or T.shape[-2:] != (4, 4): + raise ValueError(f"T_obj_cam must have shape (T,4,4); got {T.shape}") + R = T[:, :3, :3] + t = T[:, :3, 3] + else: + raise KeyError( + f"{object_pose_path} must contain either 'R_obj_cam'/'t_obj_cam' or 'T_obj_cam'. Found: {obj.files}" + ) + if R.ndim != 3 or R.shape[-2:] != (3, 3): + raise ValueError(f"R_obj_cam must have shape (T,3,3); got {R.shape}") + if t.ndim != 2 or t.shape[-1] != 3: + raise ValueError(f"t_obj_cam must have shape (T,3); got {t.shape}") + return R.astype(np.float32), t.astype(np.float32) + + def _invert_camera(R_w2c: np.ndarray, t_w2c: np.ndarray) -> tuple[np.ndarray, np.ndarray]: + """Invert world->cam to cam->world for batched (T,3,3)/(T,3).""" + R_w2c = np.asarray(R_w2c, dtype=np.float32) + t_w2c = np.asarray(t_w2c, dtype=np.float32) + if R_w2c.ndim != 3 or R_w2c.shape[-2:] != (3, 3): + raise ValueError(f"cam_R must be (T,3,3); got {R_w2c.shape}") + if t_w2c.ndim != 2 or t_w2c.shape[-1] != 3: + raise ValueError(f"cam_t must be (T,3); got {t_w2c.shape}") + R_c2w = np.transpose(R_w2c, (0, 2, 1)) + t_c2w = -np.einsum("tij,tj->ti", R_c2w, t_w2c).astype(np.float32) + return R_c2w.astype(np.float32), t_c2w.astype(np.float32) + + def _compose_o2w(R_c2w: np.ndarray, t_c2w: np.ndarray, R_o2c: np.ndarray, t_o2c: np.ndarray) -> tuple[np.ndarray, np.ndarray]: + """Compose cam->world with obj->cam to get obj->world.""" + R_o2w = np.einsum("tij,tjk->tik", R_c2w, R_o2c).astype(np.float32) + t_o2w = (np.einsum("tij,tj->ti", R_c2w, t_o2c) + t_c2w).astype(np.float32) + return R_o2w, t_o2w + + def _map_dynhamr_world_to_isaac(R_dh: np.ndarray, t_dh: np.ndarray) -> tuple[np.ndarray, np.ndarray]: + """ + Map a pose expressed in Dyn-HaMR world coordinates to Isaac world coordinates. + + Dyn-HaMR world: x right, y down, z forward + Isaac world: x forward, y left, z up + + Axis mapping: + x_isaac = z_dh + y_isaac = -x_dh + z_isaac = -y_dh + + Rotations: R_isaac = M * R_dh * M^T + Translations: t_isaac = M * t_dh + """ + M = np.array([[0.0, 0.0, 1.0], [-1.0, 0.0, 0.0], [0.0, -1.0, 0.0]], dtype=np.float32) + R_dh = np.asarray(R_dh, dtype=np.float32).reshape(3, 3) + t_dh = np.asarray(t_dh, dtype=np.float32).reshape(3) + R_i = (M @ R_dh @ M.T).astype(np.float32) + t_i = (M @ t_dh).astype(np.float32) + return R_i, t_i + + def _rot_x(a): + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[1, 0, 0], [0, ca, -sa], [0, sa, ca]], dtype=np.float32) + + def _rot_y(a): + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[ca, 0, sa], [0, 1, 0], [-sa, 0, ca]], dtype=np.float32) + + def _rot_z(a): + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[ca, -sa, 0], [sa, ca, 0], [0, 0, 1]], dtype=np.float32) + + def _euler_xyz_deg_to_rotmat(euler_xyz_deg: tuple[float, float, float]) -> np.ndarray: + # Intrinsic XYZ (matches scipy's from_euler("xyz", ...)) by right-multiplication. + ax, ay, az = [float(v) * np.pi / 180.0 for v in euler_xyz_deg] + return (_rot_x(ax) @ _rot_y(ay) @ _rot_z(az)).astype(np.float32) + + def _quat_mul_wxyz(q1: np.ndarray, q2: np.ndarray) -> np.ndarray: + q1 = np.asarray(q1, dtype=np.float32).reshape(4) + q2 = np.asarray(q2, dtype=np.float32).reshape(4) + w1, x1, y1, z1 = q1 + w2, x2, y2, z2 = q2 + return np.array( + [ + w1 * w2 - x1 * x2 - y1 * y2 - z1 * z2, + w1 * x2 + x1 * w2 + y1 * z2 - z1 * y2, + w1 * y2 - x1 * z2 + y1 * w2 + z1 * x2, + w1 * z2 + x1 * y2 - y1 * x2 + z1 * w2, + ], + dtype=np.float32, + ) + + def _quat_wxyz_from_rotmat(R: np.ndarray) -> np.ndarray: + R = np.asarray(R, dtype=np.float32).reshape(3, 3) + t = float(np.trace(R)) + if t > 0.0: + s = float(np.sqrt(t + 1.0) * 2.0) + w = 0.25 * s + x = (R[2, 1] - R[1, 2]) / s + y = (R[0, 2] - R[2, 0]) / s + z = (R[1, 0] - R[0, 1]) / s + else: + if R[0, 0] > R[1, 1] and R[0, 0] > R[2, 2]: + s = float(np.sqrt(1.0 + R[0, 0] - R[1, 1] - R[2, 2]) * 2.0) + w = (R[2, 1] - R[1, 2]) / s + x = 0.25 * s + y = (R[0, 1] + R[1, 0]) / s + z = (R[0, 2] + R[2, 0]) / s + elif R[1, 1] > R[2, 2]: + s = float(np.sqrt(1.0 + R[1, 1] - R[0, 0] - R[2, 2]) * 2.0) + w = (R[0, 2] - R[2, 0]) / s + x = (R[0, 1] + R[1, 0]) / s + y = 0.25 * s + z = (R[1, 2] + R[2, 1]) / s + else: + s = float(np.sqrt(1.0 + R[2, 2] - R[0, 0] - R[1, 1]) * 2.0) + w = (R[1, 0] - R[0, 1]) / s + x = (R[0, 2] + R[2, 0]) / s + y = (R[1, 2] + R[2, 1]) / s + z = 0.25 * s + q = np.array([w, x, y, z], dtype=np.float32) + q = q / max(float(np.linalg.norm(q)), 1e-8) + return q + + def _quat_apply_wxyz(q: np.ndarray, v: np.ndarray) -> np.ndarray: + """Rotate vector v by quaternion q (wxyz).""" + q = np.asarray(q, dtype=np.float32).reshape(4) + v = np.asarray(v, dtype=np.float32).reshape(3) + w, x, y, z = q + qv = np.array([0.0, v[0], v[1], v[2]], dtype=np.float32) + q_conj = np.array([w, -x, -y, -z], dtype=np.float32) + return _quat_mul_wxyz(_quat_mul_wxyz(q, qv), q_conj)[1:] + + pivot_xyz = np.asarray(_parse_floats("--wrist_pose_rot_pivot", args.wrist_pose_rot_pivot, 3), dtype=np.float32) + + rot_global = None + if args.wrist_pose_rot is not None: + rot_global = tuple(_parse_floats("--wrist_pose_rot", args.wrist_pose_rot, 3)) + rot_left = None + if args.wrist_pose_rot_left is not None: + rot_left = tuple(_parse_floats("--wrist_pose_rot_left", args.wrist_pose_rot_left, 3)) + rot_right = None + if args.wrist_pose_rot_right is not None: + rot_right = tuple(_parse_floats("--wrist_pose_rot_right", args.wrist_pose_rot_right, 3)) + + R_left = _euler_xyz_deg_to_rotmat(rot_left if rot_left is not None else rot_global) if (rot_left or rot_global) else None + R_right = _euler_xyz_deg_to_rotmat(rot_right if rot_right is not None else rot_global) if (rot_right or rot_global) else None + qR_left = _quat_wxyz_from_rotmat(R_left) if R_left is not None else None + qR_right = _quat_wxyz_from_rotmat(R_right) if R_right is not None else None + + def _apply_wrist_pose_rot(pose_wxyz: np.ndarray, *, hand: str) -> np.ndarray: + pose = np.asarray(pose_wxyz, dtype=np.float32).reshape(7).copy() + if hand == "left": + R = R_left + qR = qR_left + else: + R = R_right + qR = qR_right + if R is None or qR is None: + return pose + pos = pose[:3] + quat = pose[3:] + if args.wrist_pose_rot_only_orientation: + pos_out = pos + else: + pos_out = (R @ (pos - pivot_xyz)) + pivot_xyz + + # Compose rotation with the quaternion. + # - pre: rotate in world frame + # - post: rotate in local/body frame + if args.wrist_pose_rot_order == "post": + quat_out = _quat_mul_wxyz(quat, qR) + else: + quat_out = _quat_mul_wxyz(qR, quat) + pose[:3] = pos_out + pose[3:] = quat_out / max(float(np.linalg.norm(quat_out)), 1e-8) + return pose + + # Object pose rotation config (independent from wrist). + obj_pivot_xyz = np.asarray(_parse_floats("--object_pose_rot_pivot", args.object_pose_rot_pivot, 3), dtype=np.float32) + obj_R = _euler_xyz_deg_to_rotmat(tuple(_parse_floats("--object_pose_rot", args.object_pose_rot, 3))) if args.object_pose_rot is not None else None + obj_qR = _quat_wxyz_from_rotmat(obj_R) if obj_R is not None else None + obj_pos_offset = np.asarray(_parse_floats("--object_pos_offset", args.object_pos_offset, 3), dtype=np.float32) + obj_mesh_pos = np.asarray(_parse_floats("--object_mesh_pos", args.object_mesh_pos, 3), dtype=np.float32) + obj_mesh_R = _euler_xyz_deg_to_rotmat(tuple(_parse_floats("--object_mesh_rot", args.object_mesh_rot, 3))) + obj_mesh_q = _quat_wxyz_from_rotmat(obj_mesh_R) + + def _parse_scale_arg(scale_str: str) -> tuple[float, float, float]: + s = str(scale_str).strip() + if "," in s: + v = _parse_floats("--object_scale", s, 3) + return float(v[0]), float(v[1]), float(v[2]) + val = float(s) + return val, val, val + + def _apply_object_pose_rot(pose_wxyz: np.ndarray) -> np.ndarray: + pose = np.asarray(pose_wxyz, dtype=np.float32).reshape(7).copy() + if obj_R is None or obj_qR is None: + return pose + pos = pose[:3] + quat = pose[3:] + if args.object_pose_rot_only_orientation: + pos_out = pos + else: + pos_out = (obj_R @ (pos - obj_pivot_xyz)) + obj_pivot_xyz + if args.object_pose_rot_order == "post": + quat_out = _quat_mul_wxyz(quat, obj_qR) + else: + quat_out = _quat_mul_wxyz(obj_qR, quat) + pose[:3] = pos_out + pose[3:] = quat_out / max(float(np.linalg.norm(quat_out)), 1e-8) + return pose + + def _recenter_usd_asset_in_place(usd_path: str, *, mode: str) -> None: + """ + Post-process a converted USD so that its geometry is centered at the asset origin. + This edits the USD in-place. + """ + # Import pxr lazily (only available inside Isaac Sim / IsaacLab runtime). + from pxr import Gf, Usd, UsdGeom + + stage = Usd.Stage.Open(str(usd_path)) + stage.Reload() + base = stage.GetDefaultPrim() + if not base: + raise RuntimeError(f"[object] USD has no default prim: {usd_path}") + + # MeshConverter creates `/` as default prim and `//geometry` as the referenced geometry Xform. + geom_path = base.GetPath().AppendChild("geometry") + geom = stage.GetPrimAtPath(geom_path) + if not geom or not geom.IsValid(): + # fallback: find a child named "geometry" + geom = None + for c in base.GetChildren(): + if c.GetName() == "geometry": + geom = c + break + if geom is None: + raise RuntimeError(f"[object] Could not find geometry prim under default prim in {usd_path}") + + # Compute world-aligned bbox center for the geometry subtree. + bbox_cache = UsdGeom.BBoxCache(Usd.TimeCode.Default(), [UsdGeom.Tokens.default_]) + bbox = bbox_cache.ComputeWorldBound(geom) + aligned = bbox.ComputeAlignedBox() + r = aligned.GetRange() + c_world = 0.5 * (r.GetMin() + r.GetMax()) + + # Convert that center into the default-prim local frame. + base_xf = UsdGeom.Xformable(base).ComputeLocalToWorldTransform(Usd.TimeCode.Default()) + base_inv = base_xf.GetInverse() + c_base = base_inv.Transform(c_world) + + if mode != "bbox_center": + raise ValueError(f"Unknown recenter mode: {mode}") + + # Shift the geometry prim by -center so bbox center becomes origin in base frame. + xform = UsdGeom.Xformable(geom) + ops = xform.GetOrderedXformOps() + translate_op = None + for op in ops: + if op.GetOpType() == UsdGeom.XformOp.TypeTranslate: + translate_op = op + break + if translate_op is None: + translate_op = xform.AddTranslateOp(UsdGeom.XformOp.PrecisionDouble) + cur = Gf.Vec3d(0.0, 0.0, 0.0) + else: + cur = translate_op.Get() + if cur is None: + cur = Gf.Vec3d(0.0, 0.0, 0.0) + + new_t = Gf.Vec3d(cur[0] - c_base[0], cur[1] - c_base[1], cur[2] - c_base[2]) + translate_op.Set(new_t) + stage.Save() + + def _convert_mesh_to_usd_cached( + mesh_path: str, + *, + cache_dir: str, + mesh_translation: tuple[float, float, float], + mesh_rotation_wxyz: tuple[float, float, float, float], + mesh_scale: tuple[float, float, float], + recenter: bool, + recenter_mode: str, + ) -> str: + mesh_path = str(Path(mesh_path).expanduser().resolve()) + cache_root = Path(cache_dir).expanduser().resolve() + cache_root.mkdir(parents=True, exist_ok=True) + stem = Path(mesh_path).stem + # Cache key must include the baked correction (pos/rot/scale), otherwise stale USDs get reused. + import hashlib + + tag = "recenter" if recenter else "raw" + key = f"t={mesh_translation}|q={mesh_rotation_wxyz}|s={mesh_scale}|tag={tag}" + h = hashlib.md5(key.encode("utf-8")).hexdigest()[:10] + usd_path = cache_root / f"{stem}__{tag}_{h}.usd" + if usd_path.is_file(): + return str(usd_path) + # Convert with conservative defaults: visual-only (no mass/rigid body), no collision. + collision_props = schemas_cfg.CollisionPropertiesCfg(collision_enabled=False) + mesh_cfg = MeshConverterCfg( + asset_path=mesh_path, + force_usd_conversion=True, + usd_dir=str(cache_root), + usd_file_name=usd_path.name, + make_instanceable=False, + collision_props=collision_props, + mesh_collision_props=None, + mass_props=None, + rigid_props=None, + translation=tuple(float(x) for x in mesh_translation), + rotation=tuple(float(x) for x in mesh_rotation_wxyz), + scale=tuple(float(x) for x in mesh_scale), + ) + conv = MeshConverter(mesh_cfg) + out = str(conv.usd_path) + if recenter: + _recenter_usd_asset_in_place(out, mode=recenter_mode) + return out + + def _load_object_world_pose_npz_wxyz(*, object_pose_npz: str) -> np.ndarray: + """ + Load object world pose sequence from a single NPZ (Dyn-HaMR world coords) and convert to Isaac wxyz. + Supported: + - obj_R_o2w (T,3,3) + obj_t_o2w (T,3) + - obj_T_o2w (T,4,4) + """ + d = np.load(str(Path(object_pose_npz).expanduser().resolve()), allow_pickle=True) + if "obj_T_o2w" in d.files: + Tm = np.asarray(d["obj_T_o2w"], dtype=np.float32) + if Tm.ndim != 3 or Tm.shape[-2:] != (4, 4): + raise ValueError(f"obj_T_o2w must be (T,4,4). Got {Tm.shape}") + R_seq = Tm[:, :3, :3] + t_seq = Tm[:, :3, 3] + else: + if "obj_R_o2w" not in d.files or "obj_t_o2w" not in d.files: + raise KeyError( + f"{object_pose_npz} must contain obj_T_o2w or (obj_R_o2w + obj_t_o2w). Found keys: {d.files}" + ) + R_seq = np.asarray(d["obj_R_o2w"], dtype=np.float32) + t_seq = np.asarray(d["obj_t_o2w"], dtype=np.float32) + if R_seq.ndim != 3 or R_seq.shape[-2:] != (3, 3): + raise ValueError(f"obj_R_o2w must be (T,3,3). Got {R_seq.shape}") + if t_seq.ndim != 2 or t_seq.shape[-1] != 3: + raise ValueError(f"obj_t_o2w must be (T,3). Got {t_seq.shape}") + + T = int(min(R_seq.shape[0], t_seq.shape[0])) + pose = np.zeros((T, 7), dtype=np.float32) + for i in range(T): + R = np.asarray(R_seq[i], dtype=np.float32) + t = np.asarray(t_seq[i], dtype=np.float32).reshape(3) + if not args.object_pose_is_isaac_world: + R, t = _map_dynhamr_world_to_isaac(R, t) + pose[i, :3] = t + pose[i, 3:] = _quat_wxyz_from_rotmat(R) + return pose + + def _load_object_pose_seq_wxyz( + *, + object_pose_path: str, + world_results_path: str, + world_track: int, + ) -> np.ndarray: + # Load object->cam + R_o2c, t_o2c = _load_object_pose_npz(object_pose_path) + T_obj = int(R_o2c.shape[0]) + # Load camera extrinsics (world->cam) from Dyn-HaMR results + wr = np.load(str(Path(world_results_path).expanduser().resolve()), allow_pickle=True) + if "cam_R" not in wr.files or "cam_t" not in wr.files: + raise KeyError(f"--object_world_results must contain 'cam_R' and 'cam_t'. Found: {wr.files}") + cam_R = np.asarray(wr["cam_R"], dtype=np.float32) + cam_t = np.asarray(wr["cam_t"], dtype=np.float32) + # handle batched (B,T,...) vs unbatched (T,...) + if cam_R.ndim == 4: + cam_R = cam_R[int(world_track)] + if cam_t.ndim == 3: + cam_t = cam_t[int(world_track)] + T_cam = int(cam_R.shape[0]) + T = int(min(T_obj, T_cam)) + if T <= 0: + raise ValueError(f"Empty object/camera pose sequences: T_obj={T_obj}, T_cam={T_cam}") + # Align lengths by truncation + cam_R = cam_R[:T] + cam_t = cam_t[:T] + R_o2c = R_o2c[:T] + t_o2c = t_o2c[:T] + # Invert camera to get cam->world, then compose to get obj->world (Dyn-HaMR world) + R_c2w, t_c2w = _invert_camera(cam_R, cam_t) + R_o2w, t_o2w = _compose_o2w(R_c2w, t_c2w, R_o2c, t_o2c) + # Convert to pose_wxyz in Isaac world + pose = np.zeros((T, 7), dtype=np.float32) + for i in range(T): + R = R_o2w[i] + t = t_o2w[i] + if not args.object_pose_is_isaac_world: + R, t = _map_dynhamr_world_to_isaac(R, t) + q = _quat_wxyz_from_rotmat(R) + pose[i, :3] = t + pose[i, 3:] = q + return pose + + # Wrist->URDF-root local offsets (in wrist frame). + wrist_to_root_left = np.asarray(_parse_floats("--wrist_to_root_offset_left", args.wrist_to_root_offset_left, 3), dtype=np.float32) + wrist_to_root_right = np.asarray(_parse_floats("--wrist_to_root_offset_right", args.wrist_to_root_offset_right, 3), dtype=np.float32) + + def _apply_wrist_to_root_offset(pose_wxyz: np.ndarray, *, hand: str) -> np.ndarray: + pose = np.asarray(pose_wxyz, dtype=np.float32).reshape(7).copy() + off = wrist_to_root_left if hand == "left" else wrist_to_root_right + if float(np.linalg.norm(off)) < 1e-12: + return pose + pos = pose[:3] + quat = pose[3:] + pos = pos + _quat_apply_wxyz(quat, off) + pose[:3] = pos + return pose + + # Determine which trajectories to load. + if args.hand in ("left", "right"): + if args.traj_npz is None: + raise ValueError("--traj_npz is required for single-hand replay.") + if args.hand == "right": + q_right, names_right, frame_dt_right, traj_right_path, extras_right = _load_traj(args.traj_npz, hand="right") + q_left = None + names_left = None + frame_dt_left = None + traj_left_path = None + extras_left = {} + else: + q_left, names_left, frame_dt_left, traj_left_path, extras_left = _load_traj(args.traj_npz, hand="left") + q_right = None + names_right = None + frame_dt_right = None + traj_right_path = None + extras_right = {} + else: + # For backward compatibility, allow either: + # - a single --traj_npz that contains both left/right arrays, OR + # - separate --traj_npz_left/--traj_npz_right. + if args.traj_npz is not None: + q_left, names_left, frame_dt_left, traj_left_path, extras_left = _load_traj(args.traj_npz, hand="left") + q_right, names_right, frame_dt_right, traj_right_path, extras_right = _load_traj(args.traj_npz, hand="right") + else: + if args.traj_npz_left is None or args.traj_npz_right is None: + raise ValueError("--traj_npz_left and --traj_npz_right are required for --hand both (or pass --traj_npz).") + q_left, names_left, frame_dt_left, traj_left_path, extras_left = _load_traj(args.traj_npz_left, hand="left") + q_right, names_right, frame_dt_right, traj_right_path, extras_right = _load_traj(args.traj_npz_right, hand="right") + # Keep the playback synchronized: require matching frame dt. + if abs(float(frame_dt_left) - float(frame_dt_right)) > 1e-6: + raise ValueError( + f"Left and right trajectories have different frame_dt: left={frame_dt_left} right={frame_dt_right}. " + "Regenerate with the same --traj-frame-dt." + ) + + if args.print_wrist_stats: + def _stats(name: str, arr: np.ndarray): + arr = np.asarray(arr, dtype=np.float32) + if arr.size == 0: + print(f"[wrist][{name}] empty") + return + p = arr[:, :3] + print(f"[wrist][{name}] pos min={p.min(axis=0)} max={p.max(axis=0)} mean={p.mean(axis=0)} std={p.std(axis=0)}") + wl = extras_left.get("left_wrist", None) + wr = extras_right.get("right_wrist", None) + if wl is not None: + _stats("left", wl) + if wr is not None: + _stats("right", wr) + if wl is not None and wr is not None: + T0 = min(int(wl.shape[0]), int(wr.shape[0])) + d = wl[:T0, :3] - wr[:T0, :3] + print(f"[wrist][left-right] min={d.min(axis=0)} max={d.max(axis=0)} mean={d.mean(axis=0)} std={d.std(axis=0)}") + + # simulation + sim_cfg = sim_utils.SimulationCfg(dt=0.01, device=args.device) + sim = sim_utils.SimulationContext(sim_cfg) + # Camera target selection. + # By default, target is fixed at (0,0,spawn_height). For a viewport-like orbit around the hands, use wrist_mean. + if args.camera_target is not None: + target = np.asarray(_parse_floats("--camera_target", args.camera_target, 3), dtype=np.float32) + elif args.camera_target_mode == "wrist_mean": + # Try to use wrist mean at the start frame (only works if wrist poses exist). + t0 = int(max(args.start_frame, 0)) + pts = [] + if args.hand in ("left", "both"): + wl = extras_left.get("left_wrist", None) + if wl is not None and wl.shape[0] > t0: + pts.append(np.asarray(wl[t0], dtype=np.float32)[:3]) + if args.hand in ("right", "both"): + wr = extras_right.get("right_wrist", None) + if wr is not None and wr.shape[0] > t0: + pts.append(np.asarray(wr[t0], dtype=np.float32)[:3]) + if pts: + target = np.mean(np.stack(pts, axis=0), axis=0).astype(np.float32) + else: + target = np.array([0.0, 0.0, float(args.spawn_height)], dtype=np.float32) + else: + target = np.array([0.0, 0.0, float(args.spawn_height)], dtype=np.float32) + + # Camera: yaw (about world +Z), pitch (about world +Y), roll (about world +X) orbit of the eye around target. + eye0 = np.array([0.35, -0.35, 0.40], dtype=np.float32) + radius = float(np.linalg.norm(eye0 - target)) + + # Base orbit vector v (from target to eye) before yaw/pitch/roll. + if args.camera_dir is not None: + dir_v = np.asarray(_parse_floats("--camera_dir", args.camera_dir, 3), dtype=np.float32) + n = float(np.linalg.norm(dir_v)) + if n < 1e-8: + raise ValueError("--camera_dir must have non-zero norm") + dir_v = dir_v / n + dist = radius if args.camera_dist is None else float(args.camera_dist) + v = (dist * dir_v).astype(np.float32) + elif args.camera_preset == "dynhamr_front": + # Dyn-HaMR front view (in its 'right up back' coords) uses offset [0, -0.5, -1]. + # Mapping to Isaac world (x forward, y left, z up) gives direction approx [ +1, 0, -0.5 ]. + dir_v = np.array([1.0, 0.0, -0.5], dtype=np.float32) + dir_v = dir_v / max(float(np.linalg.norm(dir_v)), 1e-8) + v = (radius * dir_v).astype(np.float32) + else: + v = (eye0 - target).astype(np.float32) + yaw = float(args.camera_yaw_deg) * np.pi / 180.0 + pitch = float(args.camera_pitch_deg) * np.pi / 180.0 + roll = float(args.camera_roll_deg) * np.pi / 180.0 + if abs(yaw) > 1e-12: + c, s = float(np.cos(yaw)), float(np.sin(yaw)) + Rz = np.array([[c, -s, 0.0], [s, c, 0.0], [0.0, 0.0, 1.0]], dtype=np.float32) + v = (Rz @ v).astype(np.float32) + if abs(pitch) > 1e-12: + c, s = float(np.cos(pitch)), float(np.sin(pitch)) + Ry = np.array([[c, 0.0, s], [0.0, 1.0, 0.0], [-s, 0.0, c]], dtype=np.float32) + v = (Ry @ v).astype(np.float32) + if abs(roll) > 1e-12: + c, s = float(np.cos(roll)), float(np.sin(roll)) + Rx = np.array([[1.0, 0.0, 0.0], [0.0, c, -s], [0.0, s, c]], dtype=np.float32) + v = (Rx @ v).astype(np.float32) + eye = v + target + if args.print_camera: + print( + f"[camera] eye={eye.tolist()} target={target.tolist()} " + f"yaw={args.camera_yaw_deg} pitch={args.camera_pitch_deg} roll={args.camera_roll_deg}" + ) + sim.set_camera_view(eye=eye.tolist(), target=target.tolist()) + if not args.no_ground: + sim_utils.GroundPlaneCfg().func( + "/World/GroundPlane", + sim_utils.GroundPlaneCfg(), + translation=(0.0, 0.0, float(args.ground_z)), + ) + sim_utils.DomeLightCfg(intensity=2500.0, color=(0.8, 0.8, 0.8)).func("/World/Light", sim_utils.DomeLightCfg()) + + # Optional: spawn object mesh (visual only) and prepare pose sequence. + object_view = None + object_pose_seq = None + if args.object_mesh is not None: + if args.object_pose_npz is not None: + object_pose_seq = _load_object_world_pose_npz_wxyz(object_pose_npz=args.object_pose_npz) + else: + if args.object_pose is None or args.object_world_results is None: + raise ValueError( + "When --object_mesh is set, provide either:\n" + " - --object_pose_npz (world pose), OR\n" + " - --object_pose (obj->cam) + --object_world_results (cam_R/cam_t)." + ) + object_pose_seq = _load_object_pose_seq_wxyz( + object_pose_path=args.object_pose, + world_results_path=args.object_world_results, + world_track=int(args.object_world_track), + ) + sx, sy, sz = _parse_scale_arg(args.object_scale) + usd_path = _convert_mesh_to_usd_cached( + args.object_mesh, + cache_dir=args.object_usd_cache_dir, + mesh_translation=(float(obj_mesh_pos[0]), float(obj_mesh_pos[1]), float(obj_mesh_pos[2])), + mesh_rotation_wxyz=(float(obj_mesh_q[0]), float(obj_mesh_q[1]), float(obj_mesh_q[2]), float(obj_mesh_q[3])), + mesh_scale=(float(sx), float(sy), float(sz)), + recenter=bool(args.object_mesh_recenter), + recenter_mode=str(args.object_mesh_recenter_mode), + ) + # Note: scale is baked into the USD conversion, so the referenced prim stays at identity. + # IMPORTANT: + # - `/World/Object` is the animated prim (world pose trajectory). + # - `/World/Object/mesh` holds the referenced USD (with baked mesh frame correction). + prim_utils.create_prim("/World/Object", "Xform") + prim_utils.create_prim( + "/World/Object/mesh", + "Xform", + usd_path=usd_path, + ) + from isaacsim.core.prims import XFormPrim + + object_view = XFormPrim("/World/Object", reset_xform_properties=False) + + prim_utils.create_prim("/World/Robot", "Xform") + def _make_hand(prim_path: str, *, hand: str, pos_xyz: tuple[float, float, float]) -> Articulation: + import re + + # Use user-provided URDFs (required for Sharpa). + if hand == "right": + if args.right_hand_urdf is None: + raise ValueError("--right_hand_urdf is required for --hand right/both.") + hand_urdf_local = str(Path(args.right_hand_urdf).expanduser().resolve()) + else: + if args.left_hand_urdf is None: + raise ValueError("--left_hand_urdf is required for --hand left/both.") + hand_urdf_local = str(Path(args.left_hand_urdf).expanduser().resolve()) + + if not Path(hand_urdf_local).is_file(): + raise FileNotFoundError(f"[urdf] {hand}: not a file: {hand_urdf_local}") + print(f"[urdf] {hand}: {hand_urdf_local}") + + # Mesh staging for visibility. + # - If URDF references relative paths like `meshes/*.STL`, Isaac Sim resolves those relative to the URDF folder. + # - Many third-party URDFs reference `package:///meshes/...`; Isaac Sim won't resolve ROS packages. + # We rewrite those to `meshes/...` and then symlink `meshes/` to a provided directory. + mesh_dir_arg = None + if hand == "right": + mesh_dir_arg = args.mesh_dir_right if args.mesh_dir_right is not None else args.mesh_dir + else: + mesh_dir_arg = args.mesh_dir_left if args.mesh_dir_left is not None else args.mesh_dir + + # If mesh_dir wasn't provided, try to infer it as "/meshes". + if mesh_dir_arg is None: + inferred = Path(hand_urdf_local).resolve().parent / "meshes" + if inferred.is_dir(): + mesh_dir_arg = str(inferred) + + if mesh_dir_arg is not None: + mesh_dir = Path(mesh_dir_arg).expanduser().resolve() + if not mesh_dir.is_dir(): + which = "--mesh_dir_right" if hand == "right" else "--mesh_dir_left" + if (hand == "right" and args.mesh_dir_right is None) or (hand == "left" and args.mesh_dir_left is None): + which = "--mesh_dir" + raise FileNotFoundError(f"{which} does not exist or is not a directory: {mesh_dir}") + + src_urdf = Path(hand_urdf_local).resolve() + stage_dir = Path(tempfile.mkdtemp(prefix=f"isaaclab_sharpahand_replay_{hand}_")) + staged_urdf = stage_dir / src_urdf.name + shutil.copyfile(src_urdf, staged_urdf) + + # Patch common package:// mesh references to local-relative `meshes/`. + try: + txt = staged_urdf.read_text(encoding="utf-8") + txt2 = re.sub(r"package://[^/]+/meshes/", "meshes/", txt) + if txt2 != txt: + staged_urdf.write_text(txt2, encoding="utf-8") + except Exception as e: + raise RuntimeError(f"Failed to patch URDF mesh paths for {hand}: {staged_urdf} ({e})") from e + + meshes_link = stage_dir / "meshes" + try: + if meshes_link.exists() or meshes_link.is_symlink(): + if meshes_link.is_dir() and not meshes_link.is_symlink(): + shutil.rmtree(meshes_link) + else: + meshes_link.unlink() + os.symlink(str(mesh_dir), str(meshes_link)) + except OSError as e: + raise RuntimeError(f"Failed to create meshes symlink '{meshes_link}' -> '{mesh_dir}': {e}") from e + hand_urdf_local = str(staged_urdf) + + cfg = ArticulationCfg( + prim_path=prim_path, + spawn=sim_utils.UrdfFileCfg( + asset_path=str(hand_urdf_local), + fix_base=True, + joint_drive=sim_utils.UrdfConverterCfg.JointDriveCfg( + gains=sim_utils.UrdfConverterCfg.JointDriveCfg.PDGainsCfg( + stiffness=float(args.stiffness), damping=float(args.damping) + ), + target_type="position", + ), + ), + init_state=ArticulationCfg.InitialStateCfg(pos=pos_xyz, rot=(1.0, 0.0, 0.0, 0.0)), + actuators={ + "all": ImplicitActuatorCfg( + joint_names_expr=[".*"], stiffness=float(args.stiffness), damping=float(args.damping) + ) + }, + ) + return Articulation(cfg) + + # Spawn robots + robots: dict[str, Articulation] = {} + if args.hand in ("right", "both"): + x = +0.5 * float(args.hand_spacing) if args.hand == "both" else 0.0 + robots["right"] = _make_hand("/World/Robot/TriHandRight", hand="right", pos_xyz=(x, 0.0, float(args.spawn_height))) + if args.hand in ("left", "both"): + x = -0.5 * float(args.hand_spacing) if args.hand == "both" else 0.0 + robots["left"] = _make_hand("/World/Robot/TriHandLeft", hand="left", pos_xyz=(x, 0.0, float(args.spawn_height))) + + # init + sim.reset() + for r in robots.values(): + r.reset() + sim.step() + for r in robots.values(): + r.update(sim.get_physics_dt()) + + # Map trajectory DOF names -> robot DOF indices (per hand). + idxs_by_hand: dict[str, list[int]] = {} + if "right" in robots: + robot_names = list(getattr(robots["right"], "joint_names", [])) + name_to_idx = {n: i for i, n in enumerate(robot_names)} + idxs = [] + missing = [] + assert names_right is not None + for n in names_right: + if n not in name_to_idx: + missing.append(n) + else: + idxs.append(int(name_to_idx[n])) + if missing: + raise RuntimeError(f"Some RIGHT trajectory joints are missing on the robot: {missing}. Robot has: {robot_names}") + idxs_by_hand["right"] = idxs + + if "left" in robots: + robot_names = list(getattr(robots["left"], "joint_names", [])) + name_to_idx = {n: i for i, n in enumerate(robot_names)} + idxs = [] + missing = [] + assert names_left is not None + for n in names_left: + if n not in name_to_idx: + missing.append(n) + else: + idxs.append(int(name_to_idx[n])) + if missing: + raise RuntimeError(f"Some LEFT trajectory joints are missing on the robot: {missing}. Robot has: {robot_names}") + idxs_by_hand["left"] = idxs + + sim_dt = float(sim.get_physics_dt()) + # Determine playback horizon and hold steps. + if args.hand == "right": + assert q_right is not None and frame_dt_right is not None + T = int(q_right.shape[0]) + frame_dt = float(frame_dt_right) + elif args.hand == "left": + assert q_left is not None and frame_dt_left is not None + T = int(q_left.shape[0]) + frame_dt = float(frame_dt_left) + else: + assert q_left is not None and q_right is not None and frame_dt_left is not None + T = int(min(q_left.shape[0], q_right.shape[0])) + frame_dt = float(frame_dt_left) + + hold_steps = max(int(round((frame_dt / max(float(args.speed), 1e-6)) / sim_dt)), 1) + print(f"[replay] mode={args.hand} T={T} frame_dt={frame_dt:.4f}s sim_dt={sim_dt:.4f}s hold_steps={hold_steps}") + + # playback loop + if T <= 0: + print("[replay][WARN] Empty trajectory (T=0). Nothing to play.") + simulation_app.close() + return + + start_frame = int(max(args.start_frame, 0)) + if start_frame >= T: + raise ValueError(f"--start_frame={start_frame} is out of range for T={T}") + + stop_frame = None if args.stop_frame is None else int(args.stop_frame) + if stop_frame is not None: + if stop_frame < 0 or stop_frame >= T: + raise ValueError(f"--stop_frame={stop_frame} is out of range for T={T}") + if stop_frame < start_frame: + raise ValueError(f"--stop_frame ({stop_frame}) must be >= --start_frame ({start_frame})") + + t = start_frame + while simulation_app.is_running(): + # If user requested a stop frame, hold that pose indefinitely once reached. + if stop_frame is not None and t >= stop_frame: + t = stop_frame + else: + # Stop after one pass unless looping is requested. + if t >= T: + if args.loop and T > 0: + t = start_frame + else: + break + + # Optional: world-view wrist/base pose replay. + # IMPORTANT: also zero root velocity when teleporting, otherwise PhysX can integrate residual + # velocities during the internal sub-steps (looks like the hands drifting/floating upward). + root_pose_targets: dict[str, torch.Tensor] = {} + zero_root_vel: dict[str, torch.Tensor] = {} + if args.use_wrist_pose: + env_ids = None + if "right" in robots: + wr = extras_right.get("right_wrist", None) + if wr is not None and wr.shape[0] > t: + # IMPORTANT: copy so offsets/rotations don't mutate the underlying trajectory array + # (otherwise holding a frame would accumulate offsets every sim step). + pose = np.asarray(wr[t], dtype=np.float32).reshape(7).copy() + pose[2] += float(args.wrist_z_offset) + pose = _apply_wrist_pose_rot(pose, hand="right") + pose = _apply_wrist_to_root_offset(pose, hand="right") + root_pose_targets["right"] = torch.tensor(pose[None, :], device=robots["right"].data.device) + zero_root_vel["right"] = torch.zeros((1, 6), device=robots["right"].data.device, dtype=torch.float32) + if "left" in robots: + wl = extras_left.get("left_wrist", None) + if wl is not None and wl.shape[0] > t: + # IMPORTANT: copy so offsets/rotations don't mutate the underlying trajectory array. + pose = np.asarray(wl[t], dtype=np.float32).reshape(7).copy() + pose[2] += float(args.wrist_z_offset) + pose = _apply_wrist_pose_rot(pose, hand="left") + pose = _apply_wrist_to_root_offset(pose, hand="left") + root_pose_targets["left"] = torch.tensor(pose[None, :], device=robots["left"].data.device) + zero_root_vel["left"] = torch.zeros((1, 6), device=robots["left"].data.device, dtype=torch.float32) + + # Optional: object pose at this frame (world-view replay). + obj_pose_target = None + if object_view is not None and object_pose_seq is not None and object_pose_seq.shape[0] > 0: + tt = min(int(t), int(object_pose_seq.shape[0]) - 1) + pose = np.asarray(object_pose_seq[tt], dtype=np.float32).reshape(7).copy() + pose = _apply_object_pose_rot(pose) + pose[:3] = pose[:3] + obj_pos_offset + obj_pose_target = pose + + # Build full DOF target vector(s) (1 env each) and apply. + targets: dict[str, torch.Tensor] = {} + for hand, robot in robots.items(): + target = torch.zeros((1, robot.num_joints), device=robot.data.device, dtype=torch.float32) + idxs = idxs_by_hand[hand] + if hand == "right": + assert q_right is not None + q = q_right[t] + else: + assert q_left is not None + q = q_left[t] + for j, ridx in enumerate(idxs): + target[0, int(ridx)] = float(q[j]) + targets[hand] = target + + # snap once at the start + if t == 0: + for hand, robot in robots.items(): + robot.write_joint_position_to_sim(targets[hand]) + + # Apply targets and step sim + for hand, robot in robots.items(): + robot.set_joint_position_target(targets[hand]) + for _ in range(hold_steps): + # Re-apply root pose + zero velocity on every physics step (prevents drift). + if args.use_wrist_pose: + for hand, robot in robots.items(): + if hand in root_pose_targets: + robot.write_root_pose_to_sim(root_pose_targets[hand], env_ids=None) + robot.write_root_link_velocity_to_sim(zero_root_vel[hand], env_ids=None) + # Re-apply object pose on every physics step (keeps it exactly on trajectory). + if object_view is not None and obj_pose_target is not None: + pos_t = torch.tensor(obj_pose_target[None, :3], dtype=torch.float32, device="cpu") + quat_t = torch.tensor(obj_pose_target[None, 3:], dtype=torch.float32, device="cpu") + object_view.set_world_poses(pos_t, quat_t, None) + for robot in robots.values(): + robot.write_data_to_sim() + sim.step() + for robot in robots.values(): + robot.update(sim_dt) + # Advance unless holding at stop frame. + if stop_frame is None or t < stop_frame: + t += 1 + + simulation_app.close() + + +if __name__ == "__main__": + main() + + diff --git a/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py b/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py new file mode 100644 index 000000000..f4a868be0 --- /dev/null +++ b/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py @@ -0,0 +1,1403 @@ +#!/usr/bin/env python3 +""" +Replay a saved TriHand joint trajectory (from Dyn-HaMR OpenXR26 retargeting) in Isaac Sim. + +Expected trajectory NPZ format (written by `vis_mano_lw_openxr26/retarget_openxr26_with_g1_upper_body.py`): + - right_hand_q: (T, 7) float32 + - right_dof_names: (7,) object (joint names) + - frame_dt: float (seconds between frames) +Optionally (for world-view placement): + - left_wrist: (T, 7) float32 [x,y,z,qw,qx,qy,qz] in USD control frame + - right_wrist: (T, 7) float32 [x,y,z,qw,qx,qy,qz] in USD control frame + +Usage: + ./isaaclab.sh -p scripts/demos/unitree_trihand_replay_traj.py \ + --traj_npz /abs/path/to/right_hand_traj.npz \ + --hand right \ + --spawn_height 0.3 +""" + +from __future__ import annotations + +import argparse +import os +import shutil +import tempfile +from pathlib import Path + +try: + # Preferred: IsaacLab available on PYTHONPATH (e.g., when launched via `isaaclab.sh -p ...`) + from isaaclab.app import AppLauncher +except ModuleNotFoundError as e: + # Fallback: allow running directly if ISAACLAB_PATH points to an IsaacLab checkout. + import sys + + isaaclab_path = os.environ.get("ISAACLAB_PATH") + if isaaclab_path: + # Your layout is: + # $ISAACLAB_PATH/source/isaaclab/isaaclab/app/... + # so we must add `$ISAACLAB_PATH/source/isaaclab` (the parent of the `isaaclab/` package) + # to sys.path. + candidate_roots = [ + os.path.join(isaaclab_path, "source", "isaaclab"), + os.path.join(isaaclab_path, "source"), + ] + for root in candidate_roots: + if os.path.isdir(os.path.join(root, "isaaclab")) and root not in sys.path: + sys.path.insert(0, root) + try: + from isaaclab.app import AppLauncher # type: ignore + except ModuleNotFoundError: + raise ModuleNotFoundError( + "Could not import `isaaclab`. Run this script via IsaacLab:\n" + " $ISAACLAB_PATH/isaaclab.sh -p /abs/path/to/unitree_trihand_replay_traj.py\n" + "or ensure `$ISAACLAB_PATH/source/isaaclab` is on PYTHONPATH." + ) from e + else: + raise ModuleNotFoundError( + "Could not import `isaaclab` and ISAACLAB_PATH is not set.\n" + "Set it to your IsaacLab repo root (with `source/isaaclab`), or run via `isaaclab.sh`." + ) from e + + +def main() -> None: + parser = argparse.ArgumentParser(description="Replay Unitree TriHand trajectory in Isaac Sim.") + parser.add_argument( + "--traj_npz", + type=str, + default=None, + help=( + "Trajectory npz for single-hand replay (contains *_hand_q and *_dof_names). " + "For --hand both, use --traj_npz_left and --traj_npz_right instead." + ), + ) + parser.add_argument("--traj_npz_left", type=str, default=None, help="Left-hand trajectory npz (required for --hand both).") + parser.add_argument("--traj_npz_right", type=str, default=None, help="Right-hand trajectory npz (required for --hand both).") + parser.add_argument("--hand", choices=["right", "left", "both"], default="right", help="Which hand(s) to replay.") + parser.add_argument("--spawn_height", type=float, default=0.3, help="Spawn height above ground (meters).") + parser.add_argument( + "--ground_z", + type=float, + default=0.0, + help="Ground plane Z position in world meters (default: 0.0). Use a large negative value to move it far below.", + ) + parser.add_argument("--no_ground", action="store_true", help="If set, do not spawn a ground plane.") + parser.add_argument( + "--hand_spacing", + type=float, + default=0.18, + help="When --hand both, X-axis spacing between the two hands (meters).", + ) + parser.add_argument( + "--use_wrist_pose", + action="store_true", + help=( + "If set and the trajectory NPZ contains left_wrist/right_wrist, " + "teleport the hand base each frame to that pose (world-view replay)." + ), + ) + parser.add_argument( + "--wrist_z_offset", + type=float, + default=0.0, + help="Optional z offset (meters) added to wrist pose when --use_wrist_pose is enabled.", + ) + parser.add_argument( + "--wrist_pose_rot", + type=str, + default=None, + help=( + "Optional extra rotation applied to wrist WORLD poses before teleporting, as 'x_deg,y_deg,z_deg' " + "(XYZ Euler degrees). Useful to fix a coordinate-frame mismatch." + ), + ) + parser.add_argument( + "--wrist_pose_rot_left", + type=str, + default=None, + help="Optional extra rotation for LEFT wrist pose only (overrides --wrist_pose_rot for left).", + ) + parser.add_argument( + "--wrist_pose_rot_right", + type=str, + default=None, + help="Optional extra rotation for RIGHT wrist pose only (overrides --wrist_pose_rot for right).", + ) + parser.add_argument( + "--wrist_pose_rot_pivot", + type=str, + default="0,0,0", + help=( + "Pivot for --wrist_pose_rot{,_left,_right} rotation, as 'x,y,z' in world meters (default: 0,0,0). " + "Position is rotated about this pivot." + ), + ) + parser.add_argument( + "--wrist_pose_rot_only_orientation", + action="store_true", + help="If set, apply wrist pose rotation ONLY to the quaternion (do not rotate the position trajectory).", + ) + parser.add_argument( + "--wrist_pose_rot_order", + type=str, + default="pre", + choices=["pre", "post"], + help=( + "How to compose the extra wrist rotation with the incoming quaternion. " + "'pre' = q_out = qR ⊗ q (rotate in world). " + "'post' = q_out = q ⊗ qR (rotate in local/body)." + ), + ) + parser.add_argument( + "--wrist_to_root_offset_left", + type=str, + default="0,0,0", + help=( + "Translate the spawned LEFT URDF root relative to the incoming wrist pose by this local offset " + "(meters) expressed in the wrist frame, as 'x,y,z'. This compensates for URDF root not being at wrist." + ), + ) + parser.add_argument( + "--wrist_to_root_offset_right", + type=str, + default="0,0,0", + help=( + "Translate the spawned RIGHT URDF root relative to the incoming wrist pose by this local offset " + "(meters) expressed in the wrist frame, as 'x,y,z'." + ), + ) + parser.add_argument( + "--print_body_names", + action="store_true", + help="If set, print available rigid-body (link) names for each spawned hand and exit.", + ) + parser.add_argument( + "--suggest_wrist_to_root_offset", + action="store_true", + help=( + "If set, compute and print a suggested --wrist_to_root_offset_{left,right} that makes a chosen link " + "coincide with the incoming wrist POSITION at the held frame (use with --stop_frame). " + "This avoids relying on UI transforms, which may not reflect physics state." + ), + ) + parser.add_argument( + "--suggest_link_left", + type=str, + default="left_hand_palm_link", + help="Link name to align to the incoming LEFT wrist position when --suggest_wrist_to_root_offset is set.", + ) + parser.add_argument( + "--suggest_link_right", + type=str, + default="right_hand_palm_link", + help="Link name to align to the incoming RIGHT wrist position when --suggest_wrist_to_root_offset is set.", + ) + parser.add_argument( + "--print_wrist_stats", + action="store_true", + help="If set, print basic stats for left/right wrist trajectories and their relative displacement.", + ) + parser.add_argument("--stiffness", type=float, default=50.0, help="Joint drive stiffness (PD).") + parser.add_argument("--damping", type=float, default=5.0, help="Joint drive damping (PD).") + parser.add_argument( + "--mesh_dir", + type=str, + default=None, + help=( + "Optional local directory containing the URDF's `meshes/*.STL` files. " + "If provided, the script will stage a copy of the URDF with a `meshes/` symlink next to it." + ), + ) + # Optional: replay an interaction object (mesh + per-frame pose). + parser.add_argument( + "--object_mesh", + type=str, + default=None, + help=( + "Optional mesh file for an interaction object (.obj/.stl/.fbx). " + "If provided, the script will convert it to USD (cached) and replay its pose." + ), + ) + # Backward-compatible: a single NPZ that already contains the object's world pose sequence. + # This matches Dyn-HaMR `run_vis_object.py --save_world_poses` outputs (e.g., obj_R_o2w/obj_t_o2w). + parser.add_argument( + "--object_pose_npz", + type=str, + default=None, + help=( + "Path to NPZ containing object world pose sequence. Supported keys:\n" + " - obj_R_o2w: (T,3,3) and obj_t_o2w: (T,3) in Dyn-HaMR world coords\n" + " - obj_T_o2w: (T,4,4) in Dyn-HaMR world coords\n" + "If provided, this replaces --object_pose/--object_world_results." + ), + ) + parser.add_argument( + "--object_pose", + type=str, + default=None, + help=( + "Path to NPZ containing object pose in camera coordinates (either R_obj_cam/t_obj_cam or T_obj_cam). " + "Required if --object_mesh is set." + ), + ) + parser.add_argument( + "--object_world_results", + type=str, + default=None, + help=( + "Path to Dyn-HaMR `*_world_results.npz` containing cam_R/cam_t (world->cam). " + "Used to map object pose from camera to world. Required if --object_mesh is set." + ), + ) + parser.add_argument( + "--object_world_track", + type=int, + default=0, + help="Track index (B) in --object_world_results for cam_R/cam_t if they are batched (default: 0).", + ) + parser.add_argument( + "--object_scale", + type=str, + default="1.0", + help=( + "Visual scale applied to the object mesh. Accepts either a single number 's' or 'sx,sy,sz'. " + "Example: --object_scale 1.0 or --object_scale 1,1,1" + ), + ) + parser.add_argument( + "--object_pos_offset", + type=str, + default="0,0,0", + help="Extra XYZ offset (meters) added to object position in Isaac world, as 'x,y,z'.", + ) + parser.add_argument( + "--object_pose_rot", + type=str, + default=None, + help=( + "Optional extra rotation applied to the object WORLD pose before placement, as 'x_deg,y_deg,z_deg' " + "(XYZ Euler degrees). Useful to fix an object-frame mismatch." + ), + ) + parser.add_argument( + "--object_pose_rot_pivot", + type=str, + default="0,0,0", + help="Pivot for --object_pose_rot, as 'x,y,z' in world meters (default: 0,0,0).", + ) + parser.add_argument( + "--object_pose_rot_only_orientation", + action="store_true", + help="If set, apply --object_pose_rot ONLY to the quaternion (do not rotate the position trajectory).", + ) + parser.add_argument( + "--object_pose_rot_order", + type=str, + default="pre", + choices=["pre", "post"], + help=( + "How to compose --object_pose_rot with the incoming quaternion. " + "'pre' = q_out = qR ⊗ q (rotate in world). " + "'post' = q_out = q ⊗ qR (rotate in local/body)." + ), + ) + parser.add_argument( + "--object_pose_is_isaac_world", + action="store_true", + help=( + "If set, treat the computed object world pose as already in Isaac world coordinates " + "(skip Dyn-HaMR world -> Isaac world axis mapping)." + ), + ) + parser.add_argument( + "--object_usd_cache_dir", + type=str, + default="/tmp/isaaclab_mesh_cache", + help="Directory for cached USD conversions of --object_mesh (default: /tmp/isaaclab_mesh_cache).", + ) + parser.add_argument( + "--object_mesh_recenter", + action="store_true", + help=( + "If set, recenter the converted USD so the object's geometry bounding-box center is at the asset origin. " + "This fixes the common issue where rotating the object trajectory makes the mesh 'orbit' because the OBJ " + "origin is not at the object center." + ), + ) + parser.add_argument( + "--object_mesh_recenter_mode", + type=str, + default="bbox_center", + choices=["bbox_center"], + help="Recentering mode for --object_mesh_recenter (default: bbox_center).", + ) + parser.add_argument( + "--object_mesh_rot", + type=str, + default="0,0,0", + help=( + "Fixed rotation baked into the converted USD for the OBJECT MESH (not the trajectory), as 'x_deg,y_deg,z_deg' " + "(XYZ Euler degrees). Use this to fix OBJ axis/up convention mismatches." + ), + ) + parser.add_argument( + "--object_mesh_pos", + type=str, + default="0,0,0", + help=( + "Fixed translation baked into the converted USD for the OBJECT MESH in its local frame, as 'x,y,z' meters. " + "Useful if the OBJ's authored frame origin differs from the pose frame." + ), + ) + parser.add_argument("--speed", type=float, default=1.0, help="Playback speed multiplier (1.0 = realtime frame_dt).") + parser.add_argument( + "--camera_yaw_deg", + type=float, + default=0.0, + help=( + "Rotate the default camera eye position about world +Z around the camera target by this yaw (degrees). " + "Positive values rotate the view to the left (counter-clockwise when looking down +Z)." + ), + ) + parser.add_argument( + "--camera_pitch_deg", + type=float, + default=0.0, + help=( + "Rotate the default camera eye position about world +Y around the camera target by this pitch (degrees). " + "Positive values pitch the view down toward the ground (right-hand rule about +Y)." + ), + ) + parser.add_argument( + "--camera_roll_deg", + type=float, + default=0.0, + help=( + "Rotate the default camera eye position about world +X around the camera target by this roll (degrees). " + "This is the third orbit rotation (after yaw/pitch). Positive values follow the right-hand rule about +X." + ), + ) + parser.add_argument( + "--camera_target", + type=str, + default=None, + help="Optional camera target override as 'x,y,z' in world meters (overrides --camera_target_mode).", + ) + parser.add_argument( + "--camera_target_mode", + type=str, + choices=["fixed", "wrist_mean"], + default="fixed", + help=( + "How to choose the camera target. " + "'fixed' uses (0,0,spawn_height) (default). " + "'wrist_mean' uses the mean of available wrist positions at --start_frame (requires wrist poses)." + ), + ) + parser.add_argument( + "--print_camera", + action="store_true", + help="If set, print the final camera eye/target used for sim.set_camera_view().", + ) + parser.add_argument( + "--camera_preset", + type=str, + choices=["default", "dynhamr_front"], + default="default", + help=( + "Camera preset to roughly match Dyn-HaMR `run_vis.py` viewpoints. " + "'default' uses the script's default eye offset. " + "'dynhamr_front' matches Dyn-HaMR's static 'front' view direction (camera below + in front of target)." + ), + ) + parser.add_argument( + "--camera_dir", + type=str, + default=None, + help=( + "Optional camera viewing direction override as 'x,y,z' in world space. The camera eye will be placed at " + "`target + dist * normalize(camera_dir)` so that it looks toward the target from that direction. " + "Example: --camera_target 0,0,0 --camera_dir -1,1,1." + ), + ) + parser.add_argument( + "--camera_dist", + type=float, + default=None, + help=( + "Optional camera distance used with --camera_dir (meters). If not set, uses the default orbit radius." + ), + ) + parser.add_argument( + "--loop", + action="store_true", + help="If set, loop playback indefinitely (until the Isaac Sim window is closed).", + ) + parser.add_argument("--start_frame", type=int, default=0, help="Start playback from this frame index (default: 0).") + parser.add_argument( + "--stop_frame", + type=int, + default=None, + help=( + "If set, stop advancing once this frame index is reached and HOLD that pose indefinitely " + "(until the Isaac Sim window is closed)." + ), + ) + AppLauncher.add_app_launcher_args(parser) + args = parser.parse_args() + + # launch isaac sim + app_launcher = AppLauncher(args) + simulation_app = app_launcher.app + + import numpy as np + import torch + import isaaclab.sim as sim_utils + import isaaclab.sim.utils.prims as prim_utils + from isaaclab.sim.converters import MeshConverter, MeshConverterCfg + from isaaclab.sim.schemas import schemas_cfg + from isaaclab.actuators import ImplicitActuatorCfg + from isaaclab.assets import Articulation, ArticulationCfg + from isaaclab.utils.assets import ISAACLAB_NUCLEUS_DIR, retrieve_file_path + + def _load_traj(traj_npz_path: str, *, hand: str) -> tuple[np.ndarray, list[str], float, Path, dict[str, np.ndarray]]: + traj_path = Path(traj_npz_path).expanduser().resolve() + if not traj_path.is_file(): + raise FileNotFoundError(traj_path) + traj = np.load(str(traj_path), allow_pickle=True) + + if hand == "right": + q_key = "right_hand_q" + n_key = "right_dof_names" + else: + q_key = "left_hand_q" + n_key = "left_dof_names" + + if q_key not in traj.files or n_key not in traj.files: + raise KeyError(f"Trajectory npz missing '{q_key}' or '{n_key}'. Found keys: {traj.files}") + + q_seq = np.asarray(traj[q_key], dtype=np.float32) + dof_names = [str(x) for x in traj[n_key].tolist()] + frame_dt = float(np.asarray(traj.get("frame_dt", 1.0 / 30.0)).reshape(())) + if q_seq.ndim != 2: + raise ValueError(f"{q_key} must be (T, dof). Got {q_seq.shape}") + print(f"[traj] loaded ({hand}): {traj_path}") + print(f"[traj] key={q_key} shape={q_seq.shape} dt={frame_dt:.4f}s") + if q_seq.size > 0: + q_min = float(np.min(q_seq)) + q_max = float(np.max(q_seq)) + q_std = np.std(q_seq, axis=0) + print(f"[traj] q min/max: {q_min:+.4f} / {q_max:+.4f}") + print(f"[traj] per-joint std: {q_std}") + if float(np.max(q_std)) < 1e-4: + print(f"[traj][WARN] {hand} trajectory is nearly constant (std ~0). The hand may look not moving.") + extras = {} + # optional wrist poses (USD control frame) + if "left_wrist" in traj.files: + extras["left_wrist"] = np.asarray(traj["left_wrist"], dtype=np.float32) + if "right_wrist" in traj.files: + extras["right_wrist"] = np.asarray(traj["right_wrist"], dtype=np.float32) + return q_seq, dof_names, frame_dt, traj_path, extras + + def _parse_floats(name: str, s: str, n: int) -> list[float]: + parts = [p.strip() for p in str(s).split(",") if p.strip() != ""] + if len(parts) != n: + raise ValueError(f"{name} must have {n} comma-separated numbers. Got: {s!r}") + try: + return [float(x) for x in parts] + except Exception as e: + raise ValueError(f"{name} could not parse floats from {s!r}") from e + + def _rot_x(a): + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[1, 0, 0], [0, ca, -sa], [0, sa, ca]], dtype=np.float32) + + def _rot_y(a): + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[ca, 0, sa], [0, 1, 0], [-sa, 0, ca]], dtype=np.float32) + + def _rot_z(a): + ca, sa = float(np.cos(a)), float(np.sin(a)) + return np.array([[ca, -sa, 0], [sa, ca, 0], [0, 0, 1]], dtype=np.float32) + + def _euler_xyz_deg_to_rotmat(euler_xyz_deg: tuple[float, float, float]) -> np.ndarray: + # Intrinsic XYZ (matches scipy's from_euler("xyz", ...)) by right-multiplication. + ax, ay, az = [float(v) * np.pi / 180.0 for v in euler_xyz_deg] + return (_rot_x(ax) @ _rot_y(ay) @ _rot_z(az)).astype(np.float32) + + def _quat_mul_wxyz(q1: np.ndarray, q2: np.ndarray) -> np.ndarray: + q1 = np.asarray(q1, dtype=np.float32).reshape(4) + q2 = np.asarray(q2, dtype=np.float32).reshape(4) + w1, x1, y1, z1 = q1 + w2, x2, y2, z2 = q2 + return np.array( + [ + w1 * w2 - x1 * x2 - y1 * y2 - z1 * z2, + w1 * x2 + x1 * w2 + y1 * z2 - z1 * y2, + w1 * y2 - x1 * z2 + y1 * w2 + z1 * x2, + w1 * z2 + x1 * y2 - y1 * x2 + z1 * w2, + ], + dtype=np.float32, + ) + + def _quat_wxyz_from_rotmat(R: np.ndarray) -> np.ndarray: + R = np.asarray(R, dtype=np.float32).reshape(3, 3) + t = float(np.trace(R)) + if t > 0.0: + s = float(np.sqrt(t + 1.0) * 2.0) + w = 0.25 * s + x = (R[2, 1] - R[1, 2]) / s + y = (R[0, 2] - R[2, 0]) / s + z = (R[1, 0] - R[0, 1]) / s + else: + if R[0, 0] > R[1, 1] and R[0, 0] > R[2, 2]: + s = float(np.sqrt(1.0 + R[0, 0] - R[1, 1] - R[2, 2]) * 2.0) + w = (R[2, 1] - R[1, 2]) / s + x = 0.25 * s + y = (R[0, 1] + R[1, 0]) / s + z = (R[0, 2] + R[2, 0]) / s + elif R[1, 1] > R[2, 2]: + s = float(np.sqrt(1.0 + R[1, 1] - R[0, 0] - R[2, 2]) * 2.0) + w = (R[0, 2] - R[2, 0]) / s + x = (R[0, 1] + R[1, 0]) / s + y = 0.25 * s + z = (R[1, 2] + R[2, 1]) / s + else: + s = float(np.sqrt(1.0 + R[2, 2] - R[0, 0] - R[1, 1]) * 2.0) + w = (R[1, 0] - R[0, 1]) / s + x = (R[0, 2] + R[2, 0]) / s + y = (R[1, 2] + R[2, 1]) / s + z = 0.25 * s + q = np.array([w, x, y, z], dtype=np.float32) + q = q / max(float(np.linalg.norm(q)), 1e-8) + return q + + def _quat_apply_wxyz(q: np.ndarray, v: np.ndarray) -> np.ndarray: + """Rotate vector v by quaternion q (wxyz).""" + q = np.asarray(q, dtype=np.float32).reshape(4) + v = np.asarray(v, dtype=np.float32).reshape(3) + w, x, y, z = q + qv = np.array([0.0, v[0], v[1], v[2]], dtype=np.float32) + q_conj = np.array([w, -x, -y, -z], dtype=np.float32) + return _quat_mul_wxyz(_quat_mul_wxyz(q, qv), q_conj)[1:] + + def _quat_conj_wxyz(q: np.ndarray) -> np.ndarray: + q = np.asarray(q, dtype=np.float32).reshape(4) + return np.array([q[0], -q[1], -q[2], -q[3]], dtype=np.float32) + + def _quat_inv_wxyz(q: np.ndarray) -> np.ndarray: + q = np.asarray(q, dtype=np.float32).reshape(4) + n2 = float(np.dot(q, q)) + if n2 < 1e-12: + return np.array([1.0, 0.0, 0.0, 0.0], dtype=np.float32) + return _quat_conj_wxyz(q) / n2 + + def _map_dynhamr_world_to_isaac(R_dh: np.ndarray, t_dh: np.ndarray) -> tuple[np.ndarray, np.ndarray]: + """ + Map a pose expressed in Dyn-HaMR world coordinates to Isaac world coordinates. + + Dyn-HaMR world: x right, y down, z forward + Isaac world: x forward, y left, z up + + Axis mapping: + x_isaac = z_dh + y_isaac = -x_dh + z_isaac = -y_dh + + Rotations: R_isaac = M * R_dh * M^T + Translations: t_isaac = M * t_dh + """ + M = np.array([[0.0, 0.0, 1.0], [-1.0, 0.0, 0.0], [0.0, -1.0, 0.0]], dtype=np.float32) + R_dh = np.asarray(R_dh, dtype=np.float32).reshape(3, 3) + t_dh = np.asarray(t_dh, dtype=np.float32).reshape(3) + R_i = (M @ R_dh @ M.T).astype(np.float32) + t_i = (M @ t_dh).astype(np.float32) + return R_i, t_i + + pivot_xyz = np.asarray(_parse_floats("--wrist_pose_rot_pivot", args.wrist_pose_rot_pivot, 3), dtype=np.float32) + + rot_global = None + if args.wrist_pose_rot is not None: + rot_global = tuple(_parse_floats("--wrist_pose_rot", args.wrist_pose_rot, 3)) + rot_left = None + if args.wrist_pose_rot_left is not None: + rot_left = tuple(_parse_floats("--wrist_pose_rot_left", args.wrist_pose_rot_left, 3)) + rot_right = None + if args.wrist_pose_rot_right is not None: + rot_right = tuple(_parse_floats("--wrist_pose_rot_right", args.wrist_pose_rot_right, 3)) + + R_left = _euler_xyz_deg_to_rotmat(rot_left if rot_left is not None else rot_global) if (rot_left or rot_global) else None + R_right = _euler_xyz_deg_to_rotmat(rot_right if rot_right is not None else rot_global) if (rot_right or rot_global) else None + qR_left = _quat_wxyz_from_rotmat(R_left) if R_left is not None else None + qR_right = _quat_wxyz_from_rotmat(R_right) if R_right is not None else None + + def _apply_wrist_pose_rot(pose_wxyz: np.ndarray, *, hand: str) -> np.ndarray: + pose = np.asarray(pose_wxyz, dtype=np.float32).reshape(7).copy() + if hand == "left": + R = R_left + qR = qR_left + else: + R = R_right + qR = qR_right + if R is None or qR is None: + return pose + pos = pose[:3] + quat = pose[3:] + if args.wrist_pose_rot_only_orientation: + pos_out = pos + else: + pos_out = (R @ (pos - pivot_xyz)) + pivot_xyz + + # Compose rotation with the quaternion. + # - pre: rotate in world frame + # - post: rotate in local/body frame + if args.wrist_pose_rot_order == "post": + quat_out = _quat_mul_wxyz(quat, qR) + else: + quat_out = _quat_mul_wxyz(qR, quat) + pose[:3] = pos_out + pose[3:] = quat_out / max(float(np.linalg.norm(quat_out)), 1e-8) + return pose + + # Object pose rotation config (independent from wrist). + obj_pivot_xyz = np.asarray(_parse_floats("--object_pose_rot_pivot", args.object_pose_rot_pivot, 3), dtype=np.float32) + obj_R = _euler_xyz_deg_to_rotmat(tuple(_parse_floats("--object_pose_rot", args.object_pose_rot, 3))) if args.object_pose_rot is not None else None + obj_qR = _quat_wxyz_from_rotmat(obj_R) if obj_R is not None else None + obj_pos_offset = np.asarray(_parse_floats("--object_pos_offset", args.object_pos_offset, 3), dtype=np.float32) + obj_mesh_pos = np.asarray(_parse_floats("--object_mesh_pos", args.object_mesh_pos, 3), dtype=np.float32) + obj_mesh_R = _euler_xyz_deg_to_rotmat(tuple(_parse_floats("--object_mesh_rot", args.object_mesh_rot, 3))) + obj_mesh_q = _quat_wxyz_from_rotmat(obj_mesh_R) + + def _parse_scale_arg(scale_str: str) -> tuple[float, float, float]: + s = str(scale_str).strip() + if "," in s: + v = _parse_floats("--object_scale", s, 3) + return float(v[0]), float(v[1]), float(v[2]) + val = float(s) + return val, val, val + + def _apply_object_pose_rot(pose_wxyz: np.ndarray) -> np.ndarray: + pose = np.asarray(pose_wxyz, dtype=np.float32).reshape(7).copy() + if obj_R is None or obj_qR is None: + return pose + pos = pose[:3] + quat = pose[3:] + if args.object_pose_rot_only_orientation: + pos_out = pos + else: + pos_out = (obj_R @ (pos - obj_pivot_xyz)) + obj_pivot_xyz + if args.object_pose_rot_order == "post": + quat_out = _quat_mul_wxyz(quat, obj_qR) + else: + quat_out = _quat_mul_wxyz(obj_qR, quat) + pose[:3] = pos_out + pose[3:] = quat_out / max(float(np.linalg.norm(quat_out)), 1e-8) + return pose + + def _load_object_pose_npz(object_pose_path: str) -> tuple[np.ndarray, np.ndarray]: + """ + Load object pose from NPZ. Supports: + - R_obj_cam (T,3,3) + t_obj_cam (T,3) [object->camera] + - T_obj_cam (T,4,4) [object->camera] + Returns: + (R_obj_cam_np, t_obj_cam_np) as float32 numpy arrays + """ + obj = np.load(str(Path(object_pose_path).expanduser().resolve()), allow_pickle=True) + if "R_obj_cam" in obj.files and "t_obj_cam" in obj.files: + R = np.asarray(obj["R_obj_cam"], dtype=np.float32) + t = np.asarray(obj["t_obj_cam"], dtype=np.float32) + elif "T_obj_cam" in obj.files: + Tm = np.asarray(obj["T_obj_cam"], dtype=np.float32) + if Tm.ndim != 3 or Tm.shape[-2:] != (4, 4): + raise ValueError(f"T_obj_cam must have shape (T,4,4); got {Tm.shape}") + R = Tm[:, :3, :3] + t = Tm[:, :3, 3] + else: + raise KeyError( + f"{object_pose_path} must contain either 'R_obj_cam'/'t_obj_cam' or 'T_obj_cam'. Found: {obj.files}" + ) + if R.ndim != 3 or R.shape[-2:] != (3, 3): + raise ValueError(f"R_obj_cam must have shape (T,3,3); got {R.shape}") + if t.ndim != 2 or t.shape[-1] != 3: + raise ValueError(f"t_obj_cam must have shape (T,3); got {t.shape}") + return R.astype(np.float32), t.astype(np.float32) + + def _invert_camera(R_w2c: np.ndarray, t_w2c: np.ndarray) -> tuple[np.ndarray, np.ndarray]: + """Invert world->cam to cam->world for batched (T,3,3)/(T,3).""" + R_w2c = np.asarray(R_w2c, dtype=np.float32) + t_w2c = np.asarray(t_w2c, dtype=np.float32) + if R_w2c.ndim != 3 or R_w2c.shape[-2:] != (3, 3): + raise ValueError(f"cam_R must be (T,3,3); got {R_w2c.shape}") + if t_w2c.ndim != 2 or t_w2c.shape[-1] != 3: + raise ValueError(f"cam_t must be (T,3); got {t_w2c.shape}") + R_c2w = np.transpose(R_w2c, (0, 2, 1)) + t_c2w = -np.einsum("tij,tj->ti", R_c2w, t_w2c).astype(np.float32) + return R_c2w.astype(np.float32), t_c2w.astype(np.float32) + + def _compose_o2w(R_c2w: np.ndarray, t_c2w: np.ndarray, R_o2c: np.ndarray, t_o2c: np.ndarray) -> tuple[np.ndarray, np.ndarray]: + """Compose cam->world with obj->cam to get obj->world.""" + R_o2w = np.einsum("tij,tjk->tik", R_c2w, R_o2c).astype(np.float32) + t_o2w = (np.einsum("tij,tj->ti", R_c2w, t_o2c) + t_c2w).astype(np.float32) + return R_o2w, t_o2w + + def _load_object_world_pose_npz_wxyz(*, object_pose_npz: str) -> np.ndarray: + """ + Load object world pose sequence from a single NPZ (Dyn-HaMR world coords) and convert to Isaac wxyz. + Supported: + - obj_R_o2w (T,3,3) + obj_t_o2w (T,3) + - obj_T_o2w (T,4,4) + """ + d = np.load(str(Path(object_pose_npz).expanduser().resolve()), allow_pickle=True) + if "obj_T_o2w" in d.files: + Tm = np.asarray(d["obj_T_o2w"], dtype=np.float32) + if Tm.ndim != 3 or Tm.shape[-2:] != (4, 4): + raise ValueError(f"obj_T_o2w must be (T,4,4). Got {Tm.shape}") + R_seq = Tm[:, :3, :3] + t_seq = Tm[:, :3, 3] + else: + if "obj_R_o2w" not in d.files or "obj_t_o2w" not in d.files: + raise KeyError( + f"{object_pose_npz} must contain obj_T_o2w or (obj_R_o2w + obj_t_o2w). Found keys: {d.files}" + ) + R_seq = np.asarray(d["obj_R_o2w"], dtype=np.float32) + t_seq = np.asarray(d["obj_t_o2w"], dtype=np.float32) + if R_seq.ndim != 3 or R_seq.shape[-2:] != (3, 3): + raise ValueError(f"obj_R_o2w must be (T,3,3). Got {R_seq.shape}") + if t_seq.ndim != 2 or t_seq.shape[-1] != 3: + raise ValueError(f"obj_t_o2w must be (T,3). Got {t_seq.shape}") + + T = int(min(R_seq.shape[0], t_seq.shape[0])) + pose = np.zeros((T, 7), dtype=np.float32) + for i in range(T): + R = np.asarray(R_seq[i], dtype=np.float32) + t = np.asarray(t_seq[i], dtype=np.float32).reshape(3) + if not args.object_pose_is_isaac_world: + R, t = _map_dynhamr_world_to_isaac(R, t) + pose[i, :3] = t + pose[i, 3:] = _quat_wxyz_from_rotmat(R) + return pose + + def _load_object_pose_seq_wxyz( + *, + object_pose_path: str, + world_results_path: str, + world_track: int, + ) -> np.ndarray: + # Load object->cam + R_o2c, t_o2c = _load_object_pose_npz(object_pose_path) + T_obj = int(R_o2c.shape[0]) + # Load camera extrinsics (world->cam) from Dyn-HaMR results + wr = np.load(str(Path(world_results_path).expanduser().resolve()), allow_pickle=True) + if "cam_R" not in wr.files or "cam_t" not in wr.files: + raise KeyError(f"--object_world_results must contain 'cam_R' and 'cam_t'. Found: {wr.files}") + cam_R = np.asarray(wr["cam_R"], dtype=np.float32) + cam_t = np.asarray(wr["cam_t"], dtype=np.float32) + # handle batched (B,T,...) vs unbatched (T,...) + if cam_R.ndim == 4: + cam_R = cam_R[int(world_track)] + if cam_t.ndim == 3: + cam_t = cam_t[int(world_track)] + T_cam = int(cam_R.shape[0]) + T = int(min(T_obj, T_cam)) + if T <= 0: + raise ValueError(f"Empty object/camera pose sequences: T_obj={T_obj}, T_cam={T_cam}") + # Align lengths by truncation + cam_R = cam_R[:T] + cam_t = cam_t[:T] + R_o2c = R_o2c[:T] + t_o2c = t_o2c[:T] + # Invert camera to get cam->world, then compose to get obj->world (Dyn-HaMR world) + R_c2w, t_c2w = _invert_camera(cam_R, cam_t) + R_o2w, t_o2w = _compose_o2w(R_c2w, t_c2w, R_o2c, t_o2c) + # Convert to pose_wxyz in Isaac world + pose = np.zeros((T, 7), dtype=np.float32) + for i in range(T): + R = R_o2w[i] + t = t_o2w[i] + if not args.object_pose_is_isaac_world: + R, t = _map_dynhamr_world_to_isaac(R, t) + q = _quat_wxyz_from_rotmat(R) + pose[i, :3] = t + pose[i, 3:] = q + return pose + + def _recenter_usd_asset_in_place(usd_path: str, *, mode: str) -> None: + """ + Post-process a converted USD so that its geometry is centered at the asset origin. + This edits the USD in-place. + """ + # Import pxr lazily (only available inside Isaac Sim / IsaacLab runtime). + from pxr import Gf, Usd, UsdGeom + + stage = Usd.Stage.Open(str(usd_path)) + stage.Reload() + base = stage.GetDefaultPrim() + if not base: + raise RuntimeError(f"[object] USD has no default prim: {usd_path}") + + # MeshConverter creates `/` as default prim and `//geometry` as the referenced geometry Xform. + geom_path = base.GetPath().AppendChild("geometry") + geom = stage.GetPrimAtPath(geom_path) + if not geom or not geom.IsValid(): + # fallback: find a child named "geometry" + geom = None + for c in base.GetChildren(): + if c.GetName() == "geometry": + geom = c + break + if geom is None: + raise RuntimeError(f"[object] Could not find geometry prim under default prim in {usd_path}") + + # Compute world-aligned bbox center for the geometry subtree. + bbox_cache = UsdGeom.BBoxCache(Usd.TimeCode.Default(), [UsdGeom.Tokens.default_]) + bbox = bbox_cache.ComputeWorldBound(geom) + aligned = bbox.ComputeAlignedBox() + r = aligned.GetRange() + c_world = 0.5 * (r.GetMin() + r.GetMax()) + + # Convert that center into the default-prim local frame. + base_xf = UsdGeom.Xformable(base).ComputeLocalToWorldTransform(Usd.TimeCode.Default()) + base_inv = base_xf.GetInverse() + c_base = base_inv.Transform(c_world) + + if mode != "bbox_center": + raise ValueError(f"Unknown recenter mode: {mode}") + + # Shift the geometry prim by -center so bbox center becomes origin in base frame. + xform = UsdGeom.Xformable(geom) + ops = xform.GetOrderedXformOps() + translate_op = None + for op in ops: + if op.GetOpType() == UsdGeom.XformOp.TypeTranslate: + translate_op = op + break + if translate_op is None: + translate_op = xform.AddTranslateOp(UsdGeom.XformOp.PrecisionDouble) + cur = Gf.Vec3d(0.0, 0.0, 0.0) + else: + cur = translate_op.Get() + if cur is None: + cur = Gf.Vec3d(0.0, 0.0, 0.0) + + new_t = Gf.Vec3d(cur[0] - c_base[0], cur[1] - c_base[1], cur[2] - c_base[2]) + translate_op.Set(new_t) + stage.Save() + + def _convert_mesh_to_usd_cached( + mesh_path: str, + *, + cache_dir: str, + mesh_translation: tuple[float, float, float], + mesh_rotation_wxyz: tuple[float, float, float, float], + mesh_scale: tuple[float, float, float], + recenter: bool, + recenter_mode: str, + ) -> str: + mesh_path = str(Path(mesh_path).expanduser().resolve()) + cache_root = Path(cache_dir).expanduser().resolve() + cache_root.mkdir(parents=True, exist_ok=True) + stem = Path(mesh_path).stem + # Cache key must include the baked correction (pos/rot/scale), otherwise stale USDs get reused. + import hashlib + + tag = "recenter" if recenter else "raw" + key = f"t={mesh_translation}|q={mesh_rotation_wxyz}|s={mesh_scale}|tag={tag}" + h = hashlib.md5(key.encode("utf-8")).hexdigest()[:10] + usd_path = cache_root / f"{stem}__{tag}_{h}.usd" + if usd_path.is_file(): + return str(usd_path) + # Convert with conservative defaults: visual-only (no mass/rigid body), no collision. + collision_props = schemas_cfg.CollisionPropertiesCfg(collision_enabled=False) + mesh_cfg = MeshConverterCfg( + asset_path=mesh_path, + force_usd_conversion=True, + usd_dir=str(cache_root), + usd_file_name=usd_path.name, + make_instanceable=False, + collision_props=collision_props, + mesh_collision_props=None, + mass_props=None, + rigid_props=None, + translation=tuple(float(x) for x in mesh_translation), + rotation=tuple(float(x) for x in mesh_rotation_wxyz), + scale=tuple(float(x) for x in mesh_scale), + ) + conv = MeshConverter(mesh_cfg) + out = str(conv.usd_path) + if recenter: + _recenter_usd_asset_in_place(out, mode=recenter_mode) + return out + + # Wrist->URDF-root local offsets (in wrist frame). + wrist_to_root_left = np.asarray(_parse_floats("--wrist_to_root_offset_left", args.wrist_to_root_offset_left, 3), dtype=np.float32) + wrist_to_root_right = np.asarray(_parse_floats("--wrist_to_root_offset_right", args.wrist_to_root_offset_right, 3), dtype=np.float32) + + def _apply_wrist_to_root_offset(pose_wxyz: np.ndarray, *, hand: str) -> np.ndarray: + pose = np.asarray(pose_wxyz, dtype=np.float32).reshape(7).copy() + off = wrist_to_root_left if hand == "left" else wrist_to_root_right + if float(np.linalg.norm(off)) < 1e-12: + return pose + pos = pose[:3] + quat = pose[3:] + pos = pos + _quat_apply_wxyz(quat, off) + pose[:3] = pos + return pose + + # Determine which trajectories to load. + if args.hand in ("left", "right"): + if args.traj_npz is None: + raise ValueError("--traj_npz is required for single-hand replay.") + if args.hand == "right": + q_right, names_right, frame_dt_right, traj_right_path, extras_right = _load_traj(args.traj_npz, hand="right") + q_left = None + names_left = None + frame_dt_left = None + traj_left_path = None + extras_left = {} + else: + q_left, names_left, frame_dt_left, traj_left_path, extras_left = _load_traj(args.traj_npz, hand="left") + q_right = None + names_right = None + frame_dt_right = None + traj_right_path = None + extras_right = {} + else: + # For backward compatibility, allow either: + # - a single --traj_npz that contains both left/right arrays, OR + # - separate --traj_npz_left/--traj_npz_right. + if args.traj_npz is not None: + q_left, names_left, frame_dt_left, traj_left_path, extras_left = _load_traj(args.traj_npz, hand="left") + q_right, names_right, frame_dt_right, traj_right_path, extras_right = _load_traj(args.traj_npz, hand="right") + else: + if args.traj_npz_left is None or args.traj_npz_right is None: + raise ValueError("--traj_npz_left and --traj_npz_right are required for --hand both (or pass --traj_npz).") + q_left, names_left, frame_dt_left, traj_left_path, extras_left = _load_traj(args.traj_npz_left, hand="left") + q_right, names_right, frame_dt_right, traj_right_path, extras_right = _load_traj(args.traj_npz_right, hand="right") + # Keep the playback synchronized: require matching frame dt. + if abs(float(frame_dt_left) - float(frame_dt_right)) > 1e-6: + raise ValueError( + f"Left and right trajectories have different frame_dt: left={frame_dt_left} right={frame_dt_right}. " + "Regenerate with the same --traj-frame-dt." + ) + + if args.print_wrist_stats: + def _stats(name: str, arr: np.ndarray): + arr = np.asarray(arr, dtype=np.float32) + if arr.size == 0: + print(f"[wrist][{name}] empty") + return + p = arr[:, :3] + print(f"[wrist][{name}] pos min={p.min(axis=0)} max={p.max(axis=0)} mean={p.mean(axis=0)} std={p.std(axis=0)}") + wl = extras_left.get("left_wrist", None) + wr = extras_right.get("right_wrist", None) + if wl is not None: + _stats("left", wl) + if wr is not None: + _stats("right", wr) + if wl is not None and wr is not None: + T0 = min(int(wl.shape[0]), int(wr.shape[0])) + d = wl[:T0, :3] - wr[:T0, :3] + print(f"[wrist][left-right] min={d.min(axis=0)} max={d.max(axis=0)} mean={d.mean(axis=0)} std={d.std(axis=0)}") + + # simulation + sim_cfg = sim_utils.SimulationCfg(dt=0.01, device=args.device) + sim = sim_utils.SimulationContext(sim_cfg) + # Camera target selection. + # By default, target is fixed at (0,0,spawn_height). For a viewport-like orbit around the hands, use wrist_mean. + if args.camera_target is not None: + target = np.asarray(_parse_floats("--camera_target", args.camera_target, 3), dtype=np.float32) + elif args.camera_target_mode == "wrist_mean": + # Try to use wrist mean at the start frame (only works if wrist poses exist). + t0 = int(max(args.start_frame, 0)) + pts = [] + if args.hand in ("left", "both"): + wl = extras_left.get("left_wrist", None) + if wl is not None and wl.shape[0] > t0: + pts.append(np.asarray(wl[t0], dtype=np.float32)[:3]) + if args.hand in ("right", "both"): + wr = extras_right.get("right_wrist", None) + if wr is not None and wr.shape[0] > t0: + pts.append(np.asarray(wr[t0], dtype=np.float32)[:3]) + if pts: + target = np.mean(np.stack(pts, axis=0), axis=0).astype(np.float32) + else: + target = np.array([0.0, 0.0, float(args.spawn_height)], dtype=np.float32) + else: + target = np.array([0.0, 0.0, float(args.spawn_height)], dtype=np.float32) + + # Camera: yaw (about world +Z), pitch (about world +Y), roll (about world +X) orbit of the eye around target. + eye0 = np.array([0.35, -0.35, 0.40], dtype=np.float32) + radius = float(np.linalg.norm(eye0 - target)) + + # Base orbit vector v (from target to eye) before yaw/pitch/roll. + if args.camera_dir is not None: + dir_v = np.asarray(_parse_floats("--camera_dir", args.camera_dir, 3), dtype=np.float32) + n = float(np.linalg.norm(dir_v)) + if n < 1e-8: + raise ValueError("--camera_dir must have non-zero norm") + dir_v = dir_v / n + dist = radius if args.camera_dist is None else float(args.camera_dist) + v = (dist * dir_v).astype(np.float32) + elif args.camera_preset == "dynhamr_front": + # Dyn-HaMR front view (in its 'right up back' coords) uses offset [0, -0.5, -1]. + # Mapping to Isaac world (x forward, y left, z up) gives direction approx [ +1, 0, -0.5 ]. + dir_v = np.array([1.0, 0.0, -0.5], dtype=np.float32) + dir_v = dir_v / max(float(np.linalg.norm(dir_v)), 1e-8) + v = (radius * dir_v).astype(np.float32) + else: + v = (eye0 - target).astype(np.float32) + yaw = float(args.camera_yaw_deg) * np.pi / 180.0 + pitch = float(args.camera_pitch_deg) * np.pi / 180.0 + roll = float(args.camera_roll_deg) * np.pi / 180.0 + if abs(yaw) > 1e-12: + c, s = float(np.cos(yaw)), float(np.sin(yaw)) + Rz = np.array([[c, -s, 0.0], [s, c, 0.0], [0.0, 0.0, 1.0]], dtype=np.float32) + v = (Rz @ v).astype(np.float32) + if abs(pitch) > 1e-12: + c, s = float(np.cos(pitch)), float(np.sin(pitch)) + Ry = np.array([[c, 0.0, s], [0.0, 1.0, 0.0], [-s, 0.0, c]], dtype=np.float32) + v = (Ry @ v).astype(np.float32) + if abs(roll) > 1e-12: + c, s = float(np.cos(roll)), float(np.sin(roll)) + Rx = np.array([[1.0, 0.0, 0.0], [0.0, c, -s], [0.0, s, c]], dtype=np.float32) + v = (Rx @ v).astype(np.float32) + eye = v + target + if args.print_camera: + print( + f"[camera] eye={eye.tolist()} target={target.tolist()} " + f"yaw={args.camera_yaw_deg} pitch={args.camera_pitch_deg} roll={args.camera_roll_deg}" + ) + sim.set_camera_view(eye=eye.tolist(), target=target.tolist()) + if not args.no_ground: + sim_utils.GroundPlaneCfg().func( + "/World/GroundPlane", + sim_utils.GroundPlaneCfg(), + translation=(0.0, 0.0, float(args.ground_z)), + ) + sim_utils.DomeLightCfg(intensity=2500.0, color=(0.8, 0.8, 0.8)).func("/World/Light", sim_utils.DomeLightCfg()) + + # Optional: spawn object mesh (visual only) and prepare pose sequence. + object_view = None + object_pose_seq = None + if args.object_mesh is not None: + if args.object_pose_npz is not None: + object_pose_seq = _load_object_world_pose_npz_wxyz(object_pose_npz=args.object_pose_npz) + else: + if args.object_pose is None or args.object_world_results is None: + raise ValueError( + "When --object_mesh is set, provide either:\n" + " - --object_pose_npz (world pose), OR\n" + " - --object_pose (obj->cam) + --object_world_results (cam_R/cam_t)." + ) + object_pose_seq = _load_object_pose_seq_wxyz( + object_pose_path=args.object_pose, + world_results_path=args.object_world_results, + world_track=int(args.object_world_track), + ) + sx, sy, sz = _parse_scale_arg(args.object_scale) + usd_path = _convert_mesh_to_usd_cached( + args.object_mesh, + cache_dir=args.object_usd_cache_dir, + mesh_translation=(float(obj_mesh_pos[0]), float(obj_mesh_pos[1]), float(obj_mesh_pos[2])), + mesh_rotation_wxyz=(float(obj_mesh_q[0]), float(obj_mesh_q[1]), float(obj_mesh_q[2]), float(obj_mesh_q[3])), + mesh_scale=(float(sx), float(sy), float(sz)), + recenter=bool(args.object_mesh_recenter), + recenter_mode=str(args.object_mesh_recenter_mode), + ) + # Note: scale is baked into the USD conversion, so the referenced prim stays at identity. + # IMPORTANT: + # - `/World/Object` is the animated prim (world pose trajectory). + # - `/World/Object/mesh` holds the referenced USD (with baked mesh frame correction). + prim_utils.create_prim("/World/Object", "Xform") + prim_utils.create_prim( + "/World/Object/mesh", + "Xform", + usd_path=usd_path, + ) + from isaacsim.core.prims import XFormPrim + + object_view = XFormPrim("/World/Object", reset_xform_properties=False) + + prim_utils.create_prim("/World/Robot", "Xform") + def _make_hand(prim_path: str, *, hand: str, pos_xyz: tuple[float, float, float]) -> Articulation: + if hand == "right": + urdf_nucleus = ( + f"{ISAACLAB_NUCLEUS_DIR}/Controllers/LocomanipulationAssets/unitree_g1_dexpilot_asset/G1_right_hand.urdf" + ) + else: + urdf_nucleus = ( + f"{ISAACLAB_NUCLEUS_DIR}/Controllers/LocomanipulationAssets/unitree_g1_dexpilot_asset/G1_left_hand.urdf" + ) + hand_urdf_local = retrieve_file_path(urdf_nucleus, force_download=False) + print(f"[urdf] {hand}: {hand_urdf_local}") + + # Optional mesh staging for visibility. + if args.mesh_dir is not None: + mesh_dir = Path(args.mesh_dir).expanduser().resolve() + if not mesh_dir.is_dir(): + raise FileNotFoundError(f"--mesh_dir does not exist or is not a directory: {mesh_dir}") + + src_urdf = Path(hand_urdf_local).resolve() + stage_dir = Path(tempfile.mkdtemp(prefix=f"isaaclab_trihand_replay_{hand}_")) + staged_urdf = stage_dir / src_urdf.name + shutil.copyfile(src_urdf, staged_urdf) + + meshes_link = stage_dir / "meshes" + try: + if meshes_link.exists() or meshes_link.is_symlink(): + if meshes_link.is_dir() and not meshes_link.is_symlink(): + shutil.rmtree(meshes_link) + else: + meshes_link.unlink() + os.symlink(str(mesh_dir), str(meshes_link)) + except OSError as e: + raise RuntimeError(f"Failed to create meshes symlink '{meshes_link}' -> '{mesh_dir}': {e}") from e + hand_urdf_local = str(staged_urdf) + + cfg = ArticulationCfg( + prim_path=prim_path, + spawn=sim_utils.UrdfFileCfg( + asset_path=str(hand_urdf_local), + fix_base=True, + joint_drive=sim_utils.UrdfConverterCfg.JointDriveCfg( + gains=sim_utils.UrdfConverterCfg.JointDriveCfg.PDGainsCfg( + stiffness=float(args.stiffness), damping=float(args.damping) + ), + target_type="position", + ), + ), + init_state=ArticulationCfg.InitialStateCfg(pos=pos_xyz, rot=(1.0, 0.0, 0.0, 0.0)), + actuators={ + "all": ImplicitActuatorCfg( + joint_names_expr=[".*"], stiffness=float(args.stiffness), damping=float(args.damping) + ) + }, + ) + return Articulation(cfg) + + # Spawn robots + robots: dict[str, Articulation] = {} + if args.hand in ("right", "both"): + x = +0.5 * float(args.hand_spacing) if args.hand == "both" else 0.0 + robots["right"] = _make_hand("/World/Robot/TriHandRight", hand="right", pos_xyz=(x, 0.0, float(args.spawn_height))) + if args.hand in ("left", "both"): + x = -0.5 * float(args.hand_spacing) if args.hand == "both" else 0.0 + robots["left"] = _make_hand("/World/Robot/TriHandLeft", hand="left", pos_xyz=(x, 0.0, float(args.spawn_height))) + + # init + sim.reset() + for r in robots.values(): + r.reset() + sim.step() + for r in robots.values(): + r.update(sim.get_physics_dt()) + + if args.print_body_names: + for hand, robot in robots.items(): + names = getattr(robot.data, "body_names", None) + if names is None: + print(f"[bodies] {hand}: (robot.data.body_names not available)") + else: + print(f"[bodies] {hand}: {list(names)}") + simulation_app.close() + return + + # Map trajectory DOF names -> robot DOF indices (per hand). + idxs_by_hand: dict[str, list[int]] = {} + if "right" in robots: + robot_names = list(getattr(robots["right"], "joint_names", [])) + name_to_idx = {n: i for i, n in enumerate(robot_names)} + idxs = [] + missing = [] + assert names_right is not None + for n in names_right: + if n not in name_to_idx: + missing.append(n) + else: + idxs.append(int(name_to_idx[n])) + if missing: + raise RuntimeError(f"Some RIGHT trajectory joints are missing on the robot: {missing}. Robot has: {robot_names}") + idxs_by_hand["right"] = idxs + + if "left" in robots: + robot_names = list(getattr(robots["left"], "joint_names", [])) + name_to_idx = {n: i for i, n in enumerate(robot_names)} + idxs = [] + missing = [] + assert names_left is not None + for n in names_left: + if n not in name_to_idx: + missing.append(n) + else: + idxs.append(int(name_to_idx[n])) + if missing: + raise RuntimeError(f"Some LEFT trajectory joints are missing on the robot: {missing}. Robot has: {robot_names}") + idxs_by_hand["left"] = idxs + + sim_dt = float(sim.get_physics_dt()) + # Determine playback horizon and hold steps. + if args.hand == "right": + assert q_right is not None and frame_dt_right is not None + T = int(q_right.shape[0]) + frame_dt = float(frame_dt_right) + elif args.hand == "left": + assert q_left is not None and frame_dt_left is not None + T = int(q_left.shape[0]) + frame_dt = float(frame_dt_left) + else: + assert q_left is not None and q_right is not None and frame_dt_left is not None + T = int(min(q_left.shape[0], q_right.shape[0])) + frame_dt = float(frame_dt_left) + + hold_steps = max(int(round((frame_dt / max(float(args.speed), 1e-6)) / sim_dt)), 1) + print(f"[replay] mode={args.hand} T={T} frame_dt={frame_dt:.4f}s sim_dt={sim_dt:.4f}s hold_steps={hold_steps}") + + # playback loop + if T <= 0: + print("[replay][WARN] Empty trajectory (T=0). Nothing to play.") + simulation_app.close() + return + + start_frame = int(max(args.start_frame, 0)) + if start_frame >= T: + raise ValueError(f"--start_frame={start_frame} is out of range for T={T}") + + stop_frame = None if args.stop_frame is None else int(args.stop_frame) + if stop_frame is not None: + if stop_frame < 0 or stop_frame >= T: + raise ValueError(f"--stop_frame={stop_frame} is out of range for T={T}") + if stop_frame < start_frame: + raise ValueError(f"--stop_frame ({stop_frame}) must be >= --start_frame ({start_frame})") + + t = start_frame + while simulation_app.is_running(): + # If user requested a stop frame, hold that pose indefinitely once reached. + if stop_frame is not None and t >= stop_frame: + t = stop_frame + else: + # Stop after one pass unless looping is requested. + if t >= T: + if args.loop and T > 0: + t = start_frame + else: + break + + # Optional: world-view wrist/base pose replay. + # IMPORTANT: also zero root velocity when teleporting, otherwise PhysX can integrate residual + # velocities during the internal sub-steps (looks like the hands drifting/floating upward). + root_pose_targets: dict[str, torch.Tensor] = {} + zero_root_vel: dict[str, torch.Tensor] = {} + if args.use_wrist_pose: + env_ids = None + if "right" in robots: + wr = extras_right.get("right_wrist", None) + if wr is not None and wr.shape[0] > t: + # IMPORTANT: copy so offsets/rotations don't mutate the underlying trajectory array + # (otherwise holding a frame would accumulate offsets every sim step). + pose = np.asarray(wr[t], dtype=np.float32).reshape(7).copy() + pose[2] += float(args.wrist_z_offset) + pose = _apply_wrist_pose_rot(pose, hand="right") + if not args.suggest_wrist_to_root_offset: + pose = _apply_wrist_to_root_offset(pose, hand="right") + root_pose_targets["right"] = torch.tensor(pose[None, :], device=robots["right"].data.device) + zero_root_vel["right"] = torch.zeros((1, 6), device=robots["right"].data.device, dtype=torch.float32) + if "left" in robots: + wl = extras_left.get("left_wrist", None) + if wl is not None and wl.shape[0] > t: + # IMPORTANT: copy so offsets/rotations don't mutate the underlying trajectory array. + pose = np.asarray(wl[t], dtype=np.float32).reshape(7).copy() + pose[2] += float(args.wrist_z_offset) + pose = _apply_wrist_pose_rot(pose, hand="left") + if not args.suggest_wrist_to_root_offset: + pose = _apply_wrist_to_root_offset(pose, hand="left") + root_pose_targets["left"] = torch.tensor(pose[None, :], device=robots["left"].data.device) + zero_root_vel["left"] = torch.zeros((1, 6), device=robots["left"].data.device, dtype=torch.float32) + + # Optional: object pose at this frame (world-view replay). + obj_pose_target = None + if object_view is not None and object_pose_seq is not None and object_pose_seq.shape[0] > 0: + tt = min(int(t), int(object_pose_seq.shape[0]) - 1) + pose = np.asarray(object_pose_seq[tt], dtype=np.float32).reshape(7).copy() + pose = _apply_object_pose_rot(pose) + pose[:3] = pose[:3] + obj_pos_offset + obj_pose_target = pose + + # Build full DOF target vector(s) (1 env each) and apply. + targets: dict[str, torch.Tensor] = {} + for hand, robot in robots.items(): + target = torch.zeros((1, robot.num_joints), device=robot.data.device, dtype=torch.float32) + idxs = idxs_by_hand[hand] + if hand == "right": + assert q_right is not None + q = q_right[t] + else: + assert q_left is not None + q = q_left[t] + for j, ridx in enumerate(idxs): + target[0, int(ridx)] = float(q[j]) + targets[hand] = target + + # snap once at the start + if t == 0: + for hand, robot in robots.items(): + robot.write_joint_position_to_sim(targets[hand]) + + # Apply targets and step sim + for hand, robot in robots.items(): + robot.set_joint_position_target(targets[hand]) + for _ in range(hold_steps): + # Re-apply root pose + zero velocity on every physics step (prevents drift). + if args.use_wrist_pose: + for hand, robot in robots.items(): + if hand in root_pose_targets: + robot.write_root_pose_to_sim(root_pose_targets[hand], env_ids=None) + robot.write_root_link_velocity_to_sim(zero_root_vel[hand], env_ids=None) + # Re-apply object pose on every physics step (keeps it exactly on trajectory). + if object_view is not None and obj_pose_target is not None: + pos_t = torch.tensor(obj_pose_target[None, :3], dtype=torch.float32, device="cpu") + quat_t = torch.tensor(obj_pose_target[None, 3:], dtype=torch.float32, device="cpu") + object_view.set_world_poses(pos_t, quat_t, None) + for robot in robots.values(): + robot.write_data_to_sim() + sim.step() + for robot in robots.values(): + robot.update(sim_dt) + + # Suggest offsets once, after at least one physics step with the root pose written. + if args.suggest_wrist_to_root_offset and args.use_wrist_pose and stop_frame is not None and t == stop_frame: + for hand, robot in robots.items(): + if hand not in root_pose_targets: + continue + tgt = root_pose_targets[hand].detach().cpu().numpy().reshape(7).astype(np.float32) + p_tgt = tgt[:3] + q_tgt = tgt[3:] + + want = args.suggest_link_left if hand == "left" else args.suggest_link_right + body_names = list(getattr(robot.data, "body_names", [])) + if want not in body_names: + print(f"[suggest][{hand}] link '{want}' not found. Available={body_names}") + continue + idx = int(body_names.index(want)) + p_body = robot.data.body_pos_w[0, idx].detach().cpu().numpy().astype(np.float32) + + v_world = (p_tgt - p_body).astype(np.float32) + off = _quat_apply_wxyz(_quat_inv_wxyz(q_tgt), v_world) + print( + f"[suggest][{hand}] link='{want}' p_tgt={p_tgt.tolist()} p_body={p_body.tolist()} " + f"v_world=(p_tgt-p_body)={v_world.tolist()} => wrist_to_root_offset_{hand}={off.tolist()}" + ) + + print("[suggest] Done. Re-run with the printed --wrist_to_root_offset_left/right values.") + simulation_app.close() + return + # Advance unless holding at stop frame. + if stop_frame is None or t < stop_frame: + t += 1 + + simulation_app.close() + + +if __name__ == "__main__": + main() + + diff --git a/examples/mano_hand_retargeter/util/__init__.py b/examples/mano_hand_retargeter/util/__init__.py new file mode 100644 index 000000000..80b0ce9ef --- /dev/null +++ b/examples/mano_hand_retargeter/util/__init__.py @@ -0,0 +1,3 @@ +from . import loaders +from . import logger +from . import tensor diff --git a/examples/mano_hand_retargeter/util/loaders.py b/examples/mano_hand_retargeter/util/loaders.py new file mode 100644 index 000000000..9b16cac4d --- /dev/null +++ b/examples/mano_hand_retargeter/util/loaders.py @@ -0,0 +1,217 @@ +""" +Utilities for loading input and models (reading pre-processed data) +""" + +import os +import importlib +import glob +from omegaconf import OmegaConf + +import numpy as np +import torch + +# from body_model import HandModel + + +# Root of the mano_hand_retargeter package (examples/mano_hand_retargeter) +ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) + + +def load_config_from_log(log_dir): + hydra_dir = f"{log_dir}/.hydra" + cfg_path = f"{hydra_dir}/config.yaml" + assert os.path.isdir(hydra_dir), f"{hydra_dir} does not exist" + assert os.path.isfile(cfg_path), f"{cfg_path} does not exist" + return OmegaConf.load(cfg_path) + + +def resolve_cfg_paths(cfg): + paths = cfg.paths + for name, rel_path in paths.items(): + if rel_path is None: + # Treat None as "use ROOT_DIR" + paths[name] = ROOT_DIR + continue + if not isinstance(rel_path, str): + rel_path = str(rel_path) + if rel_path.strip().lower() in {"none", "null", "~", ""}: + paths[name] = ROOT_DIR + continue + if rel_path.startswith("/"): # absolute path + continue + paths[name] = os.path.normpath(os.path.join(ROOT_DIR, rel_path)) + print("RESOLVED PATHS", paths) + return cfg + + +# def load_mano_body_model(cfg): +# """ +# Load SMPL model +# """ +# if device is None: +# device = torch.device("cpu") +# return ( +# HandModel( +# bm_path=path, +# num_betas=num_betas, +# batch_size=batch_size, +# use_vtx_selector=use_vtx_selector, +# model_type=model_type, +# ).to(device), +# ) + + +def expid2model(expr_dir): + """ " + Reading VPoser models (https://github.com/nghorbani/human_body_prior). + """ + from configer import Configer + + if not os.path.exists(expr_dir): + raise ValueError("Could not find the experiment directory: %s" % expr_dir) + + best_model_fname = sorted( + glob.glob(os.path.join(expr_dir, "snapshots", "*.pt")), key=os.path.getmtime + )[-1] + try_num = os.path.basename(best_model_fname).split("_")[0] + + print(("Found Trained Model: %s" % best_model_fname)) + + default_ps_fname = glob.glob(os.path.join(expr_dir, "*.ini"))[0] + if not os.path.exists(default_ps_fname): + raise ValueError( + "Could not find the appropriate vposer_settings: %s" % default_ps_fname + ) + ps = Configer( + default_ps_fname=default_ps_fname, + work_dir=expr_dir, + best_model_fname=best_model_fname, + ) + + return ps, best_model_fname + + +def load_vposer(expr_dir, vp_model="snapshot"): + """ + :param expr_dir: + :param vp_model: either 'snapshot' to use the experiment folder's code or a VPoser imported module, e.g. + from human_body_prior.train.vposer_smpl import VPoser, then pass VPoser to this function + :param if True will load the model definition used for training, and not the one in current repository + :return: + """ + ps, trained_model_fname = expid2model(expr_dir) + if vp_model == "snapshot": + + vposer_path = sorted( + glob.glob(os.path.join(expr_dir, "vposer_*.py")), key=os.path.getmtime + )[-1] + + spec = importlib.util.spec_from_file_location("VPoser", vposer_path) + module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(module) + + vposer_pt = getattr(module, "VPoser")( + num_neurons=ps.num_neurons, latentD=ps.latentD, data_shape=ps.data_shape + ) + else: + vposer_pt = vp_model( + num_neurons=ps.num_neurons, latentD=ps.latentD, data_shape=ps.data_shape + ) + + vposer_pt.load_state_dict(torch.load(trained_model_fname, map_location="cpu")) + vposer_pt.eval() + + return vposer_pt, ps + + +def load_state( + load_path, + model, + optimizer=None, + is_parallel=False, + map_location=None, + ignore_keys=None, +): + """ + Load Humor model checkpoint + """ + if not os.path.exists(load_path): + print("Could not find checkpoint at path " + load_path) + + full_checkpoint_dict = torch.load(load_path, map_location=map_location) + model_state_dict = full_checkpoint_dict["model"] + optim_state_dict = full_checkpoint_dict["optim"] + + # load model weights + for k, v in model_state_dict.items(): + if k.split(".")[0] == "module" and not is_parallel: + # then it was trained with Data parallel + print("Loading weights trained with DataParallel...") + model_state_dict = { + ".".join(k.split(".")[1:]): v + for k, v in model_state_dict.items() + if k.split(".")[0] == "module" + } + break + + if ignore_keys is not None: + model_state_dict = { + k: v + for k, v in model_state_dict.items() + if k.split(".")[0] not in ignore_keys + } + + # overwrite entries in the existing state dict + missing_keys, unexpected_keys = model.load_state_dict( + model_state_dict, strict=False + ) + if ignore_keys is not None: + missing_keys = [k for k in missing_keys if k.split(".")[0] not in ignore_keys] + unexpected_keys = [ + k for k in unexpected_keys if k.split(".")[0] not in ignore_keys + ] + if len(missing_keys) > 0: + print( + "WARNING: The following keys could not be found in the given state dict - ignoring..." + ) + print(missing_keys) + if len(unexpected_keys) > 0: + print( + "WARNING: The following keys were found in the given state dict but not in the current model - ignoring..." + ) + print(unexpected_keys) + + # load optimizer weights + if optimizer is not None: + optimizer.load_state_dict(optim_state_dict) + + min_train_loss = float("Inf") + if "min_train_loss" in full_checkpoint_dict.keys(): + min_train_loss = full_checkpoint_dict["min_train_loss"] + + return ( + full_checkpoint_dict["epoch"], + full_checkpoint_dict["min_val_loss"], + min_train_loss, + ) + + +def load_gmm(path, device=None): + """ + Load motion prior GMM for first frame motion prior + """ + if device is None: + device = torch.device("cpu") + + gmm_path = os.path.join(path, "prior_gmm.npz") + if not os.path.isfile(gmm_path): + raise ValueError(f"Init motion prior path {gmm_path} does not exist") + + res = np.load(gmm_path) + return { + "gmm": ( + torch.from_numpy(res["weights"]).to(device), + torch.from_numpy(res["means"]).to(device), + torch.from_numpy(res["covariances"]).to(device), + ) + } diff --git a/examples/mano_hand_retargeter/util/logger.py b/examples/mano_hand_retargeter/util/logger.py new file mode 100644 index 000000000..ad43a9c6e --- /dev/null +++ b/examples/mano_hand_retargeter/util/logger.py @@ -0,0 +1,37 @@ +import datetime + + +class Logger(object): + """ + Static logging class + """ + + log_file = None + + @staticmethod + def init(log_path): + Logger.log_file = log_path + + @staticmethod + def log(write_str, to_stdout=True): + if to_stdout: + print(write_str) + if not Logger.log_file: + print("Logger must be initialized before logging!") + return + time_str = datetime.datetime.now().strftime("%Y-%m-%d_%H:%M:%S") + with open(Logger.log_file, "a") as f: + f.write(time_str + " ") + f.write(str(write_str) + "\n") + + +def log_cur_stats(stats_dict, iter=None, to_stdout=True): + loss = stats_dict.pop("total", 0) + Logger.log(f"LOSS: {loss:.04f}", to_stdout=to_stdout) + for k, v in stats_dict.items(): + Logger.log(f"{k}: {v:.04f}", to_stdout=to_stdout) + if to_stdout: + if iter is not None: + print("======= iter %d =======" % iter) + else: + print("========") diff --git a/examples/mano_hand_retargeter/util/tensor.py b/examples/mano_hand_retargeter/util/tensor.py new file mode 100644 index 000000000..ceb85666a --- /dev/null +++ b/examples/mano_hand_retargeter/util/tensor.py @@ -0,0 +1,139 @@ +import torch +import numpy as np + + +def move_to(obj, device): + if isinstance(obj, torch.Tensor): + return obj.to(device) + if isinstance(obj, dict): + return {k: move_to(v, device) for k, v in obj.items()} + if isinstance(obj, (list, tuple)): + return [move_to(x, device) for x in obj] + return obj # otherwise do nothing + + +def detach_all(obj): + if isinstance(obj, torch.Tensor): + return obj.detach() + if isinstance(obj, dict): + return {k: detach_all(v) for k, v in obj.items()} + if isinstance(obj, (list, tuple)): + return [detach_all(x) for x in obj] + return obj # otherwise do nothing + + +def to_torch(obj): + if isinstance(obj, np.ndarray): + return torch.from_numpy(obj).float() + if isinstance(obj, dict): + return {k: to_torch(v) for k, v in obj.items()} + if isinstance(obj, (list, tuple)): + return [to_torch(x) for x in obj] + return obj + + +def to_np(obj): + if isinstance(obj, torch.Tensor): + return obj.numpy() + if isinstance(obj, dict): + return {k: to_np(v) for k, v in obj.items()} + if isinstance(obj, (list, tuple)): + return [to_np(x) for x in obj] + return obj + + +def get_device(i=0): + device = f"cuda:{i}" if torch.cuda.is_available() else "cpu" + return torch.device(device) + + +def scatter_intervals(tensor, start, end, T=None): + """ + Scatter the tensor contents into intervals from start to end + output tensor indexed from 0 to end.max() + :param tensor (B, S, *) + :param start (B) start indices + :param end (B) end indices + :param T (int, optional) max length + returns (B, T, *) scattered tensor + """ + assert isinstance(tensor, torch.Tensor) and tensor.ndim >= 2 + if T is not None: + end = torch.where(end < 0, T + 1 + end, end) + assert torch.all(end <= T) + else: + T = end.max() + + B, S, *dims = tensor.shape + start, end = start.long(), end.long() + # get idcs that go past the last time step so we don't have repeat indices in scatter + idcs = time_segment_idcs(start, end, clip=False) # (B, S) + # mask out the extra padding + mask = idcs >= end[:, None] + tensor[mask] = 0 + + idcs = idcs.reshape(B, S, *(1,) * len(dims)).repeat(1, 1, *dims) + output = torch.zeros( + B, idcs.max() + 1, *dims, device=tensor.device, dtype=tensor.dtype + ) + output.scatter_(1, idcs, tensor) + # slice out the extra segments + return output[:, :T] + + +def get_scatter_mask(start, end, T): + """ + get the mask of selected intervals + """ + B = start.shape[0] + start, end = start.long(), end.long() + assert torch.all(end <= T) + idcs = time_segment_idcs(start, end, clip=True) + mask = torch.zeros(B, T, device=start.device, dtype=torch.bool) + mask.scatter_(1, idcs, 1) + return mask + + +def select_intervals(series, start, end): + """ + Select slices of a tensor from start to end + will pad uneven sequences to all the max segment length + :param series (B, T, *) + :param start (B) + :param end (B) + returns (B, S, *) selected segments, S = max(end - start) + """ + B, T, *dims = series.shape + assert torch.all(end <= T) + sel = time_segment_idcs(start, end, clip=True) + S = sel.shape[1] + sel = sel.reshape(B, S, *(1,) * len(dims)).repeat(1, 1, *dims) + return torch.gather(series, 1, sel) + + +def get_select_mask(start, end): + """ + get the mask of unpadded elementes for the selected time segments + e.g. sel[mask] are the unpadded elements + :param start (B) + :param end (B) + """ + idcs = time_segment_idcs(start, end, clip=False) + return idcs < end[:, None] # (B, S) + + +def time_segment_idcs(start, end, clip=True): + """ + :param start (B) + :param end (B) + returns (B, S) long tensor of indices, where S = max(end - start) + """ + start, end = start.long(), end.long() + S = (end - start).max() + seg = torch.arange(S, dtype=torch.int64, device=start.device) + idcs = start[:, None] + seg[None, :] # (B, S) + if clip: + # clip at the lengths of each track + imax = end[:, None] - 1 + idcs = idcs.clamp(max=imax) + return idcs diff --git a/examples/mano_hand_retargeter/vis/__init__.py b/examples/mano_hand_retargeter/vis/__init__.py new file mode 100644 index 000000000..081baee39 --- /dev/null +++ b/examples/mano_hand_retargeter/vis/__init__.py @@ -0,0 +1,4 @@ +from . import viewer + +# from . import render +from . import tools diff --git a/examples/mano_hand_retargeter/vis/colors.txt b/examples/mano_hand_retargeter/vis/colors.txt new file mode 100644 index 000000000..9a58958aa --- /dev/null +++ b/examples/mano_hand_retargeter/vis/colors.txt @@ -0,0 +1,98 @@ +241 91 181 +0 187 249 +254 228 64 +0 245 212 +222 158 54 +255 133 141 +93 169 233 +155 93 229 +24 242 178 +252 116 186 +138 225 252 +178 171 242 +24 231 98 +232 93 117 +207 250 231 +253 208 242 +109 157 197 +166 189 219 +253 146 207 +167 201 87 +117 68 177 +255 229 50 +251 202 239 +58 134 255 +255 0 110 +251 86 7 +188 51 209 +122 229 130 +0 48 73 +214 40 40 +229 179 179 +0 187 249 +255 190 11 +204 213 174 +0 245 212 +255 153 200 +144 251 146 +189 211 147 +230 0 86 +0 95 57 +0 174 126 +255 116 163 +189 198 255 +90 219 255 +158 0 142 +255 147 126 +164 36 0 +0 21 68 +145 208 203 +95 173 78 +107 104 130 +0 125 181 +106 130 108 +252 246 189 +208 244 222 +169 222 249 +228 193 249 +122 204 174 +194 140 159 +0 143 156 +235 0 0 +255 2 157 +104 61 59 +150 138 232 +152 255 82 +167 87 64 +1 255 254 +255 238 232 +254 137 0 +1 208 255 +187 136 0 +165 255 210 +255 166 254 +119 77 0 +122 71 130 +38 52 0 +0 71 84 +67 0 44 +181 0 255 +255 177 103 +255 219 102 +126 45 210 +229 111 254 +222 255 116 +0 255 120 +0 155 255 +0 100 1 +0 118 255 +133 169 0 +0 185 23 +120 130 49 +0 255 198 +255 110 65 +232 94 190 +1 0 103 +149 0 58 +98 14 0 +0 0 0 diff --git a/examples/mano_hand_retargeter/vis/fig_specs.py b/examples/mano_hand_retargeter/vis/fig_specs.py new file mode 100644 index 000000000..cb3b55c60 --- /dev/null +++ b/examples/mano_hand_retargeter/vis/fig_specs.py @@ -0,0 +1,245 @@ +import torch +import numpy as np + + +def get_seq_figure_skip(seq_name=None): + if seq_name == "017437_mpii_test": + return 15 + if seq_name == "012968_mpii_test": + return 15 + if seq_name == "recording_20211002_S03_S18_04-all-100-200": + return 11 + return 10 + + +def get_seq_static_lookat_points(seq_name=None, bounds=None): + if seq_name == "002276_mpii_test": + top_source = torch.tensor([-0.5, -3.0, -2.0]) + top_target = torch.tensor([0.0, 0.0, 4.0]) + + side_source = torch.tensor([6.0, -2.0, 2.0]) + side_target = torch.tensor([2.0, 0.0, 6.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "002374_mpii_test": + top_source = torch.tensor([-4.0, 0.0, 0.0]) + top_target = torch.tensor([-2.0, 2.0, 3.0]) + + side_source = torch.tensor([-7.0, 1.0, 7.0]) + side_target = torch.tensor([0.0, 1.0, 8.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "003742_mpii_test": + top_source = torch.tensor([3.0, -2.0, -6]) + top_target = torch.tensor([3.0, 1.0, 2.0]) + + side_source = torch.tensor([-5.0, -1.0, -2]) + side_target = torch.tensor([2.0, 0.0, 5]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "003747_mpii_test": + top_source = torch.tensor([-5.0, -2.0, -5]) + top_target = torch.tensor([-3.0, 2.0, 1.0]) + + side_source = torch.tensor([-9.0, -1.0, -4]) + side_target = torch.tensor([-3.0, 2.0, 3]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "003943_mpii_test": + top_source = torch.tensor([0, -1, -2]) + top_target = torch.tensor([0, 1, 3]) + + side_source = torch.tensor([6, 0, 1]) + side_target = torch.tensor([0, 0, 5]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "006537_mpii_test": + top_source = torch.tensor([0, -4, -1]) + top_target = torch.tensor([1.0, 0.0, 5.0]) + + side_source = torch.tensor([5, -2, 0]) + side_target = torch.tensor([1.0, 1.0, 7.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "007684_mpii_test": + top_source = torch.tensor([-2, -4, -6]) + top_target = torch.tensor([0.5, 0.0, 4.0]) + + side_source = torch.tensor([-8, -3, -2]) + side_target = torch.tensor([1.0, 0.0, 5.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "009039_mpii_test": + top_source = torch.tensor([-2.0, -3.0, -1.5]) + top_target = torch.tensor([1.0, 0.0, 3.0]) + + side_source = torch.tensor([6, -2, -1.5]) + side_target = torch.tensor([2.0, 0.0, 6.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "009607_mpii_test": + top_source = torch.tensor([0, -3, -1]) + top_target = torch.tensor([0, 0, 5]) + + side_source = torch.tensor([-6, -0.5, 2]) + side_target = torch.tensor([-1.0, 0.5, 7]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "012968_mpii_test": + top_source = torch.tensor([-0.5, -3, -4]) + top_target = torch.tensor([0.0, 0.5, 2.0]) + + side_source = torch.tensor([7, -4, 0]) + side_target = torch.tensor([0, 0.5, 2.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "014531_mpii_test": + top_source = torch.tensor([0, -2, -2]) + top_target = torch.tensor([0, 0, 2]) + + side_source = torch.tensor([-2, 0, -2]) + side_target = torch.tensor([0, 0, 2]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "015933_mpii_test": + top_source = torch.tensor([0.0, 0.5, -5.0]) + top_target = torch.tensor([0.0, 2.0, -2.0]) + + side_source = torch.tensor([5.0, 1.5, -3.0]) + side_target = torch.tensor([0.0, 2.5, 1.5]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "016195_mpii_test": + top_source = torch.tensor([0, -1, -2]) + top_target = torch.tensor([0, 1, 1]) + + side_source = torch.tensor([-3, 0, 1]) + side_target = torch.tensor([0, 1, 2]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "018061_mpii_test": + top_source = torch.tensor([4, -1, 2]) + top_target = torch.tensor([1, 1, 3]) + + side_source = torch.tensor([-3, 0, 4]) + side_target = torch.tensor([1, 1, 3]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "018713_mpii_test": + top_source = torch.tensor([0, -1, -1]) + top_target = torch.tensor([0, 0.5, 2]) + + side_source = torch.tensor([3, 0, 1]) + side_target = torch.tensor([0, 0, 3]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "022691_mpii_test": + top_source = torch.tensor([0, -4, -4]) + top_target = torch.tensor([-2.0, 0.0, 1.0]) + + side_source = torch.tensor([-5, -2, -5]) + side_target = torch.tensor([-3.5, 0.0, 1.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "023390_mpii_test": + top_source = torch.tensor([0.0, -1.5, -1.0]) + top_target = torch.tensor([0.0, 0.0, 2.0]) + + side_source = torch.tensor([4.0, -0.5, 0]) + side_target = torch.tensor([1.0, 0.5, 4]) + # top_source = torch.tensor([0.0, -3.0, -2.0]) + # top_target = torch.tensor([0.0, 0.5, 2.0]) + + # side_source = torch.tensor([5.0, -0.5, -3]) + # side_target = torch.tensor([1.0, 0.5, 4]) + return (top_source, top_target), (side_source, side_target) + + if seq_name=="024165_mpii_test": + top_source = torch.tensor([0, -3, -3]) + top_target = torch.tensor([0, 0, 3]) + + side_source = torch.tensor([-4, -1, -2]) + side_target = torch.tensor([0, 0, 3]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "024154_mpii_test": + top_source = torch.tensor([-1, -0.5, 1]) + top_target = torch.tensor([-1, 1, 8]) + + side_source = torch.tensor([-4, 1, 3]) + side_target = torch.tensor([-1, 1, 8]) + return (top_source, top_target), (side_source, side_target) + +# if seq_name == "024159_mpii_test": +# top_source = torch.tensor([-4.0, -2.0, -6.0]) +# top_target = torch.tensor([-4.0, 0.0, 0.0]) + +# side_source = torch.tensor([-12, -1, -2]) +# side_target = torch.tensor([-10.0, 0.0, 0.0]) +# return (top_source, top_target), (side_source, side_target) + + if seq_name == "023962_mpii_test": + top_source = torch.tensor([0, -0.5, -2]) + top_target = torch.tensor([0, 0.5, 2]) + + side_source = torch.tensor([3, 0.5, 0]) + side_target = torch.tensor([0, 0, 2]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "017437_mpii_test": + top_source = torch.tensor([0, -8, -6]) + top_target = torch.tensor([-2.0, -1.0, 2.0]) + + side_source = torch.tensor([-5, -1, -7]) + side_target = torch.tensor([-3.0, -1.0, 1.0]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "recording_20211002_S03_S18_04-all-100-200": + top_source = torch.tensor([1.0, -1, -4.5]) + top_target = torch.tensor([1.0, 0.0, 1]) + + side_source = torch.tensor([1.0, 0.5, -4.5]) + side_target = torch.tensor([1.0, 0.5, 1]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "recording_20211002_S03_S18_04-all-100-500": + top_source = torch.tensor([0.0, -0.5, -3]) + top_target = torch.tensor([0.0, 1.0, 1]) + + side_source = torch.tensor([-2.0, 0.5, -3]) + side_target = torch.tensor([0.0, 1.0, 2]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "recording_20211002_S03_S18_01-all-700-862": + top_source = torch.tensor([0.5, -2.0, -2]) + top_target = torch.tensor([0.5, -0.5, 2]) + + side_source = torch.tensor([2.0, -0.5, -2]) + side_target = torch.tensor([0.5, -0.5, 1]) + return (top_source, top_target), (side_source, side_target) + + if seq_name == "recording_20220315_S21_S30_02-all-0-100": + top_source = torch.tensor([0.0, -1, -2]) + top_target = torch.tensor([0.0, 0.5, 1]) + + side_source = torch.tensor([-2.0, 0.0, -1]) + side_target = torch.tensor([0.0, 0.5, 1]) + return (top_source, top_target), (side_source, side_target) + + if bounds is not None: + # (3), (3), (3) + bb_min, bb_max, center = bounds + print("SCENE BOUNDS", bb_min, bb_max, center) + length = torch.abs(bb_max - bb_min).max() + print(length) + top_source = center + torch.tensor([0.0, -2.0, -0.9 * length]) + + side_source = center + torch.tensor([0.5 * length, -0.5, -0.7 * length]) + return (top_source, center), (side_source, center) + + top_source = torch.tensor([0.0, -2.0, -3.0]) + top_target = torch.tensor([0.0, 0.0, 1.0]) + + side_source = torch.tensor([3.0, -1.0, -1.0]) + side_target = torch.tensor([0.0, 0.0, 1.0]) + return (top_source, top_target), (side_source, side_target) diff --git a/examples/mano_hand_retargeter/vis/output.py b/examples/mano_hand_retargeter/vis/output.py new file mode 100644 index 000000000..1ed653ec8 --- /dev/null +++ b/examples/mano_hand_retargeter/vis/output.py @@ -0,0 +1,379 @@ +import os +import cv2 +import imageio +import numpy as np +import torch +import subprocess + +from body_model import run_mano +from geometry import camera as cam_util +from geometry.mesh import make_batch_mesh, save_mesh_scenes +from geometry.plane import parse_floor_plane, get_plane_transform + +from util.tensor import detach_all, to_torch, move_to + +from .fig_specs import get_seq_figure_skip, get_seq_static_lookat_points +from .tools import mesh_to_geometry, smooth_results + + +def prep_result_vis(res, vis_mask, track_ids, body_model, temporal_smooth, smooth_trans=True): + """ + :param res (dict) with (B, T, *) tensor elements, B tracks and T frames + :param vis_mask (B, T) with visibility of each track in each frame + :param track_ids (B,) index of each track + :param temporal_smooth (bool) whether to apply temporal smoothing + :param smooth_trans (bool) whether to smooth translation (only used if temporal_smooth=True) + """ + print("RESULT FIELDS", res.keys()) + res = detach_all(res) + # print(res.keys(), res["is_right"]) + with torch.no_grad(): + if temporal_smooth: + if smooth_trans: + print('running temporal smooth (including trans)') + # Smooth everything including trans + res["root_orient"], res["pose_body"], res['betas'], res["trans"] = smooth_results(res["root_orient"], res["pose_body"], res['betas'], res["is_right"], res["trans"]) + else: + print('running temporal smooth (excluding trans)') + # Smooth only pose and shape, not trans + res["root_orient"], res["pose_body"], res['betas'], _ = smooth_results(res["root_orient"], res["pose_body"], res['betas'], res["is_right"]) + + world_smpl = run_mano( + body_model, + res["trans"], + res["root_orient"], + res["pose_body"], + res["is_right"], + res.get("betas", None), + ) + + T_w2c = None + floor_plane = None + if "cam_R" in res and "cam_t" in res: + T_w2c = cam_util.make_4x4_pose(res["cam_R"][0], res["cam_t"][0]) + if "floor_plane" in res: + floor_plane = res["floor_plane"][0] + return build_scene_dict( + world_smpl, + vis_mask, + track_ids, + T_w2c=T_w2c, + floor_plane=floor_plane, + ) + + +def build_scene_dict( + world_smpl, vis_mask, track_ids, T_w2c=None, floor_plane=None, **kwargs +): + scene_dict = {} + + # first get the geometry of the people + # lists of length T with (B, V, 3), (F, 3), (B, 3) + scene_dict["geometry"] = mesh_to_geometry( + world_smpl["vertices"], world_smpl["joints"], world_smpl["l_faces"], world_smpl["r_faces"], world_smpl["is_right"], vis_mask, track_ids + ) + + if T_w2c is None: + T_w2c = torch.eye(4)[None] + + T_c2w = torch.linalg.inv(T_w2c) + # rotate the camera slightly down and translate back and up + T = cam_util.make_4x4_pose( + cam_util.rotx(-np.pi / 10), torch.tensor([0, -1, -2]) + ).to(T_c2w.device) + + scene_dict["cameras"] = { + "src_cam": T_c2w, + # "front": torch.einsum("ij,...jk->...ik", T, T_c2w), + } + + # Create ground plane based on hand mesh height + # DISABLED: Ground plane visualization disabled to better see coordinate system + # verts = scene_dict["geometry"][0] # Get vertices from geometry + # if len(verts) > 0: + # # Find minimum height across all frames and vertices + # min_height = float('inf') + # for frame_verts in verts: + # if len(frame_verts) > 0: + # frame_min = frame_verts[..., 1].min().item() # y-coordinate is height + # min_height = min(min_height, frame_min) + # + # # Set ground plane further below minimum height + # ground_offset = -0.5 # 20cm below minimum height + # ground_height = min_height - ground_offset + # + # # Create ground plane transform + # R = torch.eye(3) # Identity rotation (flat ground) + # t = torch.tensor([0.0, ground_height, 0.0]) # Translate to ground height + # scene_dict["ground"] = cam_util.make_4x4_pose(R, t) + # + # # Save ground mesh for Blender debugging + # import trimesh + # from vis.viewer import make_checkerboard + # ground_mesh = make_checkerboard(color0=[0.9, 0.95, 1.0], color1=[0.7, 0.8, 0.85], up="y", alpha=1.0) + # ground_mesh.apply_translation([0.0, ground_height, 0.0]) + # ground_mesh.export("ground_debug.obj") + + # if floor_plane is not None: + # # compute the ground transform + # # use the first appearance of a track as the reference point + # tid, sid = torch.where(vis_mask > 0) + # idx = tid[torch.argmin(sid)] + # root = world_smpl["joints"][idx, 0, 0].detach().cpu() + # floor = parse_floor_plane(floor_plane.detach().cpu()) + # R, t = get_plane_transform(torch.tensor([0.0, 1.0, 0.0]), floor, root) + # scene_dict["ground"] = cam_util.make_4x4_pose(R, t) + + return scene_dict + + +# def render_scene_dict(renderer, scene_dict, out_name, fps=30, **kwargs): +# # lists of T (B, V, 3), (B, 3), (F, 3) +# verts, colors, faces, bounds = scene_dict["geometry"] +# print("NUM VERTS", len(verts)) + +# # add a top view +# scene_dict["cameras"]["above"] = cam_util.make_4x4_pose( +# torch.eye(3), torch.tensor([0, 0, -10]) +# )[None] + +# for cam_name, cam_poses in scene_dict["cameras"].items(): +# print("rendering scene for", cam_name) +# # cam_poses are (T, 4, 4) +# render_bg = cam_name == "src_cam" +# ground_pose = scene_dict.get("ground", None) +# print(cam_name, ground_pose) +# frames = renderer.render_video( +# cam_poses[None], verts, faces, colors, render_bg, ground_pose=ground_pose +# ) +# os.makedirs(f"{out_name}_{cam_name}/", exist_ok=True) +# for idx, i in enumerate(frames): +# imageio.imwrite(f"{out_name}_{cam_name}/" + f'{str(idx).zfill(6)}.jpg', i) +# imageio.mimwrite(f"{out_name}_{cam_name}.mp4", frames, fps=fps) + + +def animate_scene( + vis, + scene, + out_name, + seq_name=None, + accumulate=False, + render_views=["src_cam", "front", "above", "side"], + render_bg=True, + render_cam=True, + render_ground=True, + debug=False, + render_keypoints=False, + **kwargs, +): + if len(render_views) < 1: + return + + scene = build_pyrender_scene( + vis, + scene, + seq_name, + render_views=render_views, + render_cam=render_cam, + accumulate=accumulate, + debug=debug, + ) + + print("RENDERING VIEWS", scene["cameras"].keys()) + render_ground = render_ground and "ground" in scene + save_paths = [] + for cam_name, cam_poses in scene["cameras"].items(): + is_src = cam_name == "src_cam" + show_bg = is_src and render_bg + show_ground = render_ground and not is_src + show_cam = render_cam and not is_src + show_keypoints = is_src and render_keypoints # Only show keypoints on source view + vis_name = f"{out_name}_{cam_name}" + print(f"{cam_name} has {len(cam_poses)} poses") + skip = 10 if debug else 1 + vis.set_camera_seq(cam_poses[::skip]) + save_path = vis.animate( + vis_name, + render_bg=show_bg, + render_ground=show_ground, + render_cam=show_cam, + render_keypoints=show_keypoints, + **kwargs, + ) + save_paths.append(save_path) + + return save_paths + + +def build_pyrender_scene( + vis, + scene, + seq_name, + render_views=["src_cam", "front", "above", "side"], + render_cam=True, + accumulate=False, + debug=False, +): + """ + :param vis (viewer object) + :param scene (scene dict with geometry, cameras, etc) + :param accumulate (optional bool, default False) whether to render entire trajectory together + :param render_views (list str) camera views to render + """ + if len(render_views) < 1: + return + + assert all(view in ["src_cam", "front", "above", "side"] for view in render_views) + + scene = move_to(detach_all(scene), "cpu") + src_cams = scene["cameras"]["src_cam"] + verts, _, colors, l_faces, r_faces, is_right, bounds = scene["geometry"] + T = len(verts) + print(f"{T} mesh frames for {seq_name}, {len(verts)}") + + # set camera views + if not "cameras" in scene: + scene["cameras"] = {} + + # remove default views from source camera perspective if desired + if "src_cam" not in render_views: + scene["cameras"].pop("src_cam", None) + if "front" not in render_views: + scene["cameras"].pop("front", None) + + # add static viewpoints if desired + top_pose, side_pose, _skip = get_static_views(seq_name, bounds) + if "above" in render_views: + scene["cameras"]["above"] = top_pose[None] + if "side" in render_views: + scene["cameras"]["side"] = side_pose[None] + if "front" in render_views: + # Use a static front camera: place it in front of the hand mesh, looking at the center + # Place the camera at a fixed distance along the -z axis from the center + if bounds is not None: + bb_min, bb_max, center = bounds + length = torch.abs(bb_max - bb_min).max() + front_offset = 1.0 # 1 closer, 2 farther + front_source = center + torch.tensor([0.0, -0.5, -front_offset]) + front_target = center + up = torch.tensor([0.0, 1, 0.0]) + front_pose = cam_util.lookat_matrix(front_source, front_target, up) + scene["cameras"]["front"] = front_pose[None] + else: + # fallback to previous behavior if bounds not available + pass + + # accumulate meshes if possible (can only accumulate for static camera) + moving_cam = "src_cam" in render_views or "front" in render_views + accumulate = accumulate and not moving_cam + skip = _skip if accumulate else 1 + + vis.clear_meshes() + + if "ground" in scene: + vis.set_ground(scene["ground"]) + + if debug: + skip = 10 + times = list(range(0, T, skip)) + # print(times, verts[0].shape) + # raise ValueError + for t in times: + if len(is_right[t]) > 1: + assert (is_right[t].cpu().numpy().tolist() == [0,1]) + l_meshes = make_batch_mesh(verts[t][0][None], l_faces[t], colors[t][0][None]) + r_meshes = make_batch_mesh(verts[t][1][None], r_faces[t], colors[t][1][None]) + assert len(l_meshes) == 1 + assert len(r_meshes) == 1 + meshes = [l_meshes[0], r_meshes[0]] + else: + assert len(is_right[t]) == 1 + if is_right[t] == 0: + meshes = make_batch_mesh(verts[t][0][None], l_faces[t], colors[t][0][None]) + elif is_right[t] == 1: + meshes = make_batch_mesh(verts[t][0][None], r_faces[t], colors[t][0][None]) + + if accumulate: + vis.add_static_meshes(meshes) + else: + vis.add_mesh_frame(meshes, debug=debug) + + # add camera markers + if render_cam: + if accumulate: + vis.add_camera_markers_static(src_cams[::skip]) + else: + vis.add_camera_markers(src_cams[::skip]) + + return scene + + +def get_static_views(seq_name=None, bounds=None): + print("STATIC VIEWS FOR SEQ NAME", seq_name) + up = torch.tensor([0.0, 1.0, 0.0]) + + skip = get_seq_figure_skip(seq_name) + top_vp, side_vp = get_seq_static_lookat_points(seq_name, bounds) + top_source, top_target = top_vp + side_source, side_target = side_vp + top_pose = cam_util.lookat_matrix(top_source, top_target, up) + side_pose = cam_util.lookat_matrix(side_source, side_target, up) + return top_pose, side_pose, skip + + +def make_video_grid_2x2(out_path, vid_paths, fps, overwrite=False): + if os.path.isfile(out_path) and not overwrite: + print(f"{out_path} already exists, skipping.") + return + + if any(not os.path.isfile(v) for v in vid_paths): + print("not all inputs exist!", vid_paths) + return + + # Open all videos for reading + readers = [imageio.get_reader(v, 'ffmpeg') for v in vid_paths] + try: + # Check min frame count to avoid index errors; also get shape/fps + lengths = [reader.count_frames() for reader in readers] + min_len = min(lengths) + if min_len == 0: + print("Some videos have 0 frames!") + for reader in readers: + reader.close() + return + + # We assume the first video dictates the output fps and (half)size + meta = readers[0].get_meta_data() + # fps = meta.get('fps', 30) + orig_size = meta['size'] # (width, height) + width = orig_size[0] // 2 + height = orig_size[1] // 2 + out_size = (width * 2, height * 2) + + writer = imageio.get_writer(out_path, fps=fps, codec='libx264', ffmpeg_log_level="quiet", macro_block_size=None) + + for t in range(min_len): + frames = [] + for r in readers: + try: + frame = r.get_data(t) + except Exception: + frame = None + frames.append(frame) + if any(f is None for f in frames): + break + # Resize all to (width, height) + frames = [cv2.resize(f, (width, height)) for f in frames] + row1 = np.hstack(frames[:2]) + row2 = np.hstack(frames[2:]) + grid = np.vstack([row1, row2]) + # Ensure uint8 + if grid.dtype != np.uint8: + grid = np.clip(grid, 0, 255).astype(np.uint8) + writer.append_data(grid) + + writer.close() + print(f"Video grid created: {out_path}") + finally: + for reader in readers: + reader.close() \ No newline at end of file diff --git a/examples/mano_hand_retargeter/vis/output_farcam.py b/examples/mano_hand_retargeter/vis/output_farcam.py new file mode 100644 index 000000000..31ee45fb3 --- /dev/null +++ b/examples/mano_hand_retargeter/vis/output_farcam.py @@ -0,0 +1,243 @@ +import torch + +from geometry import camera as cam_util +from geometry.mesh import make_batch_mesh + +from util.tensor import detach_all, move_to + +from .output import get_static_views # reuse existing per-sequence heuristics + + +def animate_scene_far( + vis, + scene, + out_name, + seq_name=None, + accumulate=False, + render_views=("src_cam", "front", "above", "side"), + render_bg=True, + render_cam=True, + render_ground=True, + debug=False, + render_keypoints=False, + **kwargs, +): + """ + Drop‑in replacement for vis.output.animate_scene, but with static cameras + (front/above/side) placed farther from the scene based on the optimized + source camera trajectory. + """ + if len(render_views) < 1: + return + + scene = build_pyrender_scene_far( + vis, + scene, + seq_name, + render_views=list(render_views), + render_cam=render_cam, + accumulate=accumulate, + debug=debug, + ) + + print("RENDERING VIEWS", scene["cameras"].keys()) + render_ground = render_ground and "ground" in scene + save_paths = [] + for cam_name, cam_poses in scene["cameras"].items(): + is_src = cam_name == "src_cam" + show_bg = is_src and render_bg + show_ground = render_ground and not is_src + show_cam = render_cam and not is_src + show_keypoints = is_src and render_keypoints # only on src view + vis_name = f"{out_name}_{cam_name}" + print(f"{cam_name} has {len(cam_poses)} poses") + skip = 10 if debug else 1 + vis.set_camera_seq(cam_poses[::skip]) + save_path = vis.animate( + vis_name, + render_bg=show_bg, + render_ground=show_ground, + render_cam=show_cam, + render_keypoints=show_keypoints, + **kwargs, + ) + save_paths.append(save_path) + + return save_paths + + +def build_pyrender_scene_far( + vis, + scene, + seq_name, + render_views=("src_cam", "front", "above", "side"), + render_cam=True, + accumulate=False, + debug=False, +): + """ + Same as vis.output.build_pyrender_scene, but: + - Uses the first optimized source camera pose to define a global direction + - Places `front`, `above`, and `side` cameras far from the scene center + along intuitive directions, scaled by the scene size. + """ + if len(render_views) < 1: + return + + assert all(view in ["src_cam", "front", "above", "side"] for view in render_views) + + scene = move_to(detach_all(scene), "cpu") + src_cams = scene["cameras"]["src_cam"] + verts, _, colors, l_faces, r_faces, is_right, bounds = scene["geometry"] + T = len(verts) + print(f"{T} mesh frames for {seq_name}, {len(verts)}") + + # set camera views + if "cameras" not in scene: + scene["cameras"] = {} + + # remove default views from source camera perspective if desired + if "src_cam" not in render_views: + scene["cameras"].pop("src_cam", None) + if "front" not in render_views: + scene["cameras"].pop("front", None) + + # start from the original heuristic top/side views as a fallback + top_pose, side_pose, _skip = get_static_views(seq_name, bounds) + + # Use scene bounds and the first source camera pose (if available) to place + # static cameras farther away from the center, improving coverage. + cam_based_static = bounds is not None and src_cams is not None and len(src_cams) > 0 + if cam_based_static: + bb_min, bb_max, center = bounds + cam_pos = src_cams[0][:3, 3] + dir_vec = cam_pos - center # direction from center to current cam + if dir_vec.norm() < 1e-4: + # Degenerate case: fall back to a generic viewing direction + dir_vec = torch.tensor( + [0.0, -0.5, -1.0], + dtype=center.dtype, + device=center.device, + ) + radius = dir_vec.norm() + if radius < 1e-4: + # fall back to a radius derived from the bbox size + radius = torch.abs(bb_max - bb_min).max() + + up = torch.tensor( + [0.0, 1.0, 0.0], + dtype=center.dtype, + device=center.device, + ) + else: + radius = None + center = None + up = None + + # "above" view + if "above" in render_views: + if cam_based_static: + scale_above = 3.0 + above_source = center + scale_above * radius * up / up.norm() + above_pose = cam_util.lookat_matrix(above_source, center, up) + scene["cameras"]["above"] = above_pose[None] + else: + scene["cameras"]["above"] = top_pose[None] + + # "side" view + if "side" in render_views: + if cam_based_static: + side_dir = torch.linalg.cross(up, dir_vec) + if side_dir.norm() < 1e-4: + # If src direction nearly aligns with up, choose an arbitrary side dir + side_dir = torch.tensor( + [1.0, 0.0, 0.0], + dtype=center.dtype, + device=center.device, + ) + scale_side = 3.0 + side_source = center + scale_side * radius * side_dir / side_dir.norm() + side_pose = cam_util.lookat_matrix(side_source, center, up) + scene["cameras"]["side"] = side_pose[None] + else: + scene["cameras"]["side"] = side_pose[None] + + # "front" view + if "front" in render_views: + if cam_based_static: + scale_front = 5.0 # increase this to move the static cam farther away + front_source = center + scale_front * dir_vec + front_pose = cam_util.lookat_matrix(front_source, center, up) + scene["cameras"]["front"] = front_pose[None] + elif bounds is not None: + # fallback: same heuristic as original implementation + bb_min, bb_max, center = bounds + length = torch.abs(bb_max - bb_min).max() + front_offset = 1.0 + front_source = center + torch.tensor( + [0.0, -0.5, -front_offset], + dtype=center.dtype, + device=center.device, + ) + front_target = center + up = torch.tensor( + [0.0, 1.0, 0.0], + dtype=center.dtype, + device=center.device, + ) + front_pose = cam_util.lookat_matrix(front_source, front_target, up) + scene["cameras"]["front"] = front_pose[None] + + # accumulate meshes if possible (can only accumulate for static camera) + moving_cam = "src_cam" in render_views or "front" in render_views + accumulate = accumulate and not moving_cam + skip = _skip if accumulate else 1 + + vis.clear_meshes() + + if "ground" in scene: + vis.set_ground(scene["ground"]) + + if debug: + skip = 10 + times = list(range(0, T, skip)) + for t in times: + if len(is_right[t]) > 1: + assert is_right[t].cpu().numpy().tolist() == [0, 1] + l_meshes = make_batch_mesh(verts[t][0][None], l_faces[t], colors[t][0][None]) + r_meshes = make_batch_mesh(verts[t][1][None], r_faces[t], colors[t][1][None]) + assert len(l_meshes) == 1 + assert len(r_meshes) == 1 + meshes = [l_meshes[0], r_meshes[0]] + else: + assert len(is_right[t]) == 1 + if is_right[t] == 0: + meshes = make_batch_mesh( + verts[t][0][None], + l_faces[t], + colors[t][0][None], + ) + elif is_right[t] == 1: + meshes = make_batch_mesh( + verts[t][0][None], + r_faces[t], + colors[t][0][None], + ) + else: + meshes = [] + + if accumulate: + vis.add_static_meshes(meshes) + else: + vis.add_mesh_frame(meshes, debug=debug) + + # add camera markers + if render_cam: + if accumulate: + vis.add_camera_markers_static(src_cams[::skip]) + else: + vis.add_camera_markers(src_cams[::skip]) + + return scene + + diff --git a/examples/mano_hand_retargeter/vis/output_object.py b/examples/mano_hand_retargeter/vis/output_object.py new file mode 100644 index 000000000..4aa0cdeda --- /dev/null +++ b/examples/mano_hand_retargeter/vis/output_object.py @@ -0,0 +1,190 @@ +import os +import imageio +import numpy as np +import torch + +from geometry.mesh import make_batch_mesh +from util.tensor import detach_all, move_to + +from .fig_specs import get_seq_figure_skip, get_seq_static_lookat_points +from .output import get_static_views # reuse existing camera view logic + + +def animate_scene_with_objects( + vis, + scene, + out_name, + seq_name=None, + accumulate=False, + render_views=("src_cam", "front", "above", "side"), + render_bg=True, + render_cam=True, + render_ground=True, + debug=False, + render_keypoints=False, + **kwargs, +): + """ + Drop-in replacement for vis.output.animate_scene that also renders + per-frame object meshes stored in scene["objects"]. + + The scene dict is expected to contain: + - "geometry": (verts, joints, colors, l_faces, r_faces, is_right, bounds) + - "cameras": dict of camera pose sequences + - optional "ground": ground pose + - optional "objects": list of length T, each entry is either: + None, + a trimesh.Trimesh instance, or + a list of trimesh.Trimesh instances. + """ + if len(render_views) < 1: + return + + scene = build_pyrender_scene_with_objects( + vis, + scene, + seq_name, + render_views=list(render_views), + render_cam=render_cam, + accumulate=accumulate, + debug=debug, + ) + + print("RENDERING VIEWS", scene["cameras"].keys()) + render_ground = render_ground and "ground" in scene + save_paths = [] + for cam_name, cam_poses in scene["cameras"].items(): + is_src = cam_name == "src_cam" + show_bg = is_src and render_bg + show_ground = render_ground and not is_src + show_cam = render_cam and not is_src + show_keypoints = is_src and render_keypoints # Only show keypoints on source view + vis_name = f"{out_name}_{cam_name}" + print(f"{cam_name} has {len(cam_poses)} poses") + skip = 10 if debug else 1 + vis.set_camera_seq(cam_poses[::skip]) + save_path = vis.animate( + vis_name, + render_bg=show_bg, + render_ground=show_ground, + render_cam=show_cam, + render_keypoints=show_keypoints, + **kwargs, + ) + save_paths.append(save_path) + + return save_paths + + +def build_pyrender_scene_with_objects( + vis, + scene, + seq_name, + render_views=("src_cam", "front", "above", "side"), + render_cam=True, + accumulate=False, + debug=False, +): + """ + Same as vis.output.build_pyrender_scene, but additionally supports + per-frame object meshes stored under scene["objects"]. + """ + if len(render_views) < 1: + return + + assert all(view in ["src_cam", "front", "above", "side"] for view in render_views) + + scene = move_to(detach_all(scene), "cpu") + src_cams = scene["cameras"]["src_cam"] + verts, _, colors, l_faces, r_faces, is_right, bounds = scene["geometry"] + T = len(verts) + print(f"{T} mesh frames for {seq_name}, {len(verts)}") + + # Optional per-frame object meshes: list length T, each item list[trimesh.Trimesh] + object_meshes = scene.get("objects", None) + + # set camera views + if "cameras" not in scene: + scene["cameras"] = {} + + # remove default views from source camera perspective if desired + if "src_cam" not in render_views: + scene["cameras"].pop("src_cam", None) + if "front" not in render_views: + scene["cameras"].pop("front", None) + + # add static viewpoints if desired + top_pose, side_pose, _skip = get_static_views(seq_name, bounds) + if "above" in render_views: + scene["cameras"]["above"] = top_pose[None] + if "side" in render_views: + scene["cameras"]["side"] = side_pose[None] + if "front" in render_views: + # static front camera using scene bounds + if bounds is not None: + bb_min, bb_max, center = bounds + length = torch.abs(bb_max - bb_min).max() + front_offset = 1.0 + front_source = center + torch.tensor([0.0, -0.5, -front_offset]) + front_target = center + up = torch.tensor([0.0, 1.0, 0.0]) + from geometry import camera as cam_util + + front_pose = cam_util.lookat_matrix(front_source, front_target, up) + scene["cameras"]["front"] = front_pose[None] + + # accumulate meshes if possible (can only accumulate for static camera) + moving_cam = "src_cam" in render_views or "front" in render_views + accumulate = accumulate and not moving_cam + skip = _skip if accumulate else 1 + + vis.clear_meshes() + + if "ground" in scene: + vis.set_ground(scene["ground"]) + + if debug: + skip = 10 + times = list(range(0, T, skip)) + + for t in times: + # Hand meshes (same as original build_pyrender_scene) + if len(is_right[t]) > 1: + assert is_right[t].cpu().numpy().tolist() == [0, 1] + l_meshes = make_batch_mesh(verts[t][0][None], l_faces[t], colors[t][0][None]) + r_meshes = make_batch_mesh(verts[t][1][None], r_faces[t], colors[t][1][None]) + assert len(l_meshes) == 1 + assert len(r_meshes) == 1 + meshes = [l_meshes[0], r_meshes[0]] + else: + assert len(is_right[t]) == 1 + if is_right[t] == 0: + meshes = make_batch_mesh(verts[t][0][None], l_faces[t], colors[t][0][None]) + elif is_right[t] == 1: + meshes = make_batch_mesh(verts[t][0][None], r_faces[t], colors[t][0][None]) + else: + meshes = [] + + # Append object meshes for this frame if provided + if object_meshes is not None: + if t < len(object_meshes) and object_meshes[t] is not None: + if isinstance(object_meshes[t], (list, tuple)): + meshes = list(meshes) + list(object_meshes[t]) + else: + meshes = list(meshes) + [object_meshes[t]] + + if accumulate: + vis.add_static_meshes(meshes) + else: + vis.add_mesh_frame(meshes, debug=debug) + + # add camera markers + if render_cam: + if accumulate: + vis.add_camera_markers_static(src_cams[::skip]) + else: + vis.add_camera_markers(src_cams[::skip]) + + return scene + + diff --git a/examples/mano_hand_retargeter/vis/render.py b/examples/mano_hand_retargeter/vis/render.py new file mode 100644 index 000000000..4449e9350 --- /dev/null +++ b/examples/mano_hand_retargeter/vis/render.py @@ -0,0 +1,254 @@ +import torch +import torch.nn as nn +import numpy as np + +from pytorch3d.renderer import ( + RasterizationSettings, + MeshRenderer, + MeshRasterizer, + HardPhongShader, + PointLights, + PerspectiveCameras, +) +from pytorch3d.structures import Meshes +from pytorch3d.structures.meshes import join_meshes_as_scene +from pytorch3d.renderer import TexturesAtlas, TexturesVertex +from pytorch3d.transforms import euler_angles_to_matrix + +from .tools import get_colors, read_image, transform_torch3d, checkerboard_geometry + + +def init_renderer(img_size, intrins, device, vis_scale=1.0, bg_paths=None): + img_size = int(vis_scale * img_size[0]), int(vis_scale * img_size[1]) + renderer = RenderBase(device, img_size, intrins=vis_scale * intrins) + if bg_paths is not None: + bg_imgs = [ + torch.from_numpy(read_image(p, scale=vis_scale)).float() / 255 + for p in bg_paths + ] + print(bg_imgs[0].shape) + renderer.set_bg_seq(bg_imgs) + print("RENDERER", renderer) + return renderer + + +class RenderBase(nn.Module): + def __init__( + self, + device, + img_size, + intrins=None, + blur_radius: float = 0.0, # rasterizer settings + faces_per_pixel: int = 3, + ): + """ + Uses Pytorch3D to render results. + We use the PyTorch3D coordinate system, which assumes: + +X:left, +Y: up and +Z: from us to scene (right-handed) + https://pytorch3d.org/docs/cameras + """ + super().__init__() + self.device = device + W, H = img_size + self.img_size = (H, W) + if intrins is not None: + intrins = intrins.to(device) + self.cam_f, self.cam_center = intrins[:2], intrins[2:] + cx, cy = self.cam_center.detach().cpu() + else: + self.cam_f = torch.tensor([0.5 * (H + W), 0.5 * (H + W)], device=device) + self.cam_center = torch.tensor([0.5 * W, 0.5 * H], device=device) + print("cam_f", self.cam_f, "cam_center", self.cam_center) + print("img_size", self.img_size) + self.blur_radius = blur_radius + self.faces_per_pixel = faces_per_pixel + + self.light_loc = [[0, 0, -0.5]] + self.cameras = self.make_cameras() + self.bg_imgs = None + self.set_ground() + self.build_renderer() + + def build_renderer(self): + self.lights = PointLights(device=self.device, location=self.light_loc) + + self.rasterizer = RasterizationSettings( + image_size=self.img_size, + blur_radius=self.blur_radius, + faces_per_pixel=self.faces_per_pixel, + max_faces_per_bin=100000, + ) + self.renderer = MeshRenderer( + rasterizer=MeshRasterizer( + cameras=self.cameras, raster_settings=self.rasterizer + ), + shader=HardPhongShader( + cameras=self.cameras, lights=self.lights, device=self.device + ), + ) + + def make_cameras(self, cam_poses=None): + device = self.device + if cam_poses is None: + cam_poses = torch.eye(4, device=device)[None] + cam_poses = cam_poses.to(device) + cam_R, cam_t = transform_torch3d(cam_poses) + Nc = len(cam_poses) + focal = self.cam_f[None].repeat(Nc, 1) + ppt = self.cam_center[None].repeat(Nc, 1) + img_size = [self.img_size for _ in range(Nc)] + return PerspectiveCameras( + device=self.device, + in_ndc=False, + focal_length=focal, + principal_point=ppt, + image_size=img_size, + R=cam_R, + T=cam_t, + ) + + def render_frame(self, cam_poses, verts, faces, colors): + """ + :param cam_poses (C, 4, 4) + :param verts (B, V, 3) + :param faces (F, 3) + :param colors (B, 4) + """ + with torch.no_grad(): + cameras = self.make_cameras(cam_poses) + mesh = build_meshes(verts, faces, colors) + image = self.renderer(mesh, cameras=cameras) + return image + + def render_with_ground(self, cam_poses, verts, faces, colors, ground_pose): + """ + :param cam_poses (C, 4, 4) + :param verts (B, V, 3) + :param faces (F, 3) + :param colors (B, 3) + :param ground_pose (4, 4) + """ + with torch.no_grad(): + self.set_ground_pose(ground_pose) + cameras = self.make_cameras(cam_poses) + # (B, V, 3), (B, F, 3), (B, V, 3) + verts, faces, colors = prep_shared_geometry(verts, faces, colors) + # (V, 3), (F, 3), (V, 3) + gv, gf, gc = self.ground_geometry + verts = list(torch.unbind(verts, dim=0)) + [gv] + faces = list(torch.unbind(faces, dim=0)) + [gf] + colors = list(torch.unbind(colors, dim=0)) + [gc[..., :3]] + mesh = create_meshes(verts, faces, colors) + + image = self.renderer(mesh, cameras=cameras) + return image + + def set_bg_seq(self, bg_imgs): + self.bg_imgs = bg_imgs + + def set_ground(self, pose=None): + device = self.device + v, f, vc, fc = map(torch.from_numpy, checkerboard_geometry(up="y")) + v, f, vc = v.to(device), f.to(device), vc.to(device) + self.ground_geometry = [v, f, vc] + if pose is not None: + self.set_ground_pose(pose) + + def set_ground_pose(self, pose): + """ + :param pose (4, 4) + """ + if self.ground_geometry is None: + return + v = self.ground_geometry[0] + pose = pose.to(self.device) + # R, t = pose[:3, :3], pose[:3, 3] + R, t = transform_torch3d(pose) + self.ground_geometry[0] = torch.einsum("ij,vj->vi", R, v) + t[None] + + def composite_bg(self, frames, fac=1.0): + T = len(frames) + if self.bg_imgs is None: + return frames + + out_frames = [] + for bg, frame in zip(self.bg_imgs, frames): + alpha = fac * frame[..., 3:] + out = alpha * frame[..., :3] + (1 - alpha) * bg + out_frames.append(out) + return out_frames + + def render_video( + self, + cam_poses, + verts, + faces, + colors, + render_bg=False, + fac=1.0, + ground_pose=None, + ): + """ + :param cam_poses (C, T, 4, 4) + :param verts list of T (B, V, 3) + :param faces list of T (F, 3) + :param colors list of T (B, 4) + :param render_bg (optional default False) + :param fac (optional float, default 1) + :param ground_pose (optional, default None) (4, 4) + returns list of T (H, W, 4) + """ + T = len(verts) + print(f"rendering video with {T} frames") + if cam_poses.shape[1] == 1: + cam_poses = cam_poses.expand(-1, T, -1, -1) + + if render_bg: # don't render ground on source frame + ground_pose = None + + frames = [] + for t in range(T): + if ground_pose is None: + # (H, W, 4) + frame = self.render_frame( + cam_poses[:, t], verts[t], faces[t], colors[t] + ) + else: + # (H, W, 4) + frame = self.render_with_ground( + cam_poses[:, t], verts[t], faces[t], colors[t], ground_pose + ) + frames.append(frame.cpu()[0]) + + if render_bg and self.bg_imgs is not None: + frames = self.composite_bg(frames, fac=fac) + + return [(255 * f).byte() for f in frames] + + +def build_meshes(verts, faces, colors): + return create_meshes(*prep_shared_geometry(verts, faces, colors)) + + +def prep_shared_geometry(verts, faces, colors): + """ + :param verts (B, V, 3) + :param faces (F, 3) + :param colors (B, 4) + """ + B, V, _ = verts.shape + F, _ = faces.shape + colors = colors.unsqueeze(1).expand(B, V, -1)[..., :3] + faces = faces.unsqueeze(0).expand(B, F, -1) + return verts, faces, colors + + +def create_meshes(verts, faces, colors): + """ + :param verts (B, V, 3) + :param faces (B, F, 3) + :param colors (B, V, 3) + """ + textures = TexturesVertex(verts_features=colors) + meshes = Meshes(verts=verts, faces=faces, textures=textures) + return join_meshes_as_scene(meshes) diff --git a/examples/mano_hand_retargeter/vis/tools.py b/examples/mano_hand_retargeter/vis/tools.py new file mode 100644 index 000000000..648726f66 --- /dev/null +++ b/examples/mano_hand_retargeter/vis/tools.py @@ -0,0 +1,1109 @@ +import os +import cv2 +import numpy as np +import torch +from PIL import Image + + +def read_image(path, scale=1): + im = Image.open(path) + if scale == 1: + return np.array(im) + W, H = im.size + w, h = int(scale * W), int(scale * H) + return np.array(im.resize((w, h), Image.ANTIALIAS)) + + +def transform_torch3d(T_c2w): + """ + :param T_c2w (*, 4, 4) + returns (*, 3, 3), (*, 3) + """ + R1 = torch.tensor( + [[-1.0, 0.0, 0.0], [0.0, -1.0, 0.0], [0.0, 0.0, 1.0],], device=T_c2w.device, + ) + R2 = torch.tensor( + [[1.0, 0.0, 0.0], [0.0, -1.0, 0.0], [0.0, 0.0, -1.0],], device=T_c2w.device, + ) + cam_R, cam_t = T_c2w[..., :3, :3], T_c2w[..., :3, 3] + cam_R = torch.einsum("...ij,jk->...ik", cam_R, R1) + cam_t = torch.einsum("ij,...j->...i", R2, cam_t) + return cam_R, cam_t + + +def transform_pyrender(T_c2w): + """ + :param T_c2w (*, 4, 4) + """ + T_vis = torch.tensor( + [ + [1.0, 0.0, 0.0, 0.0], + [0.0, -1.0, 0.0, 0.0], + [0.0, 0.0, -1.0, 0.0], + [0.0, 0.0, 0.0, 1.0], + ], + device=T_c2w.device, + ) + return torch.einsum( + "...ij,jk->...ik", torch.einsum("ij,...jk->...ik", T_vis, T_c2w), T_vis + ) + + +def mesh_to_geometry(verts, joints, l_faces, r_faces, is_right, vis_mask=None, track_ids=None): + """ + :param verts (B, T, V, 3) + :param faces (F, 3) + :param vis_mask (optional) (B, T) visibility of each person + :param track_ids (optional) (B,) + returns list of T verts (B, V, 3), faces (F, 3), colors (B, 3) + where B is different depending on the visibility of the people + """ + B, T = verts.shape[:2] + device = verts.device + + # (B, 3) + colors = ( + track_to_colors(track_ids) + if track_ids is not None + else torch.ones(B, 3, device) * 0.5 + ) + + # list T (B, V, 3), T (B, 3), T (F, 3) + return filter_visible_meshes(verts, joints, colors, l_faces, r_faces, is_right, vis_mask) + + +def filter_visible_meshes(verts, joints, colors, l_faces, r_faces, is_right, vis_mask=None, vis_opacity=False): + """ + :param verts (B, T, V, 3) + :param colors (B, 3) + :param faces (F, 3) + :param vis_mask (optional tensor, default None) (B, T) ternary mask + -1 if not in frame + 0 if temporarily occluded + 1 if visible + :param vis_opacity (optional bool, default False) + if True, make occluded people alpha=0.5, otherwise alpha=1 + returns a list of T lists verts (Bi, V, 3), colors (Bi, 4), faces (F, 3) + """ + # print(verts.shape, joints.shape, colors.shape, l_faces.shape, r_faces.shape, is_right.shape, vis_mask.shape) + # torch.Size([2, 2, 21, 3]) torch.Size([2, 2, 3, 3]) torch.Size([2, 2, 3]) torch.Size([2, 2]) torch.Size([2, 2]) + + # import ipdb; ipdb.set_trace() + B, T = verts.shape[:2] + l_faces = [l_faces for t in range(T)] + r_faces = [r_faces for t in range(T)] + if vis_mask is None: + verts = [verts[:, t] for t in range(T)] + joints = [joints[:, t] for t in range(T)] + colors = [colors for t in range(T)] + is_right = [is_right[:, t] for t in range(T)] + # print('11111111111', is_right) + return verts, joints, colors, l_faces, r_faces, is_right, bounds + + + # render occluded and visible, but not removed + vis_mask = vis_mask >= 0 + if vis_opacity: + alpha = 0.5 * (vis_mask[..., None] + 1) + else: + alpha = (vis_mask[..., None] >= 0).float() + vert_list = [verts[vis_mask[:, t], t] for t in range(T)] + joints_list = [joints[vis_mask[:, t], t] for t in range(T)] + is_right_list = [is_right[vis_mask[:, t], t] for t in range(T)] + colors = [ + torch.cat([colors[vis_mask[:, t]], alpha[vis_mask[:, t], t]], dim=-1) + for t in range(T) + ] + bounds = get_bboxes(verts, vis_mask) + # print('2222222222222', is_right_list) + # print('vvvvvv', len(vert_list), vert_list[0].shape) + # # torch.Size([1, 2, 1, 2]) torch.Size([1, 2, 1, 2]) + # raise ValueError + return vert_list, joints_list, colors, l_faces, r_faces, is_right_list, bounds + + +def get_bboxes(verts, vis_mask): + """ + return bb_min, bb_max, and mean for each track (B, 3) over entire trajectory + :param verts (B, T, V, 3) + :param vis_mask (B, T) + """ + B, T, *_ = verts.shape + bb_min, bb_max, mean = [], [], [] + for b in range(B): + v = verts[b, vis_mask[b, :T]] # (Tb, V, 3) + bb_min.append(v.amin(dim=(0, 1))) + bb_max.append(v.amax(dim=(0, 1))) + mean.append(v.mean(dim=(0, 1))) + bb_min = torch.stack(bb_min, dim=0) + bb_max = torch.stack(bb_max, dim=0) + mean = torch.stack(mean, dim=0) + # point to a track that's long and close to the camera + zs = mean[:, 2] + counts = vis_mask[:, :T].sum(dim=-1) # (B,) + mask = counts < 0.8 * T + zs[mask] = torch.inf + sel = torch.argmin(zs) + return bb_min.amin(dim=0), bb_max.amax(dim=0), mean[sel] + + +def track_to_colors(track_ids): + """ + :param track_ids (B) + """ + color_map = torch.from_numpy(get_colors()).to(track_ids) + return color_map[track_ids] / 255 # (B, 3) + + +def get_colors(): + # color_file = os.path.abspath(os.path.join(__file__, "../colors_phalp.txt")) + color_file = os.path.abspath(os.path.join(__file__, "../colors.txt")) + RGB_tuples = np.vstack( + [ + np.loadtxt(color_file, skiprows=0), + # np.loadtxt(color_file, skiprows=1), + np.random.uniform(0, 255, size=(10000, 3)), + [[0, 0, 0]], + ] + ) + b = np.where(RGB_tuples == 0) + RGB_tuples[b] = 1 + return RGB_tuples.astype(np.float32) + + +def checkerboard_geometry( + length=12.0, + color0=[0.8, 0.9, 0.9], + color1=[0.6, 0.7, 0.7], + tile_width=0.5, + alpha=1.0, + up="y", +): + assert up == "y" or up == "z" + color0 = np.array(color0 + [alpha]) + color1 = np.array(color1 + [alpha]) + radius = length / 2.0 + num_rows = num_cols = int(length / tile_width) + vertices = [] + vert_colors = [] + faces = [] + face_colors = [] + for i in range(num_rows): + for j in range(num_cols): + u0, v0 = j * tile_width - radius, i * tile_width - radius + us = np.array([u0, u0, u0 + tile_width, u0 + tile_width]) + vs = np.array([v0, v0 + tile_width, v0 + tile_width, v0]) + zs = np.zeros(4) + if up == "y": + cur_verts = np.stack([us, zs, vs], axis=-1) # (4, 3) + else: + cur_verts = np.stack([us, vs, zs], axis=-1) # (4, 3) + + cur_faces = np.array( + [[0, 1, 3], [1, 2, 3], [0, 3, 1], [1, 3, 2]], dtype=np.int64 + ) + cur_faces += 4 * (i * num_cols + j) # the number of previously added verts + use_color0 = (i % 2 == 0 and j % 2 == 0) or (i % 2 == 1 and j % 2 == 1) + cur_color = color0 if use_color0 else color1 + cur_colors = np.array([cur_color, cur_color, cur_color, cur_color]) + + vertices.append(cur_verts) + faces.append(cur_faces) + vert_colors.append(cur_colors) + face_colors.append(cur_colors) + + vertices = np.concatenate(vertices, axis=0).astype(np.float32) + vert_colors = np.concatenate(vert_colors, axis=0).astype(np.float32) + faces = np.concatenate(faces, axis=0).astype(np.float32) + face_colors = np.concatenate(face_colors, axis=0).astype(np.float32) + + return vertices, faces, vert_colors, face_colors + + +def camera_marker_geometry(radius, height, up): + assert up == "y" or up == "z" + if up == "y": + vertices = np.array( + [ + [-radius, -radius, 0], + [radius, -radius, 0], + [radius, radius, 0], + [-radius, radius, 0], + [0, 0, height], + ] + ) + else: + vertices = np.array( + [ + [-radius, 0, -radius], + [radius, 0, -radius], + [radius, 0, radius], + [-radius, 0, radius], + [0, -height, 0], + ] + ) + + faces = np.array( + [[0, 3, 1], [1, 3, 2], [0, 1, 4], [1, 2, 4], [2, 3, 4], [3, 0, 4],] + ) + + face_colors = np.array( + [ + [1.0, 1.0, 1.0, 1.0], + [1.0, 1.0, 1.0, 1.0], + [0.0, 1.0, 0.0, 1.0], + [1.0, 0.0, 0.0, 1.0], + [0.0, 1.0, 0.0, 1.0], + [1.0, 0.0, 0.0, 1.0], + ] + ) + return vertices, faces, face_colors + + +def vis_keypoints( + keypts_list, + img_size, + radius=6, + thickness=3, + kpt_score_thr=0.3, + dataset="TopDownCocoDataset", +): + """ + Visualize keypoints + From ViTPose/mmpose/apis/inference.py + """ + palette = np.array( + [ + [255, 128, 0], + [255, 153, 51], + [255, 178, 102], + [230, 230, 0], + [255, 153, 255], + [153, 204, 255], + [255, 102, 255], + [255, 51, 255], + [102, 178, 255], + [51, 153, 255], + [255, 153, 153], + [255, 102, 102], + [255, 51, 51], + [153, 255, 153], + [102, 255, 102], + [51, 255, 51], + [0, 255, 0], + [0, 0, 255], + [255, 0, 0], + [255, 255, 255], + ] + ) + + if dataset in ( + "TopDownCocoDataset", + "BottomUpCocoDataset", + "TopDownOCHumanDataset", + "AnimalMacaqueDataset", + ): + # show the results + skeleton = [ + [15, 13], + [13, 11], + [16, 14], + [14, 12], + [11, 12], + [5, 11], + [6, 12], + [5, 6], + [5, 7], + [6, 8], + [7, 9], + [8, 10], + [1, 2], + [0, 1], + [0, 2], + [1, 3], + [2, 4], + [3, 5], + [4, 6], + ] + + pose_link_color = palette[ + [0, 0, 0, 0, 7, 7, 7, 9, 9, 9, 9, 9, 16, 16, 16, 16, 16, 16, 16] + ] + pose_kpt_color = palette[ + [16, 16, 16, 16, 16, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0] + ] + + elif dataset == "TopDownCocoWholeBodyDataset": + # show the results + skeleton = [ + [15, 13], + [13, 11], + [16, 14], + [14, 12], + [11, 12], + [5, 11], + [6, 12], + [5, 6], + [5, 7], + [6, 8], + [7, 9], + [8, 10], + [1, 2], + [0, 1], + [0, 2], + [1, 3], + [2, 4], + [3, 5], + [4, 6], + [15, 17], + [15, 18], + [15, 19], + [16, 20], + [16, 21], + [16, 22], + [91, 92], + [92, 93], + [93, 94], + [94, 95], + [91, 96], + [96, 97], + [97, 98], + [98, 99], + [91, 100], + [100, 101], + [101, 102], + [102, 103], + [91, 104], + [104, 105], + [105, 106], + [106, 107], + [91, 108], + [108, 109], + [109, 110], + [110, 111], + [112, 113], + [113, 114], + [114, 115], + [115, 116], + [112, 117], + [117, 118], + [118, 119], + [119, 120], + [112, 121], + [121, 122], + [122, 123], + [123, 124], + [112, 125], + [125, 126], + [126, 127], + [127, 128], + [112, 129], + [129, 130], + [130, 131], + [131, 132], + ] + + pose_link_color = palette[ + [0, 0, 0, 0, 7, 7, 7, 9, 9, 9, 9, 9, 16, 16, 16, 16, 16, 16, 16] + + [16, 16, 16, 16, 16, 16] + + [0, 0, 0, 0, 4, 4, 4, 4, 8, 8, 8, 8, 12, 12, 12, 12, 16, 16, 16, 16] + + [0, 0, 0, 0, 4, 4, 4, 4, 8, 8, 8, 8, 12, 12, 12, 12, 16, 16, 16, 16] + ] + pose_kpt_color = palette[ + [16, 16, 16, 16, 16, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0] + + [0, 0, 0, 0, 0, 0] + + [19] * (68 + 42) + ] + + elif dataset == "TopDownAicDataset": + skeleton = [ + [2, 1], + [1, 0], + [0, 13], + [13, 3], + [3, 4], + [4, 5], + [8, 7], + [7, 6], + [6, 9], + [9, 10], + [10, 11], + [12, 13], + [0, 6], + [3, 9], + ] + + pose_link_color = palette[[9, 9, 9, 9, 9, 9, 16, 16, 16, 16, 16, 0, 7, 7]] + pose_kpt_color = palette[[9, 9, 9, 9, 9, 9, 16, 16, 16, 16, 16, 16, 0, 0]] + + elif dataset == "TopDownMpiiDataset": + skeleton = [ + [0, 1], + [1, 2], + [2, 6], + [6, 3], + [3, 4], + [4, 5], + [6, 7], + [7, 8], + [8, 9], + [8, 12], + [12, 11], + [11, 10], + [8, 13], + [13, 14], + [14, 15], + ] + + pose_link_color = palette[[16, 16, 16, 16, 16, 16, 7, 7, 0, 9, 9, 9, 9, 9, 9]] + pose_kpt_color = palette[[16, 16, 16, 16, 16, 16, 7, 7, 0, 0, 9, 9, 9, 9, 9, 9]] + + elif dataset == "TopDownMpiiTrbDataset": + skeleton = [ + [12, 13], + [13, 0], + [13, 1], + [0, 2], + [1, 3], + [2, 4], + [3, 5], + [0, 6], + [1, 7], + [6, 7], + [6, 8], + [7, 9], + [8, 10], + [9, 11], + [14, 15], + [16, 17], + [18, 19], + [20, 21], + [22, 23], + [24, 25], + [26, 27], + [28, 29], + [30, 31], + [32, 33], + [34, 35], + [36, 37], + [38, 39], + ] + + pose_link_color = palette[[16] * 14 + [19] * 13] + pose_kpt_color = palette[[16] * 14 + [0] * 26] + + elif dataset in ("OneHand10KDataset", "FreiHandDataset", "PanopticDataset"): + skeleton = [ + [0, 1], + [1, 2], + [2, 3], + [3, 4], + [0, 5], + [5, 6], + [6, 7], + [7, 8], + [0, 9], + [9, 10], + [10, 11], + [11, 12], + [0, 13], + [13, 14], + [14, 15], + [15, 16], + [0, 17], + [17, 18], + [18, 19], + [19, 20], + ] + + pose_link_color = palette[ + [0, 0, 0, 0, 4, 4, 4, 4, 8, 8, 8, 8, 12, 12, 12, 12, 16, 16, 16, 16] + ] + pose_kpt_color = palette[ + [0, 0, 0, 0, 0, 4, 4, 4, 4, 8, 8, 8, 8, 12, 12, 12, 12, 16, 16, 16, 16] + ] + + elif dataset == "InterHand2DDataset": + skeleton = [ + [0, 1], + [1, 2], + [2, 3], + [4, 5], + [5, 6], + [6, 7], + [8, 9], + [9, 10], + [10, 11], + [12, 13], + [13, 14], + [14, 15], + [16, 17], + [17, 18], + [18, 19], + [3, 20], + [7, 20], + [11, 20], + [15, 20], + [19, 20], + ] + + pose_link_color = palette[ + [0, 0, 0, 4, 4, 4, 8, 8, 8, 12, 12, 12, 16, 16, 16, 0, 4, 8, 12, 16] + ] + pose_kpt_color = palette[ + [0, 0, 0, 0, 4, 4, 4, 4, 8, 8, 8, 8, 12, 12, 12, 12, 16, 16, 16, 16, 0] + ] + + elif dataset == "Face300WDataset": + # show the results + skeleton = [] + + pose_link_color = palette[[]] + pose_kpt_color = palette[[19] * 68] + kpt_score_thr = 0 + + elif dataset == "FaceAFLWDataset": + # show the results + skeleton = [] + + pose_link_color = palette[[]] + pose_kpt_color = palette[[19] * 19] + kpt_score_thr = 0 + + elif dataset == "FaceCOFWDataset": + # show the results + skeleton = [] + + pose_link_color = palette[[]] + pose_kpt_color = palette[[19] * 29] + kpt_score_thr = 0 + + elif dataset == "FaceWFLWDataset": + # show the results + skeleton = [] + + pose_link_color = palette[[]] + pose_kpt_color = palette[[19] * 98] + kpt_score_thr = 0 + + elif dataset == "AnimalHorse10Dataset": + skeleton = [ + [0, 1], + [1, 12], + [12, 16], + [16, 21], + [21, 17], + [17, 11], + [11, 10], + [10, 8], + [8, 9], + [9, 12], + [2, 3], + [3, 4], + [5, 6], + [6, 7], + [13, 14], + [14, 15], + [18, 19], + [19, 20], + ] + + pose_link_color = palette[[4] * 10 + [6] * 2 + [6] * 2 + [7] * 2 + [7] * 2] + pose_kpt_color = palette[ + [4, 4, 6, 6, 6, 6, 6, 6, 4, 4, 4, 4, 4, 7, 7, 7, 4, 4, 7, 7, 7, 4] + ] + + elif dataset == "AnimalFlyDataset": + skeleton = [ + [1, 0], + [2, 0], + [3, 0], + [4, 3], + [5, 4], + [7, 6], + [8, 7], + [9, 8], + [11, 10], + [12, 11], + [13, 12], + [15, 14], + [16, 15], + [17, 16], + [19, 18], + [20, 19], + [21, 20], + [23, 22], + [24, 23], + [25, 24], + [27, 26], + [28, 27], + [29, 28], + [30, 3], + [31, 3], + ] + + pose_link_color = palette[[0] * 25] + pose_kpt_color = palette[[0] * 32] + + elif dataset == "AnimalLocustDataset": + skeleton = [ + [1, 0], + [2, 1], + [3, 2], + [4, 3], + [6, 5], + [7, 6], + [9, 8], + [10, 9], + [11, 10], + [13, 12], + [14, 13], + [15, 14], + [17, 16], + [18, 17], + [19, 18], + [21, 20], + [22, 21], + [24, 23], + [25, 24], + [26, 25], + [28, 27], + [29, 28], + [30, 29], + [32, 31], + [33, 32], + [34, 33], + ] + + pose_link_color = palette[[0] * 26] + pose_kpt_color = palette[[0] * 35] + + elif dataset == "AnimalZebraDataset": + skeleton = [[1, 0], [2, 1], [3, 2], [4, 2], [5, 7], [6, 7], [7, 2], [8, 7]] + + pose_link_color = palette[[0] * 8] + pose_kpt_color = palette[[0] * 9] + + elif dataset in "AnimalPoseDataset": + skeleton = [ + [0, 1], + [0, 2], + [1, 3], + [0, 4], + [1, 4], + [4, 5], + [5, 7], + [6, 7], + [5, 8], + [8, 12], + [12, 16], + [5, 9], + [9, 13], + [13, 17], + [6, 10], + [10, 14], + [14, 18], + [6, 11], + [11, 15], + [15, 19], + ] + + pose_link_color = palette[[0] * 20] + pose_kpt_color = palette[[0] * 20] + else: + NotImplementedError() + + img_w, img_h = img_size + img = 255 * np.ones((img_h, img_w, 3), dtype=np.uint8) + img = imshow_keypoints( + img, + keypts_list, + skeleton, + kpt_score_thr, + pose_kpt_color, + pose_link_color, + radius, + thickness, + ) + alpha = 255 * (img != 255).any(axis=-1, keepdims=True).astype(np.uint8) + return np.concatenate([img, alpha], axis=-1) + + +def imshow_keypoints( + img, + pose_result, + skeleton=None, + kpt_score_thr=0.3, + pose_kpt_color=None, + pose_link_color=None, + radius=4, + thickness=1, + show_keypoint_weight=False, +): + """Draw keypoints and links on an image. + From ViTPose/mmpose/core/visualization/image.py + + Args: + img (H, W, 3) array + pose_result (list[kpts]): The poses to draw. Each element kpts is + a set of K keypoints as an Kx3 numpy.ndarray, where each + keypoint is represented as x, y, score. + kpt_score_thr (float, optional): Minimum score of keypoints + to be shown. Default: 0.3. + pose_kpt_color (np.array[Nx3]`): Color of N keypoints. If None, + the keypoint will not be drawn. + pose_link_color (np.array[Mx3]): Color of M links. If None, the + links will not be drawn. + thickness (int): Thickness of lines. + show_keypoint_weight (bool): If True, opacity indicates keypoint score + """ + img_h, img_w, _ = img.shape + idcs = [0, 16, 15, 18, 17, 5, 2, 6, 3, 7, 4, 12, 9, 13, 10, 14, 11] + for kpts in pose_result: + kpts = np.array(kpts, copy=False)[idcs] + + # draw each point on image + if pose_kpt_color is not None: + assert len(pose_kpt_color) == len(kpts) + for kid, kpt in enumerate(kpts): + x_coord, y_coord, kpt_score = int(kpt[0]), int(kpt[1]), kpt[2] + if kpt_score > kpt_score_thr: + color = tuple(int(c) for c in pose_kpt_color[kid]) + if show_keypoint_weight: + img_copy = img.copy() + cv2.circle( + img_copy, (int(x_coord), int(y_coord)), radius, color, -1 + ) + transparency = max(0, min(1, kpt_score)) + cv2.addWeighted( + img_copy, transparency, img, 1 - transparency, 0, dst=img + ) + else: + cv2.circle(img, (int(x_coord), int(y_coord)), radius, color, -1) + + # draw links + if skeleton is not None and pose_link_color is not None: + assert len(pose_link_color) == len(skeleton) + for sk_id, sk in enumerate(skeleton): + pos1 = (int(kpts[sk[0], 0]), int(kpts[sk[0], 1])) + pos2 = (int(kpts[sk[1], 0]), int(kpts[sk[1], 1])) + if ( + pos1[0] > 0 + and pos1[0] < img_w + and pos1[1] > 0 + and pos1[1] < img_h + and pos2[0] > 0 + and pos2[0] < img_w + and pos2[1] > 0 + and pos2[1] < img_h + and kpts[sk[0], 2] > kpt_score_thr + and kpts[sk[1], 2] > kpt_score_thr + ): + color = tuple(int(c) for c in pose_link_color[sk_id]) + if show_keypoint_weight: + img_copy = img.copy() + X = (pos1[0], pos2[0]) + Y = (pos1[1], pos2[1]) + mX = np.mean(X) + mY = np.mean(Y) + length = ((Y[0] - Y[1]) ** 2 + (X[0] - X[1]) ** 2) ** 0.5 + angle = math.degrees(math.atan2(Y[0] - Y[1], X[0] - X[1])) + stickwidth = 2 + polygon = cv2.ellipse2Poly( + (int(mX), int(mY)), + (int(length / 2), int(stickwidth)), + int(angle), + 0, + 360, + 1, + ) + cv2.fillConvexPoly(img_copy, polygon, color) + transparency = max( + 0, min(1, 0.5 * (kpts[sk[0], 2] + kpts[sk[1], 2])) + ) + cv2.addWeighted( + img_copy, transparency, img, 1 - transparency, 0, dst=img + ) + else: + cv2.line(img, pos1, pos2, color, thickness=thickness) + + return img + + +############################# +# temporal optimization +############################# +def quaternion_to_angle_axis(quaternion: torch.Tensor) -> torch.Tensor: + """ + This function is borrowed from https://github.com/kornia/kornia + + Convert quaternion vector to angle axis of rotation. + + Adapted from ceres C++ library: ceres-solver/include/ceres/rotation.h + + Args: + quaternion (torch.Tensor): tensor with quaternions. + + Return: + torch.Tensor: tensor with angle axis of rotation. + + Shape: + - Input: :math:`(*, 4)` where `*` means, any number of dimensions + - Output: :math:`(*, 3)` + + Example: + >>> quaternion = torch.rand(2, 4) # Nx4 + >>> angle_axis = tgm.quaternion_to_angle_axis(quaternion) # Nx3 + """ + if not torch.is_tensor(quaternion): + raise TypeError("Input type is not a torch.Tensor. Got {}".format( + type(quaternion))) + + if not quaternion.shape[-1] == 4: + raise ValueError("Input must be a tensor of shape Nx4 or 4. Got {}" + .format(quaternion.shape)) + # unpack input and compute conversion + q1: torch.Tensor = quaternion[..., 1] + q2: torch.Tensor = quaternion[..., 2] + q3: torch.Tensor = quaternion[..., 3] + sin_squared_theta: torch.Tensor = q1 * q1 + q2 * q2 + q3 * q3 + + sin_theta: torch.Tensor = torch.sqrt(sin_squared_theta) + cos_theta: torch.Tensor = quaternion[..., 0] + two_theta: torch.Tensor = 2.0 * torch.where( + cos_theta < 0.0, + torch.atan2(-sin_theta, -cos_theta), + torch.atan2(sin_theta, cos_theta)) + + k_pos: torch.Tensor = two_theta / sin_theta + k_neg: torch.Tensor = 2.0 * torch.ones_like(sin_theta) + k: torch.Tensor = torch.where(sin_squared_theta > 0.0, k_pos, k_neg) + + angle_axis: torch.Tensor = torch.zeros_like(quaternion)[..., :3] + angle_axis[..., 0] += q1 * k + angle_axis[..., 1] += q2 * k + angle_axis[..., 2] += q3 * k + return angle_axis + +def rotation_matrix_to_quaternion(rotation_matrix, eps=1e-6): + """ + This function is borrowed from https://github.com/kornia/kornia + + Convert 3x4 rotation matrix to 4d quaternion vector + + This algorithm is based on algorithm described in + https://github.com/KieranWynn/pyquaternion/blob/master/pyquaternion/quaternion.py#L201 + + Args: + rotation_matrix (Tensor): the rotation matrix to convert. + + Return: + Tensor: the rotation in quaternion + + Shape: + - Input: :math:`(N, 3, 4)` + - Output: :math:`(N, 4)` + + Example: + >>> input = torch.rand(4, 3, 4) # Nx3x4 + >>> output = tgm.rotation_matrix_to_quaternion(input) # Nx4 + """ + if not torch.is_tensor(rotation_matrix): + raise TypeError("Input type is not a torch.Tensor. Got {}".format( + type(rotation_matrix))) + + if len(rotation_matrix.shape) > 3: + raise ValueError( + "Input size must be a three dimensional tensor. Got {}".format( + rotation_matrix.shape)) + if not rotation_matrix.shape[-2:] == (3, 4): + raise ValueError( + "Input size must be a N x 3 x 4 tensor. Got {}".format( + rotation_matrix.shape)) + + rmat_t = torch.transpose(rotation_matrix, 1, 2) + + mask_d2 = rmat_t[:, 2, 2] < eps + + mask_d0_d1 = rmat_t[:, 0, 0] > rmat_t[:, 1, 1] + mask_d0_nd1 = rmat_t[:, 0, 0] < -rmat_t[:, 1, 1] + + t0 = 1 + rmat_t[:, 0, 0] - rmat_t[:, 1, 1] - rmat_t[:, 2, 2] + q0 = torch.stack([rmat_t[:, 1, 2] - rmat_t[:, 2, 1], + t0, rmat_t[:, 0, 1] + rmat_t[:, 1, 0], + rmat_t[:, 2, 0] + rmat_t[:, 0, 2]], -1) + t0_rep = t0.repeat(4, 1).t() + + t1 = 1 - rmat_t[:, 0, 0] + rmat_t[:, 1, 1] - rmat_t[:, 2, 2] + q1 = torch.stack([rmat_t[:, 2, 0] - rmat_t[:, 0, 2], + rmat_t[:, 0, 1] + rmat_t[:, 1, 0], + t1, rmat_t[:, 1, 2] + rmat_t[:, 2, 1]], -1) + t1_rep = t1.repeat(4, 1).t() + + t2 = 1 - rmat_t[:, 0, 0] - rmat_t[:, 1, 1] + rmat_t[:, 2, 2] + q2 = torch.stack([rmat_t[:, 0, 1] - rmat_t[:, 1, 0], + rmat_t[:, 2, 0] + rmat_t[:, 0, 2], + rmat_t[:, 1, 2] + rmat_t[:, 2, 1], t2], -1) + t2_rep = t2.repeat(4, 1).t() + + t3 = 1 + rmat_t[:, 0, 0] + rmat_t[:, 1, 1] + rmat_t[:, 2, 2] + q3 = torch.stack([t3, rmat_t[:, 1, 2] - rmat_t[:, 2, 1], + rmat_t[:, 2, 0] - rmat_t[:, 0, 2], + rmat_t[:, 0, 1] - rmat_t[:, 1, 0]], -1) + t3_rep = t3.repeat(4, 1).t() + + mask_c0 = mask_d2 * mask_d0_d1 + mask_c1 = mask_d2 * ~mask_d0_d1 + mask_c2 = ~mask_d2 * mask_d0_nd1 + mask_c3 = ~mask_d2 * ~mask_d0_nd1 + mask_c0 = mask_c0.view(-1, 1).type_as(q0) + mask_c1 = mask_c1.view(-1, 1).type_as(q1) + mask_c2 = mask_c2.view(-1, 1).type_as(q2) + mask_c3 = mask_c3.view(-1, 1).type_as(q3) + + q = q0 * mask_c0 + q1 * mask_c1 + q2 * mask_c2 + q3 * mask_c3 + q /= torch.sqrt(t0_rep * mask_c0 + t1_rep * mask_c1 + # noqa + t2_rep * mask_c2 + t3_rep * mask_c3) # noqa + q *= 0.5 + return q + +def rotation_matrix_to_angle_axis(rotation_matrix): + """ + Convert 3x4 rotation matrix to Rodrigues vector + Args: + rotation_matrix (Tensor): rotation matrix. + Returns: + Tensor: Rodrigues vector transformation. + Shape: + - Input: :math:`(N, 3, 4)` + - Output: :math:`(N, 3)` + Example: + >>> input = torch.rand(2, 3, 4) # Nx4x4 + >>> output = tgm.rotation_matrix_to_angle_axis(input) # Nx3 + """ + if rotation_matrix.shape[1:] == (3,3): + hom_mat = torch.tensor([0, 0, 1]).float() + rot_mat = rotation_matrix.reshape(-1, 3, 3) + batch_size, device = rot_mat.shape[0], rot_mat.device + hom_mat = hom_mat.view(1, 3, 1) + hom_mat = hom_mat.repeat(batch_size, 1, 1).contiguous() + hom_mat = hom_mat.to(device) + rotation_matrix = torch.cat([rot_mat, hom_mat], dim=-1) + + quaternion = rotation_matrix_to_quaternion(rotation_matrix) + aa = quaternion_to_angle_axis(quaternion) + aa[torch.isnan(aa)] = 0.0 + return aa + +def quat2mat(quat): + """Convert quaternion coefficients to rotation matrix. + 把四元组的系数转化成旋转矩阵。四元组表示三维旋转 + Args: + quat: size = [B, 4] 4 <===>(w, x, y, z) + Returns: + Rotation matrix corresponding to the quaternion -- size = [B, 3, 3] + """ + norm_quat = quat + norm_quat = norm_quat/norm_quat.norm(p=2, dim=1, keepdim=True) + w, x, y, z = norm_quat[:,0], norm_quat[:,1], norm_quat[:,2], norm_quat[:,3] + + B = quat.size(0) + + w2, x2, y2, z2 = w.pow(2), x.pow(2), y.pow(2), z.pow(2) + wx, wy, wz = w*x, w*y, w*z + xy, xz, yz = x*y, x*z, y*z + + rotMat = torch.stack([w2 + x2 - y2 - z2, 2*xy - 2*wz, 2*wy + 2*xz, + 2*wz + 2*xy, w2 - x2 + y2 - z2, 2*yz - 2*wx, + 2*xz - 2*wy, 2*wx + 2*yz, w2 - x2 - y2 + z2], dim=1).view(B, 3, 3) + return rotMat + +def batch_rodrigues(param): + #param N x 3 + batch_size = param.shape[0] + #沿第二维(3个数)进行求二次范数:||x||,下面就是进行标准化,每三个数除以他们的范数。 + l1norm = torch.norm(param + 1e-8, p = 2, dim = 1) + angle = torch.unsqueeze(l1norm, -1) + normalized = torch.div(param, angle) + angle = angle * 0.5 + #上面算出的是一个向量的长度:sqrt(x**2+y**2+z**2)/2,所以这个长度的的cos + v_cos = torch.cos(angle) + v_sin = torch.sin(angle) + #用四元组表示三维旋转,有时间看一下××××××××× + quat = torch.cat([v_cos, v_sin * normalized], dim = 1) + + return quat2mat(quat) + +def smooth_global_rot_matrix(pred_rots, OE_filter): + rot_mat = batch_rodrigues(pred_rots[None]).squeeze(0) + smoothed_rot_mat = OE_filter.process(rot_mat) + smoothed_rot = rotation_matrix_to_angle_axis(smoothed_rot_mat.reshape(1,3,3)).reshape(-1) + return smoothed_rot + +def create_OneEuroFilter(smooth_coeff): + return {'poses': OneEuroFilter(smooth_coeff, 0.7), 'cam': OneEuroFilter(1.6, 0.7), 'betas': OneEuroFilter(0.6, 0.7), 'global_orient': OneEuroFilter(smooth_coeff, 0.7)} + +def smooth_results(global_orientation, body_pose, body_shape, is_right, cam=None): + filters = {} + filters[0] = create_OneEuroFilter(smooth_coeff=1) + filters[1] = create_OneEuroFilter(smooth_coeff=1) + # print(global_orientation.shape, body_pose.shape, body_shape.shape, is_right.shape, cam.shape) + + for idx in range(len(global_orientation)): + for time in range(len(global_orientation[0])): + # print('!!!!!!!!! running temporal smooth') + handedness = int(is_right[idx, time]) + global_orientation[idx, time] = smooth_global_rot_matrix(global_orientation[idx, time], filters[handedness]['global_orient']) + body_pose[idx, time] = filters[handedness]['poses'].process(body_pose[idx, time].reshape(45)).reshape(15, 3) + if cam is not None: + cam[idx, time] = filters[handedness]['cam'].process(cam[idx, time]) + + return global_orientation, body_pose, body_shape, cam + +''' +learn from the minimal hand https://github.com/CalciferZh/minimal-hand +''' +class LowPassFilter: + def __init__(self): + self.prev_raw_value = None + self.prev_filtered_value = None + + def process(self, value, alpha): + if self.prev_raw_value is None: + s = value + else: + s = alpha * value + (1.0 - alpha) * self.prev_filtered_value + self.prev_raw_value = value + self.prev_filtered_value = s + return s + +class OneEuroFilter: + def __init__(self, mincutoff=1.0, beta=0.0, dcutoff=1.0, freq=30): + # min_cutoff: Decreasing the minimum cutoff frequency decreases slow speed jitter + # beta: Increasing the speed coefficient(beta) decreases speed lag. + self.freq = freq + self.mincutoff = mincutoff + self.beta = beta + self.dcutoff = dcutoff + self.x_filter = LowPassFilter() + self.dx_filter = LowPassFilter() + + def compute_alpha(self, cutoff): + te = 1.0 / self.freq + tau = 1.0 / (2 * np.pi * cutoff) + return 1.0 / (1.0 + tau / te) + + def process(self, x, print_inter=False): + prev_x = self.x_filter.prev_raw_value + dx = 0.0 if prev_x is None else (x - prev_x) * self.freq + edx = self.dx_filter.process(dx, self.compute_alpha(self.dcutoff)) + + if isinstance(edx, float): + cutoff = self.mincutoff + self.beta * np.abs(edx) + elif isinstance(edx, np.ndarray): + cutoff = self.mincutoff + self.beta * np.abs(edx) + elif isinstance(edx, torch.Tensor): + cutoff = self.mincutoff + self.beta * torch.abs(edx) + if print_inter: + print(self.compute_alpha(cutoff)) + return self.x_filter.process(x, self.compute_alpha(cutoff)) \ No newline at end of file diff --git a/examples/mano_hand_retargeter/vis/viewer.py b/examples/mano_hand_retargeter/vis/viewer.py new file mode 100644 index 000000000..ce75a06d0 --- /dev/null +++ b/examples/mano_hand_retargeter/vis/viewer.py @@ -0,0 +1,672 @@ +import os +import imageio +import numpy as np + +import time +import torch +import trimesh + +os.environ["PYOPENGL_PLATFORM"] = "egl" + +import pyrender +from pyrender.constants import RenderFlags +from pyrender.light import DirectionalLight +from pyrender.node import Node + +from geometry.camera import make_rotation, make_translation +from .tools import ( + read_image, + checkerboard_geometry, + camera_marker_geometry, + transform_pyrender, +) + + +def init_viewer( + img_size, intrins, vis_scale=1.0, bg_paths=None, fps=30, +): + img_size = int(vis_scale * img_size[0]), int(vis_scale * img_size[1]) + intrins = vis_scale * intrins + + platform = os.environ.get("PYOPENGL_PLATFORM", "pyglet") + if platform == "pyglet": + vis = AnimationViewer(img_size, intrins=intrins, fps=fps) + print("VIS", vis) + return vis + + if platform != "egl": + raise NotImplementedError + + vis = OffscreenAnimation(img_size, intrins=intrins, fps=fps) + if bg_paths is not None: + bg_imgs = [ + read_image(p, scale=vis_scale).astype(np.float32) / 255 for p in bg_paths + ] + vis.set_bg_seq(bg_imgs) + print("VIS", vis) + return vis + + +class AnimationBase(object): + """ + Render an animation + IMPORTANT: pyrender uses coordinates with Y UP (i.e. xyz = right up back), + we must keep this in mind because the human prior frame has Z UP (i.e. + xyz = right forward up) + """ + + def __init__(self, img_size, intrins=None): + self.scene = pyrender.Scene( + ambient_light=[0.3, 0.3, 0.3], bg_color=[1.0, 1.0, 1.0, 0.0] + ) + self.scene.bg_color = np.array([1.0, 1.0, 1.0, 0.0]) + + self.viewport_size = img_size + self.camera = make_pyrender_camera(img_size, intrins) + + # set the ground with Z up + self.ground_pose = np.eye(4) + ground = pyrender.Mesh.from_trimesh( + make_checkerboard(color0=[0.9, 0.95, 1.0], color1=[0.7, 0.8, 0.85], up="y", alpha=1.0), smooth=False + ) + self.ground_node = self.scene.add(ground, name="ground", pose=self.ground_pose) + self.cam_node = self.scene.add(self.camera, name="camera") + + self.cam_marker_node = None + self.cam_marker_poses = [] + + self.light_nodes = [] + self.light_poses = [] + + self.bg_seq = [] + + # pyrender nodes, reused between frames + self.anim_nodes = [] + # list of meshes per frame of animation + self.anim_meshes = [] + # list of camera poses per frame of animation + self.anim_cameras = None + # current timestep of animation + self.anim_idx = 0 + + def acquire_lock(self): + pass + + def release_lock(self): + pass + + def close(self): + pass + + def delete(self): + pass + + def clear_meshes(self): + self.anim_meshes = [] + self.anim_idx = 0 + + @property + def anim_len(self): + return len(self.anim_meshes) + + def add_lighting(self, color=np.ones(3), intensity=1.0): + self.light_poses = get_light_poses() + self.light_poses.append(np.eye(4)) + cam_pose = self.scene.get_pose(self.cam_node) + for i, pose in enumerate(self.light_poses): + matrix = cam_pose @ pose + node = Node( + name=f"light-{i:02d}", + light=DirectionalLight(color=color, intensity=intensity), + matrix=matrix, + ) + if self.scene.has_node(node): + continue + self.scene.add_node(node) + self.light_nodes.append(node) + + def add_mesh_frame(self, meshes, debug=False): + """ + :param meshes (list) trimesh meshes for this frame timestep + """ + meshes = [pyrender.Mesh.from_trimesh(m) for m in meshes] + num_nodes = len(meshes) + self.anim_meshes.append(meshes) + + if num_nodes > len(self.anim_nodes): + # need to add a node in the pyrender scene + self.acquire_lock() + for i in range(len(self.anim_nodes), num_nodes): + self.anim_nodes.append(self.scene.add(meshes[i], name=f"mesh_{i:03d}")) + self.release_lock() + + def add_static_meshes(self, meshes, smooth=True): + """ + add all meshes to a single frame (timestep) + """ + meshes = [pyrender.Mesh.from_trimesh(m, smooth=smooth) for m in meshes] + if len(self.anim_meshes) < 1: + self.anim_meshes.append([]) + self.anim_meshes[0].extend(meshes) + num_meshes = len(self.anim_meshes[0]) + num_nodes = len(self.anim_nodes) + if num_meshes > num_nodes: + # need to add a node in the pyrender scene + self.acquire_lock() + self.anim_nodes.extend( + [ + self.scene.add(self.anim_meshes[0][i]) + for i in range(num_nodes, num_meshes) + ] + ) + self.release_lock() + + def set_camera_seq(self, poses): + """ + :param poses (*, 4, 4) + """ + poses = transform_pyrender(poses) + poses = np.asarray(poses) + assert poses.ndim >= 2 and poses.shape[-2:] == (4, 4) + if poses.ndim < 3: + poses = poses[None] + print(f"Adding camera sequence length {len(poses)}") + self.anim_cameras = poses + + def add_camera_markers(self, poses): + """ + Add a single camera marker node that we move around when we animate + """ + print("ADDING CAMERA MARKERS") + if self.cam_marker_node is None: + cam_marker = make_camera_marker(up="y") + self.cam_marker_node = self.scene.add( + pyrender.Mesh.from_trimesh(cam_marker, smooth=False) + ) + poses = transform_pyrender(poses) + poses = np.asarray(poses) + self.cam_marker_poses = poses + + def add_camera_markers_static(self, poses): + """ + Add all camera markers as separate mesh nodes to render in one pass + """ + print("ADDING STATIC CAMERA MARKERS") + poses = transform_pyrender(poses) + poses = np.asarray(poses) + cam_meshes = [make_camera_marker(up="y", transform=pose) for pose in poses] + self.add_static_meshes(cam_meshes, smooth=False) + + def update_camera(self, cam_pose): + self.acquire_lock() + self.scene.set_pose(self.cam_node, pose=cam_pose) + self.release_lock() + + def set_ground(self, pose): + pose = transform_pyrender(pose) + print("Setting ground pose to be", pose) + self.ground_pose = np.asarray(pose) + self.scene.set_pose(self.ground_node, pose=self.ground_pose) + + def set_bg_seq(self, bg_imgs): + pass + + def set_mesh_visibility(self, vis): + self.acquire_lock() + for node in self.anim_nodes: + node.mesh.is_visible = vis + self.release_lock() + + def check_mesh_visibility(self): + for node in self.anim_nodes: + if node.mesh.is_visible: + return True + + if self.ground_node.mesh.is_visible: + return True + + if self.cam_marker_node is not None and self.cam_marker_node.mesh.is_visible: + return True + + return False + + def update_frame(self): + t = self.anim_idx % self.anim_len + + # update camera + if self.anim_cameras is not None: + cam_t = min(t, len(self.anim_cameras) - 1) + cam_pose = self.anim_cameras[cam_t] + self.update_camera(cam_pose) + if self.cam_marker_node is not None and t < len(self.cam_marker_poses): + self.acquire_lock() + self.scene.set_pose(self.cam_marker_node, self.cam_marker_poses[t]) + self.release_lock() + + # update meshes + meshes = self.anim_meshes[t] + self.acquire_lock() + for i, node in enumerate(self.anim_nodes): + if i < len(meshes): + node.mesh = meshes[i] + node.mesh.is_visible = True + else: + node.mesh.is_visible = False + self.release_lock() + + +class OffscreenAnimation(AnimationBase): + def __init__(self, img_size, intrins=None, fps=30, ext="mp4"): + super().__init__(img_size, intrins=intrins) + self.add_lighting(0.9) + + self.fps = fps + self.ext = ext + self.viewer = pyrender.OffscreenRenderer(*self.viewport_size) + + self.bg_seq = [] + self.keypoints_seq = None # Store GT 2D keypoints for overlay + self.pred_keypoints_seq = None # Store predicted 2D keypoints + + def set_bg_seq(self, bg_imgs): + assert isinstance(bg_imgs, list) + print(f"setting length {len(bg_imgs)} bg sequence") + self.bg_seq = bg_imgs + + def set_keypoints_seq(self, keypoints_seq): + """ + Set GT 2D keypoints sequence for overlay visualization + Args: + keypoints_seq: List of (J, 3) arrays with [x, y, confidence] for each frame + """ + self.keypoints_seq = keypoints_seq + print(f"setting length {len(keypoints_seq)} GT keypoints sequence") + + def set_pred_keypoints_seq(self, pred_keypoints_seq): + """ + Set predicted 2D keypoints sequence + Args: + pred_keypoints_seq: List of (J, 2) arrays with [x, y] for each frame + """ + self.pred_keypoints_seq = pred_keypoints_seq + print(f"setting length {len(pred_keypoints_seq)} predicted keypoints sequence") + + def delete(self): + self.viewer.delete() + + def close(self): + self.delete() + + def draw_keypoints_on_image(self, img, keypoints, radius=4, color=(0, 255, 0), thickness=-1, conf_threshold=0.3): + """ + Draw 2D keypoints on an image + Args: + img: numpy array (H, W, 3) + keypoints: (J, 3) array with [x, y, confidence] + radius: circle radius for keypoints + color: BGR color tuple + thickness: -1 for filled circles + conf_threshold: minimum confidence to draw keypoint + Returns: + img with keypoints drawn + """ + import cv2 + img = img.copy() + for j in range(keypoints.shape[0]): + x, y, conf = keypoints[j] + if conf > conf_threshold: + # Draw circle at keypoint location + cv2.circle(img, (int(x), int(y)), radius, color, thickness) + return img + + def render( + self, render_bg=True, render_ground=True, render_cam=True, fac=1.0, render_keypoints=False, **kwargs + ): + flags = RenderFlags.RGBA | RenderFlags.SHADOWS_DIRECTIONAL + self.ground_node.mesh.is_visible = render_ground and (not render_bg) + if self.cam_marker_node is not None: + self.cam_marker_node.mesh.is_visible = render_cam + + rgba = np.zeros((*self.viewport_size[::-1], 4)) + if self.check_mesh_visibility(): # if any meshes are visible + rgba, _ = self.viewer.render(self.scene, flags=flags) + + img = rgba + if render_bg and len(self.bg_seq) > 0: + t = min(self.anim_idx, len(self.bg_seq) - 1) + bg = self.bg_seq[t] + rgba = rgba.astype(np.float32) / 255 + alpha = fac * rgba[..., 3:] + img = alpha * rgba[..., :3] + (1 - alpha) * bg + img = (255 * img).astype(np.uint8) + + # Overlay 2D keypoints if available and requested + if render_keypoints and render_bg: + # Draw GT keypoints in GREEN (larger) + if self.keypoints_seq is not None: + t = min(self.anim_idx, len(self.keypoints_seq) - 1) + keypoints = self.keypoints_seq[t] + if keypoints is not None and len(keypoints) > 0: + img = self.draw_keypoints_on_image(img, keypoints, color=(0, 255, 0), radius=5) + + # Draw predicted keypoints in RED (smaller) + if self.pred_keypoints_seq is not None: + t = min(self.anim_idx, len(self.pred_keypoints_seq) - 1) + pred_kp = self.pred_keypoints_seq[t] + if pred_kp is not None and len(pred_kp) > 0: + # Add confidence=1.0 if only (J, 2) + if pred_kp.ndim == 2 and pred_kp.shape[1] == 2: + pred_kp = np.concatenate([pred_kp, np.ones((len(pred_kp), 1))], axis=1) + img = self.draw_keypoints_on_image(img, pred_kp, color=(0, 0, 255), radius=3, conf_threshold=0.0) + + return img + + def render_mesh_layers(self, render_ground=True, render_cam=True, **kwargs): + # render each mesh in its own layer + flags = RenderFlags.RGBA | RenderFlags.SHADOWS_DIRECTIONAL + render_cam = render_cam and self.cam_marker_node is not None + + # current timestep + t = self.anim_idx % self.anim_len + meshes = self.anim_meshes[t] + layers = [] + + # toggle ground and camera + self.ground_node.mesh.is_visible = False + if self.cam_marker_node is not None: + self.cam_marker_node.mesh.is_visible = False + + # render animation meshes for current timestep + for i in range(len(meshes)): + for j, node in enumerate(self.anim_nodes): + if i == j: + node.mesh.is_visible = True + else: + node.mesh.is_visible = False + rgba, _ = self.viewer.render(self.scene, flags=flags) + layers.append(rgba) + + if not render_ground and not render_cam: + return layers + + # render the ground and camera + for node in self.anim_nodes: + node.mesh.is_visible = False + + if render_cam: + self.cam_marker_node.mesh.is_visible = render_cam + rgba, _ = self.viewer.render(self.scene, flags=flags) + layers.append(rgba) + self.cam_marker_node.mesh.is_visible = False + + if render_ground: + self.ground_node.mesh.is_visible = render_ground + rgba, _ = self.viewer.render(self.scene, flags=flags) + layers.append(rgba) + + return layers + + def render_frames_layers(self): + frames_layers = [] + for t in range(self.anim_len): + self.anim_idx = t + self.update_frame() + layers = self.render_mesh_layers() + frames_layers.append(layers) + return frames_layers + + def animate(self, save_name, save_frames=False, render_layers=False, **kwargs): + if render_layers: + frames_layers = self.render_frames_layers() + os.makedirs(save_name, exist_ok=True) + for t, layers in enumerate(frames_layers): + for l, layer in enumerate(layers): + path = f"{save_name}/{t:06d}_{l:03d}.png" + imageio.imwrite(path, layer) + print(f"saved frame layers to {save_name}") + return save_name + + frames = self.render_frames(**kwargs) + if len(frames) > 1: + if save_frames: + os.makedirs(save_name, exist_ok=True) + for i, frame in enumerate(frames): + path = f"{save_name}/{i:06d}.png" + imageio.imwrite(path, frame) + return save_name + save_path = f"{save_name}.{self.ext}" + os.makedirs(save_name, exist_ok=True) + for idx, i in enumerate(frames): + imageio.imwrite(f"{save_name}/" + f'{str(idx).zfill(6)}.jpg', i[:, :, :3]) + imageio.mimwrite(save_path, frames, fps=self.fps) + print("wrote video to", save_path) + return save_path + + save_path = f"{save_name}.png" + imageio.imwrite(save_path, frames[0]) + print("wrote image to", save_path) + return save_path + + def render_frames(self, **kwargs): + print("ANIMATION LENGTH", self.anim_len) + frames = [] + for t in range(self.anim_len): + self.anim_idx = t + self.update_frame() + img = self.render(**kwargs) + frames.append(img) + return frames + + def render_layers(self, save_dir, composite=False, fac=0.4): + os.makedirs(save_dir, exist_ok=True) + + # render all frames + frames = self.render_frames(render_bg=False, render_ground=False) + + # render background + self.set_mesh_visibility(False) + bg_img = self.render(render_bg=False, render_ground=True) / 255 + + # save frames + for t, frame in enumerate(frames): + imageio.imwrite(f"{save_dir}/{t:06d}.png", frame) + imageio.imwrite(f"{save_dir}/background.png", bg_img) + + if composite: + rgba = composite_layers(frames, bg_img, fac=fac) + imageio.imwrite(f"{save_dir}/composite.png", (255 * rgba).astype(np.uint8)) + + +def composite_layers(frames, bg_img, fac=0.4): + # composite front to back + H, W = frames[0].shape[:2] + comp = np.zeros((H, W, 3)) + vis = np.ones((H, W, 1)) + for frame in frames: + frame = frame / 255 + alpha = fac * frame[..., 3:] + comp += vis * alpha * frame[..., :3] + vis *= 1 - alpha + + comp += vis * bg_img[..., 3:] * bg_img[..., :3] + vis *= 1 - bg_img[..., 3:] + return comp + vis + rgba = np.concatenate([comp, 1 - vis], axis=-1) + return rgba + + +class AnimationViewer(AnimationBase): + def __init__(self, img_size, intrins=None, fps=30, num_repeats=1): + super().__init__(img_size, intrins=intrins) + + self.fps = fps + self.ext = "gif" + + def pause_play_callback(_, viewer): + viewer.is_paused = not viewer.is_paused + + def step_callback(_, viewer, step): + viewer.anim_idx = (viewer.anim_idx + step) % viewer.anim_len + + def stop_callback(_, viewer): + viewer.do_animate = False + + def loop_callback(_, viewer): + viewer.num_repeats *= -1 + + registered_keys = { + "p": (pause_play_callback, [self]), + ".": (step_callback, [self, 1]), + ",": (step_callback, [self, -1]), + "l": (loop_callback, [self]), + "s": (stop_callback, [self]), + } + + self.viewer = pyrender.Viewer( + self.scene, + run_in_thread=True, + viewport_size=self.viewport_size, + use_raymond_lighting=True, + registered_keys=registered_keys, + ) + + self.num_repeats = num_repeats + self.do_animate = False + self.is_paused = False + + def acquire_lock(self): + self.viewer.render_lock.acquire() + + def release_lock(self): + self.viewer.render_lock.release() + + def close(self): + self.viewer.close_external() + + def animate(self, save_name=None, **kwargs): + print("===================") + print(f"PLAYING ANIMATION {self.num_repeats} TIMES") + print("VIEWER CONTROLS:") + print("p\tpause/play") + print("l\tloop/unloop") + print(".\tstep forward") + print(",\tstep backward") + print("s\tstop") + print("===================") + + self.anim_idx = 0 + self.do_animate = True + frame_dur = 1 / self.fps + if save_name is not None: + self.viewer.viewer_flags["record"] = True + + # set up initial frame + self.update_frame() + + while self.do_animate: + if self.is_paused: + self.update_frame() + continue + + if ( + self.num_repeats > 0 + and self.anim_idx >= self.num_repeats * self.anim_len + ): + break + + if save_name is not None and self.anim_idx >= self.anim_len: + self.viewer.viewer_flags["record"] = False + + start_time = time.time() + self.update_frame() + render_time = time.time() - start_time + + self.anim_idx += 1 + sleep_time = frame_dur - render_time + if sleep_time > 0: + time.sleep(sleep_time) + + if save_name is not None: + print(f"SAVING RECORDING TO {save_name}") + self.viewer.save_gif(f"{save_name}.{self.ext}") + + +def make_checkerboard( + length=25.0, + color0=[0.8, 0.9, 0.9], + color1=[0.6, 0.7, 0.7], + tile_width=0.5, + alpha=1.0, + up="y", +): + v, f, _, fc = checkerboard_geometry(length, color0, color1, tile_width, alpha, up) + return trimesh.Trimesh(v, f, face_colors=fc, process=False) + + +def make_pyrender_camera(img_size, intrins=None): + if intrins is not None: + print("USING INTRINSICS CAMERA", intrins) + fx, fy, cx, cy = intrins + return pyrender.IntrinsicsCamera(fx, fy, cx, cy) + + W, H = img_size + focal = 0.5 * (H + W) + yfov = 2 * np.arctan(0.5 * H / focal) + print("USING PERSPECTIVE CAMERA", H, W, focal) + return pyrender.PerspectiveCamera(yfov=yfov, aspectRatio=W / H) + + +def make_camera_marker(radius=0.1, height=0.2, up="y", transform=None): + """ + :param radius (default 0.1) radius of pyramid base, diagonal of image plane + :param height (default 0.2) height of pyramid, focal length + :param up (default y) camera up vector + :param transform (default None) (4, 4) cam to world transform + """ + verts, faces, face_colors = camera_marker_geometry(radius, height, up) + if transform is not None: + assert transform.shape == (4, 4) + verts = ( + np.einsum("ij,nj->ni", transform[:3, :3], verts) + transform[None, :3, 3] + ) + return trimesh.Trimesh(verts, faces, face_colors=face_colors, process=False) + + +def get_light_poses(n_lights=5, elevation=np.pi / 3, dist=12): + # get lights in a circle around origin at elevation + thetas = elevation * np.ones(n_lights) + phis = 2 * np.pi * np.arange(n_lights) / n_lights + poses = [] + trans = make_translation(torch.tensor([0, 0, dist])) + for phi, theta in zip(phis, thetas): + rot = make_rotation(rx=-theta, ry=phi, order="xyz") + poses.append((rot @ trans).numpy()) + return poses + + +def get_raymond_light_poses(up="z"): + thetas = np.pi * np.ones(3) / 6 + phis = 2 * np.pi * np.arange(3) / 3 + + poses = [] + + for phi, theta in zip(phis, thetas): + xp = np.sin(theta) * np.cos(phi) + yp = np.sin(theta) * np.sin(phi) + zp = np.cos(theta) + + if up == "y": + z = np.array([xp, zp, -yp]) + else: + z = np.array([xp, yp, zp]) + z = z / np.linalg.norm(z) + x = np.array([-z[1], z[0], 0.0]) + if np.linalg.norm(x) == 0: + x = np.array([1.0, 0.0, 0.0]) + x = x / np.linalg.norm(x) + y = np.cross(z, x) + + matrix = np.eye(4) + matrix[:3, :3] = np.c_[x, y, z] + poses.append(matrix) + return poses diff --git a/examples/mano_hand_retargeter/vis_mano_params.py b/examples/mano_hand_retargeter/vis_mano_params.py new file mode 100644 index 000000000..d95fac7d2 --- /dev/null +++ b/examples/mano_hand_retargeter/vis_mano_params.py @@ -0,0 +1,807 @@ +#!/usr/bin/env python3 +""" +Visualize what's inside MANO pose/shape parameters and what MANO outputs. + +Supports two common input modes: + 1) Dyn-HaMR results: point at a phase directory that contains "*_results.npz" + (e.g. /smooth_fit/). We'll load the latest "world" results. + 2) A standalone .npz/.pkl with MANO parameters (betas, global_orient/root_orient, + hand_pose/body_pose, transl/trans). + +Outputs: + - A text summary of tensor shapes / basic stats + - Plots showing pose/shape over time (if T>1) + - A rendered PNG of the MANO mesh + joints for a chosen frame + - Optionally exports a GLB scene for interactive inspection +""" + +import os +import sys +import argparse +from dataclasses import dataclass +from typing import Any, Dict, Optional, Tuple + +import numpy as np +import torch + +# Make imports work whether run from repo root or from inside dyn-hamr/ +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) +if THIS_DIR not in sys.path: + sys.path.insert(0, THIS_DIR) + +# Offscreen rendering defaults +if "PYOPENGL_PLATFORM" not in os.environ: + os.environ["PYOPENGL_PLATFORM"] = "egl" + +import matplotlib + +matplotlib.use("Agg") # headless +import matplotlib.pyplot as plt +import trimesh + +from omegaconf import OmegaConf + +from body_model import MANO +from body_model.utils import run_mano +from util.loaders import resolve_cfg_paths +from optim.output import get_results_paths, load_result +from vis.viewer import init_viewer +from geometry.mesh import save_meshes_to_glb + + +OPENPOSE_HAND_EDGES = [ + (0, 1), + (1, 2), + (2, 3), + (3, 4), # thumb + (0, 5), + (5, 6), + (6, 7), + (7, 8), # index + (0, 9), + (9, 10), + (10, 11), + (11, 12), # middle + (0, 13), + (13, 14), + (14, 15), + (15, 16), # ring + (0, 17), + (17, 18), + (18, 19), + (19, 20), # pinky +] + +# OpenXR joint order used by IsaacLab (`isaaclab.devices.openxr.common.HAND_JOINT_NAMES`) +HAND_JOINT_NAMES = [ + # Palm + "palm", + # Wrist + "wrist", + # Thumb + "thumb_metacarpal", + "thumb_proximal", + "thumb_distal", + "thumb_tip", + # Index + "index_metacarpal", + "index_proximal", + "index_intermediate", + "index_distal", + "index_tip", + # Middle + "middle_metacarpal", + "middle_proximal", + "middle_intermediate", + "middle_distal", + "middle_tip", + # Ring + "ring_metacarpal", + "ring_proximal", + "ring_intermediate", + "ring_distal", + "ring_tip", + # Little + "little_metacarpal", + "little_proximal", + "little_intermediate", + "little_distal", + "little_tip", +] + + +def openpose21_to_openxr26_joints(j21: np.ndarray, metacarpal_alpha: float = 0.3) -> np.ndarray: + """ + Convert OpenPose-21 hand joints to OpenXR-26 joint positions (HAND_JOINT_NAMES order). + + OpenPose order assumed: + 0 wrist + 1-4 thumb (CMC, MCP, IP, TIP) + 5-8 index (MCP, PIP, DIP, TIP) + 9-12 middle + 13-16 ring + 17-20 little + """ + j21 = np.asarray(j21, dtype=np.float32) + if j21.shape != (21, 3): + raise ValueError(f"Expected joints shape (21,3); got {tuple(j21.shape)}") + + wrist = j21[0] + thumb = j21[1:5] + index = j21[5:9] + middle = j21[9:13] + ring = j21[13:17] + little = j21[17:21] + + # Approximate palm by mean of MCPs (OpenPose doesn't have palm) + palm = np.mean(np.stack([index[0], middle[0], ring[0], little[0]], axis=0), axis=0) + + def metacarpal_from_mcp(mcp: np.ndarray) -> np.ndarray: + return wrist + float(metacarpal_alpha) * (mcp - wrist) + + out = {} + out["palm"] = palm + out["wrist"] = wrist + + # Thumb already has a "metacarpal" in OpenPose indexing + out["thumb_metacarpal"] = thumb[0] + out["thumb_proximal"] = thumb[1] + out["thumb_distal"] = thumb[2] + out["thumb_tip"] = thumb[3] + + # For other fingers, OpenXR has an extra "metacarpal" joint between wrist and MCP + out["index_metacarpal"] = metacarpal_from_mcp(index[0]) + out["index_proximal"] = index[0] + out["index_intermediate"] = index[1] + out["index_distal"] = index[2] + out["index_tip"] = index[3] + + out["middle_metacarpal"] = metacarpal_from_mcp(middle[0]) + out["middle_proximal"] = middle[0] + out["middle_intermediate"] = middle[1] + out["middle_distal"] = middle[2] + out["middle_tip"] = middle[3] + + out["ring_metacarpal"] = metacarpal_from_mcp(ring[0]) + out["ring_proximal"] = ring[0] + out["ring_intermediate"] = ring[1] + out["ring_distal"] = ring[2] + out["ring_tip"] = ring[3] + + out["little_metacarpal"] = metacarpal_from_mcp(little[0]) + out["little_proximal"] = little[0] + out["little_intermediate"] = little[1] + out["little_distal"] = little[2] + out["little_tip"] = little[3] + + missing = [k for k in HAND_JOINT_NAMES if k not in out] + if missing: + raise RuntimeError(f"Internal error: missing OpenXR joints: {missing}") + + return np.stack([out[n] for n in HAND_JOINT_NAMES], axis=0).astype(np.float32) + + +@dataclass +class ManoParams: + trans: torch.Tensor # (B,T,3) + root_orient: torch.Tensor # (B,T,3) + hand_pose: torch.Tensor # (B,T,45) or (B,T,15,3) + betas: Optional[torch.Tensor] = None # (B,D) + is_right: Optional[torch.Tensor] = None # (B,T) in {0,1} + + +def _to_numpy(x: Any) -> np.ndarray: + if isinstance(x, np.ndarray): + return x + if torch.is_tensor(x): + return x.detach().cpu().numpy() + return np.asarray(x) + + +def _as_torch(x: Any, device: torch.device, dtype=torch.float32) -> torch.Tensor: + if x is None: + return None + if torch.is_tensor(x): + return x.to(device=device, dtype=dtype) + return torch.as_tensor(x, device=device, dtype=dtype) + + +def _load_any(path: str) -> Dict[str, Any]: + if path.endswith(".npz"): + data = np.load(path, allow_pickle=True) + # Common Dyn-HaMR convention: a single pickled dict stored under "world" (or similar) + # in files like "*_world_results.npz". + def _maybe_unwrap_pickled_dict(key: str) -> Optional[Dict[str, Any]]: + if key not in data.files: + return None + arr = data[key] + # A pickled python object is typically stored as a 0-d numpy array. + if getattr(arr, "shape", None) == (): + try: + obj = arr.item() + except Exception: + return None + if isinstance(obj, dict): + # Sometimes we get {"world": {...}} nested one more level. + if "world" in obj and isinstance(obj["world"], dict): + return obj["world"] + return obj + return None + + for k in ["world", "results", "data", "output"]: + d = _maybe_unwrap_pickled_dict(k) + if d is not None: + return d + + return {k: data[k] for k in data.files} + if path.endswith(".npy"): + return {"array": np.load(path, allow_pickle=True)} + if path.endswith(".pkl") or path.endswith(".pickle"): + import pickle + + with open(path, "rb") as f: + obj = pickle.load(f) + if isinstance(obj, dict): + return obj + return {"object": obj} + raise ValueError(f"Unsupported input file: {path}") + + +def _pick(d: Dict[str, Any], keys) -> Optional[Any]: + for k in keys: + if k in d: + return d[k] + return None + + +def _ensure_bt3(x: torch.Tensor, name: str) -> torch.Tensor: + # Accept (T,3), (B,T,3), (B,3), (3,) + if x.ndim == 1 and x.shape[0] == 3: + x = x[None, None, :] + elif x.ndim == 2 and x.shape[-1] == 3: + # assume (T,3) or (B,3) + if x.shape[0] > 1: + x = x[None, :, :] + else: + x = x[:, None, :] + elif x.ndim == 3 and x.shape[-1] == 3: + pass + else: + raise ValueError(f"{name} must end with (...,3); got shape {tuple(x.shape)}") + return x + + +def _ensure_bt45(x: torch.Tensor, name: str) -> torch.Tensor: + # Accept (T,45), (B,T,45), (B,45), (45,), (B,T,15,3), (T,15,3) + if x.ndim == 1 and x.shape[0] == 45: + x = x[None, None, :] + elif x.ndim == 2: + if x.shape[-1] == 45: + # (T,45) or (B,45) + if x.shape[0] > 1: + x = x[None, :, :] + else: + x = x[:, None, :] + elif x.shape == (15, 3): + x = x.reshape(1, 1, 45) + else: + raise ValueError(f"{name} expected (...,45) or (15,3); got {tuple(x.shape)}") + elif x.ndim == 3: + if x.shape[-1] == 45: + x = x # (B,T,45) + elif x.shape[-2:] == (15, 3): + x = x.reshape(x.shape[0], x.shape[1], 45) + else: + raise ValueError(f"{name} expected (...,45) or (...,15,3); got {tuple(x.shape)}") + elif x.ndim == 4 and x.shape[-2:] == (15, 3): + x = x.reshape(x.shape[0], x.shape[1], 45) + else: + raise ValueError(f"{name} expected pose with 15 joints; got {tuple(x.shape)}") + return x + + +def load_mano_params_from_dynhamr_phase(phase_dir: str, device: torch.device) -> ManoParams: + res_paths = get_results_paths(phase_dir) + if len(res_paths) < 1: + raise FileNotFoundError(f"No '*_results.npz' found in: {phase_dir}") + it = sorted(res_paths.keys())[-1] + res = load_result(res_paths[it]) + if "world" not in res: + raise KeyError(f"Expected 'world' results at iteration {it}; found keys: {list(res.keys())}") + d = res["world"] + + # Common Dyn-HaMR naming + trans = _pick(d, ["trans", "transl"]) + root_orient = _pick(d, ["root_orient", "global_orient"]) + pose = _pick(d, ["pose_body", "hand_pose", "body_pose"]) + betas = _pick(d, ["betas", "shape", "body_shape"]) + is_right = _pick(d, ["is_right", "handedness"]) + + if trans is None or root_orient is None or pose is None: + raise KeyError( + f"Could not find required MANO params in world results. " + f"Need trans + root_orient + pose. Found keys: {list(d.keys())}" + ) + + trans = _ensure_bt3(_as_torch(trans, device), "trans") + root_orient = _ensure_bt3(_as_torch(root_orient, device), "root_orient") + hand_pose = _ensure_bt45(_as_torch(pose, device), "hand_pose") + + # Ensure betas is (B,D) + betas_t = None + if betas is not None: + betas_t = _as_torch(betas, device) + if betas_t.ndim == 1: + betas_t = betas_t[None, :] + elif betas_t.ndim == 2: + pass + elif betas_t.ndim == 3: + # (B,T,D) -> take first frame (usually constant) + betas_t = betas_t[:, 0, :] + else: + raise ValueError(f"betas/shape must be (D) or (B,D) or (B,T,D); got {tuple(betas_t.shape)}") + + is_right_t = None + if is_right is not None: + is_right_t = _as_torch(is_right, device, dtype=torch.float32) + # Accept (B,T), (T,), (B,) + if is_right_t.ndim == 1: + if is_right_t.shape[0] == trans.shape[1]: + is_right_t = is_right_t[None, :] + else: + is_right_t = is_right_t[:, None].expand(trans.shape[0], trans.shape[1]) + elif is_right_t.ndim == 2: + pass + else: + raise ValueError(f"is_right must be (B,T) or (T,) or (B,); got {tuple(is_right_t.shape)}") + # round to {0,1} + is_right_t = (is_right_t >= 0.5).float() + + return ManoParams(trans=trans, root_orient=root_orient, hand_pose=hand_pose, betas=betas_t, is_right=is_right_t) + + +def load_mano_params_from_file(params_path: str, device: torch.device) -> ManoParams: + d = _load_any(params_path) + + trans = _pick(d, ["trans", "transl", "t", "translation"]) + root_orient = _pick(d, ["root_orient", "global_orient", "global_orient_aa"]) + hand_pose = _pick(d, ["hand_pose", "pose", "pose_body", "body_pose"]) + betas = _pick(d, ["betas", "shape", "body_shape"]) + is_right = _pick(d, ["is_right", "handedness"]) + + if trans is None or root_orient is None or hand_pose is None: + raise KeyError( + f"params file must contain trans + root_orient/global_orient + hand_pose/pose. " + f"Found keys: {list(d.keys())}" + ) + + trans = _ensure_bt3(_as_torch(trans, device), "trans") + root_orient = _ensure_bt3(_as_torch(root_orient, device), "root_orient") + hand_pose = _ensure_bt45(_as_torch(hand_pose, device), "hand_pose") + + betas_t = None + if betas is not None: + betas_t = _as_torch(betas, device) + if betas_t.ndim == 1: + betas_t = betas_t[None, :] + elif betas_t.ndim == 2: + pass + elif betas_t.ndim == 3: + betas_t = betas_t[:, 0, :] + else: + raise ValueError(f"betas/shape must be (D) or (B,D) or (B,T,D); got {tuple(betas_t.shape)}") + + is_right_t = None + if is_right is not None: + is_right_t = _as_torch(is_right, device, dtype=torch.float32) + if is_right_t.ndim == 1: + if is_right_t.shape[0] == trans.shape[1]: + is_right_t = is_right_t[None, :] + else: + is_right_t = is_right_t[:, None].expand(trans.shape[0], trans.shape[1]) + elif is_right_t.ndim == 2: + pass + else: + raise ValueError(f"is_right must be (B,T) or (T,) or (B,); got {tuple(is_right_t.shape)}") + is_right_t = (is_right_t >= 0.5).float() + + return ManoParams(trans=trans, root_orient=root_orient, hand_pose=hand_pose, betas=betas_t, is_right=is_right_t) + + +def _write_summary(out_dir: str, params: ManoParams) -> None: + os.makedirs(out_dir, exist_ok=True) + lines = [] + lines.append("MANO PARAMETER SUMMARY\n") + lines.append(f"trans: {tuple(params.trans.shape)} dtype={params.trans.dtype} device={params.trans.device}") + lines.append(f"root_orient: {tuple(params.root_orient.shape)}") + lines.append(f"hand_pose: {tuple(params.hand_pose.shape)}") + if params.betas is not None: + lines.append(f"betas: {tuple(params.betas.shape)}") + else: + lines.append("betas: ") + if params.is_right is not None: + lines.append(f"is_right: {tuple(params.is_right.shape)} (values: {sorted(set(_to_numpy(params.is_right).reshape(-1).tolist()))[:10]})") + else: + lines.append("is_right: (assuming right hand)") + + # basic stats + def stats(name: str, x: torch.Tensor): + xnp = _to_numpy(x).reshape(-1) + return f"{name}: min={xnp.min():.4f} max={xnp.max():.4f} mean={xnp.mean():.4f} std={xnp.std():.4f}" + + lines.append("") + lines.append(stats("root_orient", params.root_orient)) + lines.append(stats("hand_pose", params.hand_pose)) + lines.append(stats("trans", params.trans)) + if params.betas is not None: + lines.append(stats("betas", params.betas)) + + with open(os.path.join(out_dir, "mano_params_summary.txt"), "w") as f: + f.write("\n".join(lines) + "\n") + + +def _plot_timeseries(out_dir: str, params: ManoParams) -> None: + os.makedirs(out_dir, exist_ok=True) + B, T, _ = params.trans.shape + # Plot only the first track by default + b = 0 + + trans = _to_numpy(params.trans[b]) # (T,3) + root = _to_numpy(params.root_orient[b]) # (T,3) + pose = _to_numpy(params.hand_pose[b]).reshape(T, 15, 3) # (T,15,3) + + # trans + root_orient + def plot_3(ts, title, path): + plt.figure(figsize=(10, 3)) + plt.plot(ts[:, 0], label="x") + plt.plot(ts[:, 1], label="y") + plt.plot(ts[:, 2], label="z") + plt.title(title) + plt.legend() + plt.tight_layout() + plt.savefig(path, dpi=150) + plt.close() + + plot_3(trans, "trans (meters, as stored) over time", os.path.join(out_dir, "trans_timeseries.png")) + plot_3(root, "root_orient axis-angle over time", os.path.join(out_dir, "root_orient_timeseries.png")) + + # Per-joint pose magnitude heatmap + mag = np.linalg.norm(pose, axis=-1) # (T,15) + plt.figure(figsize=(10, 4)) + plt.imshow(mag.T, aspect="auto", interpolation="nearest") + plt.xlabel("time") + plt.ylabel("joint index (0..14)") + plt.title("hand_pose axis-angle magnitude (rad) per joint") + plt.colorbar() + plt.tight_layout() + plt.savefig(os.path.join(out_dir, "hand_pose_magnitude_heatmap.png"), dpi=150) + plt.close() + + # Betas + if params.betas is not None: + betas = _to_numpy(params.betas[b]) # (D,) + plt.figure(figsize=(10, 3)) + plt.bar(np.arange(len(betas)), betas) + plt.title("betas (shape) coefficients") + plt.xlabel("beta index") + plt.tight_layout() + plt.savefig(os.path.join(out_dir, "betas_bar.png"), dpi=150) + plt.close() + + +def _make_joint_geometry(joints_xyz: np.ndarray, radius: float = 0.008) -> Tuple[list, list]: + """ + Build trimesh geometries for joint spheres + bone cylinders. + joints_xyz: (J,3) in same coordinate frame as the mesh. + Returns (mesh_list, names_list) + """ + meshes = [] + names = [] + + # spheres + for j in range(joints_xyz.shape[0]): + sph = trimesh.creation.icosphere(subdivisions=2, radius=radius) + sph.apply_translation(joints_xyz[j]) + sph.visual.vertex_colors = np.tile(np.array([255, 80, 80, 255], dtype=np.uint8), (len(sph.vertices), 1)) + meshes.append(sph) + names.append(f"joint_{j:02d}") + + # bones + for (a, b) in OPENPOSE_HAND_EDGES: + if a >= joints_xyz.shape[0] or b >= joints_xyz.shape[0]: + continue + p0, p1 = joints_xyz[a], joints_xyz[b] + seg = p1 - p0 + L = float(np.linalg.norm(seg)) + if L < 1e-8: + continue + cyl = trimesh.creation.cylinder(radius=radius * 0.45, height=L, sections=12) + # Align cylinder (default along +Z) to segment direction + z = np.array([0.0, 0.0, 1.0]) + v = seg / L + axis = np.cross(z, v) + axis_norm = float(np.linalg.norm(axis)) + if axis_norm < 1e-8: + R = np.eye(3) + else: + axis = axis / axis_norm + ang = float(np.arccos(np.clip(np.dot(z, v), -1.0, 1.0))) + R = trimesh.transformations.rotation_matrix(ang, axis)[:3, :3] + T = np.eye(4) + T[:3, :3] = R + T[:3, 3] = (p0 + p1) / 2.0 + cyl.apply_transform(T) + cyl.visual.vertex_colors = np.tile(np.array([80, 80, 255, 255], dtype=np.uint8), (len(cyl.vertices), 1)) + meshes.append(cyl) + names.append(f"bone_{a:02d}_{b:02d}") + + return meshes, names + + +def render_frame( + out_dir: str, + verts: torch.Tensor, + faces: torch.Tensor, + joints: torch.Tensor, + is_right: bool, + img_res: int = 512, + export_glb: bool = False, + basename: str = "mano", +): + os.makedirs(out_dir, exist_ok=True) + + v = _to_numpy(verts) + j = _to_numpy(joints) + f = _to_numpy(faces).astype(np.int64) + + # Keep the same convention as the repo viewer (pyrender is Y-up). + # geometry.mesh.make_mesh applies this flip when yup=True, so we apply it + # to BOTH vertices and joints here for consistency. + flip = np.array([1.0, -1.0, -1.0], dtype=np.float32) + v = v * flip[None, :] + j = j * flip[None, :] + + # Base hand mesh + base_color = (0.65, 0.75, 0.95) if is_right else (0.95, 0.65, 0.75) + hand_mesh = trimesh.Trimesh(vertices=v, faces=f, process=False) + hand_mesh.visual.vertex_colors = np.tile(np.array([*(np.array(base_color) * 255).astype(np.uint8), 255]), (len(hand_mesh.vertices), 1)) + + joint_meshes, joint_names = _make_joint_geometry(j) + all_meshes = [hand_mesh] + joint_meshes + all_names = ["hand_mesh"] + joint_names + + if export_glb: + save_meshes_to_glb(os.path.join(out_dir, f"{basename}.glb"), all_meshes, names=all_names) + + # Render with the repo's pyrender viewer. + # NOTE: dyn-hamr/vis/viewer.py:init_viewer assumes intrins is not None (it scales it). + # Provide a default [fx, fy, cx, cy] consistent with viewer.make_pyrender_camera fallback. + W = H = int(img_res) + focal = 0.5 * (H + W) + intrins = torch.tensor([focal, focal, 0.5 * W, 0.5 * H], dtype=torch.float32) + vis = init_viewer(img_size=(W, H), intrins=intrins, vis_scale=1.0, bg_paths=None, fps=30) + vis.clear_meshes() + vis.add_static_meshes(all_meshes, smooth=True) + img = vis.render(render_bg=False, render_ground=True, render_cam=False, fac=1.0) + vis.close() + + import imageio + + imageio.imwrite(os.path.join(out_dir, f"{basename}.png"), img[:, :, :3]) + + +def main(): + parser = argparse.ArgumentParser() + src = parser.add_mutually_exclusive_group(required=True) + src.add_argument("--phase_dir", type=str, help="Dyn-HaMR phase dir containing '*_results.npz' (e.g. .../smooth_fit/)") + src.add_argument("--params", type=str, help="Standalone params file (.npz/.pkl) with MANO pose/shape params") + + parser.add_argument("--out_dir", type=str, required=True) + parser.add_argument("--device", type=str, default="cpu") + parser.add_argument("--frame", type=int, default=0, help="Frame index to render") + parser.add_argument("--track", type=int, default=0, help="Track/person index to render") + parser.add_argument("--img_res", type=int, default=512) + parser.add_argument("--export_glb", action="store_true", help="Export a GLB scene (mesh + joints) as well") + parser.add_argument( + "--zero_global", + action="store_true", + help="If set, force MANO global translation/rotation to identity (trans=0, root_orient=0) before running MANO.", + ) + parser.add_argument( + "--center_wrist", + action="store_true", + help="If set, subtract wrist joint (joint 0) from all joints/vertices so the wrist is at the origin.", + ) + parser.add_argument( + "--print_joints", + action="store_true", + help="If set, print the MANO joint tensor and exit (useful for debugging coordinate conventions).", + ) + parser.add_argument( + "--dump_all_npz", + action="store_true", + help="If set, dump `mano_output_trackXX_frameYYYY.npz` for ALL tracks and ALL frames (no rendering).", + ) + parser.add_argument( + "--dump_openxr26", + action="store_true", + help="If set, also save OpenXR-26 joints (HAND_JOINT_NAMES order) into the dumped per-frame NPZs.", + ) + parser.add_argument( + "--openxr_metacarpal_alpha", + type=float, + default=0.3, + help="OpenXR metacarpal placement alpha: wrist + a*(MCP - wrist).", + ) + parser.add_argument( + "--dump_openxr26_seq_npz", + action="store_true", + help="If set, save one `openxr26_joints.npz` containing joints_openxr26 with shape (B,T,26,3).", + ) + + parser.add_argument( + "--cfg", + type=str, + default=os.path.join(THIS_DIR, "confs", "config.yaml"), + help="Config used to locate MANO model assets (MODEL_PATH, MEAN_PARAMS, ...)", + ) + + args = parser.parse_args() + + device = torch.device(args.device) + os.makedirs(args.out_dir, exist_ok=True) + + # Load config for MANO assets + cfg = OmegaConf.load(args.cfg) + cfg = resolve_cfg_paths(cfg) + mano_cfg = {k.lower(): v for k, v in dict(cfg.MANO).items()} + + # Load params + if args.phase_dir is not None: + params = load_mano_params_from_dynhamr_phase(args.phase_dir, device=device) + else: + params = load_mano_params_from_file(args.params, device=device) + + if args.zero_global: + # MANO conventions: `root_orient` is axis-angle (global orientation), `trans` is global translation. + # Setting both to zero yields a canonical hand in the MANO frame (no global rotation/translation). + params.trans = torch.zeros_like(params.trans) + params.root_orient = torch.zeros_like(params.root_orient) + + _write_summary(args.out_dir, params) + if params.trans.shape[1] > 1: + _plot_timeseries(args.out_dir, params) + + # Instantiate MANO and run forward for all frames (matches repo convention) + B, T, _ = params.trans.shape + hand_model = MANO(batch_size=B * T, pose2rot=True, **mano_cfg).to(device) + + is_right = params.is_right + if is_right is None: + is_right = torch.ones((B, T), device=device) + + + + out = run_mano( + hand_model, + trans=params.trans, + root_orient=params.root_orient, + body_pose=params.hand_pose, + is_right=is_right, + betas=params.betas, + ) + + if args.center_wrist: + # MANO joints are regressed in the model's canonical frame; the wrist joint is not guaranteed + # to be at (0,0,0) even when trans=0 and root_orient=0. + wrist = out["joints"][:, :, 0:1, :] # (B,T,1,3) + out["joints"] = out["joints"] - wrist + out["vertices"] = out["vertices"] - wrist + + if args.dump_openxr26_seq_npz: + joints_bt = _to_numpy(out["joints"]) # (B,T,J,3) + if joints_bt.ndim != 4 or joints_bt.shape[-2:] != (joints_bt.shape[-2], 3): + raise RuntimeError(f"Unexpected joints shape from MANO: {joints_bt.shape}") + if joints_bt.shape[2] != 21: + raise RuntimeError( + f"Expected 21 MANO/OpenPose-style hand joints to convert to OpenXR-26; got J={joints_bt.shape[2]}" + ) + B, T = joints_bt.shape[0], joints_bt.shape[1] + j26 = np.zeros((B, T, 26, 3), dtype=np.float32) + for b in range(B): + for t in range(T): + j26[b, t] = openpose21_to_openxr26_joints( + joints_bt[b, t], metacarpal_alpha=float(args.openxr_metacarpal_alpha) + ) + np.savez( + os.path.join(args.out_dir, "openxr26_joints.npz"), + joints_openxr26=j26, + joint_names_openxr26=np.asarray(HAND_JOINT_NAMES, dtype=object), + is_right=_to_numpy(is_right), + ) + + if args.print_joints: + print(out["joints"]) + return + + if args.dump_all_npz: + # Dump all tracks + frames without rendering (fast path for downstream retargeting). + for b in range(B): + for t in range(T): + verts_bt = out["vertices"][b, t] # (V,3) + joints_bt = out["joints"][b, t] # (J,3) + + faces = out["r_faces"] if bool(is_right[b, t].item()) else out["l_faces"] + faces = faces.to(device=device) + + extra = {} + if args.dump_openxr26: + j21 = _to_numpy(joints_bt) + j26 = openpose21_to_openxr26_joints(j21, metacarpal_alpha=float(args.openxr_metacarpal_alpha)) + extra["joints_openxr26"] = j26 # (26,3) + extra["joint_names_openxr26"] = np.asarray(HAND_JOINT_NAMES, dtype=object) + + np.savez( + os.path.join(args.out_dir, f"mano_output_track{b:02d}_frame{t:04d}.npz"), + vertices=_to_numpy(verts_bt), + joints=_to_numpy(joints_bt), + faces=_to_numpy(faces), + trans=_to_numpy(params.trans[b, t]), + root_orient=_to_numpy(params.root_orient[b, t]), + hand_pose=_to_numpy(params.hand_pose[b, t]), + betas=_to_numpy(params.betas[b]) if params.betas is not None else None, + is_right=float(is_right[b, t].item()), + **extra, + ) + print(f"Wrote {B*T} MANO output npz files to: {args.out_dir}") + return + + # Default behavior: render + dump a single (track, frame) + b = int(np.clip(args.track, 0, B - 1)) + t = int(np.clip(args.frame, 0, T - 1)) + + verts_bt = out["vertices"][b, t] # (V,3) + joints_bt = out["joints"][b, t] # (J,3) + + faces = out["r_faces"] if bool(is_right[b, t].item()) else out["l_faces"] + faces = faces.to(device=device) + + render_frame( + args.out_dir, + verts=verts_bt, + faces=faces, + joints=joints_bt, + is_right=bool(is_right[b, t].item()), + img_res=args.img_res, + export_glb=args.export_glb, + basename=f"mano_track{b:02d}_frame{t:04d}", + ) + + # Also dump raw MANOOutput-like arrays for downstream inspection + np.savez( + os.path.join(args.out_dir, f"mano_output_track{b:02d}_frame{t:04d}.npz"), + vertices=_to_numpy(verts_bt), + joints=_to_numpy(joints_bt), + faces=_to_numpy(faces), + trans=_to_numpy(params.trans[b, t]), + root_orient=_to_numpy(params.root_orient[b, t]), + hand_pose=_to_numpy(params.hand_pose[b, t]), + betas=_to_numpy(params.betas[b]) if params.betas is not None else None, + is_right=float(is_right[b, t].item()), + **( + {} + if not args.dump_openxr26 + else { + "joints_openxr26": openpose21_to_openxr26_joints( + _to_numpy(joints_bt), metacarpal_alpha=float(args.openxr_metacarpal_alpha) + ), + "joint_names_openxr26": np.asarray(HAND_JOINT_NAMES, dtype=object), + } + ), + ) + + +if __name__ == "__main__": + main() + + diff --git a/requirements-venv_isaac.txt b/requirements-venv_isaac.txt new file mode 100644 index 000000000..c5f9e843f --- /dev/null +++ b/requirements-venv_isaac.txt @@ -0,0 +1,172 @@ +aioboto3==15.1.0 +aiobotocore==2.24.0 +aiodns==3.1.1 +aiofiles==23.2.1 +aiohappyeyeballs==2.4.4 +aiohttp==3.11.11 +aioitertools==0.11.0 +aiosignal==1.3.2 +annotated-types==0.7.0 +antlr4-python3-runtime==4.9.3 +anyio==4.12.1 +anytree==2.13.0 +asteval==1.0.6 +async-timeout==5.0.1 +attrs==25.1.0 +awscrt==0.23.8 +azure-core==1.28.0 +azure-identity==1.13.0 +azure-storage-blob==12.17.0 +boto3==1.39.11 +botocore==1.39.11 +certifi==2026.1.4 +cffi==2.0.0 +charset-normalizer==3.3.2 +chumpy @ git+https://github.com/mattloper/chumpy@580566eafc9ac68b2614b64d6f7aaa84eebb70da +click==8.1.7 +cmeel==0.57.3 +cmeel-assimp==6.0.2 +cmeel-boost==1.89.0 +cmeel-console-bridge==1.0.2.3 +cmeel-octomap==1.10.0 +cmeel-qhull==8.0.2.1 +cmeel-tinyxml2==10.0.0 +cmeel-urdfdom==4.0.1 +cmeel-zlib==1.3.1 +coal==3.0.2 +contourpy==1.3.3 +coverage==7.4.4 +cryptography==44.0.0 +cycler==0.12.1 +dex-retargeting==0.5.0 +eigenpy==3.12.0 +fastapi==0.115.7 +filelock==3.20.0 +flatdict==4.0.1 +fonttools==4.61.1 +freetype-py==2.5.1 +frozenlist==1.5.0 +fsspec==2025.12.0 +gunicorn==23.0.0 +h11==0.16.0 +h5py==3.15.1 +httptools==0.6.1 +idna==3.10 +idna-ssl==1.1.0 +imageio==2.37.0 +isaacsim==5.1.0.0 +isaacsim-app==5.1.0.0 +isaacsim-asset==5.1.0.0 +isaacsim-benchmark==5.1.0.0 +isaacsim-code-editor==5.1.0.0 +isaacsim-core==5.1.0.0 +isaacsim-cortex==5.1.0.0 +isaacsim-example==5.1.0.0 +isaacsim-extscache-kit==5.1.0.0 +isaacsim-extscache-kit-sdk==5.1.0.0 +isaacsim-extscache-physics==5.1.0.0 +isaacsim-gui==5.1.0.0 +isaacsim-kernel==5.1.0.0 +isaacsim-replicator==5.1.0.0 +isaacsim-rl==5.1.0.0 +isaacsim-robot==5.1.0.0 +isaacsim-robot-motion==5.1.0.0 +isaacsim-robot-setup==5.1.0.0 +isaacsim-ros1==5.1.0.0 +isaacsim-ros2==5.1.0.0 +isaacsim-sensor==5.1.0.0 +isaacsim-storage==5.1.0.0 +isaacsim-template==5.1.0.0 +isaacsim-test==5.1.0.0 +isaacsim-utils==5.1.0.0 +isodate==0.6.1 +jinja2==3.1.6 +jmespath==1.0.1 +kiwisolver==1.4.9 +libcoal==3.0.2 +libpinocchio==3.8.0 +llvmlite==0.42.0 +lxml==6.0.2 +markupsafe==2.1.5 +matplotlib==3.10.8 +mpmath==1.3.0 +msal==1.27.0 +msal-extensions==1.0.0 +multidict==6.1.0 +nest-asyncio==1.5.6 +networkx==3.6.1 +nlopt==2.10.0 +numba==0.59.1 +numpy==2.4.0 +nvidia-cublas-cu12==12.8.3.14 +nvidia-cuda-cupti-cu12==12.8.57 +nvidia-cuda-nvrtc-cu12==12.8.61 +nvidia-cuda-runtime-cu12==12.8.57 +nvidia-cudnn-cu12==9.7.1.26 +nvidia-cufft-cu12==11.3.3.41 +nvidia-cufile-cu12==1.13.0.11 +nvidia-curand-cu12==10.3.9.55 +nvidia-cusolver-cu12==11.7.2.55 +nvidia-cusparse-cu12==12.5.7.53 +nvidia-cusparselt-cu12==0.6.3 +nvidia-nccl-cu12==2.26.2 +nvidia-nvjitlink-cu12==12.8.61 +nvidia-nvtx-cu12==12.8.55 +oauthlib==3.2.2 +omegaconf==2.3.0 +opencv-python-headless==4.11.0.86 +osqp==0.6.7.post3 +packaging==25.0 +pillow==12.1.0 +pin==3.8.0 +pint==0.20.1 +pip==25.3 +portalocker==2.7.0 +propcache==0.2.1 +psutil==5.9.8 +pycares==4.8.0 +pycparser==2.23 +pydantic==2.11.10 +pydantic-core==2.33.2 +pyglet==2.1.11 +pyjwt==2.10.1 +pyopengl==3.1.0 +pyparsing==3.3.1 +pyperclip==1.8.0 +pypng==0.20220715.0 +pyrender==0.1.45 +python-dateutil==2.9.0.post0 +python-multipart==0.0.20 +pytransform3d==3.14.4 +pytz==2024.1 +pyyaml==6.0.3 +qdldl==0.1.7.post5 +qrcode==7.4.2 +requests==2.32.3 +requests-oauthlib==1.3.1 +rtree==1.3.0 +s3transfer==0.13.1 +scipy==1.16.3 +sentry-sdk==2.29.1 +setuptools==80.9.0 +six==1.17.0 +smplx==0.1.28 +starlette==0.45.3 +sympy==1.14.0 +teleopcore @ file:///home/lduan/Documents/IsaacTeleop/build/wheels/teleopcore-0.1.0-cp311-cp311-linux_x86_64.whl +toml==0.10.2 +torch==2.7.0+cu128 +torchaudio==2.7.0 +torchvision==0.22.0+cu128 +tornado==6.5.1 +trimesh==4.5.1 +triton==3.3.0 +typing-extensions==4.15.0 +typing-inspection==0.4.2 +urllib3==2.6.2 +uvicorn==0.29.0 +watchdog==4.0.0 +websockets==12.0 +wheel==0.45.1 +wrapt==1.16.0 +yarl==1.18.3 diff --git a/scripts/run_hand_retarget_global.sh b/scripts/run_hand_retarget_global.sh new file mode 100755 index 000000000..75a863488 --- /dev/null +++ b/scripts/run_hand_retarget_global.sh @@ -0,0 +1,74 @@ +#!/bin/bash + +# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +set -e + +# Run the Isaac Lab script +if [ -z "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH environment variable is not set. Please set it to the path of the Isaac Lab repository." + exit 1 +fi + +if [ ! -d "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH '$ISAACLAB_PATH' does not exist or is not a directory." + exit 1 +fi + +if [ ! -f "$ISAACLAB_PATH/isaaclab.sh" ]; then + echo "Error: Isaac Lab script not found in $ISAACLAB_PATH." + echo "Please make sure you have set the ISAACLAB_PATH environment variable to the path of the Isaac Lab repository." + exit 1 +fi + +cd $ISAACLAB_PATH || exit 1 + +# Make IsaacLab python package discoverable for any direct python subprocesses. +# Your layout: $ISAACLAB_PATH/source/isaaclab/isaaclab/... +export PYTHONPATH="$ISAACLAB_PATH/source/isaaclab:${PYTHONPATH}" + +# IsaacLab's `isaaclab.sh` prefers CONDA_PREFIX over VIRTUAL_ENV when choosing Python. +# If conda base is active, it will pick conda's python (often missing `isaacsim`), causing: +# ModuleNotFoundError: No module named 'isaacsim' +# +# We temporarily hide conda env vars for this invocation, and prefer this repo's venv if present. +_saved_CONDA_PREFIX="${CONDA_PREFIX-}" +_saved_CONDA_DEFAULT_ENV="${CONDA_DEFAULT_ENV-}" +_saved_CONDA_SHLVL="${CONDA_SHLVL-}" +unset CONDA_PREFIX CONDA_DEFAULT_ENV CONDA_SHLVL + +# Prefer this repo's venv_isaac if it exists (so `isaacsim` pip package is available). +if [ -z "${VIRTUAL_ENV-}" ] && [ -f "/home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate" ]; then + # shellcheck disable=SC1091 + source /home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate +fi + +if [ -f "$ISAACSIM_PATH/setup_conda_env.sh" ]; then + # This is only necessary if Isaac Sim is installed via source code: + # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/source_installation.html + if [ -n "$CONDA_PREFIX" ]; then + echo "Setting up Isaac Sim conda environment..." + source $ISAACSIM_PATH/setup_conda_env.sh + fi +fi + +"$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py \ + --hand both \ + --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ + --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz \ + --use_wrist_pose \ + --loop \ + --ground_z -100 \ + --mesh_dir /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/meshes \ + --hand_spacing 0 \ + --spawn_height 0 \ + --camera_target 0,0,0 \ + --camera_dir=-100,0,100 \ + --camera_dist 2.0 + +# Restore conda env vars (best effort) +if [ -n "${_saved_CONDA_PREFIX}" ]; then export CONDA_PREFIX="${_saved_CONDA_PREFIX}"; fi +if [ -n "${_saved_CONDA_DEFAULT_ENV}" ]; then export CONDA_DEFAULT_ENV="${_saved_CONDA_DEFAULT_ENV}"; fi +if [ -n "${_saved_CONDA_SHLVL}" ]; then export CONDA_SHLVL="${_saved_CONDA_SHLVL}"; fi +unset _saved_CONDA_PREFIX _saved_CONDA_DEFAULT_ENV _saved_CONDA_SHLVL diff --git a/scripts/run_hand_retarget_global_with_object.sh b/scripts/run_hand_retarget_global_with_object.sh new file mode 100755 index 000000000..2393372ca --- /dev/null +++ b/scripts/run_hand_retarget_global_with_object.sh @@ -0,0 +1,78 @@ +#!/bin/bash + +# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +set -e + +# Run the Isaac Lab script +if [ -z "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH environment variable is not set. Please set it to the path of the Isaac Lab repository." + exit 1 +fi + +if [ ! -d "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH '$ISAACLAB_PATH' does not exist or is not a directory." + exit 1 +fi + +if [ ! -f "$ISAACLAB_PATH/isaaclab.sh" ]; then + echo "Error: Isaac Lab script not found in $ISAACLAB_PATH." + echo "Please make sure you have set the ISAACLAB_PATH environment variable to the path of the Isaac Lab repository." + exit 1 +fi + +cd $ISAACLAB_PATH || exit 1 + +# Make IsaacLab python package discoverable for any direct python subprocesses. +# Your layout: $ISAACLAB_PATH/source/isaaclab/isaaclab/... +export PYTHONPATH="$ISAACLAB_PATH/source/isaaclab:${PYTHONPATH}" + +# IsaacLab's `isaaclab.sh` prefers CONDA_PREFIX over VIRTUAL_ENV when choosing Python. +# If conda base is active, it will pick conda's python (often missing `isaacsim`), causing: +# ModuleNotFoundError: No module named 'isaacsim' +# +# We temporarily hide conda env vars for this invocation, and prefer this repo's venv if present. +_saved_CONDA_PREFIX="${CONDA_PREFIX-}" +_saved_CONDA_DEFAULT_ENV="${CONDA_DEFAULT_ENV-}" +_saved_CONDA_SHLVL="${CONDA_SHLVL-}" +unset CONDA_PREFIX CONDA_DEFAULT_ENV CONDA_SHLVL + +# Prefer this repo's venv_isaac if it exists (so `isaacsim` pip package is available). +if [ -z "${VIRTUAL_ENV-}" ] && [ -f "/home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate" ]; then + # shellcheck disable=SC1091 + source /home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate +fi + +if [ -f "$ISAACSIM_PATH/setup_conda_env.sh" ]; then + # This is only necessary if Isaac Sim is installed via source code: + # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/source_installation.html + if [ -n "$CONDA_PREFIX" ]; then + echo "Setting up Isaac Sim conda environment..." + source $ISAACSIM_PATH/setup_conda_env.sh + fi +fi + +"$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py \ + --hand both \ + --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ + --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz \ + --use_wrist_pose \ + --loop \ + --ground_z -100 \ + --mesh_dir /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/meshes \ + --hand_spacing 0 \ + --spawn_height 0 \ + --camera_target 0,0,0 \ + --camera_dir=-100,0,100 \ + --camera_dist 2.0 \ + --object_pose_npz /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_smooth_fit_final_000300_world_poses_plot_inputs.npz \ + --object_mesh /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/box.obj \ + --object_scale 1,1,1 \ + --object_mesh_rot=0,90,-90 + +# Restore conda env vars (best effort) +if [ -n "${_saved_CONDA_PREFIX}" ]; then export CONDA_PREFIX="${_saved_CONDA_PREFIX}"; fi +if [ -n "${_saved_CONDA_DEFAULT_ENV}" ]; then export CONDA_DEFAULT_ENV="${_saved_CONDA_DEFAULT_ENV}"; fi +if [ -n "${_saved_CONDA_SHLVL}" ]; then export CONDA_SHLVL="${_saved_CONDA_SHLVL}"; fi +unset _saved_CONDA_PREFIX _saved_CONDA_DEFAULT_ENV _saved_CONDA_SHLVL diff --git a/scripts/run_hand_retarget_no_global.sh b/scripts/run_hand_retarget_no_global.sh new file mode 100755 index 000000000..9234041a7 --- /dev/null +++ b/scripts/run_hand_retarget_no_global.sh @@ -0,0 +1,81 @@ +#!/bin/bash + +# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +set -e + +# Run the Isaac Lab script +if [ -z "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH environment variable is not set. Please set it to the path of the Isaac Lab repository." + exit 1 +fi + +if [ ! -d "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH '$ISAACLAB_PATH' does not exist or is not a directory." + exit 1 +fi + +if [ ! -f "$ISAACLAB_PATH/isaaclab.sh" ]; then + echo "Error: Isaac Lab script not found in $ISAACLAB_PATH." + echo "Please make sure you have set the ISAACLAB_PATH environment variable to the path of the Isaac Lab repository." + exit 1 +fi + +cd $ISAACLAB_PATH || exit 1 + +# Make IsaacLab python package discoverable for any direct python subprocesses. +# Your layout: $ISAACLAB_PATH/source/isaaclab/isaaclab/... +export PYTHONPATH="$ISAACLAB_PATH/source/isaaclab:${PYTHONPATH}" + +# IsaacLab's `isaaclab.sh` prefers CONDA_PREFIX over VIRTUAL_ENV when choosing Python. +# If conda base is active, it will pick conda's python (often missing `isaacsim`), causing: +# ModuleNotFoundError: No module named 'isaacsim' +# +# We temporarily hide conda env vars for this invocation, and prefer this repo's venv if present. +_saved_CONDA_PREFIX="${CONDA_PREFIX-}" +_saved_CONDA_DEFAULT_ENV="${CONDA_DEFAULT_ENV-}" +_saved_CONDA_SHLVL="${CONDA_SHLVL-}" +unset CONDA_PREFIX CONDA_DEFAULT_ENV CONDA_SHLVL + +# Prefer this repo's venv_isaac if it exists (so `isaacsim` pip package is available). +if [ -z "${VIRTUAL_ENV-}" ] && [ -f "/home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate" ]; then + # shellcheck disable=SC1091 + source /home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate +fi + +if [ -f "$ISAACSIM_PATH/setup_conda_env.sh" ]; then + # This is only necessary if Isaac Sim is installed via source code: + # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/source_installation.html + if [ -n "$CONDA_PREFIX" ]; then + echo "Setting up Isaac Sim conda environment..." + source $ISAACSIM_PATH/setup_conda_env.sh + fi +fi + +"$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py \ + --hand both \ + --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot_nopickle.npz \ + --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot_nopickle.npz \ + --spawn_height 0.3 \ + --hand_spacing 0.18 \ + --mesh_dir /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/meshes \ + --loop + +# Restore conda env vars (best effort) +if [ -n "${_saved_CONDA_PREFIX}" ]; then export CONDA_PREFIX="${_saved_CONDA_PREFIX}"; fi +if [ -n "${_saved_CONDA_DEFAULT_ENV}" ]; then export CONDA_DEFAULT_ENV="${_saved_CONDA_DEFAULT_ENV}"; fi +if [ -n "${_saved_CONDA_SHLVL}" ]; then export CONDA_SHLVL="${_saved_CONDA_SHLVL}"; fi +unset _saved_CONDA_PREFIX _saved_CONDA_DEFAULT_ENV _saved_CONDA_SHLVL + +# "$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py \ +# --hand both \ +# --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ +# --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz \ +# --use_wrist_pose \ +# --loop \ +# --ground_z -100 \ +# --mesh_dir /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/hand_urdf/meshes \ +# --camera_target 0,0,0 \ +# --camera_dir=-10,20,-10 \ +# --camera_dist 1.0 \ No newline at end of file diff --git a/scripts/run_sharpa_hand_retarget_global.sh b/scripts/run_sharpa_hand_retarget_global.sh new file mode 100755 index 000000000..e8439fb89 --- /dev/null +++ b/scripts/run_sharpa_hand_retarget_global.sh @@ -0,0 +1,77 @@ +#!/bin/bash + +# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +set -e + +# Run the Isaac Lab script +if [ -z "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH environment variable is not set. Please set it to the path of the Isaac Lab repository." + exit 1 +fi + +if [ ! -d "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH '$ISAACLAB_PATH' does not exist or is not a directory." + exit 1 +fi + +if [ ! -f "$ISAACLAB_PATH/isaaclab.sh" ]; then + echo "Error: Isaac Lab script not found in $ISAACLAB_PATH." + echo "Please make sure you have set the ISAACLAB_PATH environment variable to the path of the Isaac Lab repository." + exit 1 +fi + +cd $ISAACLAB_PATH || exit 1 + +# Make IsaacLab python package discoverable for any direct python subprocesses. +# Your layout: $ISAACLAB_PATH/source/isaaclab/isaaclab/... +export PYTHONPATH="$ISAACLAB_PATH/source/isaaclab:${PYTHONPATH}" + +# IsaacLab's `isaaclab.sh` prefers CONDA_PREFIX over VIRTUAL_ENV when choosing Python. +# If conda base is active, it will pick conda's python (often missing `isaacsim`), causing: +# ModuleNotFoundError: No module named 'isaacsim' +# +# We temporarily hide conda env vars for this invocation, and prefer this repo's venv if present. +_saved_CONDA_PREFIX="${CONDA_PREFIX-}" +_saved_CONDA_DEFAULT_ENV="${CONDA_DEFAULT_ENV-}" +_saved_CONDA_SHLVL="${CONDA_SHLVL-}" +unset CONDA_PREFIX CONDA_DEFAULT_ENV CONDA_SHLVL + +# Prefer this repo's venv_isaac if it exists (so `isaacsim` pip package is available). +if [ -z "${VIRTUAL_ENV-}" ] && [ -f "/home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate" ]; then + # shellcheck disable=SC1091 + source /home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate +fi + +if [ -f "$ISAACSIM_PATH/setup_conda_env.sh" ]; then + # This is only necessary if Isaac Sim is installed via source code: + # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/source_installation.html + if [ -n "$CONDA_PREFIX" ]; then + echo "Setting up Isaac Sim conda environment..." + source $ISAACSIM_PATH/setup_conda_env.sh + fi +fi + +"$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/sharpahand_replay_traj.py \ + --hand both \ + --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ + --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz \ + --left-hand-urdf /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf \ + --right-hand-urdf /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf \ + --mesh_dir_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes \ + --mesh_dir_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes \ + --use_wrist_pose \ + --loop \ + --ground_z -100 \ + --hand_spacing 0 \ + --spawn_height 0 \ + --camera_target 0,0,0 \ + --camera_dir=-100,0,100 \ + --camera_dist 2.0 + +# Restore conda env vars (best effort) +if [ -n "${_saved_CONDA_PREFIX}" ]; then export CONDA_PREFIX="${_saved_CONDA_PREFIX}"; fi +if [ -n "${_saved_CONDA_DEFAULT_ENV}" ]; then export CONDA_DEFAULT_ENV="${_saved_CONDA_DEFAULT_ENV}"; fi +if [ -n "${_saved_CONDA_SHLVL}" ]; then export CONDA_SHLVL="${_saved_CONDA_SHLVL}"; fi +unset _saved_CONDA_PREFIX _saved_CONDA_DEFAULT_ENV _saved_CONDA_SHLVL diff --git a/scripts/run_sharpa_hand_retarget_global_with_object.sh b/scripts/run_sharpa_hand_retarget_global_with_object.sh new file mode 100755 index 000000000..01c782bc7 --- /dev/null +++ b/scripts/run_sharpa_hand_retarget_global_with_object.sh @@ -0,0 +1,81 @@ +#!/bin/bash + +# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +set -e + +# Run the Isaac Lab script +if [ -z "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH environment variable is not set. Please set it to the path of the Isaac Lab repository." + exit 1 +fi + +if [ ! -d "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH '$ISAACLAB_PATH' does not exist or is not a directory." + exit 1 +fi + +if [ ! -f "$ISAACLAB_PATH/isaaclab.sh" ]; then + echo "Error: Isaac Lab script not found in $ISAACLAB_PATH." + echo "Please make sure you have set the ISAACLAB_PATH environment variable to the path of the Isaac Lab repository." + exit 1 +fi + +cd $ISAACLAB_PATH || exit 1 + +# Make IsaacLab python package discoverable for any direct python subprocesses. +# Your layout: $ISAACLAB_PATH/source/isaaclab/isaaclab/... +export PYTHONPATH="$ISAACLAB_PATH/source/isaaclab:${PYTHONPATH}" + +# IsaacLab's `isaaclab.sh` prefers CONDA_PREFIX over VIRTUAL_ENV when choosing Python. +# If conda base is active, it will pick conda's python (often missing `isaacsim`), causing: +# ModuleNotFoundError: No module named 'isaacsim' +# +# We temporarily hide conda env vars for this invocation, and prefer this repo's venv if present. +_saved_CONDA_PREFIX="${CONDA_PREFIX-}" +_saved_CONDA_DEFAULT_ENV="${CONDA_DEFAULT_ENV-}" +_saved_CONDA_SHLVL="${CONDA_SHLVL-}" +unset CONDA_PREFIX CONDA_DEFAULT_ENV CONDA_SHLVL + +# Prefer this repo's venv_isaac if it exists (so `isaacsim` pip package is available). +if [ -z "${VIRTUAL_ENV-}" ] && [ -f "/home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate" ]; then + # shellcheck disable=SC1091 + source /home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate +fi + +if [ -f "$ISAACSIM_PATH/setup_conda_env.sh" ]; then + # This is only necessary if Isaac Sim is installed via source code: + # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/source_installation.html + if [ -n "$CONDA_PREFIX" ]; then + echo "Setting up Isaac Sim conda environment..." + source $ISAACSIM_PATH/setup_conda_env.sh + fi +fi + +"$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/sharpahand_replay_traj.py \ + --hand both \ + --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ + --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz \ + --left-hand-urdf /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf \ + --right-hand-urdf /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf \ + --mesh_dir_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes \ + --mesh_dir_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes \ + --use_wrist_pose \ + --loop \ + --ground_z -100 \ + --hand_spacing 0 \ + --spawn_height 0 \ + --camera_target 0,0,0 \ + --camera_dir=-100,0,100 \ + --camera_dist 2.0 \ + --object_pose_npz /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/hand_reconstruction_results/meta_776_30fps_smooth_fit_final_000300_world_poses_plot_inputs.npz \ + --object_mesh /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/box.obj \ + --object_scale 1,1,1 \ + --object_mesh_rot=0,90,-90 + +# Restore conda env vars (best effort) +if [ -n "${_saved_CONDA_PREFIX}" ]; then export CONDA_PREFIX="${_saved_CONDA_PREFIX}"; fi +if [ -n "${_saved_CONDA_DEFAULT_ENV}" ]; then export CONDA_DEFAULT_ENV="${_saved_CONDA_DEFAULT_ENV}"; fi +if [ -n "${_saved_CONDA_SHLVL}" ]; then export CONDA_SHLVL="${_saved_CONDA_SHLVL}"; fi +unset _saved_CONDA_PREFIX _saved_CONDA_DEFAULT_ENV _saved_CONDA_SHLVL diff --git a/scripts/run_sharpa_hand_retarget_no_global.sh b/scripts/run_sharpa_hand_retarget_no_global.sh new file mode 100755 index 000000000..f3d994b6f --- /dev/null +++ b/scripts/run_sharpa_hand_retarget_no_global.sh @@ -0,0 +1,84 @@ +#!/bin/bash + +# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +set -e + +# Run the Isaac Lab script +if [ -z "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH environment variable is not set. Please set it to the path of the Isaac Lab repository." + exit 1 +fi + +if [ ! -d "$ISAACLAB_PATH" ]; then + echo "Error: ISAACLAB_PATH '$ISAACLAB_PATH' does not exist or is not a directory." + exit 1 +fi + +if [ ! -f "$ISAACLAB_PATH/isaaclab.sh" ]; then + echo "Error: Isaac Lab script not found in $ISAACLAB_PATH." + echo "Please make sure you have set the ISAACLAB_PATH environment variable to the path of the Isaac Lab repository." + exit 1 +fi + +cd $ISAACLAB_PATH || exit 1 + +# Make IsaacLab python package discoverable for any direct python subprocesses. +# Your layout: $ISAACLAB_PATH/source/isaaclab/isaaclab/... +export PYTHONPATH="$ISAACLAB_PATH/source/isaaclab:${PYTHONPATH}" + +# IsaacLab's `isaaclab.sh` prefers CONDA_PREFIX over VIRTUAL_ENV when choosing Python. +# If conda base is active, it will pick conda's python (often missing `isaacsim`), causing: +# ModuleNotFoundError: No module named 'isaacsim' +# +# We temporarily hide conda env vars for this invocation, and prefer this repo's venv if present. +_saved_CONDA_PREFIX="${CONDA_PREFIX-}" +_saved_CONDA_DEFAULT_ENV="${CONDA_DEFAULT_ENV-}" +_saved_CONDA_SHLVL="${CONDA_SHLVL-}" +unset CONDA_PREFIX CONDA_DEFAULT_ENV CONDA_SHLVL + +# Prefer this repo's venv_isaac if it exists (so `isaacsim` pip package is available). +if [ -z "${VIRTUAL_ENV-}" ] && [ -f "/home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate" ]; then + # shellcheck disable=SC1091 + source /home/lduan/Documents/IsaacTeleop/venv_isaac/bin/activate +fi + +if [ -f "$ISAACSIM_PATH/setup_conda_env.sh" ]; then + # This is only necessary if Isaac Sim is installed via source code: + # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/source_installation.html + if [ -n "$CONDA_PREFIX" ]; then + echo "Setting up Isaac Sim conda environment..." + source $ISAACSIM_PATH/setup_conda_env.sh + fi +fi + +"$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/sharpahand_replay_traj.py \ + --hand both \ + --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_optrot_nopickle.npz \ + --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/sharpa_retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_optrot_nopickle.npz \ + --left-hand-urdf /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/left_sharpa_ha4_v2_1.urdf \ + --right-hand-urdf /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/right_sharpa_ha4_v2_1.urdf \ + --mesh_dir_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/left_sharpa_ha4/meshes \ + --mesh_dir_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/_DATA/Sharpa_HA4_URDF_USD_V2.2.3/Sharpa_HA4_URDF_USD_V2.2.3/src/right_sharpa_ha4/meshes \ + --spawn_height 0.3 \ + --hand_spacing 0.18 \ + --loop + +# Restore conda env vars (best effort) +if [ -n "${_saved_CONDA_PREFIX}" ]; then export CONDA_PREFIX="${_saved_CONDA_PREFIX}"; fi +if [ -n "${_saved_CONDA_DEFAULT_ENV}" ]; then export CONDA_DEFAULT_ENV="${_saved_CONDA_DEFAULT_ENV}"; fi +if [ -n "${_saved_CONDA_SHLVL}" ]; then export CONDA_SHLVL="${_saved_CONDA_SHLVL}"; fi +unset _saved_CONDA_PREFIX _saved_CONDA_DEFAULT_ENV _saved_CONDA_SHLVL + +# "$ISAACLAB_PATH/isaaclab.sh" -p /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/unitree_trihand_replay_traj.py \ +# --hand both \ +# --traj_npz_left /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/left_hand_traj_world_prerot_nopickle.npz \ +# --traj_npz_right /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/outputs/retarget_meta/openxr26_single_hand_zero_global/right_hand_traj_world_prerot_nopickle.npz \ +# --use_wrist_pose \ +# --loop \ +# --ground_z -100 \ +# --mesh_dir /home/lduan/Documents/IsaacTeleop/examples/mano_hand_retargeter/hand_urdf/meshes \ +# --camera_target 0,0,0 \ +# --camera_dir=-10,20,-10 \ +# --camera_dist 1.0 \ No newline at end of file diff --git a/scripts/setup_venv_isaac.sh b/scripts/setup_venv_isaac.sh new file mode 100644 index 000000000..4bc7dfde4 --- /dev/null +++ b/scripts/setup_venv_isaac.sh @@ -0,0 +1,39 @@ +#!/usr/bin/env bash +set -euo pipefail + +# Recreate the local `venv_isaac` Python environment from a pinned requirements file. +# +# Usage: +# ./scripts/setup_venv_isaac.sh +# +# Notes: +# - We intentionally do NOT commit/copy the `venv_isaac/` directory itself (it is machine-specific). +# - This script recreates it and installs the same Python deps listed in `requirements-venv_isaac.txt`. + +REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +VENV_DIR="${REPO_ROOT}/venv_isaac" +REQ_FILE="${REPO_ROOT}/requirements-venv_isaac.txt" + +if ! command -v uv >/dev/null 2>&1; then + echo "Error: uv not found. Install uv first: https://docs.astral.sh/uv/getting-started/installation/" >&2 + exit 1 +fi + +if [[ ! -f "${REQ_FILE}" ]]; then + echo "Error: ${REQ_FILE} not found." >&2 + exit 1 +fi + +echo "[INFO] Creating venv: ${VENV_DIR}" +uv venv --python 3.11.14 "${VENV_DIR}" + +# shellcheck disable=SC1091 +source "${VENV_DIR}/bin/activate" + +echo "[INFO] Installing pinned requirements from: ${REQ_FILE}" +uv pip install -r "${REQ_FILE}" + +echo "[INFO] Done. Activate with:" +echo " source ${VENV_DIR}/bin/activate" + +